diff options
| author | Sheikh Dawood Abdul Ajees <[email protected]> | 2017-04-25 16:02:08 -0500 |
|---|---|---|
| committer | Sheikh Dawood Abdul Ajees <[email protected]> | 2017-04-25 16:02:08 -0500 |
| commit | d11708e398c2f6377d9eac2b1f7248c62faab569 (patch) | |
| tree | 5778e794690c046ab4b0205d8f764960a5af168b /PhysX_3.4/Source | |
| parent | PhysX 3.4, APEX 1.4 patch release @21821222 (diff) | |
| download | physx-3.4-d11708e398c2f6377d9eac2b1f7248c62faab569.tar.xz physx-3.4-d11708e398c2f6377d9eac2b1f7248c62faab569.zip | |
PhysX 3.4, APEX 1.4 patch release @22017166
Diffstat (limited to 'PhysX_3.4/Source')
102 files changed, 17942 insertions, 17388 deletions
diff --git a/PhysX_3.4/Source/Common/src/CmTask.h b/PhysX_3.4/Source/Common/src/CmTask.h index 11088a13..6cb11f19 100644 --- a/PhysX_3.4/Source/Common/src/CmTask.h +++ b/PhysX_3.4/Source/Common/src/CmTask.h @@ -51,6 +51,10 @@ namespace Cm class Task : public physx::PxLightCpuTask { public: + Task(PxU64 contextId) + { + mContextID = contextId; + } virtual void run() { @@ -89,8 +93,7 @@ namespace Cm { public: - DelegateTask(T* obj, const char* name) : - mObj(obj), mName(name) { } + DelegateTask(PxU64 contextID, T* obj, const char* name) : Cm::Task(contextID), mObj(obj), mName(name) { } virtual void runInternal() { @@ -122,7 +125,7 @@ namespace Cm { PX_NOCOPY(FanoutTask) public: - FanoutTask(const char* name) : Cm::BaseTask(), mRefCount(0), mName(name), mNotifySubmission(false) {} + FanoutTask(PxU64 contextID, const char* name) : Cm::BaseTask(), mRefCount(0), mName(name), mNotifySubmission(false) { mContextID = contextID; } virtual void runInternal() {} @@ -243,8 +246,8 @@ namespace Cm { public: - DelegateFanoutTask(T* obj, const char* name) : - FanoutTask(name), mObj(obj) { } + DelegateFanoutTask(PxU64 contextID, T* obj, const char* name) : + FanoutTask(contextID, name), mObj(obj) { } virtual void runInternal() { diff --git a/PhysX_3.4/Source/GeomUtils/src/ccd/GuCCDSweepConvexMesh.cpp b/PhysX_3.4/Source/GeomUtils/src/ccd/GuCCDSweepConvexMesh.cpp index 17965753..6e910f84 100644 --- a/PhysX_3.4/Source/GeomUtils/src/ccd/GuCCDSweepConvexMesh.cpp +++ b/PhysX_3.4/Source/GeomUtils/src/ccd/GuCCDSweepConvexMesh.cpp @@ -610,7 +610,7 @@ PxReal SweepAnyShapeMesh(GU_SWEEP_METHOD_ARGS) } } PX_ASSERT(PxIsFinite(res)); - resultNormal = convexPartOfMesh1.getPolygonNormal(0); + resultNormal = transform1.rotate(convexPartOfMesh1.getPolygonNormal(0)); } if (res < minTOI) @@ -623,7 +623,7 @@ PxReal SweepAnyShapeMesh(GU_SWEEP_METHOD_ARGS) } - worldNormal = transform1.rotate(tempWorldNormal); + worldNormal = tempWorldNormal;//transform1.rotate(tempWorldNormal); worldPoint = tempWorldPoint; outCCDFaceIndex = ccdFaceIndex; return minTOI; diff --git a/PhysX_3.4/Source/GeomUtils/src/convex/GuHillClimbing.cpp b/PhysX_3.4/Source/GeomUtils/src/convex/GuHillClimbing.cpp index 2e3a4d02..9bd56fe7 100644 --- a/PhysX_3.4/Source/GeomUtils/src/convex/GuHillClimbing.cpp +++ b/PhysX_3.4/Source/GeomUtils/src/convex/GuHillClimbing.cpp @@ -42,7 +42,7 @@ void localSearch(PxU32& id, const PxVec3& dir, const PxVec3* verts, const Gu::Bi // WARNING: there is a problem on x86 with a naive version of this code, where truncation // of values from 80 bits to 32 bits as they're stored in memory means that iteratively moving to // an adjacent vertex of greater support can go into an infinite loop. So we use a version which - // never vists a version twice. Note - this might not be enough for GJK, since local + // never visits a vertex twice. Note - this might not be enough for GJK, since local // termination of the support function might not be enough to ensure convergence of GJK itself. // if we got here, we'd better have vertices and valencies diff --git a/PhysX_3.4/Source/GeomUtils/src/mesh/GuBV4.cpp b/PhysX_3.4/Source/GeomUtils/src/mesh/GuBV4.cpp index 7b54c5bd..a4e90824 100644 --- a/PhysX_3.4/Source/GeomUtils/src/mesh/GuBV4.cpp +++ b/PhysX_3.4/Source/GeomUtils/src/mesh/GuBV4.cpp @@ -188,14 +188,20 @@ BV4Tree::BV4Tree(const PxEMPTY) void BV4Tree::exportExtraData(PxSerializationContext& stream) { - stream.alignData(16); - stream.writeData(mNodes, mNbNodes*sizeof(BVDataPacked)); + if(mNbNodes) + { + stream.alignData(16); + stream.writeData(mNodes, mNbNodes*sizeof(BVDataPacked)); + } } void BV4Tree::importExtraData(PxDeserializationContext& context) { - context.alignExtraData(16); - mNodes = context.readExtraData<BVDataPacked>(mNbNodes); + if(mNbNodes) + { + context.alignExtraData(16); + mNodes = context.readExtraData<BVDataPacked>(mNbNodes); + } } //~PX_SERIALIZATION diff --git a/PhysX_3.4/Source/GeomUtils/src/mesh/GuMidphaseRTree.cpp b/PhysX_3.4/Source/GeomUtils/src/mesh/GuMidphaseRTree.cpp index 0f87e72e..2f923842 100644 --- a/PhysX_3.4/Source/GeomUtils/src/mesh/GuMidphaseRTree.cpp +++ b/PhysX_3.4/Source/GeomUtils/src/mesh/GuMidphaseRTree.cpp @@ -41,6 +41,7 @@ #include "GuIntersectionTriangleBox.h" #include "GuSIMDHelpers.h" #include "GuTriangleVertexPointers.h" +#include "GuRTree.h" #include "GuTriangleMeshRTree.h" #include "GuInternal.h" diff --git a/PhysX_3.4/Source/GeomUtils/src/mesh/GuRTree.h b/PhysX_3.4/Source/GeomUtils/src/mesh/GuRTree.h index d6fbd435..19004952 100644 --- a/PhysX_3.4/Source/GeomUtils/src/mesh/GuRTree.h +++ b/PhysX_3.4/Source/GeomUtils/src/mesh/GuRTree.h @@ -170,8 +170,8 @@ namespace Gu { void traverseOBB( const Gu::Box& obb, const PxU32 maxResultsPerBlock, PxU32* resultsBlockBuf, Callback* processResultsBlockCallback) const; + template <int inflate> - //PX_PHYSX_COMMON_API void traverseRay( const PxVec3& rayOrigin, const PxVec3& rayDir, // dir doesn't have to be normalized and is B-A for raySegment const PxU32 maxResults, PxU32* resultsPtr, @@ -229,6 +229,15 @@ namespace Gu { friend struct RTreePage; } PX_ALIGN_SUFFIX(16); +#if PX_SUPPORT_EXTERN_TEMPLATE + //explicit template instantiation declaration + extern template + void RTree::traverseRay<0>(const PxVec3&, const PxVec3&, const PxU32, PxU32*, Gu::RTree::CallbackRaycast*, const PxVec3*, PxF32) const; + + extern template + void RTree::traverseRay<1>(const PxVec3&, const PxVec3&, const PxU32, PxU32*, Gu::RTree::CallbackRaycast*, const PxVec3*, PxF32) const; +#endif + #if PX_VC #pragma warning(pop) #endif @@ -253,19 +262,6 @@ namespace Gu { } } - // explicit instantiations for traverseRay - // XXX: dima: g++ 4.4 won't compile this => skipping by PX_UNIX_FAMILY -#if PX_X86 && !PX_UNIX_FAMILY - template - //PX_PHYSX_COMMON_API - void RTree::traverseRay<0>( - const PxVec3&, const PxVec3&, const PxU32, PxU32*, Gu::RTree::CallbackRaycast*, const PxVec3*, PxF32 maxT) const; - template - //PX_PHYSX_COMMON_API - void RTree::traverseRay<1>( - const PxVec3&, const PxVec3&, const PxU32, PxU32*, Gu::RTree::CallbackRaycast*, const PxVec3*, PxF32 maxT) const; -#endif - ///////////////////////////////////////////////////////////////////////// PX_FORCE_INLINE void RTreeNodeQ::setEmpty() { diff --git a/PhysX_3.4/Source/GeomUtils/src/mesh/GuRTreeQueries.cpp b/PhysX_3.4/Source/GeomUtils/src/mesh/GuRTreeQueries.cpp index 08165685..cd97b4e2 100644 --- a/PhysX_3.4/Source/GeomUtils/src/mesh/GuRTreeQueries.cpp +++ b/PhysX_3.4/Source/GeomUtils/src/mesh/GuRTreeQueries.cpp @@ -319,10 +319,10 @@ void RTree::traverseRay( } } -template void RTree::traverseRay<0>( - const PxVec3&, const PxVec3&, const PxU32, PxU32*, Gu::RTree::CallbackRaycast*, const PxVec3*, PxF32 maxT) const; -template void RTree::traverseRay<1>( - const PxVec3&, const PxVec3&, const PxU32, PxU32*, Gu::RTree::CallbackRaycast*, const PxVec3*, PxF32 maxT) const; +//explicit template instantiation +template void RTree::traverseRay<0>(const PxVec3&, const PxVec3&, const PxU32, PxU32*, Gu::RTree::CallbackRaycast*, const PxVec3*, PxF32) const; + +template void RTree::traverseRay<1>(const PxVec3&, const PxVec3&, const PxU32, PxU32*, Gu::RTree::CallbackRaycast*, const PxVec3*, PxF32) const; ///////////////////////////////////////////////////////////////////////// void RTree::traverseOBB( diff --git a/PhysX_3.4/Source/LowLevel/software/include/PxsContext.h b/PhysX_3.4/Source/LowLevel/software/include/PxsContext.h index e021b6cb..ed9da75e 100644 --- a/PhysX_3.4/Source/LowLevel/software/include/PxsContext.h +++ b/PhysX_3.4/Source/LowLevel/software/include/PxsContext.h @@ -97,38 +97,6 @@ enum PxsTouchEventCount }; - -class PxsCMUpdateTask : public Cm::Task -{ -public: - - static const PxU32 BATCH_SIZE = 128; - - PxsCMUpdateTask(PxsContext* context, PxReal dt, PxsContactManager** cmArray, PxsContactManagerOutput* cmOutputs, Gu::Cache* caches, PxU32 cmCount, - PxContactModifyCallback* callback): - mCmArray(cmArray), mCmOutputs(cmOutputs), mCaches(caches), mCmCount(cmCount), mDt(dt), mContext(context), mCallback(callback) - { - } - - virtual void release(); - - /*PX_FORCE_INLINE void insert(PxsContactManager* cm) - { - PX_ASSERT(mCmCount < BATCH_SIZE); - mCmArray[mCmCount++]=cm; - }*/ - -protected: - //PxsContactManager* mCmArray[BATCH_SIZE]; - PxsContactManager** mCmArray; - PxsContactManagerOutput* mCmOutputs; - Gu::Cache* mCaches; - PxU32 mCmCount; - PxReal mDt; //we could probably retrieve from context to save space? - PxsContext* mContext; - PxContactModifyCallback* mCallback; -}; - class PxsContext : public Ps::UserAllocated, public PxcNpContext { PX_NOCOPY(PxsContext) diff --git a/PhysX_3.4/Source/LowLevel/software/include/PxsNphaseImplementationContext.h b/PhysX_3.4/Source/LowLevel/software/include/PxsNphaseImplementationContext.h index f39da465..2b36cc23 100644 --- a/PhysX_3.4/Source/LowLevel/software/include/PxsNphaseImplementationContext.h +++ b/PhysX_3.4/Source/LowLevel/software/include/PxsNphaseImplementationContext.h @@ -73,6 +73,7 @@ public: mModifyCallback(NULL), mIslandSim(islandSim) {} virtual void destroy(); virtual void updateContactManager(PxReal dt, bool hasBoundsArrayChanged, bool hasContactDistanceChanged, PxBaseTask* continuation, PxBaseTask* firstPassContinuation); + virtual void postBroadPhaseUpdateContactManager() {} virtual void secondPassUpdateContactManager(PxReal dt, PxBaseTask* continuation); virtual void registerContactManager(PxsContactManager* cm, PxI32 touching, PxU32 numPatches); diff --git a/PhysX_3.4/Source/LowLevel/software/include/PxsSimpleIslandManager.h b/PhysX_3.4/Source/LowLevel/software/include/PxsSimpleIslandManager.h index 8f193f22..69c16906 100644 --- a/PhysX_3.4/Source/LowLevel/software/include/PxsSimpleIslandManager.h +++ b/PhysX_3.4/Source/LowLevel/software/include/PxsSimpleIslandManager.h @@ -52,9 +52,7 @@ class ThirdPassTask : public Cm::Task public: - ThirdPassTask(SimpleIslandManager& islandManager, IslandSim& islandSim) : mIslandManager(islandManager), mIslandSim(islandSim) - { - } + ThirdPassTask(PxU64 contextID, SimpleIslandManager& islandManager, IslandSim& islandSim); virtual void runInternal(); @@ -73,9 +71,7 @@ class PostThirdPassTask : public Cm::Task public: - PostThirdPassTask(SimpleIslandManager& islandManager) : mIslandManager(islandManager) - { - } + PostThirdPassTask(PxU64 contextID, SimpleIslandManager& islandManager); virtual void runInternal(); diff --git a/PhysX_3.4/Source/LowLevel/software/include/PxvNphaseImplementationContext.h b/PhysX_3.4/Source/LowLevel/software/include/PxvNphaseImplementationContext.h index f68e3ec1..20abe843 100644 --- a/PhysX_3.4/Source/LowLevel/software/include/PxvNphaseImplementationContext.h +++ b/PhysX_3.4/Source/LowLevel/software/include/PxvNphaseImplementationContext.h @@ -137,6 +137,7 @@ public: virtual ~PxvNphaseImplementationContext() {} virtual void destroy() = 0; virtual void updateContactManager(PxReal dt, bool hasBoundsArrayChanged, bool hasContactDistanceChanged, PxBaseTask* continuation, PxBaseTask* firstPassContinuation) = 0; + virtual void postBroadPhaseUpdateContactManager() = 0; virtual void secondPassUpdateContactManager(PxReal dt, PxBaseTask* continuation) = 0; virtual void fetchUpdateContactManager() = 0; diff --git a/PhysX_3.4/Source/LowLevel/software/src/PxsCCD.cpp b/PhysX_3.4/Source/LowLevel/software/src/PxsCCD.cpp index 70d24cc0..1668a494 100644 --- a/PhysX_3.4/Source/LowLevel/software/src/PxsCCD.cpp +++ b/PhysX_3.4/Source/LowLevel/software/src/PxsCCD.cpp @@ -194,9 +194,9 @@ namespace physx { PxsCCDContext::PxsCCDContext(PxsContext* context, Dy::ThresholdStream& thresholdStream, PxvNphaseImplementationContext& nPhaseContext) : - mPostCCDSweepTask (this, "PxsContext.postCCDSweep"), - mPostCCDAdvanceTask (this, "PxsContext.postCCDAdvance"), - mPostCCDDepenetrateTask (this, "PxsContext.postCCDDepenetrate"), + mPostCCDSweepTask (context->getContextId(), this, "PxsContext.postCCDSweep"), + mPostCCDAdvanceTask (context->getContextId(), this, "PxsContext.postCCDAdvance"), + mPostCCDDepenetrateTask (context->getContextId(), this, "PxsContext.postCCDDepenetrate"), mDisableCCDResweep (false), miCCDPass (0), mSweepTotalHits (0), @@ -857,8 +857,8 @@ class PxsCCDSweepTask : public Cm::Task PxsCCDPair** mPairs; PxU32 mNumPairs; public: - PxsCCDSweepTask(PxsCCDPair** pairs, PxU32 nPairs) - : mPairs(pairs), mNumPairs(nPairs) + PxsCCDSweepTask(PxU64 contextID, PxsCCDPair** pairs, PxU32 nPairs) + : Cm::Task(contextID), mPairs(pairs), mNumPairs(nPairs) { } @@ -914,7 +914,7 @@ public: PxU32 firstIslandPair, PxU32 firstThreadIsland, PxU32 islandsPerThread, PxU32 totalIslands, PxsCCDBody** islandBodies, PxU16* numIslandBodies, bool clipTrajectory, bool disableResweep, PxI32* sweepTotalHits) - : mCCDPairs(pairs), mNumPairs(nPairs), mContext(context), mCCDContext(ccdContext), mDt(dt), + : Cm::Task(context->getContextId()), mCCDPairs(pairs), mNumPairs(nPairs), mContext(context), mCCDContext(ccdContext), mDt(dt), mCCDPass(ccdPass), mCCDBodies(ccdBodies), mFirstThreadIsland(firstThreadIsland), mIslandsPerThread(islandsPerThread), mTotalIslandCount(totalIslands), mFirstIslandPair(firstIslandPair), mIslandBodies(islandBodies), mNumIslandBodies(numIslandBodies), mSweepTotalHits(sweepTotalHits), @@ -1697,8 +1697,7 @@ void PxsCCDContext::updateCCD(PxReal dt, PxBaseTask* continuation, bool disableR PX_ASSERT_WITH_MESSAGE(ptr, "Failed to allocate PxsCCDSweepTask"); const PxU32 batchEnd = PxMin(nPairs, batchBegin + mCCDPairsPerBatch); PX_ASSERT(batchEnd >= batchBegin); - PxsCCDSweepTask* task = PX_PLACEMENT_NEW(ptr, PxsCCDSweepTask)( - mCCDPtrPairs.begin() + batchBegin, batchEnd - batchBegin); + PxsCCDSweepTask* task = PX_PLACEMENT_NEW(ptr, PxsCCDSweepTask)(mContext->getContextId(), mCCDPtrPairs.begin() + batchBegin, batchEnd - batchBegin); task->setContinuation(*mContext->mTaskManager, &mPostCCDSweepTask); task->removeReference(); } diff --git a/PhysX_3.4/Source/LowLevel/software/src/PxsContext.cpp b/PhysX_3.4/Source/LowLevel/software/src/PxsContext.cpp index d9bcc3d1..6735b3aa 100644 --- a/PhysX_3.4/Source/LowLevel/software/src/PxsContext.cpp +++ b/PhysX_3.4/Source/LowLevel/software/src/PxsContext.cpp @@ -63,24 +63,6 @@ using namespace physx::shdfnd; #define PXS_BODYSHAPE_SLABSIZE 1024 #define PXS_MAX_BODYSHAPE_SLABS 16 - -void PxsCMUpdateTask::release() -{ - // We used to do Task::release(); here before fixing DE1106 (xbox pure virtual crash) - // Release in turn causes the dependent tasks to start running - // The problem was that between the time release was called and by the time we got to the destructor - // The task chain would get all the way to scene finalization code which would reset the allocation pool - // And a new task would get allocated at the same address, then we would invoke the destructor on that freshly created task - // This could potentially cause any number of other problems, it is suprising that it only manifested itself - // as a pure virtual crash - PxBaseTask* saveContinuation = mCont; - this->~PxsCMUpdateTask(); - if (saveContinuation) - saveContinuation->removeReference(); -} - - - PxsContext::PxsContext(const PxSceneDesc& desc, PxTaskManager* taskManager, Cm::FlushPool& taskPool, PxU64 contextID) : mNpThreadContextPool (this), mContactManagerPool ("mContactManagerPool", this, 256, 8192), diff --git a/PhysX_3.4/Source/LowLevel/software/src/PxsNphaseImplementationContext.cpp b/PhysX_3.4/Source/LowLevel/software/src/PxsNphaseImplementationContext.cpp index fa39ba6f..5a2823a5 100644 --- a/PhysX_3.4/Source/LowLevel/software/src/PxsNphaseImplementationContext.cpp +++ b/PhysX_3.4/Source/LowLevel/software/src/PxsNphaseImplementationContext.cpp @@ -54,6 +54,58 @@ using namespace physx; using namespace physx::shdfnd; +class PxsCMUpdateTask : public Cm::Task +{ +public: + + static const PxU32 BATCH_SIZE = 128; + + PxsCMUpdateTask(PxsContext* context, PxReal dt, PxsContactManager** cmArray, PxsContactManagerOutput* cmOutputs, Gu::Cache* caches, PxU32 cmCount, PxContactModifyCallback* callback) : + Cm::Task (context->getContextId()), + mCmArray (cmArray), + mCmOutputs (cmOutputs), + mCaches (caches), + mCmCount (cmCount), + mDt (dt), + mContext (context), + mCallback (callback) + { + } + + virtual void release(); + + /*PX_FORCE_INLINE void insert(PxsContactManager* cm) + { + PX_ASSERT(mCmCount < BATCH_SIZE); + mCmArray[mCmCount++]=cm; + }*/ + +protected: + //PxsContactManager* mCmArray[BATCH_SIZE]; + PxsContactManager** mCmArray; + PxsContactManagerOutput* mCmOutputs; + Gu::Cache* mCaches; + PxU32 mCmCount; + PxReal mDt; //we could probably retrieve from context to save space? + PxsContext* mContext; + PxContactModifyCallback* mCallback; +}; + +void PxsCMUpdateTask::release() +{ + // We used to do Task::release(); here before fixing DE1106 (xbox pure virtual crash) + // Release in turn causes the dependent tasks to start running + // The problem was that between the time release was called and by the time we got to the destructor + // The task chain would get all the way to scene finalization code which would reset the allocation pool + // And a new task would get allocated at the same address, then we would invoke the destructor on that freshly created task + // This could potentially cause any number of other problems, it is suprising that it only manifested itself + // as a pure virtual crash + PxBaseTask* saveContinuation = mCont; + this->~PxsCMUpdateTask(); + if (saveContinuation) + saveContinuation->removeReference(); +} + class PxsCMDiscreteUpdateTask : public PxsCMUpdateTask { public: diff --git a/PhysX_3.4/Source/LowLevel/software/src/PxsSimpleIslandManager.cpp b/PhysX_3.4/Source/LowLevel/software/src/PxsSimpleIslandManager.cpp index aeb83270..9f0fa050 100644 --- a/PhysX_3.4/Source/LowLevel/software/src/PxsSimpleIslandManager.cpp +++ b/PhysX_3.4/Source/LowLevel/software/src/PxsSimpleIslandManager.cpp @@ -40,6 +40,14 @@ namespace physx namespace IG { + ThirdPassTask::ThirdPassTask(PxU64 contextID, SimpleIslandManager& islandManager, IslandSim& islandSim) : Cm::Task(contextID), mIslandManager(islandManager), mIslandSim(islandSim) + { + } + + PostThirdPassTask::PostThirdPassTask(PxU64 contextID, SimpleIslandManager& islandManager) : Cm::Task(contextID), mIslandManager(islandManager) + { + } + SimpleIslandManager::SimpleIslandManager(bool useEnhancedDeterminism, PxU64 contextID) : mDestroyedNodes(PX_DEBUG_EXP("mDestroyedNodes")), mInteractions(PX_DEBUG_EXP("mInteractions")), @@ -50,9 +58,9 @@ namespace IG mConstraintOrCm(PX_DEBUG_EXP("mConstraintOrCm")), mIslandManager(&mFirstPartitionEdges, mEdgeNodeIndices, &mDestroyedPartitionEdges, contextID), mSpeculativeIslandManager(NULL, mEdgeNodeIndices, NULL, contextID), - mSpeculativeThirdPassTask(*this, mSpeculativeIslandManager), - mAccurateThirdPassTask(*this, mIslandManager), - mPostThirdPassTask(*this), + mSpeculativeThirdPassTask(contextID, *this, mSpeculativeIslandManager), + mAccurateThirdPassTask(contextID, *this, mIslandManager), + mPostThirdPassTask(contextID, *this), mContextID(contextID) { mFirstPartitionEdges.resize(1024); @@ -219,7 +227,7 @@ void SimpleIslandManager::secondPassIslandGen() mNodeHandles.freeHandle(mDestroyedNodes[a].index()); } mDestroyedNodes.clear(); - mDestroyedEdges.clear(); + //mDestroyedEdges.clear(); } bool SimpleIslandManager::validateDeactivations() const diff --git a/PhysX_3.4/Source/LowLevelAABB/include/BpAABBManagerTasks.h b/PhysX_3.4/Source/LowLevelAABB/include/BpAABBManagerTasks.h index 7269b821..829b9ef1 100644 --- a/PhysX_3.4/Source/LowLevelAABB/include/BpAABBManagerTasks.h +++ b/PhysX_3.4/Source/LowLevelAABB/include/BpAABBManagerTasks.h @@ -44,7 +44,8 @@ namespace Bp class AggregateBoundsComputationTask : public Cm::Task, public shdfnd::UserAllocated { public: - AggregateBoundsComputationTask() : + AggregateBoundsComputationTask(PxU64 contextId) : + Cm::Task (contextId), mManager (NULL), mStart (0), mNbToGo (0), @@ -74,7 +75,8 @@ namespace Bp class FinalizeUpdateTask : public Cm::Task, public shdfnd::UserAllocated { public: - FinalizeUpdateTask() : + FinalizeUpdateTask(PxU64 contextId) : + Cm::Task (contextId), mManager (NULL), mNumCpuTasks (0), mScratchAllocator (NULL), diff --git a/PhysX_3.4/Source/LowLevelAABB/include/BpBroadPhase.h b/PhysX_3.4/Source/LowLevelAABB/include/BpBroadPhase.h index 2227d744..f30b41d0 100644 --- a/PhysX_3.4/Source/LowLevelAABB/include/BpBroadPhase.h +++ b/PhysX_3.4/Source/LowLevelAABB/include/BpBroadPhase.h @@ -268,6 +268,11 @@ public: virtual void update(const PxU32 numCpuTasks, PxcScratchAllocator* scratchAllocator, const BroadPhaseUpdateData& updateData, physx::PxBaseTask* continuation, physx::PxBaseTask* nPhaseUnlockTask) = 0; + /** + \brief Fetch the results of any asynchronous broad phase work. + */ + virtual void fetchBroadPhaseResults(physx::PxBaseTask* nPhaseUnlockTask) = 0; + /* \brief Return the number of created aabb overlap pairs computed in the execution of update() that has just completed. */ diff --git a/PhysX_3.4/Source/LowLevelAABB/include/BpSimpleAABBManager.h b/PhysX_3.4/Source/LowLevelAABB/include/BpSimpleAABBManager.h index db8b5c79..f3e02835 100644 --- a/PhysX_3.4/Source/LowLevelAABB/include/BpSimpleAABBManager.h +++ b/PhysX_3.4/Source/LowLevelAABB/include/BpSimpleAABBManager.h @@ -404,11 +404,13 @@ namespace Bp PX_FORCE_INLINE void* getUserData(const BoundsIndex index) const { if (index < mVolumeData.size()) return mVolumeData[index].getUserData(); return NULL; } PX_FORCE_INLINE PxU64 getContextId() const { return mContextID; } + void postBroadPhase(PxBaseTask*, PxBaseTask* narrowPhaseUnlockTask); + private: void reserveShapeSpace(PxU32 nbShapes); - void postBroadPhase(PxBaseTask*); + - Cm::DelegateTask<SimpleAABBManager, &SimpleAABBManager::postBroadPhase> mPostBroadPhase; + //Cm::DelegateTask<SimpleAABBManager, &SimpleAABBManager::postBroadPhase> mPostBroadPhase; FinalizeUpdateTask mFinalizeUpdateTask; diff --git a/PhysX_3.4/Source/LowLevelAABB/src/BpBroadPhase.cpp b/PhysX_3.4/Source/LowLevelAABB/src/BpBroadPhase.cpp index d39cf594..a68fe607 100644 --- a/PhysX_3.4/Source/LowLevelAABB/src/BpBroadPhase.cpp +++ b/PhysX_3.4/Source/LowLevelAABB/src/BpBroadPhase.cpp @@ -48,7 +48,7 @@ BroadPhase* BroadPhase::create( PX_ASSERT(bpType==PxBroadPhaseType::eMBP || bpType == PxBroadPhaseType::eSAP); if(bpType==PxBroadPhaseType::eMBP) - return PX_NEW(BroadPhaseMBP)(maxNbRegions, maxNbBroadPhaseOverlaps, maxNbStaticShapes, maxNbDynamicShapes); + return PX_NEW(BroadPhaseMBP)(maxNbRegions, maxNbBroadPhaseOverlaps, maxNbStaticShapes, maxNbDynamicShapes, contextID); else return PX_NEW(BroadPhaseSap)(maxNbBroadPhaseOverlaps, maxNbStaticShapes, maxNbDynamicShapes, contextID); } diff --git a/PhysX_3.4/Source/LowLevelAABB/src/BpBroadPhaseMBP.cpp b/PhysX_3.4/Source/LowLevelAABB/src/BpBroadPhaseMBP.cpp index 7220976a..b4a448d7 100644 --- a/PhysX_3.4/Source/LowLevelAABB/src/BpBroadPhaseMBP.cpp +++ b/PhysX_3.4/Source/LowLevelAABB/src/BpBroadPhaseMBP.cpp @@ -3374,10 +3374,13 @@ void MBP::setTransientBounds(const PxBounds3* bounds, const PxReal* contactDista #define DEFAULT_CREATED_DELETED_PAIRS_CAPACITY 1024 -BroadPhaseMBP::BroadPhaseMBP(PxU32 maxNbRegions, +BroadPhaseMBP::BroadPhaseMBP( PxU32 maxNbRegions, PxU32 maxNbBroadPhaseOverlaps, PxU32 maxNbStaticShapes, - PxU32 maxNbDynamicShapes) : + PxU32 maxNbDynamicShapes, + PxU64 contextID) : + mMBPUpdateWorkTask (contextID), + mMBPPostUpdateWorkTask (contextID), mMapping (NULL), mCapacity (0), mGroups (NULL) diff --git a/PhysX_3.4/Source/LowLevelAABB/src/BpBroadPhaseMBP.h b/PhysX_3.4/Source/LowLevelAABB/src/BpBroadPhaseMBP.h index 9e3ddbfb..ffc52ae2 100644 --- a/PhysX_3.4/Source/LowLevelAABB/src/BpBroadPhaseMBP.h +++ b/PhysX_3.4/Source/LowLevelAABB/src/BpBroadPhaseMBP.h @@ -53,7 +53,9 @@ namespace Bp BroadPhaseMBP(PxU32 maxNbRegions, PxU32 maxNbBroadPhaseOverlaps, PxU32 maxNbStaticShapes, - PxU32 maxNbDynamicShapes); + PxU32 maxNbDynamicShapes, + PxU64 contextID + ); virtual ~BroadPhaseMBP(); // BroadPhaseBase @@ -67,23 +69,24 @@ namespace Bp //~BroadPhaseBase // BroadPhase - virtual PxBroadPhaseType::Enum getType() const { return PxBroadPhaseType::eMBP; } + virtual PxBroadPhaseType::Enum getType() const { return PxBroadPhaseType::eMBP; } - virtual void destroy(); + virtual void destroy(); - virtual void update(const PxU32 numCpuTasks, PxcScratchAllocator* scratchAllocator, const BroadPhaseUpdateData& updateData, physx::PxBaseTask* continuation, physx::PxBaseTask* narrowPhaseUnblockTask); + virtual void update(const PxU32 numCpuTasks, PxcScratchAllocator* scratchAllocator, const BroadPhaseUpdateData& updateData, physx::PxBaseTask* continuation, physx::PxBaseTask* narrowPhaseUnblockTask); + virtual void fetchBroadPhaseResults(physx::PxBaseTask*) {} - virtual PxU32 getNbCreatedPairs() const; - virtual BroadPhasePairReport* getCreatedPairs(); - virtual PxU32 getNbDeletedPairs() const; - virtual BroadPhasePairReport* getDeletedPairs(); + virtual PxU32 getNbCreatedPairs() const; + virtual BroadPhasePairReport* getCreatedPairs(); + virtual PxU32 getNbDeletedPairs() const; + virtual BroadPhasePairReport* getDeletedPairs(); - virtual void freeBuffers(); + virtual void freeBuffers(); - virtual void shiftOrigin(const PxVec3& shift); + virtual void shiftOrigin(const PxVec3& shift); #if PX_CHECKED - virtual bool isValid(const BroadPhaseUpdateData& updateData) const; + virtual bool isValid(const BroadPhaseUpdateData& updateData) const; #endif virtual BroadPhasePair* getBroadPhasePairs() const {return NULL;} //KS - TODO - implement this!!! @@ -103,7 +106,7 @@ namespace Bp Ps::Array<BroadPhasePairReport> mCreated; Ps::Array<BroadPhasePairReport> mDeleted; - const BpHandle* mGroups; // ### why are those 'handles'? + const BpHandle* mGroups; // ### why are those 'handles'? void setUpdateData(const BroadPhaseUpdateData& updateData); void update(physx::PxBaseTask* continuation); diff --git a/PhysX_3.4/Source/LowLevelAABB/src/BpBroadPhaseSap.cpp b/PhysX_3.4/Source/LowLevelAABB/src/BpBroadPhaseSap.cpp index 6f0c163d..b490c4fd 100644 --- a/PhysX_3.4/Source/LowLevelAABB/src/BpBroadPhaseSap.cpp +++ b/PhysX_3.4/Source/LowLevelAABB/src/BpBroadPhaseSap.cpp @@ -55,9 +55,15 @@ BroadPhaseSap::BroadPhaseSap( const PxU32 maxNbStaticShapes, const PxU32 maxNbDynamicShapes, PxU64 contextID) : - mScratchAllocator (NULL), - mContextID (contextID) + mScratchAllocator (NULL), + mSapUpdateWorkTask (contextID), + mSapPostUpdateWorkTask (contextID), + mContextID (contextID) { + + for(PxU32 i=0;i<3;i++) + mBatchUpdateTasks[i].setContextId(contextID); + //Boxes mBoxesSize=0; mBoxesSizePrev=0; diff --git a/PhysX_3.4/Source/LowLevelAABB/src/BpBroadPhaseSap.h b/PhysX_3.4/Source/LowLevelAABB/src/BpBroadPhaseSap.h index 34c935ed..9d292c0f 100644 --- a/PhysX_3.4/Source/LowLevelAABB/src/BpBroadPhaseSap.h +++ b/PhysX_3.4/Source/LowLevelAABB/src/BpBroadPhaseSap.h @@ -60,13 +60,13 @@ class BroadPhaseBatchUpdateWorkTask: public Cm::Task { public: - BroadPhaseBatchUpdateWorkTask() - : Cm::Task(), - mSap(NULL), - mAxis(0xffffffff), - mPairs(NULL), - mPairsSize(0), - mPairsCapacity(0) + BroadPhaseBatchUpdateWorkTask(PxU64 contextId=0) : + Cm::Task(contextId), + mSap(NULL), + mAxis(0xffffffff), + mPairs(NULL), + mPairsSize(0), + mPairsCapacity(0) { } @@ -118,6 +118,7 @@ public: virtual PxBroadPhaseType::Enum getType() const { return PxBroadPhaseType::eSAP; } virtual void update(const PxU32 numCpuTasks, PxcScratchAllocator* scratchAllocator, const BroadPhaseUpdateData& updateData, physx::PxBaseTask* continuation, physx::PxBaseTask* narrowPhaseUnblockTask); + virtual void fetchBroadPhaseResults(physx::PxBaseTask*) {} virtual PxU32 getNbCreatedPairs() const { return mCreatedPairsSize; } virtual BroadPhasePairReport* getCreatedPairs() { return mCreatedPairsArray; } diff --git a/PhysX_3.4/Source/LowLevelAABB/src/BpMBPTasks.cpp b/PhysX_3.4/Source/LowLevelAABB/src/BpMBPTasks.cpp index 9524329c..ddadd59c 100644 --- a/PhysX_3.4/Source/LowLevelAABB/src/BpMBPTasks.cpp +++ b/PhysX_3.4/Source/LowLevelAABB/src/BpMBPTasks.cpp @@ -36,7 +36,7 @@ using namespace Bp; /////////////////////////////////////////////////////////////////////////////// -MBPUpdateWorkTask::MBPUpdateWorkTask() +MBPUpdateWorkTask::MBPUpdateWorkTask(PxU64 contextId) : MBPTask(contextId) { } @@ -44,7 +44,7 @@ MBPUpdateWorkTask::~MBPUpdateWorkTask() { } -MBPPostUpdateWorkTask::MBPPostUpdateWorkTask() +MBPPostUpdateWorkTask::MBPPostUpdateWorkTask(PxU64 contextId) : MBPTask(contextId) { } diff --git a/PhysX_3.4/Source/LowLevelAABB/src/BpMBPTasks.h b/PhysX_3.4/Source/LowLevelAABB/src/BpMBPTasks.h index 4993d536..9f392235 100644 --- a/PhysX_3.4/Source/LowLevelAABB/src/BpMBPTasks.h +++ b/PhysX_3.4/Source/LowLevelAABB/src/BpMBPTasks.h @@ -47,9 +47,10 @@ namespace physx class MBPTask : public Cm::Task, public shdfnd::UserAllocated { public: - MBPTask() : - mMBP (NULL), - mNumCpuTasks (0) + MBPTask(PxU64 contextId) : + Cm::Task (contextId), + mMBP (NULL), + mNumCpuTasks (0) {} PX_FORCE_INLINE void setBroadphase(Bp::BroadPhaseMBP* mbp) { mMBP = mbp; } @@ -70,7 +71,7 @@ namespace physx class MBPUpdateWorkTask : public MBPTask { public: - MBPUpdateWorkTask(); + MBPUpdateWorkTask(PxU64 contextId); ~MBPUpdateWorkTask(); // PxBaseTask virtual const char* getName() const { return "BpMBP.updateWork"; } @@ -89,7 +90,7 @@ namespace physx class MBPPostUpdateWorkTask : public MBPTask { public: - MBPPostUpdateWorkTask(); + MBPPostUpdateWorkTask(PxU64 contextId); // PxBaseTask virtual const char* getName() const { return "BpMBP.postUpdateWork"; } diff --git a/PhysX_3.4/Source/LowLevelAABB/src/BpSAPTasks.h b/PhysX_3.4/Source/LowLevelAABB/src/BpSAPTasks.h index 229f01dc..96442524 100644 --- a/PhysX_3.4/Source/LowLevelAABB/src/BpSAPTasks.h +++ b/PhysX_3.4/Source/LowLevelAABB/src/BpSAPTasks.h @@ -44,7 +44,7 @@ namespace Bp { public: - SapUpdateWorkTask() + SapUpdateWorkTask(PxU64 contextId) : Cm::Task(contextId) { } @@ -72,7 +72,7 @@ namespace Bp { public: - SapPostUpdateWorkTask() + SapPostUpdateWorkTask(PxU64 contextId) : Cm::Task(contextId) { } diff --git a/PhysX_3.4/Source/LowLevelAABB/src/BpSimpleAABBManager.cpp b/PhysX_3.4/Source/LowLevelAABB/src/BpSimpleAABBManager.cpp index ad3adf60..355082bb 100644 --- a/PhysX_3.4/Source/LowLevelAABB/src/BpSimpleAABBManager.cpp +++ b/PhysX_3.4/Source/LowLevelAABB/src/BpSimpleAABBManager.cpp @@ -1514,7 +1514,7 @@ void SimpleAABBManager::reserveShapeSpace(PxU32 nbTotalBounds) #endif SimpleAABBManager::SimpleAABBManager(BroadPhase& bp, BoundsArray& boundsArray, Ps::Array<PxReal, Ps::VirtualAllocator>& contactDistance, PxU32 maxNbAggregates, PxU32 maxNbShapes, Ps::VirtualAllocator& allocator, PxU64 contextID) : - mPostBroadPhase (this, "postBroadPhase"), + mFinalizeUpdateTask (contextID), mChangedHandleMap (allocator), mGroups (allocator), mContactDistance (contactDistance), @@ -1832,10 +1832,15 @@ void SimpleAABBManager::handleOriginShift() // PT: TODO: check that aggregates code is correct here for(PxU32 i=0; i<mUsedSize; i++) { - if(!mAddedHandleMap.test(i) && mGroups[i] != PX_INVALID_U32) + if(mGroups[i] == PX_INVALID_U32) + continue; + { if(mVolumeData[i].isSingleActor()) - mUpdatedHandles.pushBack(i); // PT: TODO: BoundsIndex-to-ShapeHandle confusion here + { + if(!mAddedHandleMap.test(i)) + mUpdatedHandles.pushBack(i); // PT: TODO: BoundsIndex-to-ShapeHandle confusion here + } else if(mVolumeData[i].isAggregate()) { const AggregateHandle aggregateHandle = mVolumeData[i].getAggregate(); @@ -1846,7 +1851,8 @@ void SimpleAABBManager::handleOriginShift() aggregate->allocateBounds(); aggregate->computeBounds(mBoundsArray, mContactDistance.begin()); mBoundsArray.begin()[aggregate->mIndex] = aggregate->mBounds; - mUpdatedHandles.pushBack(i); // PT: TODO: BoundsIndex-to-ShapeHandle confusion here + if(!mAddedHandleMap.test(i)) + mUpdatedHandles.pushBack(i); // PT: TODO: BoundsIndex-to-ShapeHandle confusion here } } } @@ -1888,7 +1894,7 @@ void SimpleAABBManager::startAggregateBoundsComputationTasks(PxU32 nbToGo, PxU32 PxU32 start = 0; while(nbToGo) { - AggregateBoundsComputationTask* T = PX_PLACEMENT_NEW(flushPool.allocate(sizeof(AggregateBoundsComputationTask)), AggregateBoundsComputationTask()); + AggregateBoundsComputationTask* T = PX_PLACEMENT_NEW(flushPool.allocate(sizeof(AggregateBoundsComputationTask)), AggregateBoundsComputationTask(mContextID)); const PxU32 nb = nbToGo < nbAggregatesPerTask ? nbToGo : nbAggregatesPerTask; T->Init(this, start, nb, mDirtyAggregates.begin()); @@ -2096,20 +2102,18 @@ void SimpleAABBManager::finalizeUpdate(PxU32 numCpuTasks, PxcScratchAllocator* s mPersistentStateChanged = false; PX_ASSERT(updateData.isValid()); - mPostBroadPhase.setContinuation(continuation); - + //KS - skip broad phase if there are no updated shapes. if (updateData.getNumCreatedHandles() != 0 || updateData.getNumRemovedHandles() != 0 || updateData.getNumUpdatedHandles() != 0) - mBroadPhase.update(numCpuTasks, scratchAllocator, updateData, &mPostBroadPhase, narrowPhaseUnlockTask); - else if (narrowPhaseUnlockTask) + mBroadPhase.update(numCpuTasks, scratchAllocator, updateData, continuation, narrowPhaseUnlockTask); + else narrowPhaseUnlockTask->removeReference(); - mPostBroadPhase.removeReference(); } static PX_FORCE_INLINE void createOverlap(Ps::Array<AABBOverlap>* overlaps, const Ps::Array<VolumeData>& volumeData, PxU32 id0, PxU32 id1, ActorHandle handle) { // overlaps.pushBack(AABBOverlap(volumeData[id0].userData, volumeData[id1].userData, handle)); - PxU8 volumeType = PxMax(volumeData[id0].getVolumeType(), volumeData[id1].getVolumeType()); + const PxU8 volumeType = PxMax(volumeData[id0].getVolumeType(), volumeData[id1].getVolumeType()); overlaps[volumeType].pushBack(AABBOverlap(reinterpret_cast<void*>(size_t(id0)), reinterpret_cast<void*>(size_t(id1)), handle)); } @@ -2119,8 +2123,8 @@ static PX_FORCE_INLINE void deleteOverlap(Ps::Array<AABBOverlap>* overlaps, cons // PX_ASSERT(volumeData[id1].userData); if (volumeData[id0].getUserData() && volumeData[id1].getUserData()) // PT: TODO: no idea if this is the right thing to do or if it's normal to get null ptrs here { - PxU8 volumeType = PxMax(volumeData[id0].getVolumeType(), volumeData[id1].getVolumeType()); - // overlaps.pushBack(AABBOverlap(volumeData[id0].userData, volumeData[id1].userData, handle)); + const PxU8 volumeType = PxMax(volumeData[id0].getVolumeType(), volumeData[id1].getVolumeType()); +// overlaps.pushBack(AABBOverlap(volumeData[id0].userData, volumeData[id1].userData, handle)); overlaps[volumeType].pushBack(AABBOverlap(reinterpret_cast<void*>(size_t(id0)), reinterpret_cast<void*>(size_t(id1)), handle)); } } @@ -2440,7 +2444,7 @@ static void processAggregatePairs(AggPairMap& map, SimpleAABBManager& manager) } } -void SimpleAABBManager::postBroadPhase(PxBaseTask*) +void SimpleAABBManager::postBroadPhase(PxBaseTask*, PxBaseTask* narrowPhaseUnlockTask) { PX_PROFILE_ZONE("SimpleAABBManager::postBroadPhase", getContextId()); @@ -2449,33 +2453,52 @@ void SimpleAABBManager::postBroadPhase(PxBaseTask*) // PT: TODO: consider merging mCreatedOverlaps & mDestroyedOverlaps // PT: TODO: revisit memory management of mCreatedOverlaps & mDestroyedOverlaps + //KS - if we ran broad phase, fetch the results now + if (mAddedHandles.size() != 0 || mUpdatedHandles.size() != 0 || mRemovedHandles.size() != 0) + mBroadPhase.fetchBroadPhaseResults(narrowPhaseUnlockTask); + for (PxU32 i = 0; i < VolumeBuckets::eCOUNT; ++i) { resetOrClear(mCreatedOverlaps[i]); resetOrClear(mDestroyedOverlaps[i]); } -// processBPPairs<CreatedPairHandler>(mBroadPhase.getNbCreatedPairs(), mBroadPhase.getCreatedPairs(), *this); - processBPPairs<DeletedPairHandler>(mBroadPhase.getNbDeletedPairs(), mBroadPhase.getDeletedPairs(), *this); + { + PX_PROFILE_ZONE("SimpleAABBManager::postBroadPhase - process deleted pairs", getContextId()); +// processBPPairs<CreatedPairHandler>(mBroadPhase.getNbCreatedPairs(), mBroadPhase.getCreatedPairs(), *this); + processBPPairs<DeletedPairHandler>(mBroadPhase.getNbDeletedPairs(), mBroadPhase.getDeletedPairs(), *this); + } { - processAggregatePairs(mActorAggregatePairs, *this); - processAggregatePairs(mAggregateAggregatePairs, *this); + { + PX_PROFILE_ZONE("SimpleAABBManager::postBroadPhase - process actor-aggregate pairs", getContextId()); + processAggregatePairs(mActorAggregatePairs, *this); + } + { + PX_PROFILE_ZONE("SimpleAABBManager::postBroadPhase - process aggregate pairs", getContextId()); + processAggregatePairs(mAggregateAggregatePairs, *this); + } - const PxU32 size = mDirtyAggregates.size(); - for(PxU32 i=0;i<size;i++) { - Aggregate* aggregate = mDirtyAggregates[i]; - aggregate->resetDirtyState(); + PX_PROFILE_ZONE("SimpleAABBManager::postBroadPhase - aggregate self-collisions", getContextId()); + const PxU32 size = mDirtyAggregates.size(); + for(PxU32 i=0;i<size;i++) + { + Aggregate* aggregate = mDirtyAggregates[i]; + aggregate->resetDirtyState(); - if(aggregate->mSelfCollisionPairs) - updatePairs(*aggregate->mSelfCollisionPairs); + if(aggregate->mSelfCollisionPairs) + updatePairs(*aggregate->mSelfCollisionPairs); + } + resetOrClear(mDirtyAggregates); } - resetOrClear(mDirtyAggregates); } - processBPPairs<CreatedPairHandler>(mBroadPhase.getNbCreatedPairs(), mBroadPhase.getCreatedPairs(), *this); -// processBPPairs<DeletedPairHandler>(mBroadPhase.getNbDeletedPairs(), mBroadPhase.getDeletedPairs(), *this); + { + PX_PROFILE_ZONE("SimpleAABBManager::postBroadPhase - process created pairs", getContextId()); + processBPPairs<CreatedPairHandler>(mBroadPhase.getNbCreatedPairs(), mBroadPhase.getCreatedPairs(), *this); +// processBPPairs<DeletedPairHandler>(mBroadPhase.getNbDeletedPairs(), mBroadPhase.getDeletedPairs(), *this); + } // PT: TODO: revisit this // Filter out pairs in mDestroyedOverlaps that already exist in mCreatedOverlaps. This should be done better using bitmaps @@ -2483,6 +2506,8 @@ void SimpleAABBManager::postBroadPhase(PxBaseTask*) // We could also have a dedicated function "reinsertBroadPhase()", which would preserve the existing interactions at Sc-level. if(1) { + PX_PROFILE_ZONE("SimpleAABBManager::postBroadPhase - post-process", getContextId()); + PxU32 totalCreatedOverlaps = 0; for (PxU32 idx = 0; idx < VolumeBuckets::eCOUNT; ++idx) totalCreatedOverlaps += mCreatedOverlaps[idx].size(); @@ -2523,6 +2548,7 @@ void SimpleAABBManager::postBroadPhase(PxBaseTask*) // Handle out-of-bounds objects { + PX_PROFILE_ZONE("SimpleAABBManager::postBroadPhase - out-of-bounds", getContextId()); PxU32 nbObjects = mBroadPhase.getNbOutOfBoundsObjects(); const PxU32* objects = mBroadPhase.getOutOfBoundsObjects(); while(nbObjects--) diff --git a/PhysX_3.4/Source/LowLevelCloth/src/ClothImpl.h b/PhysX_3.4/Source/LowLevelCloth/src/ClothImpl.h index 22e58217..ab56c855 100644 --- a/PhysX_3.4/Source/LowLevelCloth/src/ClothImpl.h +++ b/PhysX_3.4/Source/LowLevelCloth/src/ClothImpl.h @@ -45,9 +45,9 @@ template <typename T> class ClothImpl : public UserAllocated, public Cloth { ClothImpl(const ClothImpl&); + ClothImpl& operator=(const ClothImpl&); public: - ClothImpl& operator=(const ClothImpl&); typedef T ClothType; typedef typename ClothType::FactoryType FactoryType; diff --git a/PhysX_3.4/Source/LowLevelCloth/src/SwCloth.cpp b/PhysX_3.4/Source/LowLevelCloth/src/SwCloth.cpp index 753f2b9c..a614c280 100644 --- a/PhysX_3.4/Source/LowLevelCloth/src/SwCloth.cpp +++ b/PhysX_3.4/Source/LowLevelCloth/src/SwCloth.cpp @@ -301,5 +301,8 @@ void ClothImpl<SwCloth>::setVirtualParticles(Range<const uint32_t[4]> indices, R mCloth.notifyChanged(); } +//explicit template instantiation +template class ClothImpl<SwCloth>; + } // namespace cloth } // namespace physx diff --git a/PhysX_3.4/Source/LowLevelCloth/src/SwCollision.h b/PhysX_3.4/Source/LowLevelCloth/src/SwCollision.h index e8f2392e..9b474dbe 100644 --- a/PhysX_3.4/Source/LowLevelCloth/src/SwCollision.h +++ b/PhysX_3.4/Source/LowLevelCloth/src/SwCollision.h @@ -134,5 +134,16 @@ class SwCollision static const Simd4f sSkeletonWidth; }; + +#if PX_SUPPORT_EXTERN_TEMPLATE +//explicit template instantiation declaration +#if NV_SIMD_SIMD +extern template class SwCollision<Simd4f>; +#endif +#if NV_SIMD_SCALAR +extern template class SwCollision<Scalar4f>; +#endif +#endif + } } diff --git a/PhysX_3.4/Source/LowLevelCloth/src/SwFactory.cpp b/PhysX_3.4/Source/LowLevelCloth/src/SwFactory.cpp index fa0b5864..3a97aa74 100644 --- a/PhysX_3.4/Source/LowLevelCloth/src/SwFactory.cpp +++ b/PhysX_3.4/Source/LowLevelCloth/src/SwFactory.cpp @@ -62,6 +62,11 @@ cloth::Fabric* cloth::SwFactory::createFabric(uint32_t numParticles, Range<const getNextFabricId()); } +#if PX_SUPPORT_EXTERN_TEMPLATE +//explicit template instantiation declaration +extern template class cloth::ClothImpl<cloth::SwCloth>; +#endif + cloth::Cloth* cloth::SwFactory::createCloth(Range<const PxVec4> particles, Fabric& fabric) { return new SwClothImpl(*this, fabric, particles); diff --git a/PhysX_3.4/Source/LowLevelCloth/src/SwInterCollision.h b/PhysX_3.4/Source/LowLevelCloth/src/SwInterCollision.h index b4ae8824..baf631de 100644 --- a/PhysX_3.4/Source/LowLevelCloth/src/SwInterCollision.h +++ b/PhysX_3.4/Source/LowLevelCloth/src/SwInterCollision.h @@ -139,6 +139,16 @@ class SwInterCollision mutable uint32_t mNumCollisions; }; +#if PX_SUPPORT_EXTERN_TEMPLATE +//explicit template instantiation declaration +#if NV_SIMD_SIMD +extern template class SwInterCollision<Simd4f>; +#endif +#if NV_SIMD_SCALAR +extern template class SwInterCollision<Scalar4f>; +#endif +#endif + } // namespace cloth } // namespace physx diff --git a/PhysX_3.4/Source/LowLevelCloth/src/SwSelfCollision.h b/PhysX_3.4/Source/LowLevelCloth/src/SwSelfCollision.h index c50ea8b5..b13ba4d9 100644 --- a/PhysX_3.4/Source/LowLevelCloth/src/SwSelfCollision.h +++ b/PhysX_3.4/Source/LowLevelCloth/src/SwSelfCollision.h @@ -78,6 +78,16 @@ class SwSelfCollision mutable uint32_t mNumCollisions; }; +#if PX_SUPPORT_EXTERN_TEMPLATE +//explicit template instantiation declaration +#if NV_SIMD_SIMD +extern template class SwSelfCollision<Simd4f>; +#endif +#if NV_SIMD_SCALAR +extern template class SwSelfCollision<Scalar4f>; +#endif +#endif + } // namespace cloth } // namespace physx diff --git a/PhysX_3.4/Source/LowLevelCloth/src/SwSolver.cpp b/PhysX_3.4/Source/LowLevelCloth/src/SwSolver.cpp index 6a00ae84..c1cfadc3 100644 --- a/PhysX_3.4/Source/LowLevelCloth/src/SwSolver.cpp +++ b/PhysX_3.4/Source/LowLevelCloth/src/SwSolver.cpp @@ -224,7 +224,7 @@ const char* cloth::SwSolver::EndSimulationTask::getName() const } cloth::SwSolver::CpuClothSimulationTask::CpuClothSimulationTask(SwCloth& cloth, EndSimulationTask& continuation) -: mCloth(&cloth), mContinuation(&continuation), mScratchMemorySize(0), mScratchMemory(0), mInvNumIterations(0.0f) +: Cm::Task(0), mCloth(&cloth), mContinuation(&continuation), mScratchMemorySize(0), mScratchMemory(0), mInvNumIterations(0.0f) { } diff --git a/PhysX_3.4/Source/LowLevelCloth/src/SwSolver.h b/PhysX_3.4/Source/LowLevelCloth/src/SwSolver.h index 3a91535f..a2c5b580 100644 --- a/PhysX_3.4/Source/LowLevelCloth/src/SwSolver.h +++ b/PhysX_3.4/Source/LowLevelCloth/src/SwSolver.h @@ -51,6 +51,8 @@ class SwSolver : public UserAllocated, public Solver using physx::PxLightCpuTask::mRefCount; using physx::PxLightCpuTask::mTm; + StartSimulationTask() : Cm::Task(0) {} + virtual void runInternal(); virtual const char* getName() const; SwSolver* mSolver; @@ -60,6 +62,8 @@ class SwSolver : public UserAllocated, public Solver { using physx::PxLightCpuTask::mRefCount; + EndSimulationTask() : Cm::Task(0) {} + virtual void runInternal(); virtual const char* getName() const; SwSolver* mSolver; diff --git a/PhysX_3.4/Source/LowLevelCloth/src/SwSolverKernel.h b/PhysX_3.4/Source/LowLevelCloth/src/SwSolverKernel.h index 2e6abafb..38e87923 100644 --- a/PhysX_3.4/Source/LowLevelCloth/src/SwSolverKernel.h +++ b/PhysX_3.4/Source/LowLevelCloth/src/SwSolverKernel.h @@ -80,5 +80,16 @@ class SwSolverKernel template <typename AccelerationIterator> void integrateParticles(AccelerationIterator& accelIt, const Simd4f&); }; + +#if PX_SUPPORT_EXTERN_TEMPLATE +//explicit template instantiation declaration +#if NV_SIMD_SIMD +extern template class SwSolverKernel<Simd4f>; +#endif +#if NV_SIMD_SCALAR +extern template class SwSolverKernel<Scalar4f>; +#endif +#endif + } } diff --git a/PhysX_3.4/Source/LowLevelCloth/src/windows/CuCloth.h b/PhysX_3.4/Source/LowLevelCloth/src/windows/CuCloth.h index 28ebc36a..dd14dceb 100644 --- a/PhysX_3.4/Source/LowLevelCloth/src/windows/CuCloth.h +++ b/PhysX_3.4/Source/LowLevelCloth/src/windows/CuCloth.h @@ -74,8 +74,9 @@ struct CuConstraints class CuCloth : protected CuContextLock { - public: CuCloth& operator=(const CuCloth&); + +public: typedef CuFactory FactoryType; typedef CuFabric FabricType; typedef CuContextLock ContextLockType; diff --git a/PhysX_3.4/Source/LowLevelCloth/src/windows/CuClothCreate.cpp b/PhysX_3.4/Source/LowLevelCloth/src/windows/CuClothCreate.cpp new file mode 100644 index 00000000..b1a59de6 --- /dev/null +++ b/PhysX_3.4/Source/LowLevelCloth/src/windows/CuClothCreate.cpp @@ -0,0 +1,45 @@ +// This code contains NVIDIA Confidential Information and is disclosed to you +// under a form of NVIDIA software license agreement provided separately to you. +// +// Notice +// NVIDIA Corporation and its licensors retain all intellectual property and +// proprietary rights in and to this software and related documentation and +// any modifications thereto. Any use, reproduction, disclosure, or +// distribution of this software and related documentation without an express +// license agreement from NVIDIA Corporation is strictly prohibited. +// +// ALL NVIDIA DESIGN SPECIFICATIONS, CODE ARE PROVIDED "AS IS.". NVIDIA MAKES +// NO WARRANTIES, EXPRESSED, IMPLIED, STATUTORY, OR OTHERWISE WITH RESPECT TO +// THE MATERIALS, AND EXPRESSLY DISCLAIMS ALL IMPLIED WARRANTIES OF NONINFRINGEMENT, +// MERCHANTABILITY, AND FITNESS FOR A PARTICULAR PURPOSE. +// +// Information and code furnished is believed to be accurate and reliable. +// However, NVIDIA Corporation assumes no responsibility for the consequences of use of such +// information or for any infringement of patents or other rights of third parties that may +// result from its use. No license is granted by implication or otherwise under any patent +// or patent rights of NVIDIA Corporation. Details are subject to change without notice. +// This code supersedes and replaces all information previously supplied. +// NVIDIA Corporation products are not authorized for use as critical +// components in life support devices or systems without express written approval of +// NVIDIA Corporation. +// +// Copyright (c) 2008-2017 NVIDIA Corporation. All rights reserved. +// Copyright (c) 2004-2008 AGEIA Technologies, Inc. All rights reserved. +// Copyright (c) 2001-2004 NovodeX AG. All rights reserved. + +#include "PxgBroadPhase.h" + +namespace physx +{ + + extern "C" void initClothKernels0(); + + void createPxgCloth() + { +#if !PX_PHYSX_GPU_EXPORTS + //this call is needed to force PhysXClothGpu linkage as Static Library! + initClothKernels0(); +#endif + } + +} diff --git a/PhysX_3.4/Source/LowLevelCloth/src/windows/CuClothCreate.h b/PhysX_3.4/Source/LowLevelCloth/src/windows/CuClothCreate.h new file mode 100644 index 00000000..6064b355 --- /dev/null +++ b/PhysX_3.4/Source/LowLevelCloth/src/windows/CuClothCreate.h @@ -0,0 +1,41 @@ +// This code contains NVIDIA Confidential Information and is disclosed to you +// under a form of NVIDIA software license agreement provided separately to you. +// +// Notice +// NVIDIA Corporation and its licensors retain all intellectual property and +// proprietary rights in and to this software and related documentation and +// any modifications thereto. Any use, reproduction, disclosure, or +// distribution of this software and related documentation without an express +// license agreement from NVIDIA Corporation is strictly prohibited. +// +// ALL NVIDIA DESIGN SPECIFICATIONS, CODE ARE PROVIDED "AS IS.". NVIDIA MAKES +// NO WARRANTIES, EXPRESSED, IMPLIED, STATUTORY, OR OTHERWISE WITH RESPECT TO +// THE MATERIALS, AND EXPRESSLY DISCLAIMS ALL IMPLIED WARRANTIES OF NONINFRINGEMENT, +// MERCHANTABILITY, AND FITNESS FOR A PARTICULAR PURPOSE. +// +// Information and code furnished is believed to be accurate and reliable. +// However, NVIDIA Corporation assumes no responsibility for the consequences of use of such +// information or for any infringement of patents or other rights of third parties that may +// result from its use. No license is granted by implication or otherwise under any patent +// or patent rights of NVIDIA Corporation. Details are subject to change without notice. +// This code supersedes and replaces all information previously supplied. +// NVIDIA Corporation products are not authorized for use as critical +// components in life support devices or systems without express written approval of +// NVIDIA Corporation. +// +// Copyright (c) 2008-2017 NVIDIA Corporation. All rights reserved. +// Copyright (c) 2004-2008 AGEIA Technologies, Inc. All rights reserved. +// Copyright (c) 2001-2004 NovodeX AG. All rights reserved. + +#ifndef PXG_CLOTH_CREATE_H +#define PXG_CLOTH_CREATE_H + + +namespace physx +{ + + //this is needed to force PhysXClothGpu linkage as Static Library! + void createPxgCloth(); +} + +#endif diff --git a/PhysX_3.4/Source/LowLevelCloth/src/windows/CuSolver.cpp b/PhysX_3.4/Source/LowLevelCloth/src/windows/CuSolver.cpp index a20e9e0d..c65e3c61 100644 --- a/PhysX_3.4/Source/LowLevelCloth/src/windows/CuSolver.cpp +++ b/PhysX_3.4/Source/LowLevelCloth/src/windows/CuSolver.cpp @@ -541,7 +541,7 @@ void cloth::CuSolver::interCollision() } cloth::CuSolver::ClothSolverTask::ClothSolverTask(FunctionPtr functionPtr, const char* name) -: mSolver(0), mFunctionPtr(functionPtr), mName(name) +: Cm::Task(0), mSolver(0), mFunctionPtr(functionPtr), mName(name) { } diff --git a/PhysX_3.4/Source/LowLevelDynamics/src/DyDynamics.cpp b/PhysX_3.4/Source/LowLevelDynamics/src/DyDynamics.cpp index b7988989..7bf839f3 100644 --- a/PhysX_3.4/Source/LowLevelDynamics/src/DyDynamics.cpp +++ b/PhysX_3.4/Source/LowLevelDynamics/src/DyDynamics.cpp @@ -358,19 +358,20 @@ class PxsPreIntegrateTask : public Cm::Task { PxsPreIntegrateTask& operator=(const PxsPreIntegrateTask&); public: - PxsPreIntegrateTask( DynamicsContext& context, - PxsBodyCore*const* bodyArray, - PxsRigidBody*const* originalBodyArray, - PxU32 const* nodeIndexArray, - PxSolverBody* solverBodies, - PxSolverBodyData* solverBodyDataPool, - PxF32 dt, - PxU32 numBodies, - volatile PxU32* maxSolverPositionIterations, - volatile PxU32* maxSolverVelocityIterations, - const PxU32 startIndex, - const PxU32 numToIntegrate, - const PxVec3& gravity) : + PxsPreIntegrateTask( DynamicsContext& context, + PxsBodyCore*const* bodyArray, + PxsRigidBody*const* originalBodyArray, + PxU32 const* nodeIndexArray, + PxSolverBody* solverBodies, + PxSolverBodyData* solverBodyDataPool, + PxF32 dt, + PxU32 numBodies, + volatile PxU32* maxSolverPositionIterations, + volatile PxU32* maxSolverVelocityIterations, + const PxU32 startIndex, + const PxU32 numToIntegrate, + const PxVec3& gravity) : + Cm::Task(context.getContextId()), mContext(context), mBodyArray(bodyArray), mOriginalBodyArray(originalBodyArray), @@ -418,7 +419,7 @@ class PxsParallelSolverTask : public Cm::Task public: PxsParallelSolverTask(SolverIslandParams& params, DynamicsContext& context, PxFrictionType::Enum frictionType, IG::IslandSim& islandSim) - : mParams(params), mContext(context), mFrictionType(frictionType), mIslandSim(islandSim) + : Cm::Task(context.getContextId()), mParams(params), mContext(context), mFrictionType(frictionType), mIslandSim(islandSim) { } @@ -454,6 +455,7 @@ public: PxU32 stride, PxsMaterialManager* materialManager, PxsContactManagerOutputIterator& iterator) : + Cm::Task(context.getContextId()), mContext(context), mThreadContext(threadContext), mObjects(objects), @@ -605,7 +607,7 @@ class PxsForceThresholdTask : public Cm::Task PxsForceThresholdTask& operator=(const PxsForceThresholdTask&); public: - PxsForceThresholdTask(DynamicsContext& context): mDynamicsContext(context) + PxsForceThresholdTask(DynamicsContext& context) : Cm::Task(context.getContextId()), mDynamicsContext(context) { } @@ -747,7 +749,7 @@ public: SolverArticulationUpdateTask(ThreadContext& islandThreadContext, Articulation** articulations, ArticulationSolverDesc* articulationDescArray, PxU32 nbToProcess, Dy::DynamicsContext& context, PxU32 startIdx): - mIslandThreadContext(islandThreadContext), mArticulations(articulations), mArticulationDescArray(articulationDescArray), mNbToProcess(nbToProcess), mContext(context), mStartIdx(startIdx) + Cm::Task(context.getContextId()), mIslandThreadContext(islandThreadContext), mArticulations(articulations), mArticulationDescArray(articulationDescArray), mNbToProcess(nbToProcess), mContext(context), mStartIdx(startIdx) { } @@ -826,6 +828,7 @@ public: PxsContactManagerOutputIterator& iterator, bool enhancedDeterminism ) : + Cm::Task (context.getContextId()), mContext (context), mIslandContext (islandContext), mObjects (objects), @@ -1376,6 +1379,7 @@ public: IslandContext& islandContext, const SolverIslandObjects& objects, const PxU32 solverBodyOffset, bool enhancedDeterminism) : + Cm::Task(context.getContextId()), mContext(context), mIslandContext(islandContext), mObjects(objects), @@ -1479,6 +1483,7 @@ public: const SolverIslandObjects& objects, const PxU32 solverBodyOffset, IG::IslandSim& islandSim) : + Cm::Task(context.getContextId()), mContext(context), mIslandContext(islandContext), mObjects(objects), @@ -1871,6 +1876,7 @@ public: const SolverIslandObjects& objects, const PxU32 solverBodyOffset, PxsContactManagerOutputIterator& cmOutputs) : + Cm::Task (context.getContextId()), mContext (context), mIslandContext (islandContext), mObjects (objects), @@ -1974,6 +1980,7 @@ public: PxU32 solverDataOffset, PxsContactManagerOutputIterator& outputs, bool enhancedDeterminism) : + Cm::Task (context.getContextId()), mContext (context), mIslandContext (islandContext), mSolverDataOffset (solverDataOffset), @@ -2803,6 +2810,7 @@ class PxsCreateFinalizeContactsTask : public Cm::Task public: PxsCreateFinalizeContactsTask( const PxU32 numConstraints, PxSolverConstraintDesc* descArray, PxSolverBodyData* solverBodyData, ThreadContext& threadContext, DynamicsContext& context, PxU32 startIndex, PxU32 endIndex, PxsContactManagerOutputIterator& outputs) : + Cm::Task(context.getContextId()), mNumConstraints(numConstraints), mDescArray(descArray), mSolverBodyData(solverBodyData), mThreadContext(threadContext), mDynamicsContext(context), mOutputs(outputs), diff --git a/PhysX_3.4/Source/LowLevelParticles/src/PtBatcher.cpp b/PhysX_3.4/Source/LowLevelParticles/src/PtBatcher.cpp index b3814f81..d5dfad94 100644 --- a/PhysX_3.4/Source/LowLevelParticles/src/PtBatcher.cpp +++ b/PhysX_3.4/Source/LowLevelParticles/src/PtBatcher.cpp @@ -93,10 +93,10 @@ static void sortBatchedInputs(ParticleSystemSim** particleSystems, T* inputs, Px } Batcher::Batcher(class Context& _context) -: shapeGenTask("Pt::Batcher::shapeGen") -, dynamicsCpuTask("Pt::Batcher::dynamicsCpu") -, collPrepTask("Pt::Batcher::collPrep") -, collisionCpuTask("Pt::Batcher::collisionCpu") +: shapeGenTask(0, "Pt::Batcher::shapeGen") +, dynamicsCpuTask(0, "Pt::Batcher::dynamicsCpu") +, collPrepTask(0, "Pt::Batcher::collPrep") +, collisionCpuTask(0, "Pt::Batcher::collisionCpu") , context(_context) { } diff --git a/PhysX_3.4/Source/LowLevelParticles/src/PtCollision.cpp b/PhysX_3.4/Source/LowLevelParticles/src/PtCollision.cpp index 2aa44f6a..fc9cabd7 100644 --- a/PhysX_3.4/Source/LowLevelParticles/src/PtCollision.cpp +++ b/PhysX_3.4/Source/LowLevelParticles/src/PtCollision.cpp @@ -53,7 +53,7 @@ namespace Pt class CollisionTask : public Cm::Task { public: - CollisionTask(Collision& context, PxU32 taskDataIndex) : mCollisionContext(context), mTaskDataIndex(taskDataIndex) + CollisionTask(Collision& context, PxU32 taskDataIndex) : Cm::Task(0), mCollisionContext(context), mTaskDataIndex(taskDataIndex) { } @@ -83,7 +83,7 @@ how to support dominance-driven one/two-way collision (search for 'todo dominanc - use this flag when copying impulse to collData.shapeImpulse */ Collision::Collision(ParticleSystemSimCpu& particleSystem) -: mParticleSystem(particleSystem), mMergeTask(this, "Collision.mergeResults") +: mParticleSystem(particleSystem), mMergeTask(0, this, "Collision.mergeResults") { } diff --git a/PhysX_3.4/Source/LowLevelParticles/src/PtDynamics.cpp b/PhysX_3.4/Source/LowLevelParticles/src/PtDynamics.cpp index ba3b5f87..1c07c3b8 100644 --- a/PhysX_3.4/Source/LowLevelParticles/src/PtDynamics.cpp +++ b/PhysX_3.4/Source/LowLevelParticles/src/PtDynamics.cpp @@ -144,7 +144,7 @@ namespace Pt class DynamicsSphTask : public Cm::Task { public: - DynamicsSphTask(Dynamics& context, PxU32 taskDataIndex) : mDynamicsContext(context), mTaskDataIndex(taskDataIndex) + DynamicsSphTask(Dynamics& context, PxU32 taskDataIndex) : Cm::Task(0), mDynamicsContext(context), mTaskDataIndex(taskDataIndex) { } @@ -171,8 +171,8 @@ Dynamics::Dynamics(ParticleSystemSimCpu& particleSystem) : mParticleSystem(particleSystem) , mTempReorderedParticles(NULL) , mTempParticleForceBuf(NULL) -, mMergeDensityTask(this, "Pt::Dynamics.mergeDensity") -, mMergeForceTask(this, "Pt::Dynamics.mergeForce") +, mMergeDensityTask(0, this, "Pt::Dynamics.mergeDensity") +, mMergeForceTask(0, this, "Pt::Dynamics.mergeForce") , mNumTempBuffers(0) { } diff --git a/PhysX_3.4/Source/LowLevelParticles/src/PtParticleSystemSimCpu.cpp b/PhysX_3.4/Source/LowLevelParticles/src/PtParticleSystemSimCpu.cpp index 3c1e89f5..d8d67453 100644 --- a/PhysX_3.4/Source/LowLevelParticles/src/PtParticleSystemSimCpu.cpp +++ b/PhysX_3.4/Source/LowLevelParticles/src/PtParticleSystemSimCpu.cpp @@ -317,12 +317,12 @@ ParticleSystemSimCpu::ParticleSystemSimCpu(ContextCpu* context, PxU32 index) , mDynamics(*this) , mCollision(*this) , mIndex(index) -, mPacketShapesUpdateTask(this, "Pt::ParticleSystemSimCpu.packetShapesUpdate") -, mPacketShapesFinalizationTask(this, "Pt::ParticleSystemSimCpu.packetShapesFinalization") -, mDynamicsUpdateTask(this, "Pt::ParticleSystemSimCpu.dynamicsUpdate") -, mCollisionUpdateTask(this, "Pt::ParticleSystemSimCpu.collisionUpdate") -, mCollisionFinalizationTask(this, "Pt::ParticleSystemSimCpu.collisionFinalization") -, mSpatialHashUpdateSectionsTask(this, "Pt::ParticleSystemSimCpu.spatialHashUpdateSections") +, mPacketShapesUpdateTask(0, this, "Pt::ParticleSystemSimCpu.packetShapesUpdate") +, mPacketShapesFinalizationTask(0, this, "Pt::ParticleSystemSimCpu.packetShapesFinalization") +, mDynamicsUpdateTask(0, this, "Pt::ParticleSystemSimCpu.dynamicsUpdate") +, mCollisionUpdateTask(0, this, "Pt::ParticleSystemSimCpu.collisionUpdate") +, mCollisionFinalizationTask(0, this, "Pt::ParticleSystemSimCpu.collisionFinalization") +, mSpatialHashUpdateSectionsTask(0, this, "Pt::ParticleSystemSimCpu.spatialHashUpdateSections") { } diff --git a/PhysX_3.4/Source/PhysX/src/NpScene.cpp b/PhysX_3.4/Source/PhysX/src/NpScene.cpp index 28d6a8e0..783436da 100644 --- a/PhysX_3.4/Source/PhysX/src/NpScene.cpp +++ b/PhysX_3.4/Source/PhysX/src/NpScene.cpp @@ -122,11 +122,11 @@ NpScene::NpScene(const PxSceneDesc& desc) : mSanityBounds (desc.sanityBounds), mNbClients (1), //we always have the default client. mClientBehaviorFlags (PX_DEBUG_EXP("sceneBehaviorFlags")), - mSceneCompletion (mPhysicsDone), - mCollisionCompletion (mCollisionDone), - mSceneExecution (0, "NpScene.execution"), - mSceneCollide (0, "NpScene.collide"), - mSceneAdvance (0, "NpScene.solve"), + mSceneCompletion (getContextId(), mPhysicsDone), + mCollisionCompletion (getContextId(), mCollisionDone), + mSceneExecution (getContextId(), 0, "NpScene.execution"), + mSceneCollide (getContextId(), 0, "NpScene.collide"), + mSceneAdvance (getContextId(), 0, "NpScene.solve"), mControllingSimulation (false), mSimThreadStackSize (0), mConcurrentWriteCount (0), diff --git a/PhysX_3.4/Source/PhysX/src/NpScene.h b/PhysX_3.4/Source/PhysX/src/NpScene.h index 84420173..4c07f38e 100644 --- a/PhysX_3.4/Source/PhysX/src/NpScene.h +++ b/PhysX_3.4/Source/PhysX/src/NpScene.h @@ -433,7 +433,7 @@ private: struct SceneCompletion : public Cm::Task { - SceneCompletion(Ps::Sync& sync) : mSync(sync){} + SceneCompletion(PxU64 contextId, Ps::Sync& sync) : Cm::Task(contextId), mSync(sync){} virtual void runInternal() {} //ML: As soon as mSync.set is called, and the scene is shutting down, //the scene may be deleted. That means this running task may also be deleted. diff --git a/PhysX_3.4/Source/PhysX/src/NpSceneQueries.cpp b/PhysX_3.4/Source/PhysX/src/NpSceneQueries.cpp index 08d1a14c..45202c2d 100644 --- a/PhysX_3.4/Source/PhysX/src/NpSceneQueries.cpp +++ b/PhysX_3.4/Source/PhysX/src/NpSceneQueries.cpp @@ -819,18 +819,8 @@ bool NpSceneQueries::multiQuery( } } +//explicit template instantiation +template bool NpSceneQueries::multiQuery<PxRaycastHit>(const MultiQueryInput&, PxHitCallback<PxRaycastHit>&, PxHitFlags, const PxQueryCache*, const PxQueryFilterData&, PxQueryFilterCallback*, BatchQueryFilterData*) const; +template bool NpSceneQueries::multiQuery<PxOverlapHit>(const MultiQueryInput&, PxHitCallback<PxOverlapHit>&, PxHitFlags, const PxQueryCache*, const PxQueryFilterData&, PxQueryFilterCallback*, BatchQueryFilterData*) const; +template bool NpSceneQueries::multiQuery<PxSweepHit>(const MultiQueryInput&, PxHitCallback<PxSweepHit>&, PxHitFlags, const PxQueryCache*, const PxQueryFilterData&, PxQueryFilterCallback*, BatchQueryFilterData*) const; -// explicit instantiations for multiQuery to fix link errors on android -#if !PX_WINDOWS_FAMILY -#define TMQ(hittype) \ - template bool NpSceneQueries::multiQuery<hittype>( \ - const MultiQueryInput& input, PxHitCallback<hittype>& hits, PxHitFlags hitFlags, \ - const PxQueryCache* cache, const PxQueryFilterData& filterData, PxQueryFilterCallback* filterCall, \ - BatchQueryFilterData* bfd) const; - -TMQ(PxRaycastHit) -TMQ(PxOverlapHit) -TMQ(PxSweepHit) - -#undef TMQ -#endif diff --git a/PhysX_3.4/Source/PhysX/src/NpSceneQueries.h b/PhysX_3.4/Source/PhysX/src/NpSceneQueries.h index 41844e7e..e2ceaf83 100644 --- a/PhysX_3.4/Source/PhysX/src/NpSceneQueries.h +++ b/PhysX_3.4/Source/PhysX/src/NpSceneQueries.h @@ -195,6 +195,18 @@ PX_FORCE_INLINE Vd::PvdSceneQueryCollector& getBatchedSqCollector() const {re #endif // PX_SUPPORT_PVD }; +#if PX_SUPPORT_EXTERN_TEMPLATE +//explicit template instantiation declaration +extern template +bool NpSceneQueries::multiQuery<PxRaycastHit>(const MultiQueryInput&, PxHitCallback<PxRaycastHit>&, PxHitFlags, const PxQueryCache*, const PxQueryFilterData&, PxQueryFilterCallback*, BatchQueryFilterData*) const; + +extern template +bool NpSceneQueries::multiQuery<PxOverlapHit>(const MultiQueryInput&, PxHitCallback<PxOverlapHit>&, PxHitFlags, const PxQueryCache*, const PxQueryFilterData&, PxQueryFilterCallback*, BatchQueryFilterData*) const; + +extern template +bool NpSceneQueries::multiQuery<PxSweepHit>(const MultiQueryInput&, PxHitCallback<PxSweepHit>&, PxHitFlags, const PxQueryCache*, const PxQueryFilterData&, PxQueryFilterCallback*, BatchQueryFilterData*) const; +#endif + namespace Sq { class AABBPruner; class AABBTreeRuntimeNode; class AABBTree; } #if PX_VC diff --git a/PhysX_3.4/Source/PhysXCooking/src/convex/QuickHullConvexHullLib.cpp b/PhysX_3.4/Source/PhysXCooking/src/convex/QuickHullConvexHullLib.cpp index c69724aa..eab6f336 100644 --- a/PhysX_3.4/Source/PhysXCooking/src/convex/QuickHullConvexHullLib.cpp +++ b/PhysX_3.4/Source/PhysXCooking/src/convex/QuickHullConvexHullLib.cpp @@ -79,7 +79,6 @@ namespace local void init(PxU32 preallocateSize) { PX_ASSERT(preallocateSize); - PX_ASSERT(mPreallocateSize == 0); mPreallocateSize = preallocateSize; T* block = reinterpret_cast<T*>(PX_ALLOC_TEMP(sizeof(T)*preallocateSize, "Quickhull MemBlock")); if(useIndexing) @@ -102,6 +101,20 @@ namespace local mBlocks.clear(); } + void reset() + { + for (PxU32 i = 0; i < mBlocks.size(); i++) + { + PX_FREE(mBlocks[i]); + } + mBlocks.clear(); + + mCurrentBlock = 0; + mCurrentIndex = 0; + + init(mPreallocateSize); + } + T* getItem(PxU32 index) { const PxU32 block = index/mPreallocateSize; @@ -323,7 +336,7 @@ namespace local } // merge adjacent face - void mergeAdjacentFace(QuickHullHalfEdge* halfEdge, QuickHullFaceArray& discardedFaces); + bool mergeAdjacentFace(QuickHullHalfEdge* halfEdge, QuickHullFaceArray& discardedFaces); // check face consistency bool checkFaceConsistency(); @@ -395,7 +408,7 @@ namespace local QuickHullVertex* nextPointToAdd(QuickHullFace*& eyeFace); // adds point to the hull - bool addPointToHull(const QuickHullVertex* vertex, QuickHullFace& face); + bool addPointToHull(const QuickHullVertex* vertex, QuickHullFace& face, bool& addFailed); // creates new face from given triangles QuickHullFace* createTriangle(const QuickHullVertex& v0, const QuickHullVertex& v1, const QuickHullVertex& v2); @@ -413,7 +426,7 @@ namespace local void addNewFacesFromHorizon(const QuickHullVertex* eyePoint, const QuickHullHalfEdgeArray& horizon, QuickHullFaceArray& newFaces); // merge adjacent face - bool doAdjacentMerge(QuickHullFace& face, bool mergeWrtLargeFace); + bool doAdjacentMerge(QuickHullFace& face, bool mergeWrtLargeFace, bool& mergeFailed); // merge adjacent face doing normal test bool doPostAdjacentMerge(QuickHullFace& face, const float minAngle); @@ -455,6 +468,7 @@ namespace local PxU32 mMaxVertices; // maximum number of vertices (can be different as we may add vertices during the cleanup PxU32 mNumVertices; // actual number of input vertices PxU32 mOutputNumVertices; // num vertices of the computed hull + PxU32 mTerminalVertex; // in case we failed to generate hull in a regular run we set the terminal vertex and rerun QuickHullVertex* mVerticesList; // vertices list preallocated MemBlock<QuickHullHalfEdge, false> mFreeHalfEdges; // free half edges @@ -491,7 +505,8 @@ namespace local // 1. set new half edges // 2. connect the new half edges - check we did not produced redundant triangles, discard them // 3. recompute the plane and check consistency - void QuickHullFace::mergeAdjacentFace(QuickHullHalfEdge* hedgeAdj, QuickHullFaceArray& discardedFaces) + // Returns false if merge failed + bool QuickHullFace::mergeAdjacentFace(QuickHullHalfEdge* hedgeAdj, QuickHullFaceArray& discardedFaces) { QuickHullFace* oppFace = hedgeAdj->getOppositeFace(); @@ -506,17 +521,31 @@ namespace local QuickHullHalfEdge* hedgeOppNext = hedgeOpp->next; // check if we are lining up with the face in adjPrev dir + QuickHullHalfEdge* breakEdge = hedgeAdjPrev; while (hedgeAdjPrev->getOppositeFace() == oppFace) { hedgeAdjPrev = hedgeAdjPrev->prev; hedgeOppNext = hedgeOppNext->next; + + // Edge case merge face is degenerated and we need to abort merging + if (hedgeAdjPrev == breakEdge) + { + return false; + } } // check if we are lining up with the face in adjNext dir + breakEdge = hedgeAdjNext; while (hedgeAdjNext->getOppositeFace() == oppFace) { hedgeOppPrev = hedgeOppPrev->prev; hedgeAdjNext = hedgeAdjNext->next; + + // Edge case merge face is degenerated and we need to abort merging + if (hedgeAdjNext == breakEdge) + { + return false; + } } QuickHullHalfEdge* hedge; @@ -550,6 +579,8 @@ namespace local computeNormalAndCentroid(); PX_ASSERT(checkFaceConsistency()); + + return true; } ////////////////////////////////////////////////////////////////////////// @@ -661,7 +692,7 @@ namespace local ////////////////////////////////////////////////////////////////////////// QuickHull::QuickHull(const PxCookingParams& params, const PxConvexMeshDesc& desc) - : mCookingParams(params), mConvexDesc(desc), mOutputNumVertices(0), mVerticesList(NULL), mNumHullFaces(0), mPrecomputedMinMax(false), + : mCookingParams(params), mConvexDesc(desc), mOutputNumVertices(0), mTerminalVertex(0xFFFFFFFF), mVerticesList(NULL), mNumHullFaces(0), mPrecomputedMinMax(false), mTolerance(-1.0f), mPlaneTolerance(-1.0f) { } @@ -1124,20 +1155,43 @@ namespace local } // add points to the hull - PxU32 numVerts = 4; // initial vertex count - simplex vertices - while ((eyeVtx = nextPointToAdd(eyeFace)) != NULL) + PxU32 numVerts = 4; // initial vertex count - simplex vertices + while ((eyeVtx = nextPointToAdd(eyeFace)) != NULL && eyeVtx->index != mTerminalVertex) { // if plane shifting vertex limit, we need the reduced hull if((mConvexDesc.flags & PxConvexFlag::ePLANE_SHIFTING) && (numVerts >= mConvexDesc.vertexLimit)) break; + bool addFailed = false; PX_ASSERT(eyeFace); - if (!addPointToHull(eyeVtx, *eyeFace)) + if (!addPointToHull(eyeVtx, *eyeFace, addFailed)) { mOutputNumVertices = numVerts; // we hit the polygons hard limit return QuickHullResult::ePOLYGONS_LIMIT_REACHED; } + // We failed to add the vertex, store the vertex as terminal vertex and re run the hull generator + if(addFailed) + { + // set the terminal vertex + mTerminalVertex = eyeVtx->index; + + // reset the edges/faces memory + mFreeHalfEdges.reset(); + mFreeFaces.reset(); + + // reset the hull state + mHullFaces.clear(); + mNumHullFaces = 0; + mUnclaimedPoints.clear(); + mHorizon.clear(); + mNewFaces.clear(); + mRemovedFaces.clear(); + mDiscardedFaces.clear(); + + // rerun the hull generator + return buildHull(); + } numVerts++; } mOutputNumVertices = numVerts; @@ -1181,9 +1235,13 @@ namespace local ////////////////////////////////////////////////////////////////////////// // adds vertex to the hull + // sets addFailed to true if we failed to add a point because the merging failed + // this can happen as the face plane equation changes and some faces might become concave // returns false if the new faces count would hit the hull face hard limit (255) - bool QuickHull::addPointToHull(const QuickHullVertex* eyeVtx, QuickHullFace& eyeFace) + bool QuickHull::addPointToHull(const QuickHullVertex* eyeVtx, QuickHullFace& eyeFace, bool& addFailed) { + addFailed = false; + // removes the eyePoint from the conflict list removeEyePointFromFace(eyeFace, eyeVtx); @@ -1205,6 +1263,7 @@ namespace local // adds new faces from given horizon and eyePoint addNewFacesFromHorizon(eyeVtx, mHorizon, mNewFaces); + bool mergeFailed = false; // first merge pass ... merge faces which are non-convex // as determined by the larger face for (PxU32 i = 0; i < mNewFaces.size(); i++) @@ -1214,9 +1273,14 @@ namespace local if (face.state == QuickHullFace::eVISIBLE) { PX_ASSERT(face.checkFaceConsistency()); - while (doAdjacentMerge(face, true)); + while (doAdjacentMerge(face, true, mergeFailed)); } } + if (mergeFailed) + { + addFailed = true; + return true; + } // second merge pass ... merge faces which are non-convex // wrt either face @@ -1226,9 +1290,14 @@ namespace local if (face.state == QuickHullFace::eNON_CONVEX) { face.state = QuickHullFace::eVISIBLE; - while (doAdjacentMerge(face, false)); + while (doAdjacentMerge(face, false, mergeFailed)); } } + if (mergeFailed) + { + addFailed = true; + return true; + } resolveUnclaimedPoints(mNewFaces); @@ -1243,9 +1312,10 @@ namespace local // merge adjacent faces // We merge 2 adjacent faces if they lie on the same thick plane defined by the mTolerance // we do this in 2 steps to ensure we dont leave non-convex faces - bool QuickHull::doAdjacentMerge(QuickHullFace& face, bool mergeWrtLargeFace) + bool QuickHull::doAdjacentMerge(QuickHullFace& face, bool mergeWrtLargeFace, bool& mergeFailed) { QuickHullHalfEdge* hedge = face.edge; + mergeFailed = false; bool convex = true; do @@ -1294,7 +1364,11 @@ namespace local if (merge) { mDiscardedFaces.clear(); - face.mergeAdjacentFace(hedge, mDiscardedFaces); + if (!face.mergeAdjacentFace(hedge, mDiscardedFaces)) + { + mergeFailed = true; + return false; + } mNumHullFaces -= mDiscardedFaces.size(); for (PxU32 i = 0; i < mDiscardedFaces.size(); i++) { diff --git a/PhysX_3.4/Source/PhysXExtensions/src/ExtDefaultCpuDispatcher.cpp b/PhysX_3.4/Source/PhysXExtensions/src/ExtDefaultCpuDispatcher.cpp index d5978518..82b7b891 100644 --- a/PhysX_3.4/Source/PhysXExtensions/src/ExtDefaultCpuDispatcher.cpp +++ b/PhysX_3.4/Source/PhysXExtensions/src/ExtDefaultCpuDispatcher.cpp @@ -28,7 +28,6 @@ // Copyright (c) 2001-2004 NovodeX AG. All rights reserved. -#include "task/PxTask.h" #include "ExtDefaultCpuDispatcher.h" #include "ExtCpuWorkerThread.h" #include "ExtTaskQueueHelper.h" @@ -109,7 +108,6 @@ Ext::DefaultCpuDispatcher::DefaultCpuDispatcher(PxU32 numThreads, PxU32* affinit } } - Ext::DefaultCpuDispatcher::~DefaultCpuDispatcher() { for(PxU32 i = 0; i < mNumThreads; ++i) @@ -129,22 +127,18 @@ Ext::DefaultCpuDispatcher::~DefaultCpuDispatcher() PX_FREE(mThreadNames); } - void Ext::DefaultCpuDispatcher::submitTask(PxBaseTask& task) { - Ps::Thread::Id currentThread = Ps::Thread::getId(); if(!mNumThreads) { // no worker threads, run directly - if(mRunProfiled) - task.runProfiled(PxU32(currentThread)); - else - task.run(); + runTask(task); task.release(); return; } // TODO: Could use TLS to make this more efficient + const Ps::Thread::Id currentThread = Ps::Thread::getId(); for(PxU32 i = 0; i < mNumThreads; ++i) { if(mWorkerThreads[i].tryAcceptJobToLocalQueue(task, currentThread)) @@ -169,34 +163,16 @@ PxBaseTask* Ext::DefaultCpuDispatcher::fetchNextTask() return task; } -void Ext::DefaultCpuDispatcher::runTask(PxBaseTask& task) -{ - if(mRunProfiled) - { - const PxU32 threadId = PxU32(Ps::Thread::getId()); - task.runProfiled(threadId); - } - else - task.run(); -} - -PxU32 Ext::DefaultCpuDispatcher::getWorkerCount() const -{ - return mNumThreads; -} - void Ext::DefaultCpuDispatcher::release() { PX_DELETE(this); } - PxBaseTask* Ext::DefaultCpuDispatcher::getJob(void) { return TaskQueueHelper::fetchTask(mJobList, mQueueEntryPool); } - PxBaseTask* Ext::DefaultCpuDispatcher::stealJob() { PxBaseTask* ret = NULL; @@ -212,7 +188,6 @@ PxBaseTask* Ext::DefaultCpuDispatcher::stealJob() return ret; } - void Ext::DefaultCpuDispatcher::resetWakeSignal() { mWorkReady.reset(); diff --git a/PhysX_3.4/Source/PhysXExtensions/src/ExtDefaultCpuDispatcher.h b/PhysX_3.4/Source/PhysXExtensions/src/ExtDefaultCpuDispatcher.h index 69369c6b..902241e1 100644 --- a/PhysX_3.4/Source/PhysXExtensions/src/ExtDefaultCpuDispatcher.h +++ b/PhysX_3.4/Source/PhysXExtensions/src/ExtDefaultCpuDispatcher.h @@ -37,6 +37,8 @@ #include "PsSList.h" #include "PxDefaultCpuDispatcher.h" #include "ExtSharedQueueEntryPool.h" +#include "foundation/PxProfiler.h" +#include "task/PxTask.h" namespace physx { @@ -55,50 +57,59 @@ namespace Ext friend class TaskQueueHelper; private: - DefaultCpuDispatcher() : mQueueEntryPool(0) {} - ~DefaultCpuDispatcher(); - + DefaultCpuDispatcher() : mQueueEntryPool(0) {} + ~DefaultCpuDispatcher(); public: - DefaultCpuDispatcher(PxU32 numThreads, PxU32* affinityMasks); + DefaultCpuDispatcher(PxU32 numThreads, PxU32* affinityMasks); //--------------------------------------------------------------------------------- - // physx::CpuDispatcher implementation + // PxCpuDispatcher implementation //--------------------------------------------------------------------------------- - virtual void submitTask(PxBaseTask& task); - virtual PxU32 getWorkerCount() const; + virtual void submitTask(PxBaseTask& task); + virtual PxU32 getWorkerCount() const { return mNumThreads; } //--------------------------------------------------------------------------------- // PxDefaultCpuDispatcher implementation //--------------------------------------------------------------------------------- - virtual void release(); + virtual void release(); - virtual void setRunProfiled(bool runProfiled) { mRunProfiled = runProfiled; } + virtual void setRunProfiled(bool runProfiled) { mRunProfiled = runProfiled; } - virtual bool getRunProfiled() const { return mRunProfiled; } + virtual bool getRunProfiled() const { return mRunProfiled; } //--------------------------------------------------------------------------------- // DefaultCpuDispatcher //--------------------------------------------------------------------------------- - PxBaseTask* getJob(); - PxBaseTask* stealJob(); - PxBaseTask* fetchNextTask(); - void runTask(PxBaseTask& task); - - void waitForWork() { mWorkReady.wait(); } - void resetWakeSignal(); + PxBaseTask* getJob(); + PxBaseTask* stealJob(); + PxBaseTask* fetchNextTask(); + PX_FORCE_INLINE void runTask(PxBaseTask& task) + { +#if PX_SUPPORT_PXTASK_PROFILING + if(mRunProfiled) + { + PX_PROFILE_ZONE(task.getName(), task.getContextId()); + task.run(); + } + else +#endif + task.run(); + } - static void getAffinityMasks(PxU32* affinityMasks, PxU32 threadCount); + void waitForWork() { mWorkReady.wait(); } + void resetWakeSignal(); + static void getAffinityMasks(PxU32* affinityMasks, PxU32 threadCount); protected: - CpuWorkerThread* mWorkerThreads; - SharedQueueEntryPool<> mQueueEntryPool; - Ps::SList mJobList; - Ps::Sync mWorkReady; - PxU8* mThreadNames; - PxU32 mNumThreads; - bool mShuttingDown; - bool mRunProfiled; + CpuWorkerThread* mWorkerThreads; + SharedQueueEntryPool<> mQueueEntryPool; + Ps::SList mJobList; + Ps::Sync mWorkReady; + PxU8* mThreadNames; + PxU32 mNumThreads; + bool mShuttingDown; + bool mRunProfiled; }; #if PX_VC diff --git a/PhysX_3.4/Source/PhysXExtensions/src/ExtExtensions.cpp b/PhysX_3.4/Source/PhysXExtensions/src/ExtExtensions.cpp index 35ef02fe..8140dbd3 100644 --- a/PhysX_3.4/Source/PhysXExtensions/src/ExtExtensions.cpp +++ b/PhysX_3.4/Source/PhysXExtensions/src/ExtExtensions.cpp @@ -39,9 +39,8 @@ #include "ExtSphericalJoint.h" #include "PxRepXSerializer.h" #include "SnRepXCoreSerializer.h" -#include "SnRepXSerializerImpl.h" +#include "SnJointRepXSerializer.h" #include "PxExtensionMetaDataObjects.h" -#include "PxJointRepXSerializer.h" #include "PxSerializer.h" #include "ExtSerialization.h" diff --git a/PhysX_3.4/Source/PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.cpp b/PhysX_3.4/Source/PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.cpp index 30db1038..adf4f4f6 100644 --- a/PhysX_3.4/Source/PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.cpp +++ b/PhysX_3.4/Source/PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.cpp @@ -29,8 +29,7 @@ #include "PxMetaDataObjects.h" #include "PxExtensionMetaDataObjects.h" #include "ExtJointMetaDataExtensions.h" -#include "SnRepXSerializerImpl.h" -#include "PxJointRepXSerializer.h" +#include "SnJointRepXSerializer.h" namespace physx { @@ -127,7 +126,7 @@ namespace physx { writeAllProperties( inObj, inWriter, inTempBuffer, *inCollection ); } - // explicit instantiations + // explicit template instantiations template struct PxJointRepXSerializer<PxFixedJoint>; template struct PxJointRepXSerializer<PxDistanceJoint>; template struct PxJointRepXSerializer<PxD6Joint>; diff --git a/PhysX_3.4/Source/PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.h b/PhysX_3.4/Source/PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.h new file mode 100644 index 00000000..24bb77f2 --- /dev/null +++ b/PhysX_3.4/Source/PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.h @@ -0,0 +1,72 @@ +// This code contains NVIDIA Confidential Information and is disclosed to you +// under a form of NVIDIA software license agreement provided separately to you. +// +// Notice +// NVIDIA Corporation and its licensors retain all intellectual property and +// proprietary rights in and to this software and related documentation and +// any modifications thereto. Any use, reproduction, disclosure, or +// distribution of this software and related documentation without an express +// license agreement from NVIDIA Corporation is strictly prohibited. +// +// ALL NVIDIA DESIGN SPECIFICATIONS, CODE ARE PROVIDED "AS IS.". NVIDIA MAKES +// NO WARRANTIES, EXPRESSED, IMPLIED, STATUTORY, OR OTHERWISE WITH RESPECT TO +// THE MATERIALS, AND EXPRESSLY DISCLAIMS ALL IMPLIED WARRANTIES OF NONINFRINGEMENT, +// MERCHANTABILITY, AND FITNESS FOR A PARTICULAR PURPOSE. +// +// Information and code furnished is believed to be accurate and reliable. +// However, NVIDIA Corporation assumes no responsibility for the consequences of use of such +// information or for any infringement of patents or other rights of third parties that may +// result from its use. No license is granted by implication or otherwise under any patent +// or patent rights of NVIDIA Corporation. Details are subject to change without notice. +// This code supersedes and replaces all information previously supplied. +// NVIDIA Corporation products are not authorized for use as critical +// components in life support devices or systems without express written approval of +// NVIDIA Corporation. +// +// Copyright (c) 2008-2017 NVIDIA Corporation. All rights reserved. +// Copyright (c) 2004-2008 AGEIA Technologies, Inc. All rights reserved. +// Copyright (c) 2001-2004 NovodeX AG. All rights reserved. +#ifndef SN_JOINT_REPX_SERIALIZER_H +#define SN_JOINT_REPX_SERIALIZER_H +/** \addtogroup RepXSerializers + @{ +*/ + +#include "extensions/PxRepXSimpleType.h" +#include "SnRepXSerializerImpl.h" + +#if !PX_DOXYGEN +namespace physx +{ +#endif + + class XmlReader; + class XmlMemoryAllocator; + class XmlWriter; + class MemoryBuffer; + + template<typename TJointType> + struct PxJointRepXSerializer : public RepXSerializerImpl<TJointType> + { + PxJointRepXSerializer(PxAllocatorCallback& inAllocator) : RepXSerializerImpl<TJointType>(inAllocator) {} + virtual PxRepXObject fileToObject(XmlReader& inReader, XmlMemoryAllocator& inAllocator, PxRepXInstantiationArgs& inArgs, PxCollection* inCollection); + virtual void objectToFileImpl(const TJointType* inObj, PxCollection* inCollection, XmlWriter& inWriter, MemoryBuffer& inTempBuffer, PxRepXInstantiationArgs&); + virtual TJointType* allocateObject(PxRepXInstantiationArgs&) { return NULL; } + }; + +#if PX_SUPPORT_EXTERN_TEMPLATE + // explicit template instantiations declarations + extern template struct PxJointRepXSerializer<PxD6Joint>; + extern template struct PxJointRepXSerializer<PxDistanceJoint>; + extern template struct PxJointRepXSerializer<PxFixedJoint>; + extern template struct PxJointRepXSerializer<PxPrismaticJoint>; + extern template struct PxJointRepXSerializer<PxRevoluteJoint>; + extern template struct PxJointRepXSerializer<PxSphericalJoint>; +#endif + +#if !PX_DOXYGEN +} // namespace physx +#endif + +/** @} */ +#endif diff --git a/PhysX_3.4/Source/PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.h b/PhysX_3.4/Source/PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.h index 5b59926d..bf8a250a 100644 --- a/PhysX_3.4/Source/PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.h +++ b/PhysX_3.4/Source/PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.h @@ -39,9 +39,6 @@ namespace physx { #endif - template<typename TLiveType> - struct RepXSerializerImpl; - class XmlReader; class XmlMemoryAllocator; class XmlWriter; @@ -140,11 +137,17 @@ namespace physx template<typename TParticleType> struct PxParticleRepXSerializer : RepXSerializerImpl<TParticleType> { - PxParticleRepXSerializer( PxAllocatorCallback& inCallback ) : RepXSerializerImpl<TParticleType>( inCallback ) {} - virtual void objectToFileImpl( const TParticleType*, PxCollection*, XmlWriter&, MemoryBuffer&, PxRepXInstantiationArgs& ); - virtual PxRepXObject fileToObject( XmlReader&, XmlMemoryAllocator&, PxRepXInstantiationArgs&, PxCollection* ); - virtual TParticleType* allocateObject( PxRepXInstantiationArgs& ) { return NULL; } + PxParticleRepXSerializer(PxAllocatorCallback& inCallback) : RepXSerializerImpl<TParticleType>(inCallback) {} + virtual void objectToFileImpl(const TParticleType*, PxCollection*, XmlWriter&, MemoryBuffer&, PxRepXInstantiationArgs&); + virtual PxRepXObject fileToObject(XmlReader&, XmlMemoryAllocator&, PxRepXInstantiationArgs&, PxCollection*); + virtual TParticleType* allocateObject(PxRepXInstantiationArgs&) { return NULL; } }; + +#if PX_SUPPORT_EXTERN_TEMPLATE + // explicit template instantiations declarations + extern template struct PxParticleRepXSerializer<PxParticleSystem>; + extern template struct PxParticleRepXSerializer<PxParticleFluid>; +#endif #endif #if !PX_DOXYGEN diff --git a/PhysX_3.4/Source/PhysXVehicle/src/PxVehicleSerialization.cpp b/PhysX_3.4/Source/PhysXVehicle/src/PxVehicleSerialization.cpp index 726fd5cf..0e92e2d6 100644 --- a/PhysX_3.4/Source/PhysXVehicle/src/PxVehicleSerialization.cpp +++ b/PhysX_3.4/Source/PhysXVehicle/src/PxVehicleSerialization.cpp @@ -194,7 +194,7 @@ namespace physx , mDriveModel(PxVehicleDriveTankControlModel::eSTANDARD) {} - // explicit instantiations + // explicit template instantiations template struct PxVehicleRepXSerializer<PxVehicleDrive4W>; template struct PxVehicleRepXSerializer<PxVehicleDriveTank>; template struct PxVehicleRepXSerializer<PxVehicleDriveNW>; diff --git a/PhysX_3.4/Source/PhysXVehicle/src/PxVehicleSerialization.h b/PhysX_3.4/Source/PhysXVehicle/src/PxVehicleSerialization.h index 2564ecf6..eabef1f3 100644 --- a/PhysX_3.4/Source/PhysXVehicle/src/PxVehicleSerialization.h +++ b/PhysX_3.4/Source/PhysXVehicle/src/PxVehicleSerialization.h @@ -31,15 +31,12 @@ #define PX_VEHICLE_SERIALIZATION_H #include "extensions/PxRepXSimpleType.h" +#include "SnRepXSerializerImpl.h" namespace physx { class PxRepXSerializer; class PxSerializationRegistry; - - template<typename TLiveType> - struct RepXSerializerImpl; - class XmlReader; class XmlMemoryAllocator; class XmlWriter; @@ -59,6 +56,14 @@ namespace physx virtual TVehicleType* allocateObject( PxRepXInstantiationArgs& ) { return NULL; } }; +#if PX_SUPPORT_EXTERN_TEMPLATE + // explicit template instantiation declarations + extern template struct PxVehicleRepXSerializer<PxVehicleDrive4W>; + extern template struct PxVehicleRepXSerializer<PxVehicleDriveTank>; + extern template struct PxVehicleRepXSerializer<PxVehicleDriveNW>; + extern template struct PxVehicleRepXSerializer<PxVehicleNoDrive>; +#endif + } diff --git a/PhysX_3.4/Source/SimulationController/src/ScBodySim.cpp b/PhysX_3.4/Source/SimulationController/src/ScBodySim.cpp index 3a0cc9c7..4ce57c13 100644 --- a/PhysX_3.4/Source/SimulationController/src/ScBodySim.cpp +++ b/PhysX_3.4/Source/SimulationController/src/ScBodySim.cpp @@ -93,7 +93,7 @@ Sc::BodySim::BodySim(Scene& scene, BodyCore& core) : hasPendingForce = (velmod->flags != 0) && (!velmod->getLinearVelModPerSec().isZero() || !velmod->getAngularVelModPerSec().isZero() || !velmod->getLinearVelModPerStep().isZero() || !velmod->getAngularVelModPerStep().isZero()); - mVelModState = velmod->flags; + mVelModState = velmod->flags; velmod->flags = 0; } @@ -121,6 +121,12 @@ Sc::BodySim::BodySim(Scene& scene, BodyCore& core) : } } + + //If a user add force or torque before the body is inserted into the scene, + //this logic will make sure pre solver stage apply external force/torque to the body + if(hasPendingForce && !isArticulationLink()) + scene.getVelocityModifyMap().growAndSet(mNodeIndex.index()); + PX_ASSERT(mActiveListIndex == SC_NOT_IN_SCENE_INDEX); setActive(isAwake, ActorSim::AS_PART_OF_CREATION); @@ -493,10 +499,10 @@ void Sc::BodySim::activateInteractions(PxU32 /*infoFlag*/) Ps::prefetchLine(mInteractions[PxMin(i+1,nbInteractions-1)]); Interaction* interaction = mInteractions[i]; - bool isNotIGControlled = interaction->getType() != Sc::InteractionType::eCONSTRAINTSHADER && interaction->getType() != Sc::InteractionType::eOVERLAP && + bool isNotIGControlled = interaction->getType() != Sc::InteractionType::eOVERLAP && interaction->getType() != Sc::InteractionType::eMARKER; - if (!interaction->readInteractionFlag(InteractionFlag::eIS_ACTIVE) && isNotIGControlled) + if (!interaction->readInteractionFlag(InteractionFlag::eIS_ACTIVE) && (isNotIGControlled)) { const bool proceed = interaction->onActivate(NULL); if (proceed && (interaction->getType() < InteractionType::eTRACKED_IN_SCENE_COUNT)) @@ -515,7 +521,7 @@ void Sc::BodySim::deactivateInteractions(PxU32 infoFlag) Ps::prefetchLine(mInteractions[PxMin(i+1,nbInteractions-1)]); Interaction* interaction = mInteractions[i]; - bool isNotIGControlled = interaction->getType() != Sc::InteractionType::eCONSTRAINTSHADER && interaction->getType() != Sc::InteractionType::eOVERLAP && + bool isNotIGControlled = interaction->getType() != Sc::InteractionType::eOVERLAP && interaction->getType() != Sc::InteractionType::eMARKER; if (interaction->readInteractionFlag(InteractionFlag::eIS_ACTIVE) && isNotIGControlled) diff --git a/PhysX_3.4/Source/SimulationController/src/ScNPhaseCore.cpp b/PhysX_3.4/Source/SimulationController/src/ScNPhaseCore.cpp index a388dee0..8a4b4b07 100644 --- a/PhysX_3.4/Source/SimulationController/src/ScNPhaseCore.cpp +++ b/PhysX_3.4/Source/SimulationController/src/ScNPhaseCore.cpp @@ -38,34 +38,25 @@ #include "ScSimStats.h" #if PX_USE_PARTICLE_SYSTEM_API -#include "ScParticleSystemCore.h" -#include "ScParticleBodyInteraction.h" -#include "ScParticlePacketShape.h" -#include "GuOverlapTests.h" -#include "GuBox.h" + #include "ScParticleSystemCore.h" + #include "ScParticleBodyInteraction.h" + #include "ScParticlePacketShape.h" + #include "GuOverlapTests.h" + #include "GuBox.h" #endif #if PX_USE_CLOTH_API -#include "ScClothCore.h" -#include "ScClothSim.h" + #include "ScClothCore.h" + #include "ScClothSim.h" #endif // PX_USE_CLOTH_API #include "PsThread.h" - #include "BpBroadPhase.h" using namespace physx; using namespace Sc; using namespace Gu; - -namespace physx -{ -namespace Sc -{ -} -} - struct Sc::FilterPair { enum Enum @@ -138,10 +129,8 @@ private: uintptr_t mFree; }; -/* Sc::NPhaseCore methods */ ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - Sc::NPhaseCore::NPhaseCore(Scene& scene, const PxSceneDesc& sceneDesc) : mOwnerScene (scene), mContactReportActorPairSet (PX_DEBUG_EXP("contactReportPairSet")), @@ -162,14 +151,13 @@ Sc::NPhaseCore::NPhaseCore(Scene& scene, const PxSceneDesc& sceneDesc) : #if PX_USE_CLOTH_API ,mClothPool (PX_DEBUG_EXP("clothPool")) #endif - ,mMergeProcessedTriggerInteractions (this, "ScNPhaseCore.mergeProcessedTriggerInteractions") + ,mMergeProcessedTriggerInteractions (scene.getContextId(), this, "ScNPhaseCore.mergeProcessedTriggerInteractions") ,mTmpTriggerProcessingBlock (NULL) ,mTriggerPairsToDeactivateCount (0) { mFilterPairManager = PX_NEW(FilterPairManager); } - Sc::NPhaseCore::~NPhaseCore() { // Clear pending actor pairs (waiting on contact report callback) @@ -198,6 +186,16 @@ PxFilterInfo Sc::NPhaseCore::onOverlapFilter(ElementSim* volume0, ElementSim* vo { PX_ASSERT(!findInteraction(volume0, volume1)); +/* if(0) + { + (void)volume0; + (void)volume1; + (void)pair; + PxFilterInfo finfo; + finfo.filterFlags = PxFilterFlag::eKILL; + return finfo; + }*/ + if(pair) pair->mUserData = NULL; @@ -245,7 +243,6 @@ Sc::Interaction* Sc::NPhaseCore::onOverlapCreated(ElementSim* volume0, ElementSi switch (volumeHi->getElementType()) { - #if PX_USE_PARTICLE_SYSTEM_API case ElementType::ePARTICLE_PACKET: { @@ -357,7 +354,6 @@ Sc::Interaction* Sc::NPhaseCore::onOverlapCreated(ElementSim* volume0, ElementSi return NULL; } - static PX_FORCE_INLINE void prefetchPairElements(const Bp::AABBOverlap& pair, const ElementSim** elementBuffer) { const ElementSim* e0 = reinterpret_cast<const ElementSim*>(pair.mUserData0); @@ -370,7 +366,6 @@ static PX_FORCE_INLINE void prefetchPairElements(const Bp::AABBOverlap& pair, co *(elementBuffer+1) = e1; } - static PX_FORCE_INLINE void prefetchPairActors(const ElementSim& e0, const ElementSim& e1, const ActorSim** actorBuffer) { const ActorSim* a0 = static_cast<const ActorSim*>(&e0.getActor()); @@ -385,7 +380,6 @@ static PX_FORCE_INLINE void prefetchPairActors(const ElementSim& e0, const Eleme *(actorBuffer+1) = a1; } - static PX_FORCE_INLINE void prefetchPairShapesCore(const ElementSim& e0, const ElementSim& e1) { if (e0.getElementType() == ElementType::eSHAPE) @@ -402,7 +396,6 @@ static PX_FORCE_INLINE void prefetchPairShapesCore(const ElementSim& e0, const E } } - static PX_FORCE_INLINE void prefetchPairActorsCore(const ActorSim& a0, const ActorSim& a1) { ActorCore* ac0 = &a0.getActorCore(); @@ -413,7 +406,6 @@ static PX_FORCE_INLINE void prefetchPairActorsCore(const ActorSim& a0, const Act Ps::prefetchLine((reinterpret_cast<PxU8*>(ac1)) + 128); } - static PX_FORCE_INLINE Sc::Interaction* processElementPair(Sc::NPhaseCore& nPhaseCore, const Bp::AABBOverlap& pair, const PxU32 ccdPass, Bp::BroadPhasePair* bpPairs) { ElementSim* e0 = reinterpret_cast<ElementSim*>(pair.mUserData0); @@ -426,7 +418,6 @@ static PX_FORCE_INLINE Sc::Interaction* processElementPair(Sc::NPhaseCore& nPhas return nPhaseCore.onOverlapCreated(e0, e1, ccdPass, thisPair); } - void Sc::NPhaseCore::onOverlapCreated(const Bp::AABBOverlap* PX_RESTRICT pairs, PxU32 pairCount, const PxU32 ccdPass, Bp::BroadPhasePair* bpPairs) { #if PX_USE_PARTICLE_SYSTEM_API @@ -511,8 +502,9 @@ void Sc::NPhaseCore::registerInteraction(ElementSimInteraction* interaction) if (sim0 > sim1) Ps::swap(sim0, sim1); - this->mElementSimMap.insert(ElementSimKey(sim0, sim1), interaction); + mElementSimMap.insert(ElementSimKey(sim0, sim1), interaction); } + void Sc::NPhaseCore::unregisterInteraction(ElementSimInteraction* interaction) { ElementSim* sim0 = &interaction->getElement0(); @@ -529,9 +521,7 @@ ElementSimInteraction* Sc::NPhaseCore::onOverlapRemovedStage1(ElementSim* volume return pair; } - -void Sc::NPhaseCore::onOverlapRemoved(ElementSim* volume0, ElementSim* volume1, const PxU32 ccdPass, void* elemSim, PxsContactManagerOutputIterator& outputs, - bool useAdaptiveForce) +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... @@ -544,7 +534,6 @@ void Sc::NPhaseCore::onOverlapRemoved(ElementSim* volume0, ElementSim* volume1, // PT: TODO: get rid of 'findInteraction', cf US10491 ElementSimInteraction* interaction = elemSim ? reinterpret_cast<ElementSimInteraction*>(elemSim) : findInteraction(elementHi, elementLo); - // MS: The check below is necessary since at the moment LowLevel broadphase still tracks // killed pairs and hence reports lost overlaps if (interaction) @@ -571,7 +560,6 @@ void Sc::NPhaseCore::onOverlapRemoved(ElementSim* volume0, ElementSim* volume1, #endif // PX_USE_CLOTH_API } - // MS: TODO: optimize this for the actor release case? void Sc::NPhaseCore::onVolumeRemoved(ElementSim* volume, PxU32 flags, PxsContactManagerOutputIterator& outputs, bool useAdaptiveForce) { @@ -620,7 +608,6 @@ void Sc::NPhaseCore::onVolumeRemoved(ElementSim* volume, PxU32 flags, PxsContact mClothOverlaps.erase(shape); } #endif - break; } #if PX_USE_PARTICLE_SYSTEM_API @@ -726,7 +713,6 @@ Sc::ElementSimInteraction* Sc::NPhaseCore::createRbElementInteraction(ShapeSim& return createRbElementInteraction(finfo, s0, s1, contactManager, shapeInteraction, interactionMarker, isTriggerPair); } - #if PX_USE_PARTICLE_SYSTEM_API // PT: function used only once, so safe to force inline static PX_FORCE_INLINE Sc::ParticleElementRbElementInteraction* findParticlePacketBodyInteraction(ParticlePacketShape* ps, ActorSim* actor) @@ -799,7 +785,6 @@ Sc::ElementSimInteraction* Sc::NPhaseCore::createParticlePacketBodyInteraction(P } #endif - void Sc::NPhaseCore::managerNewTouch(Sc::ShapeInteraction& interaction, const PxU32 /*ccdPass*/, bool /*adjustCounters*/, PxsContactManagerOutputIterator& /*outputs*/) { //(1) if the pair hasn't already been assigned, look it up! @@ -816,7 +801,6 @@ void Sc::NPhaseCore::managerNewTouch(Sc::ShapeInteraction& interaction, const Px } } - Sc::ShapeInteraction* Sc::NPhaseCore::createShapeInteraction(ShapeSim& s0, ShapeSim& s1, PxPairFlags pairFlags, PxsContactManager* contactManager, Sc::ShapeInteraction* shapeInteraction) { ShapeSim* _s0 = &s0; @@ -854,7 +838,6 @@ Sc::ShapeInteraction* Sc::NPhaseCore::createShapeInteraction(ShapeSim& s0, Shape return si; } - Sc::TriggerInteraction* Sc::NPhaseCore::createTriggerInteraction(ShapeSim& s0, ShapeSim& s1, PxPairFlags triggerFlags) { ShapeSim* triggerShape; @@ -875,7 +858,6 @@ Sc::TriggerInteraction* Sc::NPhaseCore::createTriggerInteraction(ShapeSim& s0, S return pair; } - Sc::ElementInteractionMarker* Sc::NPhaseCore::createElementInteractionMarker(ElementSim& e0, ElementSim& e1, Sc::ElementInteractionMarker* interactionMarker) { ElementInteractionMarker* pair = interactionMarker ? interactionMarker : mInteractionMarkerPool.allocate(); @@ -1200,7 +1182,6 @@ Sc::ElementSimInteraction* Sc::NPhaseCore::refilterInteraction(ElementSimInterac return NULL; } - PX_INLINE void Sc::NPhaseCore::callPairLost(const ElementSim& e0, const ElementSim& e1, PxU32 pairID, bool objVolumeRemoved) const { PxFilterData fd0, fd1; @@ -1212,7 +1193,6 @@ PX_INLINE void Sc::NPhaseCore::callPairLost(const ElementSim& e0, const ElementS mOwnerScene.getFilterCallbackFast()->pairLost(pairID, fa0, fd0, fa1, fd1, objVolumeRemoved); } - PX_INLINE void Sc::NPhaseCore::runFilterShader(const ElementSim& e0, const ElementSim& e1, PxFilterObjectAttributes& attr0, PxFilterData& filterData0, PxFilterObjectAttributes& attr1, PxFilterData& filterData1, @@ -1228,7 +1208,6 @@ PX_INLINE void Sc::NPhaseCore::runFilterShader(const ElementSim& e0, const Eleme mOwnerScene.getFilterShaderDataSizeFast() ); } - static PX_FORCE_INLINE void fetchActorAndShape(const ElementSim& e, PxActor*& a, PxShape*& s) { if (e.getElementType() == ElementType::eSHAPE) @@ -1247,7 +1226,6 @@ static PX_FORCE_INLINE void fetchActorAndShape(const ElementSim& e, PxActor*& a, #endif } - PX_INLINE PxFilterInfo Sc::NPhaseCore::runFilter(const ElementSim& e0, const ElementSim& e1, PxU32 filterPairIndex, bool doCallbacks) { PxFilterInfo filterInfo; @@ -1317,7 +1295,6 @@ PX_INLINE PxFilterInfo Sc::NPhaseCore::runFilter(const ElementSim& e0, const Ele return filterInfo; } - PX_FORCE_INLINE PxFilterInfo Sc::NPhaseCore::filterOutRbCollisionPair(PxU32 filterPairIndex, const PxFilterFlags filterFlags) { if(filterPairIndex!=INVALID_FILTER_PAIR_INDEX) @@ -1326,9 +1303,7 @@ PX_FORCE_INLINE PxFilterInfo Sc::NPhaseCore::filterOutRbCollisionPair(PxU32 filt return PxFilterInfo(filterFlags); } - -PxFilterInfo Sc::NPhaseCore::filterRbCollisionPairSecondStage(const ShapeSim& s0, const ShapeSim& s1, const Sc::BodySim* b0, const Sc::BodySim* b1, PxU32 filterPairIndex, - bool runCallbacks) +PxFilterInfo Sc::NPhaseCore::filterRbCollisionPairSecondStage(const ShapeSim& s0, const ShapeSim& s1, const Sc::BodySim* b0, const Sc::BodySim* b1, PxU32 filterPairIndex, bool runCallbacks) { PxFilterInfo filterInfo = runFilter(s0, s1, filterPairIndex, runCallbacks); if (runCallbacks || (!(filterInfo.filterFlags & PxFilterFlag::eCALLBACK))) @@ -1336,7 +1311,6 @@ PxFilterInfo Sc::NPhaseCore::filterRbCollisionPairSecondStage(const ShapeSim& s0 return filterInfo; } - PxFilterInfo Sc::NPhaseCore::filterRbCollisionPair(const ShapeSim& s0, const ShapeSim& s1, PxU32 filterPairIndex, PxU32& isTriggerPair, bool runCallbacks) { const Sc::BodySim* b0 = s0.getBodySim(); @@ -1439,7 +1413,6 @@ PxFilterInfo Sc::NPhaseCore::filterRbCollisionPair(const ShapeSim& s0, const Sha } } - Sc::ActorPair* Sc::NPhaseCore::findActorPair(ShapeSim* s0, ShapeSim* s1, Ps::IntBool isReportPair) { PX_ASSERT(!(s0->getFlags() & PxShapeFlag::eTRIGGER_SHAPE) @@ -1447,17 +1420,16 @@ Sc::ActorPair* Sc::NPhaseCore::findActorPair(ShapeSim* s0, ShapeSim* s1, Ps::Int // This method is only for the case where a ShapeInteraction is going to be created. // Else we might create an ActorPair that does not get referenced and causes a mem leak. - BodyPairKey key; RigidSim* aLess = &s0->getRbSim(); RigidSim* aMore = &s1->getRbSim(); - if(aLess > aMore) + if (aLess->getID() > aMore->getID()) Ps::swap(aLess, aMore); - key.mSim0 = aLess; - key.mSim1 = aMore; + key.mSim0 = aLess->getID(); + key.mSim1 = aMore->getID(); Sc::ActorPair*& actorPair = mActorPairMap[key]; @@ -1469,8 +1441,7 @@ Sc::ActorPair* Sc::NPhaseCore::findActorPair(ShapeSim* s0, ShapeSim* s1, Ps::Int else actorPair = mActorPairReportPool.construct(s0->getRbSim(), s1->getRbSim()); } - - + Ps::IntBool actorPairHasReports = actorPair->isReportPair(); if (!isReportPair || actorPairHasReports) @@ -1479,8 +1450,7 @@ Sc::ActorPair* Sc::NPhaseCore::findActorPair(ShapeSim* s0, ShapeSim* s1, Ps::Int { PxU32 size = aLess->getActorInteractionCount(); Interaction** interactions = aLess->getActorInteractions(); - - + ActorPairReport* actorPairReport = mActorPairReportPool.construct(s0->getRbSim(), s1->getRbSim()); actorPairReport->convert(*actorPair); @@ -1504,7 +1474,6 @@ Sc::ActorPair* Sc::NPhaseCore::findActorPair(ShapeSim* s0, ShapeSim* s1, Ps::Int return actorPair; } - PX_FORCE_INLINE void Sc::NPhaseCore::destroyActorPairReport(ActorPairReport& aPair) { PX_ASSERT(aPair.isReportPair()); @@ -1513,7 +1482,6 @@ PX_FORCE_INLINE void Sc::NPhaseCore::destroyActorPairReport(ActorPairReport& aPa mActorPairReportPool.destroy(&aPair); } - Sc::ElementSimInteraction* Sc::NPhaseCore::convert(ElementSimInteraction* pair, InteractionType::Enum newType, PxFilterInfo& filterInfo, bool removeFromDirtyList, PxsContactManagerOutputIterator& outputs, bool useAdaptiveForce) { @@ -1699,6 +1667,7 @@ public: TriggerInteraction** pairsToDeactivate, volatile PxI32& pairsToDeactivateCount, Scene& scene) : + Cm::Task(scene.getContextId()), mTriggerPairs(triggerPairs), mTriggerPairCount(triggerPairCount), mLock(lock), @@ -1794,7 +1763,6 @@ public: return "ScNPhaseCore.triggerInteractionWork"; } - public: static const PxU32 sTriggerPairsPerTask = 64; @@ -1877,7 +1845,6 @@ void Sc::NPhaseCore::processTriggerInteractions(PxBaseTask* continuation) } } - void Sc::NPhaseCore::mergeProcessedTriggerInteractions(PxBaseTask*) { if (mTmpTriggerProcessingBlock) @@ -1895,7 +1862,6 @@ void Sc::NPhaseCore::mergeProcessedTriggerInteractions(PxBaseTask*) } } - void Sc::NPhaseCore::visualize(Cm::RenderOutput& renderOut, PxsContactManagerOutputIterator& outputs) { if(mOwnerScene.getVisualizationScale() == 0.0f) @@ -1905,10 +1871,8 @@ void Sc::NPhaseCore::visualize(Cm::RenderOutput& renderOut, PxsContactManagerOut PxU32 nbActiveInteractions = mOwnerScene.getNbActiveInteractions(InteractionType::eOVERLAP); while(nbActiveInteractions--) static_cast<ShapeInteraction*>(*interactions++)->visualize(renderOut, outputs); - } - void Sc::NPhaseCore::processPersistentContactEvents(PxsContactManagerOutputIterator& outputs) { //TODO: put back this optimization -- now we have to do this stuff if at least one client has a callback registered. @@ -1953,7 +1917,6 @@ void Sc::NPhaseCore::processPersistentContactEvents(PxsContactManagerOutputItera } } - void Sc::NPhaseCore::fireCustomFilteringCallbacks(PxsContactManagerOutputIterator& outputs, bool useAdaptiveForce) { PX_PROFILE_ZONE("Sim.fireCustomFilteringCallbacks", mOwnerScene.getContextId()); @@ -2052,13 +2015,11 @@ void Sc::NPhaseCore::fireCustomFilteringCallbacks(PxsContactManagerOutputIterato } } - void Sc::NPhaseCore::addToDirtyInteractionList(Interaction* pair) { mDirtyInteractions.insert(pair); } - void Sc::NPhaseCore::removeFromDirtyInteractionList(Interaction* pair) { PX_ASSERT(mDirtyInteractions.contains(pair)); @@ -2066,6 +2027,11 @@ void Sc::NPhaseCore::removeFromDirtyInteractionList(Interaction* pair) mDirtyInteractions.erase(pair); } +void Sc::NPhaseCore::reserveSpaceInNphaseCore(const PxU32 nbContactManagers) +{ + PX_UNUSED(nbContactManagers); +} + void Sc::NPhaseCore::updateDirtyInteractions(PxsContactManagerOutputIterator& outputs, bool useAdaptiveForce) { @@ -2127,7 +2093,6 @@ void Sc::NPhaseCore::updateDirtyInteractions(PxsContactManagerOutputIterator& ou mDirtyInteractions.clear(); } - void Sc::NPhaseCore::releaseElementPair(ElementSimInteraction* pair, PxU32 flags, const PxU32 ccdPass, bool removeFromDirtyList, PxsContactManagerOutputIterator& outputs, bool useAdaptiveForce) { @@ -2211,12 +2176,14 @@ void Sc::NPhaseCore::lostTouchReports(ShapeInteraction* si, PxU32 flags, PxU32 c { RigidSim* sim0 = static_cast<RigidSim*>(&si->getActor0()); RigidSim* sim1 = static_cast<RigidSim*>(&si->getActor1()); - if (sim0 > sim1) - Ps::swap(sim0, sim1); BodyPairKey pair; - pair.mSim0 = sim0; - pair.mSim1 = sim1; + + if (sim0->getID() > sim1->getID()) + Ps::swap(sim0, sim1); + + pair.mSim0 = sim0->getID(); + pair.mSim1 = sim1->getID(); mActorPairMap.erase(pair); @@ -2254,19 +2221,15 @@ void Sc::NPhaseCore::lostTouchReports(ShapeInteraction* si, PxU32 flags, PxU32 c } } - void Sc::NPhaseCore::releaseShapeInteraction(ShapeInteraction* si, PxU32 flags, const PxU32 ccdPass, PxsContactManagerOutputIterator& outputs, bool useAdaptiveForce) { - if (flags & PairReleaseFlag::eSHAPE_BP_VOLUME_REMOVED) { lostTouchReports(si, flags, ccdPass, outputs, useAdaptiveForce); } mShapeInteractionPool.destroy(si); - } - void Sc::NPhaseCore::clearContactReportActorPairs(bool shrinkToZero) { for(PxU32 i=0; i < mContactReportActorPairSet.size(); i++) @@ -2283,16 +2246,11 @@ void Sc::NPhaseCore::clearContactReportActorPairs(bool shrinkToZero) } else { - - RigidSim* sim0 = &aPair->getActorA(); - RigidSim* sim1 = &aPair->getActorB(); - - if(sim0 > sim1) - Ps::swap(sim0, sim1); - BodyPairKey pair; - pair.mSim0 = sim0; - pair.mSim1 = sim1; + PxU32 actorAID = aPair->getActorAID(); + PxU32 actorBID = aPair->getActorBID(); + pair.mSim0 = PxMin(actorAID, actorBID); + pair.mSim1 = PxMax(actorAID, actorBID); mActorPairMap.erase(pair); destroyActorPairReport(*aPair); @@ -2305,7 +2263,6 @@ void Sc::NPhaseCore::clearContactReportActorPairs(bool shrinkToZero) mContactReportActorPairSet.reset(); } - #if PX_USE_PARTICLE_SYSTEM_API Sc::ParticleElementRbElementInteraction* Sc::NPhaseCore::insertParticleElementRbElementPair(ParticlePacketShape& particleShape, ShapeSim& rbShape, ActorElementPair* actorElementPair, const PxU32 ccdPass) { @@ -2318,7 +2275,6 @@ Sc::ParticleElementRbElementInteraction* Sc::NPhaseCore::insertParticleElementRb } #endif - void Sc::NPhaseCore::addToPersistentContactEventPairs(ShapeInteraction* si) { // Pairs which request events which do not get triggered by the sdk and thus need to be tested actively every frame. @@ -2347,7 +2303,6 @@ void Sc::NPhaseCore::addToPersistentContactEventPairs(ShapeInteraction* si) mNextFramePersistentContactEventPairIndex++; } - void Sc::NPhaseCore::addToPersistentContactEventPairsDelayed(ShapeInteraction* si) { // Pairs which request events which do not get triggered by the sdk and thus need to be tested actively every frame. @@ -2362,7 +2317,6 @@ void Sc::NPhaseCore::addToPersistentContactEventPairsDelayed(ShapeInteraction* s mPersistentContactEventPairList.pushBack(si); } - void Sc::NPhaseCore::removeFromPersistentContactEventPairs(ShapeInteraction* si) { PX_ASSERT(si->getPairFlags() & (PxPairFlag::eNOTIFY_TOUCH_PERSISTS | ShapeInteraction::CONTACT_FORCE_THRESHOLD_PAIRS)); @@ -2396,7 +2350,6 @@ void Sc::NPhaseCore::removeFromPersistentContactEventPairs(ShapeInteraction* si) mPersistentContactEventPairList[index]->mReportPairIndex = index; } - void Sc::NPhaseCore::addToForceThresholdContactEventPairs(ShapeInteraction* si) { PX_ASSERT(si->getPairFlags() & ShapeInteraction::CONTACT_FORCE_THRESHOLD_PAIRS); @@ -2410,7 +2363,6 @@ void Sc::NPhaseCore::addToForceThresholdContactEventPairs(ShapeInteraction* si) mForceThresholdContactEventPairList.pushBack(si); } - void Sc::NPhaseCore::removeFromForceThresholdContactEventPairs(ShapeInteraction* si) { PX_ASSERT(si->getPairFlags() & ShapeInteraction::CONTACT_FORCE_THRESHOLD_PAIRS); @@ -2428,14 +2380,12 @@ void Sc::NPhaseCore::removeFromForceThresholdContactEventPairs(ShapeInteraction* mForceThresholdContactEventPairList[index]->mReportPairIndex = index; } - PxU8* Sc::NPhaseCore::reserveContactReportPairData(PxU32 pairCount, PxU32 extraDataSize, PxU32& bufferIndex) { extraDataSize = Sc::ContactStreamManager::computeExtraDataBlockSize(extraDataSize); return mContactReportBuffer.allocateNotThreadSafe(extraDataSize + (pairCount * sizeof(Sc::ContactShapePair)), bufferIndex); } - PxU8* Sc::NPhaseCore::resizeContactReportPairData(PxU32 pairCount, PxU32 extraDataSize, Sc::ContactStreamManager& csm) { PX_ASSERT((pairCount > csm.maxPairCount) || (extraDataSize > csm.getMaxExtraDataSize())); @@ -2470,17 +2420,14 @@ PxU8* Sc::NPhaseCore::resizeContactReportPairData(PxU32 pairCount, PxU32 extraDa if (extraDataSize > maxExtraDataSize) csm.setMaxExtraDataSize(extraDataSize); } - return stream; } - Sc::ActorPairContactReportData* Sc::NPhaseCore::createActorPairContactReportData() { return mActorPairContactReportDataPool.construct(); } - void Sc::NPhaseCore::releaseActorPairContactReportData(ActorPairContactReportData* data) { mActorPairContactReportDataPool.destroy(data); @@ -2499,5 +2446,3 @@ void Sc::NPhaseCore::pool_deleteParticleElementRbElementPair(ParticleElementRbEl mActorElementPairPool.destroy(aep); } #endif // PX_USE_PARTICLE_SYSTEM_API - - diff --git a/PhysX_3.4/Source/SimulationController/src/ScNPhaseCore.h b/PhysX_3.4/Source/SimulationController/src/ScNPhaseCore.h index 1c178018..6b40edf2 100644 --- a/PhysX_3.4/Source/SimulationController/src/ScNPhaseCore.h +++ b/PhysX_3.4/Source/SimulationController/src/ScNPhaseCore.h @@ -119,8 +119,8 @@ namespace Sc struct BodyPairKey { - RigidSim* mSim0; - RigidSim* mSim1; + PxU32 mSim0; + PxU32 mSim1; bool operator == (const BodyPairKey& pair) const { return mSim0 == pair.mSim0 && mSim1 == pair.mSim1; } }; @@ -129,12 +129,8 @@ namespace Sc PX_INLINE PxU32 hash(const BodyPairKey& key) { - PxU32 add0 = (size_t(key.mSim0))&0xFFFFFFFF; - PxU32 add1 = (size_t(key.mSim1))&0xFFFFFFFF; - - //Clear the lower 2 bits, they will be 0s anyway - add0 = add0 >> 2; - add1 = add1 >> 2; + PxU32 add0 = key.mSim0; + PxU32 add1 = key.mSim1; PxU32 base = PxU32((add0 & 0xFFFF) | (add1 << 16)); @@ -203,6 +199,8 @@ namespace Sc void removeFromDirtyInteractionList(Interaction* interaction); void updateDirtyInteractions(PxsContactManagerOutputIterator& outputs, bool useAdaptiveForce); + void reserveSpaceInNphaseCore(const PxU32 nbContactManagers); + /* Description: Perform trigger overlap tests. diff --git a/PhysX_3.4/Source/SimulationController/src/ScScene.cpp b/PhysX_3.4/Source/SimulationController/src/ScScene.cpp index 1bdeaffe..1f161f18 100644 --- a/PhysX_3.4/Source/SimulationController/src/ScScene.cpp +++ b/PhysX_3.4/Source/SimulationController/src/ScScene.cpp @@ -149,10 +149,14 @@ private: public: - ScAfterIntegrationTask(const IG::NodeIndex* const indices, PxU32 numBodies, PxsContext* context, Context* dynamicsContext, PxsTransformCache& cache, - Sc::Scene& scene) : - mIndices(indices), mNumBodies(numBodies), mContext(context), mDynamicsContext(dynamicsContext), - mCache(cache), mScene(scene) + ScAfterIntegrationTask(const IG::NodeIndex* const indices, PxU32 numBodies, PxsContext* context, Context* dynamicsContext, PxsTransformCache& cache, Sc::Scene& scene) : + Cm::Task (scene.getContextId()), + mIndices (indices), + mNumBodies (numBodies), + mContext (context), + mDynamicsContext(dynamicsContext), + mCache (cache), + mScene (scene) { } @@ -378,10 +382,15 @@ private: public: - PxgUpdateBodyAndShapeStatusTask(const IG::NodeIndex* const indices, PxU32 numBodies, PxsBodySim* bodySimsLL, PxU32* activatedBodies, PxU32* deactivatedBodies, - Sc::Scene& scene, PxI32& ccdBodyWriteIndex) : - mNodeIndices(indices), mNumBodies(numBodies), mScene(scene), mBodySimsLL(bodySimsLL), mActivatedBodies(activatedBodies), - mDeactivatedBodies(deactivatedBodies), mCCDBodyWriteIndex(ccdBodyWriteIndex) + PxgUpdateBodyAndShapeStatusTask(const IG::NodeIndex* const indices, PxU32 numBodies, PxsBodySim* bodySimsLL, PxU32* activatedBodies, PxU32* deactivatedBodies, Sc::Scene& scene, PxI32& ccdBodyWriteIndex) : + Cm::Task (scene.getContextId()), + mNodeIndices (indices), + mNumBodies (numBodies), + mScene (scene), + mBodySimsLL (bodySimsLL), + mActivatedBodies (activatedBodies), + mDeactivatedBodies (deactivatedBodies), + mCCDBodyWriteIndex (ccdBodyWriteIndex) { } @@ -566,48 +575,48 @@ Sc::Scene::Scene(const PxSceneDesc& desc, PxU64 contextID) : mVisualizationParameterChanged (false), mNbRigidStatics (0), mNbRigidDynamics (0), - mClothPreprocessing (this, "ScScene.clothPreprocessing"), - mSecondPassNarrowPhase (this, "ScScene.secondPassNarrowPhase"), - mPostNarrowPhase (this, "ScScene.postNarrowPhase"), - mParticlePostCollPrep ("ScScene.particlePostCollPrep"), - mParticlePostShapeGen (this, "ScScene.particlePostShapeGen"), - mFinalizationPhase (this, "ScScene.finalizationPhase"), - mUpdateCCDMultiPass (this, "ScScene.updateCCDMultiPass"), - mAfterIntegration (this, "ScScene.afterIntegration"), - mConstraintProjection (this, "ScScene.constraintProjection"), - mPostSolver (this, "ScScene.postSolver"), - mSolver (this, "ScScene.rigidBodySolver"), - mUpdateBodiesAndShapes (this, "ScScene.updateBodiesAndShapes"), - mUpdateSimulationController (this, "ScScene.updateSimulationController"), - mUpdateDynamics (this, "ScScene.updateDynamics"), - mProcessLostContactsTask (this, "ScScene.processLostContact"), - mProcessLostContactsTask2 (this, "ScScene.processLostContact2"), - mProcessLostContactsTask3 (this, "ScScene.processLostContact3"), - mDestroyManagersTask (this, "ScScene.destroyManagers"), - mLostTouchReportsTask (this, "ScScene.lostTouchReports"), - mUnregisterInteractionsTask (this, "ScScene.unregisterInteractions"), - mProcessNarrowPhaseLostTouchTasks(this, "ScScene.processNpLostTouchTask"), - mProcessNPLostTouchEvents (this, "ScScene.processNPLostTouchEvents"), - mPostThirdPassIslandGenTask (this, "ScScene.postThirdPassIslandGenTask"), - mPostIslandGen (this, "ScScene.postIslandGen"), - mIslandGen (this, "ScScene.islandGen"), - mPreRigidBodyNarrowPhase (this, "ScScene.preRigidBodyNarrowPhase"), - mSetEdgesConnectedTask (this, "ScScene.setEdgesConnectedTask"), - mFetchPatchEventsTask (this, "ScScene.fetchPatchEventsTask"), - mProcessLostPatchesTask (this, "ScScene.processLostSolverPatchesTask"), - mRigidBodyNarrowPhase (this, "ScScene.rigidBodyNarrowPhase"), - mRigidBodyNPhaseUnlock (this, "ScScene.unblockNarrowPhase"), - mPostBroadPhase (this, "ScScene.postBroadPhase"), - mPostBroadPhase2 (this, "ScScene.postBroadPhase2"), - mPostBroadPhase3 (this, "ScScene.postBroadPhase3"), - mPreallocateContactManagers (this, "ScScene.preallocateContactManagers"), - mIslandInsertion (this, "ScScene.islandInsertion"), - mRegisterContactManagers (this, "ScScene.registerContactManagers"), - mRegisterInteractions (this, "ScScene.registerInteractions"), - mRegisterSceneInteractions (this, "ScScene.registerSceneInteractions"), - mBroadPhase (this, "ScScene.broadPhase"), - mAdvanceStep (this, "ScScene.advanceStep"), - mCollideStep (this, "ScScene.collideStep"), + mClothPreprocessing (contextID, this, "ScScene.clothPreprocessing"), + mSecondPassNarrowPhase (contextID, this, "ScScene.secondPassNarrowPhase"), + mPostNarrowPhase (contextID, this, "ScScene.postNarrowPhase"), + mParticlePostCollPrep (contextID, "ScScene.particlePostCollPrep"), + mParticlePostShapeGen (contextID, this, "ScScene.particlePostShapeGen"), + mFinalizationPhase (contextID, this, "ScScene.finalizationPhase"), + mUpdateCCDMultiPass (contextID, this, "ScScene.updateCCDMultiPass"), + mAfterIntegration (contextID, this, "ScScene.afterIntegration"), + mConstraintProjection (contextID, this, "ScScene.constraintProjection"), + mPostSolver (contextID, this, "ScScene.postSolver"), + mSolver (contextID, this, "ScScene.rigidBodySolver"), + mUpdateBodiesAndShapes (contextID, this, "ScScene.updateBodiesAndShapes"), + mUpdateSimulationController (contextID, this, "ScScene.updateSimulationController"), + mUpdateDynamics (contextID, this, "ScScene.updateDynamics"), + mProcessLostContactsTask (contextID, this, "ScScene.processLostContact"), + mProcessLostContactsTask2 (contextID, this, "ScScene.processLostContact2"), + mProcessLostContactsTask3 (contextID, this, "ScScene.processLostContact3"), + mDestroyManagersTask (contextID, this, "ScScene.destroyManagers"), + mLostTouchReportsTask (contextID, this, "ScScene.lostTouchReports"), + mUnregisterInteractionsTask (contextID, this, "ScScene.unregisterInteractions"), + mProcessNarrowPhaseLostTouchTasks(contextID, this, "ScScene.processNpLostTouchTask"), + mProcessNPLostTouchEvents (contextID, this, "ScScene.processNPLostTouchEvents"), + mPostThirdPassIslandGenTask (contextID, this, "ScScene.postThirdPassIslandGenTask"), + mPostIslandGen (contextID, this, "ScScene.postIslandGen"), + mIslandGen (contextID, this, "ScScene.islandGen"), + mPreRigidBodyNarrowPhase (contextID, this, "ScScene.preRigidBodyNarrowPhase"), + mSetEdgesConnectedTask (contextID, this, "ScScene.setEdgesConnectedTask"), + mFetchPatchEventsTask (contextID, this, "ScScene.fetchPatchEventsTask"), + mProcessLostPatchesTask (contextID, this, "ScScene.processLostSolverPatchesTask"), + mRigidBodyNarrowPhase (contextID, this, "ScScene.rigidBodyNarrowPhase"), + mRigidBodyNPhaseUnlock (contextID, this, "ScScene.unblockNarrowPhase"), + mPostBroadPhase (contextID, this, "ScScene.postBroadPhase"), + mPostBroadPhase2 (contextID, this, "ScScene.postBroadPhase2"), + mPostBroadPhase3 (contextID, this, "ScScene.postBroadPhase3"), + mPreallocateContactManagers (contextID, this, "ScScene.preallocateContactManagers"), + mIslandInsertion (contextID, this, "ScScene.islandInsertion"), + mRegisterContactManagers (contextID, this, "ScScene.registerContactManagers"), + mRegisterInteractions (contextID, this, "ScScene.registerInteractions"), + mRegisterSceneInteractions (contextID, this, "ScScene.registerSceneInteractions"), + mBroadPhase (contextID, this, "ScScene.broadPhase"), + mAdvanceStep (contextID, this, "ScScene.advanceStep"), + mCollideStep (contextID, this, "ScScene.collideStep"), mTaskPool (16384), mContactReportsNeedPostSolverVelocity(false), mSimulationStage (SimulationStage::eCOMPLETE), @@ -2106,6 +2115,11 @@ void Sc::Scene::broadPhase(PxBaseTask* continuation) void Sc::Scene::postBroadPhase(PxBaseTask* continuation) { PX_PROFILE_START_CROSSTHREAD("Basic.postBroadPhase", getContextId()); + + //Notify narrow phase that broad phase has completed + mLLContext->getNphaseImplementationContext()->postBroadPhaseUpdateContactManager(); + mAABBManager->postBroadPhase(continuation, &mRigidBodyNPhaseUnlock); + mAABBManager->getChangedAABBMgActorHandleMap().clear(); // - Finishes broadphase update @@ -2165,8 +2179,11 @@ public: Sc::ShapeSim* mShapes[MaxShapes]; PxU32 mNbShapes; - DirtyShapeUpdatesTask(PxsTransformCache& cache, Bp::BoundsArray& boundsArray) : - mCache(cache), mBoundsArray(boundsArray), mNbShapes(0) + DirtyShapeUpdatesTask(PxU64 contextID, PxsTransformCache& cache, Bp::BoundsArray& boundsArray) : + Cm::Task (contextID), + mCache (cache), + mBoundsArray(boundsArray), + mNbShapes (0) { } @@ -2195,8 +2212,12 @@ public: Bp::BoundsArray& mBoundsArray; - SpeculativeCCDContactDistanceUpdateTask(PxReal* contactDistances, const PxReal dt, Bp::BoundsArray& boundsArray) : - mContactDistances(contactDistances), mDt(dt), mNbBodies(0), mBoundsArray(boundsArray) + SpeculativeCCDContactDistanceUpdateTask(PxU64 contextID, PxReal* contactDistances, const PxReal dt, Bp::BoundsArray& boundsArray) : + Cm::Task (contextID), + mContactDistances (contactDistances), + mDt (dt), + mNbBodies (0), + mBoundsArray (boundsArray) { } @@ -2222,8 +2243,11 @@ public: Sc::ArticulationSim* mArticulation; Bp::BoundsArray& mBoundsArray; - SpeculativeCCDContactDistanceArticulationUpdateTask(PxReal* contactDistances, const PxReal dt, Bp::BoundsArray& boundsArray) : - mContactDistances(contactDistances), mDt(dt), mBoundsArray(boundsArray) + SpeculativeCCDContactDistanceArticulationUpdateTask(PxU64 contextID, PxReal* contactDistances, const PxReal dt, Bp::BoundsArray& boundsArray) : + Cm::Task (contextID), + mContactDistances (contactDistances), + mDt (dt), + mBoundsArray (boundsArray) { } @@ -2250,7 +2274,7 @@ void Sc::Scene::preRigidBodyNarrowPhase(PxBaseTask* continuation) //calculate contact distance for speculative CCD shapes Cm::BitMap::Iterator speculativeCCDIter(mSpeculativeCCDRigidBodyBitMap); - SpeculativeCCDContactDistanceUpdateTask* ccdTask = PX_PLACEMENT_NEW(pool.allocate(sizeof(SpeculativeCCDContactDistanceUpdateTask)), SpeculativeCCDContactDistanceUpdateTask)(mContactDistance->begin(), mDt, *mBoundsArray); + SpeculativeCCDContactDistanceUpdateTask* ccdTask = PX_PLACEMENT_NEW(pool.allocate(sizeof(SpeculativeCCDContactDistanceUpdateTask)), SpeculativeCCDContactDistanceUpdateTask)(getContextId(), mContactDistance->begin(), mDt, *mBoundsArray); IG::IslandSim& islandSim = mSimpleIslandManager->getAccurateIslandSim(); @@ -2270,7 +2294,7 @@ void Sc::Scene::preRigidBodyNarrowPhase(PxBaseTask* continuation) { ccdTask->setContinuation(continuation); ccdTask->removeReference(); - ccdTask = PX_PLACEMENT_NEW(pool.allocate(sizeof(SpeculativeCCDContactDistanceUpdateTask)), SpeculativeCCDContactDistanceUpdateTask)(mContactDistance->begin(), mDt, *mBoundsArray); + ccdTask = PX_PLACEMENT_NEW(pool.allocate(sizeof(SpeculativeCCDContactDistanceUpdateTask)), SpeculativeCCDContactDistanceUpdateTask)(getContextId(), mContactDistance->begin(), mDt, *mBoundsArray); } } } @@ -2291,7 +2315,7 @@ void Sc::Scene::preRigidBodyNarrowPhase(PxBaseTask* continuation) if (articulationSim) { hasContactDistanceChanged = true; - articulationUpdateTask = PX_PLACEMENT_NEW(pool.allocate(sizeof(SpeculativeCCDContactDistanceArticulationUpdateTask)), SpeculativeCCDContactDistanceArticulationUpdateTask)(mContactDistance->begin(), mDt, *mBoundsArray); + articulationUpdateTask = PX_PLACEMENT_NEW(pool.allocate(sizeof(SpeculativeCCDContactDistanceArticulationUpdateTask)), SpeculativeCCDContactDistanceArticulationUpdateTask)(getContextId(), mContactDistance->begin(), mDt, *mBoundsArray); articulationUpdateTask->mArticulation = articulationSim; articulationUpdateTask->setContinuation(continuation); articulationUpdateTask->removeReference(); @@ -2308,7 +2332,7 @@ void Sc::Scene::preRigidBodyNarrowPhase(PxBaseTask* continuation) PxsTransformCache& cache = mLLContext->getTransformCache(); Bp::BoundsArray& boundsArray = mAABBManager->getBoundsArray(); - DirtyShapeUpdatesTask* task = PX_PLACEMENT_NEW(pool.allocate(sizeof(DirtyShapeUpdatesTask)), DirtyShapeUpdatesTask)(cache, boundsArray); + DirtyShapeUpdatesTask* task = PX_PLACEMENT_NEW(pool.allocate(sizeof(DirtyShapeUpdatesTask)), DirtyShapeUpdatesTask)(getContextId(), cache, boundsArray); bool hasDirtyShapes = false; while ((index = dirtyShapeIter.getNext()) != Cm::BitMap::Iterator::DONE) @@ -2323,7 +2347,7 @@ void Sc::Scene::preRigidBodyNarrowPhase(PxBaseTask* continuation) { task->setContinuation(continuation); task->removeReference(); - task = PX_PLACEMENT_NEW(pool.allocate(sizeof(DirtyShapeUpdatesTask)), DirtyShapeUpdatesTask)(cache, boundsArray); + task = PX_PLACEMENT_NEW(pool.allocate(sizeof(DirtyShapeUpdatesTask)), DirtyShapeUpdatesTask)(getContextId(), cache, boundsArray); } } } @@ -2354,13 +2378,12 @@ void Sc::Scene::rigidBodyNarrowPhase(PxBaseTask* continuation) mPostBroadPhase3.addDependent(*continuation); mPostBroadPhase2.setContinuation(&mPostBroadPhase3); mPostBroadPhase.setContinuation(&mPostBroadPhase2); - mRigidBodyNPhaseUnlock.setContinuation(continuation); - mRigidBodyNPhaseUnlock.addReference(); //Must be decremented by both BP and NP before it runs mBroadPhase.setContinuation(&mPostBroadPhase); + mRigidBodyNPhaseUnlock.setContinuation(continuation); + mRigidBodyNPhaseUnlock.addReference(); mLLContext->resetThreadContexts(); - mLLContext->updateContactManager(mDt, mBoundsArray->hasChanged(), mHasContactDistanceChanged, continuation, &mRigidBodyNPhaseUnlock); // Starts update of contact managers if (hasParticleSystems()) { @@ -2389,6 +2412,8 @@ void Sc::Scene::rigidBodyNarrowPhase(PxBaseTask* continuation) } #endif + mLLContext->updateContactManager(mDt, mBoundsArray->hasChanged(), mHasContactDistanceChanged, continuation, &mRigidBodyNPhaseUnlock); // Starts update of contact managers + mPostBroadPhase3.removeReference(); mPostBroadPhase2.removeReference(); mPostBroadPhase.removeReference(); @@ -2494,8 +2519,12 @@ class InteractionNewTouchTask : public Cm::Task const bool mUseAdaptiveForce; public: - InteractionNewTouchTask(PxvContactManagerTouchEvent* events, PxU32 nbEvents, PxsContactManagerOutputIterator& outputs, bool useAdaptiveForce) : mEvents(events), mNbEvents(nbEvents), mOutputs(outputs), - mUseAdaptiveForce(useAdaptiveForce) + InteractionNewTouchTask(PxU64 contextID, PxvContactManagerTouchEvent* events, PxU32 nbEvents, PxsContactManagerOutputIterator& outputs, bool useAdaptiveForce) : + Cm::Task (contextID), + mEvents (events), + mNbEvents (nbEvents), + mOutputs (outputs), + mUseAdaptiveForce (useAdaptiveForce) { } @@ -2695,10 +2724,12 @@ PX_FORCE_INLINE void Sc::Scene::putInteractionsToSleep(PxU32 infoFlag) { const IG::IslandSim& islandSim = mSimpleIslandManager->getSpeculativeIslandSim(); - for (PxU32 a = 0; a < IG::Edge::eEDGE_TYPE_COUNT; ++a) + //KS - only deactivate contact managers based on speculative state to trigger contact gen. When the actors were deactivated based on accurate state + //joints should have been deactivated. + { - PxU32 nbDeactivatingEdges = islandSim.getNbDeactivatingEdges(IG::Edge::EdgeType(a)); - const IG::EdgeIndex* deactivatingEdgeIds = islandSim.getDeactivatingEdges(IG::Edge::EdgeType(a)); + PxU32 nbDeactivatingEdges = islandSim.getNbDeactivatingEdges(IG::Edge::eCONTACT_MANAGER); + const IG::EdgeIndex* deactivatingEdgeIds = islandSim.getDeactivatingEdges(IG::Edge::eCONTACT_MANAGER); for (PxU32 i = 0; i < nbDeactivatingEdges; ++i) { @@ -2749,12 +2780,14 @@ PX_FORCE_INLINE void Sc::Scene::wakeObjectsUp(PxU32 infoFlag) PX_FORCE_INLINE void Sc::Scene::wakeInteractions(PxU32 /*infoFlag*/) { + PX_PROFILE_ZONE("ScScene.wakeInteractions", getContextId()); const IG::IslandSim& speculativeSim = mSimpleIslandManager->getSpeculativeIslandSim(); - for (PxU32 a = 0; a < IG::Edge::eEDGE_TYPE_COUNT; ++a) + //KS - only wake contact managers based on speculative state to trigger contact gen. Waking actors based on accurate state + //should activate and joints. { - PxU32 nbActivatingEdges = speculativeSim.getNbActivatedEdges(IG::Edge::EdgeType(a)); - const IG::EdgeIndex* activatingEdges = speculativeSim.getActivatedEdges(IG::Edge::EdgeType(a)); + PxU32 nbActivatingEdges = speculativeSim.getNbActivatedEdges(IG::Edge::eCONTACT_MANAGER); + const IG::EdgeIndex* activatingEdges = speculativeSim.getActivatedEdges(IG::Edge::eCONTACT_MANAGER); for (PxU32 i = 0; i < nbActivatingEdges; ++i) { @@ -3084,22 +3117,12 @@ void Sc::Scene::updateCCDMultiPass(PxBaseTask* parentContinuation) mCCDBroadPhaseAABB.reserve(2); for (int j = 0; j < 2; j++) { - mPostCCDPass.pushBack( - Cm::DelegateTask<Sc::Scene, &Sc::Scene::postCCDPass>( - this, "ScScene.postCCDPass")); - mUpdateCCDSinglePass.pushBack( - Cm::DelegateTask<Sc::Scene, &Sc::Scene::updateCCDSinglePass>( - this, "ScScene.updateCCDSinglePass")); - mUpdateCCDSinglePass2.pushBack( - Cm::DelegateTask<Sc::Scene, &Sc::Scene::updateCCDSinglePassStage2>( - this, "ScScene.updateCCDSinglePassStage2")); - mUpdateCCDSinglePass3.pushBack(Cm::DelegateTask<Sc::Scene, &Sc::Scene::updateCCDSinglePassStage3>( - this, "ScScene.updateCCDSinglePassStage3")); - mCCDBroadPhase.pushBack( - Cm::DelegateTask<Sc::Scene, &Sc::Scene::ccdBroadPhase>( - this, "ScScene.ccdBroadPhase")); - mCCDBroadPhaseAABB.pushBack(Cm::DelegateTask<Sc::Scene, &Sc::Scene::ccdBroadPhaseAABB>( - this, "ScScene.ccdBroadPhaseAABB")); + mPostCCDPass.pushBack(Cm::DelegateTask<Sc::Scene, &Sc::Scene::postCCDPass>(getContextId(), this, "ScScene.postCCDPass")); + mUpdateCCDSinglePass.pushBack(Cm::DelegateTask<Sc::Scene, &Sc::Scene::updateCCDSinglePass>(getContextId(), this, "ScScene.updateCCDSinglePass")); + mUpdateCCDSinglePass2.pushBack(Cm::DelegateTask<Sc::Scene, &Sc::Scene::updateCCDSinglePassStage2>(getContextId(), this, "ScScene.updateCCDSinglePassStage2")); + mUpdateCCDSinglePass3.pushBack(Cm::DelegateTask<Sc::Scene, &Sc::Scene::updateCCDSinglePassStage3>(getContextId(), this, "ScScene.updateCCDSinglePassStage3")); + mCCDBroadPhase.pushBack(Cm::DelegateTask<Sc::Scene, &Sc::Scene::ccdBroadPhase>(getContextId(), this, "ScScene.ccdBroadPhase")); + mCCDBroadPhaseAABB.pushBack(Cm::DelegateTask<Sc::Scene, &Sc::Scene::ccdBroadPhaseAABB>(getContextId(), this, "ScScene.ccdBroadPhaseAABB")); } } @@ -3126,8 +3149,11 @@ public: static const PxU32 MaxPerTask = 256; - UpdateCCDBoundsTask(Sc::BodySim** bodySims, PxU32 nbToProcess, PxI32* numFastMovingShapes) : mBodySims(bodySims), - mNbToProcess(nbToProcess), mNumFastMovingShapes(numFastMovingShapes) + UpdateCCDBoundsTask(PxU64 contextID, Sc::BodySim** bodySims, PxU32 nbToProcess, PxI32* numFastMovingShapes) : + Cm::Task (contextID), + mBodySims (bodySims), + mNbToProcess (nbToProcess), + mNumFastMovingShapes(numFastMovingShapes) { } @@ -3178,7 +3204,7 @@ void Sc::Scene::ccdBroadPhaseAABB(PxBaseTask* continuation) for (PxU32 i = 0; i < mCcdBodies.size(); i+= UpdateCCDBoundsTask::MaxPerTask) { const PxU32 nbToProcess = PxMin(UpdateCCDBoundsTask::MaxPerTask, mCcdBodies.size() - i); - UpdateCCDBoundsTask* task = PX_PLACEMENT_NEW(flushPool.allocate(sizeof(UpdateCCDBoundsTask)), UpdateCCDBoundsTask)(&mCcdBodies[i], nbToProcess, &mNumFastMovingShapes); + UpdateCCDBoundsTask* task = PX_PLACEMENT_NEW(flushPool.allocate(sizeof(UpdateCCDBoundsTask)), UpdateCCDBoundsTask)(getContextId(), &mCcdBodies[i], nbToProcess, &mNumFastMovingShapes); task->setContinuation(continuation); task->removeReference(); } @@ -3238,6 +3264,7 @@ void Sc::Scene::updateCCDSinglePass(PxBaseTask* continuation) PX_PROFILE_ZONE("Sim.updateCCDSinglePass", getContextId()); mReportShapePairTimeStamp++; // This will makes sure that new report pairs will get created instead of re-using the existing ones. + mAABBManager->postBroadPhase(continuation, NULL); const PxU32 currentPass = mCCDContext->getCurrentCCDPass() + 1; // 0 is reserved for discrete collision phase finishBroadPhase(currentPass, continuation); @@ -3338,12 +3365,12 @@ private: ConstraintProjectionTask& operator = (const ConstraintProjectionTask&); public: - ConstraintProjectionTask(Sc::ConstraintGroupNode* const* projectionRoots, PxU32 projectionRootCount, Ps::Array<Sc::BodySim*>& projectedBodies, PxsContext* llContext) - : - mProjectionRoots(projectionRoots), + ConstraintProjectionTask(Sc::ConstraintGroupNode* const* projectionRoots, PxU32 projectionRootCount, Ps::Array<Sc::BodySim*>& projectedBodies, PxsContext* llContext) : + Cm::Task (llContext->getContextId()), + mProjectionRoots (projectionRoots), mProjectionRootCount(projectionRootCount), - mProjectedBodies(projectedBodies), - mLLContext(llContext) + mProjectedBodies (projectedBodies), + mLLContext (llContext) { } @@ -3757,6 +3784,7 @@ public: public: ScBeforeSolverTask(PxReal dt, IG::SimpleIslandManager* islandManager, PxsSimulationController* simulationController, PxU64 contextID, bool simUsesAdaptiveForce) : + Cm::Task (contextID), mDt (dt), mIslandManager (islandManager), mSimulationController (simulationController), @@ -3863,10 +3891,6 @@ void Sc::Scene::beforeSolver(PxBaseTask* continuation) mBodyGravityDirty = false; } -#if PX_DEBUG -bool DEBUG_solverlock = false; -#endif - /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// class UpdatProjectedPoseTask : public Cm::Task @@ -3875,7 +3899,10 @@ class UpdatProjectedPoseTask : public Cm::Task PxU32 mNbBodiesToProcess; public: - UpdatProjectedPoseTask(Sc::BodySim** projectedBodies, PxU32 nbBodiesToProcess) : mProjectedBodies(projectedBodies), mNbBodiesToProcess(nbBodiesToProcess) + UpdatProjectedPoseTask(PxU64 contextID, Sc::BodySim** projectedBodies, PxU32 nbBodiesToProcess) : + Cm::Task (contextID), + mProjectedBodies (projectedBodies), + mNbBodiesToProcess (nbBodiesToProcess) { } @@ -3977,7 +4004,7 @@ void Sc::Scene::afterIntegration(PxBaseTask* continuation) for (PxU32 a = 0; a < mProjectedBodies.size(); a += maxBodiesPerTask) { UpdatProjectedPoseTask* task = - PX_PLACEMENT_NEW(flushPool.allocate(sizeof(UpdatProjectedPoseTask)), UpdatProjectedPoseTask)(&mProjectedBodies[a], PxMin(maxBodiesPerTask, mProjectedBodies.size() - a)); + PX_PLACEMENT_NEW(flushPool.allocate(sizeof(UpdatProjectedPoseTask)), UpdatProjectedPoseTask)(getContextId(), &mProjectedBodies[a], PxMin(maxBodiesPerTask, mProjectedBodies.size() - a)); task->setContinuation(continuation); task->removeReference(); } @@ -6150,8 +6177,16 @@ public: PxU32 mNbToSuppress; PxU32 mNbToCallback; - OverlapFilterTask(Sc::NPhaseCore* nPhaseCore, PxFilterInfo* fInfo, const Bp::AABBOverlap* PX_RESTRICT pairs, Bp::BroadPhasePair* bpPairs, const PxU32 nbToProcess) : mNPhaseCore(nPhaseCore), - mPairs(pairs), mBpPairs(bpPairs), mNbToProcess(nbToProcess), mFinfo(fInfo), mNbToKeep(0), mNbToSuppress(0), mNbToCallback(0) + OverlapFilterTask(PxU64 contextID, Sc::NPhaseCore* nPhaseCore, PxFilterInfo* fInfo, const Bp::AABBOverlap* PX_RESTRICT pairs, Bp::BroadPhasePair* bpPairs, const PxU32 nbToProcess) : + Cm::Task (contextID), + mNPhaseCore (nPhaseCore), + mPairs (pairs), + mBpPairs (bpPairs), + mNbToProcess (nbToProcess), + mFinfo (fInfo), + mNbToKeep (0), + mNbToSuppress (0), + mNbToCallback (0) { PxMemZero(mKeepMap, sizeof(mKeepMap)); PxMemZero(mCallbackMap, sizeof(mCallbackMap)); @@ -6169,7 +6204,7 @@ public: if(pair.mPairHandle != BP_INVALID_BP_HANDLE && mBpPairs != NULL) thisPair = &mBpPairs[pair.mPairHandle]; - PxFilterInfo finfo = mNPhaseCore->onOverlapFilter(e0, e1, thisPair); + const PxFilterInfo finfo = mNPhaseCore->onOverlapFilter(e0, e1, thisPair); mFinfo[a] = finfo; @@ -6200,7 +6235,7 @@ class OnOverlapCreatedTask : public Cm::Task public: Sc::NPhaseCore* mNPhaseCore; const Bp::AABBOverlap* PX_RESTRICT mPairs; - PxFilterInfo* mFinfo; + const PxFilterInfo* mFinfo; PxsContactManager** mContactManagers; Sc::ShapeInteraction** mShapeInteractions; Sc::ElementInteractionMarker** mInteractionMarkers; @@ -6208,9 +6243,17 @@ public: PxU32 mNbToProcess; - OnOverlapCreatedTask(Sc::NPhaseCore* nPhaseCore, const Bp::AABBOverlap* PX_RESTRICT pairs, PxFilterInfo* fInfo, PxsContactManager** contactManagers, Sc::ShapeInteraction** shapeInteractions, Sc::ElementInteractionMarker** interactionMarkers, - Bp::BroadPhasePair* bpPairs, PxU32 nbToProcess) : mNPhaseCore(nPhaseCore), mPairs(pairs), mFinfo(fInfo), mContactManagers(contactManagers), mShapeInteractions(shapeInteractions), - mInteractionMarkers(interactionMarkers), mBpPairs(bpPairs), mNbToProcess(nbToProcess) + OnOverlapCreatedTask(PxU64 contextID, Sc::NPhaseCore* nPhaseCore, const Bp::AABBOverlap* PX_RESTRICT pairs, const PxFilterInfo* fInfo, PxsContactManager** contactManagers, Sc::ShapeInteraction** shapeInteractions, Sc::ElementInteractionMarker** interactionMarkers, + Bp::BroadPhasePair* bpPairs, PxU32 nbToProcess) : + Cm::Task (contextID), + mNPhaseCore (nPhaseCore), + mPairs (pairs), + mFinfo (fInfo), + mContactManagers (contactManagers), + mShapeInteractions (shapeInteractions), + mInteractionMarkers (interactionMarkers), + mBpPairs (bpPairs), + mNbToProcess (nbToProcess) { } @@ -6292,7 +6335,7 @@ void Sc::Scene::preallocateContactManagers(PxBaseTask* continuation) Sc::ShapeSim* s0 = reinterpret_cast<Sc::ShapeSim*>(pair.mUserData0); Sc::ShapeSim* s1 = reinterpret_cast<Sc::ShapeSim*>(pair.mUserData1); - PxFilterInfo finfo = mNPhaseCore->filterRbCollisionPairSecondStage(*s0, *s1, s0->getBodySim(), s1->getBodySim(), INVALID_FILTER_PAIR_INDEX, true); + const PxFilterInfo finfo = mNPhaseCore->filterRbCollisionPairSecondStage(*s0, *s1, s0->getBodySim(), s1->getBodySim(), INVALID_FILTER_PAIR_INDEX, true); task->mFinfo[index] = finfo; @@ -6334,7 +6377,7 @@ void Sc::Scene::preallocateContactManagers(PxBaseTask* continuation) Cm::FlushPool& flushPool = mLLContext->getTaskPool(); - OnOverlapCreatedTask* createTask = PX_PLACEMENT_NEW(flushPool.allocate(sizeof(OnOverlapCreatedTask)), OnOverlapCreatedTask)(mNPhaseCore, p, + OnOverlapCreatedTask* createTask = PX_PLACEMENT_NEW(flushPool.allocate(sizeof(OnOverlapCreatedTask)), OnOverlapCreatedTask)(getContextId(), mNPhaseCore, p, fInfo, cms, shapeInter, markerIter, bpPairs, 0); PxU32 batchSize = 0; @@ -6387,7 +6430,7 @@ void Sc::Scene::preallocateContactManagers(PxBaseTask* continuation) - createTask = PX_PLACEMENT_NEW(flushPool.allocate(sizeof(OnOverlapCreatedTask)), OnOverlapCreatedTask)(mNPhaseCore, p + createdOverlapCount, + createTask = PX_PLACEMENT_NEW(flushPool.allocate(sizeof(OnOverlapCreatedTask)), OnOverlapCreatedTask)(getContextId(), mNPhaseCore, p + createdOverlapCount, fInfo + createdOverlapCount, cms + createdStartIdx, shapeInter + createdStartIdx, markerIter + suppressedStartIdx, bpPairs, 0); batchSize = 0; @@ -6425,6 +6468,24 @@ void Sc::Scene::finishBroadPhase(PxU32 ccdPass, PxBaseTask* continuation) { PX_PROFILE_ZONE("Sim.processNewOverlaps", getContextId()); + + { + //KS - these functions call "registerInActors", while OverlapFilterTask reads the list of interactions + //in an actor. This could lead to a race condition and a crash if they occur at the same time, so we + //serialize these operations + PX_PROFILE_ZONE("Sim.processNewOverlaps.createOverlapsNoShapeInteractions", getContextId()); + for (PxU32 i = Bp::VolumeBuckets::ePARTICLE; i < Bp::VolumeBuckets::eCOUNT; ++i) + { + + PxU32 createdOverlapCount; + const Bp::AABBOverlap* PX_RESTRICT p = aabbMgr->getCreatedOverlaps(i, createdOverlapCount); + + + mLLContext->getSimStats().mNbNewPairs += createdOverlapCount; + mNPhaseCore->onOverlapCreated(p, createdOverlapCount, ccdPass, bpPairs); + } + } + { PxU32 createdOverlapCount; @@ -6454,31 +6515,16 @@ void Sc::Scene::finishBroadPhase(PxU32 ccdPass, PxBaseTask* continuation) for (PxU32 a = 0; a < createdOverlapCount; a += nbPairsPerTask) { PxU32 nbToProcess = PxMin(createdOverlapCount - a, nbPairsPerTask); - OverlapFilterTask* task = PX_PLACEMENT_NEW(flushPool.allocate(sizeof(OverlapFilterTask)), OverlapFilterTask)(mNPhaseCore, mFilterInfo.begin() + a, + OverlapFilterTask* task = PX_PLACEMENT_NEW(flushPool.allocate(sizeof(OverlapFilterTask)), OverlapFilterTask)(getContextId(), mNPhaseCore, mFilterInfo.begin() + a, p + a, bpPairs, nbToProcess); task->setContinuation(&mPreallocateContactManagers); task->removeReference(); mOverlapFilterTasks.pushBack(task); } - } mPreallocateContactManagers.removeReference(); - - { - PX_PROFILE_ZONE("Sim.processNewOverlaps.createOverlapsNoShapeInteractions", getContextId()); - for (PxU32 i = Bp::VolumeBuckets::ePARTICLE; i < Bp::VolumeBuckets::eCOUNT; ++i) - { - - PxU32 createdOverlapCount; - const Bp::AABBOverlap* PX_RESTRICT p = aabbMgr->getCreatedOverlaps(i, createdOverlapCount); - - - mLLContext->getSimStats().mNbNewPairs += createdOverlapCount; - mNPhaseCore->onOverlapCreated(p, createdOverlapCount, ccdPass, bpPairs); - } - } } } diff --git a/PhysX_3.4/Source/SimulationController/src/particles/ScParticleSystemSim.cpp b/PhysX_3.4/Source/SimulationController/src/particles/ScParticleSystemSim.cpp index 0c44d322..5fb2a990 100644 --- a/PhysX_3.4/Source/SimulationController/src/particles/ScParticleSystemSim.cpp +++ b/PhysX_3.4/Source/SimulationController/src/particles/ScParticleSystemSim.cpp @@ -53,7 +53,7 @@ Sc::ParticleSystemSim::ParticleSystemSim(Scene& scene, ParticleSystemCore& core) , mParticlePacketShapePool(PX_DEBUG_EXP("ParticlePacketShapePool")) , mParticlePacketShapes(PX_DEBUG_EXP("ParticleSysPacketShapes")) , mInteractionCount(0) -, mCollisionInputPrepTask(this, "ScParticleSystemSim.prepareCollisionInput") +, mCollisionInputPrepTask(scene.getContextId(), this, "ScParticleSystemSim.prepareCollisionInput") { // Set size of interaction list ActorSim::setInteractionCountHint(32); diff --git a/PhysX_3.4/Source/compiler/android16/Makefile.PhysXExtensions.mk b/PhysX_3.4/Source/compiler/android16/Makefile.PhysXExtensions.mk index 1fc067a9..6003079f 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=0 +PhysXExtensions_debug_defines += PX_BUILD_NUMBER=22017532 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=0 +PhysXExtensions_checked_defines += PX_BUILD_NUMBER=22017532 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=0 +PhysXExtensions_profile_defines += PX_BUILD_NUMBER=22017532 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=0 +PhysXExtensions_release_defines += PX_BUILD_NUMBER=22017532 PhysXExtensions_release_defines += ANDROID PhysXExtensions_release_defines += GLES2 PhysXExtensions_release_defines += __STDC_LIMIT_MACROS diff --git a/PhysX_3.4/Source/compiler/linux32/Makefile.PhysXExtensions.mk b/PhysX_3.4/Source/compiler/linux32/Makefile.PhysXExtensions.mk index e63a0f83..32083fb1 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=21749494 +PhysXExtensions_debug_defines += PX_BUILD_NUMBER=22017532 PhysXExtensions_debug_defines += PX_PHYSX_STATIC_LIB PhysXExtensions_debug_defines += _DEBUG PhysXExtensions_debug_defines += PX_DEBUG=1 @@ -231,7 +231,7 @@ PhysXExtensions_checked_hpaths += ./../../PhysX/src PhysXExtensions_checked_lpaths := PhysXExtensions_checked_lpaths += ./../../../../PxShared/lib/linux32 PhysXExtensions_checked_defines := $(PhysXExtensions_custom_defines) -PhysXExtensions_checked_defines += PX_BUILD_NUMBER=21749494 +PhysXExtensions_checked_defines += PX_BUILD_NUMBER=22017532 PhysXExtensions_checked_defines += PX_PHYSX_STATIC_LIB PhysXExtensions_checked_defines += NDEBUG PhysXExtensions_checked_defines += PX_CHECKED=1 @@ -347,7 +347,7 @@ PhysXExtensions_profile_hpaths += ./../../PhysX/src PhysXExtensions_profile_lpaths := PhysXExtensions_profile_lpaths += ./../../../../PxShared/lib/linux32 PhysXExtensions_profile_defines := $(PhysXExtensions_custom_defines) -PhysXExtensions_profile_defines += PX_BUILD_NUMBER=21749494 +PhysXExtensions_profile_defines += PX_BUILD_NUMBER=22017532 PhysXExtensions_profile_defines += PX_PHYSX_STATIC_LIB PhysXExtensions_profile_defines += NDEBUG PhysXExtensions_profile_defines += PX_PROFILE=1 @@ -463,7 +463,7 @@ PhysXExtensions_release_hpaths += ./../../PhysX/src PhysXExtensions_release_lpaths := PhysXExtensions_release_lpaths += ./../../../../PxShared/lib/linux32 PhysXExtensions_release_defines := $(PhysXExtensions_custom_defines) -PhysXExtensions_release_defines += PX_BUILD_NUMBER=21749494 +PhysXExtensions_release_defines += PX_BUILD_NUMBER=22017532 PhysXExtensions_release_defines += PX_PHYSX_STATIC_LIB PhysXExtensions_release_defines += NDEBUG PhysXExtensions_release_defines += PX_SUPPORT_PVD=0 diff --git a/PhysX_3.4/Source/compiler/linux64/Makefile.PhysXExtensions.mk b/PhysX_3.4/Source/compiler/linux64/Makefile.PhysXExtensions.mk index e525a9bb..a5ca13d0 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=21749494 +PhysXExtensions_debug_defines += PX_BUILD_NUMBER=22017532 PhysXExtensions_debug_defines += PX_PHYSX_STATIC_LIB PhysXExtensions_debug_defines += _DEBUG PhysXExtensions_debug_defines += PX_DEBUG=1 @@ -231,7 +231,7 @@ PhysXExtensions_checked_hpaths += ./../../PhysX/src PhysXExtensions_checked_lpaths := PhysXExtensions_checked_lpaths += ./../../../../PxShared/lib/linux64 PhysXExtensions_checked_defines := $(PhysXExtensions_custom_defines) -PhysXExtensions_checked_defines += PX_BUILD_NUMBER=21749494 +PhysXExtensions_checked_defines += PX_BUILD_NUMBER=22017532 PhysXExtensions_checked_defines += PX_PHYSX_STATIC_LIB PhysXExtensions_checked_defines += NDEBUG PhysXExtensions_checked_defines += PX_CHECKED=1 @@ -347,7 +347,7 @@ PhysXExtensions_profile_hpaths += ./../../PhysX/src PhysXExtensions_profile_lpaths := PhysXExtensions_profile_lpaths += ./../../../../PxShared/lib/linux64 PhysXExtensions_profile_defines := $(PhysXExtensions_custom_defines) -PhysXExtensions_profile_defines += PX_BUILD_NUMBER=21749494 +PhysXExtensions_profile_defines += PX_BUILD_NUMBER=22017532 PhysXExtensions_profile_defines += PX_PHYSX_STATIC_LIB PhysXExtensions_profile_defines += NDEBUG PhysXExtensions_profile_defines += PX_PROFILE=1 @@ -463,7 +463,7 @@ PhysXExtensions_release_hpaths += ./../../PhysX/src PhysXExtensions_release_lpaths := PhysXExtensions_release_lpaths += ./../../../../PxShared/lib/linux64 PhysXExtensions_release_defines := $(PhysXExtensions_custom_defines) -PhysXExtensions_release_defines += PX_BUILD_NUMBER=21749494 +PhysXExtensions_release_defines += PX_BUILD_NUMBER=22017532 PhysXExtensions_release_defines += PX_PHYSX_STATIC_LIB PhysXExtensions_release_defines += NDEBUG PhysXExtensions_release_defines += PX_SUPPORT_PVD=0 diff --git a/PhysX_3.4/Source/compiler/make_osx32/Makefile.LowLevel.mk b/PhysX_3.4/Source/compiler/make_osx32/Makefile.LowLevel.mk index 886f8d78..20799605 100644 --- a/PhysX_3.4/Source/compiler/make_osx32/Makefile.LowLevel.mk +++ b/PhysX_3.4/Source/compiler/make_osx32/Makefile.LowLevel.mk @@ -99,6 +99,7 @@ LowLevel_debug_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-math -fn LowLevel_debug_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevel_debug_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevel_debug_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevel_debug_cflags += -Wno-c++11-extensions LowLevel_debug_cflags += -g3 -gdwarf-2 -O0 LowLevel_debug_cppflags := $(LowLevel_debug_common_cflags) LowLevel_debug_cppflags += -arch i386 @@ -106,6 +107,7 @@ LowLevel_debug_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-math - LowLevel_debug_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevel_debug_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevel_debug_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevel_debug_cppflags += -Wno-c++11-extensions LowLevel_debug_cppflags += -g3 -gdwarf-2 -O0 LowLevel_debug_lflags := $(LowLevel_custom_lflags) LowLevel_debug_lflags += $(addprefix -L, $(LowLevel_debug_lpaths)) @@ -218,6 +220,7 @@ LowLevel_checked_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-math - LowLevel_checked_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevel_checked_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevel_checked_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevel_checked_cflags += -Wno-c++11-extensions LowLevel_checked_cflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing LowLevel_checked_cppflags := $(LowLevel_checked_common_cflags) LowLevel_checked_cppflags += -arch i386 @@ -225,6 +228,7 @@ LowLevel_checked_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-math LowLevel_checked_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevel_checked_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevel_checked_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevel_checked_cppflags += -Wno-c++11-extensions LowLevel_checked_cppflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing LowLevel_checked_lflags := $(LowLevel_custom_lflags) LowLevel_checked_lflags += $(addprefix -L, $(LowLevel_checked_lpaths)) @@ -337,6 +341,7 @@ LowLevel_profile_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-math - LowLevel_profile_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevel_profile_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevel_profile_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevel_profile_cflags += -Wno-c++11-extensions LowLevel_profile_cflags += -O3 -fno-strict-aliasing LowLevel_profile_cppflags := $(LowLevel_profile_common_cflags) LowLevel_profile_cppflags += -arch i386 @@ -344,6 +349,7 @@ LowLevel_profile_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-math LowLevel_profile_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevel_profile_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevel_profile_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevel_profile_cppflags += -Wno-c++11-extensions LowLevel_profile_cppflags += -O3 -fno-strict-aliasing LowLevel_profile_lflags := $(LowLevel_custom_lflags) LowLevel_profile_lflags += $(addprefix -L, $(LowLevel_profile_lpaths)) @@ -455,6 +461,7 @@ LowLevel_release_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-math - LowLevel_release_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevel_release_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevel_release_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevel_release_cflags += -Wno-c++11-extensions LowLevel_release_cflags += -O3 -fno-strict-aliasing LowLevel_release_cppflags := $(LowLevel_release_common_cflags) LowLevel_release_cppflags += -arch i386 @@ -462,6 +469,7 @@ LowLevel_release_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-math LowLevel_release_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevel_release_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevel_release_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevel_release_cppflags += -Wno-c++11-extensions LowLevel_release_cppflags += -O3 -fno-strict-aliasing LowLevel_release_lflags := $(LowLevel_custom_lflags) LowLevel_release_lflags += $(addprefix -L, $(LowLevel_release_lpaths)) diff --git a/PhysX_3.4/Source/compiler/make_osx32/Makefile.LowLevelAABB.mk b/PhysX_3.4/Source/compiler/make_osx32/Makefile.LowLevelAABB.mk index ce88ac55..476c19c5 100644 --- a/PhysX_3.4/Source/compiler/make_osx32/Makefile.LowLevelAABB.mk +++ b/PhysX_3.4/Source/compiler/make_osx32/Makefile.LowLevelAABB.mk @@ -71,6 +71,7 @@ LowLevelAABB_debug_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-math LowLevelAABB_debug_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevelAABB_debug_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevelAABB_debug_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevelAABB_debug_cflags += -Wno-c++11-extensions LowLevelAABB_debug_cflags += -g3 -gdwarf-2 -O0 LowLevelAABB_debug_cppflags := $(LowLevelAABB_debug_common_cflags) LowLevelAABB_debug_cppflags += -arch i386 @@ -78,6 +79,7 @@ LowLevelAABB_debug_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-ma LowLevelAABB_debug_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevelAABB_debug_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevelAABB_debug_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevelAABB_debug_cppflags += -Wno-c++11-extensions LowLevelAABB_debug_cppflags += -g3 -gdwarf-2 -O0 LowLevelAABB_debug_lflags := $(LowLevelAABB_custom_lflags) LowLevelAABB_debug_lflags += $(addprefix -L, $(LowLevelAABB_debug_lpaths)) @@ -176,6 +178,7 @@ LowLevelAABB_checked_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-ma LowLevelAABB_checked_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevelAABB_checked_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevelAABB_checked_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevelAABB_checked_cflags += -Wno-c++11-extensions LowLevelAABB_checked_cflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing LowLevelAABB_checked_cppflags := $(LowLevelAABB_checked_common_cflags) LowLevelAABB_checked_cppflags += -arch i386 @@ -183,6 +186,7 @@ LowLevelAABB_checked_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast- LowLevelAABB_checked_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevelAABB_checked_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevelAABB_checked_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevelAABB_checked_cppflags += -Wno-c++11-extensions LowLevelAABB_checked_cppflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing LowLevelAABB_checked_lflags := $(LowLevelAABB_custom_lflags) LowLevelAABB_checked_lflags += $(addprefix -L, $(LowLevelAABB_checked_lpaths)) @@ -281,6 +285,7 @@ LowLevelAABB_profile_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-ma LowLevelAABB_profile_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevelAABB_profile_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevelAABB_profile_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevelAABB_profile_cflags += -Wno-c++11-extensions LowLevelAABB_profile_cflags += -O3 -fno-strict-aliasing LowLevelAABB_profile_cppflags := $(LowLevelAABB_profile_common_cflags) LowLevelAABB_profile_cppflags += -arch i386 @@ -288,6 +293,7 @@ LowLevelAABB_profile_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast- LowLevelAABB_profile_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevelAABB_profile_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevelAABB_profile_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevelAABB_profile_cppflags += -Wno-c++11-extensions LowLevelAABB_profile_cppflags += -O3 -fno-strict-aliasing LowLevelAABB_profile_lflags := $(LowLevelAABB_custom_lflags) LowLevelAABB_profile_lflags += $(addprefix -L, $(LowLevelAABB_profile_lpaths)) @@ -385,6 +391,7 @@ LowLevelAABB_release_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-ma LowLevelAABB_release_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevelAABB_release_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevelAABB_release_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevelAABB_release_cflags += -Wno-c++11-extensions LowLevelAABB_release_cflags += -O3 -fno-strict-aliasing LowLevelAABB_release_cppflags := $(LowLevelAABB_release_common_cflags) LowLevelAABB_release_cppflags += -arch i386 @@ -392,6 +399,7 @@ LowLevelAABB_release_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast- LowLevelAABB_release_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevelAABB_release_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevelAABB_release_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevelAABB_release_cppflags += -Wno-c++11-extensions LowLevelAABB_release_cppflags += -O3 -fno-strict-aliasing LowLevelAABB_release_lflags := $(LowLevelAABB_custom_lflags) LowLevelAABB_release_lflags += $(addprefix -L, $(LowLevelAABB_release_lpaths)) diff --git a/PhysX_3.4/Source/compiler/make_osx32/Makefile.LowLevelCloth.mk b/PhysX_3.4/Source/compiler/make_osx32/Makefile.LowLevelCloth.mk index 7811e30d..bbce7342 100644 --- a/PhysX_3.4/Source/compiler/make_osx32/Makefile.LowLevelCloth.mk +++ b/PhysX_3.4/Source/compiler/make_osx32/Makefile.LowLevelCloth.mk @@ -67,6 +67,7 @@ LowLevelCloth_debug_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-mat LowLevelCloth_debug_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevelCloth_debug_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevelCloth_debug_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevelCloth_debug_cflags += -Wno-c++11-extensions LowLevelCloth_debug_cflags += -g3 -gdwarf-2 -O0 LowLevelCloth_debug_cppflags := $(LowLevelCloth_debug_common_cflags) LowLevelCloth_debug_cppflags += -arch i386 @@ -74,6 +75,7 @@ LowLevelCloth_debug_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-m LowLevelCloth_debug_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevelCloth_debug_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevelCloth_debug_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevelCloth_debug_cppflags += -Wno-c++11-extensions LowLevelCloth_debug_cppflags += -g3 -gdwarf-2 -O0 LowLevelCloth_debug_lflags := $(LowLevelCloth_custom_lflags) LowLevelCloth_debug_lflags += $(addprefix -L, $(LowLevelCloth_debug_lpaths)) @@ -162,6 +164,7 @@ LowLevelCloth_checked_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-m LowLevelCloth_checked_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevelCloth_checked_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevelCloth_checked_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevelCloth_checked_cflags += -Wno-c++11-extensions LowLevelCloth_checked_cflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing LowLevelCloth_checked_cppflags := $(LowLevelCloth_checked_common_cflags) LowLevelCloth_checked_cppflags += -arch i386 @@ -169,6 +172,7 @@ LowLevelCloth_checked_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast LowLevelCloth_checked_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevelCloth_checked_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevelCloth_checked_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevelCloth_checked_cppflags += -Wno-c++11-extensions LowLevelCloth_checked_cppflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing LowLevelCloth_checked_lflags := $(LowLevelCloth_custom_lflags) LowLevelCloth_checked_lflags += $(addprefix -L, $(LowLevelCloth_checked_lpaths)) @@ -257,6 +261,7 @@ LowLevelCloth_profile_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-m LowLevelCloth_profile_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevelCloth_profile_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevelCloth_profile_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevelCloth_profile_cflags += -Wno-c++11-extensions LowLevelCloth_profile_cflags += -O3 -fno-strict-aliasing LowLevelCloth_profile_cppflags := $(LowLevelCloth_profile_common_cflags) LowLevelCloth_profile_cppflags += -arch i386 @@ -264,6 +269,7 @@ LowLevelCloth_profile_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast LowLevelCloth_profile_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevelCloth_profile_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevelCloth_profile_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevelCloth_profile_cppflags += -Wno-c++11-extensions LowLevelCloth_profile_cppflags += -O3 -fno-strict-aliasing LowLevelCloth_profile_lflags := $(LowLevelCloth_custom_lflags) LowLevelCloth_profile_lflags += $(addprefix -L, $(LowLevelCloth_profile_lpaths)) @@ -351,6 +357,7 @@ LowLevelCloth_release_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-m LowLevelCloth_release_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevelCloth_release_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevelCloth_release_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevelCloth_release_cflags += -Wno-c++11-extensions LowLevelCloth_release_cflags += -O3 -fno-strict-aliasing LowLevelCloth_release_cppflags := $(LowLevelCloth_release_common_cflags) LowLevelCloth_release_cppflags += -arch i386 @@ -358,6 +365,7 @@ LowLevelCloth_release_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast LowLevelCloth_release_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevelCloth_release_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevelCloth_release_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevelCloth_release_cppflags += -Wno-c++11-extensions LowLevelCloth_release_cppflags += -O3 -fno-strict-aliasing LowLevelCloth_release_lflags := $(LowLevelCloth_custom_lflags) LowLevelCloth_release_lflags += $(addprefix -L, $(LowLevelCloth_release_lpaths)) diff --git a/PhysX_3.4/Source/compiler/make_osx32/Makefile.LowLevelDynamics.mk b/PhysX_3.4/Source/compiler/make_osx32/Makefile.LowLevelDynamics.mk index e7423769..2466c2c6 100644 --- a/PhysX_3.4/Source/compiler/make_osx32/Makefile.LowLevelDynamics.mk +++ b/PhysX_3.4/Source/compiler/make_osx32/Makefile.LowLevelDynamics.mk @@ -92,6 +92,7 @@ LowLevelDynamics_debug_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast- LowLevelDynamics_debug_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevelDynamics_debug_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevelDynamics_debug_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevelDynamics_debug_cflags += -Wno-c++11-extensions LowLevelDynamics_debug_cflags += -g3 -gdwarf-2 -O0 LowLevelDynamics_debug_cppflags := $(LowLevelDynamics_debug_common_cflags) LowLevelDynamics_debug_cppflags += -arch i386 @@ -99,6 +100,7 @@ LowLevelDynamics_debug_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffas LowLevelDynamics_debug_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevelDynamics_debug_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevelDynamics_debug_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevelDynamics_debug_cppflags += -Wno-c++11-extensions LowLevelDynamics_debug_cppflags += -g3 -gdwarf-2 -O0 LowLevelDynamics_debug_lflags := $(LowLevelDynamics_custom_lflags) LowLevelDynamics_debug_lflags += $(addprefix -L, $(LowLevelDynamics_debug_lpaths)) @@ -201,6 +203,7 @@ LowLevelDynamics_checked_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffas LowLevelDynamics_checked_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevelDynamics_checked_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevelDynamics_checked_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevelDynamics_checked_cflags += -Wno-c++11-extensions LowLevelDynamics_checked_cflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing LowLevelDynamics_checked_cppflags := $(LowLevelDynamics_checked_common_cflags) LowLevelDynamics_checked_cppflags += -arch i386 @@ -208,6 +211,7 @@ LowLevelDynamics_checked_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ff LowLevelDynamics_checked_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevelDynamics_checked_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevelDynamics_checked_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevelDynamics_checked_cppflags += -Wno-c++11-extensions LowLevelDynamics_checked_cppflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing LowLevelDynamics_checked_lflags := $(LowLevelDynamics_custom_lflags) LowLevelDynamics_checked_lflags += $(addprefix -L, $(LowLevelDynamics_checked_lpaths)) @@ -310,6 +314,7 @@ LowLevelDynamics_profile_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffas LowLevelDynamics_profile_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevelDynamics_profile_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevelDynamics_profile_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevelDynamics_profile_cflags += -Wno-c++11-extensions LowLevelDynamics_profile_cflags += -O3 -fno-strict-aliasing LowLevelDynamics_profile_cppflags := $(LowLevelDynamics_profile_common_cflags) LowLevelDynamics_profile_cppflags += -arch i386 @@ -317,6 +322,7 @@ LowLevelDynamics_profile_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ff LowLevelDynamics_profile_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevelDynamics_profile_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevelDynamics_profile_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevelDynamics_profile_cppflags += -Wno-c++11-extensions LowLevelDynamics_profile_cppflags += -O3 -fno-strict-aliasing LowLevelDynamics_profile_lflags := $(LowLevelDynamics_custom_lflags) LowLevelDynamics_profile_lflags += $(addprefix -L, $(LowLevelDynamics_profile_lpaths)) @@ -418,6 +424,7 @@ LowLevelDynamics_release_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffas LowLevelDynamics_release_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevelDynamics_release_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevelDynamics_release_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevelDynamics_release_cflags += -Wno-c++11-extensions LowLevelDynamics_release_cflags += -O3 -fno-strict-aliasing LowLevelDynamics_release_cppflags := $(LowLevelDynamics_release_common_cflags) LowLevelDynamics_release_cppflags += -arch i386 @@ -425,6 +432,7 @@ LowLevelDynamics_release_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ff LowLevelDynamics_release_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevelDynamics_release_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevelDynamics_release_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevelDynamics_release_cppflags += -Wno-c++11-extensions LowLevelDynamics_release_cppflags += -O3 -fno-strict-aliasing LowLevelDynamics_release_lflags := $(LowLevelDynamics_custom_lflags) LowLevelDynamics_release_lflags += $(addprefix -L, $(LowLevelDynamics_release_lpaths)) diff --git a/PhysX_3.4/Source/compiler/make_osx32/Makefile.LowLevelParticles.mk b/PhysX_3.4/Source/compiler/make_osx32/Makefile.LowLevelParticles.mk index 0f066634..c183fbb2 100644 --- a/PhysX_3.4/Source/compiler/make_osx32/Makefile.LowLevelParticles.mk +++ b/PhysX_3.4/Source/compiler/make_osx32/Makefile.LowLevelParticles.mk @@ -78,6 +78,7 @@ LowLevelParticles_debug_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast LowLevelParticles_debug_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevelParticles_debug_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevelParticles_debug_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevelParticles_debug_cflags += -Wno-c++11-extensions LowLevelParticles_debug_cflags += -g3 -gdwarf-2 -O0 LowLevelParticles_debug_cppflags := $(LowLevelParticles_debug_common_cflags) LowLevelParticles_debug_cppflags += -arch i386 @@ -85,6 +86,7 @@ LowLevelParticles_debug_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffa LowLevelParticles_debug_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevelParticles_debug_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevelParticles_debug_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevelParticles_debug_cppflags += -Wno-c++11-extensions LowLevelParticles_debug_cppflags += -g3 -gdwarf-2 -O0 LowLevelParticles_debug_lflags := $(LowLevelParticles_custom_lflags) LowLevelParticles_debug_lflags += $(addprefix -L, $(LowLevelParticles_debug_lpaths)) @@ -181,6 +183,7 @@ LowLevelParticles_checked_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffa LowLevelParticles_checked_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevelParticles_checked_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevelParticles_checked_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevelParticles_checked_cflags += -Wno-c++11-extensions LowLevelParticles_checked_cflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing LowLevelParticles_checked_cppflags := $(LowLevelParticles_checked_common_cflags) LowLevelParticles_checked_cppflags += -arch i386 @@ -188,6 +191,7 @@ LowLevelParticles_checked_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -f LowLevelParticles_checked_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevelParticles_checked_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevelParticles_checked_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevelParticles_checked_cppflags += -Wno-c++11-extensions LowLevelParticles_checked_cppflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing LowLevelParticles_checked_lflags := $(LowLevelParticles_custom_lflags) LowLevelParticles_checked_lflags += $(addprefix -L, $(LowLevelParticles_checked_lpaths)) @@ -284,6 +288,7 @@ LowLevelParticles_profile_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffa LowLevelParticles_profile_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevelParticles_profile_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevelParticles_profile_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevelParticles_profile_cflags += -Wno-c++11-extensions LowLevelParticles_profile_cflags += -O3 -fno-strict-aliasing LowLevelParticles_profile_cppflags := $(LowLevelParticles_profile_common_cflags) LowLevelParticles_profile_cppflags += -arch i386 @@ -291,6 +296,7 @@ LowLevelParticles_profile_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -f LowLevelParticles_profile_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevelParticles_profile_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevelParticles_profile_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevelParticles_profile_cppflags += -Wno-c++11-extensions LowLevelParticles_profile_cppflags += -O3 -fno-strict-aliasing LowLevelParticles_profile_lflags := $(LowLevelParticles_custom_lflags) LowLevelParticles_profile_lflags += $(addprefix -L, $(LowLevelParticles_profile_lpaths)) @@ -386,6 +392,7 @@ LowLevelParticles_release_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffa LowLevelParticles_release_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevelParticles_release_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevelParticles_release_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevelParticles_release_cflags += -Wno-c++11-extensions LowLevelParticles_release_cflags += -O3 -fno-strict-aliasing LowLevelParticles_release_cppflags := $(LowLevelParticles_release_common_cflags) LowLevelParticles_release_cppflags += -arch i386 @@ -393,6 +400,7 @@ LowLevelParticles_release_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -f LowLevelParticles_release_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevelParticles_release_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevelParticles_release_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevelParticles_release_cppflags += -Wno-c++11-extensions LowLevelParticles_release_cppflags += -O3 -fno-strict-aliasing LowLevelParticles_release_lflags := $(LowLevelParticles_custom_lflags) LowLevelParticles_release_lflags += $(addprefix -L, $(LowLevelParticles_release_lpaths)) diff --git a/PhysX_3.4/Source/compiler/make_osx32/Makefile.PhysX.mk b/PhysX_3.4/Source/compiler/make_osx32/Makefile.PhysX.mk index 2b6e3329..0cb6d175 100644 --- a/PhysX_3.4/Source/compiler/make_osx32/Makefile.PhysX.mk +++ b/PhysX_3.4/Source/compiler/make_osx32/Makefile.PhysX.mk @@ -141,6 +141,7 @@ PhysX_release_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-math -fno PhysX_release_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysX_release_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysX_release_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysX_release_cflags += -Wno-c++11-extensions PhysX_release_cflags += -O3 -fno-strict-aliasing PhysX_release_cppflags := $(PhysX_release_common_cflags) PhysX_release_cppflags += -arch i386 @@ -148,6 +149,7 @@ PhysX_release_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-math -f PhysX_release_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysX_release_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysX_release_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysX_release_cppflags += -Wno-c++11-extensions PhysX_release_cppflags += -O3 -fno-strict-aliasing PhysX_release_lflags := $(PhysX_custom_lflags) PhysX_release_lflags += $(addprefix -L, $(PhysX_release_lpaths)) @@ -284,6 +286,7 @@ PhysX_debug_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-math -fno-e PhysX_debug_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysX_debug_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysX_debug_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysX_debug_cflags += -Wno-c++11-extensions PhysX_debug_cflags += -g3 -gdwarf-2 -O0 PhysX_debug_cppflags := $(PhysX_debug_common_cflags) PhysX_debug_cppflags += -arch i386 @@ -291,6 +294,7 @@ PhysX_debug_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-math -fno PhysX_debug_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysX_debug_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysX_debug_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysX_debug_cppflags += -Wno-c++11-extensions PhysX_debug_cppflags += -g3 -gdwarf-2 -O0 PhysX_debug_lflags := $(PhysX_custom_lflags) PhysX_debug_lflags += $(addprefix -L, $(PhysX_debug_lpaths)) @@ -426,6 +430,7 @@ PhysX_checked_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-math -fno PhysX_checked_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysX_checked_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysX_checked_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysX_checked_cflags += -Wno-c++11-extensions PhysX_checked_cflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing PhysX_checked_cppflags := $(PhysX_checked_common_cflags) PhysX_checked_cppflags += -arch i386 @@ -433,6 +438,7 @@ PhysX_checked_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-math -f PhysX_checked_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysX_checked_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysX_checked_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysX_checked_cppflags += -Wno-c++11-extensions PhysX_checked_cppflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing PhysX_checked_lflags := $(PhysX_custom_lflags) PhysX_checked_lflags += $(addprefix -L, $(PhysX_checked_lpaths)) @@ -568,6 +574,7 @@ PhysX_profile_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-math -fno PhysX_profile_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysX_profile_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysX_profile_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysX_profile_cflags += -Wno-c++11-extensions PhysX_profile_cflags += -O3 -fno-strict-aliasing PhysX_profile_cppflags := $(PhysX_profile_common_cflags) PhysX_profile_cppflags += -arch i386 @@ -575,6 +582,7 @@ PhysX_profile_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-math -f PhysX_profile_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysX_profile_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysX_profile_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysX_profile_cppflags += -Wno-c++11-extensions PhysX_profile_cppflags += -O3 -fno-strict-aliasing PhysX_profile_lflags := $(PhysX_custom_lflags) PhysX_profile_lflags += $(addprefix -L, $(PhysX_profile_lpaths)) diff --git a/PhysX_3.4/Source/compiler/make_osx32/Makefile.PhysXCharacterKinematic.mk b/PhysX_3.4/Source/compiler/make_osx32/Makefile.PhysXCharacterKinematic.mk index 756e10f0..0aecc519 100644 --- a/PhysX_3.4/Source/compiler/make_osx32/Makefile.PhysXCharacterKinematic.mk +++ b/PhysX_3.4/Source/compiler/make_osx32/Makefile.PhysXCharacterKinematic.mk @@ -79,6 +79,7 @@ PhysXCharacterKinematic_debug_cflags += -pipe -mmacosx-version-min=10.7 -msse2 PhysXCharacterKinematic_debug_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXCharacterKinematic_debug_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXCharacterKinematic_debug_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXCharacterKinematic_debug_cflags += -Wno-c++11-extensions PhysXCharacterKinematic_debug_cflags += -g3 -gdwarf-2 -O0 PhysXCharacterKinematic_debug_cppflags := $(PhysXCharacterKinematic_debug_common_cflags) PhysXCharacterKinematic_debug_cppflags += -arch i386 @@ -86,6 +87,7 @@ PhysXCharacterKinematic_debug_cppflags += -pipe -mmacosx-version-min=10.7 -msse PhysXCharacterKinematic_debug_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXCharacterKinematic_debug_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXCharacterKinematic_debug_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXCharacterKinematic_debug_cppflags += -Wno-c++11-extensions PhysXCharacterKinematic_debug_cppflags += -g3 -gdwarf-2 -O0 PhysXCharacterKinematic_debug_lflags := $(PhysXCharacterKinematic_custom_lflags) PhysXCharacterKinematic_debug_lflags += $(addprefix -L, $(PhysXCharacterKinematic_debug_lpaths)) @@ -189,6 +191,7 @@ PhysXCharacterKinematic_checked_cflags += -pipe -mmacosx-version-min=10.7 -msse PhysXCharacterKinematic_checked_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXCharacterKinematic_checked_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXCharacterKinematic_checked_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXCharacterKinematic_checked_cflags += -Wno-c++11-extensions PhysXCharacterKinematic_checked_cflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing PhysXCharacterKinematic_checked_cppflags := $(PhysXCharacterKinematic_checked_common_cflags) PhysXCharacterKinematic_checked_cppflags += -arch i386 @@ -196,6 +199,7 @@ PhysXCharacterKinematic_checked_cppflags += -pipe -mmacosx-version-min=10.7 -ms PhysXCharacterKinematic_checked_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXCharacterKinematic_checked_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXCharacterKinematic_checked_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXCharacterKinematic_checked_cppflags += -Wno-c++11-extensions PhysXCharacterKinematic_checked_cppflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing PhysXCharacterKinematic_checked_lflags := $(PhysXCharacterKinematic_custom_lflags) PhysXCharacterKinematic_checked_lflags += $(addprefix -L, $(PhysXCharacterKinematic_checked_lpaths)) @@ -299,6 +303,7 @@ PhysXCharacterKinematic_profile_cflags += -pipe -mmacosx-version-min=10.7 -msse PhysXCharacterKinematic_profile_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXCharacterKinematic_profile_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXCharacterKinematic_profile_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXCharacterKinematic_profile_cflags += -Wno-c++11-extensions PhysXCharacterKinematic_profile_cflags += -O3 -fno-strict-aliasing PhysXCharacterKinematic_profile_cppflags := $(PhysXCharacterKinematic_profile_common_cflags) PhysXCharacterKinematic_profile_cppflags += -arch i386 @@ -306,6 +311,7 @@ PhysXCharacterKinematic_profile_cppflags += -pipe -mmacosx-version-min=10.7 -ms PhysXCharacterKinematic_profile_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXCharacterKinematic_profile_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXCharacterKinematic_profile_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXCharacterKinematic_profile_cppflags += -Wno-c++11-extensions PhysXCharacterKinematic_profile_cppflags += -O3 -fno-strict-aliasing PhysXCharacterKinematic_profile_lflags := $(PhysXCharacterKinematic_custom_lflags) PhysXCharacterKinematic_profile_lflags += $(addprefix -L, $(PhysXCharacterKinematic_profile_lpaths)) @@ -408,6 +414,7 @@ PhysXCharacterKinematic_release_cflags += -pipe -mmacosx-version-min=10.7 -msse PhysXCharacterKinematic_release_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXCharacterKinematic_release_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXCharacterKinematic_release_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXCharacterKinematic_release_cflags += -Wno-c++11-extensions PhysXCharacterKinematic_release_cflags += -O3 -fno-strict-aliasing PhysXCharacterKinematic_release_cppflags := $(PhysXCharacterKinematic_release_common_cflags) PhysXCharacterKinematic_release_cppflags += -arch i386 @@ -415,6 +422,7 @@ PhysXCharacterKinematic_release_cppflags += -pipe -mmacosx-version-min=10.7 -ms PhysXCharacterKinematic_release_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXCharacterKinematic_release_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXCharacterKinematic_release_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXCharacterKinematic_release_cppflags += -Wno-c++11-extensions PhysXCharacterKinematic_release_cppflags += -O3 -fno-strict-aliasing PhysXCharacterKinematic_release_lflags := $(PhysXCharacterKinematic_custom_lflags) PhysXCharacterKinematic_release_lflags += $(addprefix -L, $(PhysXCharacterKinematic_release_lpaths)) diff --git a/PhysX_3.4/Source/compiler/make_osx32/Makefile.PhysXCommon.mk b/PhysX_3.4/Source/compiler/make_osx32/Makefile.PhysXCommon.mk index 36e0876c..2e92992a 100644 --- a/PhysX_3.4/Source/compiler/make_osx32/Makefile.PhysXCommon.mk +++ b/PhysX_3.4/Source/compiler/make_osx32/Makefile.PhysXCommon.mk @@ -205,6 +205,7 @@ PhysXCommon_release_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-mat PhysXCommon_release_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXCommon_release_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXCommon_release_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXCommon_release_cflags += -Wno-c++11-extensions PhysXCommon_release_cflags += -O3 -fno-strict-aliasing PhysXCommon_release_cppflags := $(PhysXCommon_release_common_cflags) PhysXCommon_release_cppflags += -arch i386 @@ -212,6 +213,7 @@ PhysXCommon_release_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-m PhysXCommon_release_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXCommon_release_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXCommon_release_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXCommon_release_cppflags += -Wno-c++11-extensions PhysXCommon_release_cppflags += -O3 -fno-strict-aliasing PhysXCommon_release_lflags := $(PhysXCommon_custom_lflags) PhysXCommon_release_lflags += $(addprefix -L, $(PhysXCommon_release_lpaths)) @@ -319,6 +321,7 @@ PhysXCommon_debug_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-math PhysXCommon_debug_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXCommon_debug_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXCommon_debug_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXCommon_debug_cflags += -Wno-c++11-extensions PhysXCommon_debug_cflags += -g3 -gdwarf-2 -O0 PhysXCommon_debug_cppflags := $(PhysXCommon_debug_common_cflags) PhysXCommon_debug_cppflags += -arch i386 @@ -326,6 +329,7 @@ PhysXCommon_debug_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-mat PhysXCommon_debug_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXCommon_debug_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXCommon_debug_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXCommon_debug_cppflags += -Wno-c++11-extensions PhysXCommon_debug_cppflags += -g3 -gdwarf-2 -O0 PhysXCommon_debug_lflags := $(PhysXCommon_custom_lflags) PhysXCommon_debug_lflags += $(addprefix -L, $(PhysXCommon_debug_lpaths)) @@ -432,6 +436,7 @@ PhysXCommon_checked_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-mat PhysXCommon_checked_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXCommon_checked_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXCommon_checked_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXCommon_checked_cflags += -Wno-c++11-extensions PhysXCommon_checked_cflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing PhysXCommon_checked_cppflags := $(PhysXCommon_checked_common_cflags) PhysXCommon_checked_cppflags += -arch i386 @@ -439,6 +444,7 @@ PhysXCommon_checked_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-m PhysXCommon_checked_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXCommon_checked_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXCommon_checked_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXCommon_checked_cppflags += -Wno-c++11-extensions PhysXCommon_checked_cppflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing PhysXCommon_checked_lflags := $(PhysXCommon_custom_lflags) PhysXCommon_checked_lflags += $(addprefix -L, $(PhysXCommon_checked_lpaths)) @@ -545,6 +551,7 @@ PhysXCommon_profile_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-mat PhysXCommon_profile_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXCommon_profile_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXCommon_profile_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXCommon_profile_cflags += -Wno-c++11-extensions PhysXCommon_profile_cflags += -O3 -fno-strict-aliasing PhysXCommon_profile_cppflags := $(PhysXCommon_profile_common_cflags) PhysXCommon_profile_cppflags += -arch i386 @@ -552,6 +559,7 @@ PhysXCommon_profile_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-m PhysXCommon_profile_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXCommon_profile_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXCommon_profile_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXCommon_profile_cppflags += -Wno-c++11-extensions PhysXCommon_profile_cppflags += -O3 -fno-strict-aliasing PhysXCommon_profile_lflags := $(PhysXCommon_custom_lflags) PhysXCommon_profile_lflags += $(addprefix -L, $(PhysXCommon_profile_lpaths)) diff --git a/PhysX_3.4/Source/compiler/make_osx32/Makefile.PhysXCooking.mk b/PhysX_3.4/Source/compiler/make_osx32/Makefile.PhysXCooking.mk index 4bb0c4b9..d65731ca 100644 --- a/PhysX_3.4/Source/compiler/make_osx32/Makefile.PhysXCooking.mk +++ b/PhysX_3.4/Source/compiler/make_osx32/Makefile.PhysXCooking.mk @@ -96,6 +96,7 @@ PhysXCooking_release_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-ma PhysXCooking_release_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXCooking_release_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXCooking_release_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXCooking_release_cflags += -Wno-c++11-extensions PhysXCooking_release_cflags += -O3 -fno-strict-aliasing PhysXCooking_release_cppflags := $(PhysXCooking_release_common_cflags) PhysXCooking_release_cppflags += -arch i386 @@ -103,6 +104,7 @@ PhysXCooking_release_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast- PhysXCooking_release_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXCooking_release_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXCooking_release_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXCooking_release_cppflags += -Wno-c++11-extensions PhysXCooking_release_cppflags += -O3 -fno-strict-aliasing PhysXCooking_release_lflags := $(PhysXCooking_custom_lflags) PhysXCooking_release_lflags += $(addprefix -L, $(PhysXCooking_release_lpaths)) @@ -217,6 +219,7 @@ PhysXCooking_debug_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-math PhysXCooking_debug_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXCooking_debug_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXCooking_debug_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXCooking_debug_cflags += -Wno-c++11-extensions PhysXCooking_debug_cflags += -g3 -gdwarf-2 -O0 PhysXCooking_debug_cppflags := $(PhysXCooking_debug_common_cflags) PhysXCooking_debug_cppflags += -arch i386 @@ -224,6 +227,7 @@ PhysXCooking_debug_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-ma PhysXCooking_debug_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXCooking_debug_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXCooking_debug_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXCooking_debug_cppflags += -Wno-c++11-extensions PhysXCooking_debug_cppflags += -g3 -gdwarf-2 -O0 PhysXCooking_debug_lflags := $(PhysXCooking_custom_lflags) PhysXCooking_debug_lflags += $(addprefix -L, $(PhysXCooking_debug_lpaths)) @@ -337,6 +341,7 @@ PhysXCooking_checked_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-ma PhysXCooking_checked_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXCooking_checked_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXCooking_checked_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXCooking_checked_cflags += -Wno-c++11-extensions PhysXCooking_checked_cflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing PhysXCooking_checked_cppflags := $(PhysXCooking_checked_common_cflags) PhysXCooking_checked_cppflags += -arch i386 @@ -344,6 +349,7 @@ PhysXCooking_checked_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast- PhysXCooking_checked_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXCooking_checked_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXCooking_checked_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXCooking_checked_cppflags += -Wno-c++11-extensions PhysXCooking_checked_cppflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing PhysXCooking_checked_lflags := $(PhysXCooking_custom_lflags) PhysXCooking_checked_lflags += $(addprefix -L, $(PhysXCooking_checked_lpaths)) @@ -457,6 +463,7 @@ PhysXCooking_profile_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-ma PhysXCooking_profile_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXCooking_profile_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXCooking_profile_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXCooking_profile_cflags += -Wno-c++11-extensions PhysXCooking_profile_cflags += -O3 -fno-strict-aliasing PhysXCooking_profile_cppflags := $(PhysXCooking_profile_common_cflags) PhysXCooking_profile_cppflags += -arch i386 @@ -464,6 +471,7 @@ PhysXCooking_profile_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast- PhysXCooking_profile_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXCooking_profile_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXCooking_profile_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXCooking_profile_cppflags += -Wno-c++11-extensions PhysXCooking_profile_cppflags += -O3 -fno-strict-aliasing PhysXCooking_profile_lflags := $(PhysXCooking_custom_lflags) PhysXCooking_profile_lflags += $(addprefix -L, $(PhysXCooking_profile_lpaths)) 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 2d07a6e8..622a0a5f 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=21749494 +PhysXExtensions_debug_defines += PX_BUILD_NUMBER=22017532 PhysXExtensions_debug_defines += PX_PHYSX_STATIC_LIB PhysXExtensions_debug_defines += _DEBUG PhysXExtensions_debug_defines += PX_DEBUG=1 @@ -134,6 +134,7 @@ PhysXExtensions_debug_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-m PhysXExtensions_debug_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXExtensions_debug_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXExtensions_debug_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXExtensions_debug_cflags += -Wno-c++11-extensions PhysXExtensions_debug_cflags += -g3 -gdwarf-2 -O0 PhysXExtensions_debug_cppflags := $(PhysXExtensions_debug_common_cflags) PhysXExtensions_debug_cppflags += -arch i386 @@ -141,6 +142,7 @@ PhysXExtensions_debug_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast PhysXExtensions_debug_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXExtensions_debug_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXExtensions_debug_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXExtensions_debug_cppflags += -Wno-c++11-extensions PhysXExtensions_debug_cppflags += -g3 -gdwarf-2 -O0 PhysXExtensions_debug_lflags := $(PhysXExtensions_custom_lflags) PhysXExtensions_debug_lflags += $(addprefix -L, $(PhysXExtensions_debug_lpaths)) @@ -238,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=21749494 +PhysXExtensions_checked_defines += PX_BUILD_NUMBER=22017532 PhysXExtensions_checked_defines += PX_PHYSX_STATIC_LIB PhysXExtensions_checked_defines += NDEBUG PhysXExtensions_checked_defines += PX_CHECKED=1 @@ -255,6 +257,7 @@ PhysXExtensions_checked_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast PhysXExtensions_checked_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXExtensions_checked_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXExtensions_checked_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXExtensions_checked_cflags += -Wno-c++11-extensions PhysXExtensions_checked_cflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing PhysXExtensions_checked_cppflags := $(PhysXExtensions_checked_common_cflags) PhysXExtensions_checked_cppflags += -arch i386 @@ -262,6 +265,7 @@ PhysXExtensions_checked_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffa PhysXExtensions_checked_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXExtensions_checked_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXExtensions_checked_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXExtensions_checked_cppflags += -Wno-c++11-extensions PhysXExtensions_checked_cppflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing PhysXExtensions_checked_lflags := $(PhysXExtensions_custom_lflags) PhysXExtensions_checked_lflags += $(addprefix -L, $(PhysXExtensions_checked_lpaths)) @@ -359,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=21749494 +PhysXExtensions_profile_defines += PX_BUILD_NUMBER=22017532 PhysXExtensions_profile_defines += PX_PHYSX_STATIC_LIB PhysXExtensions_profile_defines += NDEBUG PhysXExtensions_profile_defines += PX_PROFILE=1 @@ -376,6 +380,7 @@ PhysXExtensions_profile_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast PhysXExtensions_profile_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXExtensions_profile_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXExtensions_profile_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXExtensions_profile_cflags += -Wno-c++11-extensions PhysXExtensions_profile_cflags += -O3 -fno-strict-aliasing PhysXExtensions_profile_cppflags := $(PhysXExtensions_profile_common_cflags) PhysXExtensions_profile_cppflags += -arch i386 @@ -383,6 +388,7 @@ PhysXExtensions_profile_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffa PhysXExtensions_profile_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXExtensions_profile_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXExtensions_profile_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXExtensions_profile_cppflags += -Wno-c++11-extensions PhysXExtensions_profile_cppflags += -O3 -fno-strict-aliasing PhysXExtensions_profile_lflags := $(PhysXExtensions_custom_lflags) PhysXExtensions_profile_lflags += $(addprefix -L, $(PhysXExtensions_profile_lpaths)) @@ -480,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=21749494 +PhysXExtensions_release_defines += PX_BUILD_NUMBER=22017532 PhysXExtensions_release_defines += PX_PHYSX_STATIC_LIB PhysXExtensions_release_defines += NDEBUG PhysXExtensions_release_defines += PX_SUPPORT_PVD=0 @@ -496,6 +502,7 @@ PhysXExtensions_release_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast PhysXExtensions_release_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXExtensions_release_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXExtensions_release_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXExtensions_release_cflags += -Wno-c++11-extensions PhysXExtensions_release_cflags += -O3 -fno-strict-aliasing PhysXExtensions_release_cppflags := $(PhysXExtensions_release_common_cflags) PhysXExtensions_release_cppflags += -arch i386 @@ -503,6 +510,7 @@ PhysXExtensions_release_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffa PhysXExtensions_release_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXExtensions_release_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXExtensions_release_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXExtensions_release_cppflags += -Wno-c++11-extensions PhysXExtensions_release_cppflags += -O3 -fno-strict-aliasing PhysXExtensions_release_lflags := $(PhysXExtensions_custom_lflags) PhysXExtensions_release_lflags += $(addprefix -L, $(PhysXExtensions_release_lpaths)) diff --git a/PhysX_3.4/Source/compiler/make_osx32/Makefile.PhysXVehicle.mk b/PhysX_3.4/Source/compiler/make_osx32/Makefile.PhysXVehicle.mk index d99272f3..9e0fcdad 100644 --- a/PhysX_3.4/Source/compiler/make_osx32/Makefile.PhysXVehicle.mk +++ b/PhysX_3.4/Source/compiler/make_osx32/Makefile.PhysXVehicle.mk @@ -81,6 +81,7 @@ PhysXVehicle_debug_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-math PhysXVehicle_debug_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXVehicle_debug_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXVehicle_debug_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXVehicle_debug_cflags += -Wno-c++11-extensions PhysXVehicle_debug_cflags += -g3 -gdwarf-2 -O0 PhysXVehicle_debug_cppflags := $(PhysXVehicle_debug_common_cflags) PhysXVehicle_debug_cppflags += -arch i386 @@ -88,6 +89,7 @@ PhysXVehicle_debug_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-ma PhysXVehicle_debug_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXVehicle_debug_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXVehicle_debug_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXVehicle_debug_cppflags += -Wno-c++11-extensions PhysXVehicle_debug_cppflags += -g3 -gdwarf-2 -O0 PhysXVehicle_debug_lflags := $(PhysXVehicle_custom_lflags) PhysXVehicle_debug_lflags += $(addprefix -L, $(PhysXVehicle_debug_lpaths)) @@ -185,6 +187,7 @@ PhysXVehicle_checked_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-ma PhysXVehicle_checked_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXVehicle_checked_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXVehicle_checked_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXVehicle_checked_cflags += -Wno-c++11-extensions PhysXVehicle_checked_cflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing PhysXVehicle_checked_cppflags := $(PhysXVehicle_checked_common_cflags) PhysXVehicle_checked_cppflags += -arch i386 @@ -192,6 +195,7 @@ PhysXVehicle_checked_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast- PhysXVehicle_checked_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXVehicle_checked_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXVehicle_checked_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXVehicle_checked_cppflags += -Wno-c++11-extensions PhysXVehicle_checked_cppflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing PhysXVehicle_checked_lflags := $(PhysXVehicle_custom_lflags) PhysXVehicle_checked_lflags += $(addprefix -L, $(PhysXVehicle_checked_lpaths)) @@ -289,6 +293,7 @@ PhysXVehicle_profile_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-ma PhysXVehicle_profile_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXVehicle_profile_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXVehicle_profile_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXVehicle_profile_cflags += -Wno-c++11-extensions PhysXVehicle_profile_cflags += -O3 -fno-strict-aliasing PhysXVehicle_profile_cppflags := $(PhysXVehicle_profile_common_cflags) PhysXVehicle_profile_cppflags += -arch i386 @@ -296,6 +301,7 @@ PhysXVehicle_profile_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast- PhysXVehicle_profile_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXVehicle_profile_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXVehicle_profile_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXVehicle_profile_cppflags += -Wno-c++11-extensions PhysXVehicle_profile_cppflags += -O3 -fno-strict-aliasing PhysXVehicle_profile_lflags := $(PhysXVehicle_custom_lflags) PhysXVehicle_profile_lflags += $(addprefix -L, $(PhysXVehicle_profile_lpaths)) @@ -392,6 +398,7 @@ PhysXVehicle_release_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-ma PhysXVehicle_release_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXVehicle_release_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXVehicle_release_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXVehicle_release_cflags += -Wno-c++11-extensions PhysXVehicle_release_cflags += -O3 -fno-strict-aliasing PhysXVehicle_release_cppflags := $(PhysXVehicle_release_common_cflags) PhysXVehicle_release_cppflags += -arch i386 @@ -399,6 +406,7 @@ PhysXVehicle_release_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast- PhysXVehicle_release_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXVehicle_release_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXVehicle_release_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXVehicle_release_cppflags += -Wno-c++11-extensions PhysXVehicle_release_cppflags += -O3 -fno-strict-aliasing PhysXVehicle_release_lflags := $(PhysXVehicle_custom_lflags) PhysXVehicle_release_lflags += $(addprefix -L, $(PhysXVehicle_release_lpaths)) diff --git a/PhysX_3.4/Source/compiler/make_osx32/Makefile.SceneQuery.mk b/PhysX_3.4/Source/compiler/make_osx32/Makefile.SceneQuery.mk index 09fc9320..8920a98c 100644 --- a/PhysX_3.4/Source/compiler/make_osx32/Makefile.SceneQuery.mk +++ b/PhysX_3.4/Source/compiler/make_osx32/Makefile.SceneQuery.mk @@ -83,6 +83,7 @@ SceneQuery_debug_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-math - SceneQuery_debug_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables SceneQuery_debug_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow SceneQuery_debug_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +SceneQuery_debug_cflags += -Wno-c++11-extensions SceneQuery_debug_cflags += -g3 -gdwarf-2 -O0 SceneQuery_debug_cppflags := $(SceneQuery_debug_common_cflags) SceneQuery_debug_cppflags += -arch i386 @@ -90,6 +91,7 @@ SceneQuery_debug_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-math SceneQuery_debug_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables SceneQuery_debug_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow SceneQuery_debug_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +SceneQuery_debug_cppflags += -Wno-c++11-extensions SceneQuery_debug_cppflags += -g3 -gdwarf-2 -O0 SceneQuery_debug_lflags := $(SceneQuery_custom_lflags) SceneQuery_debug_lflags += $(addprefix -L, $(SceneQuery_debug_lpaths)) @@ -197,6 +199,7 @@ SceneQuery_checked_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-math SceneQuery_checked_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables SceneQuery_checked_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow SceneQuery_checked_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +SceneQuery_checked_cflags += -Wno-c++11-extensions SceneQuery_checked_cflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing SceneQuery_checked_cppflags := $(SceneQuery_checked_common_cflags) SceneQuery_checked_cppflags += -arch i386 @@ -204,6 +207,7 @@ SceneQuery_checked_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-ma SceneQuery_checked_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables SceneQuery_checked_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow SceneQuery_checked_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +SceneQuery_checked_cppflags += -Wno-c++11-extensions SceneQuery_checked_cppflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing SceneQuery_checked_lflags := $(SceneQuery_custom_lflags) SceneQuery_checked_lflags += $(addprefix -L, $(SceneQuery_checked_lpaths)) @@ -311,6 +315,7 @@ SceneQuery_profile_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-math SceneQuery_profile_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables SceneQuery_profile_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow SceneQuery_profile_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +SceneQuery_profile_cflags += -Wno-c++11-extensions SceneQuery_profile_cflags += -O3 -fno-strict-aliasing SceneQuery_profile_cppflags := $(SceneQuery_profile_common_cflags) SceneQuery_profile_cppflags += -arch i386 @@ -318,6 +323,7 @@ SceneQuery_profile_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-ma SceneQuery_profile_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables SceneQuery_profile_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow SceneQuery_profile_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +SceneQuery_profile_cppflags += -Wno-c++11-extensions SceneQuery_profile_cppflags += -O3 -fno-strict-aliasing SceneQuery_profile_lflags := $(SceneQuery_custom_lflags) SceneQuery_profile_lflags += $(addprefix -L, $(SceneQuery_profile_lpaths)) @@ -424,6 +430,7 @@ SceneQuery_release_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-math SceneQuery_release_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables SceneQuery_release_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow SceneQuery_release_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +SceneQuery_release_cflags += -Wno-c++11-extensions SceneQuery_release_cflags += -O3 -fno-strict-aliasing SceneQuery_release_cppflags := $(SceneQuery_release_common_cflags) SceneQuery_release_cppflags += -arch i386 @@ -431,6 +438,7 @@ SceneQuery_release_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-ma SceneQuery_release_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables SceneQuery_release_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow SceneQuery_release_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +SceneQuery_release_cppflags += -Wno-c++11-extensions SceneQuery_release_cppflags += -O3 -fno-strict-aliasing SceneQuery_release_lflags := $(SceneQuery_custom_lflags) SceneQuery_release_lflags += $(addprefix -L, $(SceneQuery_release_lpaths)) diff --git a/PhysX_3.4/Source/compiler/make_osx32/Makefile.SimulationController.mk b/PhysX_3.4/Source/compiler/make_osx32/Makefile.SimulationController.mk index ac647bd0..31655e2e 100644 --- a/PhysX_3.4/Source/compiler/make_osx32/Makefile.SimulationController.mk +++ b/PhysX_3.4/Source/compiler/make_osx32/Makefile.SimulationController.mk @@ -128,6 +128,7 @@ SimulationController_debug_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ff SimulationController_debug_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables SimulationController_debug_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow SimulationController_debug_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +SimulationController_debug_cflags += -Wno-c++11-extensions SimulationController_debug_cflags += -g3 -gdwarf-2 -O0 SimulationController_debug_cppflags := $(SimulationController_debug_common_cflags) SimulationController_debug_cppflags += -arch i386 @@ -135,6 +136,7 @@ SimulationController_debug_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 - SimulationController_debug_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables SimulationController_debug_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow SimulationController_debug_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +SimulationController_debug_cppflags += -Wno-c++11-extensions SimulationController_debug_cppflags += -g3 -gdwarf-2 -O0 SimulationController_debug_lflags := $(SimulationController_custom_lflags) SimulationController_debug_lflags += $(addprefix -L, $(SimulationController_debug_lpaths)) @@ -254,6 +256,7 @@ SimulationController_checked_cflags += -pipe -mmacosx-version-min=10.7 -msse2 - SimulationController_checked_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables SimulationController_checked_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow SimulationController_checked_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +SimulationController_checked_cflags += -Wno-c++11-extensions SimulationController_checked_cflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing SimulationController_checked_cppflags := $(SimulationController_checked_common_cflags) SimulationController_checked_cppflags += -arch i386 @@ -261,6 +264,7 @@ SimulationController_checked_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 SimulationController_checked_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables SimulationController_checked_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow SimulationController_checked_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +SimulationController_checked_cppflags += -Wno-c++11-extensions SimulationController_checked_cppflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing SimulationController_checked_lflags := $(SimulationController_custom_lflags) SimulationController_checked_lflags += $(addprefix -L, $(SimulationController_checked_lpaths)) @@ -380,6 +384,7 @@ SimulationController_profile_cflags += -pipe -mmacosx-version-min=10.7 -msse2 - SimulationController_profile_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables SimulationController_profile_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow SimulationController_profile_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +SimulationController_profile_cflags += -Wno-c++11-extensions SimulationController_profile_cflags += -O3 -fno-strict-aliasing SimulationController_profile_cppflags := $(SimulationController_profile_common_cflags) SimulationController_profile_cppflags += -arch i386 @@ -387,6 +392,7 @@ SimulationController_profile_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 SimulationController_profile_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables SimulationController_profile_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow SimulationController_profile_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +SimulationController_profile_cppflags += -Wno-c++11-extensions SimulationController_profile_cppflags += -O3 -fno-strict-aliasing SimulationController_profile_lflags := $(SimulationController_custom_lflags) SimulationController_profile_lflags += $(addprefix -L, $(SimulationController_profile_lpaths)) @@ -505,6 +511,7 @@ SimulationController_release_cflags += -pipe -mmacosx-version-min=10.7 -msse2 - SimulationController_release_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables SimulationController_release_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow SimulationController_release_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +SimulationController_release_cflags += -Wno-c++11-extensions SimulationController_release_cflags += -O3 -fno-strict-aliasing SimulationController_release_cppflags := $(SimulationController_release_common_cflags) SimulationController_release_cppflags += -arch i386 @@ -512,6 +519,7 @@ SimulationController_release_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 SimulationController_release_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables SimulationController_release_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow SimulationController_release_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +SimulationController_release_cppflags += -Wno-c++11-extensions SimulationController_release_cppflags += -O3 -fno-strict-aliasing SimulationController_release_lflags := $(SimulationController_custom_lflags) SimulationController_release_lflags += $(addprefix -L, $(SimulationController_release_lpaths)) diff --git a/PhysX_3.4/Source/compiler/make_osx64/Makefile.LowLevel.mk b/PhysX_3.4/Source/compiler/make_osx64/Makefile.LowLevel.mk index 57746ee9..6d915717 100644 --- a/PhysX_3.4/Source/compiler/make_osx64/Makefile.LowLevel.mk +++ b/PhysX_3.4/Source/compiler/make_osx64/Makefile.LowLevel.mk @@ -99,6 +99,7 @@ LowLevel_debug_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-math -fn LowLevel_debug_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevel_debug_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevel_debug_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevel_debug_cflags += -Wno-c++11-extensions LowLevel_debug_cflags += -g3 -gdwarf-2 -O0 LowLevel_debug_cppflags := $(LowLevel_debug_common_cflags) LowLevel_debug_cppflags += -arch x86_64 @@ -106,6 +107,7 @@ LowLevel_debug_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-math - LowLevel_debug_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevel_debug_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevel_debug_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevel_debug_cppflags += -Wno-c++11-extensions LowLevel_debug_cppflags += -g3 -gdwarf-2 -O0 LowLevel_debug_lflags := $(LowLevel_custom_lflags) LowLevel_debug_lflags += $(addprefix -L, $(LowLevel_debug_lpaths)) @@ -218,6 +220,7 @@ LowLevel_checked_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-math - LowLevel_checked_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevel_checked_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevel_checked_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevel_checked_cflags += -Wno-c++11-extensions LowLevel_checked_cflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing LowLevel_checked_cppflags := $(LowLevel_checked_common_cflags) LowLevel_checked_cppflags += -arch x86_64 @@ -225,6 +228,7 @@ LowLevel_checked_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-math LowLevel_checked_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevel_checked_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevel_checked_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevel_checked_cppflags += -Wno-c++11-extensions LowLevel_checked_cppflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing LowLevel_checked_lflags := $(LowLevel_custom_lflags) LowLevel_checked_lflags += $(addprefix -L, $(LowLevel_checked_lpaths)) @@ -337,6 +341,7 @@ LowLevel_profile_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-math - LowLevel_profile_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevel_profile_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevel_profile_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevel_profile_cflags += -Wno-c++11-extensions LowLevel_profile_cflags += -O3 -fno-strict-aliasing LowLevel_profile_cppflags := $(LowLevel_profile_common_cflags) LowLevel_profile_cppflags += -arch x86_64 @@ -344,6 +349,7 @@ LowLevel_profile_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-math LowLevel_profile_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevel_profile_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevel_profile_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevel_profile_cppflags += -Wno-c++11-extensions LowLevel_profile_cppflags += -O3 -fno-strict-aliasing LowLevel_profile_lflags := $(LowLevel_custom_lflags) LowLevel_profile_lflags += $(addprefix -L, $(LowLevel_profile_lpaths)) @@ -455,6 +461,7 @@ LowLevel_release_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-math - LowLevel_release_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevel_release_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevel_release_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevel_release_cflags += -Wno-c++11-extensions LowLevel_release_cflags += -O3 -fno-strict-aliasing LowLevel_release_cppflags := $(LowLevel_release_common_cflags) LowLevel_release_cppflags += -arch x86_64 @@ -462,6 +469,7 @@ LowLevel_release_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-math LowLevel_release_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevel_release_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevel_release_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevel_release_cppflags += -Wno-c++11-extensions LowLevel_release_cppflags += -O3 -fno-strict-aliasing LowLevel_release_lflags := $(LowLevel_custom_lflags) LowLevel_release_lflags += $(addprefix -L, $(LowLevel_release_lpaths)) diff --git a/PhysX_3.4/Source/compiler/make_osx64/Makefile.LowLevelAABB.mk b/PhysX_3.4/Source/compiler/make_osx64/Makefile.LowLevelAABB.mk index 5b88a1e8..f8eb09d5 100644 --- a/PhysX_3.4/Source/compiler/make_osx64/Makefile.LowLevelAABB.mk +++ b/PhysX_3.4/Source/compiler/make_osx64/Makefile.LowLevelAABB.mk @@ -71,6 +71,7 @@ LowLevelAABB_debug_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-math LowLevelAABB_debug_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevelAABB_debug_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevelAABB_debug_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevelAABB_debug_cflags += -Wno-c++11-extensions LowLevelAABB_debug_cflags += -g3 -gdwarf-2 -O0 LowLevelAABB_debug_cppflags := $(LowLevelAABB_debug_common_cflags) LowLevelAABB_debug_cppflags += -arch x86_64 @@ -78,6 +79,7 @@ LowLevelAABB_debug_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-ma LowLevelAABB_debug_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevelAABB_debug_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevelAABB_debug_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevelAABB_debug_cppflags += -Wno-c++11-extensions LowLevelAABB_debug_cppflags += -g3 -gdwarf-2 -O0 LowLevelAABB_debug_lflags := $(LowLevelAABB_custom_lflags) LowLevelAABB_debug_lflags += $(addprefix -L, $(LowLevelAABB_debug_lpaths)) @@ -176,6 +178,7 @@ LowLevelAABB_checked_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-ma LowLevelAABB_checked_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevelAABB_checked_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevelAABB_checked_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevelAABB_checked_cflags += -Wno-c++11-extensions LowLevelAABB_checked_cflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing LowLevelAABB_checked_cppflags := $(LowLevelAABB_checked_common_cflags) LowLevelAABB_checked_cppflags += -arch x86_64 @@ -183,6 +186,7 @@ LowLevelAABB_checked_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast- LowLevelAABB_checked_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevelAABB_checked_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevelAABB_checked_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevelAABB_checked_cppflags += -Wno-c++11-extensions LowLevelAABB_checked_cppflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing LowLevelAABB_checked_lflags := $(LowLevelAABB_custom_lflags) LowLevelAABB_checked_lflags += $(addprefix -L, $(LowLevelAABB_checked_lpaths)) @@ -281,6 +285,7 @@ LowLevelAABB_profile_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-ma LowLevelAABB_profile_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevelAABB_profile_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevelAABB_profile_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevelAABB_profile_cflags += -Wno-c++11-extensions LowLevelAABB_profile_cflags += -O3 -fno-strict-aliasing LowLevelAABB_profile_cppflags := $(LowLevelAABB_profile_common_cflags) LowLevelAABB_profile_cppflags += -arch x86_64 @@ -288,6 +293,7 @@ LowLevelAABB_profile_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast- LowLevelAABB_profile_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevelAABB_profile_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevelAABB_profile_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevelAABB_profile_cppflags += -Wno-c++11-extensions LowLevelAABB_profile_cppflags += -O3 -fno-strict-aliasing LowLevelAABB_profile_lflags := $(LowLevelAABB_custom_lflags) LowLevelAABB_profile_lflags += $(addprefix -L, $(LowLevelAABB_profile_lpaths)) @@ -385,6 +391,7 @@ LowLevelAABB_release_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-ma LowLevelAABB_release_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevelAABB_release_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevelAABB_release_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevelAABB_release_cflags += -Wno-c++11-extensions LowLevelAABB_release_cflags += -O3 -fno-strict-aliasing LowLevelAABB_release_cppflags := $(LowLevelAABB_release_common_cflags) LowLevelAABB_release_cppflags += -arch x86_64 @@ -392,6 +399,7 @@ LowLevelAABB_release_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast- LowLevelAABB_release_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevelAABB_release_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevelAABB_release_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevelAABB_release_cppflags += -Wno-c++11-extensions LowLevelAABB_release_cppflags += -O3 -fno-strict-aliasing LowLevelAABB_release_lflags := $(LowLevelAABB_custom_lflags) LowLevelAABB_release_lflags += $(addprefix -L, $(LowLevelAABB_release_lpaths)) diff --git a/PhysX_3.4/Source/compiler/make_osx64/Makefile.LowLevelCloth.mk b/PhysX_3.4/Source/compiler/make_osx64/Makefile.LowLevelCloth.mk index 593232bc..9ac6e254 100644 --- a/PhysX_3.4/Source/compiler/make_osx64/Makefile.LowLevelCloth.mk +++ b/PhysX_3.4/Source/compiler/make_osx64/Makefile.LowLevelCloth.mk @@ -67,6 +67,7 @@ LowLevelCloth_debug_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-mat LowLevelCloth_debug_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevelCloth_debug_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevelCloth_debug_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevelCloth_debug_cflags += -Wno-c++11-extensions LowLevelCloth_debug_cflags += -g3 -gdwarf-2 -O0 LowLevelCloth_debug_cppflags := $(LowLevelCloth_debug_common_cflags) LowLevelCloth_debug_cppflags += -arch x86_64 @@ -74,6 +75,7 @@ LowLevelCloth_debug_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-m LowLevelCloth_debug_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevelCloth_debug_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevelCloth_debug_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevelCloth_debug_cppflags += -Wno-c++11-extensions LowLevelCloth_debug_cppflags += -g3 -gdwarf-2 -O0 LowLevelCloth_debug_lflags := $(LowLevelCloth_custom_lflags) LowLevelCloth_debug_lflags += $(addprefix -L, $(LowLevelCloth_debug_lpaths)) @@ -162,6 +164,7 @@ LowLevelCloth_checked_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-m LowLevelCloth_checked_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevelCloth_checked_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevelCloth_checked_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevelCloth_checked_cflags += -Wno-c++11-extensions LowLevelCloth_checked_cflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing LowLevelCloth_checked_cppflags := $(LowLevelCloth_checked_common_cflags) LowLevelCloth_checked_cppflags += -arch x86_64 @@ -169,6 +172,7 @@ LowLevelCloth_checked_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast LowLevelCloth_checked_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevelCloth_checked_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevelCloth_checked_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevelCloth_checked_cppflags += -Wno-c++11-extensions LowLevelCloth_checked_cppflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing LowLevelCloth_checked_lflags := $(LowLevelCloth_custom_lflags) LowLevelCloth_checked_lflags += $(addprefix -L, $(LowLevelCloth_checked_lpaths)) @@ -257,6 +261,7 @@ LowLevelCloth_profile_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-m LowLevelCloth_profile_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevelCloth_profile_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevelCloth_profile_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevelCloth_profile_cflags += -Wno-c++11-extensions LowLevelCloth_profile_cflags += -O3 -fno-strict-aliasing LowLevelCloth_profile_cppflags := $(LowLevelCloth_profile_common_cflags) LowLevelCloth_profile_cppflags += -arch x86_64 @@ -264,6 +269,7 @@ LowLevelCloth_profile_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast LowLevelCloth_profile_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevelCloth_profile_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevelCloth_profile_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevelCloth_profile_cppflags += -Wno-c++11-extensions LowLevelCloth_profile_cppflags += -O3 -fno-strict-aliasing LowLevelCloth_profile_lflags := $(LowLevelCloth_custom_lflags) LowLevelCloth_profile_lflags += $(addprefix -L, $(LowLevelCloth_profile_lpaths)) @@ -351,6 +357,7 @@ LowLevelCloth_release_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-m LowLevelCloth_release_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevelCloth_release_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevelCloth_release_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevelCloth_release_cflags += -Wno-c++11-extensions LowLevelCloth_release_cflags += -O3 -fno-strict-aliasing LowLevelCloth_release_cppflags := $(LowLevelCloth_release_common_cflags) LowLevelCloth_release_cppflags += -arch x86_64 @@ -358,6 +365,7 @@ LowLevelCloth_release_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast LowLevelCloth_release_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevelCloth_release_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevelCloth_release_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevelCloth_release_cppflags += -Wno-c++11-extensions LowLevelCloth_release_cppflags += -O3 -fno-strict-aliasing LowLevelCloth_release_lflags := $(LowLevelCloth_custom_lflags) LowLevelCloth_release_lflags += $(addprefix -L, $(LowLevelCloth_release_lpaths)) diff --git a/PhysX_3.4/Source/compiler/make_osx64/Makefile.LowLevelDynamics.mk b/PhysX_3.4/Source/compiler/make_osx64/Makefile.LowLevelDynamics.mk index d6d98234..76fb2e36 100644 --- a/PhysX_3.4/Source/compiler/make_osx64/Makefile.LowLevelDynamics.mk +++ b/PhysX_3.4/Source/compiler/make_osx64/Makefile.LowLevelDynamics.mk @@ -92,6 +92,7 @@ LowLevelDynamics_debug_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast- LowLevelDynamics_debug_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevelDynamics_debug_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevelDynamics_debug_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevelDynamics_debug_cflags += -Wno-c++11-extensions LowLevelDynamics_debug_cflags += -g3 -gdwarf-2 -O0 LowLevelDynamics_debug_cppflags := $(LowLevelDynamics_debug_common_cflags) LowLevelDynamics_debug_cppflags += -arch x86_64 @@ -99,6 +100,7 @@ LowLevelDynamics_debug_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffas LowLevelDynamics_debug_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevelDynamics_debug_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevelDynamics_debug_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevelDynamics_debug_cppflags += -Wno-c++11-extensions LowLevelDynamics_debug_cppflags += -g3 -gdwarf-2 -O0 LowLevelDynamics_debug_lflags := $(LowLevelDynamics_custom_lflags) LowLevelDynamics_debug_lflags += $(addprefix -L, $(LowLevelDynamics_debug_lpaths)) @@ -201,6 +203,7 @@ LowLevelDynamics_checked_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffas LowLevelDynamics_checked_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevelDynamics_checked_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevelDynamics_checked_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevelDynamics_checked_cflags += -Wno-c++11-extensions LowLevelDynamics_checked_cflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing LowLevelDynamics_checked_cppflags := $(LowLevelDynamics_checked_common_cflags) LowLevelDynamics_checked_cppflags += -arch x86_64 @@ -208,6 +211,7 @@ LowLevelDynamics_checked_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ff LowLevelDynamics_checked_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevelDynamics_checked_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevelDynamics_checked_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevelDynamics_checked_cppflags += -Wno-c++11-extensions LowLevelDynamics_checked_cppflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing LowLevelDynamics_checked_lflags := $(LowLevelDynamics_custom_lflags) LowLevelDynamics_checked_lflags += $(addprefix -L, $(LowLevelDynamics_checked_lpaths)) @@ -310,6 +314,7 @@ LowLevelDynamics_profile_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffas LowLevelDynamics_profile_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevelDynamics_profile_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevelDynamics_profile_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevelDynamics_profile_cflags += -Wno-c++11-extensions LowLevelDynamics_profile_cflags += -O3 -fno-strict-aliasing LowLevelDynamics_profile_cppflags := $(LowLevelDynamics_profile_common_cflags) LowLevelDynamics_profile_cppflags += -arch x86_64 @@ -317,6 +322,7 @@ LowLevelDynamics_profile_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ff LowLevelDynamics_profile_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevelDynamics_profile_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevelDynamics_profile_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevelDynamics_profile_cppflags += -Wno-c++11-extensions LowLevelDynamics_profile_cppflags += -O3 -fno-strict-aliasing LowLevelDynamics_profile_lflags := $(LowLevelDynamics_custom_lflags) LowLevelDynamics_profile_lflags += $(addprefix -L, $(LowLevelDynamics_profile_lpaths)) @@ -418,6 +424,7 @@ LowLevelDynamics_release_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffas LowLevelDynamics_release_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevelDynamics_release_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevelDynamics_release_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevelDynamics_release_cflags += -Wno-c++11-extensions LowLevelDynamics_release_cflags += -O3 -fno-strict-aliasing LowLevelDynamics_release_cppflags := $(LowLevelDynamics_release_common_cflags) LowLevelDynamics_release_cppflags += -arch x86_64 @@ -425,6 +432,7 @@ LowLevelDynamics_release_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ff LowLevelDynamics_release_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevelDynamics_release_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevelDynamics_release_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevelDynamics_release_cppflags += -Wno-c++11-extensions LowLevelDynamics_release_cppflags += -O3 -fno-strict-aliasing LowLevelDynamics_release_lflags := $(LowLevelDynamics_custom_lflags) LowLevelDynamics_release_lflags += $(addprefix -L, $(LowLevelDynamics_release_lpaths)) diff --git a/PhysX_3.4/Source/compiler/make_osx64/Makefile.LowLevelParticles.mk b/PhysX_3.4/Source/compiler/make_osx64/Makefile.LowLevelParticles.mk index 37394c97..9c092644 100644 --- a/PhysX_3.4/Source/compiler/make_osx64/Makefile.LowLevelParticles.mk +++ b/PhysX_3.4/Source/compiler/make_osx64/Makefile.LowLevelParticles.mk @@ -78,6 +78,7 @@ LowLevelParticles_debug_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast LowLevelParticles_debug_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevelParticles_debug_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevelParticles_debug_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevelParticles_debug_cflags += -Wno-c++11-extensions LowLevelParticles_debug_cflags += -g3 -gdwarf-2 -O0 LowLevelParticles_debug_cppflags := $(LowLevelParticles_debug_common_cflags) LowLevelParticles_debug_cppflags += -arch x86_64 @@ -85,6 +86,7 @@ LowLevelParticles_debug_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffa LowLevelParticles_debug_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevelParticles_debug_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevelParticles_debug_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevelParticles_debug_cppflags += -Wno-c++11-extensions LowLevelParticles_debug_cppflags += -g3 -gdwarf-2 -O0 LowLevelParticles_debug_lflags := $(LowLevelParticles_custom_lflags) LowLevelParticles_debug_lflags += $(addprefix -L, $(LowLevelParticles_debug_lpaths)) @@ -181,6 +183,7 @@ LowLevelParticles_checked_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffa LowLevelParticles_checked_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevelParticles_checked_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevelParticles_checked_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevelParticles_checked_cflags += -Wno-c++11-extensions LowLevelParticles_checked_cflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing LowLevelParticles_checked_cppflags := $(LowLevelParticles_checked_common_cflags) LowLevelParticles_checked_cppflags += -arch x86_64 @@ -188,6 +191,7 @@ LowLevelParticles_checked_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -f LowLevelParticles_checked_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevelParticles_checked_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevelParticles_checked_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevelParticles_checked_cppflags += -Wno-c++11-extensions LowLevelParticles_checked_cppflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing LowLevelParticles_checked_lflags := $(LowLevelParticles_custom_lflags) LowLevelParticles_checked_lflags += $(addprefix -L, $(LowLevelParticles_checked_lpaths)) @@ -284,6 +288,7 @@ LowLevelParticles_profile_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffa LowLevelParticles_profile_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevelParticles_profile_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevelParticles_profile_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevelParticles_profile_cflags += -Wno-c++11-extensions LowLevelParticles_profile_cflags += -O3 -fno-strict-aliasing LowLevelParticles_profile_cppflags := $(LowLevelParticles_profile_common_cflags) LowLevelParticles_profile_cppflags += -arch x86_64 @@ -291,6 +296,7 @@ LowLevelParticles_profile_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -f LowLevelParticles_profile_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevelParticles_profile_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevelParticles_profile_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevelParticles_profile_cppflags += -Wno-c++11-extensions LowLevelParticles_profile_cppflags += -O3 -fno-strict-aliasing LowLevelParticles_profile_lflags := $(LowLevelParticles_custom_lflags) LowLevelParticles_profile_lflags += $(addprefix -L, $(LowLevelParticles_profile_lpaths)) @@ -386,6 +392,7 @@ LowLevelParticles_release_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffa LowLevelParticles_release_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevelParticles_release_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevelParticles_release_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevelParticles_release_cflags += -Wno-c++11-extensions LowLevelParticles_release_cflags += -O3 -fno-strict-aliasing LowLevelParticles_release_cppflags := $(LowLevelParticles_release_common_cflags) LowLevelParticles_release_cppflags += -arch x86_64 @@ -393,6 +400,7 @@ LowLevelParticles_release_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -f LowLevelParticles_release_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables LowLevelParticles_release_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow LowLevelParticles_release_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +LowLevelParticles_release_cppflags += -Wno-c++11-extensions LowLevelParticles_release_cppflags += -O3 -fno-strict-aliasing LowLevelParticles_release_lflags := $(LowLevelParticles_custom_lflags) LowLevelParticles_release_lflags += $(addprefix -L, $(LowLevelParticles_release_lpaths)) diff --git a/PhysX_3.4/Source/compiler/make_osx64/Makefile.PhysX.mk b/PhysX_3.4/Source/compiler/make_osx64/Makefile.PhysX.mk index 1b49fed1..d28e25b6 100644 --- a/PhysX_3.4/Source/compiler/make_osx64/Makefile.PhysX.mk +++ b/PhysX_3.4/Source/compiler/make_osx64/Makefile.PhysX.mk @@ -141,6 +141,7 @@ PhysX_release_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-math -fno PhysX_release_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysX_release_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysX_release_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysX_release_cflags += -Wno-c++11-extensions PhysX_release_cflags += -O3 -fno-strict-aliasing PhysX_release_cppflags := $(PhysX_release_common_cflags) PhysX_release_cppflags += -arch x86_64 @@ -148,6 +149,7 @@ PhysX_release_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-math -f PhysX_release_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysX_release_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysX_release_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysX_release_cppflags += -Wno-c++11-extensions PhysX_release_cppflags += -O3 -fno-strict-aliasing PhysX_release_lflags := $(PhysX_custom_lflags) PhysX_release_lflags += $(addprefix -L, $(PhysX_release_lpaths)) @@ -284,6 +286,7 @@ PhysX_debug_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-math -fno-e PhysX_debug_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysX_debug_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysX_debug_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysX_debug_cflags += -Wno-c++11-extensions PhysX_debug_cflags += -g3 -gdwarf-2 -O0 PhysX_debug_cppflags := $(PhysX_debug_common_cflags) PhysX_debug_cppflags += -arch x86_64 @@ -291,6 +294,7 @@ PhysX_debug_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-math -fno PhysX_debug_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysX_debug_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysX_debug_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysX_debug_cppflags += -Wno-c++11-extensions PhysX_debug_cppflags += -g3 -gdwarf-2 -O0 PhysX_debug_lflags := $(PhysX_custom_lflags) PhysX_debug_lflags += $(addprefix -L, $(PhysX_debug_lpaths)) @@ -426,6 +430,7 @@ PhysX_checked_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-math -fno PhysX_checked_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysX_checked_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysX_checked_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysX_checked_cflags += -Wno-c++11-extensions PhysX_checked_cflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing PhysX_checked_cppflags := $(PhysX_checked_common_cflags) PhysX_checked_cppflags += -arch x86_64 @@ -433,6 +438,7 @@ PhysX_checked_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-math -f PhysX_checked_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysX_checked_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysX_checked_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysX_checked_cppflags += -Wno-c++11-extensions PhysX_checked_cppflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing PhysX_checked_lflags := $(PhysX_custom_lflags) PhysX_checked_lflags += $(addprefix -L, $(PhysX_checked_lpaths)) @@ -568,6 +574,7 @@ PhysX_profile_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-math -fno PhysX_profile_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysX_profile_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysX_profile_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysX_profile_cflags += -Wno-c++11-extensions PhysX_profile_cflags += -O3 -fno-strict-aliasing PhysX_profile_cppflags := $(PhysX_profile_common_cflags) PhysX_profile_cppflags += -arch x86_64 @@ -575,6 +582,7 @@ PhysX_profile_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-math -f PhysX_profile_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysX_profile_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysX_profile_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysX_profile_cppflags += -Wno-c++11-extensions PhysX_profile_cppflags += -O3 -fno-strict-aliasing PhysX_profile_lflags := $(PhysX_custom_lflags) PhysX_profile_lflags += $(addprefix -L, $(PhysX_profile_lpaths)) diff --git a/PhysX_3.4/Source/compiler/make_osx64/Makefile.PhysXCharacterKinematic.mk b/PhysX_3.4/Source/compiler/make_osx64/Makefile.PhysXCharacterKinematic.mk index 2350913d..0029281e 100644 --- a/PhysX_3.4/Source/compiler/make_osx64/Makefile.PhysXCharacterKinematic.mk +++ b/PhysX_3.4/Source/compiler/make_osx64/Makefile.PhysXCharacterKinematic.mk @@ -79,6 +79,7 @@ PhysXCharacterKinematic_debug_cflags += -pipe -mmacosx-version-min=10.7 -msse2 PhysXCharacterKinematic_debug_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXCharacterKinematic_debug_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXCharacterKinematic_debug_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXCharacterKinematic_debug_cflags += -Wno-c++11-extensions PhysXCharacterKinematic_debug_cflags += -g3 -gdwarf-2 -O0 PhysXCharacterKinematic_debug_cppflags := $(PhysXCharacterKinematic_debug_common_cflags) PhysXCharacterKinematic_debug_cppflags += -arch x86_64 @@ -86,6 +87,7 @@ PhysXCharacterKinematic_debug_cppflags += -pipe -mmacosx-version-min=10.7 -msse PhysXCharacterKinematic_debug_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXCharacterKinematic_debug_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXCharacterKinematic_debug_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXCharacterKinematic_debug_cppflags += -Wno-c++11-extensions PhysXCharacterKinematic_debug_cppflags += -g3 -gdwarf-2 -O0 PhysXCharacterKinematic_debug_lflags := $(PhysXCharacterKinematic_custom_lflags) PhysXCharacterKinematic_debug_lflags += $(addprefix -L, $(PhysXCharacterKinematic_debug_lpaths)) @@ -189,6 +191,7 @@ PhysXCharacterKinematic_checked_cflags += -pipe -mmacosx-version-min=10.7 -msse PhysXCharacterKinematic_checked_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXCharacterKinematic_checked_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXCharacterKinematic_checked_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXCharacterKinematic_checked_cflags += -Wno-c++11-extensions PhysXCharacterKinematic_checked_cflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing PhysXCharacterKinematic_checked_cppflags := $(PhysXCharacterKinematic_checked_common_cflags) PhysXCharacterKinematic_checked_cppflags += -arch x86_64 @@ -196,6 +199,7 @@ PhysXCharacterKinematic_checked_cppflags += -pipe -mmacosx-version-min=10.7 -ms PhysXCharacterKinematic_checked_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXCharacterKinematic_checked_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXCharacterKinematic_checked_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXCharacterKinematic_checked_cppflags += -Wno-c++11-extensions PhysXCharacterKinematic_checked_cppflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing PhysXCharacterKinematic_checked_lflags := $(PhysXCharacterKinematic_custom_lflags) PhysXCharacterKinematic_checked_lflags += $(addprefix -L, $(PhysXCharacterKinematic_checked_lpaths)) @@ -299,6 +303,7 @@ PhysXCharacterKinematic_profile_cflags += -pipe -mmacosx-version-min=10.7 -msse PhysXCharacterKinematic_profile_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXCharacterKinematic_profile_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXCharacterKinematic_profile_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXCharacterKinematic_profile_cflags += -Wno-c++11-extensions PhysXCharacterKinematic_profile_cflags += -O3 -fno-strict-aliasing PhysXCharacterKinematic_profile_cppflags := $(PhysXCharacterKinematic_profile_common_cflags) PhysXCharacterKinematic_profile_cppflags += -arch x86_64 @@ -306,6 +311,7 @@ PhysXCharacterKinematic_profile_cppflags += -pipe -mmacosx-version-min=10.7 -ms PhysXCharacterKinematic_profile_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXCharacterKinematic_profile_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXCharacterKinematic_profile_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXCharacterKinematic_profile_cppflags += -Wno-c++11-extensions PhysXCharacterKinematic_profile_cppflags += -O3 -fno-strict-aliasing PhysXCharacterKinematic_profile_lflags := $(PhysXCharacterKinematic_custom_lflags) PhysXCharacterKinematic_profile_lflags += $(addprefix -L, $(PhysXCharacterKinematic_profile_lpaths)) @@ -408,6 +414,7 @@ PhysXCharacterKinematic_release_cflags += -pipe -mmacosx-version-min=10.7 -msse PhysXCharacterKinematic_release_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXCharacterKinematic_release_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXCharacterKinematic_release_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXCharacterKinematic_release_cflags += -Wno-c++11-extensions PhysXCharacterKinematic_release_cflags += -O3 -fno-strict-aliasing PhysXCharacterKinematic_release_cppflags := $(PhysXCharacterKinematic_release_common_cflags) PhysXCharacterKinematic_release_cppflags += -arch x86_64 @@ -415,6 +422,7 @@ PhysXCharacterKinematic_release_cppflags += -pipe -mmacosx-version-min=10.7 -ms PhysXCharacterKinematic_release_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXCharacterKinematic_release_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXCharacterKinematic_release_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXCharacterKinematic_release_cppflags += -Wno-c++11-extensions PhysXCharacterKinematic_release_cppflags += -O3 -fno-strict-aliasing PhysXCharacterKinematic_release_lflags := $(PhysXCharacterKinematic_custom_lflags) PhysXCharacterKinematic_release_lflags += $(addprefix -L, $(PhysXCharacterKinematic_release_lpaths)) diff --git a/PhysX_3.4/Source/compiler/make_osx64/Makefile.PhysXCommon.mk b/PhysX_3.4/Source/compiler/make_osx64/Makefile.PhysXCommon.mk index 529e26c6..85764759 100644 --- a/PhysX_3.4/Source/compiler/make_osx64/Makefile.PhysXCommon.mk +++ b/PhysX_3.4/Source/compiler/make_osx64/Makefile.PhysXCommon.mk @@ -205,6 +205,7 @@ PhysXCommon_release_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-mat PhysXCommon_release_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXCommon_release_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXCommon_release_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXCommon_release_cflags += -Wno-c++11-extensions PhysXCommon_release_cflags += -O3 -fno-strict-aliasing PhysXCommon_release_cppflags := $(PhysXCommon_release_common_cflags) PhysXCommon_release_cppflags += -arch x86_64 @@ -212,6 +213,7 @@ PhysXCommon_release_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-m PhysXCommon_release_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXCommon_release_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXCommon_release_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXCommon_release_cppflags += -Wno-c++11-extensions PhysXCommon_release_cppflags += -O3 -fno-strict-aliasing PhysXCommon_release_lflags := $(PhysXCommon_custom_lflags) PhysXCommon_release_lflags += $(addprefix -L, $(PhysXCommon_release_lpaths)) @@ -319,6 +321,7 @@ PhysXCommon_debug_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-math PhysXCommon_debug_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXCommon_debug_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXCommon_debug_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXCommon_debug_cflags += -Wno-c++11-extensions PhysXCommon_debug_cflags += -g3 -gdwarf-2 -O0 PhysXCommon_debug_cppflags := $(PhysXCommon_debug_common_cflags) PhysXCommon_debug_cppflags += -arch x86_64 @@ -326,6 +329,7 @@ PhysXCommon_debug_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-mat PhysXCommon_debug_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXCommon_debug_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXCommon_debug_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXCommon_debug_cppflags += -Wno-c++11-extensions PhysXCommon_debug_cppflags += -g3 -gdwarf-2 -O0 PhysXCommon_debug_lflags := $(PhysXCommon_custom_lflags) PhysXCommon_debug_lflags += $(addprefix -L, $(PhysXCommon_debug_lpaths)) @@ -432,6 +436,7 @@ PhysXCommon_checked_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-mat PhysXCommon_checked_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXCommon_checked_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXCommon_checked_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXCommon_checked_cflags += -Wno-c++11-extensions PhysXCommon_checked_cflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing PhysXCommon_checked_cppflags := $(PhysXCommon_checked_common_cflags) PhysXCommon_checked_cppflags += -arch x86_64 @@ -439,6 +444,7 @@ PhysXCommon_checked_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-m PhysXCommon_checked_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXCommon_checked_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXCommon_checked_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXCommon_checked_cppflags += -Wno-c++11-extensions PhysXCommon_checked_cppflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing PhysXCommon_checked_lflags := $(PhysXCommon_custom_lflags) PhysXCommon_checked_lflags += $(addprefix -L, $(PhysXCommon_checked_lpaths)) @@ -545,6 +551,7 @@ PhysXCommon_profile_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-mat PhysXCommon_profile_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXCommon_profile_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXCommon_profile_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXCommon_profile_cflags += -Wno-c++11-extensions PhysXCommon_profile_cflags += -O3 -fno-strict-aliasing PhysXCommon_profile_cppflags := $(PhysXCommon_profile_common_cflags) PhysXCommon_profile_cppflags += -arch x86_64 @@ -552,6 +559,7 @@ PhysXCommon_profile_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-m PhysXCommon_profile_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXCommon_profile_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXCommon_profile_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXCommon_profile_cppflags += -Wno-c++11-extensions PhysXCommon_profile_cppflags += -O3 -fno-strict-aliasing PhysXCommon_profile_lflags := $(PhysXCommon_custom_lflags) PhysXCommon_profile_lflags += $(addprefix -L, $(PhysXCommon_profile_lpaths)) diff --git a/PhysX_3.4/Source/compiler/make_osx64/Makefile.PhysXCooking.mk b/PhysX_3.4/Source/compiler/make_osx64/Makefile.PhysXCooking.mk index 5aacd169..9185c453 100644 --- a/PhysX_3.4/Source/compiler/make_osx64/Makefile.PhysXCooking.mk +++ b/PhysX_3.4/Source/compiler/make_osx64/Makefile.PhysXCooking.mk @@ -96,6 +96,7 @@ PhysXCooking_release_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-ma PhysXCooking_release_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXCooking_release_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXCooking_release_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXCooking_release_cflags += -Wno-c++11-extensions PhysXCooking_release_cflags += -O3 -fno-strict-aliasing PhysXCooking_release_cppflags := $(PhysXCooking_release_common_cflags) PhysXCooking_release_cppflags += -arch x86_64 @@ -103,6 +104,7 @@ PhysXCooking_release_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast- PhysXCooking_release_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXCooking_release_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXCooking_release_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXCooking_release_cppflags += -Wno-c++11-extensions PhysXCooking_release_cppflags += -O3 -fno-strict-aliasing PhysXCooking_release_lflags := $(PhysXCooking_custom_lflags) PhysXCooking_release_lflags += $(addprefix -L, $(PhysXCooking_release_lpaths)) @@ -217,6 +219,7 @@ PhysXCooking_debug_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-math PhysXCooking_debug_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXCooking_debug_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXCooking_debug_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXCooking_debug_cflags += -Wno-c++11-extensions PhysXCooking_debug_cflags += -g3 -gdwarf-2 -O0 PhysXCooking_debug_cppflags := $(PhysXCooking_debug_common_cflags) PhysXCooking_debug_cppflags += -arch x86_64 @@ -224,6 +227,7 @@ PhysXCooking_debug_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-ma PhysXCooking_debug_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXCooking_debug_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXCooking_debug_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXCooking_debug_cppflags += -Wno-c++11-extensions PhysXCooking_debug_cppflags += -g3 -gdwarf-2 -O0 PhysXCooking_debug_lflags := $(PhysXCooking_custom_lflags) PhysXCooking_debug_lflags += $(addprefix -L, $(PhysXCooking_debug_lpaths)) @@ -337,6 +341,7 @@ PhysXCooking_checked_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-ma PhysXCooking_checked_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXCooking_checked_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXCooking_checked_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXCooking_checked_cflags += -Wno-c++11-extensions PhysXCooking_checked_cflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing PhysXCooking_checked_cppflags := $(PhysXCooking_checked_common_cflags) PhysXCooking_checked_cppflags += -arch x86_64 @@ -344,6 +349,7 @@ PhysXCooking_checked_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast- PhysXCooking_checked_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXCooking_checked_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXCooking_checked_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXCooking_checked_cppflags += -Wno-c++11-extensions PhysXCooking_checked_cppflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing PhysXCooking_checked_lflags := $(PhysXCooking_custom_lflags) PhysXCooking_checked_lflags += $(addprefix -L, $(PhysXCooking_checked_lpaths)) @@ -457,6 +463,7 @@ PhysXCooking_profile_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-ma PhysXCooking_profile_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXCooking_profile_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXCooking_profile_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXCooking_profile_cflags += -Wno-c++11-extensions PhysXCooking_profile_cflags += -O3 -fno-strict-aliasing PhysXCooking_profile_cppflags := $(PhysXCooking_profile_common_cflags) PhysXCooking_profile_cppflags += -arch x86_64 @@ -464,6 +471,7 @@ PhysXCooking_profile_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast- PhysXCooking_profile_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXCooking_profile_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXCooking_profile_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXCooking_profile_cppflags += -Wno-c++11-extensions PhysXCooking_profile_cppflags += -O3 -fno-strict-aliasing PhysXCooking_profile_lflags := $(PhysXCooking_custom_lflags) PhysXCooking_profile_lflags += $(addprefix -L, $(PhysXCooking_profile_lpaths)) 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 948415ae..45747ccb 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=21749494 +PhysXExtensions_debug_defines += PX_BUILD_NUMBER=22017532 PhysXExtensions_debug_defines += PX_PHYSX_STATIC_LIB PhysXExtensions_debug_defines += _DEBUG PhysXExtensions_debug_defines += PX_DEBUG=1 @@ -134,6 +134,7 @@ PhysXExtensions_debug_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-m PhysXExtensions_debug_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXExtensions_debug_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXExtensions_debug_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXExtensions_debug_cflags += -Wno-c++11-extensions PhysXExtensions_debug_cflags += -g3 -gdwarf-2 -O0 PhysXExtensions_debug_cppflags := $(PhysXExtensions_debug_common_cflags) PhysXExtensions_debug_cppflags += -arch x86_64 @@ -141,6 +142,7 @@ PhysXExtensions_debug_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast PhysXExtensions_debug_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXExtensions_debug_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXExtensions_debug_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXExtensions_debug_cppflags += -Wno-c++11-extensions PhysXExtensions_debug_cppflags += -g3 -gdwarf-2 -O0 PhysXExtensions_debug_lflags := $(PhysXExtensions_custom_lflags) PhysXExtensions_debug_lflags += $(addprefix -L, $(PhysXExtensions_debug_lpaths)) @@ -238,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=21749494 +PhysXExtensions_checked_defines += PX_BUILD_NUMBER=22017532 PhysXExtensions_checked_defines += PX_PHYSX_STATIC_LIB PhysXExtensions_checked_defines += NDEBUG PhysXExtensions_checked_defines += PX_CHECKED=1 @@ -255,6 +257,7 @@ PhysXExtensions_checked_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast PhysXExtensions_checked_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXExtensions_checked_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXExtensions_checked_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXExtensions_checked_cflags += -Wno-c++11-extensions PhysXExtensions_checked_cflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing PhysXExtensions_checked_cppflags := $(PhysXExtensions_checked_common_cflags) PhysXExtensions_checked_cppflags += -arch x86_64 @@ -262,6 +265,7 @@ PhysXExtensions_checked_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffa PhysXExtensions_checked_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXExtensions_checked_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXExtensions_checked_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXExtensions_checked_cppflags += -Wno-c++11-extensions PhysXExtensions_checked_cppflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing PhysXExtensions_checked_lflags := $(PhysXExtensions_custom_lflags) PhysXExtensions_checked_lflags += $(addprefix -L, $(PhysXExtensions_checked_lpaths)) @@ -359,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=21749494 +PhysXExtensions_profile_defines += PX_BUILD_NUMBER=22017532 PhysXExtensions_profile_defines += PX_PHYSX_STATIC_LIB PhysXExtensions_profile_defines += NDEBUG PhysXExtensions_profile_defines += PX_PROFILE=1 @@ -376,6 +380,7 @@ PhysXExtensions_profile_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast PhysXExtensions_profile_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXExtensions_profile_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXExtensions_profile_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXExtensions_profile_cflags += -Wno-c++11-extensions PhysXExtensions_profile_cflags += -O3 -fno-strict-aliasing PhysXExtensions_profile_cppflags := $(PhysXExtensions_profile_common_cflags) PhysXExtensions_profile_cppflags += -arch x86_64 @@ -383,6 +388,7 @@ PhysXExtensions_profile_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffa PhysXExtensions_profile_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXExtensions_profile_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXExtensions_profile_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXExtensions_profile_cppflags += -Wno-c++11-extensions PhysXExtensions_profile_cppflags += -O3 -fno-strict-aliasing PhysXExtensions_profile_lflags := $(PhysXExtensions_custom_lflags) PhysXExtensions_profile_lflags += $(addprefix -L, $(PhysXExtensions_profile_lpaths)) @@ -480,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=21749494 +PhysXExtensions_release_defines += PX_BUILD_NUMBER=22017532 PhysXExtensions_release_defines += PX_PHYSX_STATIC_LIB PhysXExtensions_release_defines += NDEBUG PhysXExtensions_release_defines += PX_SUPPORT_PVD=0 @@ -496,6 +502,7 @@ PhysXExtensions_release_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast PhysXExtensions_release_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXExtensions_release_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXExtensions_release_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXExtensions_release_cflags += -Wno-c++11-extensions PhysXExtensions_release_cflags += -O3 -fno-strict-aliasing PhysXExtensions_release_cppflags := $(PhysXExtensions_release_common_cflags) PhysXExtensions_release_cppflags += -arch x86_64 @@ -503,6 +510,7 @@ PhysXExtensions_release_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffa PhysXExtensions_release_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXExtensions_release_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXExtensions_release_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXExtensions_release_cppflags += -Wno-c++11-extensions PhysXExtensions_release_cppflags += -O3 -fno-strict-aliasing PhysXExtensions_release_lflags := $(PhysXExtensions_custom_lflags) PhysXExtensions_release_lflags += $(addprefix -L, $(PhysXExtensions_release_lpaths)) diff --git a/PhysX_3.4/Source/compiler/make_osx64/Makefile.PhysXVehicle.mk b/PhysX_3.4/Source/compiler/make_osx64/Makefile.PhysXVehicle.mk index e245de19..e05c9aa1 100644 --- a/PhysX_3.4/Source/compiler/make_osx64/Makefile.PhysXVehicle.mk +++ b/PhysX_3.4/Source/compiler/make_osx64/Makefile.PhysXVehicle.mk @@ -81,6 +81,7 @@ PhysXVehicle_debug_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-math PhysXVehicle_debug_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXVehicle_debug_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXVehicle_debug_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXVehicle_debug_cflags += -Wno-c++11-extensions PhysXVehicle_debug_cflags += -g3 -gdwarf-2 -O0 PhysXVehicle_debug_cppflags := $(PhysXVehicle_debug_common_cflags) PhysXVehicle_debug_cppflags += -arch x86_64 @@ -88,6 +89,7 @@ PhysXVehicle_debug_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-ma PhysXVehicle_debug_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXVehicle_debug_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXVehicle_debug_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXVehicle_debug_cppflags += -Wno-c++11-extensions PhysXVehicle_debug_cppflags += -g3 -gdwarf-2 -O0 PhysXVehicle_debug_lflags := $(PhysXVehicle_custom_lflags) PhysXVehicle_debug_lflags += $(addprefix -L, $(PhysXVehicle_debug_lpaths)) @@ -185,6 +187,7 @@ PhysXVehicle_checked_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-ma PhysXVehicle_checked_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXVehicle_checked_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXVehicle_checked_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXVehicle_checked_cflags += -Wno-c++11-extensions PhysXVehicle_checked_cflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing PhysXVehicle_checked_cppflags := $(PhysXVehicle_checked_common_cflags) PhysXVehicle_checked_cppflags += -arch x86_64 @@ -192,6 +195,7 @@ PhysXVehicle_checked_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast- PhysXVehicle_checked_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXVehicle_checked_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXVehicle_checked_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXVehicle_checked_cppflags += -Wno-c++11-extensions PhysXVehicle_checked_cppflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing PhysXVehicle_checked_lflags := $(PhysXVehicle_custom_lflags) PhysXVehicle_checked_lflags += $(addprefix -L, $(PhysXVehicle_checked_lpaths)) @@ -289,6 +293,7 @@ PhysXVehicle_profile_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-ma PhysXVehicle_profile_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXVehicle_profile_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXVehicle_profile_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXVehicle_profile_cflags += -Wno-c++11-extensions PhysXVehicle_profile_cflags += -O3 -fno-strict-aliasing PhysXVehicle_profile_cppflags := $(PhysXVehicle_profile_common_cflags) PhysXVehicle_profile_cppflags += -arch x86_64 @@ -296,6 +301,7 @@ PhysXVehicle_profile_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast- PhysXVehicle_profile_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXVehicle_profile_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXVehicle_profile_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXVehicle_profile_cppflags += -Wno-c++11-extensions PhysXVehicle_profile_cppflags += -O3 -fno-strict-aliasing PhysXVehicle_profile_lflags := $(PhysXVehicle_custom_lflags) PhysXVehicle_profile_lflags += $(addprefix -L, $(PhysXVehicle_profile_lpaths)) @@ -392,6 +398,7 @@ PhysXVehicle_release_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-ma PhysXVehicle_release_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXVehicle_release_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXVehicle_release_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXVehicle_release_cflags += -Wno-c++11-extensions PhysXVehicle_release_cflags += -O3 -fno-strict-aliasing PhysXVehicle_release_cppflags := $(PhysXVehicle_release_common_cflags) PhysXVehicle_release_cppflags += -arch x86_64 @@ -399,6 +406,7 @@ PhysXVehicle_release_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast- PhysXVehicle_release_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables PhysXVehicle_release_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow PhysXVehicle_release_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +PhysXVehicle_release_cppflags += -Wno-c++11-extensions PhysXVehicle_release_cppflags += -O3 -fno-strict-aliasing PhysXVehicle_release_lflags := $(PhysXVehicle_custom_lflags) PhysXVehicle_release_lflags += $(addprefix -L, $(PhysXVehicle_release_lpaths)) diff --git a/PhysX_3.4/Source/compiler/make_osx64/Makefile.SceneQuery.mk b/PhysX_3.4/Source/compiler/make_osx64/Makefile.SceneQuery.mk index ec9a2135..3d09139f 100644 --- a/PhysX_3.4/Source/compiler/make_osx64/Makefile.SceneQuery.mk +++ b/PhysX_3.4/Source/compiler/make_osx64/Makefile.SceneQuery.mk @@ -83,6 +83,7 @@ SceneQuery_debug_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-math - SceneQuery_debug_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables SceneQuery_debug_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow SceneQuery_debug_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +SceneQuery_debug_cflags += -Wno-c++11-extensions SceneQuery_debug_cflags += -g3 -gdwarf-2 -O0 SceneQuery_debug_cppflags := $(SceneQuery_debug_common_cflags) SceneQuery_debug_cppflags += -arch x86_64 @@ -90,6 +91,7 @@ SceneQuery_debug_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-math SceneQuery_debug_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables SceneQuery_debug_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow SceneQuery_debug_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +SceneQuery_debug_cppflags += -Wno-c++11-extensions SceneQuery_debug_cppflags += -g3 -gdwarf-2 -O0 SceneQuery_debug_lflags := $(SceneQuery_custom_lflags) SceneQuery_debug_lflags += $(addprefix -L, $(SceneQuery_debug_lpaths)) @@ -197,6 +199,7 @@ SceneQuery_checked_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-math SceneQuery_checked_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables SceneQuery_checked_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow SceneQuery_checked_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +SceneQuery_checked_cflags += -Wno-c++11-extensions SceneQuery_checked_cflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing SceneQuery_checked_cppflags := $(SceneQuery_checked_common_cflags) SceneQuery_checked_cppflags += -arch x86_64 @@ -204,6 +207,7 @@ SceneQuery_checked_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-ma SceneQuery_checked_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables SceneQuery_checked_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow SceneQuery_checked_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +SceneQuery_checked_cppflags += -Wno-c++11-extensions SceneQuery_checked_cppflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing SceneQuery_checked_lflags := $(SceneQuery_custom_lflags) SceneQuery_checked_lflags += $(addprefix -L, $(SceneQuery_checked_lpaths)) @@ -311,6 +315,7 @@ SceneQuery_profile_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-math SceneQuery_profile_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables SceneQuery_profile_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow SceneQuery_profile_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +SceneQuery_profile_cflags += -Wno-c++11-extensions SceneQuery_profile_cflags += -O3 -fno-strict-aliasing SceneQuery_profile_cppflags := $(SceneQuery_profile_common_cflags) SceneQuery_profile_cppflags += -arch x86_64 @@ -318,6 +323,7 @@ SceneQuery_profile_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-ma SceneQuery_profile_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables SceneQuery_profile_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow SceneQuery_profile_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +SceneQuery_profile_cppflags += -Wno-c++11-extensions SceneQuery_profile_cppflags += -O3 -fno-strict-aliasing SceneQuery_profile_lflags := $(SceneQuery_custom_lflags) SceneQuery_profile_lflags += $(addprefix -L, $(SceneQuery_profile_lpaths)) @@ -424,6 +430,7 @@ SceneQuery_release_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-math SceneQuery_release_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables SceneQuery_release_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow SceneQuery_release_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +SceneQuery_release_cflags += -Wno-c++11-extensions SceneQuery_release_cflags += -O3 -fno-strict-aliasing SceneQuery_release_cppflags := $(SceneQuery_release_common_cflags) SceneQuery_release_cppflags += -arch x86_64 @@ -431,6 +438,7 @@ SceneQuery_release_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 -ffast-ma SceneQuery_release_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables SceneQuery_release_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow SceneQuery_release_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +SceneQuery_release_cppflags += -Wno-c++11-extensions SceneQuery_release_cppflags += -O3 -fno-strict-aliasing SceneQuery_release_lflags := $(SceneQuery_custom_lflags) SceneQuery_release_lflags += $(addprefix -L, $(SceneQuery_release_lpaths)) diff --git a/PhysX_3.4/Source/compiler/make_osx64/Makefile.SimulationController.mk b/PhysX_3.4/Source/compiler/make_osx64/Makefile.SimulationController.mk index 4b58ba4d..9285f5f2 100644 --- a/PhysX_3.4/Source/compiler/make_osx64/Makefile.SimulationController.mk +++ b/PhysX_3.4/Source/compiler/make_osx64/Makefile.SimulationController.mk @@ -128,6 +128,7 @@ SimulationController_debug_cflags += -pipe -mmacosx-version-min=10.7 -msse2 -ff SimulationController_debug_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables SimulationController_debug_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow SimulationController_debug_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +SimulationController_debug_cflags += -Wno-c++11-extensions SimulationController_debug_cflags += -g3 -gdwarf-2 -O0 SimulationController_debug_cppflags := $(SimulationController_debug_common_cflags) SimulationController_debug_cppflags += -arch x86_64 @@ -135,6 +136,7 @@ SimulationController_debug_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 - SimulationController_debug_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables SimulationController_debug_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow SimulationController_debug_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +SimulationController_debug_cppflags += -Wno-c++11-extensions SimulationController_debug_cppflags += -g3 -gdwarf-2 -O0 SimulationController_debug_lflags := $(SimulationController_custom_lflags) SimulationController_debug_lflags += $(addprefix -L, $(SimulationController_debug_lpaths)) @@ -254,6 +256,7 @@ SimulationController_checked_cflags += -pipe -mmacosx-version-min=10.7 -msse2 - SimulationController_checked_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables SimulationController_checked_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow SimulationController_checked_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +SimulationController_checked_cflags += -Wno-c++11-extensions SimulationController_checked_cflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing SimulationController_checked_cppflags := $(SimulationController_checked_common_cflags) SimulationController_checked_cppflags += -arch x86_64 @@ -261,6 +264,7 @@ SimulationController_checked_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 SimulationController_checked_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables SimulationController_checked_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow SimulationController_checked_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +SimulationController_checked_cppflags += -Wno-c++11-extensions SimulationController_checked_cppflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing SimulationController_checked_lflags := $(SimulationController_custom_lflags) SimulationController_checked_lflags += $(addprefix -L, $(SimulationController_checked_lpaths)) @@ -380,6 +384,7 @@ SimulationController_profile_cflags += -pipe -mmacosx-version-min=10.7 -msse2 - SimulationController_profile_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables SimulationController_profile_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow SimulationController_profile_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +SimulationController_profile_cflags += -Wno-c++11-extensions SimulationController_profile_cflags += -O3 -fno-strict-aliasing SimulationController_profile_cppflags := $(SimulationController_profile_common_cflags) SimulationController_profile_cppflags += -arch x86_64 @@ -387,6 +392,7 @@ SimulationController_profile_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 SimulationController_profile_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables SimulationController_profile_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow SimulationController_profile_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +SimulationController_profile_cppflags += -Wno-c++11-extensions SimulationController_profile_cppflags += -O3 -fno-strict-aliasing SimulationController_profile_lflags := $(SimulationController_custom_lflags) SimulationController_profile_lflags += $(addprefix -L, $(SimulationController_profile_lpaths)) @@ -505,6 +511,7 @@ SimulationController_release_cflags += -pipe -mmacosx-version-min=10.7 -msse2 - SimulationController_release_cflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables SimulationController_release_cflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow SimulationController_release_cflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +SimulationController_release_cflags += -Wno-c++11-extensions SimulationController_release_cflags += -O3 -fno-strict-aliasing SimulationController_release_cppflags := $(SimulationController_release_common_cflags) SimulationController_release_cppflags += -arch x86_64 @@ -512,6 +519,7 @@ SimulationController_release_cppflags += -pipe -mmacosx-version-min=10.7 -msse2 SimulationController_release_cppflags += -Wall -Wextra -fstrict-aliasing -Wstrict-aliasing=2 -pedantic -Weverything -Wno-documentation-deprecated-sync -Wno-documentation-unknown-command -Wno-float-equal -Wno-padded -Wno-weak-vtables SimulationController_release_cppflags += -Wno-cast-align -Wno-conversion -Wno-missing-variable-declarations -Wno-shift-sign-overflow SimulationController_release_cppflags += -Wno-exit-time-destructors -Wno-global-constructors -Wno-missing-prototypes -Wno-unreachable-code -Wno-unused-macros -Wno-used-but-marked-unused -Wno-weak-template-vtables -Wno-invalid-offsetof +SimulationController_release_cppflags += -Wno-c++11-extensions SimulationController_release_cppflags += -O3 -fno-strict-aliasing SimulationController_release_lflags := $(SimulationController_custom_lflags) SimulationController_release_lflags += $(addprefix -L, $(SimulationController_release_lpaths)) diff --git a/PhysX_3.4/Source/compiler/vc11win32/PhysXExtensions.vcxproj b/PhysX_3.4/Source/compiler/vc11win32/PhysXExtensions.vcxproj index f15d0d96..6bff06dc 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=0;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=22017532;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=0;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=22017532;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=0;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=22017532;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=0;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=22017532;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> @@ -266,8 +266,6 @@ </ClInclude> <ClInclude Include="..\..\..\Include\extensions\PxJointLimit.h"> </ClInclude> - <ClInclude Include="..\..\..\Include\extensions\PxJointRepXSerializer.h"> - </ClInclude> <ClInclude Include="..\..\..\Include\extensions\PxMassProperties.h"> </ClInclude> <ClInclude Include="..\..\..\Include\extensions\PxParticleExt.h"> @@ -448,6 +446,8 @@ </ClCompile> </ItemGroup> <ItemGroup> + <ClInclude Include="..\..\PhysXExtensions\src\serialization\Xml\SnJointRepXSerializer.h"> + </ClInclude> <ClInclude Include="..\..\PhysXExtensions\src\serialization\Xml\SnPxStreamOperators.h"> </ClInclude> <ClInclude Include="..\..\PhysXExtensions\src\serialization\Xml\SnRepX1_0Defaults.h"> diff --git a/PhysX_3.4/Source/compiler/vc11win64/PhysXExtensions.vcxproj b/PhysX_3.4/Source/compiler/vc11win64/PhysXExtensions.vcxproj index 66079cc2..3e56d41f 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=0;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=22017532;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=0;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=22017532;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=0;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=22017532;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=0;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=22017532;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> @@ -262,8 +262,6 @@ </ClInclude> <ClInclude Include="..\..\..\Include\extensions\PxJointLimit.h"> </ClInclude> - <ClInclude Include="..\..\..\Include\extensions\PxJointRepXSerializer.h"> - </ClInclude> <ClInclude Include="..\..\..\Include\extensions\PxMassProperties.h"> </ClInclude> <ClInclude Include="..\..\..\Include\extensions\PxParticleExt.h"> @@ -444,6 +442,8 @@ </ClCompile> </ItemGroup> <ItemGroup> + <ClInclude Include="..\..\PhysXExtensions\src\serialization\Xml\SnJointRepXSerializer.h"> + </ClInclude> <ClInclude Include="..\..\PhysXExtensions\src\serialization\Xml\SnPxStreamOperators.h"> </ClInclude> <ClInclude Include="..\..\PhysXExtensions\src\serialization\Xml\SnRepX1_0Defaults.h"> diff --git a/PhysX_3.4/Source/compiler/vc12win32/PhysXExtensions.vcxproj b/PhysX_3.4/Source/compiler/vc12win32/PhysXExtensions.vcxproj index 72e3578d..a2a76976 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=0;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=22017532;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=0;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=22017532;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=0;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=22017532;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=0;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=22017532;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> @@ -266,8 +266,6 @@ </ClInclude> <ClInclude Include="..\..\..\Include\extensions\PxJointLimit.h"> </ClInclude> - <ClInclude Include="..\..\..\Include\extensions\PxJointRepXSerializer.h"> - </ClInclude> <ClInclude Include="..\..\..\Include\extensions\PxMassProperties.h"> </ClInclude> <ClInclude Include="..\..\..\Include\extensions\PxParticleExt.h"> @@ -448,6 +446,8 @@ </ClCompile> </ItemGroup> <ItemGroup> + <ClInclude Include="..\..\PhysXExtensions\src\serialization\Xml\SnJointRepXSerializer.h"> + </ClInclude> <ClInclude Include="..\..\PhysXExtensions\src\serialization\Xml\SnPxStreamOperators.h"> </ClInclude> <ClInclude Include="..\..\PhysXExtensions\src\serialization\Xml\SnRepX1_0Defaults.h"> diff --git a/PhysX_3.4/Source/compiler/vc12win64/PhysXExtensions.vcxproj b/PhysX_3.4/Source/compiler/vc12win64/PhysXExtensions.vcxproj index 7a672ab4..d866df17 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=0;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=22017532;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=0;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=22017532;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=0;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=22017532;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=0;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=22017532;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> @@ -262,8 +262,6 @@ </ClInclude> <ClInclude Include="..\..\..\Include\extensions\PxJointLimit.h"> </ClInclude> - <ClInclude Include="..\..\..\Include\extensions\PxJointRepXSerializer.h"> - </ClInclude> <ClInclude Include="..\..\..\Include\extensions\PxMassProperties.h"> </ClInclude> <ClInclude Include="..\..\..\Include\extensions\PxParticleExt.h"> @@ -444,6 +442,8 @@ </ClCompile> </ItemGroup> <ItemGroup> + <ClInclude Include="..\..\PhysXExtensions\src\serialization\Xml\SnJointRepXSerializer.h"> + </ClInclude> <ClInclude Include="..\..\PhysXExtensions\src\serialization\Xml\SnPxStreamOperators.h"> </ClInclude> <ClInclude Include="..\..\PhysXExtensions\src\serialization\Xml\SnRepX1_0Defaults.h"> diff --git a/PhysX_3.4/Source/compiler/vc14win32/PhysXExtensions.vcxproj b/PhysX_3.4/Source/compiler/vc14win32/PhysXExtensions.vcxproj index fbcfdafc..25900018 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=0;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=22017532;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=0;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=22017532;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=0;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=22017532;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=0;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=22017532;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> @@ -266,8 +266,6 @@ </ClInclude> <ClInclude Include="..\..\..\Include\extensions\PxJointLimit.h"> </ClInclude> - <ClInclude Include="..\..\..\Include\extensions\PxJointRepXSerializer.h"> - </ClInclude> <ClInclude Include="..\..\..\Include\extensions\PxMassProperties.h"> </ClInclude> <ClInclude Include="..\..\..\Include\extensions\PxParticleExt.h"> @@ -448,6 +446,8 @@ </ClCompile> </ItemGroup> <ItemGroup> + <ClInclude Include="..\..\PhysXExtensions\src\serialization\Xml\SnJointRepXSerializer.h"> + </ClInclude> <ClInclude Include="..\..\PhysXExtensions\src\serialization\Xml\SnPxStreamOperators.h"> </ClInclude> <ClInclude Include="..\..\PhysXExtensions\src\serialization\Xml\SnRepX1_0Defaults.h"> diff --git a/PhysX_3.4/Source/compiler/vc14win64/PhysXExtensions.vcxproj b/PhysX_3.4/Source/compiler/vc14win64/PhysXExtensions.vcxproj index 8a463aaf..f058dd54 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=0;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=22017532;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=0;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=22017532;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=0;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=22017532;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=0;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=22017532;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> @@ -262,8 +262,6 @@ </ClInclude> <ClInclude Include="..\..\..\Include\extensions\PxJointLimit.h"> </ClInclude> - <ClInclude Include="..\..\..\Include\extensions\PxJointRepXSerializer.h"> - </ClInclude> <ClInclude Include="..\..\..\Include\extensions\PxMassProperties.h"> </ClInclude> <ClInclude Include="..\..\..\Include\extensions\PxParticleExt.h"> @@ -444,6 +442,8 @@ </ClCompile> </ItemGroup> <ItemGroup> + <ClInclude Include="..\..\PhysXExtensions\src\serialization\Xml\SnJointRepXSerializer.h"> + </ClInclude> <ClInclude Include="..\..\PhysXExtensions\src\serialization\Xml\SnPxStreamOperators.h"> </ClInclude> <ClInclude Include="..\..\PhysXExtensions\src\serialization\Xml\SnRepX1_0Defaults.h"> 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 17c698e6..2b9a2e50 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 */ - FFFF5cb4f8c07fb05cb4f8c0 /* SceneQuery in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD5cb732c07fb05cb732c0 /* SceneQuery */; }; - FFFF5cb4f9207fb05cb4f920 /* SimulationController in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD5cb778e07fb05cb778e0 /* SimulationController */; }; - FFFF5a9e40387fb05a9e4038 /* NpActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e40387fb05a9e4038 /* NpActor.cpp */; }; - FFFF5a9e40a07fb05a9e40a0 /* NpAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e40a07fb05a9e40a0 /* NpAggregate.cpp */; }; - FFFF5a9e41087fb05a9e4108 /* NpArticulation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e41087fb05a9e4108 /* NpArticulation.cpp */; }; - FFFF5a9e41707fb05a9e4170 /* NpArticulationJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e41707fb05a9e4170 /* NpArticulationJoint.cpp */; }; - FFFF5a9e41d87fb05a9e41d8 /* NpArticulationLink.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e41d87fb05a9e41d8 /* NpArticulationLink.cpp */; }; - FFFF5a9e42407fb05a9e4240 /* NpBatchQuery.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e42407fb05a9e4240 /* NpBatchQuery.cpp */; }; - FFFF5a9e42a87fb05a9e42a8 /* NpConstraint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e42a87fb05a9e42a8 /* NpConstraint.cpp */; }; - FFFF5a9e43107fb05a9e4310 /* NpFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e43107fb05a9e4310 /* NpFactory.cpp */; }; - FFFF5a9e43787fb05a9e4378 /* NpMaterial.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e43787fb05a9e4378 /* NpMaterial.cpp */; }; - FFFF5a9e43e07fb05a9e43e0 /* NpMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e43e07fb05a9e43e0 /* NpMetaData.cpp */; }; - FFFF5a9e44487fb05a9e4448 /* NpPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e44487fb05a9e4448 /* NpPhysics.cpp */; }; - FFFF5a9e44b07fb05a9e44b0 /* NpPvdSceneQueryCollector.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e44b07fb05a9e44b0 /* NpPvdSceneQueryCollector.cpp */; }; - FFFF5a9e45187fb05a9e4518 /* NpReadCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e45187fb05a9e4518 /* NpReadCheck.cpp */; }; - FFFF5a9e45807fb05a9e4580 /* NpRigidDynamic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e45807fb05a9e4580 /* NpRigidDynamic.cpp */; }; - FFFF5a9e45e87fb05a9e45e8 /* NpRigidStatic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e45e87fb05a9e45e8 /* NpRigidStatic.cpp */; }; - FFFF5a9e46507fb05a9e4650 /* NpScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e46507fb05a9e4650 /* NpScene.cpp */; }; - FFFF5a9e46b87fb05a9e46b8 /* NpSceneQueries.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e46b87fb05a9e46b8 /* NpSceneQueries.cpp */; }; - FFFF5a9e47207fb05a9e4720 /* NpSerializerAdapter.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e47207fb05a9e4720 /* NpSerializerAdapter.cpp */; }; - FFFF5a9e47887fb05a9e4788 /* NpShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e47887fb05a9e4788 /* NpShape.cpp */; }; - FFFF5a9e47f07fb05a9e47f0 /* NpShapeManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e47f07fb05a9e47f0 /* NpShapeManager.cpp */; }; - FFFF5a9e48587fb05a9e4858 /* NpSpatialIndex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e48587fb05a9e4858 /* NpSpatialIndex.cpp */; }; - FFFF5a9e48c07fb05a9e48c0 /* NpVolumeCache.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e48c07fb05a9e48c0 /* NpVolumeCache.cpp */; }; - FFFF5a9e49287fb05a9e4928 /* NpWriteCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e49287fb05a9e4928 /* NpWriteCheck.cpp */; }; - FFFF5a9e49907fb05a9e4990 /* PvdMetaDataPvdBinding.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e49907fb05a9e4990 /* PvdMetaDataPvdBinding.cpp */; }; - FFFF5a9e49f87fb05a9e49f8 /* PvdPhysicsClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e49f87fb05a9e49f8 /* PvdPhysicsClient.cpp */; }; - FFFF5a9e4c007fb05a9e4c00 /* particles/NpParticleFluid.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e4c007fb05a9e4c00 /* particles/NpParticleFluid.cpp */; }; - FFFF5a9e4c687fb05a9e4c68 /* particles/NpParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e4c687fb05a9e4c68 /* particles/NpParticleSystem.cpp */; }; - FFFF5a9e54207fb05a9e5420 /* buffering/ScbActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e54207fb05a9e5420 /* buffering/ScbActor.cpp */; }; - FFFF5a9e54887fb05a9e5488 /* buffering/ScbAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e54887fb05a9e5488 /* buffering/ScbAggregate.cpp */; }; - FFFF5a9e54f07fb05a9e54f0 /* buffering/ScbBase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e54f07fb05a9e54f0 /* buffering/ScbBase.cpp */; }; - FFFF5a9e55587fb05a9e5558 /* buffering/ScbCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e55587fb05a9e5558 /* buffering/ScbCloth.cpp */; }; - FFFF5a9e55c07fb05a9e55c0 /* buffering/ScbMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e55c07fb05a9e55c0 /* buffering/ScbMetaData.cpp */; }; - FFFF5a9e56287fb05a9e5628 /* buffering/ScbParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e56287fb05a9e5628 /* buffering/ScbParticleSystem.cpp */; }; - FFFF5a9e56907fb05a9e5690 /* buffering/ScbScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e56907fb05a9e5690 /* buffering/ScbScene.cpp */; }; - FFFF5a9e56f87fb05a9e56f8 /* buffering/ScbScenePvdClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e56f87fb05a9e56f8 /* buffering/ScbScenePvdClient.cpp */; }; - FFFF5a9e57607fb05a9e5760 /* buffering/ScbShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e57607fb05a9e5760 /* buffering/ScbShape.cpp */; }; - FFFF5a9e59007fb05a9e5900 /* cloth/NpCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e59007fb05a9e5900 /* cloth/NpCloth.cpp */; }; - FFFF5a9e59687fb05a9e5968 /* cloth/NpClothFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e59687fb05a9e5968 /* cloth/NpClothFabric.cpp */; }; - FFFF5a9e59d07fb05a9e59d0 /* cloth/NpClothParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e59d07fb05a9e59d0 /* cloth/NpClothParticleData.cpp */; }; - FFFF5a9e5a387fb05a9e5a38 /* ../../ImmediateMode/src/NpImmediateMode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9e5a387fb05a9e5a38 /* ../../ImmediateMode/src/NpImmediateMode.cpp */; }; - FFFF5a9e25a87fb05a9e25a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD5a9e25a87fb05a9e25a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */; }; - FFFF5a9e26107fb05a9e2610 /* core/src/PxMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD5a9e26107fb05a9e2610 /* core/src/PxMetaDataObjects.cpp */; }; + FFFFebea41e07febebea41e0 /* SceneQuery in Frameworks */= { isa = PBXBuildFile; fileRef = FFFDebec79007febebec7900 /* SceneQuery */; }; + FFFFebea7f007febebea7f00 /* SimulationController in Frameworks */= { isa = PBXBuildFile; fileRef = FFFDebecbe607febebecbe60 /* SimulationController */; }; + FFFFec0448387febec044838 /* NpActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec0448387febec044838 /* NpActor.cpp */; }; + FFFFec0448a07febec0448a0 /* NpAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec0448a07febec0448a0 /* NpAggregate.cpp */; }; + FFFFec0449087febec044908 /* NpArticulation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec0449087febec044908 /* NpArticulation.cpp */; }; + FFFFec0449707febec044970 /* NpArticulationJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec0449707febec044970 /* NpArticulationJoint.cpp */; }; + FFFFec0449d87febec0449d8 /* NpArticulationLink.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec0449d87febec0449d8 /* NpArticulationLink.cpp */; }; + FFFFec044a407febec044a40 /* NpBatchQuery.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec044a407febec044a40 /* NpBatchQuery.cpp */; }; + FFFFec044aa87febec044aa8 /* NpConstraint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec044aa87febec044aa8 /* NpConstraint.cpp */; }; + FFFFec044b107febec044b10 /* NpFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec044b107febec044b10 /* NpFactory.cpp */; }; + FFFFec044b787febec044b78 /* NpMaterial.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec044b787febec044b78 /* NpMaterial.cpp */; }; + FFFFec044be07febec044be0 /* NpMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec044be07febec044be0 /* NpMetaData.cpp */; }; + FFFFec044c487febec044c48 /* NpPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec044c487febec044c48 /* NpPhysics.cpp */; }; + FFFFec044cb07febec044cb0 /* NpPvdSceneQueryCollector.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec044cb07febec044cb0 /* NpPvdSceneQueryCollector.cpp */; }; + FFFFec044d187febec044d18 /* NpReadCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec044d187febec044d18 /* NpReadCheck.cpp */; }; + FFFFec044d807febec044d80 /* NpRigidDynamic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec044d807febec044d80 /* NpRigidDynamic.cpp */; }; + FFFFec044de87febec044de8 /* NpRigidStatic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec044de87febec044de8 /* NpRigidStatic.cpp */; }; + FFFFec044e507febec044e50 /* NpScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec044e507febec044e50 /* NpScene.cpp */; }; + FFFFec044eb87febec044eb8 /* NpSceneQueries.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec044eb87febec044eb8 /* NpSceneQueries.cpp */; }; + FFFFec044f207febec044f20 /* NpSerializerAdapter.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec044f207febec044f20 /* NpSerializerAdapter.cpp */; }; + FFFFec044f887febec044f88 /* NpShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec044f887febec044f88 /* NpShape.cpp */; }; + FFFFec044ff07febec044ff0 /* NpShapeManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec044ff07febec044ff0 /* NpShapeManager.cpp */; }; + FFFFec0450587febec045058 /* NpSpatialIndex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec0450587febec045058 /* NpSpatialIndex.cpp */; }; + FFFFec0450c07febec0450c0 /* NpVolumeCache.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec0450c07febec0450c0 /* NpVolumeCache.cpp */; }; + FFFFec0451287febec045128 /* NpWriteCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec0451287febec045128 /* NpWriteCheck.cpp */; }; + FFFFec0451907febec045190 /* PvdMetaDataPvdBinding.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec0451907febec045190 /* PvdMetaDataPvdBinding.cpp */; }; + FFFFec0451f87febec0451f8 /* PvdPhysicsClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec0451f87febec0451f8 /* PvdPhysicsClient.cpp */; }; + FFFFec0454007febec045400 /* particles/NpParticleFluid.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec0454007febec045400 /* particles/NpParticleFluid.cpp */; }; + FFFFec0454687febec045468 /* particles/NpParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec0454687febec045468 /* particles/NpParticleSystem.cpp */; }; + FFFFec045c207febec045c20 /* buffering/ScbActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec045c207febec045c20 /* buffering/ScbActor.cpp */; }; + FFFFec045c887febec045c88 /* buffering/ScbAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec045c887febec045c88 /* buffering/ScbAggregate.cpp */; }; + FFFFec045cf07febec045cf0 /* buffering/ScbBase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec045cf07febec045cf0 /* buffering/ScbBase.cpp */; }; + FFFFec045d587febec045d58 /* buffering/ScbCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec045d587febec045d58 /* buffering/ScbCloth.cpp */; }; + FFFFec045dc07febec045dc0 /* buffering/ScbMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec045dc07febec045dc0 /* buffering/ScbMetaData.cpp */; }; + FFFFec045e287febec045e28 /* buffering/ScbParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec045e287febec045e28 /* buffering/ScbParticleSystem.cpp */; }; + FFFFec045e907febec045e90 /* buffering/ScbScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec045e907febec045e90 /* buffering/ScbScene.cpp */; }; + FFFFec045ef87febec045ef8 /* buffering/ScbScenePvdClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec045ef87febec045ef8 /* buffering/ScbScenePvdClient.cpp */; }; + FFFFec045f607febec045f60 /* buffering/ScbShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec045f607febec045f60 /* buffering/ScbShape.cpp */; }; + FFFFec0461007febec046100 /* cloth/NpCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec0461007febec046100 /* cloth/NpCloth.cpp */; }; + FFFFec0461687febec046168 /* cloth/NpClothFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec0461687febec046168 /* cloth/NpClothFabric.cpp */; }; + FFFFec0461d07febec0461d0 /* cloth/NpClothParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec0461d07febec0461d0 /* cloth/NpClothParticleData.cpp */; }; + FFFFec0462387febec046238 /* ../../ImmediateMode/src/NpImmediateMode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec0462387febec046238 /* ../../ImmediateMode/src/NpImmediateMode.cpp */; }; + FFFFec03e9a87febec03e9a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDec03e9a87febec03e9a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */; }; + FFFFec03ea107febec03ea10 /* core/src/PxMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDec03ea107febec03ea10 /* core/src/PxMetaDataObjects.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD5cb2e4807fb05cb2e480 /* PhysX */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysX"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD5a9e32007fb05a9e3200 /* NpActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.h"; path = "../../PhysX/src/NpActor.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e32687fb05a9e3268 /* NpActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActorTemplate.h"; path = "../../PhysX/src/NpActorTemplate.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e32d07fb05a9e32d0 /* NpAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.h"; path = "../../PhysX/src/NpAggregate.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e33387fb05a9e3338 /* NpArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.h"; path = "../../PhysX/src/NpArticulation.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e33a07fb05a9e33a0 /* NpArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.h"; path = "../../PhysX/src/NpArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e34087fb05a9e3408 /* NpArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.h"; path = "../../PhysX/src/NpArticulationLink.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e34707fb05a9e3470 /* NpBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.h"; path = "../../PhysX/src/NpBatchQuery.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e34d87fb05a9e34d8 /* NpCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpCast.h"; path = "../../PhysX/src/NpCast.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e35407fb05a9e3540 /* NpConnector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConnector.h"; path = "../../PhysX/src/NpConnector.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e35a87fb05a9e35a8 /* NpConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.h"; path = "../../PhysX/src/NpConstraint.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e36107fb05a9e3610 /* NpFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.h"; path = "../../PhysX/src/NpFactory.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e36787fb05a9e3678 /* NpMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.h"; path = "../../PhysX/src/NpMaterial.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e36e07fb05a9e36e0 /* NpMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterialManager.h"; path = "../../PhysX/src/NpMaterialManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e37487fb05a9e3748 /* NpPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.h"; path = "../../PhysX/src/NpPhysics.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e37b07fb05a9e37b0 /* NpPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysicsInsertionCallback.h"; path = "../../PhysX/src/NpPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e38187fb05a9e3818 /* NpPtrTableStorageManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPtrTableStorageManager.h"; path = "../../PhysX/src/NpPtrTableStorageManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e38807fb05a9e3880 /* NpPvdSceneQueryCollector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.h"; path = "../../PhysX/src/NpPvdSceneQueryCollector.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e38e87fb05a9e38e8 /* NpQueryShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpQueryShared.h"; path = "../../PhysX/src/NpQueryShared.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e39507fb05a9e3950 /* NpReadCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.h"; path = "../../PhysX/src/NpReadCheck.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e39b87fb05a9e39b8 /* NpRigidActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplate.h"; path = "../../PhysX/src/NpRigidActorTemplate.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e3a207fb05a9e3a20 /* NpRigidActorTemplateInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplateInternal.h"; path = "../../PhysX/src/NpRigidActorTemplateInternal.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e3a887fb05a9e3a88 /* NpRigidBodyTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidBodyTemplate.h"; path = "../../PhysX/src/NpRigidBodyTemplate.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e3af07fb05a9e3af0 /* NpRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.h"; path = "../../PhysX/src/NpRigidDynamic.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e3b587fb05a9e3b58 /* NpRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.h"; path = "../../PhysX/src/NpRigidStatic.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e3bc07fb05a9e3bc0 /* NpScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.h"; path = "../../PhysX/src/NpScene.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e3c287fb05a9e3c28 /* NpSceneQueries.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.h"; path = "../../PhysX/src/NpSceneQueries.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e3c907fb05a9e3c90 /* NpShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.h"; path = "../../PhysX/src/NpShape.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e3cf87fb05a9e3cf8 /* NpShapeManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.h"; path = "../../PhysX/src/NpShapeManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e3d607fb05a9e3d60 /* NpSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.h"; path = "../../PhysX/src/NpSpatialIndex.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e3dc87fb05a9e3dc8 /* NpVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.h"; path = "../../PhysX/src/NpVolumeCache.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e3e307fb05a9e3e30 /* NpWriteCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.h"; path = "../../PhysX/src/NpWriteCheck.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e3e987fb05a9e3e98 /* PvdMetaDataBindingData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataBindingData.h"; path = "../../PhysX/src/PvdMetaDataBindingData.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e3f007fb05a9e3f00 /* PvdMetaDataPvdBinding.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.h"; path = "../../PhysX/src/PvdMetaDataPvdBinding.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e3f687fb05a9e3f68 /* PvdPhysicsClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.h"; path = "../../PhysX/src/PvdPhysicsClient.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e3fd07fb05a9e3fd0 /* PvdTypeNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdTypeNames.h"; path = "../../PhysX/src/PvdTypeNames.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e40387fb05a9e4038 /* NpActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.cpp"; path = "../../PhysX/src/NpActor.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e40a07fb05a9e40a0 /* NpAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.cpp"; path = "../../PhysX/src/NpAggregate.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e41087fb05a9e4108 /* NpArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.cpp"; path = "../../PhysX/src/NpArticulation.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e41707fb05a9e4170 /* NpArticulationJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.cpp"; path = "../../PhysX/src/NpArticulationJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e41d87fb05a9e41d8 /* NpArticulationLink.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.cpp"; path = "../../PhysX/src/NpArticulationLink.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e42407fb05a9e4240 /* NpBatchQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.cpp"; path = "../../PhysX/src/NpBatchQuery.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e42a87fb05a9e42a8 /* NpConstraint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.cpp"; path = "../../PhysX/src/NpConstraint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e43107fb05a9e4310 /* NpFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.cpp"; path = "../../PhysX/src/NpFactory.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e43787fb05a9e4378 /* NpMaterial.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.cpp"; path = "../../PhysX/src/NpMaterial.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e43e07fb05a9e43e0 /* NpMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMetaData.cpp"; path = "../../PhysX/src/NpMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e44487fb05a9e4448 /* NpPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.cpp"; path = "../../PhysX/src/NpPhysics.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e44b07fb05a9e44b0 /* NpPvdSceneQueryCollector.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.cpp"; path = "../../PhysX/src/NpPvdSceneQueryCollector.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e45187fb05a9e4518 /* NpReadCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.cpp"; path = "../../PhysX/src/NpReadCheck.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e45807fb05a9e4580 /* NpRigidDynamic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.cpp"; path = "../../PhysX/src/NpRigidDynamic.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e45e87fb05a9e45e8 /* NpRigidStatic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.cpp"; path = "../../PhysX/src/NpRigidStatic.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e46507fb05a9e4650 /* NpScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.cpp"; path = "../../PhysX/src/NpScene.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e46b87fb05a9e46b8 /* NpSceneQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.cpp"; path = "../../PhysX/src/NpSceneQueries.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e47207fb05a9e4720 /* NpSerializerAdapter.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSerializerAdapter.cpp"; path = "../../PhysX/src/NpSerializerAdapter.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e47887fb05a9e4788 /* NpShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.cpp"; path = "../../PhysX/src/NpShape.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e47f07fb05a9e47f0 /* NpShapeManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.cpp"; path = "../../PhysX/src/NpShapeManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e48587fb05a9e4858 /* NpSpatialIndex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.cpp"; path = "../../PhysX/src/NpSpatialIndex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e48c07fb05a9e48c0 /* NpVolumeCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.cpp"; path = "../../PhysX/src/NpVolumeCache.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e49287fb05a9e4928 /* NpWriteCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.cpp"; path = "../../PhysX/src/NpWriteCheck.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e49907fb05a9e4990 /* PvdMetaDataPvdBinding.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.cpp"; path = "../../PhysX/src/PvdMetaDataPvdBinding.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e49f87fb05a9e49f8 /* PvdPhysicsClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.cpp"; path = "../../PhysX/src/PvdPhysicsClient.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e4a607fb05a9e4a60 /* particles/NpParticleBaseTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleBaseTemplate.h"; path = "../../PhysX/src/particles/NpParticleBaseTemplate.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e4ac87fb05a9e4ac8 /* particles/NpParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.h"; path = "../../PhysX/src/particles/NpParticleFluid.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e4b307fb05a9e4b30 /* particles/NpParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluidReadData.h"; path = "../../PhysX/src/particles/NpParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e4b987fb05a9e4b98 /* particles/NpParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.h"; path = "../../PhysX/src/particles/NpParticleSystem.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e4c007fb05a9e4c00 /* particles/NpParticleFluid.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.cpp"; path = "../../PhysX/src/particles/NpParticleFluid.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e4c687fb05a9e4c68 /* particles/NpParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.cpp"; path = "../../PhysX/src/particles/NpParticleSystem.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e4cd07fb05a9e4cd0 /* buffering/ScbActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.h"; path = "../../PhysX/src/buffering/ScbActor.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e4d387fb05a9e4d38 /* buffering/ScbAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.h"; path = "../../PhysX/src/buffering/ScbAggregate.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e4da07fb05a9e4da0 /* buffering/ScbArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulation.h"; path = "../../PhysX/src/buffering/ScbArticulation.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e4e087fb05a9e4e08 /* buffering/ScbArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulationJoint.h"; path = "../../PhysX/src/buffering/ScbArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e4e707fb05a9e4e70 /* buffering/ScbBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.h"; path = "../../PhysX/src/buffering/ScbBase.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e4ed87fb05a9e4ed8 /* buffering/ScbBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBody.h"; path = "../../PhysX/src/buffering/ScbBody.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e4f407fb05a9e4f40 /* buffering/ScbCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.h"; path = "../../PhysX/src/buffering/ScbCloth.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e4fa87fb05a9e4fa8 /* buffering/ScbConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbConstraint.h"; path = "../../PhysX/src/buffering/ScbConstraint.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e50107fb05a9e5010 /* buffering/ScbDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbDefs.h"; path = "../../PhysX/src/buffering/ScbDefs.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e50787fb05a9e5078 /* buffering/ScbNpDeps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbNpDeps.h"; path = "../../PhysX/src/buffering/ScbNpDeps.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e50e07fb05a9e50e0 /* buffering/ScbParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.h"; path = "../../PhysX/src/buffering/ScbParticleSystem.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e51487fb05a9e5148 /* buffering/ScbRigidObject.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidObject.h"; path = "../../PhysX/src/buffering/ScbRigidObject.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e51b07fb05a9e51b0 /* buffering/ScbRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidStatic.h"; path = "../../PhysX/src/buffering/ScbRigidStatic.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e52187fb05a9e5218 /* buffering/ScbScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.h"; path = "../../PhysX/src/buffering/ScbScene.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e52807fb05a9e5280 /* buffering/ScbSceneBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbSceneBuffer.h"; path = "../../PhysX/src/buffering/ScbSceneBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e52e87fb05a9e52e8 /* buffering/ScbScenePvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.h"; path = "../../PhysX/src/buffering/ScbScenePvdClient.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e53507fb05a9e5350 /* buffering/ScbShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.h"; path = "../../PhysX/src/buffering/ScbShape.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e53b87fb05a9e53b8 /* buffering/ScbType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbType.h"; path = "../../PhysX/src/buffering/ScbType.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e54207fb05a9e5420 /* buffering/ScbActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.cpp"; path = "../../PhysX/src/buffering/ScbActor.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e54887fb05a9e5488 /* buffering/ScbAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.cpp"; path = "../../PhysX/src/buffering/ScbAggregate.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e54f07fb05a9e54f0 /* buffering/ScbBase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.cpp"; path = "../../PhysX/src/buffering/ScbBase.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e55587fb05a9e5558 /* buffering/ScbCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.cpp"; path = "../../PhysX/src/buffering/ScbCloth.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e55c07fb05a9e55c0 /* buffering/ScbMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbMetaData.cpp"; path = "../../PhysX/src/buffering/ScbMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e56287fb05a9e5628 /* buffering/ScbParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.cpp"; path = "../../PhysX/src/buffering/ScbParticleSystem.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e56907fb05a9e5690 /* buffering/ScbScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.cpp"; path = "../../PhysX/src/buffering/ScbScene.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e56f87fb05a9e56f8 /* buffering/ScbScenePvdClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.cpp"; path = "../../PhysX/src/buffering/ScbScenePvdClient.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e57607fb05a9e5760 /* buffering/ScbShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.cpp"; path = "../../PhysX/src/buffering/ScbShape.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e57c87fb05a9e57c8 /* cloth/NpCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.h"; path = "../../PhysX/src/cloth/NpCloth.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e58307fb05a9e5830 /* cloth/NpClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.h"; path = "../../PhysX/src/cloth/NpClothFabric.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e58987fb05a9e5898 /* cloth/NpClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.h"; path = "../../PhysX/src/cloth/NpClothParticleData.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e59007fb05a9e5900 /* cloth/NpCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.cpp"; path = "../../PhysX/src/cloth/NpCloth.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e59687fb05a9e5968 /* cloth/NpClothFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.cpp"; path = "../../PhysX/src/cloth/NpClothFabric.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e59d07fb05a9e59d0 /* cloth/NpClothParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.cpp"; path = "../../PhysX/src/cloth/NpClothParticleData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e5a387fb05a9e5a38 /* ../../ImmediateMode/src/NpImmediateMode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "../../ImmediateMode/src/NpImmediateMode.cpp"; path = "../../ImmediateMode/src/NpImmediateMode.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e0c007fb05a9e0c00 /* PxActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxActor.h"; path = "../../../Include/PxActor.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e0c687fb05a9e0c68 /* PxAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAggregate.h"; path = "../../../Include/PxAggregate.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e0cd07fb05a9e0cd0 /* PxArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulation.h"; path = "../../../Include/PxArticulation.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e0d387fb05a9e0d38 /* PxArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationJoint.h"; path = "../../../Include/PxArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e0da07fb05a9e0da0 /* PxArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationLink.h"; path = "../../../Include/PxArticulationLink.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e0e087fb05a9e0e08 /* PxBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQuery.h"; path = "../../../Include/PxBatchQuery.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e0e707fb05a9e0e70 /* PxBatchQueryDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQueryDesc.h"; path = "../../../Include/PxBatchQueryDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e0ed87fb05a9e0ed8 /* PxBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhase.h"; path = "../../../Include/PxBroadPhase.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e0f407fb05a9e0f40 /* PxClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClient.h"; path = "../../../Include/PxClient.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e0fa87fb05a9e0fa8 /* PxConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraint.h"; path = "../../../Include/PxConstraint.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e10107fb05a9e1010 /* PxConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintDesc.h"; path = "../../../Include/PxConstraintDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e10787fb05a9e1078 /* PxContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContact.h"; path = "../../../Include/PxContact.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e10e07fb05a9e10e0 /* PxContactModifyCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContactModifyCallback.h"; path = "../../../Include/PxContactModifyCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e11487fb05a9e1148 /* PxDeletionListener.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDeletionListener.h"; path = "../../../Include/PxDeletionListener.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e11b07fb05a9e11b0 /* PxFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFiltering.h"; path = "../../../Include/PxFiltering.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e12187fb05a9e1218 /* PxForceMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxForceMode.h"; path = "../../../Include/PxForceMode.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e12807fb05a9e1280 /* PxImmediateMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxImmediateMode.h"; path = "../../../Include/PxImmediateMode.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e12e87fb05a9e12e8 /* PxLockedData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxLockedData.h"; path = "../../../Include/PxLockedData.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e13507fb05a9e1350 /* PxMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMaterial.h"; path = "../../../Include/PxMaterial.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e13b87fb05a9e13b8 /* PxPhysXConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysXConfig.h"; path = "../../../Include/PxPhysXConfig.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e14207fb05a9e1420 /* PxPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysics.h"; path = "../../../Include/PxPhysics.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e14887fb05a9e1488 /* PxPhysicsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsAPI.h"; path = "../../../Include/PxPhysicsAPI.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e14f07fb05a9e14f0 /* PxPhysicsSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsSerialization.h"; path = "../../../Include/PxPhysicsSerialization.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e15587fb05a9e1558 /* PxPhysicsVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsVersion.h"; path = "../../../Include/PxPhysicsVersion.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e15c07fb05a9e15c0 /* PxPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPruningStructure.h"; path = "../../../Include/PxPruningStructure.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e16287fb05a9e1628 /* PxQueryFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryFiltering.h"; path = "../../../Include/PxQueryFiltering.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e16907fb05a9e1690 /* PxQueryReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryReport.h"; path = "../../../Include/PxQueryReport.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e16f87fb05a9e16f8 /* PxRigidActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActor.h"; path = "../../../Include/PxRigidActor.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e17607fb05a9e1760 /* PxRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBody.h"; path = "../../../Include/PxRigidBody.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e17c87fb05a9e17c8 /* PxRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidDynamic.h"; path = "../../../Include/PxRigidDynamic.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e18307fb05a9e1830 /* PxRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidStatic.h"; path = "../../../Include/PxRigidStatic.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e18987fb05a9e1898 /* PxScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxScene.h"; path = "../../../Include/PxScene.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e19007fb05a9e1900 /* PxSceneDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneDesc.h"; path = "../../../Include/PxSceneDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e19687fb05a9e1968 /* PxSceneLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneLock.h"; path = "../../../Include/PxSceneLock.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e19d07fb05a9e19d0 /* PxShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShape.h"; path = "../../../Include/PxShape.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e1a387fb05a9e1a38 /* PxSimulationEventCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationEventCallback.h"; path = "../../../Include/PxSimulationEventCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e1aa07fb05a9e1aa0 /* PxSimulationStatistics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationStatistics.h"; path = "../../../Include/PxSimulationStatistics.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e1b087fb05a9e1b08 /* PxSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSpatialIndex.h"; path = "../../../Include/PxSpatialIndex.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e1b707fb05a9e1b70 /* PxVisualizationParameter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVisualizationParameter.h"; path = "../../../Include/PxVisualizationParameter.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e1bd87fb05a9e1bd8 /* PxVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVolumeCache.h"; path = "../../../Include/PxVolumeCache.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e1c407fb05a9e1c40 /* particles/PxParticleBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBase.h"; path = "../../../Include/particles/PxParticleBase.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e1ca87fb05a9e1ca8 /* particles/PxParticleBaseFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBaseFlag.h"; path = "../../../Include/particles/PxParticleBaseFlag.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e1d107fb05a9e1d10 /* particles/PxParticleCreationData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleCreationData.h"; path = "../../../Include/particles/PxParticleCreationData.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e1d787fb05a9e1d78 /* particles/PxParticleFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFlag.h"; path = "../../../Include/particles/PxParticleFlag.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e1de07fb05a9e1de0 /* particles/PxParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluid.h"; path = "../../../Include/particles/PxParticleFluid.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e1e487fb05a9e1e48 /* particles/PxParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluidReadData.h"; path = "../../../Include/particles/PxParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e1eb07fb05a9e1eb0 /* particles/PxParticleReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleReadData.h"; path = "../../../Include/particles/PxParticleReadData.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e1f187fb05a9e1f18 /* particles/PxParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleSystem.h"; path = "../../../Include/particles/PxParticleSystem.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e1f807fb05a9e1f80 /* pvd/PxPvdSceneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pvd/PxPvdSceneClient.h"; path = "../../../Include/pvd/PxPvdSceneClient.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e1fe87fb05a9e1fe8 /* cloth/PxCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxCloth.h"; path = "../../../Include/cloth/PxCloth.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e20507fb05a9e2050 /* cloth/PxClothCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothCollisionData.h"; path = "../../../Include/cloth/PxClothCollisionData.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e20b87fb05a9e20b8 /* cloth/PxClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothFabric.h"; path = "../../../Include/cloth/PxClothFabric.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e21207fb05a9e2120 /* cloth/PxClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothParticleData.h"; path = "../../../Include/cloth/PxClothParticleData.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e21887fb05a9e2188 /* cloth/PxClothTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothTypes.h"; path = "../../../Include/cloth/PxClothTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e22007fb05a9e2200 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e22687fb05a9e2268 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e22d07fb05a9e22d0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e23387fb05a9e2338 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e23a07fb05a9e23a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e24087fb05a9e2408 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e24707fb05a9e2470 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e24d87fb05a9e24d8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e25407fb05a9e2540 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e25a87fb05a9e25a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "core/src/PxAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXMetaData/core/src/PxAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e26107fb05a9e2610 /* core/src/PxMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "core/src/PxMetaDataObjects.cpp"; path = "../../PhysXMetaData/core/src/PxMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDebe9b7407febebe9b740 /* PhysX */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysX"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDec043a007febec043a00 /* NpActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.h"; path = "../../PhysX/src/NpActor.h"; sourceTree = SOURCE_ROOT; }; + FFFDec043a687febec043a68 /* NpActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActorTemplate.h"; path = "../../PhysX/src/NpActorTemplate.h"; sourceTree = SOURCE_ROOT; }; + FFFDec043ad07febec043ad0 /* NpAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.h"; path = "../../PhysX/src/NpAggregate.h"; sourceTree = SOURCE_ROOT; }; + FFFDec043b387febec043b38 /* NpArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.h"; path = "../../PhysX/src/NpArticulation.h"; sourceTree = SOURCE_ROOT; }; + FFFDec043ba07febec043ba0 /* NpArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.h"; path = "../../PhysX/src/NpArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDec043c087febec043c08 /* NpArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.h"; path = "../../PhysX/src/NpArticulationLink.h"; sourceTree = SOURCE_ROOT; }; + FFFDec043c707febec043c70 /* NpBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.h"; path = "../../PhysX/src/NpBatchQuery.h"; sourceTree = SOURCE_ROOT; }; + FFFDec043cd87febec043cd8 /* NpCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpCast.h"; path = "../../PhysX/src/NpCast.h"; sourceTree = SOURCE_ROOT; }; + FFFDec043d407febec043d40 /* NpConnector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConnector.h"; path = "../../PhysX/src/NpConnector.h"; sourceTree = SOURCE_ROOT; }; + FFFDec043da87febec043da8 /* NpConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.h"; path = "../../PhysX/src/NpConstraint.h"; sourceTree = SOURCE_ROOT; }; + FFFDec043e107febec043e10 /* NpFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.h"; path = "../../PhysX/src/NpFactory.h"; sourceTree = SOURCE_ROOT; }; + FFFDec043e787febec043e78 /* NpMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.h"; path = "../../PhysX/src/NpMaterial.h"; sourceTree = SOURCE_ROOT; }; + FFFDec043ee07febec043ee0 /* NpMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterialManager.h"; path = "../../PhysX/src/NpMaterialManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDec043f487febec043f48 /* NpPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.h"; path = "../../PhysX/src/NpPhysics.h"; sourceTree = SOURCE_ROOT; }; + FFFDec043fb07febec043fb0 /* NpPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysicsInsertionCallback.h"; path = "../../PhysX/src/NpPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0440187febec044018 /* NpPtrTableStorageManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPtrTableStorageManager.h"; path = "../../PhysX/src/NpPtrTableStorageManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0440807febec044080 /* NpPvdSceneQueryCollector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.h"; path = "../../PhysX/src/NpPvdSceneQueryCollector.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0440e87febec0440e8 /* NpQueryShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpQueryShared.h"; path = "../../PhysX/src/NpQueryShared.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0441507febec044150 /* NpReadCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.h"; path = "../../PhysX/src/NpReadCheck.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0441b87febec0441b8 /* NpRigidActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplate.h"; path = "../../PhysX/src/NpRigidActorTemplate.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0442207febec044220 /* NpRigidActorTemplateInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplateInternal.h"; path = "../../PhysX/src/NpRigidActorTemplateInternal.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0442887febec044288 /* NpRigidBodyTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidBodyTemplate.h"; path = "../../PhysX/src/NpRigidBodyTemplate.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0442f07febec0442f0 /* NpRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.h"; path = "../../PhysX/src/NpRigidDynamic.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0443587febec044358 /* NpRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.h"; path = "../../PhysX/src/NpRigidStatic.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0443c07febec0443c0 /* NpScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.h"; path = "../../PhysX/src/NpScene.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0444287febec044428 /* NpSceneQueries.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.h"; path = "../../PhysX/src/NpSceneQueries.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0444907febec044490 /* NpShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.h"; path = "../../PhysX/src/NpShape.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0444f87febec0444f8 /* NpShapeManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.h"; path = "../../PhysX/src/NpShapeManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0445607febec044560 /* NpSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.h"; path = "../../PhysX/src/NpSpatialIndex.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0445c87febec0445c8 /* NpVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.h"; path = "../../PhysX/src/NpVolumeCache.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0446307febec044630 /* NpWriteCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.h"; path = "../../PhysX/src/NpWriteCheck.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0446987febec044698 /* PvdMetaDataBindingData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataBindingData.h"; path = "../../PhysX/src/PvdMetaDataBindingData.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0447007febec044700 /* PvdMetaDataPvdBinding.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.h"; path = "../../PhysX/src/PvdMetaDataPvdBinding.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0447687febec044768 /* PvdPhysicsClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.h"; path = "../../PhysX/src/PvdPhysicsClient.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0447d07febec0447d0 /* PvdTypeNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdTypeNames.h"; path = "../../PhysX/src/PvdTypeNames.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0448387febec044838 /* NpActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.cpp"; path = "../../PhysX/src/NpActor.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0448a07febec0448a0 /* NpAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.cpp"; path = "../../PhysX/src/NpAggregate.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0449087febec044908 /* NpArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.cpp"; path = "../../PhysX/src/NpArticulation.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0449707febec044970 /* NpArticulationJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.cpp"; path = "../../PhysX/src/NpArticulationJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0449d87febec0449d8 /* NpArticulationLink.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.cpp"; path = "../../PhysX/src/NpArticulationLink.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec044a407febec044a40 /* NpBatchQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.cpp"; path = "../../PhysX/src/NpBatchQuery.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec044aa87febec044aa8 /* NpConstraint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.cpp"; path = "../../PhysX/src/NpConstraint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec044b107febec044b10 /* NpFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.cpp"; path = "../../PhysX/src/NpFactory.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec044b787febec044b78 /* NpMaterial.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.cpp"; path = "../../PhysX/src/NpMaterial.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec044be07febec044be0 /* NpMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMetaData.cpp"; path = "../../PhysX/src/NpMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec044c487febec044c48 /* NpPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.cpp"; path = "../../PhysX/src/NpPhysics.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec044cb07febec044cb0 /* NpPvdSceneQueryCollector.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.cpp"; path = "../../PhysX/src/NpPvdSceneQueryCollector.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec044d187febec044d18 /* NpReadCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.cpp"; path = "../../PhysX/src/NpReadCheck.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec044d807febec044d80 /* NpRigidDynamic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.cpp"; path = "../../PhysX/src/NpRigidDynamic.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec044de87febec044de8 /* NpRigidStatic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.cpp"; path = "../../PhysX/src/NpRigidStatic.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec044e507febec044e50 /* NpScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.cpp"; path = "../../PhysX/src/NpScene.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec044eb87febec044eb8 /* NpSceneQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.cpp"; path = "../../PhysX/src/NpSceneQueries.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec044f207febec044f20 /* NpSerializerAdapter.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSerializerAdapter.cpp"; path = "../../PhysX/src/NpSerializerAdapter.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec044f887febec044f88 /* NpShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.cpp"; path = "../../PhysX/src/NpShape.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec044ff07febec044ff0 /* NpShapeManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.cpp"; path = "../../PhysX/src/NpShapeManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0450587febec045058 /* NpSpatialIndex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.cpp"; path = "../../PhysX/src/NpSpatialIndex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0450c07febec0450c0 /* NpVolumeCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.cpp"; path = "../../PhysX/src/NpVolumeCache.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0451287febec045128 /* NpWriteCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.cpp"; path = "../../PhysX/src/NpWriteCheck.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0451907febec045190 /* PvdMetaDataPvdBinding.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.cpp"; path = "../../PhysX/src/PvdMetaDataPvdBinding.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0451f87febec0451f8 /* PvdPhysicsClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.cpp"; path = "../../PhysX/src/PvdPhysicsClient.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0452607febec045260 /* particles/NpParticleBaseTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleBaseTemplate.h"; path = "../../PhysX/src/particles/NpParticleBaseTemplate.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0452c87febec0452c8 /* particles/NpParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.h"; path = "../../PhysX/src/particles/NpParticleFluid.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0453307febec045330 /* particles/NpParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluidReadData.h"; path = "../../PhysX/src/particles/NpParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0453987febec045398 /* particles/NpParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.h"; path = "../../PhysX/src/particles/NpParticleSystem.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0454007febec045400 /* particles/NpParticleFluid.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.cpp"; path = "../../PhysX/src/particles/NpParticleFluid.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0454687febec045468 /* particles/NpParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.cpp"; path = "../../PhysX/src/particles/NpParticleSystem.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0454d07febec0454d0 /* buffering/ScbActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.h"; path = "../../PhysX/src/buffering/ScbActor.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0455387febec045538 /* buffering/ScbAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.h"; path = "../../PhysX/src/buffering/ScbAggregate.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0455a07febec0455a0 /* buffering/ScbArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulation.h"; path = "../../PhysX/src/buffering/ScbArticulation.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0456087febec045608 /* buffering/ScbArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulationJoint.h"; path = "../../PhysX/src/buffering/ScbArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0456707febec045670 /* buffering/ScbBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.h"; path = "../../PhysX/src/buffering/ScbBase.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0456d87febec0456d8 /* buffering/ScbBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBody.h"; path = "../../PhysX/src/buffering/ScbBody.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0457407febec045740 /* buffering/ScbCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.h"; path = "../../PhysX/src/buffering/ScbCloth.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0457a87febec0457a8 /* buffering/ScbConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbConstraint.h"; path = "../../PhysX/src/buffering/ScbConstraint.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0458107febec045810 /* buffering/ScbDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbDefs.h"; path = "../../PhysX/src/buffering/ScbDefs.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0458787febec045878 /* buffering/ScbNpDeps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbNpDeps.h"; path = "../../PhysX/src/buffering/ScbNpDeps.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0458e07febec0458e0 /* buffering/ScbParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.h"; path = "../../PhysX/src/buffering/ScbParticleSystem.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0459487febec045948 /* buffering/ScbRigidObject.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidObject.h"; path = "../../PhysX/src/buffering/ScbRigidObject.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0459b07febec0459b0 /* buffering/ScbRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidStatic.h"; path = "../../PhysX/src/buffering/ScbRigidStatic.h"; sourceTree = SOURCE_ROOT; }; + FFFDec045a187febec045a18 /* buffering/ScbScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.h"; path = "../../PhysX/src/buffering/ScbScene.h"; sourceTree = SOURCE_ROOT; }; + FFFDec045a807febec045a80 /* buffering/ScbSceneBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbSceneBuffer.h"; path = "../../PhysX/src/buffering/ScbSceneBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFDec045ae87febec045ae8 /* buffering/ScbScenePvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.h"; path = "../../PhysX/src/buffering/ScbScenePvdClient.h"; sourceTree = SOURCE_ROOT; }; + FFFDec045b507febec045b50 /* buffering/ScbShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.h"; path = "../../PhysX/src/buffering/ScbShape.h"; sourceTree = SOURCE_ROOT; }; + FFFDec045bb87febec045bb8 /* buffering/ScbType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbType.h"; path = "../../PhysX/src/buffering/ScbType.h"; sourceTree = SOURCE_ROOT; }; + FFFDec045c207febec045c20 /* buffering/ScbActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.cpp"; path = "../../PhysX/src/buffering/ScbActor.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec045c887febec045c88 /* buffering/ScbAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.cpp"; path = "../../PhysX/src/buffering/ScbAggregate.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec045cf07febec045cf0 /* buffering/ScbBase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.cpp"; path = "../../PhysX/src/buffering/ScbBase.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec045d587febec045d58 /* buffering/ScbCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.cpp"; path = "../../PhysX/src/buffering/ScbCloth.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec045dc07febec045dc0 /* buffering/ScbMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbMetaData.cpp"; path = "../../PhysX/src/buffering/ScbMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec045e287febec045e28 /* buffering/ScbParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.cpp"; path = "../../PhysX/src/buffering/ScbParticleSystem.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec045e907febec045e90 /* buffering/ScbScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.cpp"; path = "../../PhysX/src/buffering/ScbScene.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec045ef87febec045ef8 /* buffering/ScbScenePvdClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.cpp"; path = "../../PhysX/src/buffering/ScbScenePvdClient.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec045f607febec045f60 /* buffering/ScbShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.cpp"; path = "../../PhysX/src/buffering/ScbShape.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec045fc87febec045fc8 /* cloth/NpCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.h"; path = "../../PhysX/src/cloth/NpCloth.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0460307febec046030 /* cloth/NpClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.h"; path = "../../PhysX/src/cloth/NpClothFabric.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0460987febec046098 /* cloth/NpClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.h"; path = "../../PhysX/src/cloth/NpClothParticleData.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0461007febec046100 /* cloth/NpCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.cpp"; path = "../../PhysX/src/cloth/NpCloth.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0461687febec046168 /* cloth/NpClothFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.cpp"; path = "../../PhysX/src/cloth/NpClothFabric.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0461d07febec0461d0 /* cloth/NpClothParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.cpp"; path = "../../PhysX/src/cloth/NpClothParticleData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0462387febec046238 /* ../../ImmediateMode/src/NpImmediateMode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "../../ImmediateMode/src/NpImmediateMode.cpp"; path = "../../ImmediateMode/src/NpImmediateMode.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0464007febec046400 /* PxActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxActor.h"; path = "../../../Include/PxActor.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0464687febec046468 /* PxAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAggregate.h"; path = "../../../Include/PxAggregate.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0464d07febec0464d0 /* PxArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulation.h"; path = "../../../Include/PxArticulation.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0465387febec046538 /* PxArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationJoint.h"; path = "../../../Include/PxArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0465a07febec0465a0 /* PxArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationLink.h"; path = "../../../Include/PxArticulationLink.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0466087febec046608 /* PxBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQuery.h"; path = "../../../Include/PxBatchQuery.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0466707febec046670 /* PxBatchQueryDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQueryDesc.h"; path = "../../../Include/PxBatchQueryDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0466d87febec0466d8 /* PxBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhase.h"; path = "../../../Include/PxBroadPhase.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0467407febec046740 /* PxClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClient.h"; path = "../../../Include/PxClient.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0467a87febec0467a8 /* PxConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraint.h"; path = "../../../Include/PxConstraint.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0468107febec046810 /* PxConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintDesc.h"; path = "../../../Include/PxConstraintDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0468787febec046878 /* PxContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContact.h"; path = "../../../Include/PxContact.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0468e07febec0468e0 /* PxContactModifyCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContactModifyCallback.h"; path = "../../../Include/PxContactModifyCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0469487febec046948 /* PxDeletionListener.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDeletionListener.h"; path = "../../../Include/PxDeletionListener.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0469b07febec0469b0 /* PxFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFiltering.h"; path = "../../../Include/PxFiltering.h"; sourceTree = SOURCE_ROOT; }; + FFFDec046a187febec046a18 /* PxForceMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxForceMode.h"; path = "../../../Include/PxForceMode.h"; sourceTree = SOURCE_ROOT; }; + FFFDec046a807febec046a80 /* PxImmediateMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxImmediateMode.h"; path = "../../../Include/PxImmediateMode.h"; sourceTree = SOURCE_ROOT; }; + FFFDec046ae87febec046ae8 /* PxLockedData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxLockedData.h"; path = "../../../Include/PxLockedData.h"; sourceTree = SOURCE_ROOT; }; + FFFDec046b507febec046b50 /* PxMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMaterial.h"; path = "../../../Include/PxMaterial.h"; sourceTree = SOURCE_ROOT; }; + FFFDec046bb87febec046bb8 /* PxPhysXConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysXConfig.h"; path = "../../../Include/PxPhysXConfig.h"; sourceTree = SOURCE_ROOT; }; + FFFDec046c207febec046c20 /* PxPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysics.h"; path = "../../../Include/PxPhysics.h"; sourceTree = SOURCE_ROOT; }; + FFFDec046c887febec046c88 /* PxPhysicsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsAPI.h"; path = "../../../Include/PxPhysicsAPI.h"; sourceTree = SOURCE_ROOT; }; + FFFDec046cf07febec046cf0 /* PxPhysicsSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsSerialization.h"; path = "../../../Include/PxPhysicsSerialization.h"; sourceTree = SOURCE_ROOT; }; + FFFDec046d587febec046d58 /* PxPhysicsVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsVersion.h"; path = "../../../Include/PxPhysicsVersion.h"; sourceTree = SOURCE_ROOT; }; + FFFDec046dc07febec046dc0 /* PxPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPruningStructure.h"; path = "../../../Include/PxPruningStructure.h"; sourceTree = SOURCE_ROOT; }; + FFFDec046e287febec046e28 /* PxQueryFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryFiltering.h"; path = "../../../Include/PxQueryFiltering.h"; sourceTree = SOURCE_ROOT; }; + FFFDec046e907febec046e90 /* PxQueryReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryReport.h"; path = "../../../Include/PxQueryReport.h"; sourceTree = SOURCE_ROOT; }; + FFFDec046ef87febec046ef8 /* PxRigidActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActor.h"; path = "../../../Include/PxRigidActor.h"; sourceTree = SOURCE_ROOT; }; + FFFDec046f607febec046f60 /* PxRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBody.h"; path = "../../../Include/PxRigidBody.h"; sourceTree = SOURCE_ROOT; }; + FFFDec046fc87febec046fc8 /* PxRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidDynamic.h"; path = "../../../Include/PxRigidDynamic.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0470307febec047030 /* PxRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidStatic.h"; path = "../../../Include/PxRigidStatic.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0470987febec047098 /* PxScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxScene.h"; path = "../../../Include/PxScene.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0471007febec047100 /* PxSceneDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneDesc.h"; path = "../../../Include/PxSceneDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0471687febec047168 /* PxSceneLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneLock.h"; path = "../../../Include/PxSceneLock.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0471d07febec0471d0 /* PxShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShape.h"; path = "../../../Include/PxShape.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0472387febec047238 /* PxSimulationEventCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationEventCallback.h"; path = "../../../Include/PxSimulationEventCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0472a07febec0472a0 /* PxSimulationStatistics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationStatistics.h"; path = "../../../Include/PxSimulationStatistics.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0473087febec047308 /* PxSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSpatialIndex.h"; path = "../../../Include/PxSpatialIndex.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0473707febec047370 /* PxVisualizationParameter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVisualizationParameter.h"; path = "../../../Include/PxVisualizationParameter.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0473d87febec0473d8 /* PxVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVolumeCache.h"; path = "../../../Include/PxVolumeCache.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0474407febec047440 /* particles/PxParticleBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBase.h"; path = "../../../Include/particles/PxParticleBase.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0474a87febec0474a8 /* particles/PxParticleBaseFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBaseFlag.h"; path = "../../../Include/particles/PxParticleBaseFlag.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0475107febec047510 /* particles/PxParticleCreationData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleCreationData.h"; path = "../../../Include/particles/PxParticleCreationData.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0475787febec047578 /* particles/PxParticleFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFlag.h"; path = "../../../Include/particles/PxParticleFlag.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0475e07febec0475e0 /* particles/PxParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluid.h"; path = "../../../Include/particles/PxParticleFluid.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0476487febec047648 /* particles/PxParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluidReadData.h"; path = "../../../Include/particles/PxParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0476b07febec0476b0 /* particles/PxParticleReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleReadData.h"; path = "../../../Include/particles/PxParticleReadData.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0477187febec047718 /* particles/PxParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleSystem.h"; path = "../../../Include/particles/PxParticleSystem.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0477807febec047780 /* pvd/PxPvdSceneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pvd/PxPvdSceneClient.h"; path = "../../../Include/pvd/PxPvdSceneClient.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0477e87febec0477e8 /* cloth/PxCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxCloth.h"; path = "../../../Include/cloth/PxCloth.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0478507febec047850 /* cloth/PxClothCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothCollisionData.h"; path = "../../../Include/cloth/PxClothCollisionData.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0478b87febec0478b8 /* cloth/PxClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothFabric.h"; path = "../../../Include/cloth/PxClothFabric.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0479207febec047920 /* cloth/PxClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothParticleData.h"; path = "../../../Include/cloth/PxClothParticleData.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0479887febec047988 /* cloth/PxClothTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothTypes.h"; path = "../../../Include/cloth/PxClothTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFDec03e6007febec03e600 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; }; + FFFDec03e6687febec03e668 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; + FFFDec03e6d07febec03e6d0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; + FFFDec03e7387febec03e738 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; + FFFDec03e7a07febec03e7a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFDec03e8087febec03e808 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; }; + FFFDec03e8707febec03e870 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; }; + FFFDec03e8d87febec03e8d8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFDec03e9407febec03e940 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; + FFFDec03e9a87febec03e9a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "core/src/PxAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXMetaData/core/src/PxAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec03ea107febec03ea10 /* 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 */ - FFF25cb2e4807fb05cb2e480 /* Resources */ = { + FFF2ebe9b7407febebe9b740 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -233,7 +233,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC5cb2e4807fb05cb2e480 /* Frameworks */ = { + FFFCebe9b7407febebe9b740 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -243,52 +243,52 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF85cb2e4807fb05cb2e480 /* Sources */ = { + FFF8ebe9b7407febebe9b740 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF5a9e40387fb05a9e4038, - FFFF5a9e40a07fb05a9e40a0, - FFFF5a9e41087fb05a9e4108, - FFFF5a9e41707fb05a9e4170, - FFFF5a9e41d87fb05a9e41d8, - FFFF5a9e42407fb05a9e4240, - FFFF5a9e42a87fb05a9e42a8, - FFFF5a9e43107fb05a9e4310, - FFFF5a9e43787fb05a9e4378, - FFFF5a9e43e07fb05a9e43e0, - FFFF5a9e44487fb05a9e4448, - FFFF5a9e44b07fb05a9e44b0, - FFFF5a9e45187fb05a9e4518, - FFFF5a9e45807fb05a9e4580, - FFFF5a9e45e87fb05a9e45e8, - FFFF5a9e46507fb05a9e4650, - FFFF5a9e46b87fb05a9e46b8, - FFFF5a9e47207fb05a9e4720, - FFFF5a9e47887fb05a9e4788, - FFFF5a9e47f07fb05a9e47f0, - FFFF5a9e48587fb05a9e4858, - FFFF5a9e48c07fb05a9e48c0, - FFFF5a9e49287fb05a9e4928, - FFFF5a9e49907fb05a9e4990, - FFFF5a9e49f87fb05a9e49f8, - FFFF5a9e4c007fb05a9e4c00, - FFFF5a9e4c687fb05a9e4c68, - FFFF5a9e54207fb05a9e5420, - FFFF5a9e54887fb05a9e5488, - FFFF5a9e54f07fb05a9e54f0, - FFFF5a9e55587fb05a9e5558, - FFFF5a9e55c07fb05a9e55c0, - FFFF5a9e56287fb05a9e5628, - FFFF5a9e56907fb05a9e5690, - FFFF5a9e56f87fb05a9e56f8, - FFFF5a9e57607fb05a9e5760, - FFFF5a9e59007fb05a9e5900, - FFFF5a9e59687fb05a9e5968, - FFFF5a9e59d07fb05a9e59d0, - FFFF5a9e5a387fb05a9e5a38, - FFFF5a9e25a87fb05a9e25a8, - FFFF5a9e26107fb05a9e2610, + FFFFec0448387febec044838, + FFFFec0448a07febec0448a0, + FFFFec0449087febec044908, + FFFFec0449707febec044970, + FFFFec0449d87febec0449d8, + FFFFec044a407febec044a40, + FFFFec044aa87febec044aa8, + FFFFec044b107febec044b10, + FFFFec044b787febec044b78, + FFFFec044be07febec044be0, + FFFFec044c487febec044c48, + FFFFec044cb07febec044cb0, + FFFFec044d187febec044d18, + FFFFec044d807febec044d80, + FFFFec044de87febec044de8, + FFFFec044e507febec044e50, + FFFFec044eb87febec044eb8, + FFFFec044f207febec044f20, + FFFFec044f887febec044f88, + FFFFec044ff07febec044ff0, + FFFFec0450587febec045058, + FFFFec0450c07febec0450c0, + FFFFec0451287febec045128, + FFFFec0451907febec045190, + FFFFec0451f87febec0451f8, + FFFFec0454007febec045400, + FFFFec0454687febec045468, + FFFFec045c207febec045c20, + FFFFec045c887febec045c88, + FFFFec045cf07febec045cf0, + FFFFec045d587febec045d58, + FFFFec045dc07febec045dc0, + FFFFec045e287febec045e28, + FFFFec045e907febec045e90, + FFFFec045ef87febec045ef8, + FFFFec045f607febec045f60, + FFFFec0461007febec046100, + FFFFec0461687febec046168, + FFFFec0461d07febec0461d0, + FFFFec0462387febec046238, + FFFFec03e9a87febec03e9a8, + FFFFec03ea107febec03ea10, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -297,112 +297,112 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF45cb4fe207fb05cb4fe20 /* PBXTargetDependency */ = { + FFF4ebea6b307febebea6b30 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA5b308fd07fb05b308fd0 /* LowLevel */; - targetProxy = FFF55b308fd07fb05b308fd0 /* PBXContainerItemProxy */; + target = FFFAebe3bcb07febebe3bcb0 /* LowLevel */; + targetProxy = FFF5ebe3bcb07febebe3bcb0 /* PBXContainerItemProxy */; }; - FFF45cb4fe807fb05cb4fe80 /* PBXTargetDependency */ = { + FFF4ebea1da07febebea1da0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA5c8058807fb05c805880 /* LowLevelAABB */; - targetProxy = FFF55c8058807fb05c805880 /* PBXContainerItemProxy */; + target = FFFAed432ce07febed432ce0 /* LowLevelAABB */; + targetProxy = FFF5ed432ce07febed432ce0 /* PBXContainerItemProxy */; }; - FFF45cb531707fb05cb53170 /* PBXTargetDependency */ = { + FFF4ebea26107febebea2610 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA5c8281f07fb05c8281f0 /* LowLevelCloth */; - targetProxy = FFF55c8281f07fb05c8281f0 /* PBXContainerItemProxy */; + target = FFFAed443c607febed443c60 /* LowLevelCloth */; + targetProxy = FFF5ed443c607febed443c60 /* PBXContainerItemProxy */; }; - FFF45cb531107fb05cb53110 /* PBXTargetDependency */ = { + FFF4ebea25b07febebea25b0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA5b45afc07fb05b45afc0 /* LowLevelDynamics */; - targetProxy = FFF55b45afc07fb05b45afc0 /* PBXContainerItemProxy */; + target = FFFAebe6c9d07febebe6c9d0 /* LowLevelDynamics */; + targetProxy = FFF5ebe6c9d07febebe6c9d0 /* PBXContainerItemProxy */; }; - FFF45cb531d07fb05cb531d0 /* PBXTargetDependency */ = { + FFF4ebea41807febebea4180 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA5b322ac07fb05b322ac0 /* LowLevelParticles */; - targetProxy = FFF55b322ac07fb05b322ac0 /* PBXContainerItemProxy */; + target = FFFAed7001c07febed7001c0 /* LowLevelParticles */; + targetProxy = FFF5ed7001c07febed7001c0 /* PBXContainerItemProxy */; }; - FFF45cb52c107fb05cb52c10 /* PBXTargetDependency */ = { + FFF4ebea6ad07febebea6ad0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA5b2fb4e07fb05b2fb4e0 /* PhysXCommon */; - targetProxy = FFF55b2fb4e07fb05b2fb4e0 /* PBXContainerItemProxy */; + target = FFFAed146af07febed146af0 /* PhysXCommon */; + targetProxy = FFF5ed146af07febed146af0 /* PBXContainerItemProxy */; }; - FFF45cb2e7a07fb05cb2e7a0 /* PBXTargetDependency */ = { + FFF4ebe9ba607febebe9ba60 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA5b080a507fb05b080a50 /* PxFoundation */; - targetProxy = FFF55b080a507fb05b080a50 /* PBXContainerItemProxy */; + target = FFFAed13dc907febed13dc90 /* PxFoundation */; + targetProxy = FFF5ed13dc907febed13dc90 /* PBXContainerItemProxy */; }; - FFF45cb2e4507fb05cb2e450 /* PBXTargetDependency */ = { + FFF4ebe9b7107febebe9b710 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA5b4338707fb05b433870 /* PxPvdSDK */; - targetProxy = FFF55b4338707fb05b433870 /* PBXContainerItemProxy */; + target = FFFAebc7a0b07febebc7a0b0 /* PxPvdSDK */; + targetProxy = FFF5ebc7a0b07febebc7a0b0 /* PBXContainerItemProxy */; }; - FFF45cb4f9507fb05cb4f950 /* PBXTargetDependency */ = { + FFF4ebea7f307febebea7f30 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA5c8302207fb05c830220 /* PxTask */; - targetProxy = FFF55c8302207fb05c830220 /* PBXContainerItemProxy */; + target = FFFAed488fe07febed488fe0 /* PxTask */; + targetProxy = FFF5ed488fe07febed488fe0 /* PBXContainerItemProxy */; }; - FFF45cb4f8c07fb05cb4f8c0 /* PBXTargetDependency */ = { + FFF4ebea41e07febebea41e0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA5cb732c07fb05cb732c0 /* SceneQuery */; - targetProxy = FFF55cb732c07fb05cb732c0 /* PBXContainerItemProxy */; + target = FFFAebec79007febebec7900 /* SceneQuery */; + targetProxy = FFF5ebec79007febebec7900 /* PBXContainerItemProxy */; }; - FFF45cb4f9207fb05cb4f920 /* PBXTargetDependency */ = { + FFF4ebea7f007febebea7f00 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA5cb778e07fb05cb778e0 /* SimulationController */; - targetProxy = FFF55cb778e07fb05cb778e0 /* PBXContainerItemProxy */; + target = FFFAebecbe607febebecbe60 /* SimulationController */; + targetProxy = FFF5ebecbe607febebecbe60 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PhysXCharacterKinematic */ - FFFF5cb543d07fb05cb543d0 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD5cb609d07fb05cb609d0 /* PhysXExtensions */; }; - FFFF5a9ea2787fb05a9ea278 /* CctBoxController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ea2787fb05a9ea278 /* CctBoxController.cpp */; }; - FFFF5a9ea2e07fb05a9ea2e0 /* CctCapsuleController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ea2e07fb05a9ea2e0 /* CctCapsuleController.cpp */; }; - FFFF5a9ea3487fb05a9ea348 /* CctCharacterController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ea3487fb05a9ea348 /* CctCharacterController.cpp */; }; - FFFF5a9ea3b07fb05a9ea3b0 /* CctCharacterControllerCallbacks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ea3b07fb05a9ea3b0 /* CctCharacterControllerCallbacks.cpp */; }; - FFFF5a9ea4187fb05a9ea418 /* CctCharacterControllerManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ea4187fb05a9ea418 /* CctCharacterControllerManager.cpp */; }; - FFFF5a9ea4807fb05a9ea480 /* CctController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ea4807fb05a9ea480 /* CctController.cpp */; }; - FFFF5a9ea4e87fb05a9ea4e8 /* CctObstacleContext.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ea4e87fb05a9ea4e8 /* CctObstacleContext.cpp */; }; - FFFF5a9ea5507fb05a9ea550 /* CctSweptBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ea5507fb05a9ea550 /* CctSweptBox.cpp */; }; - FFFF5a9ea5b87fb05a9ea5b8 /* CctSweptCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ea5b87fb05a9ea5b8 /* CctSweptCapsule.cpp */; }; - FFFF5a9ea6207fb05a9ea620 /* CctSweptVolume.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ea6207fb05a9ea620 /* CctSweptVolume.cpp */; }; + FFFFebea5a007febebea5a00 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFDebeb68107febebeb6810 /* PhysXExtensions */; }; + FFFFec047e787febec047e78 /* CctBoxController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec047e787febec047e78 /* CctBoxController.cpp */; }; + FFFFec047ee07febec047ee0 /* CctCapsuleController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec047ee07febec047ee0 /* CctCapsuleController.cpp */; }; + FFFFec047f487febec047f48 /* CctCharacterController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec047f487febec047f48 /* CctCharacterController.cpp */; }; + FFFFec047fb07febec047fb0 /* CctCharacterControllerCallbacks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec047fb07febec047fb0 /* CctCharacterControllerCallbacks.cpp */; }; + FFFFec0480187febec048018 /* CctCharacterControllerManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec0480187febec048018 /* CctCharacterControllerManager.cpp */; }; + FFFFec0480807febec048080 /* CctController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec0480807febec048080 /* CctController.cpp */; }; + FFFFec0480e87febec0480e8 /* CctObstacleContext.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec0480e87febec0480e8 /* CctObstacleContext.cpp */; }; + FFFFec0481507febec048150 /* CctSweptBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec0481507febec048150 /* CctSweptBox.cpp */; }; + FFFFec0481b87febec0481b8 /* CctSweptCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec0481b87febec0481b8 /* CctSweptCapsule.cpp */; }; + FFFFec0482207febec048220 /* CctSweptVolume.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec0482207febec048220 /* CctSweptVolume.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD5cb4fa707fb05cb4fa70 /* PhysXCharacterKinematic */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCharacterKinematic"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD5cb56b707fb05cb56b70 /* PxBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBoxController.h"; path = "../../../Include/characterkinematic/PxBoxController.h"; sourceTree = SOURCE_ROOT; }; - FFFD5cb56bd87fb05cb56bd8 /* PxCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCapsuleController.h"; path = "../../../Include/characterkinematic/PxCapsuleController.h"; sourceTree = SOURCE_ROOT; }; - FFFD5cb56c407fb05cb56c40 /* PxCharacter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCharacter.h"; path = "../../../Include/characterkinematic/PxCharacter.h"; sourceTree = SOURCE_ROOT; }; - FFFD5cb56ca87fb05cb56ca8 /* PxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxController.h"; path = "../../../Include/characterkinematic/PxController.h"; sourceTree = SOURCE_ROOT; }; - FFFD5cb56d107fb05cb56d10 /* PxControllerBehavior.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerBehavior.h"; path = "../../../Include/characterkinematic/PxControllerBehavior.h"; sourceTree = SOURCE_ROOT; }; - FFFD5cb56d787fb05cb56d78 /* PxControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerManager.h"; path = "../../../Include/characterkinematic/PxControllerManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD5cb56de07fb05cb56de0 /* PxControllerObstacles.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerObstacles.h"; path = "../../../Include/characterkinematic/PxControllerObstacles.h"; sourceTree = SOURCE_ROOT; }; - FFFD5cb56e487fb05cb56e48 /* PxExtended.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtended.h"; path = "../../../Include/characterkinematic/PxExtended.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e9e007fb05a9e9e00 /* CctBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.h"; path = "../../PhysXCharacterKinematic/src/CctBoxController.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e9e687fb05a9e9e68 /* CctCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.h"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e9ed07fb05a9e9ed0 /* CctCharacterController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e9f387fb05a9e9f38 /* CctCharacterControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9e9fa07fb05a9e9fa0 /* CctController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.h"; path = "../../PhysXCharacterKinematic/src/CctController.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ea0087fb05a9ea008 /* CctInternalStructs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctInternalStructs.h"; path = "../../PhysXCharacterKinematic/src/CctInternalStructs.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ea0707fb05a9ea070 /* CctObstacleContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.h"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ea0d87fb05a9ea0d8 /* CctSweptBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.h"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ea1407fb05a9ea140 /* CctSweptCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.h"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ea1a87fb05a9ea1a8 /* CctSweptVolume.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.h"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ea2107fb05a9ea210 /* CctUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctUtils.h"; path = "../../PhysXCharacterKinematic/src/CctUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ea2787fb05a9ea278 /* CctBoxController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.cpp"; path = "../../PhysXCharacterKinematic/src/CctBoxController.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ea2e07fb05a9ea2e0 /* CctCapsuleController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ea3487fb05a9ea348 /* CctCharacterController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ea3b07fb05a9ea3b0 /* CctCharacterControllerCallbacks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerCallbacks.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerCallbacks.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ea4187fb05a9ea418 /* CctCharacterControllerManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ea4807fb05a9ea480 /* CctController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.cpp"; path = "../../PhysXCharacterKinematic/src/CctController.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ea4e87fb05a9ea4e8 /* CctObstacleContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.cpp"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ea5507fb05a9ea550 /* CctSweptBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ea5b87fb05a9ea5b8 /* CctSweptCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ea6207fb05a9ea620 /* CctSweptVolume.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDebea7f407febebea7f40 /* PhysXCharacterKinematic */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCharacterKinematic"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDebeaaf207febebeaaf20 /* PxBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBoxController.h"; path = "../../../Include/characterkinematic/PxBoxController.h"; sourceTree = SOURCE_ROOT; }; + FFFDebeaaf887febebeaaf88 /* PxCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCapsuleController.h"; path = "../../../Include/characterkinematic/PxCapsuleController.h"; sourceTree = SOURCE_ROOT; }; + FFFDebeaaff07febebeaaff0 /* PxCharacter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCharacter.h"; path = "../../../Include/characterkinematic/PxCharacter.h"; sourceTree = SOURCE_ROOT; }; + FFFDebeab0587febebeab058 /* PxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxController.h"; path = "../../../Include/characterkinematic/PxController.h"; sourceTree = SOURCE_ROOT; }; + FFFDebeab0c07febebeab0c0 /* PxControllerBehavior.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerBehavior.h"; path = "../../../Include/characterkinematic/PxControllerBehavior.h"; sourceTree = SOURCE_ROOT; }; + FFFDebeab1287febebeab128 /* PxControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerManager.h"; path = "../../../Include/characterkinematic/PxControllerManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDebeab1907febebeab190 /* PxControllerObstacles.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerObstacles.h"; path = "../../../Include/characterkinematic/PxControllerObstacles.h"; sourceTree = SOURCE_ROOT; }; + FFFDebeab1f87febebeab1f8 /* PxExtended.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtended.h"; path = "../../../Include/characterkinematic/PxExtended.h"; sourceTree = SOURCE_ROOT; }; + FFFDec047a007febec047a00 /* CctBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.h"; path = "../../PhysXCharacterKinematic/src/CctBoxController.h"; sourceTree = SOURCE_ROOT; }; + FFFDec047a687febec047a68 /* CctCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.h"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.h"; sourceTree = SOURCE_ROOT; }; + FFFDec047ad07febec047ad0 /* CctCharacterController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.h"; sourceTree = SOURCE_ROOT; }; + FFFDec047b387febec047b38 /* CctCharacterControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDec047ba07febec047ba0 /* CctController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.h"; path = "../../PhysXCharacterKinematic/src/CctController.h"; sourceTree = SOURCE_ROOT; }; + FFFDec047c087febec047c08 /* CctInternalStructs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctInternalStructs.h"; path = "../../PhysXCharacterKinematic/src/CctInternalStructs.h"; sourceTree = SOURCE_ROOT; }; + FFFDec047c707febec047c70 /* CctObstacleContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.h"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.h"; sourceTree = SOURCE_ROOT; }; + FFFDec047cd87febec047cd8 /* CctSweptBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.h"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDec047d407febec047d40 /* CctSweptCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.h"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFDec047da87febec047da8 /* CctSweptVolume.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.h"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.h"; sourceTree = SOURCE_ROOT; }; + FFFDec047e107febec047e10 /* CctUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctUtils.h"; path = "../../PhysXCharacterKinematic/src/CctUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFDec047e787febec047e78 /* CctBoxController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.cpp"; path = "../../PhysXCharacterKinematic/src/CctBoxController.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec047ee07febec047ee0 /* CctCapsuleController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec047f487febec047f48 /* CctCharacterController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec047fb07febec047fb0 /* CctCharacterControllerCallbacks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerCallbacks.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerCallbacks.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0480187febec048018 /* CctCharacterControllerManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0480807febec048080 /* CctController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.cpp"; path = "../../PhysXCharacterKinematic/src/CctController.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0480e87febec0480e8 /* CctObstacleContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.cpp"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0481507febec048150 /* CctSweptBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0481b87febec0481b8 /* CctSweptCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0482207febec048220 /* CctSweptVolume.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF25cb4fa707fb05cb4fa70 /* Resources */ = { + FFF2ebea7f407febebea7f40 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -412,7 +412,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC5cb4fa707fb05cb4fa70 /* Frameworks */ = { + FFFCebea7f407febebea7f40 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -422,20 +422,20 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF85cb4fa707fb05cb4fa70 /* Sources */ = { + FFF8ebea7f407febebea7f40 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF5a9ea2787fb05a9ea278, - FFFF5a9ea2e07fb05a9ea2e0, - FFFF5a9ea3487fb05a9ea348, - FFFF5a9ea3b07fb05a9ea3b0, - FFFF5a9ea4187fb05a9ea418, - FFFF5a9ea4807fb05a9ea480, - FFFF5a9ea4e87fb05a9ea4e8, - FFFF5a9ea5507fb05a9ea550, - FFFF5a9ea5b87fb05a9ea5b8, - FFFF5a9ea6207fb05a9ea620, + FFFFec047e787febec047e78, + FFFFec047ee07febec047ee0, + FFFFec047f487febec047f48, + FFFFec047fb07febec047fb0, + FFFFec0480187febec048018, + FFFFec0480807febec048080, + FFFFec0480e87febec0480e8, + FFFFec0481507febec048150, + FFFFec0481b87febec0481b8, + FFFFec0482207febec048220, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -444,91 +444,91 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF45cb560007fb05cb56000 /* PBXTargetDependency */ = { + FFF4ebeaa4b07febebeaa4b0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA5b2fb4e07fb05b2fb4e0 /* PhysXCommon */; - targetProxy = FFF55b2fb4e07fb05b2fb4e0 /* PBXContainerItemProxy */; + target = FFFAed146af07febed146af0 /* PhysXCommon */; + targetProxy = FFF5ed146af07febed146af0 /* PBXContainerItemProxy */; }; - FFF45cb543d07fb05cb543d0 /* PBXTargetDependency */ = { + FFF4ebea5a007febebea5a00 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA5cb609d07fb05cb609d0 /* PhysXExtensions */; - targetProxy = FFF55cb609d07fb05cb609d0 /* PBXContainerItemProxy */; + target = FFFAebeb68107febebeb6810 /* PhysXExtensions */; + targetProxy = FFF5ebeb68107febebeb6810 /* PBXContainerItemProxy */; }; - FFF45cb54f207fb05cb54f20 /* PBXTargetDependency */ = { + FFF4ebeaaca07febebeaaca0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA5b080a507fb05b080a50 /* PxFoundation */; - targetProxy = FFF55b080a507fb05b080a50 /* PBXContainerItemProxy */; + target = FFFAed13dc907febed13dc90 /* PxFoundation */; + targetProxy = FFF5ed13dc907febed13dc90 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PhysXVehicle */ - FFFF5a9ef0087fb05a9ef008 /* PxVehicleComponents.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ef0087fb05a9ef008 /* PxVehicleComponents.cpp */; }; - FFFF5a9ef0707fb05a9ef070 /* PxVehicleDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ef0707fb05a9ef070 /* PxVehicleDrive.cpp */; }; - FFFF5a9ef0d87fb05a9ef0d8 /* PxVehicleDrive4W.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ef0d87fb05a9ef0d8 /* PxVehicleDrive4W.cpp */; }; - FFFF5a9ef1407fb05a9ef140 /* PxVehicleDriveNW.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ef1407fb05a9ef140 /* PxVehicleDriveNW.cpp */; }; - FFFF5a9ef1a87fb05a9ef1a8 /* PxVehicleDriveTank.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ef1a87fb05a9ef1a8 /* PxVehicleDriveTank.cpp */; }; - FFFF5a9ef2107fb05a9ef210 /* PxVehicleMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ef2107fb05a9ef210 /* PxVehicleMetaData.cpp */; }; - FFFF5a9ef2787fb05a9ef278 /* PxVehicleNoDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ef2787fb05a9ef278 /* PxVehicleNoDrive.cpp */; }; - FFFF5a9ef2e07fb05a9ef2e0 /* PxVehicleSDK.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ef2e07fb05a9ef2e0 /* PxVehicleSDK.cpp */; }; - FFFF5a9ef3487fb05a9ef348 /* PxVehicleSerialization.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ef3487fb05a9ef348 /* PxVehicleSerialization.cpp */; }; - FFFF5a9ef3b07fb05a9ef3b0 /* PxVehicleSuspWheelTire4.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ef3b07fb05a9ef3b0 /* PxVehicleSuspWheelTire4.cpp */; }; - FFFF5a9ef4187fb05a9ef418 /* PxVehicleTireFriction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ef4187fb05a9ef418 /* PxVehicleTireFriction.cpp */; }; - FFFF5a9ef4807fb05a9ef480 /* PxVehicleUpdate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ef4807fb05a9ef480 /* PxVehicleUpdate.cpp */; }; - FFFF5a9ef4e87fb05a9ef4e8 /* PxVehicleWheels.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ef4e87fb05a9ef4e8 /* PxVehicleWheels.cpp */; }; - FFFF5a9ef5507fb05a9ef550 /* VehicleUtilControl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ef5507fb05a9ef550 /* VehicleUtilControl.cpp */; }; - FFFF5a9ef5b87fb05a9ef5b8 /* VehicleUtilSetup.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ef5b87fb05a9ef5b8 /* VehicleUtilSetup.cpp */; }; - FFFF5a9ef6207fb05a9ef620 /* VehicleUtilTelemetry.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ef6207fb05a9ef620 /* VehicleUtilTelemetry.cpp */; }; - FFFF5cb629487fb05cb62948 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD5cb629487fb05cb62948 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */; }; - FFFF5cb629b07fb05cb629b0 /* src/PxVehicleMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD5cb629b07fb05cb629b0 /* src/PxVehicleMetaDataObjects.cpp */; }; + FFFFec04c0087febec04c008 /* PxVehicleComponents.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec04c0087febec04c008 /* PxVehicleComponents.cpp */; }; + FFFFec04c0707febec04c070 /* PxVehicleDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec04c0707febec04c070 /* PxVehicleDrive.cpp */; }; + FFFFec04c0d87febec04c0d8 /* PxVehicleDrive4W.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec04c0d87febec04c0d8 /* PxVehicleDrive4W.cpp */; }; + FFFFec04c1407febec04c140 /* PxVehicleDriveNW.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec04c1407febec04c140 /* PxVehicleDriveNW.cpp */; }; + FFFFec04c1a87febec04c1a8 /* PxVehicleDriveTank.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec04c1a87febec04c1a8 /* PxVehicleDriveTank.cpp */; }; + FFFFec04c2107febec04c210 /* PxVehicleMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec04c2107febec04c210 /* PxVehicleMetaData.cpp */; }; + FFFFec04c2787febec04c278 /* PxVehicleNoDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec04c2787febec04c278 /* PxVehicleNoDrive.cpp */; }; + FFFFec04c2e07febec04c2e0 /* PxVehicleSDK.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec04c2e07febec04c2e0 /* PxVehicleSDK.cpp */; }; + FFFFec04c3487febec04c348 /* PxVehicleSerialization.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec04c3487febec04c348 /* PxVehicleSerialization.cpp */; }; + FFFFec04c3b07febec04c3b0 /* PxVehicleSuspWheelTire4.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec04c3b07febec04c3b0 /* PxVehicleSuspWheelTire4.cpp */; }; + FFFFec04c4187febec04c418 /* PxVehicleTireFriction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec04c4187febec04c418 /* PxVehicleTireFriction.cpp */; }; + FFFFec04c4807febec04c480 /* PxVehicleUpdate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec04c4807febec04c480 /* PxVehicleUpdate.cpp */; }; + FFFFec04c4e87febec04c4e8 /* PxVehicleWheels.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec04c4e87febec04c4e8 /* PxVehicleWheels.cpp */; }; + FFFFec04c5507febec04c550 /* VehicleUtilControl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec04c5507febec04c550 /* VehicleUtilControl.cpp */; }; + FFFFec04c5b87febec04c5b8 /* VehicleUtilSetup.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec04c5b87febec04c5b8 /* VehicleUtilSetup.cpp */; }; + FFFFec04c6207febec04c620 /* VehicleUtilTelemetry.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec04c6207febec04c620 /* VehicleUtilTelemetry.cpp */; }; + FFFFebeb6d287febebeb6d28 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDebeb6d287febebeb6d28 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */; }; + FFFFebeb6d907febebeb6d90 /* src/PxVehicleMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDebeb6d907febebeb6d90 /* src/PxVehicleMetaDataObjects.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD5cb50f307fb05cb50f30 /* PhysXVehicle */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXVehicle"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD5a9ecc007fb05a9ecc00 /* PxVehicleComponents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.h"; path = "../../../Include/vehicle/PxVehicleComponents.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ecc687fb05a9ecc68 /* PxVehicleDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.h"; path = "../../../Include/vehicle/PxVehicleDrive.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9eccd07fb05a9eccd0 /* PxVehicleDrive4W.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.h"; path = "../../../Include/vehicle/PxVehicleDrive4W.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ecd387fb05a9ecd38 /* PxVehicleDriveNW.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.h"; path = "../../../Include/vehicle/PxVehicleDriveNW.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ecda07fb05a9ecda0 /* PxVehicleDriveTank.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.h"; path = "../../../Include/vehicle/PxVehicleDriveTank.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ece087fb05a9ece08 /* PxVehicleNoDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.h"; path = "../../../Include/vehicle/PxVehicleNoDrive.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ece707fb05a9ece70 /* PxVehicleSDK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.h"; path = "../../../Include/vehicle/PxVehicleSDK.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9eced87fb05a9eced8 /* PxVehicleShaders.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleShaders.h"; path = "../../../Include/vehicle/PxVehicleShaders.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ecf407fb05a9ecf40 /* PxVehicleTireFriction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.h"; path = "../../../Include/vehicle/PxVehicleTireFriction.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ecfa87fb05a9ecfa8 /* PxVehicleUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.h"; path = "../../../Include/vehicle/PxVehicleUpdate.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ed0107fb05a9ed010 /* PxVehicleUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtil.h"; path = "../../../Include/vehicle/PxVehicleUtil.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ed0787fb05a9ed078 /* PxVehicleUtilControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilControl.h"; path = "../../../Include/vehicle/PxVehicleUtilControl.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ed0e07fb05a9ed0e0 /* PxVehicleUtilSetup.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilSetup.h"; path = "../../../Include/vehicle/PxVehicleUtilSetup.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ed1487fb05a9ed148 /* PxVehicleUtilTelemetry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilTelemetry.h"; path = "../../../Include/vehicle/PxVehicleUtilTelemetry.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ed1b07fb05a9ed1b0 /* PxVehicleWheels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.h"; path = "../../../Include/vehicle/PxVehicleWheels.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9eee007fb05a9eee00 /* PxVehicleDefaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDefaults.h"; path = "../../PhysXVehicle/src/PxVehicleDefaults.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9eee687fb05a9eee68 /* PxVehicleLinearMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleLinearMath.h"; path = "../../PhysXVehicle/src/PxVehicleLinearMath.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9eeed07fb05a9eeed0 /* PxVehicleSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.h"; path = "../../PhysXVehicle/src/PxVehicleSerialization.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9eef387fb05a9eef38 /* PxVehicleSuspLimitConstraintShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspLimitConstraintShader.h"; path = "../../PhysXVehicle/src/PxVehicleSuspLimitConstraintShader.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9eefa07fb05a9eefa0 /* PxVehicleSuspWheelTire4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.h"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ef0087fb05a9ef008 /* PxVehicleComponents.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.cpp"; path = "../../PhysXVehicle/src/PxVehicleComponents.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ef0707fb05a9ef070 /* PxVehicleDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ef0d87fb05a9ef0d8 /* PxVehicleDrive4W.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive4W.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ef1407fb05a9ef140 /* PxVehicleDriveNW.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveNW.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ef1a87fb05a9ef1a8 /* PxVehicleDriveTank.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveTank.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ef2107fb05a9ef210 /* PxVehicleMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleMetaData.cpp"; path = "../../PhysXVehicle/src/PxVehicleMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ef2787fb05a9ef278 /* PxVehicleNoDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleNoDrive.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ef2e07fb05a9ef2e0 /* PxVehicleSDK.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.cpp"; path = "../../PhysXVehicle/src/PxVehicleSDK.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ef3487fb05a9ef348 /* PxVehicleSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.cpp"; path = "../../PhysXVehicle/src/PxVehicleSerialization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ef3b07fb05a9ef3b0 /* PxVehicleSuspWheelTire4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.cpp"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ef4187fb05a9ef418 /* PxVehicleTireFriction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.cpp"; path = "../../PhysXVehicle/src/PxVehicleTireFriction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ef4807fb05a9ef480 /* PxVehicleUpdate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.cpp"; path = "../../PhysXVehicle/src/PxVehicleUpdate.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ef4e87fb05a9ef4e8 /* PxVehicleWheels.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.cpp"; path = "../../PhysXVehicle/src/PxVehicleWheels.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ef5507fb05a9ef550 /* VehicleUtilControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilControl.cpp"; path = "../../PhysXVehicle/src/VehicleUtilControl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ef5b87fb05a9ef5b8 /* VehicleUtilSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilSetup.cpp"; path = "../../PhysXVehicle/src/VehicleUtilSetup.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ef6207fb05a9ef620 /* VehicleUtilTelemetry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilTelemetry.cpp"; path = "../../PhysXVehicle/src/VehicleUtilTelemetry.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5cb628107fb05cb62810 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; - FFFD5cb628787fb05cb62878 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFD5cb628e07fb05cb628e0 /* include/PxVehicleMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFD5cb629487fb05cb62948 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXVehicle/src/PhysXMetaData/src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5cb629b07fb05cb629b0 /* src/PxVehicleMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxVehicleMetaDataObjects.cpp"; path = "../../PhysXVehicle/src/PhysXMetaData/src/PxVehicleMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDebea52007febebea5200 /* PhysXVehicle */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXVehicle"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDec04a0007febec04a000 /* PxVehicleComponents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.h"; path = "../../../Include/vehicle/PxVehicleComponents.h"; sourceTree = SOURCE_ROOT; }; + FFFDec04a0687febec04a068 /* PxVehicleDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.h"; path = "../../../Include/vehicle/PxVehicleDrive.h"; sourceTree = SOURCE_ROOT; }; + FFFDec04a0d07febec04a0d0 /* PxVehicleDrive4W.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.h"; path = "../../../Include/vehicle/PxVehicleDrive4W.h"; sourceTree = SOURCE_ROOT; }; + FFFDec04a1387febec04a138 /* PxVehicleDriveNW.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.h"; path = "../../../Include/vehicle/PxVehicleDriveNW.h"; sourceTree = SOURCE_ROOT; }; + FFFDec04a1a07febec04a1a0 /* PxVehicleDriveTank.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.h"; path = "../../../Include/vehicle/PxVehicleDriveTank.h"; sourceTree = SOURCE_ROOT; }; + FFFDec04a2087febec04a208 /* PxVehicleNoDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.h"; path = "../../../Include/vehicle/PxVehicleNoDrive.h"; sourceTree = SOURCE_ROOT; }; + FFFDec04a2707febec04a270 /* PxVehicleSDK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.h"; path = "../../../Include/vehicle/PxVehicleSDK.h"; sourceTree = SOURCE_ROOT; }; + FFFDec04a2d87febec04a2d8 /* PxVehicleShaders.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleShaders.h"; path = "../../../Include/vehicle/PxVehicleShaders.h"; sourceTree = SOURCE_ROOT; }; + FFFDec04a3407febec04a340 /* PxVehicleTireFriction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.h"; path = "../../../Include/vehicle/PxVehicleTireFriction.h"; sourceTree = SOURCE_ROOT; }; + FFFDec04a3a87febec04a3a8 /* PxVehicleUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.h"; path = "../../../Include/vehicle/PxVehicleUpdate.h"; sourceTree = SOURCE_ROOT; }; + FFFDec04a4107febec04a410 /* PxVehicleUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtil.h"; path = "../../../Include/vehicle/PxVehicleUtil.h"; sourceTree = SOURCE_ROOT; }; + FFFDec04a4787febec04a478 /* PxVehicleUtilControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilControl.h"; path = "../../../Include/vehicle/PxVehicleUtilControl.h"; sourceTree = SOURCE_ROOT; }; + FFFDec04a4e07febec04a4e0 /* PxVehicleUtilSetup.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilSetup.h"; path = "../../../Include/vehicle/PxVehicleUtilSetup.h"; sourceTree = SOURCE_ROOT; }; + FFFDec04a5487febec04a548 /* PxVehicleUtilTelemetry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilTelemetry.h"; path = "../../../Include/vehicle/PxVehicleUtilTelemetry.h"; sourceTree = SOURCE_ROOT; }; + FFFDec04a5b07febec04a5b0 /* PxVehicleWheels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.h"; path = "../../../Include/vehicle/PxVehicleWheels.h"; sourceTree = SOURCE_ROOT; }; + FFFDec04be007febec04be00 /* PxVehicleDefaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDefaults.h"; path = "../../PhysXVehicle/src/PxVehicleDefaults.h"; sourceTree = SOURCE_ROOT; }; + FFFDec04be687febec04be68 /* PxVehicleLinearMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleLinearMath.h"; path = "../../PhysXVehicle/src/PxVehicleLinearMath.h"; sourceTree = SOURCE_ROOT; }; + FFFDec04bed07febec04bed0 /* PxVehicleSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.h"; path = "../../PhysXVehicle/src/PxVehicleSerialization.h"; sourceTree = SOURCE_ROOT; }; + FFFDec04bf387febec04bf38 /* PxVehicleSuspLimitConstraintShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspLimitConstraintShader.h"; path = "../../PhysXVehicle/src/PxVehicleSuspLimitConstraintShader.h"; sourceTree = SOURCE_ROOT; }; + FFFDec04bfa07febec04bfa0 /* PxVehicleSuspWheelTire4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.h"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.h"; sourceTree = SOURCE_ROOT; }; + FFFDec04c0087febec04c008 /* PxVehicleComponents.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.cpp"; path = "../../PhysXVehicle/src/PxVehicleComponents.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec04c0707febec04c070 /* PxVehicleDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec04c0d87febec04c0d8 /* PxVehicleDrive4W.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive4W.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec04c1407febec04c140 /* PxVehicleDriveNW.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveNW.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec04c1a87febec04c1a8 /* PxVehicleDriveTank.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveTank.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec04c2107febec04c210 /* PxVehicleMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleMetaData.cpp"; path = "../../PhysXVehicle/src/PxVehicleMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec04c2787febec04c278 /* PxVehicleNoDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleNoDrive.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec04c2e07febec04c2e0 /* PxVehicleSDK.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.cpp"; path = "../../PhysXVehicle/src/PxVehicleSDK.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec04c3487febec04c348 /* PxVehicleSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.cpp"; path = "../../PhysXVehicle/src/PxVehicleSerialization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec04c3b07febec04c3b0 /* PxVehicleSuspWheelTire4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.cpp"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec04c4187febec04c418 /* PxVehicleTireFriction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.cpp"; path = "../../PhysXVehicle/src/PxVehicleTireFriction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec04c4807febec04c480 /* PxVehicleUpdate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.cpp"; path = "../../PhysXVehicle/src/PxVehicleUpdate.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec04c4e87febec04c4e8 /* PxVehicleWheels.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.cpp"; path = "../../PhysXVehicle/src/PxVehicleWheels.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec04c5507febec04c550 /* VehicleUtilControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilControl.cpp"; path = "../../PhysXVehicle/src/VehicleUtilControl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec04c5b87febec04c5b8 /* VehicleUtilSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilSetup.cpp"; path = "../../PhysXVehicle/src/VehicleUtilSetup.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec04c6207febec04c620 /* VehicleUtilTelemetry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilTelemetry.cpp"; path = "../../PhysXVehicle/src/VehicleUtilTelemetry.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDebeb6bf07febebeb6bf0 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; + FFFDebeb6c587febebeb6c58 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFDebeb6cc07febebeb6cc0 /* include/PxVehicleMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFDebeb6d287febebeb6d28 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXVehicle/src/PhysXMetaData/src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDebeb6d907febebeb6d90 /* 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 */ - FFF25cb50f307fb05cb50f30 /* Resources */ = { + FFF2ebea52007febebea5200 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -538,7 +538,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC5cb50f307fb05cb50f30 /* Frameworks */ = { + FFFCebea52007febebea5200 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -548,28 +548,28 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF85cb50f307fb05cb50f30 /* Sources */ = { + FFF8ebea52007febebea5200 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF5a9ef0087fb05a9ef008, - FFFF5a9ef0707fb05a9ef070, - FFFF5a9ef0d87fb05a9ef0d8, - FFFF5a9ef1407fb05a9ef140, - FFFF5a9ef1a87fb05a9ef1a8, - FFFF5a9ef2107fb05a9ef210, - FFFF5a9ef2787fb05a9ef278, - FFFF5a9ef2e07fb05a9ef2e0, - FFFF5a9ef3487fb05a9ef348, - FFFF5a9ef3b07fb05a9ef3b0, - FFFF5a9ef4187fb05a9ef418, - FFFF5a9ef4807fb05a9ef480, - FFFF5a9ef4e87fb05a9ef4e8, - FFFF5a9ef5507fb05a9ef550, - FFFF5a9ef5b87fb05a9ef5b8, - FFFF5a9ef6207fb05a9ef620, - FFFF5cb629487fb05cb62948, - FFFF5cb629b07fb05cb629b0, + FFFFec04c0087febec04c008, + FFFFec04c0707febec04c070, + FFFFec04c0d87febec04c0d8, + FFFFec04c1407febec04c140, + FFFFec04c1a87febec04c1a8, + FFFFec04c2107febec04c210, + FFFFec04c2787febec04c278, + FFFFec04c2e07febec04c2e0, + FFFFec04c3487febec04c348, + FFFFec04c3b07febec04c3b0, + FFFFec04c4187febec04c418, + FFFFec04c4807febec04c480, + FFFFec04c4e87febec04c4e8, + FFFFec04c5507febec04c550, + FFFFec04c5b87febec04c5b8, + FFFFec04c6207febec04c620, + FFFFebeb6d287febebeb6d28, + FFFFebeb6d907febebeb6d90, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -581,220 +581,220 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PhysXExtensions */ - FFFF5a9f0ee87fb05a9f0ee8 /* ExtBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f0ee87fb05a9f0ee8 /* ExtBroadPhase.cpp */; }; - FFFF5a9f0f507fb05a9f0f50 /* ExtClothFabricCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f0f507fb05a9f0f50 /* ExtClothFabricCooker.cpp */; }; - FFFF5a9f0fb87fb05a9f0fb8 /* ExtClothGeodesicTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f0fb87fb05a9f0fb8 /* ExtClothGeodesicTetherCooker.cpp */; }; - FFFF5a9f10207fb05a9f1020 /* ExtClothMeshQuadifier.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f10207fb05a9f1020 /* ExtClothMeshQuadifier.cpp */; }; - FFFF5a9f10887fb05a9f1088 /* ExtClothSimpleTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f10887fb05a9f1088 /* ExtClothSimpleTetherCooker.cpp */; }; - FFFF5a9f10f07fb05a9f10f0 /* ExtCollection.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f10f07fb05a9f10f0 /* ExtCollection.cpp */; }; - FFFF5a9f11587fb05a9f1158 /* ExtConvexMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f11587fb05a9f1158 /* ExtConvexMeshExt.cpp */; }; - FFFF5a9f11c07fb05a9f11c0 /* ExtCpuWorkerThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f11c07fb05a9f11c0 /* ExtCpuWorkerThread.cpp */; }; - FFFF5a9f12287fb05a9f1228 /* ExtD6Joint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f12287fb05a9f1228 /* ExtD6Joint.cpp */; }; - FFFF5a9f12907fb05a9f1290 /* ExtD6JointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f12907fb05a9f1290 /* ExtD6JointSolverPrep.cpp */; }; - FFFF5a9f12f87fb05a9f12f8 /* ExtDefaultCpuDispatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f12f87fb05a9f12f8 /* ExtDefaultCpuDispatcher.cpp */; }; - FFFF5a9f13607fb05a9f1360 /* ExtDefaultErrorCallback.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f13607fb05a9f1360 /* ExtDefaultErrorCallback.cpp */; }; - FFFF5a9f13c87fb05a9f13c8 /* ExtDefaultSimulationFilterShader.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f13c87fb05a9f13c8 /* ExtDefaultSimulationFilterShader.cpp */; }; - FFFF5a9f14307fb05a9f1430 /* ExtDefaultStreams.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f14307fb05a9f1430 /* ExtDefaultStreams.cpp */; }; - FFFF5a9f14987fb05a9f1498 /* ExtDistanceJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f14987fb05a9f1498 /* ExtDistanceJoint.cpp */; }; - FFFF5a9f15007fb05a9f1500 /* ExtDistanceJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f15007fb05a9f1500 /* ExtDistanceJointSolverPrep.cpp */; }; - FFFF5a9f15687fb05a9f1568 /* ExtExtensions.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f15687fb05a9f1568 /* ExtExtensions.cpp */; }; - FFFF5a9f15d07fb05a9f15d0 /* ExtFixedJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f15d07fb05a9f15d0 /* ExtFixedJoint.cpp */; }; - FFFF5a9f16387fb05a9f1638 /* ExtFixedJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f16387fb05a9f1638 /* ExtFixedJointSolverPrep.cpp */; }; - FFFF5a9f16a07fb05a9f16a0 /* ExtJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f16a07fb05a9f16a0 /* ExtJoint.cpp */; }; - FFFF5a9f17087fb05a9f1708 /* ExtMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f17087fb05a9f1708 /* ExtMetaData.cpp */; }; - FFFF5a9f17707fb05a9f1770 /* ExtParticleExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f17707fb05a9f1770 /* ExtParticleExt.cpp */; }; - FFFF5a9f17d87fb05a9f17d8 /* ExtPrismaticJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f17d87fb05a9f17d8 /* ExtPrismaticJoint.cpp */; }; - FFFF5a9f18407fb05a9f1840 /* ExtPrismaticJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f18407fb05a9f1840 /* ExtPrismaticJointSolverPrep.cpp */; }; - FFFF5a9f18a87fb05a9f18a8 /* ExtPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f18a87fb05a9f18a8 /* ExtPvd.cpp */; }; - FFFF5a9f19107fb05a9f1910 /* ExtPxStringTable.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f19107fb05a9f1910 /* ExtPxStringTable.cpp */; }; - FFFF5a9f19787fb05a9f1978 /* ExtRaycastCCD.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f19787fb05a9f1978 /* ExtRaycastCCD.cpp */; }; - FFFF5a9f19e07fb05a9f19e0 /* ExtRevoluteJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f19e07fb05a9f19e0 /* ExtRevoluteJoint.cpp */; }; - FFFF5a9f1a487fb05a9f1a48 /* ExtRevoluteJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f1a487fb05a9f1a48 /* ExtRevoluteJointSolverPrep.cpp */; }; - FFFF5a9f1ab07fb05a9f1ab0 /* ExtRigidBodyExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f1ab07fb05a9f1ab0 /* ExtRigidBodyExt.cpp */; }; - FFFF5a9f1b187fb05a9f1b18 /* ExtSceneQueryExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f1b187fb05a9f1b18 /* ExtSceneQueryExt.cpp */; }; - FFFF5a9f1b807fb05a9f1b80 /* ExtSimpleFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f1b807fb05a9f1b80 /* ExtSimpleFactory.cpp */; }; - FFFF5a9f1be87fb05a9f1be8 /* ExtSmoothNormals.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f1be87fb05a9f1be8 /* ExtSmoothNormals.cpp */; }; - FFFF5a9f1c507fb05a9f1c50 /* ExtSphericalJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f1c507fb05a9f1c50 /* ExtSphericalJoint.cpp */; }; - FFFF5a9f1cb87fb05a9f1cb8 /* ExtSphericalJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f1cb87fb05a9f1cb8 /* ExtSphericalJointSolverPrep.cpp */; }; - FFFF5a9f1d207fb05a9f1d20 /* ExtTriangleMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f1d207fb05a9f1d20 /* ExtTriangleMeshExt.cpp */; }; - FFFF5a9f52d07fb05a9f52d0 /* SnSerialUtils.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a9f52d07fb05a9f52d0 /* SnSerialUtils.cpp */; }; - FFFF5a9f53387fb05a9f5338 /* SnSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a9f53387fb05a9f5338 /* SnSerialization.cpp */; }; - FFFF5a9f53a07fb05a9f53a0 /* SnSerializationRegistry.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a9f53a07fb05a9f53a0 /* SnSerializationRegistry.cpp */; }; - FFFF5a9f56e07fb05a9f56e0 /* Binary/SnBinaryDeserialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a9f56e07fb05a9f56e0 /* Binary/SnBinaryDeserialization.cpp */; }; - FFFF5a9f57487fb05a9f5748 /* Binary/SnBinarySerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a9f57487fb05a9f5748 /* Binary/SnBinarySerialization.cpp */; }; - FFFF5a9f57b07fb05a9f57b0 /* Binary/SnConvX.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a9f57b07fb05a9f57b0 /* Binary/SnConvX.cpp */; }; - FFFF5a9f58187fb05a9f5818 /* Binary/SnConvX_Align.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a9f58187fb05a9f5818 /* Binary/SnConvX_Align.cpp */; }; - FFFF5a9f58807fb05a9f5880 /* Binary/SnConvX_Convert.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a9f58807fb05a9f5880 /* Binary/SnConvX_Convert.cpp */; }; - FFFF5a9f58e87fb05a9f58e8 /* Binary/SnConvX_Error.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a9f58e87fb05a9f58e8 /* Binary/SnConvX_Error.cpp */; }; - FFFF5a9f59507fb05a9f5950 /* Binary/SnConvX_MetaData.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a9f59507fb05a9f5950 /* Binary/SnConvX_MetaData.cpp */; }; - FFFF5a9f59b87fb05a9f59b8 /* Binary/SnConvX_Output.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a9f59b87fb05a9f59b8 /* Binary/SnConvX_Output.cpp */; }; - FFFF5a9f5a207fb05a9f5a20 /* Binary/SnConvX_Union.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a9f5a207fb05a9f5a20 /* Binary/SnConvX_Union.cpp */; }; - FFFF5a9f5a887fb05a9f5a88 /* Binary/SnSerializationContext.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a9f5a887fb05a9f5a88 /* Binary/SnSerializationContext.cpp */; }; - FFFF5a9f63787fb05a9f6378 /* Xml/SnJointRepXSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a9f63787fb05a9f6378 /* Xml/SnJointRepXSerializer.cpp */; }; - FFFF5a9f63e07fb05a9f63e0 /* Xml/SnRepXCoreSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a9f63e07fb05a9f63e0 /* Xml/SnRepXCoreSerializer.cpp */; }; - FFFF5a9f64487fb05a9f6448 /* Xml/SnRepXUpgrader.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a9f64487fb05a9f6448 /* Xml/SnRepXUpgrader.cpp */; }; - FFFF5a9f64b07fb05a9f64b0 /* Xml/SnXmlSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a9f64b07fb05a9f64b0 /* Xml/SnXmlSerialization.cpp */; }; - FFFF5a9f32e07fb05a9f32e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD5a9f32e07fb05a9f32e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */; }; + FFFFec04e6e87febec04e6e8 /* ExtBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec04e6e87febec04e6e8 /* ExtBroadPhase.cpp */; }; + FFFFec04e7507febec04e750 /* ExtClothFabricCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec04e7507febec04e750 /* ExtClothFabricCooker.cpp */; }; + FFFFec04e7b87febec04e7b8 /* ExtClothGeodesicTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec04e7b87febec04e7b8 /* ExtClothGeodesicTetherCooker.cpp */; }; + FFFFec04e8207febec04e820 /* ExtClothMeshQuadifier.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec04e8207febec04e820 /* ExtClothMeshQuadifier.cpp */; }; + FFFFec04e8887febec04e888 /* ExtClothSimpleTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec04e8887febec04e888 /* ExtClothSimpleTetherCooker.cpp */; }; + FFFFec04e8f07febec04e8f0 /* ExtCollection.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec04e8f07febec04e8f0 /* ExtCollection.cpp */; }; + FFFFec04e9587febec04e958 /* ExtConvexMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec04e9587febec04e958 /* ExtConvexMeshExt.cpp */; }; + FFFFec04e9c07febec04e9c0 /* ExtCpuWorkerThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec04e9c07febec04e9c0 /* ExtCpuWorkerThread.cpp */; }; + FFFFec04ea287febec04ea28 /* ExtD6Joint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec04ea287febec04ea28 /* ExtD6Joint.cpp */; }; + FFFFec04ea907febec04ea90 /* ExtD6JointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec04ea907febec04ea90 /* ExtD6JointSolverPrep.cpp */; }; + FFFFec04eaf87febec04eaf8 /* ExtDefaultCpuDispatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec04eaf87febec04eaf8 /* ExtDefaultCpuDispatcher.cpp */; }; + FFFFec04eb607febec04eb60 /* ExtDefaultErrorCallback.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec04eb607febec04eb60 /* ExtDefaultErrorCallback.cpp */; }; + FFFFec04ebc87febec04ebc8 /* ExtDefaultSimulationFilterShader.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec04ebc87febec04ebc8 /* ExtDefaultSimulationFilterShader.cpp */; }; + FFFFec04ec307febec04ec30 /* ExtDefaultStreams.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec04ec307febec04ec30 /* ExtDefaultStreams.cpp */; }; + FFFFec04ec987febec04ec98 /* ExtDistanceJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec04ec987febec04ec98 /* ExtDistanceJoint.cpp */; }; + FFFFec04ed007febec04ed00 /* ExtDistanceJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec04ed007febec04ed00 /* ExtDistanceJointSolverPrep.cpp */; }; + FFFFec04ed687febec04ed68 /* ExtExtensions.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec04ed687febec04ed68 /* ExtExtensions.cpp */; }; + FFFFec04edd07febec04edd0 /* ExtFixedJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec04edd07febec04edd0 /* ExtFixedJoint.cpp */; }; + FFFFec04ee387febec04ee38 /* ExtFixedJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec04ee387febec04ee38 /* ExtFixedJointSolverPrep.cpp */; }; + FFFFec04eea07febec04eea0 /* ExtJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec04eea07febec04eea0 /* ExtJoint.cpp */; }; + FFFFec04ef087febec04ef08 /* ExtMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec04ef087febec04ef08 /* ExtMetaData.cpp */; }; + FFFFec04ef707febec04ef70 /* ExtParticleExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec04ef707febec04ef70 /* ExtParticleExt.cpp */; }; + FFFFec04efd87febec04efd8 /* ExtPrismaticJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec04efd87febec04efd8 /* ExtPrismaticJoint.cpp */; }; + FFFFec04f0407febec04f040 /* ExtPrismaticJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec04f0407febec04f040 /* ExtPrismaticJointSolverPrep.cpp */; }; + FFFFec04f0a87febec04f0a8 /* ExtPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec04f0a87febec04f0a8 /* ExtPvd.cpp */; }; + FFFFec04f1107febec04f110 /* ExtPxStringTable.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec04f1107febec04f110 /* ExtPxStringTable.cpp */; }; + FFFFec04f1787febec04f178 /* ExtRaycastCCD.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec04f1787febec04f178 /* ExtRaycastCCD.cpp */; }; + FFFFec04f1e07febec04f1e0 /* ExtRevoluteJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec04f1e07febec04f1e0 /* ExtRevoluteJoint.cpp */; }; + FFFFec04f2487febec04f248 /* ExtRevoluteJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec04f2487febec04f248 /* ExtRevoluteJointSolverPrep.cpp */; }; + FFFFec04f2b07febec04f2b0 /* ExtRigidBodyExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec04f2b07febec04f2b0 /* ExtRigidBodyExt.cpp */; }; + FFFFec04f3187febec04f318 /* ExtSceneQueryExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec04f3187febec04f318 /* ExtSceneQueryExt.cpp */; }; + FFFFec04f3807febec04f380 /* ExtSimpleFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec04f3807febec04f380 /* ExtSimpleFactory.cpp */; }; + FFFFec04f3e87febec04f3e8 /* ExtSmoothNormals.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec04f3e87febec04f3e8 /* ExtSmoothNormals.cpp */; }; + FFFFec04f4507febec04f450 /* ExtSphericalJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec04f4507febec04f450 /* ExtSphericalJoint.cpp */; }; + FFFFec04f4b87febec04f4b8 /* ExtSphericalJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec04f4b87febec04f4b8 /* ExtSphericalJointSolverPrep.cpp */; }; + FFFFec04f5207febec04f520 /* ExtTriangleMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec04f5207febec04f520 /* ExtTriangleMeshExt.cpp */; }; + FFFFec051cd07febec051cd0 /* SnSerialUtils.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDec051cd07febec051cd0 /* SnSerialUtils.cpp */; }; + FFFFec051d387febec051d38 /* SnSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDec051d387febec051d38 /* SnSerialization.cpp */; }; + FFFFec051da07febec051da0 /* SnSerializationRegistry.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDec051da07febec051da0 /* SnSerializationRegistry.cpp */; }; + FFFFec0520e07febec0520e0 /* Binary/SnBinaryDeserialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDec0520e07febec0520e0 /* Binary/SnBinaryDeserialization.cpp */; }; + FFFFec0521487febec052148 /* Binary/SnBinarySerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDec0521487febec052148 /* Binary/SnBinarySerialization.cpp */; }; + FFFFec0521b07febec0521b0 /* Binary/SnConvX.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDec0521b07febec0521b0 /* Binary/SnConvX.cpp */; }; + FFFFec0522187febec052218 /* Binary/SnConvX_Align.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDec0522187febec052218 /* Binary/SnConvX_Align.cpp */; }; + FFFFec0522807febec052280 /* Binary/SnConvX_Convert.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDec0522807febec052280 /* Binary/SnConvX_Convert.cpp */; }; + FFFFec0522e87febec0522e8 /* Binary/SnConvX_Error.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDec0522e87febec0522e8 /* Binary/SnConvX_Error.cpp */; }; + FFFFec0523507febec052350 /* Binary/SnConvX_MetaData.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDec0523507febec052350 /* Binary/SnConvX_MetaData.cpp */; }; + FFFFec0523b87febec0523b8 /* Binary/SnConvX_Output.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDec0523b87febec0523b8 /* Binary/SnConvX_Output.cpp */; }; + FFFFec0524207febec052420 /* Binary/SnConvX_Union.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDec0524207febec052420 /* Binary/SnConvX_Union.cpp */; }; + FFFFec0524887febec052488 /* Binary/SnSerializationContext.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDec0524887febec052488 /* Binary/SnSerializationContext.cpp */; }; + FFFFec052de07febec052de0 /* Xml/SnJointRepXSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDec052de07febec052de0 /* Xml/SnJointRepXSerializer.cpp */; }; + FFFFec052e487febec052e48 /* Xml/SnRepXCoreSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDec052e487febec052e48 /* Xml/SnRepXCoreSerializer.cpp */; }; + FFFFec052eb07febec052eb0 /* Xml/SnRepXUpgrader.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDec052eb07febec052eb0 /* Xml/SnRepXUpgrader.cpp */; }; + FFFFec052f187febec052f18 /* Xml/SnXmlSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDec052f187febec052f18 /* Xml/SnXmlSerialization.cpp */; }; + FFFFec050ae07febec050ae0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDec050ae07febec050ae0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD5cb609d07fb05cb609d0 /* PhysXExtensions */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXExtensions"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD5a9f1e007fb05a9f1e00 /* PxBinaryConverter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBinaryConverter.h"; path = "../../../Include/extensions/PxBinaryConverter.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f1e687fb05a9f1e68 /* PxBroadPhaseExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhaseExt.h"; path = "../../../Include/extensions/PxBroadPhaseExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f1ed07fb05a9f1ed0 /* PxClothFabricCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothFabricCooker.h"; path = "../../../Include/extensions/PxClothFabricCooker.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f1f387fb05a9f1f38 /* PxClothMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshDesc.h"; path = "../../../Include/extensions/PxClothMeshDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f1fa07fb05a9f1fa0 /* PxClothMeshQuadifier.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshQuadifier.h"; path = "../../../Include/extensions/PxClothMeshQuadifier.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f20087fb05a9f2008 /* PxClothTetherCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothTetherCooker.h"; path = "../../../Include/extensions/PxClothTetherCooker.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f20707fb05a9f2070 /* PxCollectionExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCollectionExt.h"; path = "../../../Include/extensions/PxCollectionExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f20d87fb05a9f20d8 /* PxConstraintExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintExt.h"; path = "../../../Include/extensions/PxConstraintExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f21407fb05a9f2140 /* PxConvexMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshExt.h"; path = "../../../Include/extensions/PxConvexMeshExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f21a87fb05a9f21a8 /* PxD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxD6Joint.h"; path = "../../../Include/extensions/PxD6Joint.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f22107fb05a9f2210 /* PxDefaultAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultAllocator.h"; path = "../../../Include/extensions/PxDefaultAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f22787fb05a9f2278 /* PxDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultCpuDispatcher.h"; path = "../../../Include/extensions/PxDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f22e07fb05a9f22e0 /* PxDefaultErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultErrorCallback.h"; path = "../../../Include/extensions/PxDefaultErrorCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f23487fb05a9f2348 /* PxDefaultSimulationFilterShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultSimulationFilterShader.h"; path = "../../../Include/extensions/PxDefaultSimulationFilterShader.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f23b07fb05a9f23b0 /* PxDefaultStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultStreams.h"; path = "../../../Include/extensions/PxDefaultStreams.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f24187fb05a9f2418 /* PxDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDistanceJoint.h"; path = "../../../Include/extensions/PxDistanceJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f24807fb05a9f2480 /* PxExtensionsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtensionsAPI.h"; path = "../../../Include/extensions/PxExtensionsAPI.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f24e87fb05a9f24e8 /* PxFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFixedJoint.h"; path = "../../../Include/extensions/PxFixedJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f25507fb05a9f2550 /* PxJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJoint.h"; path = "../../../Include/extensions/PxJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f25b87fb05a9f25b8 /* PxJointLimit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJointLimit.h"; path = "../../../Include/extensions/PxJointLimit.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f26207fb05a9f2620 /* PxJointRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJointRepXSerializer.h"; path = "../../../Include/extensions/PxJointRepXSerializer.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f26887fb05a9f2688 /* PxMassProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMassProperties.h"; path = "../../../Include/extensions/PxMassProperties.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f26f07fb05a9f26f0 /* PxParticleExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxParticleExt.h"; path = "../../../Include/extensions/PxParticleExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f27587fb05a9f2758 /* PxPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPrismaticJoint.h"; path = "../../../Include/extensions/PxPrismaticJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f27c07fb05a9f27c0 /* PxRaycastCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRaycastCCD.h"; path = "../../../Include/extensions/PxRaycastCCD.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f28287fb05a9f2828 /* PxRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSerializer.h"; path = "../../../Include/extensions/PxRepXSerializer.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f28907fb05a9f2890 /* PxRepXSimpleType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSimpleType.h"; path = "../../../Include/extensions/PxRepXSimpleType.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f28f87fb05a9f28f8 /* PxRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRevoluteJoint.h"; path = "../../../Include/extensions/PxRevoluteJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f29607fb05a9f2960 /* PxRigidActorExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActorExt.h"; path = "../../../Include/extensions/PxRigidActorExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f29c87fb05a9f29c8 /* PxRigidBodyExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBodyExt.h"; path = "../../../Include/extensions/PxRigidBodyExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f2a307fb05a9f2a30 /* PxSceneQueryExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneQueryExt.h"; path = "../../../Include/extensions/PxSceneQueryExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f2a987fb05a9f2a98 /* PxSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSerialization.h"; path = "../../../Include/extensions/PxSerialization.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f2b007fb05a9f2b00 /* PxShapeExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShapeExt.h"; path = "../../../Include/extensions/PxShapeExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f2b687fb05a9f2b68 /* PxSimpleFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleFactory.h"; path = "../../../Include/extensions/PxSimpleFactory.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f2bd07fb05a9f2bd0 /* PxSmoothNormals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSmoothNormals.h"; path = "../../../Include/extensions/PxSmoothNormals.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f2c387fb05a9f2c38 /* PxSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSphericalJoint.h"; path = "../../../Include/extensions/PxSphericalJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f2ca07fb05a9f2ca0 /* PxStringTableExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStringTableExt.h"; path = "../../../Include/extensions/PxStringTableExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f2d087fb05a9f2d08 /* PxTriangleMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshExt.h"; path = "../../../Include/extensions/PxTriangleMeshExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f08007fb05a9f0800 /* ExtConstraintHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConstraintHelper.h"; path = "../../PhysXExtensions/src/ExtConstraintHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f08687fb05a9f0868 /* ExtCpuWorkerThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.h"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f08d07fb05a9f08d0 /* ExtD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.h"; path = "../../PhysXExtensions/src/ExtD6Joint.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f09387fb05a9f0938 /* ExtDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.h"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f09a07fb05a9f09a0 /* ExtDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.h"; path = "../../PhysXExtensions/src/ExtDistanceJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f0a087fb05a9f0a08 /* ExtFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.h"; path = "../../PhysXExtensions/src/ExtFixedJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f0a707fb05a9f0a70 /* ExtInertiaTensor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtInertiaTensor.h"; path = "../../PhysXExtensions/src/ExtInertiaTensor.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f0ad87fb05a9f0ad8 /* ExtJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.h"; path = "../../PhysXExtensions/src/ExtJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f0b407fb05a9f0b40 /* ExtJointMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJointMetaDataExtensions.h"; path = "../../PhysXExtensions/src/ExtJointMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f0ba87fb05a9f0ba8 /* ExtPlatform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPlatform.h"; path = "../../PhysXExtensions/src/ExtPlatform.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f0c107fb05a9f0c10 /* ExtPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.h"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f0c787fb05a9f0c78 /* ExtPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.h"; path = "../../PhysXExtensions/src/ExtPvd.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f0ce07fb05a9f0ce0 /* ExtRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.h"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f0d487fb05a9f0d48 /* ExtSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSerialization.h"; path = "../../PhysXExtensions/src/ExtSerialization.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f0db07fb05a9f0db0 /* ExtSharedQueueEntryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSharedQueueEntryPool.h"; path = "../../PhysXExtensions/src/ExtSharedQueueEntryPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f0e187fb05a9f0e18 /* ExtSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.h"; path = "../../PhysXExtensions/src/ExtSphericalJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f0e807fb05a9f0e80 /* ExtTaskQueueHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTaskQueueHelper.h"; path = "../../PhysXExtensions/src/ExtTaskQueueHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f0ee87fb05a9f0ee8 /* ExtBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtBroadPhase.cpp"; path = "../../PhysXExtensions/src/ExtBroadPhase.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f0f507fb05a9f0f50 /* ExtClothFabricCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothFabricCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothFabricCooker.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f0fb87fb05a9f0fb8 /* ExtClothGeodesicTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothGeodesicTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothGeodesicTetherCooker.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f10207fb05a9f1020 /* ExtClothMeshQuadifier.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothMeshQuadifier.cpp"; path = "../../PhysXExtensions/src/ExtClothMeshQuadifier.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f10887fb05a9f1088 /* ExtClothSimpleTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothSimpleTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothSimpleTetherCooker.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f10f07fb05a9f10f0 /* ExtCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCollection.cpp"; path = "../../PhysXExtensions/src/ExtCollection.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f11587fb05a9f1158 /* ExtConvexMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConvexMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtConvexMeshExt.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f11c07fb05a9f11c0 /* ExtCpuWorkerThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.cpp"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f12287fb05a9f1228 /* ExtD6Joint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.cpp"; path = "../../PhysXExtensions/src/ExtD6Joint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f12907fb05a9f1290 /* ExtD6JointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6JointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtD6JointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f12f87fb05a9f12f8 /* ExtDefaultCpuDispatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.cpp"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f13607fb05a9f1360 /* ExtDefaultErrorCallback.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultErrorCallback.cpp"; path = "../../PhysXExtensions/src/ExtDefaultErrorCallback.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f13c87fb05a9f13c8 /* ExtDefaultSimulationFilterShader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultSimulationFilterShader.cpp"; path = "../../PhysXExtensions/src/ExtDefaultSimulationFilterShader.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f14307fb05a9f1430 /* ExtDefaultStreams.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultStreams.cpp"; path = "../../PhysXExtensions/src/ExtDefaultStreams.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f14987fb05a9f1498 /* ExtDistanceJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f15007fb05a9f1500 /* ExtDistanceJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f15687fb05a9f1568 /* ExtExtensions.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtExtensions.cpp"; path = "../../PhysXExtensions/src/ExtExtensions.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f15d07fb05a9f15d0 /* ExtFixedJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.cpp"; path = "../../PhysXExtensions/src/ExtFixedJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f16387fb05a9f1638 /* ExtFixedJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtFixedJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f16a07fb05a9f16a0 /* ExtJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.cpp"; path = "../../PhysXExtensions/src/ExtJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f17087fb05a9f1708 /* ExtMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtMetaData.cpp"; path = "../../PhysXExtensions/src/ExtMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f17707fb05a9f1770 /* ExtParticleExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtParticleExt.cpp"; path = "../../PhysXExtensions/src/ExtParticleExt.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f17d87fb05a9f17d8 /* ExtPrismaticJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f18407fb05a9f1840 /* ExtPrismaticJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f18a87fb05a9f18a8 /* ExtPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.cpp"; path = "../../PhysXExtensions/src/ExtPvd.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f19107fb05a9f1910 /* ExtPxStringTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPxStringTable.cpp"; path = "../../PhysXExtensions/src/ExtPxStringTable.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f19787fb05a9f1978 /* ExtRaycastCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRaycastCCD.cpp"; path = "../../PhysXExtensions/src/ExtRaycastCCD.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f19e07fb05a9f19e0 /* ExtRevoluteJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f1a487fb05a9f1a48 /* ExtRevoluteJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f1ab07fb05a9f1ab0 /* ExtRigidBodyExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRigidBodyExt.cpp"; path = "../../PhysXExtensions/src/ExtRigidBodyExt.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f1b187fb05a9f1b18 /* ExtSceneQueryExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSceneQueryExt.cpp"; path = "../../PhysXExtensions/src/ExtSceneQueryExt.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f1b807fb05a9f1b80 /* ExtSimpleFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSimpleFactory.cpp"; path = "../../PhysXExtensions/src/ExtSimpleFactory.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f1be87fb05a9f1be8 /* ExtSmoothNormals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSmoothNormals.cpp"; path = "../../PhysXExtensions/src/ExtSmoothNormals.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f1c507fb05a9f1c50 /* ExtSphericalJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f1cb87fb05a9f1cb8 /* ExtSphericalJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f1d207fb05a9f1d20 /* ExtTriangleMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTriangleMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtTriangleMeshExt.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f52007fb05a9f5200 /* SnSerialUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.h"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f52687fb05a9f5268 /* SnSerializationRegistry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.h"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f52d07fb05a9f52d0 /* SnSerialUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f53387fb05a9f5338 /* SnSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f53a07fb05a9f53a0 /* SnSerializationRegistry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f54087fb05a9f5408 /* Binary/SnConvX.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f54707fb05a9f5470 /* Binary/SnConvX_Align.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f54d87fb05a9f54d8 /* Binary/SnConvX_Common.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Common.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Common.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f55407fb05a9f5540 /* Binary/SnConvX_MetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f55a87fb05a9f55a8 /* Binary/SnConvX_Output.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f56107fb05a9f5610 /* Binary/SnConvX_Union.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f56787fb05a9f5678 /* Binary/SnSerializationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f56e07fb05a9f56e0 /* Binary/SnBinaryDeserialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinaryDeserialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinaryDeserialization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f57487fb05a9f5748 /* Binary/SnBinarySerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinarySerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinarySerialization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f57b07fb05a9f57b0 /* Binary/SnConvX.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f58187fb05a9f5818 /* Binary/SnConvX_Align.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f58807fb05a9f5880 /* Binary/SnConvX_Convert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Convert.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Convert.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f58e87fb05a9f58e8 /* Binary/SnConvX_Error.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Error.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Error.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f59507fb05a9f5950 /* Binary/SnConvX_MetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f59b87fb05a9f59b8 /* Binary/SnConvX_Output.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f5a207fb05a9f5a20 /* Binary/SnConvX_Union.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f5a887fb05a9f5a88 /* Binary/SnSerializationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f5af07fb05a9f5af0 /* Xml/SnPxStreamOperators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnPxStreamOperators.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnPxStreamOperators.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f5b587fb05a9f5b58 /* Xml/SnRepX1_0Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX1_0Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX1_0Defaults.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f5bc07fb05a9f5bc0 /* Xml/SnRepX3_1Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_1Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_1Defaults.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f5c287fb05a9f5c28 /* Xml/SnRepX3_2Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_2Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_2Defaults.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f5c907fb05a9f5c90 /* Xml/SnRepXCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCollection.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCollection.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f5cf87fb05a9f5cf8 /* Xml/SnRepXCoreSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f5d607fb05a9f5d60 /* Xml/SnRepXSerializerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXSerializerImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXSerializerImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f5dc87fb05a9f5dc8 /* Xml/SnRepXUpgrader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f5e307fb05a9f5e30 /* Xml/SnSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f5e987fb05a9f5e98 /* Xml/SnXmlDeserializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlDeserializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlDeserializer.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f5f007fb05a9f5f00 /* Xml/SnXmlImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f5f687fb05a9f5f68 /* Xml/SnXmlMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryAllocator.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f5fd07fb05a9f5fd0 /* Xml/SnXmlMemoryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPool.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f60387fb05a9f6038 /* Xml/SnXmlMemoryPoolStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPoolStreams.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPoolStreams.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f60a07fb05a9f60a0 /* Xml/SnXmlReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlReader.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f61087fb05a9f6108 /* Xml/SnXmlSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerializer.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f61707fb05a9f6170 /* Xml/SnXmlSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f61d87fb05a9f61d8 /* Xml/SnXmlStringToType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlStringToType.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlStringToType.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f62407fb05a9f6240 /* Xml/SnXmlVisitorReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorReader.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f62a87fb05a9f62a8 /* Xml/SnXmlVisitorWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorWriter.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f63107fb05a9f6310 /* Xml/SnXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlWriter.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f63787fb05a9f6378 /* Xml/SnJointRepXSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnJointRepXSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f63e07fb05a9f63e0 /* Xml/SnRepXCoreSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f64487fb05a9f6448 /* Xml/SnRepXUpgrader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f64b07fb05a9f64b0 /* Xml/SnXmlSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerialization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f65187fb05a9f6518 /* File/SnFile.h */= { isa = PBXFileReference; fileEncoding = 4; name = "File/SnFile.h"; path = "../../PhysXExtensions/src/serialization/File/SnFile.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f2e007fb05a9f2e00 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f2e687fb05a9f2e68 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f2ed07fb05a9f2ed0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f2f387fb05a9f2f38 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f2fa07fb05a9f2fa0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f30087fb05a9f3008 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f30707fb05a9f3070 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f30d87fb05a9f30d8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f31407fb05a9f3140 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f31a87fb05a9f31a8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f32107fb05a9f3210 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f32787fb05a9f3278 /* extensions/include/PxExtensionMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f32e07fb05a9f32e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXMetaData/extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDebeb68107febebeb6810 /* PhysXExtensions */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXExtensions"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDec04f6007febec04f600 /* PxBinaryConverter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBinaryConverter.h"; path = "../../../Include/extensions/PxBinaryConverter.h"; sourceTree = SOURCE_ROOT; }; + FFFDec04f6687febec04f668 /* PxBroadPhaseExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhaseExt.h"; path = "../../../Include/extensions/PxBroadPhaseExt.h"; sourceTree = SOURCE_ROOT; }; + FFFDec04f6d07febec04f6d0 /* PxClothFabricCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothFabricCooker.h"; path = "../../../Include/extensions/PxClothFabricCooker.h"; sourceTree = SOURCE_ROOT; }; + FFFDec04f7387febec04f738 /* PxClothMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshDesc.h"; path = "../../../Include/extensions/PxClothMeshDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFDec04f7a07febec04f7a0 /* PxClothMeshQuadifier.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshQuadifier.h"; path = "../../../Include/extensions/PxClothMeshQuadifier.h"; sourceTree = SOURCE_ROOT; }; + FFFDec04f8087febec04f808 /* PxClothTetherCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothTetherCooker.h"; path = "../../../Include/extensions/PxClothTetherCooker.h"; sourceTree = SOURCE_ROOT; }; + FFFDec04f8707febec04f870 /* PxCollectionExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCollectionExt.h"; path = "../../../Include/extensions/PxCollectionExt.h"; sourceTree = SOURCE_ROOT; }; + FFFDec04f8d87febec04f8d8 /* PxConstraintExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintExt.h"; path = "../../../Include/extensions/PxConstraintExt.h"; sourceTree = SOURCE_ROOT; }; + FFFDec04f9407febec04f940 /* PxConvexMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshExt.h"; path = "../../../Include/extensions/PxConvexMeshExt.h"; sourceTree = SOURCE_ROOT; }; + FFFDec04f9a87febec04f9a8 /* PxD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxD6Joint.h"; path = "../../../Include/extensions/PxD6Joint.h"; sourceTree = SOURCE_ROOT; }; + FFFDec04fa107febec04fa10 /* PxDefaultAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultAllocator.h"; path = "../../../Include/extensions/PxDefaultAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFDec04fa787febec04fa78 /* PxDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultCpuDispatcher.h"; path = "../../../Include/extensions/PxDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; + FFFDec04fae07febec04fae0 /* PxDefaultErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultErrorCallback.h"; path = "../../../Include/extensions/PxDefaultErrorCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFDec04fb487febec04fb48 /* PxDefaultSimulationFilterShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultSimulationFilterShader.h"; path = "../../../Include/extensions/PxDefaultSimulationFilterShader.h"; sourceTree = SOURCE_ROOT; }; + FFFDec04fbb07febec04fbb0 /* PxDefaultStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultStreams.h"; path = "../../../Include/extensions/PxDefaultStreams.h"; sourceTree = SOURCE_ROOT; }; + FFFDec04fc187febec04fc18 /* PxDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDistanceJoint.h"; path = "../../../Include/extensions/PxDistanceJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDec04fc807febec04fc80 /* PxExtensionsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtensionsAPI.h"; path = "../../../Include/extensions/PxExtensionsAPI.h"; sourceTree = SOURCE_ROOT; }; + FFFDec04fce87febec04fce8 /* PxFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFixedJoint.h"; path = "../../../Include/extensions/PxFixedJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDec04fd507febec04fd50 /* PxJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJoint.h"; path = "../../../Include/extensions/PxJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDec04fdb87febec04fdb8 /* PxJointLimit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJointLimit.h"; path = "../../../Include/extensions/PxJointLimit.h"; sourceTree = SOURCE_ROOT; }; + FFFDec04fe207febec04fe20 /* PxMassProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMassProperties.h"; path = "../../../Include/extensions/PxMassProperties.h"; sourceTree = SOURCE_ROOT; }; + FFFDec04fe887febec04fe88 /* PxParticleExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxParticleExt.h"; path = "../../../Include/extensions/PxParticleExt.h"; sourceTree = SOURCE_ROOT; }; + FFFDec04fef07febec04fef0 /* PxPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPrismaticJoint.h"; path = "../../../Include/extensions/PxPrismaticJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDec04ff587febec04ff58 /* PxRaycastCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRaycastCCD.h"; path = "../../../Include/extensions/PxRaycastCCD.h"; sourceTree = SOURCE_ROOT; }; + FFFDec04ffc07febec04ffc0 /* PxRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSerializer.h"; path = "../../../Include/extensions/PxRepXSerializer.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0500287febec050028 /* PxRepXSimpleType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSimpleType.h"; path = "../../../Include/extensions/PxRepXSimpleType.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0500907febec050090 /* PxRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRevoluteJoint.h"; path = "../../../Include/extensions/PxRevoluteJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0500f87febec0500f8 /* PxRigidActorExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActorExt.h"; path = "../../../Include/extensions/PxRigidActorExt.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0501607febec050160 /* PxRigidBodyExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBodyExt.h"; path = "../../../Include/extensions/PxRigidBodyExt.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0501c87febec0501c8 /* PxSceneQueryExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneQueryExt.h"; path = "../../../Include/extensions/PxSceneQueryExt.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0502307febec050230 /* PxSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSerialization.h"; path = "../../../Include/extensions/PxSerialization.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0502987febec050298 /* PxShapeExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShapeExt.h"; path = "../../../Include/extensions/PxShapeExt.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0503007febec050300 /* PxSimpleFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleFactory.h"; path = "../../../Include/extensions/PxSimpleFactory.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0503687febec050368 /* PxSmoothNormals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSmoothNormals.h"; path = "../../../Include/extensions/PxSmoothNormals.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0503d07febec0503d0 /* PxSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSphericalJoint.h"; path = "../../../Include/extensions/PxSphericalJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0504387febec050438 /* PxStringTableExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStringTableExt.h"; path = "../../../Include/extensions/PxStringTableExt.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0504a07febec0504a0 /* PxTriangleMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshExt.h"; path = "../../../Include/extensions/PxTriangleMeshExt.h"; sourceTree = SOURCE_ROOT; }; + FFFDec04e0007febec04e000 /* ExtConstraintHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConstraintHelper.h"; path = "../../PhysXExtensions/src/ExtConstraintHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFDec04e0687febec04e068 /* ExtCpuWorkerThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.h"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.h"; sourceTree = SOURCE_ROOT; }; + FFFDec04e0d07febec04e0d0 /* ExtD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.h"; path = "../../PhysXExtensions/src/ExtD6Joint.h"; sourceTree = SOURCE_ROOT; }; + FFFDec04e1387febec04e138 /* ExtDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.h"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; + FFFDec04e1a07febec04e1a0 /* ExtDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.h"; path = "../../PhysXExtensions/src/ExtDistanceJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDec04e2087febec04e208 /* ExtFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.h"; path = "../../PhysXExtensions/src/ExtFixedJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDec04e2707febec04e270 /* ExtInertiaTensor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtInertiaTensor.h"; path = "../../PhysXExtensions/src/ExtInertiaTensor.h"; sourceTree = SOURCE_ROOT; }; + FFFDec04e2d87febec04e2d8 /* ExtJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.h"; path = "../../PhysXExtensions/src/ExtJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDec04e3407febec04e340 /* ExtJointMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJointMetaDataExtensions.h"; path = "../../PhysXExtensions/src/ExtJointMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; + FFFDec04e3a87febec04e3a8 /* ExtPlatform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPlatform.h"; path = "../../PhysXExtensions/src/ExtPlatform.h"; sourceTree = SOURCE_ROOT; }; + FFFDec04e4107febec04e410 /* ExtPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.h"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDec04e4787febec04e478 /* ExtPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.h"; path = "../../PhysXExtensions/src/ExtPvd.h"; sourceTree = SOURCE_ROOT; }; + FFFDec04e4e07febec04e4e0 /* ExtRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.h"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDec04e5487febec04e548 /* ExtSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSerialization.h"; path = "../../PhysXExtensions/src/ExtSerialization.h"; sourceTree = SOURCE_ROOT; }; + FFFDec04e5b07febec04e5b0 /* ExtSharedQueueEntryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSharedQueueEntryPool.h"; path = "../../PhysXExtensions/src/ExtSharedQueueEntryPool.h"; sourceTree = SOURCE_ROOT; }; + FFFDec04e6187febec04e618 /* ExtSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.h"; path = "../../PhysXExtensions/src/ExtSphericalJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDec04e6807febec04e680 /* ExtTaskQueueHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTaskQueueHelper.h"; path = "../../PhysXExtensions/src/ExtTaskQueueHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFDec04e6e87febec04e6e8 /* ExtBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtBroadPhase.cpp"; path = "../../PhysXExtensions/src/ExtBroadPhase.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec04e7507febec04e750 /* ExtClothFabricCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothFabricCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothFabricCooker.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec04e7b87febec04e7b8 /* ExtClothGeodesicTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothGeodesicTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothGeodesicTetherCooker.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec04e8207febec04e820 /* ExtClothMeshQuadifier.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothMeshQuadifier.cpp"; path = "../../PhysXExtensions/src/ExtClothMeshQuadifier.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec04e8887febec04e888 /* ExtClothSimpleTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothSimpleTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothSimpleTetherCooker.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec04e8f07febec04e8f0 /* ExtCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCollection.cpp"; path = "../../PhysXExtensions/src/ExtCollection.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec04e9587febec04e958 /* ExtConvexMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConvexMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtConvexMeshExt.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec04e9c07febec04e9c0 /* ExtCpuWorkerThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.cpp"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec04ea287febec04ea28 /* ExtD6Joint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.cpp"; path = "../../PhysXExtensions/src/ExtD6Joint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec04ea907febec04ea90 /* ExtD6JointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6JointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtD6JointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec04eaf87febec04eaf8 /* ExtDefaultCpuDispatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.cpp"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec04eb607febec04eb60 /* ExtDefaultErrorCallback.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultErrorCallback.cpp"; path = "../../PhysXExtensions/src/ExtDefaultErrorCallback.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec04ebc87febec04ebc8 /* ExtDefaultSimulationFilterShader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultSimulationFilterShader.cpp"; path = "../../PhysXExtensions/src/ExtDefaultSimulationFilterShader.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec04ec307febec04ec30 /* ExtDefaultStreams.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultStreams.cpp"; path = "../../PhysXExtensions/src/ExtDefaultStreams.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec04ec987febec04ec98 /* ExtDistanceJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec04ed007febec04ed00 /* ExtDistanceJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec04ed687febec04ed68 /* ExtExtensions.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtExtensions.cpp"; path = "../../PhysXExtensions/src/ExtExtensions.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec04edd07febec04edd0 /* ExtFixedJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.cpp"; path = "../../PhysXExtensions/src/ExtFixedJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec04ee387febec04ee38 /* ExtFixedJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtFixedJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec04eea07febec04eea0 /* ExtJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.cpp"; path = "../../PhysXExtensions/src/ExtJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec04ef087febec04ef08 /* ExtMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtMetaData.cpp"; path = "../../PhysXExtensions/src/ExtMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec04ef707febec04ef70 /* ExtParticleExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtParticleExt.cpp"; path = "../../PhysXExtensions/src/ExtParticleExt.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec04efd87febec04efd8 /* ExtPrismaticJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec04f0407febec04f040 /* ExtPrismaticJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec04f0a87febec04f0a8 /* ExtPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.cpp"; path = "../../PhysXExtensions/src/ExtPvd.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec04f1107febec04f110 /* ExtPxStringTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPxStringTable.cpp"; path = "../../PhysXExtensions/src/ExtPxStringTable.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec04f1787febec04f178 /* ExtRaycastCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRaycastCCD.cpp"; path = "../../PhysXExtensions/src/ExtRaycastCCD.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec04f1e07febec04f1e0 /* ExtRevoluteJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec04f2487febec04f248 /* ExtRevoluteJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec04f2b07febec04f2b0 /* ExtRigidBodyExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRigidBodyExt.cpp"; path = "../../PhysXExtensions/src/ExtRigidBodyExt.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec04f3187febec04f318 /* ExtSceneQueryExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSceneQueryExt.cpp"; path = "../../PhysXExtensions/src/ExtSceneQueryExt.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec04f3807febec04f380 /* ExtSimpleFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSimpleFactory.cpp"; path = "../../PhysXExtensions/src/ExtSimpleFactory.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec04f3e87febec04f3e8 /* ExtSmoothNormals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSmoothNormals.cpp"; path = "../../PhysXExtensions/src/ExtSmoothNormals.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec04f4507febec04f450 /* ExtSphericalJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec04f4b87febec04f4b8 /* ExtSphericalJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec04f5207febec04f520 /* ExtTriangleMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTriangleMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtTriangleMeshExt.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec051c007febec051c00 /* SnSerialUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.h"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFDec051c687febec051c68 /* SnSerializationRegistry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.h"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.h"; sourceTree = SOURCE_ROOT; }; + FFFDec051cd07febec051cd0 /* SnSerialUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec051d387febec051d38 /* SnSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec051da07febec051da0 /* SnSerializationRegistry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec051e087febec051e08 /* Binary/SnConvX.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.h"; sourceTree = SOURCE_ROOT; }; + FFFDec051e707febec051e70 /* Binary/SnConvX_Align.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.h"; sourceTree = SOURCE_ROOT; }; + FFFDec051ed87febec051ed8 /* Binary/SnConvX_Common.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Common.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Common.h"; sourceTree = SOURCE_ROOT; }; + FFFDec051f407febec051f40 /* Binary/SnConvX_MetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.h"; sourceTree = SOURCE_ROOT; }; + FFFDec051fa87febec051fa8 /* Binary/SnConvX_Output.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0520107febec052010 /* Binary/SnConvX_Union.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0520787febec052078 /* Binary/SnSerializationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0520e07febec0520e0 /* Binary/SnBinaryDeserialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinaryDeserialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinaryDeserialization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0521487febec052148 /* Binary/SnBinarySerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinarySerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinarySerialization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0521b07febec0521b0 /* Binary/SnConvX.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0522187febec052218 /* Binary/SnConvX_Align.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0522807febec052280 /* Binary/SnConvX_Convert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Convert.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Convert.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0522e87febec0522e8 /* Binary/SnConvX_Error.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Error.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Error.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0523507febec052350 /* Binary/SnConvX_MetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0523b87febec0523b8 /* Binary/SnConvX_Output.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0524207febec052420 /* Binary/SnConvX_Union.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0524887febec052488 /* Binary/SnSerializationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0524f07febec0524f0 /* Xml/SnJointRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnJointRepXSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0525587febec052558 /* Xml/SnPxStreamOperators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnPxStreamOperators.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnPxStreamOperators.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0525c07febec0525c0 /* Xml/SnRepX1_0Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX1_0Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX1_0Defaults.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0526287febec052628 /* Xml/SnRepX3_1Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_1Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_1Defaults.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0526907febec052690 /* Xml/SnRepX3_2Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_2Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_2Defaults.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0526f87febec0526f8 /* Xml/SnRepXCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCollection.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCollection.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0527607febec052760 /* Xml/SnRepXCoreSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0527c87febec0527c8 /* Xml/SnRepXSerializerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXSerializerImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXSerializerImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0528307febec052830 /* Xml/SnRepXUpgrader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0528987febec052898 /* Xml/SnSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0529007febec052900 /* Xml/SnXmlDeserializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlDeserializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlDeserializer.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0529687febec052968 /* Xml/SnXmlImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0529d07febec0529d0 /* Xml/SnXmlMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryAllocator.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFDec052a387febec052a38 /* Xml/SnXmlMemoryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPool.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPool.h"; sourceTree = SOURCE_ROOT; }; + FFFDec052aa07febec052aa0 /* Xml/SnXmlMemoryPoolStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPoolStreams.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPoolStreams.h"; sourceTree = SOURCE_ROOT; }; + FFFDec052b087febec052b08 /* Xml/SnXmlReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlReader.h"; sourceTree = SOURCE_ROOT; }; + FFFDec052b707febec052b70 /* Xml/SnXmlSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerializer.h"; sourceTree = SOURCE_ROOT; }; + FFFDec052bd87febec052bd8 /* Xml/SnXmlSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; }; + FFFDec052c407febec052c40 /* Xml/SnXmlStringToType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlStringToType.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlStringToType.h"; sourceTree = SOURCE_ROOT; }; + FFFDec052ca87febec052ca8 /* Xml/SnXmlVisitorReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorReader.h"; sourceTree = SOURCE_ROOT; }; + FFFDec052d107febec052d10 /* Xml/SnXmlVisitorWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorWriter.h"; sourceTree = SOURCE_ROOT; }; + FFFDec052d787febec052d78 /* Xml/SnXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlWriter.h"; sourceTree = SOURCE_ROOT; }; + FFFDec052de07febec052de0 /* Xml/SnJointRepXSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnJointRepXSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec052e487febec052e48 /* Xml/SnRepXCoreSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec052eb07febec052eb0 /* Xml/SnRepXUpgrader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec052f187febec052f18 /* Xml/SnXmlSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerialization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec052f807febec052f80 /* File/SnFile.h */= { isa = PBXFileReference; fileEncoding = 4; name = "File/SnFile.h"; path = "../../PhysXExtensions/src/serialization/File/SnFile.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0506007febec050600 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0506687febec050668 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0506d07febec0506d0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0507387febec050738 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0507a07febec0507a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0508087febec050808 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0508707febec050870 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0508d87febec0508d8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0509407febec050940 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0509a87febec0509a8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; + FFFDec050a107febec050a10 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFDec050a787febec050a78 /* extensions/include/PxExtensionMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFDec050ae07febec050ae0 /* 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 */ - FFF25cb609d07fb05cb609d0 /* Resources */ = { + FFF2ebeb68107febebeb6810 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -804,7 +804,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC5cb609d07fb05cb609d0 /* Frameworks */ = { + FFFCebeb68107febebeb6810 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -814,64 +814,64 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF85cb609d07fb05cb609d0 /* Sources */ = { + FFF8ebeb68107febebeb6810 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF5a9f0ee87fb05a9f0ee8, - FFFF5a9f0f507fb05a9f0f50, - FFFF5a9f0fb87fb05a9f0fb8, - FFFF5a9f10207fb05a9f1020, - FFFF5a9f10887fb05a9f1088, - FFFF5a9f10f07fb05a9f10f0, - FFFF5a9f11587fb05a9f1158, - FFFF5a9f11c07fb05a9f11c0, - FFFF5a9f12287fb05a9f1228, - FFFF5a9f12907fb05a9f1290, - FFFF5a9f12f87fb05a9f12f8, - FFFF5a9f13607fb05a9f1360, - FFFF5a9f13c87fb05a9f13c8, - FFFF5a9f14307fb05a9f1430, - FFFF5a9f14987fb05a9f1498, - FFFF5a9f15007fb05a9f1500, - FFFF5a9f15687fb05a9f1568, - FFFF5a9f15d07fb05a9f15d0, - FFFF5a9f16387fb05a9f1638, - FFFF5a9f16a07fb05a9f16a0, - FFFF5a9f17087fb05a9f1708, - FFFF5a9f17707fb05a9f1770, - FFFF5a9f17d87fb05a9f17d8, - FFFF5a9f18407fb05a9f1840, - FFFF5a9f18a87fb05a9f18a8, - FFFF5a9f19107fb05a9f1910, - FFFF5a9f19787fb05a9f1978, - FFFF5a9f19e07fb05a9f19e0, - FFFF5a9f1a487fb05a9f1a48, - FFFF5a9f1ab07fb05a9f1ab0, - FFFF5a9f1b187fb05a9f1b18, - FFFF5a9f1b807fb05a9f1b80, - FFFF5a9f1be87fb05a9f1be8, - FFFF5a9f1c507fb05a9f1c50, - FFFF5a9f1cb87fb05a9f1cb8, - FFFF5a9f1d207fb05a9f1d20, - FFFF5a9f52d07fb05a9f52d0, - FFFF5a9f53387fb05a9f5338, - FFFF5a9f53a07fb05a9f53a0, - FFFF5a9f56e07fb05a9f56e0, - FFFF5a9f57487fb05a9f5748, - FFFF5a9f57b07fb05a9f57b0, - FFFF5a9f58187fb05a9f5818, - FFFF5a9f58807fb05a9f5880, - FFFF5a9f58e87fb05a9f58e8, - FFFF5a9f59507fb05a9f5950, - FFFF5a9f59b87fb05a9f59b8, - FFFF5a9f5a207fb05a9f5a20, - FFFF5a9f5a887fb05a9f5a88, - FFFF5a9f63787fb05a9f6378, - FFFF5a9f63e07fb05a9f63e0, - FFFF5a9f64487fb05a9f6448, - FFFF5a9f64b07fb05a9f64b0, - FFFF5a9f32e07fb05a9f32e0, + FFFFec04e6e87febec04e6e8, + FFFFec04e7507febec04e750, + FFFFec04e7b87febec04e7b8, + FFFFec04e8207febec04e820, + FFFFec04e8887febec04e888, + FFFFec04e8f07febec04e8f0, + FFFFec04e9587febec04e958, + FFFFec04e9c07febec04e9c0, + FFFFec04ea287febec04ea28, + FFFFec04ea907febec04ea90, + FFFFec04eaf87febec04eaf8, + FFFFec04eb607febec04eb60, + FFFFec04ebc87febec04ebc8, + FFFFec04ec307febec04ec30, + FFFFec04ec987febec04ec98, + FFFFec04ed007febec04ed00, + FFFFec04ed687febec04ed68, + FFFFec04edd07febec04edd0, + FFFFec04ee387febec04ee38, + FFFFec04eea07febec04eea0, + FFFFec04ef087febec04ef08, + FFFFec04ef707febec04ef70, + FFFFec04efd87febec04efd8, + FFFFec04f0407febec04f040, + FFFFec04f0a87febec04f0a8, + FFFFec04f1107febec04f110, + FFFFec04f1787febec04f178, + FFFFec04f1e07febec04f1e0, + FFFFec04f2487febec04f248, + FFFFec04f2b07febec04f2b0, + FFFFec04f3187febec04f318, + FFFFec04f3807febec04f380, + FFFFec04f3e87febec04f3e8, + FFFFec04f4507febec04f450, + FFFFec04f4b87febec04f4b8, + FFFFec04f5207febec04f520, + FFFFec051cd07febec051cd0, + FFFFec051d387febec051d38, + FFFFec051da07febec051da0, + FFFFec0520e07febec0520e0, + FFFFec0521487febec052148, + FFFFec0521b07febec0521b0, + FFFFec0522187febec052218, + FFFFec0522807febec052280, + FFFFec0522e87febec0522e8, + FFFFec0523507febec052350, + FFFFec0523b87febec0523b8, + FFFFec0524207febec052420, + FFFFec0524887febec052488, + FFFFec052de07febec052de0, + FFFFec052e487febec052e48, + FFFFec052eb07febec052eb0, + FFFFec052f187febec052f18, + FFFFec050ae07febec050ae0, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -880,56 +880,56 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF45cb623b07fb05cb623b0 /* PBXTargetDependency */ = { + FFF4ebeb5f107febebeb5f10 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA5cb3a3f07fb05cb3a3f0 /* PsFastXml */; - targetProxy = FFF55cb3a3f07fb05cb3a3f0 /* PBXContainerItemProxy */; + target = FFFAebe97fd07febebe97fd0 /* PsFastXml */; + targetProxy = FFF5ebe97fd07febebe97fd0 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of SceneQuery */ - FFFF5a9f92007fb05a9f9200 /* SqAABBPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f92007fb05a9f9200 /* SqAABBPruner.cpp */; }; - FFFF5a9f92687fb05a9f9268 /* SqAABBTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f92687fb05a9f9268 /* SqAABBTree.cpp */; }; - FFFF5a9f92d07fb05a9f92d0 /* SqAABBTreeUpdateMap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f92d07fb05a9f92d0 /* SqAABBTreeUpdateMap.cpp */; }; - FFFF5a9f93387fb05a9f9338 /* SqBounds.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f93387fb05a9f9338 /* SqBounds.cpp */; }; - FFFF5a9f93a07fb05a9f93a0 /* SqBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f93a07fb05a9f93a0 /* SqBucketPruner.cpp */; }; - FFFF5a9f94087fb05a9f9408 /* SqExtendedBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f94087fb05a9f9408 /* SqExtendedBucketPruner.cpp */; }; - FFFF5a9f94707fb05a9f9470 /* SqMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f94707fb05a9f9470 /* SqMetaData.cpp */; }; - FFFF5a9f94d87fb05a9f94d8 /* SqPruningPool.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f94d87fb05a9f94d8 /* SqPruningPool.cpp */; }; - FFFF5a9f95407fb05a9f9540 /* SqPruningStructure.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f95407fb05a9f9540 /* SqPruningStructure.cpp */; }; - FFFF5a9f95a87fb05a9f95a8 /* SqSceneQueryManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9f95a87fb05a9f95a8 /* SqSceneQueryManager.cpp */; }; + FFFFec056c007febec056c00 /* SqAABBPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec056c007febec056c00 /* SqAABBPruner.cpp */; }; + FFFFec056c687febec056c68 /* SqAABBTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec056c687febec056c68 /* SqAABBTree.cpp */; }; + FFFFec056cd07febec056cd0 /* SqAABBTreeUpdateMap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec056cd07febec056cd0 /* SqAABBTreeUpdateMap.cpp */; }; + FFFFec056d387febec056d38 /* SqBounds.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec056d387febec056d38 /* SqBounds.cpp */; }; + FFFFec056da07febec056da0 /* SqBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec056da07febec056da0 /* SqBucketPruner.cpp */; }; + FFFFec056e087febec056e08 /* SqExtendedBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec056e087febec056e08 /* SqExtendedBucketPruner.cpp */; }; + FFFFec056e707febec056e70 /* SqMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec056e707febec056e70 /* SqMetaData.cpp */; }; + FFFFec056ed87febec056ed8 /* SqPruningPool.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec056ed87febec056ed8 /* SqPruningPool.cpp */; }; + FFFFec056f407febec056f40 /* SqPruningStructure.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec056f407febec056f40 /* SqPruningStructure.cpp */; }; + FFFFec056fa87febec056fa8 /* SqSceneQueryManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec056fa87febec056fa8 /* SqSceneQueryManager.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD5cb732c07fb05cb732c0 /* SceneQuery */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SceneQuery"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD5a9f92007fb05a9f9200 /* SqAABBPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.cpp"; path = "../../SceneQuery/src/SqAABBPruner.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f92687fb05a9f9268 /* SqAABBTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.cpp"; path = "../../SceneQuery/src/SqAABBTree.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f92d07fb05a9f92d0 /* SqAABBTreeUpdateMap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.cpp"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f93387fb05a9f9338 /* SqBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.cpp"; path = "../../SceneQuery/src/SqBounds.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f93a07fb05a9f93a0 /* SqBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.cpp"; path = "../../SceneQuery/src/SqBucketPruner.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f94087fb05a9f9408 /* SqExtendedBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.cpp"; path = "../../SceneQuery/src/SqExtendedBucketPruner.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f94707fb05a9f9470 /* SqMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqMetaData.cpp"; path = "../../SceneQuery/src/SqMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f94d87fb05a9f94d8 /* SqPruningPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.cpp"; path = "../../SceneQuery/src/SqPruningPool.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f95407fb05a9f9540 /* SqPruningStructure.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.cpp"; path = "../../SceneQuery/src/SqPruningStructure.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f95a87fb05a9f95a8 /* SqSceneQueryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.cpp"; path = "../../SceneQuery/src/SqSceneQueryManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f96107fb05a9f9610 /* SqAABBPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.h"; path = "../../SceneQuery/src/SqAABBPruner.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f96787fb05a9f9678 /* SqAABBTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.h"; path = "../../SceneQuery/src/SqAABBTree.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f96e07fb05a9f96e0 /* SqAABBTreeQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeQuery.h"; path = "../../SceneQuery/src/SqAABBTreeQuery.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f97487fb05a9f9748 /* SqAABBTreeUpdateMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.h"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f97b07fb05a9f97b0 /* SqBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.h"; path = "../../SceneQuery/src/SqBounds.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f98187fb05a9f9818 /* SqBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.h"; path = "../../SceneQuery/src/SqBucketPruner.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f98807fb05a9f9880 /* SqExtendedBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.h"; path = "../../SceneQuery/src/SqExtendedBucketPruner.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f98e87fb05a9f98e8 /* SqPrunerTestsSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerTestsSIMD.h"; path = "../../SceneQuery/src/SqPrunerTestsSIMD.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f99507fb05a9f9950 /* SqPruningPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.h"; path = "../../SceneQuery/src/SqPruningPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9f99b87fb05a9f99b8 /* SqTypedef.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqTypedef.h"; path = "../../SceneQuery/src/SqTypedef.h"; sourceTree = SOURCE_ROOT; }; - FFFD5cb776207fb05cb77620 /* SqPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruner.h"; path = "../../SceneQuery/include/SqPruner.h"; sourceTree = SOURCE_ROOT; }; - FFFD5cb776887fb05cb77688 /* SqPrunerMergeData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerMergeData.h"; path = "../../SceneQuery/include/SqPrunerMergeData.h"; sourceTree = SOURCE_ROOT; }; - FFFD5cb776f07fb05cb776f0 /* SqPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.h"; path = "../../SceneQuery/include/SqPruningStructure.h"; sourceTree = SOURCE_ROOT; }; - FFFD5cb777587fb05cb77758 /* SqSceneQueryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.h"; path = "../../SceneQuery/include/SqSceneQueryManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDebec79007febebec7900 /* SceneQuery */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SceneQuery"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDec056c007febec056c00 /* SqAABBPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.cpp"; path = "../../SceneQuery/src/SqAABBPruner.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec056c687febec056c68 /* SqAABBTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.cpp"; path = "../../SceneQuery/src/SqAABBTree.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec056cd07febec056cd0 /* SqAABBTreeUpdateMap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.cpp"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec056d387febec056d38 /* SqBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.cpp"; path = "../../SceneQuery/src/SqBounds.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec056da07febec056da0 /* SqBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.cpp"; path = "../../SceneQuery/src/SqBucketPruner.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec056e087febec056e08 /* SqExtendedBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.cpp"; path = "../../SceneQuery/src/SqExtendedBucketPruner.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec056e707febec056e70 /* SqMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqMetaData.cpp"; path = "../../SceneQuery/src/SqMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec056ed87febec056ed8 /* SqPruningPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.cpp"; path = "../../SceneQuery/src/SqPruningPool.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec056f407febec056f40 /* SqPruningStructure.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.cpp"; path = "../../SceneQuery/src/SqPruningStructure.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec056fa87febec056fa8 /* SqSceneQueryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.cpp"; path = "../../SceneQuery/src/SqSceneQueryManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0570107febec057010 /* SqAABBPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.h"; path = "../../SceneQuery/src/SqAABBPruner.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0570787febec057078 /* SqAABBTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.h"; path = "../../SceneQuery/src/SqAABBTree.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0570e07febec0570e0 /* SqAABBTreeQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeQuery.h"; path = "../../SceneQuery/src/SqAABBTreeQuery.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0571487febec057148 /* SqAABBTreeUpdateMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.h"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0571b07febec0571b0 /* SqBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.h"; path = "../../SceneQuery/src/SqBounds.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0572187febec057218 /* SqBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.h"; path = "../../SceneQuery/src/SqBucketPruner.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0572807febec057280 /* SqExtendedBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.h"; path = "../../SceneQuery/src/SqExtendedBucketPruner.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0572e87febec0572e8 /* SqPrunerTestsSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerTestsSIMD.h"; path = "../../SceneQuery/src/SqPrunerTestsSIMD.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0573507febec057350 /* SqPruningPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.h"; path = "../../SceneQuery/src/SqPruningPool.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0573b87febec0573b8 /* SqTypedef.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqTypedef.h"; path = "../../SceneQuery/src/SqTypedef.h"; sourceTree = SOURCE_ROOT; }; + FFFDebecbba07febebecbba0 /* SqPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruner.h"; path = "../../SceneQuery/include/SqPruner.h"; sourceTree = SOURCE_ROOT; }; + FFFDebecbc087febebecbc08 /* SqPrunerMergeData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerMergeData.h"; path = "../../SceneQuery/include/SqPrunerMergeData.h"; sourceTree = SOURCE_ROOT; }; + FFFDebecbc707febebecbc70 /* SqPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.h"; path = "../../SceneQuery/include/SqPruningStructure.h"; sourceTree = SOURCE_ROOT; }; + FFFDebecbcd87febebecbcd8 /* SqSceneQueryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.h"; path = "../../SceneQuery/include/SqSceneQueryManager.h"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF25cb732c07fb05cb732c0 /* Resources */ = { + FFF2ebec79007febebec7900 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -939,7 +939,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC5cb732c07fb05cb732c0 /* Frameworks */ = { + FFFCebec79007febebec7900 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -949,20 +949,20 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF85cb732c07fb05cb732c0 /* Sources */ = { + FFF8ebec79007febebec7900 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF5a9f92007fb05a9f9200, - FFFF5a9f92687fb05a9f9268, - FFFF5a9f92d07fb05a9f92d0, - FFFF5a9f93387fb05a9f9338, - FFFF5a9f93a07fb05a9f93a0, - FFFF5a9f94087fb05a9f9408, - FFFF5a9f94707fb05a9f9470, - FFFF5a9f94d87fb05a9f94d8, - FFFF5a9f95407fb05a9f9540, - FFFF5a9f95a87fb05a9f95a8, + FFFFec056c007febec056c00, + FFFFec056c687febec056c68, + FFFFec056cd07febec056cd0, + FFFFec056d387febec056d38, + FFFFec056da07febec056da0, + FFFFec056e087febec056e08, + FFFFec056e707febec056e70, + FFFFec056ed87febec056ed8, + FFFFec056f407febec056f40, + FFFFec056fa87febec056fa8, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -974,154 +974,154 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of SimulationController */ - FFFF5a9ffbd07fb05a9ffbd0 /* ScActorCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ffbd07fb05a9ffbd0 /* ScActorCore.cpp */; }; - FFFF5a9ffc387fb05a9ffc38 /* ScActorSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ffc387fb05a9ffc38 /* ScActorSim.cpp */; }; - FFFF5a9ffca07fb05a9ffca0 /* ScArticulationCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ffca07fb05a9ffca0 /* ScArticulationCore.cpp */; }; - FFFF5a9ffd087fb05a9ffd08 /* ScArticulationJointCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ffd087fb05a9ffd08 /* ScArticulationJointCore.cpp */; }; - FFFF5a9ffd707fb05a9ffd70 /* ScArticulationJointSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ffd707fb05a9ffd70 /* ScArticulationJointSim.cpp */; }; - FFFF5a9ffdd87fb05a9ffdd8 /* ScArticulationSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ffdd87fb05a9ffdd8 /* ScArticulationSim.cpp */; }; - FFFF5a9ffe407fb05a9ffe40 /* ScBodyCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ffe407fb05a9ffe40 /* ScBodyCore.cpp */; }; - FFFF5a9ffea87fb05a9ffea8 /* ScBodyCoreKinematic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9ffea87fb05a9ffea8 /* ScBodyCoreKinematic.cpp */; }; - FFFF5a9fff107fb05a9fff10 /* ScBodySim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9fff107fb05a9fff10 /* ScBodySim.cpp */; }; - FFFF5a9fff787fb05a9fff78 /* ScConstraintCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9fff787fb05a9fff78 /* ScConstraintCore.cpp */; }; - FFFF5a9fffe07fb05a9fffe0 /* ScConstraintGroupNode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9fffe07fb05a9fffe0 /* ScConstraintGroupNode.cpp */; }; - FFFF5aa000487fb05aa00048 /* ScConstraintInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa000487fb05aa00048 /* ScConstraintInteraction.cpp */; }; - FFFF5aa000b07fb05aa000b0 /* ScConstraintProjectionManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa000b07fb05aa000b0 /* ScConstraintProjectionManager.cpp */; }; - FFFF5aa001187fb05aa00118 /* ScConstraintProjectionTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa001187fb05aa00118 /* ScConstraintProjectionTree.cpp */; }; - FFFF5aa001807fb05aa00180 /* ScConstraintSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa001807fb05aa00180 /* ScConstraintSim.cpp */; }; - FFFF5aa001e87fb05aa001e8 /* ScElementInteractionMarker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa001e87fb05aa001e8 /* ScElementInteractionMarker.cpp */; }; - FFFF5aa002507fb05aa00250 /* ScElementSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa002507fb05aa00250 /* ScElementSim.cpp */; }; - FFFF5aa002b87fb05aa002b8 /* ScInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa002b87fb05aa002b8 /* ScInteraction.cpp */; }; - FFFF5aa003207fb05aa00320 /* ScIterators.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa003207fb05aa00320 /* ScIterators.cpp */; }; - FFFF5aa003887fb05aa00388 /* ScMaterialCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa003887fb05aa00388 /* ScMaterialCore.cpp */; }; - FFFF5aa003f07fb05aa003f0 /* ScMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa003f07fb05aa003f0 /* ScMetaData.cpp */; }; - FFFF5aa004587fb05aa00458 /* ScNPhaseCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa004587fb05aa00458 /* ScNPhaseCore.cpp */; }; - FFFF5aa004c07fb05aa004c0 /* ScPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa004c07fb05aa004c0 /* ScPhysics.cpp */; }; - FFFF5aa005287fb05aa00528 /* ScRigidCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa005287fb05aa00528 /* ScRigidCore.cpp */; }; - FFFF5aa005907fb05aa00590 /* ScRigidSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa005907fb05aa00590 /* ScRigidSim.cpp */; }; - FFFF5aa005f87fb05aa005f8 /* ScScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa005f87fb05aa005f8 /* ScScene.cpp */; }; - FFFF5aa006607fb05aa00660 /* ScShapeCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa006607fb05aa00660 /* ScShapeCore.cpp */; }; - FFFF5aa006c87fb05aa006c8 /* ScShapeInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa006c87fb05aa006c8 /* ScShapeInteraction.cpp */; }; - FFFF5aa007307fb05aa00730 /* ScShapeSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa007307fb05aa00730 /* ScShapeSim.cpp */; }; - FFFF5aa007987fb05aa00798 /* ScSimStats.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa007987fb05aa00798 /* ScSimStats.cpp */; }; - FFFF5aa008007fb05aa00800 /* ScSimulationController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa008007fb05aa00800 /* ScSimulationController.cpp */; }; - FFFF5aa008687fb05aa00868 /* ScSqBoundsManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa008687fb05aa00868 /* ScSqBoundsManager.cpp */; }; - FFFF5aa008d07fb05aa008d0 /* ScStaticCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa008d07fb05aa008d0 /* ScStaticCore.cpp */; }; - FFFF5aa009387fb05aa00938 /* ScStaticSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa009387fb05aa00938 /* ScStaticSim.cpp */; }; - FFFF5aa009a07fb05aa009a0 /* ScTriggerInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa009a07fb05aa009a0 /* ScTriggerInteraction.cpp */; }; - FFFF5aa00b407fb05aa00b40 /* particles/ScParticleBodyInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa00b407fb05aa00b40 /* particles/ScParticleBodyInteraction.cpp */; }; - FFFF5aa00ba87fb05aa00ba8 /* particles/ScParticlePacketShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa00ba87fb05aa00ba8 /* particles/ScParticlePacketShape.cpp */; }; - FFFF5aa00c107fb05aa00c10 /* particles/ScParticleSystemCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa00c107fb05aa00c10 /* particles/ScParticleSystemCore.cpp */; }; - FFFF5aa00c787fb05aa00c78 /* particles/ScParticleSystemSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa00c787fb05aa00c78 /* particles/ScParticleSystemSim.cpp */; }; - FFFF5aa00db07fb05aa00db0 /* cloth/ScClothCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa00db07fb05aa00db0 /* cloth/ScClothCore.cpp */; }; - FFFF5aa00e187fb05aa00e18 /* cloth/ScClothFabricCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa00e187fb05aa00e18 /* cloth/ScClothFabricCore.cpp */; }; - FFFF5aa00e807fb05aa00e80 /* cloth/ScClothShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa00e807fb05aa00e80 /* cloth/ScClothShape.cpp */; }; - FFFF5aa00ee87fb05aa00ee8 /* cloth/ScClothSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa00ee87fb05aa00ee8 /* cloth/ScClothSim.cpp */; }; + FFFFec05d7d07febec05d7d0 /* ScActorCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec05d7d07febec05d7d0 /* ScActorCore.cpp */; }; + FFFFec05d8387febec05d838 /* ScActorSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec05d8387febec05d838 /* ScActorSim.cpp */; }; + FFFFec05d8a07febec05d8a0 /* ScArticulationCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec05d8a07febec05d8a0 /* ScArticulationCore.cpp */; }; + FFFFec05d9087febec05d908 /* ScArticulationJointCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec05d9087febec05d908 /* ScArticulationJointCore.cpp */; }; + FFFFec05d9707febec05d970 /* ScArticulationJointSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec05d9707febec05d970 /* ScArticulationJointSim.cpp */; }; + FFFFec05d9d87febec05d9d8 /* ScArticulationSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec05d9d87febec05d9d8 /* ScArticulationSim.cpp */; }; + FFFFec05da407febec05da40 /* ScBodyCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec05da407febec05da40 /* ScBodyCore.cpp */; }; + FFFFec05daa87febec05daa8 /* ScBodyCoreKinematic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec05daa87febec05daa8 /* ScBodyCoreKinematic.cpp */; }; + FFFFec05db107febec05db10 /* ScBodySim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec05db107febec05db10 /* ScBodySim.cpp */; }; + FFFFec05db787febec05db78 /* ScConstraintCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec05db787febec05db78 /* ScConstraintCore.cpp */; }; + FFFFec05dbe07febec05dbe0 /* ScConstraintGroupNode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec05dbe07febec05dbe0 /* ScConstraintGroupNode.cpp */; }; + FFFFec05dc487febec05dc48 /* ScConstraintInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec05dc487febec05dc48 /* ScConstraintInteraction.cpp */; }; + FFFFec05dcb07febec05dcb0 /* ScConstraintProjectionManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec05dcb07febec05dcb0 /* ScConstraintProjectionManager.cpp */; }; + FFFFec05dd187febec05dd18 /* ScConstraintProjectionTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec05dd187febec05dd18 /* ScConstraintProjectionTree.cpp */; }; + FFFFec05dd807febec05dd80 /* ScConstraintSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec05dd807febec05dd80 /* ScConstraintSim.cpp */; }; + FFFFec05dde87febec05dde8 /* ScElementInteractionMarker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec05dde87febec05dde8 /* ScElementInteractionMarker.cpp */; }; + FFFFec05de507febec05de50 /* ScElementSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec05de507febec05de50 /* ScElementSim.cpp */; }; + FFFFec05deb87febec05deb8 /* ScInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec05deb87febec05deb8 /* ScInteraction.cpp */; }; + FFFFec05df207febec05df20 /* ScIterators.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec05df207febec05df20 /* ScIterators.cpp */; }; + FFFFec05df887febec05df88 /* ScMaterialCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec05df887febec05df88 /* ScMaterialCore.cpp */; }; + FFFFec05dff07febec05dff0 /* ScMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec05dff07febec05dff0 /* ScMetaData.cpp */; }; + FFFFec05e0587febec05e058 /* ScNPhaseCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec05e0587febec05e058 /* ScNPhaseCore.cpp */; }; + FFFFec05e0c07febec05e0c0 /* ScPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec05e0c07febec05e0c0 /* ScPhysics.cpp */; }; + FFFFec05e1287febec05e128 /* ScRigidCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec05e1287febec05e128 /* ScRigidCore.cpp */; }; + FFFFec05e1907febec05e190 /* ScRigidSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec05e1907febec05e190 /* ScRigidSim.cpp */; }; + FFFFec05e1f87febec05e1f8 /* ScScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec05e1f87febec05e1f8 /* ScScene.cpp */; }; + FFFFec05e2607febec05e260 /* ScShapeCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec05e2607febec05e260 /* ScShapeCore.cpp */; }; + FFFFec05e2c87febec05e2c8 /* ScShapeInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec05e2c87febec05e2c8 /* ScShapeInteraction.cpp */; }; + FFFFec05e3307febec05e330 /* ScShapeSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec05e3307febec05e330 /* ScShapeSim.cpp */; }; + FFFFec05e3987febec05e398 /* ScSimStats.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec05e3987febec05e398 /* ScSimStats.cpp */; }; + FFFFec05e4007febec05e400 /* ScSimulationController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec05e4007febec05e400 /* ScSimulationController.cpp */; }; + FFFFec05e4687febec05e468 /* ScSqBoundsManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec05e4687febec05e468 /* ScSqBoundsManager.cpp */; }; + FFFFec05e4d07febec05e4d0 /* ScStaticCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec05e4d07febec05e4d0 /* ScStaticCore.cpp */; }; + FFFFec05e5387febec05e538 /* ScStaticSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec05e5387febec05e538 /* ScStaticSim.cpp */; }; + FFFFec05e5a07febec05e5a0 /* ScTriggerInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec05e5a07febec05e5a0 /* ScTriggerInteraction.cpp */; }; + FFFFec05e7407febec05e740 /* particles/ScParticleBodyInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec05e7407febec05e740 /* particles/ScParticleBodyInteraction.cpp */; }; + FFFFec05e7a87febec05e7a8 /* particles/ScParticlePacketShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec05e7a87febec05e7a8 /* particles/ScParticlePacketShape.cpp */; }; + FFFFec05e8107febec05e810 /* particles/ScParticleSystemCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec05e8107febec05e810 /* particles/ScParticleSystemCore.cpp */; }; + FFFFec05e8787febec05e878 /* particles/ScParticleSystemSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec05e8787febec05e878 /* particles/ScParticleSystemSim.cpp */; }; + FFFFec05e9b07febec05e9b0 /* cloth/ScClothCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec05e9b07febec05e9b0 /* cloth/ScClothCore.cpp */; }; + FFFFec05ea187febec05ea18 /* cloth/ScClothFabricCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec05ea187febec05ea18 /* cloth/ScClothFabricCore.cpp */; }; + FFFFec05ea807febec05ea80 /* cloth/ScClothShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec05ea807febec05ea80 /* cloth/ScClothShape.cpp */; }; + FFFFec05eae87febec05eae8 /* cloth/ScClothSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec05eae87febec05eae8 /* cloth/ScClothSim.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD5cb778e07fb05cb778e0 /* SimulationController */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SimulationController"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD5a9fbc007fb05a9fbc00 /* ScActorCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.h"; path = "../../SimulationController/include/ScActorCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9fbc687fb05a9fbc68 /* ScArticulationCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.h"; path = "../../SimulationController/include/ScArticulationCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9fbcd07fb05a9fbcd0 /* ScArticulationJointCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.h"; path = "../../SimulationController/include/ScArticulationJointCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9fbd387fb05a9fbd38 /* ScBodyCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.h"; path = "../../SimulationController/include/ScBodyCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9fbda07fb05a9fbda0 /* ScClothCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothCore.h"; path = "../../SimulationController/include/ScClothCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9fbe087fb05a9fbe08 /* ScClothFabricCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothFabricCore.h"; path = "../../SimulationController/include/ScClothFabricCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9fbe707fb05a9fbe70 /* ScConstraintCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.h"; path = "../../SimulationController/include/ScConstraintCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9fbed87fb05a9fbed8 /* ScIterators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.h"; path = "../../SimulationController/include/ScIterators.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9fbf407fb05a9fbf40 /* ScMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.h"; path = "../../SimulationController/include/ScMaterialCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9fbfa87fb05a9fbfa8 /* ScParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScParticleSystemCore.h"; path = "../../SimulationController/include/ScParticleSystemCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9fc0107fb05a9fc010 /* ScPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.h"; path = "../../SimulationController/include/ScPhysics.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9fc0787fb05a9fc078 /* ScRigidCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.h"; path = "../../SimulationController/include/ScRigidCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9fc0e07fb05a9fc0e0 /* ScScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.h"; path = "../../SimulationController/include/ScScene.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9fc1487fb05a9fc148 /* ScShapeCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.h"; path = "../../SimulationController/include/ScShapeCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9fc1b07fb05a9fc1b0 /* ScStaticCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.h"; path = "../../SimulationController/include/ScStaticCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9fee007fb05a9fee00 /* ScActorElementPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorElementPair.h"; path = "../../SimulationController/src/ScActorElementPair.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9fee687fb05a9fee68 /* ScActorInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorInteraction.h"; path = "../../SimulationController/src/ScActorInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9feed07fb05a9feed0 /* ScActorPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorPair.h"; path = "../../SimulationController/src/ScActorPair.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9fef387fb05a9fef38 /* ScActorSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.h"; path = "../../SimulationController/src/ScActorSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9fefa07fb05a9fefa0 /* ScArticulationJointSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.h"; path = "../../SimulationController/src/ScArticulationJointSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ff0087fb05a9ff008 /* ScArticulationSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.h"; path = "../../SimulationController/src/ScArticulationSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ff0707fb05a9ff070 /* ScBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.h"; path = "../../SimulationController/src/ScBodySim.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ff0d87fb05a9ff0d8 /* ScClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClient.h"; path = "../../SimulationController/src/ScClient.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ff1407fb05a9ff140 /* ScConstraintGroupNode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.h"; path = "../../SimulationController/src/ScConstraintGroupNode.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ff1a87fb05a9ff1a8 /* ScConstraintInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.h"; path = "../../SimulationController/src/ScConstraintInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ff2107fb05a9ff210 /* ScConstraintProjectionManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.h"; path = "../../SimulationController/src/ScConstraintProjectionManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ff2787fb05a9ff278 /* ScConstraintProjectionTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.h"; path = "../../SimulationController/src/ScConstraintProjectionTree.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ff2e07fb05a9ff2e0 /* ScConstraintSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.h"; path = "../../SimulationController/src/ScConstraintSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ff3487fb05a9ff348 /* ScContactReportBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactReportBuffer.h"; path = "../../SimulationController/src/ScContactReportBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ff3b07fb05a9ff3b0 /* ScContactStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactStream.h"; path = "../../SimulationController/src/ScContactStream.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ff4187fb05a9ff418 /* ScElementInteractionMarker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.h"; path = "../../SimulationController/src/ScElementInteractionMarker.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ff4807fb05a9ff480 /* ScElementSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.h"; path = "../../SimulationController/src/ScElementSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ff4e87fb05a9ff4e8 /* ScElementSimInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSimInteraction.h"; path = "../../SimulationController/src/ScElementSimInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ff5507fb05a9ff550 /* ScInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.h"; path = "../../SimulationController/src/ScInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ff5b87fb05a9ff5b8 /* ScInteractionFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteractionFlags.h"; path = "../../SimulationController/src/ScInteractionFlags.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ff6207fb05a9ff620 /* ScNPhaseCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.h"; path = "../../SimulationController/src/ScNPhaseCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ff6887fb05a9ff688 /* ScObjectIDTracker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScObjectIDTracker.h"; path = "../../SimulationController/src/ScObjectIDTracker.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ff6f07fb05a9ff6f0 /* ScRbElementInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRbElementInteraction.h"; path = "../../SimulationController/src/ScRbElementInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ff7587fb05a9ff758 /* ScRigidSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.h"; path = "../../SimulationController/src/ScRigidSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ff7c07fb05a9ff7c0 /* ScShapeInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.h"; path = "../../SimulationController/src/ScShapeInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ff8287fb05a9ff828 /* ScShapeIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeIterator.h"; path = "../../SimulationController/src/ScShapeIterator.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ff8907fb05a9ff890 /* ScShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.h"; path = "../../SimulationController/src/ScShapeSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ff8f87fb05a9ff8f8 /* ScSimStateData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStateData.h"; path = "../../SimulationController/src/ScSimStateData.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ff9607fb05a9ff960 /* ScSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.h"; path = "../../SimulationController/src/ScSimStats.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ff9c87fb05a9ff9c8 /* ScSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.h"; path = "../../SimulationController/src/ScSimulationController.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ffa307fb05a9ffa30 /* ScSqBoundsManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.h"; path = "../../SimulationController/src/ScSqBoundsManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ffa987fb05a9ffa98 /* ScStaticSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.h"; path = "../../SimulationController/src/ScStaticSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ffb007fb05a9ffb00 /* ScTriggerInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.h"; path = "../../SimulationController/src/ScTriggerInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ffb687fb05a9ffb68 /* ScTriggerPairs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerPairs.h"; path = "../../SimulationController/src/ScTriggerPairs.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ffbd07fb05a9ffbd0 /* ScActorCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.cpp"; path = "../../SimulationController/src/ScActorCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ffc387fb05a9ffc38 /* ScActorSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.cpp"; path = "../../SimulationController/src/ScActorSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ffca07fb05a9ffca0 /* ScArticulationCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.cpp"; path = "../../SimulationController/src/ScArticulationCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ffd087fb05a9ffd08 /* ScArticulationJointCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.cpp"; path = "../../SimulationController/src/ScArticulationJointCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ffd707fb05a9ffd70 /* ScArticulationJointSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.cpp"; path = "../../SimulationController/src/ScArticulationJointSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ffdd87fb05a9ffdd8 /* ScArticulationSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.cpp"; path = "../../SimulationController/src/ScArticulationSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ffe407fb05a9ffe40 /* ScBodyCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.cpp"; path = "../../SimulationController/src/ScBodyCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ffea87fb05a9ffea8 /* ScBodyCoreKinematic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCoreKinematic.cpp"; path = "../../SimulationController/src/ScBodyCoreKinematic.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9fff107fb05a9fff10 /* ScBodySim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.cpp"; path = "../../SimulationController/src/ScBodySim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9fff787fb05a9fff78 /* ScConstraintCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.cpp"; path = "../../SimulationController/src/ScConstraintCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9fffe07fb05a9fffe0 /* ScConstraintGroupNode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.cpp"; path = "../../SimulationController/src/ScConstraintGroupNode.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5aa000487fb05aa00048 /* ScConstraintInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.cpp"; path = "../../SimulationController/src/ScConstraintInteraction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5aa000b07fb05aa000b0 /* ScConstraintProjectionManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.cpp"; path = "../../SimulationController/src/ScConstraintProjectionManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5aa001187fb05aa00118 /* ScConstraintProjectionTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.cpp"; path = "../../SimulationController/src/ScConstraintProjectionTree.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5aa001807fb05aa00180 /* ScConstraintSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.cpp"; path = "../../SimulationController/src/ScConstraintSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5aa001e87fb05aa001e8 /* ScElementInteractionMarker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.cpp"; path = "../../SimulationController/src/ScElementInteractionMarker.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5aa002507fb05aa00250 /* ScElementSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.cpp"; path = "../../SimulationController/src/ScElementSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5aa002b87fb05aa002b8 /* ScInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.cpp"; path = "../../SimulationController/src/ScInteraction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5aa003207fb05aa00320 /* ScIterators.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.cpp"; path = "../../SimulationController/src/ScIterators.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5aa003887fb05aa00388 /* ScMaterialCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.cpp"; path = "../../SimulationController/src/ScMaterialCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5aa003f07fb05aa003f0 /* ScMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMetaData.cpp"; path = "../../SimulationController/src/ScMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5aa004587fb05aa00458 /* ScNPhaseCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.cpp"; path = "../../SimulationController/src/ScNPhaseCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5aa004c07fb05aa004c0 /* ScPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.cpp"; path = "../../SimulationController/src/ScPhysics.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5aa005287fb05aa00528 /* ScRigidCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.cpp"; path = "../../SimulationController/src/ScRigidCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5aa005907fb05aa00590 /* ScRigidSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.cpp"; path = "../../SimulationController/src/ScRigidSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5aa005f87fb05aa005f8 /* ScScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.cpp"; path = "../../SimulationController/src/ScScene.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5aa006607fb05aa00660 /* ScShapeCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.cpp"; path = "../../SimulationController/src/ScShapeCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5aa006c87fb05aa006c8 /* ScShapeInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.cpp"; path = "../../SimulationController/src/ScShapeInteraction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5aa007307fb05aa00730 /* ScShapeSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.cpp"; path = "../../SimulationController/src/ScShapeSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5aa007987fb05aa00798 /* ScSimStats.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.cpp"; path = "../../SimulationController/src/ScSimStats.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5aa008007fb05aa00800 /* ScSimulationController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.cpp"; path = "../../SimulationController/src/ScSimulationController.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5aa008687fb05aa00868 /* ScSqBoundsManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.cpp"; path = "../../SimulationController/src/ScSqBoundsManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5aa008d07fb05aa008d0 /* ScStaticCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.cpp"; path = "../../SimulationController/src/ScStaticCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5aa009387fb05aa00938 /* ScStaticSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.cpp"; path = "../../SimulationController/src/ScStaticSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5aa009a07fb05aa009a0 /* ScTriggerInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.cpp"; path = "../../SimulationController/src/ScTriggerInteraction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5aa00a087fb05aa00a08 /* particles/ScParticleBodyInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.h"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFD5aa00a707fb05aa00a70 /* particles/ScParticlePacketShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.h"; path = "../../SimulationController/src/particles/ScParticlePacketShape.h"; sourceTree = SOURCE_ROOT; }; - FFFD5aa00ad87fb05aa00ad8 /* particles/ScParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.h"; path = "../../SimulationController/src/particles/ScParticleSystemSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD5aa00b407fb05aa00b40 /* particles/ScParticleBodyInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.cpp"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5aa00ba87fb05aa00ba8 /* particles/ScParticlePacketShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.cpp"; path = "../../SimulationController/src/particles/ScParticlePacketShape.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5aa00c107fb05aa00c10 /* particles/ScParticleSystemCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemCore.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5aa00c787fb05aa00c78 /* particles/ScParticleSystemSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5aa00ce07fb05aa00ce0 /* cloth/ScClothShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.h"; path = "../../SimulationController/src/cloth/ScClothShape.h"; sourceTree = SOURCE_ROOT; }; - FFFD5aa00d487fb05aa00d48 /* cloth/ScClothSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothSim.h"; path = "../../SimulationController/src/cloth/ScClothSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD5aa00db07fb05aa00db0 /* cloth/ScClothCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothCore.cpp"; path = "../../SimulationController/src/cloth/ScClothCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5aa00e187fb05aa00e18 /* cloth/ScClothFabricCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothFabricCore.cpp"; path = "../../SimulationController/src/cloth/ScClothFabricCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5aa00e807fb05aa00e80 /* cloth/ScClothShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.cpp"; path = "../../SimulationController/src/cloth/ScClothShape.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5aa00ee87fb05aa00ee8 /* cloth/ScClothSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothSim.cpp"; path = "../../SimulationController/src/cloth/ScClothSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDebecbe607febebecbe60 /* SimulationController */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SimulationController"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDec0598007febec059800 /* ScActorCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.h"; path = "../../SimulationController/include/ScActorCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0598687febec059868 /* ScArticulationCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.h"; path = "../../SimulationController/include/ScArticulationCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0598d07febec0598d0 /* ScArticulationJointCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.h"; path = "../../SimulationController/include/ScArticulationJointCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0599387febec059938 /* ScBodyCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.h"; path = "../../SimulationController/include/ScBodyCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0599a07febec0599a0 /* ScClothCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothCore.h"; path = "../../SimulationController/include/ScClothCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDec059a087febec059a08 /* ScClothFabricCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothFabricCore.h"; path = "../../SimulationController/include/ScClothFabricCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDec059a707febec059a70 /* ScConstraintCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.h"; path = "../../SimulationController/include/ScConstraintCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDec059ad87febec059ad8 /* ScIterators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.h"; path = "../../SimulationController/include/ScIterators.h"; sourceTree = SOURCE_ROOT; }; + FFFDec059b407febec059b40 /* ScMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.h"; path = "../../SimulationController/include/ScMaterialCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDec059ba87febec059ba8 /* ScParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScParticleSystemCore.h"; path = "../../SimulationController/include/ScParticleSystemCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDec059c107febec059c10 /* ScPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.h"; path = "../../SimulationController/include/ScPhysics.h"; sourceTree = SOURCE_ROOT; }; + FFFDec059c787febec059c78 /* ScRigidCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.h"; path = "../../SimulationController/include/ScRigidCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDec059ce07febec059ce0 /* ScScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.h"; path = "../../SimulationController/include/ScScene.h"; sourceTree = SOURCE_ROOT; }; + FFFDec059d487febec059d48 /* ScShapeCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.h"; path = "../../SimulationController/include/ScShapeCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDec059db07febec059db0 /* ScStaticCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.h"; path = "../../SimulationController/include/ScStaticCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDec05ca007febec05ca00 /* ScActorElementPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorElementPair.h"; path = "../../SimulationController/src/ScActorElementPair.h"; sourceTree = SOURCE_ROOT; }; + FFFDec05ca687febec05ca68 /* ScActorInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorInteraction.h"; path = "../../SimulationController/src/ScActorInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFDec05cad07febec05cad0 /* ScActorPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorPair.h"; path = "../../SimulationController/src/ScActorPair.h"; sourceTree = SOURCE_ROOT; }; + FFFDec05cb387febec05cb38 /* ScActorSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.h"; path = "../../SimulationController/src/ScActorSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDec05cba07febec05cba0 /* ScArticulationJointSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.h"; path = "../../SimulationController/src/ScArticulationJointSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDec05cc087febec05cc08 /* ScArticulationSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.h"; path = "../../SimulationController/src/ScArticulationSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDec05cc707febec05cc70 /* ScBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.h"; path = "../../SimulationController/src/ScBodySim.h"; sourceTree = SOURCE_ROOT; }; + FFFDec05ccd87febec05ccd8 /* ScClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClient.h"; path = "../../SimulationController/src/ScClient.h"; sourceTree = SOURCE_ROOT; }; + FFFDec05cd407febec05cd40 /* ScConstraintGroupNode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.h"; path = "../../SimulationController/src/ScConstraintGroupNode.h"; sourceTree = SOURCE_ROOT; }; + FFFDec05cda87febec05cda8 /* ScConstraintInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.h"; path = "../../SimulationController/src/ScConstraintInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFDec05ce107febec05ce10 /* ScConstraintProjectionManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.h"; path = "../../SimulationController/src/ScConstraintProjectionManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDec05ce787febec05ce78 /* ScConstraintProjectionTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.h"; path = "../../SimulationController/src/ScConstraintProjectionTree.h"; sourceTree = SOURCE_ROOT; }; + FFFDec05cee07febec05cee0 /* ScConstraintSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.h"; path = "../../SimulationController/src/ScConstraintSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDec05cf487febec05cf48 /* ScContactReportBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactReportBuffer.h"; path = "../../SimulationController/src/ScContactReportBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFDec05cfb07febec05cfb0 /* ScContactStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactStream.h"; path = "../../SimulationController/src/ScContactStream.h"; sourceTree = SOURCE_ROOT; }; + FFFDec05d0187febec05d018 /* ScElementInteractionMarker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.h"; path = "../../SimulationController/src/ScElementInteractionMarker.h"; sourceTree = SOURCE_ROOT; }; + FFFDec05d0807febec05d080 /* ScElementSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.h"; path = "../../SimulationController/src/ScElementSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDec05d0e87febec05d0e8 /* ScElementSimInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSimInteraction.h"; path = "../../SimulationController/src/ScElementSimInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFDec05d1507febec05d150 /* ScInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.h"; path = "../../SimulationController/src/ScInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFDec05d1b87febec05d1b8 /* ScInteractionFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteractionFlags.h"; path = "../../SimulationController/src/ScInteractionFlags.h"; sourceTree = SOURCE_ROOT; }; + FFFDec05d2207febec05d220 /* ScNPhaseCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.h"; path = "../../SimulationController/src/ScNPhaseCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDec05d2887febec05d288 /* ScObjectIDTracker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScObjectIDTracker.h"; path = "../../SimulationController/src/ScObjectIDTracker.h"; sourceTree = SOURCE_ROOT; }; + FFFDec05d2f07febec05d2f0 /* ScRbElementInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRbElementInteraction.h"; path = "../../SimulationController/src/ScRbElementInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFDec05d3587febec05d358 /* ScRigidSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.h"; path = "../../SimulationController/src/ScRigidSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDec05d3c07febec05d3c0 /* ScShapeInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.h"; path = "../../SimulationController/src/ScShapeInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFDec05d4287febec05d428 /* ScShapeIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeIterator.h"; path = "../../SimulationController/src/ScShapeIterator.h"; sourceTree = SOURCE_ROOT; }; + FFFDec05d4907febec05d490 /* ScShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.h"; path = "../../SimulationController/src/ScShapeSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDec05d4f87febec05d4f8 /* ScSimStateData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStateData.h"; path = "../../SimulationController/src/ScSimStateData.h"; sourceTree = SOURCE_ROOT; }; + FFFDec05d5607febec05d560 /* ScSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.h"; path = "../../SimulationController/src/ScSimStats.h"; sourceTree = SOURCE_ROOT; }; + FFFDec05d5c87febec05d5c8 /* ScSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.h"; path = "../../SimulationController/src/ScSimulationController.h"; sourceTree = SOURCE_ROOT; }; + FFFDec05d6307febec05d630 /* ScSqBoundsManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.h"; path = "../../SimulationController/src/ScSqBoundsManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDec05d6987febec05d698 /* ScStaticSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.h"; path = "../../SimulationController/src/ScStaticSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDec05d7007febec05d700 /* ScTriggerInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.h"; path = "../../SimulationController/src/ScTriggerInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFDec05d7687febec05d768 /* ScTriggerPairs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerPairs.h"; path = "../../SimulationController/src/ScTriggerPairs.h"; sourceTree = SOURCE_ROOT; }; + FFFDec05d7d07febec05d7d0 /* ScActorCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.cpp"; path = "../../SimulationController/src/ScActorCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec05d8387febec05d838 /* ScActorSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.cpp"; path = "../../SimulationController/src/ScActorSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec05d8a07febec05d8a0 /* ScArticulationCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.cpp"; path = "../../SimulationController/src/ScArticulationCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec05d9087febec05d908 /* ScArticulationJointCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.cpp"; path = "../../SimulationController/src/ScArticulationJointCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec05d9707febec05d970 /* ScArticulationJointSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.cpp"; path = "../../SimulationController/src/ScArticulationJointSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec05d9d87febec05d9d8 /* ScArticulationSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.cpp"; path = "../../SimulationController/src/ScArticulationSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec05da407febec05da40 /* ScBodyCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.cpp"; path = "../../SimulationController/src/ScBodyCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec05daa87febec05daa8 /* ScBodyCoreKinematic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCoreKinematic.cpp"; path = "../../SimulationController/src/ScBodyCoreKinematic.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec05db107febec05db10 /* ScBodySim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.cpp"; path = "../../SimulationController/src/ScBodySim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec05db787febec05db78 /* ScConstraintCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.cpp"; path = "../../SimulationController/src/ScConstraintCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec05dbe07febec05dbe0 /* ScConstraintGroupNode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.cpp"; path = "../../SimulationController/src/ScConstraintGroupNode.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec05dc487febec05dc48 /* ScConstraintInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.cpp"; path = "../../SimulationController/src/ScConstraintInteraction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec05dcb07febec05dcb0 /* ScConstraintProjectionManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.cpp"; path = "../../SimulationController/src/ScConstraintProjectionManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec05dd187febec05dd18 /* ScConstraintProjectionTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.cpp"; path = "../../SimulationController/src/ScConstraintProjectionTree.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec05dd807febec05dd80 /* ScConstraintSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.cpp"; path = "../../SimulationController/src/ScConstraintSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec05dde87febec05dde8 /* ScElementInteractionMarker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.cpp"; path = "../../SimulationController/src/ScElementInteractionMarker.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec05de507febec05de50 /* ScElementSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.cpp"; path = "../../SimulationController/src/ScElementSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec05deb87febec05deb8 /* ScInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.cpp"; path = "../../SimulationController/src/ScInteraction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec05df207febec05df20 /* ScIterators.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.cpp"; path = "../../SimulationController/src/ScIterators.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec05df887febec05df88 /* ScMaterialCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.cpp"; path = "../../SimulationController/src/ScMaterialCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec05dff07febec05dff0 /* ScMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMetaData.cpp"; path = "../../SimulationController/src/ScMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec05e0587febec05e058 /* ScNPhaseCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.cpp"; path = "../../SimulationController/src/ScNPhaseCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec05e0c07febec05e0c0 /* ScPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.cpp"; path = "../../SimulationController/src/ScPhysics.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec05e1287febec05e128 /* ScRigidCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.cpp"; path = "../../SimulationController/src/ScRigidCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec05e1907febec05e190 /* ScRigidSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.cpp"; path = "../../SimulationController/src/ScRigidSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec05e1f87febec05e1f8 /* ScScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.cpp"; path = "../../SimulationController/src/ScScene.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec05e2607febec05e260 /* ScShapeCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.cpp"; path = "../../SimulationController/src/ScShapeCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec05e2c87febec05e2c8 /* ScShapeInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.cpp"; path = "../../SimulationController/src/ScShapeInteraction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec05e3307febec05e330 /* ScShapeSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.cpp"; path = "../../SimulationController/src/ScShapeSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec05e3987febec05e398 /* ScSimStats.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.cpp"; path = "../../SimulationController/src/ScSimStats.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec05e4007febec05e400 /* ScSimulationController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.cpp"; path = "../../SimulationController/src/ScSimulationController.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec05e4687febec05e468 /* ScSqBoundsManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.cpp"; path = "../../SimulationController/src/ScSqBoundsManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec05e4d07febec05e4d0 /* ScStaticCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.cpp"; path = "../../SimulationController/src/ScStaticCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec05e5387febec05e538 /* ScStaticSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.cpp"; path = "../../SimulationController/src/ScStaticSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec05e5a07febec05e5a0 /* ScTriggerInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.cpp"; path = "../../SimulationController/src/ScTriggerInteraction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec05e6087febec05e608 /* particles/ScParticleBodyInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.h"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFDec05e6707febec05e670 /* particles/ScParticlePacketShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.h"; path = "../../SimulationController/src/particles/ScParticlePacketShape.h"; sourceTree = SOURCE_ROOT; }; + FFFDec05e6d87febec05e6d8 /* particles/ScParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.h"; path = "../../SimulationController/src/particles/ScParticleSystemSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDec05e7407febec05e740 /* particles/ScParticleBodyInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.cpp"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec05e7a87febec05e7a8 /* particles/ScParticlePacketShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.cpp"; path = "../../SimulationController/src/particles/ScParticlePacketShape.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec05e8107febec05e810 /* particles/ScParticleSystemCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemCore.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec05e8787febec05e878 /* particles/ScParticleSystemSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec05e8e07febec05e8e0 /* cloth/ScClothShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.h"; path = "../../SimulationController/src/cloth/ScClothShape.h"; sourceTree = SOURCE_ROOT; }; + FFFDec05e9487febec05e948 /* cloth/ScClothSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothSim.h"; path = "../../SimulationController/src/cloth/ScClothSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDec05e9b07febec05e9b0 /* cloth/ScClothCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothCore.cpp"; path = "../../SimulationController/src/cloth/ScClothCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec05ea187febec05ea18 /* cloth/ScClothFabricCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothFabricCore.cpp"; path = "../../SimulationController/src/cloth/ScClothFabricCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec05ea807febec05ea80 /* cloth/ScClothShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.cpp"; path = "../../SimulationController/src/cloth/ScClothShape.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec05eae87febec05eae8 /* 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 */ - FFF25cb778e07fb05cb778e0 /* Resources */ = { + FFF2ebecbe607febebecbe60 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -1131,7 +1131,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC5cb778e07fb05cb778e0 /* Frameworks */ = { + FFFCebecbe607febebecbe60 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -1141,53 +1141,53 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF85cb778e07fb05cb778e0 /* Sources */ = { + FFF8ebecbe607febebecbe60 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF5a9ffbd07fb05a9ffbd0, - FFFF5a9ffc387fb05a9ffc38, - FFFF5a9ffca07fb05a9ffca0, - FFFF5a9ffd087fb05a9ffd08, - FFFF5a9ffd707fb05a9ffd70, - FFFF5a9ffdd87fb05a9ffdd8, - FFFF5a9ffe407fb05a9ffe40, - FFFF5a9ffea87fb05a9ffea8, - FFFF5a9fff107fb05a9fff10, - FFFF5a9fff787fb05a9fff78, - FFFF5a9fffe07fb05a9fffe0, - FFFF5aa000487fb05aa00048, - FFFF5aa000b07fb05aa000b0, - FFFF5aa001187fb05aa00118, - FFFF5aa001807fb05aa00180, - FFFF5aa001e87fb05aa001e8, - FFFF5aa002507fb05aa00250, - FFFF5aa002b87fb05aa002b8, - FFFF5aa003207fb05aa00320, - FFFF5aa003887fb05aa00388, - FFFF5aa003f07fb05aa003f0, - FFFF5aa004587fb05aa00458, - FFFF5aa004c07fb05aa004c0, - FFFF5aa005287fb05aa00528, - FFFF5aa005907fb05aa00590, - FFFF5aa005f87fb05aa005f8, - FFFF5aa006607fb05aa00660, - FFFF5aa006c87fb05aa006c8, - FFFF5aa007307fb05aa00730, - FFFF5aa007987fb05aa00798, - FFFF5aa008007fb05aa00800, - FFFF5aa008687fb05aa00868, - FFFF5aa008d07fb05aa008d0, - FFFF5aa009387fb05aa00938, - FFFF5aa009a07fb05aa009a0, - FFFF5aa00b407fb05aa00b40, - FFFF5aa00ba87fb05aa00ba8, - FFFF5aa00c107fb05aa00c10, - FFFF5aa00c787fb05aa00c78, - FFFF5aa00db07fb05aa00db0, - FFFF5aa00e187fb05aa00e18, - FFFF5aa00e807fb05aa00e80, - FFFF5aa00ee87fb05aa00ee8, + FFFFec05d7d07febec05d7d0, + FFFFec05d8387febec05d838, + FFFFec05d8a07febec05d8a0, + FFFFec05d9087febec05d908, + FFFFec05d9707febec05d970, + FFFFec05d9d87febec05d9d8, + FFFFec05da407febec05da40, + FFFFec05daa87febec05daa8, + FFFFec05db107febec05db10, + FFFFec05db787febec05db78, + FFFFec05dbe07febec05dbe0, + FFFFec05dc487febec05dc48, + FFFFec05dcb07febec05dcb0, + FFFFec05dd187febec05dd18, + FFFFec05dd807febec05dd80, + FFFFec05dde87febec05dde8, + FFFFec05de507febec05de50, + FFFFec05deb87febec05deb8, + FFFFec05df207febec05df20, + FFFFec05df887febec05df88, + FFFFec05dff07febec05dff0, + FFFFec05e0587febec05e058, + FFFFec05e0c07febec05e0c0, + FFFFec05e1287febec05e128, + FFFFec05e1907febec05e190, + FFFFec05e1f87febec05e1f8, + FFFFec05e2607febec05e260, + FFFFec05e2c87febec05e2c8, + FFFFec05e3307febec05e330, + FFFFec05e3987febec05e398, + FFFFec05e4007febec05e400, + FFFFec05e4687febec05e468, + FFFFec05e4d07febec05e4d0, + FFFFec05e5387febec05e538, + FFFFec05e5a07febec05e5a0, + FFFFec05e7407febec05e740, + FFFFec05e7a87febec05e7a8, + FFFFec05e8107febec05e810, + FFFFec05e8787febec05e878, + FFFFec05e9b07febec05e9b0, + FFFFec05ea187febec05ea18, + FFFFec05ea807febec05ea80, + FFFFec05eae87febec05eae8, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1199,80 +1199,80 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PhysXCooking */ - FFFF5cb802007fb05cb80200 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD5cb609d07fb05cb609d0 /* PhysXExtensions */; }; - FFFF5aa030007fb05aa03000 /* Adjacencies.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa030007fb05aa03000 /* Adjacencies.cpp */; }; - FFFF5aa030687fb05aa03068 /* Cooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa030687fb05aa03068 /* Cooking.cpp */; }; - FFFF5aa030d07fb05aa030d0 /* CookingUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa030d07fb05aa030d0 /* CookingUtils.cpp */; }; - FFFF5aa031387fb05aa03138 /* EdgeList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa031387fb05aa03138 /* EdgeList.cpp */; }; - FFFF5aa031a07fb05aa031a0 /* MeshCleaner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa031a07fb05aa031a0 /* MeshCleaner.cpp */; }; - FFFF5aa032087fb05aa03208 /* Quantizer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa032087fb05aa03208 /* Quantizer.cpp */; }; - FFFF5aa034e07fb05aa034e0 /* mesh/GrbTriangleMeshCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa034e07fb05aa034e0 /* mesh/GrbTriangleMeshCooking.cpp */; }; - FFFF5aa035487fb05aa03548 /* mesh/HeightFieldCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa035487fb05aa03548 /* mesh/HeightFieldCooking.cpp */; }; - FFFF5aa035b07fb05aa035b0 /* mesh/RTreeCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa035b07fb05aa035b0 /* mesh/RTreeCooking.cpp */; }; - FFFF5aa036187fb05aa03618 /* mesh/TriangleMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa036187fb05aa03618 /* mesh/TriangleMeshBuilder.cpp */; }; - FFFF5aa038887fb05aa03888 /* convex/BigConvexDataBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa038887fb05aa03888 /* convex/BigConvexDataBuilder.cpp */; }; - FFFF5aa038f07fb05aa038f0 /* convex/ConvexHullBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa038f07fb05aa038f0 /* convex/ConvexHullBuilder.cpp */; }; - FFFF5aa039587fb05aa03958 /* convex/ConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa039587fb05aa03958 /* convex/ConvexHullLib.cpp */; }; - FFFF5aa039c07fb05aa039c0 /* convex/ConvexHullUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa039c07fb05aa039c0 /* convex/ConvexHullUtils.cpp */; }; - FFFF5aa03a287fb05aa03a28 /* convex/ConvexMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa03a287fb05aa03a28 /* convex/ConvexMeshBuilder.cpp */; }; - FFFF5aa03a907fb05aa03a90 /* convex/ConvexPolygonsBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa03a907fb05aa03a90 /* convex/ConvexPolygonsBuilder.cpp */; }; - FFFF5aa03af87fb05aa03af8 /* convex/InflationConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa03af87fb05aa03af8 /* convex/InflationConvexHullLib.cpp */; }; - FFFF5aa03b607fb05aa03b60 /* convex/QuickHullConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa03b607fb05aa03b60 /* convex/QuickHullConvexHullLib.cpp */; }; - FFFF5aa03bc87fb05aa03bc8 /* convex/VolumeIntegration.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5aa03bc87fb05aa03bc8 /* convex/VolumeIntegration.cpp */; }; + FFFFebed60707febebed6070 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFDebeb68107febebeb6810 /* PhysXExtensions */; }; + FFFFec060c007febec060c00 /* Adjacencies.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec060c007febec060c00 /* Adjacencies.cpp */; }; + FFFFec060c687febec060c68 /* Cooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec060c687febec060c68 /* Cooking.cpp */; }; + FFFFec060cd07febec060cd0 /* CookingUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec060cd07febec060cd0 /* CookingUtils.cpp */; }; + FFFFec060d387febec060d38 /* EdgeList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec060d387febec060d38 /* EdgeList.cpp */; }; + FFFFec060da07febec060da0 /* MeshCleaner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec060da07febec060da0 /* MeshCleaner.cpp */; }; + FFFFec060e087febec060e08 /* Quantizer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec060e087febec060e08 /* Quantizer.cpp */; }; + FFFFec0610e07febec0610e0 /* mesh/GrbTriangleMeshCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec0610e07febec0610e0 /* mesh/GrbTriangleMeshCooking.cpp */; }; + FFFFec0611487febec061148 /* mesh/HeightFieldCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec0611487febec061148 /* mesh/HeightFieldCooking.cpp */; }; + FFFFec0611b07febec0611b0 /* mesh/RTreeCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec0611b07febec0611b0 /* mesh/RTreeCooking.cpp */; }; + FFFFec0612187febec061218 /* mesh/TriangleMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec0612187febec061218 /* mesh/TriangleMeshBuilder.cpp */; }; + FFFFec0614887febec061488 /* convex/BigConvexDataBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec0614887febec061488 /* convex/BigConvexDataBuilder.cpp */; }; + FFFFec0614f07febec0614f0 /* convex/ConvexHullBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec0614f07febec0614f0 /* convex/ConvexHullBuilder.cpp */; }; + FFFFec0615587febec061558 /* convex/ConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec0615587febec061558 /* convex/ConvexHullLib.cpp */; }; + FFFFec0615c07febec0615c0 /* convex/ConvexHullUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec0615c07febec0615c0 /* convex/ConvexHullUtils.cpp */; }; + FFFFec0616287febec061628 /* convex/ConvexMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec0616287febec061628 /* convex/ConvexMeshBuilder.cpp */; }; + FFFFec0616907febec061690 /* convex/ConvexPolygonsBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec0616907febec061690 /* convex/ConvexPolygonsBuilder.cpp */; }; + FFFFec0616f87febec0616f8 /* convex/InflationConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec0616f87febec0616f8 /* convex/InflationConvexHullLib.cpp */; }; + FFFFec0617607febec061760 /* convex/QuickHullConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec0617607febec061760 /* convex/QuickHullConvexHullLib.cpp */; }; + FFFFec0617c87febec0617c8 /* convex/VolumeIntegration.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec0617c87febec0617c8 /* convex/VolumeIntegration.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD5cb7c7007fb05cb7c700 /* PhysXCooking */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCooking"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD5cb85f007fb05cb85f00 /* PxBVH33MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH33MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH33MidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD5cb85f687fb05cb85f68 /* PxBVH34MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH34MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH34MidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD5cb85fd07fb05cb85fd0 /* PxConvexMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshDesc.h"; path = "../../../Include/cooking/PxConvexMeshDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD5cb860387fb05cb86038 /* PxCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCooking.h"; path = "../../../Include/cooking/PxCooking.h"; sourceTree = SOURCE_ROOT; }; - FFFD5cb860a07fb05cb860a0 /* PxMidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMidphaseDesc.h"; path = "../../../Include/cooking/PxMidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD5cb861087fb05cb86108 /* PxTriangleMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshDesc.h"; path = "../../../Include/cooking/PxTriangleMeshDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD5cb861707fb05cb86170 /* Pxc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Pxc.h"; path = "../../../Include/cooking/Pxc.h"; sourceTree = SOURCE_ROOT; }; - FFFD5aa030007fb05aa03000 /* Adjacencies.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.cpp"; path = "../../PhysXCooking/src/Adjacencies.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5aa030687fb05aa03068 /* Cooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.cpp"; path = "../../PhysXCooking/src/Cooking.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5aa030d07fb05aa030d0 /* CookingUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.cpp"; path = "../../PhysXCooking/src/CookingUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5aa031387fb05aa03138 /* EdgeList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.cpp"; path = "../../PhysXCooking/src/EdgeList.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5aa031a07fb05aa031a0 /* MeshCleaner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.cpp"; path = "../../PhysXCooking/src/MeshCleaner.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5aa032087fb05aa03208 /* Quantizer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.cpp"; path = "../../PhysXCooking/src/Quantizer.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5aa032707fb05aa03270 /* Adjacencies.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.h"; path = "../../PhysXCooking/src/Adjacencies.h"; sourceTree = SOURCE_ROOT; }; - FFFD5aa032d87fb05aa032d8 /* Cooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.h"; path = "../../PhysXCooking/src/Cooking.h"; sourceTree = SOURCE_ROOT; }; - FFFD5aa033407fb05aa03340 /* CookingUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.h"; path = "../../PhysXCooking/src/CookingUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD5aa033a87fb05aa033a8 /* EdgeList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.h"; path = "../../PhysXCooking/src/EdgeList.h"; sourceTree = SOURCE_ROOT; }; - FFFD5aa034107fb05aa03410 /* MeshCleaner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.h"; path = "../../PhysXCooking/src/MeshCleaner.h"; sourceTree = SOURCE_ROOT; }; - FFFD5aa034787fb05aa03478 /* Quantizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.h"; path = "../../PhysXCooking/src/Quantizer.h"; sourceTree = SOURCE_ROOT; }; - FFFD5aa034e07fb05aa034e0 /* mesh/GrbTriangleMeshCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.cpp"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5aa035487fb05aa03548 /* mesh/HeightFieldCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.cpp"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5aa035b07fb05aa035b0 /* mesh/RTreeCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.cpp"; path = "../../PhysXCooking/src/mesh/RTreeCooking.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5aa036187fb05aa03618 /* mesh/TriangleMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.cpp"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5aa036807fb05aa03680 /* mesh/GrbTriangleMeshCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.h"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.h"; sourceTree = SOURCE_ROOT; }; - FFFD5aa036e87fb05aa036e8 /* mesh/HeightFieldCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.h"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.h"; sourceTree = SOURCE_ROOT; }; - FFFD5aa037507fb05aa03750 /* mesh/QuickSelect.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/QuickSelect.h"; path = "../../PhysXCooking/src/mesh/QuickSelect.h"; sourceTree = SOURCE_ROOT; }; - FFFD5aa037b87fb05aa037b8 /* mesh/RTreeCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.h"; path = "../../PhysXCooking/src/mesh/RTreeCooking.h"; sourceTree = SOURCE_ROOT; }; - FFFD5aa038207fb05aa03820 /* mesh/TriangleMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.h"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.h"; sourceTree = SOURCE_ROOT; }; - FFFD5aa038887fb05aa03888 /* convex/BigConvexDataBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.cpp"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5aa038f07fb05aa038f0 /* convex/ConvexHullBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5aa039587fb05aa03958 /* convex/ConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5aa039c07fb05aa039c0 /* convex/ConvexHullUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5aa03a287fb05aa03a28 /* convex/ConvexMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5aa03a907fb05aa03a90 /* convex/ConvexPolygonsBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5aa03af87fb05aa03af8 /* convex/InflationConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5aa03b607fb05aa03b60 /* convex/QuickHullConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5aa03bc87fb05aa03bc8 /* convex/VolumeIntegration.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/VolumeIntegration.cpp"; path = "../../PhysXCooking/src/convex/VolumeIntegration.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5aa03c307fb05aa03c30 /* convex/BigConvexDataBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.h"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.h"; sourceTree = SOURCE_ROOT; }; - FFFD5aa03c987fb05aa03c98 /* convex/ConvexHullBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.h"; sourceTree = SOURCE_ROOT; }; - FFFD5aa03d007fb05aa03d00 /* convex/ConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.h"; path = "../../PhysXCooking/src/convex/ConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; - FFFD5aa03d687fb05aa03d68 /* convex/ConvexHullUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.h"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD5aa03dd07fb05aa03dd0 /* convex/ConvexMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.h"; sourceTree = SOURCE_ROOT; }; - FFFD5aa03e387fb05aa03e38 /* convex/ConvexPolygonsBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.h"; sourceTree = SOURCE_ROOT; }; - FFFD5aa03ea07fb05aa03ea0 /* convex/InflationConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.h"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; - FFFD5aa03f087fb05aa03f08 /* convex/QuickHullConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.h"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; - FFFD5aa03f707fb05aa03f70 /* convex/VolumeIntegration.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/VolumeIntegration.h"; path = "../../PhysXCooking/src/convex/VolumeIntegration.h"; sourceTree = SOURCE_ROOT; }; + FFFDebed04c07febebed04c0 /* PhysXCooking */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCooking"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDebeda7707febebeda770 /* PxBVH33MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH33MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH33MidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFDebeda7d87febebeda7d8 /* PxBVH34MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH34MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH34MidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFDebeda8407febebeda840 /* PxConvexMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshDesc.h"; path = "../../../Include/cooking/PxConvexMeshDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFDebeda8a87febebeda8a8 /* PxCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCooking.h"; path = "../../../Include/cooking/PxCooking.h"; sourceTree = SOURCE_ROOT; }; + FFFDebeda9107febebeda910 /* PxMidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMidphaseDesc.h"; path = "../../../Include/cooking/PxMidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFDebeda9787febebeda978 /* PxTriangleMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshDesc.h"; path = "../../../Include/cooking/PxTriangleMeshDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFDebeda9e07febebeda9e0 /* Pxc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Pxc.h"; path = "../../../Include/cooking/Pxc.h"; sourceTree = SOURCE_ROOT; }; + FFFDec060c007febec060c00 /* Adjacencies.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.cpp"; path = "../../PhysXCooking/src/Adjacencies.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec060c687febec060c68 /* Cooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.cpp"; path = "../../PhysXCooking/src/Cooking.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec060cd07febec060cd0 /* CookingUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.cpp"; path = "../../PhysXCooking/src/CookingUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec060d387febec060d38 /* EdgeList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.cpp"; path = "../../PhysXCooking/src/EdgeList.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec060da07febec060da0 /* MeshCleaner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.cpp"; path = "../../PhysXCooking/src/MeshCleaner.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec060e087febec060e08 /* Quantizer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.cpp"; path = "../../PhysXCooking/src/Quantizer.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec060e707febec060e70 /* Adjacencies.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.h"; path = "../../PhysXCooking/src/Adjacencies.h"; sourceTree = SOURCE_ROOT; }; + FFFDec060ed87febec060ed8 /* Cooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.h"; path = "../../PhysXCooking/src/Cooking.h"; sourceTree = SOURCE_ROOT; }; + FFFDec060f407febec060f40 /* CookingUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.h"; path = "../../PhysXCooking/src/CookingUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFDec060fa87febec060fa8 /* EdgeList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.h"; path = "../../PhysXCooking/src/EdgeList.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0610107febec061010 /* MeshCleaner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.h"; path = "../../PhysXCooking/src/MeshCleaner.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0610787febec061078 /* Quantizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.h"; path = "../../PhysXCooking/src/Quantizer.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0610e07febec0610e0 /* mesh/GrbTriangleMeshCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.cpp"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0611487febec061148 /* mesh/HeightFieldCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.cpp"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0611b07febec0611b0 /* mesh/RTreeCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.cpp"; path = "../../PhysXCooking/src/mesh/RTreeCooking.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0612187febec061218 /* mesh/TriangleMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.cpp"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0612807febec061280 /* mesh/GrbTriangleMeshCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.h"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0612e87febec0612e8 /* mesh/HeightFieldCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.h"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0613507febec061350 /* mesh/QuickSelect.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/QuickSelect.h"; path = "../../PhysXCooking/src/mesh/QuickSelect.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0613b87febec0613b8 /* mesh/RTreeCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.h"; path = "../../PhysXCooking/src/mesh/RTreeCooking.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0614207febec061420 /* mesh/TriangleMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.h"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0614887febec061488 /* convex/BigConvexDataBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.cpp"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0614f07febec0614f0 /* convex/ConvexHullBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0615587febec061558 /* convex/ConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0615c07febec0615c0 /* convex/ConvexHullUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0616287febec061628 /* convex/ConvexMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0616907febec061690 /* convex/ConvexPolygonsBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0616f87febec0616f8 /* convex/InflationConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0617607febec061760 /* convex/QuickHullConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0617c87febec0617c8 /* convex/VolumeIntegration.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/VolumeIntegration.cpp"; path = "../../PhysXCooking/src/convex/VolumeIntegration.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0618307febec061830 /* convex/BigConvexDataBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.h"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0618987febec061898 /* convex/ConvexHullBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0619007febec061900 /* convex/ConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.h"; path = "../../PhysXCooking/src/convex/ConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0619687febec061968 /* convex/ConvexHullUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.h"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0619d07febec0619d0 /* convex/ConvexMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.h"; sourceTree = SOURCE_ROOT; }; + FFFDec061a387febec061a38 /* convex/ConvexPolygonsBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.h"; sourceTree = SOURCE_ROOT; }; + FFFDec061aa07febec061aa0 /* convex/InflationConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.h"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; + FFFDec061b087febec061b08 /* convex/QuickHullConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.h"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; + FFFDec061b707febec061b70 /* 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 */ - FFF25cb7c7007fb05cb7c700 /* Resources */ = { + FFF2ebed04c07febebed04c0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -1282,7 +1282,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC5cb7c7007fb05cb7c700 /* Frameworks */ = { + FFFCebed04c07febebed04c0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -1292,29 +1292,29 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF85cb7c7007fb05cb7c700 /* Sources */ = { + FFF8ebed04c07febebed04c0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF5aa030007fb05aa03000, - FFFF5aa030687fb05aa03068, - FFFF5aa030d07fb05aa030d0, - FFFF5aa031387fb05aa03138, - FFFF5aa031a07fb05aa031a0, - FFFF5aa032087fb05aa03208, - FFFF5aa034e07fb05aa034e0, - FFFF5aa035487fb05aa03548, - FFFF5aa035b07fb05aa035b0, - FFFF5aa036187fb05aa03618, - FFFF5aa038887fb05aa03888, - FFFF5aa038f07fb05aa038f0, - FFFF5aa039587fb05aa03958, - FFFF5aa039c07fb05aa039c0, - FFFF5aa03a287fb05aa03a28, - FFFF5aa03a907fb05aa03a90, - FFFF5aa03af87fb05aa03af8, - FFFF5aa03b607fb05aa03b60, - FFFF5aa03bc87fb05aa03bc8, + FFFFec060c007febec060c00, + FFFFec060c687febec060c68, + FFFFec060cd07febec060cd0, + FFFFec060d387febec060d38, + FFFFec060da07febec060da0, + FFFFec060e087febec060e08, + FFFFec0610e07febec0610e0, + FFFFec0611487febec061148, + FFFFec0611b07febec0611b0, + FFFFec0612187febec061218, + FFFFec0614887febec061488, + FFFFec0614f07febec0614f0, + FFFFec0615587febec061558, + FFFFec0615c07febec0615c0, + FFFFec0616287febec061628, + FFFFec0616907febec061690, + FFFFec0616f87febec0616f8, + FFFFec0617607febec061760, + FFFFec0617c87febec0617c8, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1323,515 +1323,515 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF45cb872607fb05cb87260 /* PBXTargetDependency */ = { + FFF4ebedb0e07febebedb0e0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA5b2fb4e07fb05b2fb4e0 /* PhysXCommon */; - targetProxy = FFF55b2fb4e07fb05b2fb4e0 /* PBXContainerItemProxy */; + target = FFFAed146af07febed146af0 /* PhysXCommon */; + targetProxy = FFF5ed146af07febed146af0 /* PBXContainerItemProxy */; }; - FFF45cb802007fb05cb80200 /* PBXTargetDependency */ = { + FFF4ebed60707febebed6070 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA5cb609d07fb05cb609d0 /* PhysXExtensions */; - targetProxy = FFF55cb609d07fb05cb609d0 /* PBXContainerItemProxy */; + target = FFFAebeb68107febebeb6810 /* PhysXExtensions */; + targetProxy = FFF5ebeb68107febebeb6810 /* PBXContainerItemProxy */; }; - FFF45cb7eff07fb05cb7eff0 /* PBXTargetDependency */ = { + FFF4ebed65507febebed6550 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA5b080a507fb05b080a50 /* PxFoundation */; - targetProxy = FFF55b080a507fb05b080a50 /* PBXContainerItemProxy */; + target = FFFAed13dc907febed13dc90 /* PxFoundation */; + targetProxy = FFF5ed13dc907febed13dc90 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PhysXCommon */ - FFFF5a9a22007fb05a9a2200 /* src/CmBoxPruning.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD5a9a22007fb05a9a2200 /* src/CmBoxPruning.cpp */; }; - FFFF5a9a22687fb05a9a2268 /* src/CmCollection.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD5a9a22687fb05a9a2268 /* src/CmCollection.cpp */; }; - FFFF5a9a22d07fb05a9a22d0 /* src/CmMathUtils.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD5a9a22d07fb05a9a22d0 /* src/CmMathUtils.cpp */; }; - FFFF5a9a23387fb05a9a2338 /* src/CmPtrTable.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD5a9a23387fb05a9a2338 /* src/CmPtrTable.cpp */; }; - FFFF5a9a23a07fb05a9a23a0 /* src/CmRadixSort.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD5a9a23a07fb05a9a23a0 /* src/CmRadixSort.cpp */; }; - FFFF5a9a24087fb05a9a2408 /* src/CmRadixSortBuffered.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD5a9a24087fb05a9a2408 /* src/CmRadixSortBuffered.cpp */; }; - FFFF5a9a24707fb05a9a2470 /* src/CmRenderOutput.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD5a9a24707fb05a9a2470 /* src/CmRenderOutput.cpp */; }; - FFFF5a9a24d87fb05a9a24d8 /* src/CmVisualization.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD5a9a24d87fb05a9a24d8 /* src/CmVisualization.cpp */; }; - FFFF5b8013a87fb05b8013a8 /* ../../Include/GeomUtils in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8013a87fb05b8013a8 /* ../../Include/GeomUtils */; }; - FFFF5b8048e07fb05b8048e0 /* src/GuBounds.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8048e07fb05b8048e0 /* src/GuBounds.cpp */; }; - FFFF5b8049487fb05b804948 /* src/GuBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8049487fb05b804948 /* src/GuBox.cpp */; }; - FFFF5b8049b07fb05b8049b0 /* src/GuCCTSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8049b07fb05b8049b0 /* src/GuCCTSweepTests.cpp */; }; - FFFF5b804a187fb05b804a18 /* src/GuCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b804a187fb05b804a18 /* src/GuCapsule.cpp */; }; - FFFF5b804a807fb05b804a80 /* src/GuGeometryQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b804a807fb05b804a80 /* src/GuGeometryQuery.cpp */; }; - FFFF5b804ae87fb05b804ae8 /* src/GuGeometryUnion.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b804ae87fb05b804ae8 /* src/GuGeometryUnion.cpp */; }; - FFFF5b804b507fb05b804b50 /* src/GuInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b804b507fb05b804b50 /* src/GuInternal.cpp */; }; - FFFF5b804bb87fb05b804bb8 /* src/GuMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b804bb87fb05b804bb8 /* src/GuMTD.cpp */; }; - FFFF5b804c207fb05b804c20 /* src/GuMeshFactory.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b804c207fb05b804c20 /* src/GuMeshFactory.cpp */; }; - FFFF5b804c887fb05b804c88 /* src/GuMetaData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b804c887fb05b804c88 /* src/GuMetaData.cpp */; }; - FFFF5b804cf07fb05b804cf0 /* src/GuOverlapTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b804cf07fb05b804cf0 /* src/GuOverlapTests.cpp */; }; - FFFF5b804d587fb05b804d58 /* src/GuRaycastTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b804d587fb05b804d58 /* src/GuRaycastTests.cpp */; }; - FFFF5b804dc07fb05b804dc0 /* src/GuSerialize.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b804dc07fb05b804dc0 /* src/GuSerialize.cpp */; }; - FFFF5b804e287fb05b804e28 /* src/GuSweepMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b804e287fb05b804e28 /* src/GuSweepMTD.cpp */; }; - FFFF5b804e907fb05b804e90 /* src/GuSweepSharedTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b804e907fb05b804e90 /* src/GuSweepSharedTests.cpp */; }; - FFFF5b804ef87fb05b804ef8 /* src/GuSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b804ef87fb05b804ef8 /* src/GuSweepTests.cpp */; }; - FFFF5b804f607fb05b804f60 /* src/contact/GuContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b804f607fb05b804f60 /* src/contact/GuContactBoxBox.cpp */; }; - FFFF5b804fc87fb05b804fc8 /* src/contact/GuContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b804fc87fb05b804fc8 /* src/contact/GuContactCapsuleBox.cpp */; }; - FFFF5b8050307fb05b805030 /* src/contact/GuContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8050307fb05b805030 /* src/contact/GuContactCapsuleCapsule.cpp */; }; - FFFF5b8050987fb05b805098 /* src/contact/GuContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8050987fb05b805098 /* src/contact/GuContactCapsuleConvex.cpp */; }; - FFFF5b8051007fb05b805100 /* src/contact/GuContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8051007fb05b805100 /* src/contact/GuContactCapsuleMesh.cpp */; }; - FFFF5b8051687fb05b805168 /* src/contact/GuContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8051687fb05b805168 /* src/contact/GuContactConvexConvex.cpp */; }; - FFFF5b8051d07fb05b8051d0 /* src/contact/GuContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8051d07fb05b8051d0 /* src/contact/GuContactConvexMesh.cpp */; }; - FFFF5b8052387fb05b805238 /* src/contact/GuContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8052387fb05b805238 /* src/contact/GuContactPlaneBox.cpp */; }; - FFFF5b8052a07fb05b8052a0 /* src/contact/GuContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8052a07fb05b8052a0 /* src/contact/GuContactPlaneCapsule.cpp */; }; - FFFF5b8053087fb05b805308 /* src/contact/GuContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8053087fb05b805308 /* src/contact/GuContactPlaneConvex.cpp */; }; - FFFF5b8053707fb05b805370 /* src/contact/GuContactPolygonPolygon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8053707fb05b805370 /* src/contact/GuContactPolygonPolygon.cpp */; }; - FFFF5b8053d87fb05b8053d8 /* src/contact/GuContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8053d87fb05b8053d8 /* src/contact/GuContactSphereBox.cpp */; }; - FFFF5b8054407fb05b805440 /* src/contact/GuContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8054407fb05b805440 /* src/contact/GuContactSphereCapsule.cpp */; }; - FFFF5b8054a87fb05b8054a8 /* src/contact/GuContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8054a87fb05b8054a8 /* src/contact/GuContactSphereMesh.cpp */; }; - FFFF5b8055107fb05b805510 /* src/contact/GuContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8055107fb05b805510 /* src/contact/GuContactSpherePlane.cpp */; }; - FFFF5b8055787fb05b805578 /* src/contact/GuContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8055787fb05b805578 /* src/contact/GuContactSphereSphere.cpp */; }; - FFFF5b8055e07fb05b8055e0 /* src/contact/GuFeatureCode.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8055e07fb05b8055e0 /* src/contact/GuFeatureCode.cpp */; }; - FFFF5b8056487fb05b805648 /* src/contact/GuLegacyContactBoxHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8056487fb05b805648 /* src/contact/GuLegacyContactBoxHeightField.cpp */; }; - FFFF5b8056b07fb05b8056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8056b07fb05b8056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */; }; - FFFF5b8057187fb05b805718 /* src/contact/GuLegacyContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8057187fb05b805718 /* src/contact/GuLegacyContactConvexHeightField.cpp */; }; - FFFF5b8057807fb05b805780 /* src/contact/GuLegacyContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8057807fb05b805780 /* src/contact/GuLegacyContactSphereHeightField.cpp */; }; - FFFF5b8057e87fb05b8057e8 /* src/common/GuBarycentricCoordinates.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8057e87fb05b8057e8 /* src/common/GuBarycentricCoordinates.cpp */; }; - FFFF5b8058507fb05b805850 /* src/common/GuSeparatingAxes.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8058507fb05b805850 /* src/common/GuSeparatingAxes.cpp */; }; - FFFF5b8058b87fb05b8058b8 /* src/convex/GuBigConvexData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8058b87fb05b8058b8 /* src/convex/GuBigConvexData.cpp */; }; - FFFF5b8059207fb05b805920 /* src/convex/GuConvexHelper.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8059207fb05b805920 /* src/convex/GuConvexHelper.cpp */; }; - FFFF5b8059887fb05b805988 /* src/convex/GuConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8059887fb05b805988 /* src/convex/GuConvexMesh.cpp */; }; - FFFF5b8059f07fb05b8059f0 /* src/convex/GuConvexSupportTable.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8059f07fb05b8059f0 /* src/convex/GuConvexSupportTable.cpp */; }; - FFFF5b805a587fb05b805a58 /* src/convex/GuConvexUtilsInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b805a587fb05b805a58 /* src/convex/GuConvexUtilsInternal.cpp */; }; - FFFF5b805ac07fb05b805ac0 /* src/convex/GuHillClimbing.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b805ac07fb05b805ac0 /* src/convex/GuHillClimbing.cpp */; }; - FFFF5b805b287fb05b805b28 /* src/convex/GuShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b805b287fb05b805b28 /* src/convex/GuShapeConvex.cpp */; }; - FFFF5b805b907fb05b805b90 /* src/distance/GuDistancePointBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b805b907fb05b805b90 /* src/distance/GuDistancePointBox.cpp */; }; - FFFF5b805bf87fb05b805bf8 /* src/distance/GuDistancePointTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b805bf87fb05b805bf8 /* src/distance/GuDistancePointTriangle.cpp */; }; - FFFF5b805c607fb05b805c60 /* src/distance/GuDistanceSegmentBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b805c607fb05b805c60 /* src/distance/GuDistanceSegmentBox.cpp */; }; - FFFF5b805cc87fb05b805cc8 /* src/distance/GuDistanceSegmentSegment.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b805cc87fb05b805cc8 /* src/distance/GuDistanceSegmentSegment.cpp */; }; - FFFF5b805d307fb05b805d30 /* src/distance/GuDistanceSegmentTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b805d307fb05b805d30 /* src/distance/GuDistanceSegmentTriangle.cpp */; }; - FFFF5b805d987fb05b805d98 /* src/sweep/GuSweepBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b805d987fb05b805d98 /* src/sweep/GuSweepBoxBox.cpp */; }; - FFFF5b805e007fb05b805e00 /* src/sweep/GuSweepBoxSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b805e007fb05b805e00 /* src/sweep/GuSweepBoxSphere.cpp */; }; - FFFF5b805e687fb05b805e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b805e687fb05b805e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */; }; - FFFF5b805ed07fb05b805ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b805ed07fb05b805ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */; }; - FFFF5b805f387fb05b805f38 /* src/sweep/GuSweepCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b805f387fb05b805f38 /* src/sweep/GuSweepCapsuleBox.cpp */; }; - FFFF5b805fa07fb05b805fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b805fa07fb05b805fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */; }; - FFFF5b8060087fb05b806008 /* src/sweep/GuSweepCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8060087fb05b806008 /* src/sweep/GuSweepCapsuleTriangle.cpp */; }; - FFFF5b8060707fb05b806070 /* src/sweep/GuSweepSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8060707fb05b806070 /* src/sweep/GuSweepSphereCapsule.cpp */; }; - FFFF5b8060d87fb05b8060d8 /* src/sweep/GuSweepSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8060d87fb05b8060d8 /* src/sweep/GuSweepSphereSphere.cpp */; }; - FFFF5b8061407fb05b806140 /* src/sweep/GuSweepSphereTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8061407fb05b806140 /* src/sweep/GuSweepSphereTriangle.cpp */; }; - FFFF5b8061a87fb05b8061a8 /* src/sweep/GuSweepTriangleUtils.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8061a87fb05b8061a8 /* src/sweep/GuSweepTriangleUtils.cpp */; }; - FFFF5b8062107fb05b806210 /* src/gjk/GuEPA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8062107fb05b806210 /* src/gjk/GuEPA.cpp */; }; - FFFF5b8062787fb05b806278 /* src/gjk/GuGJKSimplex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8062787fb05b806278 /* src/gjk/GuGJKSimplex.cpp */; }; - FFFF5b8062e07fb05b8062e0 /* src/gjk/GuGJKTest.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8062e07fb05b8062e0 /* src/gjk/GuGJKTest.cpp */; }; - FFFF5b8063487fb05b806348 /* src/intersection/GuIntersectionBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8063487fb05b806348 /* src/intersection/GuIntersectionBoxBox.cpp */; }; - FFFF5b8063b07fb05b8063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8063b07fb05b8063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */; }; - FFFF5b8064187fb05b806418 /* src/intersection/GuIntersectionEdgeEdge.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8064187fb05b806418 /* src/intersection/GuIntersectionEdgeEdge.cpp */; }; - FFFF5b8064807fb05b806480 /* src/intersection/GuIntersectionRayBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8064807fb05b806480 /* src/intersection/GuIntersectionRayBox.cpp */; }; - FFFF5b8064e87fb05b8064e8 /* src/intersection/GuIntersectionRayCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8064e87fb05b8064e8 /* src/intersection/GuIntersectionRayCapsule.cpp */; }; - FFFF5b8065507fb05b806550 /* src/intersection/GuIntersectionRaySphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8065507fb05b806550 /* src/intersection/GuIntersectionRaySphere.cpp */; }; - FFFF5b8065b87fb05b8065b8 /* src/intersection/GuIntersectionSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8065b87fb05b8065b8 /* src/intersection/GuIntersectionSphereBox.cpp */; }; - FFFF5b8066207fb05b806620 /* src/intersection/GuIntersectionTriangleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8066207fb05b806620 /* src/intersection/GuIntersectionTriangleBox.cpp */; }; - FFFF5b8066887fb05b806688 /* src/mesh/GuBV32.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8066887fb05b806688 /* src/mesh/GuBV32.cpp */; }; - FFFF5b8066f07fb05b8066f0 /* src/mesh/GuBV32Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8066f07fb05b8066f0 /* src/mesh/GuBV32Build.cpp */; }; - FFFF5b8067587fb05b806758 /* src/mesh/GuBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8067587fb05b806758 /* src/mesh/GuBV4.cpp */; }; - FFFF5b8067c07fb05b8067c0 /* src/mesh/GuBV4Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8067c07fb05b8067c0 /* src/mesh/GuBV4Build.cpp */; }; - FFFF5b8068287fb05b806828 /* src/mesh/GuBV4_AABBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8068287fb05b806828 /* src/mesh/GuBV4_AABBSweep.cpp */; }; - FFFF5b8068907fb05b806890 /* src/mesh/GuBV4_BoxOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8068907fb05b806890 /* src/mesh/GuBV4_BoxOverlap.cpp */; }; - FFFF5b8068f87fb05b8068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8068f87fb05b8068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */; }; - FFFF5b8069607fb05b806960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8069607fb05b806960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */; }; - FFFF5b8069c87fb05b8069c8 /* src/mesh/GuBV4_OBBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8069c87fb05b8069c8 /* src/mesh/GuBV4_OBBSweep.cpp */; }; - FFFF5b806a307fb05b806a30 /* src/mesh/GuBV4_Raycast.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b806a307fb05b806a30 /* src/mesh/GuBV4_Raycast.cpp */; }; - FFFF5b806a987fb05b806a98 /* src/mesh/GuBV4_SphereOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b806a987fb05b806a98 /* src/mesh/GuBV4_SphereOverlap.cpp */; }; - FFFF5b806b007fb05b806b00 /* src/mesh/GuBV4_SphereSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b806b007fb05b806b00 /* src/mesh/GuBV4_SphereSweep.cpp */; }; - FFFF5b806b687fb05b806b68 /* src/mesh/GuMeshQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b806b687fb05b806b68 /* src/mesh/GuMeshQuery.cpp */; }; - FFFF5b806bd07fb05b806bd0 /* src/mesh/GuMidphaseBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b806bd07fb05b806bd0 /* src/mesh/GuMidphaseBV4.cpp */; }; - FFFF5b806c387fb05b806c38 /* src/mesh/GuMidphaseRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b806c387fb05b806c38 /* src/mesh/GuMidphaseRTree.cpp */; }; - FFFF5b806ca07fb05b806ca0 /* src/mesh/GuOverlapTestsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b806ca07fb05b806ca0 /* src/mesh/GuOverlapTestsMesh.cpp */; }; - FFFF5b806d087fb05b806d08 /* src/mesh/GuRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b806d087fb05b806d08 /* src/mesh/GuRTree.cpp */; }; - FFFF5b806d707fb05b806d70 /* src/mesh/GuRTreeQueries.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b806d707fb05b806d70 /* src/mesh/GuRTreeQueries.cpp */; }; - FFFF5b806dd87fb05b806dd8 /* src/mesh/GuSweepsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b806dd87fb05b806dd8 /* src/mesh/GuSweepsMesh.cpp */; }; - FFFF5b806e407fb05b806e40 /* src/mesh/GuTriangleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b806e407fb05b806e40 /* src/mesh/GuTriangleMesh.cpp */; }; - FFFF5b806ea87fb05b806ea8 /* src/mesh/GuTriangleMeshBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b806ea87fb05b806ea8 /* src/mesh/GuTriangleMeshBV4.cpp */; }; - FFFF5b806f107fb05b806f10 /* src/mesh/GuTriangleMeshRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b806f107fb05b806f10 /* src/mesh/GuTriangleMeshRTree.cpp */; }; - FFFF5b806f787fb05b806f78 /* src/hf/GuHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b806f787fb05b806f78 /* src/hf/GuHeightField.cpp */; }; - FFFF5b806fe07fb05b806fe0 /* src/hf/GuHeightFieldUtil.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b806fe07fb05b806fe0 /* src/hf/GuHeightFieldUtil.cpp */; }; - FFFF5b8070487fb05b807048 /* src/hf/GuOverlapTestsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8070487fb05b807048 /* src/hf/GuOverlapTestsHF.cpp */; }; - FFFF5b8070b07fb05b8070b0 /* src/hf/GuSweepsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8070b07fb05b8070b0 /* src/hf/GuSweepsHF.cpp */; }; - FFFF5b8071187fb05b807118 /* src/pcm/GuPCMContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8071187fb05b807118 /* src/pcm/GuPCMContactBoxBox.cpp */; }; - FFFF5b8071807fb05b807180 /* src/pcm/GuPCMContactBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8071807fb05b807180 /* src/pcm/GuPCMContactBoxConvex.cpp */; }; - FFFF5b8071e87fb05b8071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8071e87fb05b8071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */; }; - FFFF5b8072507fb05b807250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8072507fb05b807250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */; }; - FFFF5b8072b87fb05b8072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8072b87fb05b8072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */; }; - FFFF5b8073207fb05b807320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8073207fb05b807320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */; }; - FFFF5b8073887fb05b807388 /* src/pcm/GuPCMContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8073887fb05b807388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */; }; - FFFF5b8073f07fb05b8073f0 /* src/pcm/GuPCMContactConvexCommon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8073f07fb05b8073f0 /* src/pcm/GuPCMContactConvexCommon.cpp */; }; - FFFF5b8074587fb05b807458 /* src/pcm/GuPCMContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8074587fb05b807458 /* src/pcm/GuPCMContactConvexConvex.cpp */; }; - FFFF5b8074c07fb05b8074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8074c07fb05b8074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */; }; - FFFF5b8075287fb05b807528 /* src/pcm/GuPCMContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8075287fb05b807528 /* src/pcm/GuPCMContactConvexMesh.cpp */; }; - FFFF5b8075907fb05b807590 /* src/pcm/GuPCMContactGenBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8075907fb05b807590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */; }; - FFFF5b8075f87fb05b8075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8075f87fb05b8075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */; }; - FFFF5b8076607fb05b807660 /* src/pcm/GuPCMContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8076607fb05b807660 /* src/pcm/GuPCMContactPlaneBox.cpp */; }; - FFFF5b8076c87fb05b8076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8076c87fb05b8076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */; }; - FFFF5b8077307fb05b807730 /* src/pcm/GuPCMContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8077307fb05b807730 /* src/pcm/GuPCMContactPlaneConvex.cpp */; }; - FFFF5b8077987fb05b807798 /* src/pcm/GuPCMContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8077987fb05b807798 /* src/pcm/GuPCMContactSphereBox.cpp */; }; - FFFF5b8078007fb05b807800 /* src/pcm/GuPCMContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8078007fb05b807800 /* src/pcm/GuPCMContactSphereCapsule.cpp */; }; - FFFF5b8078687fb05b807868 /* src/pcm/GuPCMContactSphereConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8078687fb05b807868 /* src/pcm/GuPCMContactSphereConvex.cpp */; }; - FFFF5b8078d07fb05b8078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8078d07fb05b8078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */; }; - FFFF5b8079387fb05b807938 /* src/pcm/GuPCMContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8079387fb05b807938 /* src/pcm/GuPCMContactSphereMesh.cpp */; }; - FFFF5b8079a07fb05b8079a0 /* src/pcm/GuPCMContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b8079a07fb05b8079a0 /* src/pcm/GuPCMContactSpherePlane.cpp */; }; - FFFF5b807a087fb05b807a08 /* src/pcm/GuPCMContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b807a087fb05b807a08 /* src/pcm/GuPCMContactSphereSphere.cpp */; }; - FFFF5b807a707fb05b807a70 /* src/pcm/GuPCMShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b807a707fb05b807a70 /* src/pcm/GuPCMShapeConvex.cpp */; }; - FFFF5b807ad87fb05b807ad8 /* src/pcm/GuPCMTriangleContactGen.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b807ad87fb05b807ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */; }; - FFFF5b807b407fb05b807b40 /* src/pcm/GuPersistentContactManifold.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b807b407fb05b807b40 /* src/pcm/GuPersistentContactManifold.cpp */; }; - FFFF5b807ba87fb05b807ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b807ba87fb05b807ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */; }; - FFFF5b807c107fb05b807c10 /* src/ccd/GuCCDSweepPrimitives.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5b807c107fb05b807c10 /* src/ccd/GuCCDSweepPrimitives.cpp */; }; + FFFFec990c007febec990c00 /* src/CmBoxPruning.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDec990c007febec990c00 /* src/CmBoxPruning.cpp */; }; + FFFFec990c687febec990c68 /* src/CmCollection.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDec990c687febec990c68 /* src/CmCollection.cpp */; }; + FFFFec990cd07febec990cd0 /* src/CmMathUtils.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDec990cd07febec990cd0 /* src/CmMathUtils.cpp */; }; + FFFFec990d387febec990d38 /* src/CmPtrTable.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDec990d387febec990d38 /* src/CmPtrTable.cpp */; }; + FFFFec990da07febec990da0 /* src/CmRadixSort.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDec990da07febec990da0 /* src/CmRadixSort.cpp */; }; + FFFFec990e087febec990e08 /* src/CmRadixSortBuffered.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDec990e087febec990e08 /* src/CmRadixSortBuffered.cpp */; }; + FFFFec990e707febec990e70 /* src/CmRenderOutput.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDec990e707febec990e70 /* src/CmRenderOutput.cpp */; }; + FFFFec990ed87febec990ed8 /* src/CmVisualization.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDec990ed87febec990ed8 /* src/CmVisualization.cpp */; }; + FFFFed8013a87febed8013a8 /* ../../Include/GeomUtils in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8013a87febed8013a8 /* ../../Include/GeomUtils */; }; + FFFFed8048e07febed8048e0 /* src/GuBounds.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8048e07febed8048e0 /* src/GuBounds.cpp */; }; + FFFFed8049487febed804948 /* src/GuBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8049487febed804948 /* src/GuBox.cpp */; }; + FFFFed8049b07febed8049b0 /* src/GuCCTSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8049b07febed8049b0 /* src/GuCCTSweepTests.cpp */; }; + FFFFed804a187febed804a18 /* src/GuCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed804a187febed804a18 /* src/GuCapsule.cpp */; }; + FFFFed804a807febed804a80 /* src/GuGeometryQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed804a807febed804a80 /* src/GuGeometryQuery.cpp */; }; + FFFFed804ae87febed804ae8 /* src/GuGeometryUnion.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed804ae87febed804ae8 /* src/GuGeometryUnion.cpp */; }; + FFFFed804b507febed804b50 /* src/GuInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed804b507febed804b50 /* src/GuInternal.cpp */; }; + FFFFed804bb87febed804bb8 /* src/GuMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed804bb87febed804bb8 /* src/GuMTD.cpp */; }; + FFFFed804c207febed804c20 /* src/GuMeshFactory.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed804c207febed804c20 /* src/GuMeshFactory.cpp */; }; + FFFFed804c887febed804c88 /* src/GuMetaData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed804c887febed804c88 /* src/GuMetaData.cpp */; }; + FFFFed804cf07febed804cf0 /* src/GuOverlapTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed804cf07febed804cf0 /* src/GuOverlapTests.cpp */; }; + FFFFed804d587febed804d58 /* src/GuRaycastTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed804d587febed804d58 /* src/GuRaycastTests.cpp */; }; + FFFFed804dc07febed804dc0 /* src/GuSerialize.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed804dc07febed804dc0 /* src/GuSerialize.cpp */; }; + FFFFed804e287febed804e28 /* src/GuSweepMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed804e287febed804e28 /* src/GuSweepMTD.cpp */; }; + FFFFed804e907febed804e90 /* src/GuSweepSharedTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed804e907febed804e90 /* src/GuSweepSharedTests.cpp */; }; + FFFFed804ef87febed804ef8 /* src/GuSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed804ef87febed804ef8 /* src/GuSweepTests.cpp */; }; + FFFFed804f607febed804f60 /* src/contact/GuContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed804f607febed804f60 /* src/contact/GuContactBoxBox.cpp */; }; + FFFFed804fc87febed804fc8 /* src/contact/GuContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed804fc87febed804fc8 /* src/contact/GuContactCapsuleBox.cpp */; }; + FFFFed8050307febed805030 /* src/contact/GuContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8050307febed805030 /* src/contact/GuContactCapsuleCapsule.cpp */; }; + FFFFed8050987febed805098 /* src/contact/GuContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8050987febed805098 /* src/contact/GuContactCapsuleConvex.cpp */; }; + FFFFed8051007febed805100 /* src/contact/GuContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8051007febed805100 /* src/contact/GuContactCapsuleMesh.cpp */; }; + FFFFed8051687febed805168 /* src/contact/GuContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8051687febed805168 /* src/contact/GuContactConvexConvex.cpp */; }; + FFFFed8051d07febed8051d0 /* src/contact/GuContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8051d07febed8051d0 /* src/contact/GuContactConvexMesh.cpp */; }; + FFFFed8052387febed805238 /* src/contact/GuContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8052387febed805238 /* src/contact/GuContactPlaneBox.cpp */; }; + FFFFed8052a07febed8052a0 /* src/contact/GuContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8052a07febed8052a0 /* src/contact/GuContactPlaneCapsule.cpp */; }; + FFFFed8053087febed805308 /* src/contact/GuContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8053087febed805308 /* src/contact/GuContactPlaneConvex.cpp */; }; + FFFFed8053707febed805370 /* src/contact/GuContactPolygonPolygon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8053707febed805370 /* src/contact/GuContactPolygonPolygon.cpp */; }; + FFFFed8053d87febed8053d8 /* src/contact/GuContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8053d87febed8053d8 /* src/contact/GuContactSphereBox.cpp */; }; + FFFFed8054407febed805440 /* src/contact/GuContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8054407febed805440 /* src/contact/GuContactSphereCapsule.cpp */; }; + FFFFed8054a87febed8054a8 /* src/contact/GuContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8054a87febed8054a8 /* src/contact/GuContactSphereMesh.cpp */; }; + FFFFed8055107febed805510 /* src/contact/GuContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8055107febed805510 /* src/contact/GuContactSpherePlane.cpp */; }; + FFFFed8055787febed805578 /* src/contact/GuContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8055787febed805578 /* src/contact/GuContactSphereSphere.cpp */; }; + FFFFed8055e07febed8055e0 /* src/contact/GuFeatureCode.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8055e07febed8055e0 /* src/contact/GuFeatureCode.cpp */; }; + FFFFed8056487febed805648 /* src/contact/GuLegacyContactBoxHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8056487febed805648 /* src/contact/GuLegacyContactBoxHeightField.cpp */; }; + FFFFed8056b07febed8056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8056b07febed8056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */; }; + FFFFed8057187febed805718 /* src/contact/GuLegacyContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8057187febed805718 /* src/contact/GuLegacyContactConvexHeightField.cpp */; }; + FFFFed8057807febed805780 /* src/contact/GuLegacyContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8057807febed805780 /* src/contact/GuLegacyContactSphereHeightField.cpp */; }; + FFFFed8057e87febed8057e8 /* src/common/GuBarycentricCoordinates.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8057e87febed8057e8 /* src/common/GuBarycentricCoordinates.cpp */; }; + FFFFed8058507febed805850 /* src/common/GuSeparatingAxes.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8058507febed805850 /* src/common/GuSeparatingAxes.cpp */; }; + FFFFed8058b87febed8058b8 /* src/convex/GuBigConvexData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8058b87febed8058b8 /* src/convex/GuBigConvexData.cpp */; }; + FFFFed8059207febed805920 /* src/convex/GuConvexHelper.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8059207febed805920 /* src/convex/GuConvexHelper.cpp */; }; + FFFFed8059887febed805988 /* src/convex/GuConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8059887febed805988 /* src/convex/GuConvexMesh.cpp */; }; + FFFFed8059f07febed8059f0 /* src/convex/GuConvexSupportTable.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8059f07febed8059f0 /* src/convex/GuConvexSupportTable.cpp */; }; + FFFFed805a587febed805a58 /* src/convex/GuConvexUtilsInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed805a587febed805a58 /* src/convex/GuConvexUtilsInternal.cpp */; }; + FFFFed805ac07febed805ac0 /* src/convex/GuHillClimbing.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed805ac07febed805ac0 /* src/convex/GuHillClimbing.cpp */; }; + FFFFed805b287febed805b28 /* src/convex/GuShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed805b287febed805b28 /* src/convex/GuShapeConvex.cpp */; }; + FFFFed805b907febed805b90 /* src/distance/GuDistancePointBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed805b907febed805b90 /* src/distance/GuDistancePointBox.cpp */; }; + FFFFed805bf87febed805bf8 /* src/distance/GuDistancePointTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed805bf87febed805bf8 /* src/distance/GuDistancePointTriangle.cpp */; }; + FFFFed805c607febed805c60 /* src/distance/GuDistanceSegmentBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed805c607febed805c60 /* src/distance/GuDistanceSegmentBox.cpp */; }; + FFFFed805cc87febed805cc8 /* src/distance/GuDistanceSegmentSegment.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed805cc87febed805cc8 /* src/distance/GuDistanceSegmentSegment.cpp */; }; + FFFFed805d307febed805d30 /* src/distance/GuDistanceSegmentTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed805d307febed805d30 /* src/distance/GuDistanceSegmentTriangle.cpp */; }; + FFFFed805d987febed805d98 /* src/sweep/GuSweepBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed805d987febed805d98 /* src/sweep/GuSweepBoxBox.cpp */; }; + FFFFed805e007febed805e00 /* src/sweep/GuSweepBoxSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed805e007febed805e00 /* src/sweep/GuSweepBoxSphere.cpp */; }; + FFFFed805e687febed805e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed805e687febed805e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */; }; + FFFFed805ed07febed805ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed805ed07febed805ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */; }; + FFFFed805f387febed805f38 /* src/sweep/GuSweepCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed805f387febed805f38 /* src/sweep/GuSweepCapsuleBox.cpp */; }; + FFFFed805fa07febed805fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed805fa07febed805fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */; }; + FFFFed8060087febed806008 /* src/sweep/GuSweepCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8060087febed806008 /* src/sweep/GuSweepCapsuleTriangle.cpp */; }; + FFFFed8060707febed806070 /* src/sweep/GuSweepSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8060707febed806070 /* src/sweep/GuSweepSphereCapsule.cpp */; }; + FFFFed8060d87febed8060d8 /* src/sweep/GuSweepSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8060d87febed8060d8 /* src/sweep/GuSweepSphereSphere.cpp */; }; + FFFFed8061407febed806140 /* src/sweep/GuSweepSphereTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8061407febed806140 /* src/sweep/GuSweepSphereTriangle.cpp */; }; + FFFFed8061a87febed8061a8 /* src/sweep/GuSweepTriangleUtils.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8061a87febed8061a8 /* src/sweep/GuSweepTriangleUtils.cpp */; }; + FFFFed8062107febed806210 /* src/gjk/GuEPA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8062107febed806210 /* src/gjk/GuEPA.cpp */; }; + FFFFed8062787febed806278 /* src/gjk/GuGJKSimplex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8062787febed806278 /* src/gjk/GuGJKSimplex.cpp */; }; + FFFFed8062e07febed8062e0 /* src/gjk/GuGJKTest.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8062e07febed8062e0 /* src/gjk/GuGJKTest.cpp */; }; + FFFFed8063487febed806348 /* src/intersection/GuIntersectionBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8063487febed806348 /* src/intersection/GuIntersectionBoxBox.cpp */; }; + FFFFed8063b07febed8063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8063b07febed8063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */; }; + FFFFed8064187febed806418 /* src/intersection/GuIntersectionEdgeEdge.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8064187febed806418 /* src/intersection/GuIntersectionEdgeEdge.cpp */; }; + FFFFed8064807febed806480 /* src/intersection/GuIntersectionRayBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8064807febed806480 /* src/intersection/GuIntersectionRayBox.cpp */; }; + FFFFed8064e87febed8064e8 /* src/intersection/GuIntersectionRayCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8064e87febed8064e8 /* src/intersection/GuIntersectionRayCapsule.cpp */; }; + FFFFed8065507febed806550 /* src/intersection/GuIntersectionRaySphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8065507febed806550 /* src/intersection/GuIntersectionRaySphere.cpp */; }; + FFFFed8065b87febed8065b8 /* src/intersection/GuIntersectionSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8065b87febed8065b8 /* src/intersection/GuIntersectionSphereBox.cpp */; }; + FFFFed8066207febed806620 /* src/intersection/GuIntersectionTriangleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8066207febed806620 /* src/intersection/GuIntersectionTriangleBox.cpp */; }; + FFFFed8066887febed806688 /* src/mesh/GuBV32.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8066887febed806688 /* src/mesh/GuBV32.cpp */; }; + FFFFed8066f07febed8066f0 /* src/mesh/GuBV32Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8066f07febed8066f0 /* src/mesh/GuBV32Build.cpp */; }; + FFFFed8067587febed806758 /* src/mesh/GuBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8067587febed806758 /* src/mesh/GuBV4.cpp */; }; + FFFFed8067c07febed8067c0 /* src/mesh/GuBV4Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8067c07febed8067c0 /* src/mesh/GuBV4Build.cpp */; }; + FFFFed8068287febed806828 /* src/mesh/GuBV4_AABBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8068287febed806828 /* src/mesh/GuBV4_AABBSweep.cpp */; }; + FFFFed8068907febed806890 /* src/mesh/GuBV4_BoxOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8068907febed806890 /* src/mesh/GuBV4_BoxOverlap.cpp */; }; + FFFFed8068f87febed8068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8068f87febed8068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */; }; + FFFFed8069607febed806960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8069607febed806960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */; }; + FFFFed8069c87febed8069c8 /* src/mesh/GuBV4_OBBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8069c87febed8069c8 /* src/mesh/GuBV4_OBBSweep.cpp */; }; + FFFFed806a307febed806a30 /* src/mesh/GuBV4_Raycast.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed806a307febed806a30 /* src/mesh/GuBV4_Raycast.cpp */; }; + FFFFed806a987febed806a98 /* src/mesh/GuBV4_SphereOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed806a987febed806a98 /* src/mesh/GuBV4_SphereOverlap.cpp */; }; + FFFFed806b007febed806b00 /* src/mesh/GuBV4_SphereSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed806b007febed806b00 /* src/mesh/GuBV4_SphereSweep.cpp */; }; + FFFFed806b687febed806b68 /* src/mesh/GuMeshQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed806b687febed806b68 /* src/mesh/GuMeshQuery.cpp */; }; + FFFFed806bd07febed806bd0 /* src/mesh/GuMidphaseBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed806bd07febed806bd0 /* src/mesh/GuMidphaseBV4.cpp */; }; + FFFFed806c387febed806c38 /* src/mesh/GuMidphaseRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed806c387febed806c38 /* src/mesh/GuMidphaseRTree.cpp */; }; + FFFFed806ca07febed806ca0 /* src/mesh/GuOverlapTestsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed806ca07febed806ca0 /* src/mesh/GuOverlapTestsMesh.cpp */; }; + FFFFed806d087febed806d08 /* src/mesh/GuRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed806d087febed806d08 /* src/mesh/GuRTree.cpp */; }; + FFFFed806d707febed806d70 /* src/mesh/GuRTreeQueries.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed806d707febed806d70 /* src/mesh/GuRTreeQueries.cpp */; }; + FFFFed806dd87febed806dd8 /* src/mesh/GuSweepsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed806dd87febed806dd8 /* src/mesh/GuSweepsMesh.cpp */; }; + FFFFed806e407febed806e40 /* src/mesh/GuTriangleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed806e407febed806e40 /* src/mesh/GuTriangleMesh.cpp */; }; + FFFFed806ea87febed806ea8 /* src/mesh/GuTriangleMeshBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed806ea87febed806ea8 /* src/mesh/GuTriangleMeshBV4.cpp */; }; + FFFFed806f107febed806f10 /* src/mesh/GuTriangleMeshRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed806f107febed806f10 /* src/mesh/GuTriangleMeshRTree.cpp */; }; + FFFFed806f787febed806f78 /* src/hf/GuHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed806f787febed806f78 /* src/hf/GuHeightField.cpp */; }; + FFFFed806fe07febed806fe0 /* src/hf/GuHeightFieldUtil.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed806fe07febed806fe0 /* src/hf/GuHeightFieldUtil.cpp */; }; + FFFFed8070487febed807048 /* src/hf/GuOverlapTestsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8070487febed807048 /* src/hf/GuOverlapTestsHF.cpp */; }; + FFFFed8070b07febed8070b0 /* src/hf/GuSweepsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8070b07febed8070b0 /* src/hf/GuSweepsHF.cpp */; }; + FFFFed8071187febed807118 /* src/pcm/GuPCMContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8071187febed807118 /* src/pcm/GuPCMContactBoxBox.cpp */; }; + FFFFed8071807febed807180 /* src/pcm/GuPCMContactBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8071807febed807180 /* src/pcm/GuPCMContactBoxConvex.cpp */; }; + FFFFed8071e87febed8071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8071e87febed8071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */; }; + FFFFed8072507febed807250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8072507febed807250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */; }; + FFFFed8072b87febed8072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8072b87febed8072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */; }; + FFFFed8073207febed807320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8073207febed807320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */; }; + FFFFed8073887febed807388 /* src/pcm/GuPCMContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8073887febed807388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */; }; + FFFFed8073f07febed8073f0 /* src/pcm/GuPCMContactConvexCommon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8073f07febed8073f0 /* src/pcm/GuPCMContactConvexCommon.cpp */; }; + FFFFed8074587febed807458 /* src/pcm/GuPCMContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8074587febed807458 /* src/pcm/GuPCMContactConvexConvex.cpp */; }; + FFFFed8074c07febed8074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8074c07febed8074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */; }; + FFFFed8075287febed807528 /* src/pcm/GuPCMContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8075287febed807528 /* src/pcm/GuPCMContactConvexMesh.cpp */; }; + FFFFed8075907febed807590 /* src/pcm/GuPCMContactGenBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8075907febed807590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */; }; + FFFFed8075f87febed8075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8075f87febed8075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */; }; + FFFFed8076607febed807660 /* src/pcm/GuPCMContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8076607febed807660 /* src/pcm/GuPCMContactPlaneBox.cpp */; }; + FFFFed8076c87febed8076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8076c87febed8076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */; }; + FFFFed8077307febed807730 /* src/pcm/GuPCMContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8077307febed807730 /* src/pcm/GuPCMContactPlaneConvex.cpp */; }; + FFFFed8077987febed807798 /* src/pcm/GuPCMContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8077987febed807798 /* src/pcm/GuPCMContactSphereBox.cpp */; }; + FFFFed8078007febed807800 /* src/pcm/GuPCMContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8078007febed807800 /* src/pcm/GuPCMContactSphereCapsule.cpp */; }; + FFFFed8078687febed807868 /* src/pcm/GuPCMContactSphereConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8078687febed807868 /* src/pcm/GuPCMContactSphereConvex.cpp */; }; + FFFFed8078d07febed8078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8078d07febed8078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */; }; + FFFFed8079387febed807938 /* src/pcm/GuPCMContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8079387febed807938 /* src/pcm/GuPCMContactSphereMesh.cpp */; }; + FFFFed8079a07febed8079a0 /* src/pcm/GuPCMContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed8079a07febed8079a0 /* src/pcm/GuPCMContactSpherePlane.cpp */; }; + FFFFed807a087febed807a08 /* src/pcm/GuPCMContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed807a087febed807a08 /* src/pcm/GuPCMContactSphereSphere.cpp */; }; + FFFFed807a707febed807a70 /* src/pcm/GuPCMShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed807a707febed807a70 /* src/pcm/GuPCMShapeConvex.cpp */; }; + FFFFed807ad87febed807ad8 /* src/pcm/GuPCMTriangleContactGen.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed807ad87febed807ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */; }; + FFFFed807b407febed807b40 /* src/pcm/GuPersistentContactManifold.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed807b407febed807b40 /* src/pcm/GuPersistentContactManifold.cpp */; }; + FFFFed807ba87febed807ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed807ba87febed807ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */; }; + FFFFed807c107febed807c10 /* src/ccd/GuCCDSweepPrimitives.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDed807c107febed807c10 /* src/ccd/GuCCDSweepPrimitives.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD5b2fb4e07fb05b2fb4e0 /* PhysXCommon */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCommon"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD5b80ec007fb05b80ec00 /* common/PxBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxBase.h"; path = "../../../Include/common/PxBase.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b80ec687fb05b80ec68 /* common/PxCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCollection.h"; path = "../../../Include/common/PxCollection.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b80ecd07fb05b80ecd0 /* common/PxCoreUtilityTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCoreUtilityTypes.h"; path = "../../../Include/common/PxCoreUtilityTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b80ed387fb05b80ed38 /* common/PxMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaData.h"; path = "../../../Include/common/PxMetaData.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b80eda07fb05b80eda0 /* common/PxMetaDataFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaDataFlags.h"; path = "../../../Include/common/PxMetaDataFlags.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b80ee087fb05b80ee08 /* common/PxPhysXCommonConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysXCommonConfig.h"; path = "../../../Include/common/PxPhysXCommonConfig.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b80ee707fb05b80ee70 /* common/PxPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysicsInsertionCallback.h"; path = "../../../Include/common/PxPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b80eed87fb05b80eed8 /* common/PxRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxRenderBuffer.h"; path = "../../../Include/common/PxRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b80ef407fb05b80ef40 /* common/PxSerialFramework.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerialFramework.h"; path = "../../../Include/common/PxSerialFramework.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b80efa87fb05b80efa8 /* common/PxSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerializer.h"; path = "../../../Include/common/PxSerializer.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b80f0107fb05b80f010 /* common/PxStringTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxStringTable.h"; path = "../../../Include/common/PxStringTable.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b80f0787fb05b80f078 /* common/PxTolerancesScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTolerancesScale.h"; path = "../../../Include/common/PxTolerancesScale.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b80f0e07fb05b80f0e0 /* common/PxTypeInfo.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTypeInfo.h"; path = "../../../Include/common/PxTypeInfo.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b80f1487fb05b80f148 /* geometry/PxBoxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxBoxGeometry.h"; path = "../../../Include/geometry/PxBoxGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b80f1b07fb05b80f1b0 /* geometry/PxCapsuleGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxCapsuleGeometry.h"; path = "../../../Include/geometry/PxCapsuleGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b80f2187fb05b80f218 /* geometry/PxConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMesh.h"; path = "../../../Include/geometry/PxConvexMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b80f2807fb05b80f280 /* geometry/PxConvexMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMeshGeometry.h"; path = "../../../Include/geometry/PxConvexMeshGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b80f2e87fb05b80f2e8 /* geometry/PxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometry.h"; path = "../../../Include/geometry/PxGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b80f3507fb05b80f350 /* geometry/PxGeometryHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryHelpers.h"; path = "../../../Include/geometry/PxGeometryHelpers.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b80f3b87fb05b80f3b8 /* geometry/PxGeometryQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryQuery.h"; path = "../../../Include/geometry/PxGeometryQuery.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b80f4207fb05b80f420 /* geometry/PxHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightField.h"; path = "../../../Include/geometry/PxHeightField.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b80f4887fb05b80f488 /* geometry/PxHeightFieldDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldDesc.h"; path = "../../../Include/geometry/PxHeightFieldDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b80f4f07fb05b80f4f0 /* geometry/PxHeightFieldFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldFlag.h"; path = "../../../Include/geometry/PxHeightFieldFlag.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b80f5587fb05b80f558 /* geometry/PxHeightFieldGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldGeometry.h"; path = "../../../Include/geometry/PxHeightFieldGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b80f5c07fb05b80f5c0 /* geometry/PxHeightFieldSample.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldSample.h"; path = "../../../Include/geometry/PxHeightFieldSample.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b80f6287fb05b80f628 /* geometry/PxMeshQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshQuery.h"; path = "../../../Include/geometry/PxMeshQuery.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b80f6907fb05b80f690 /* geometry/PxMeshScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshScale.h"; path = "../../../Include/geometry/PxMeshScale.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b80f6f87fb05b80f6f8 /* geometry/PxPlaneGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxPlaneGeometry.h"; path = "../../../Include/geometry/PxPlaneGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b80f7607fb05b80f760 /* geometry/PxSimpleTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSimpleTriangleMesh.h"; path = "../../../Include/geometry/PxSimpleTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b80f7c87fb05b80f7c8 /* geometry/PxSphereGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSphereGeometry.h"; path = "../../../Include/geometry/PxSphereGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b80f8307fb05b80f830 /* geometry/PxTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangle.h"; path = "../../../Include/geometry/PxTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b80f8987fb05b80f898 /* geometry/PxTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMesh.h"; path = "../../../Include/geometry/PxTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b80f9007fb05b80f900 /* geometry/PxTriangleMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMeshGeometry.h"; path = "../../../Include/geometry/PxTriangleMeshGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a22007fb05a9a2200 /* src/CmBoxPruning.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.cpp"; path = "../../Common/src/CmBoxPruning.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a22687fb05a9a2268 /* src/CmCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.cpp"; path = "../../Common/src/CmCollection.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a22d07fb05a9a22d0 /* src/CmMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMathUtils.cpp"; path = "../../Common/src/CmMathUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a23387fb05a9a2338 /* src/CmPtrTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.cpp"; path = "../../Common/src/CmPtrTable.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a23a07fb05a9a23a0 /* src/CmRadixSort.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.cpp"; path = "../../Common/src/CmRadixSort.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a24087fb05a9a2408 /* src/CmRadixSortBuffered.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.cpp"; path = "../../Common/src/CmRadixSortBuffered.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a24707fb05a9a2470 /* src/CmRenderOutput.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.cpp"; path = "../../Common/src/CmRenderOutput.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a24d87fb05a9a24d8 /* src/CmVisualization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.cpp"; path = "../../Common/src/CmVisualization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a25407fb05a9a2540 /* src/CmBitMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBitMap.h"; path = "../../Common/src/CmBitMap.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a25a87fb05a9a25a8 /* src/CmBoxPruning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.h"; path = "../../Common/src/CmBoxPruning.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a26107fb05a9a2610 /* src/CmCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.h"; path = "../../Common/src/CmCollection.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a26787fb05a9a2678 /* src/CmConeLimitHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmConeLimitHelper.h"; path = "../../Common/src/CmConeLimitHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a26e07fb05a9a26e0 /* src/CmFlushPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmFlushPool.h"; path = "../../Common/src/CmFlushPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a27487fb05a9a2748 /* src/CmIDPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIDPool.h"; path = "../../Common/src/CmIDPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a27b07fb05a9a27b0 /* src/CmIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIO.h"; path = "../../Common/src/CmIO.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a28187fb05a9a2818 /* src/CmMatrix34.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMatrix34.h"; path = "../../Common/src/CmMatrix34.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a28807fb05a9a2880 /* src/CmPhysXCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPhysXCommon.h"; path = "../../Common/src/CmPhysXCommon.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a28e87fb05a9a28e8 /* src/CmPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPool.h"; path = "../../Common/src/CmPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a29507fb05a9a2950 /* src/CmPreallocatingPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPreallocatingPool.h"; path = "../../Common/src/CmPreallocatingPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a29b87fb05a9a29b8 /* src/CmPriorityQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPriorityQueue.h"; path = "../../Common/src/CmPriorityQueue.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a2a207fb05a9a2a20 /* src/CmPtrTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.h"; path = "../../Common/src/CmPtrTable.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a2a887fb05a9a2a88 /* src/CmQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmQueue.h"; path = "../../Common/src/CmQueue.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a2af07fb05a9a2af0 /* src/CmRadixSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.h"; path = "../../Common/src/CmRadixSort.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a2b587fb05a9a2b58 /* src/CmRadixSortBuffered.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.h"; path = "../../Common/src/CmRadixSortBuffered.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a2bc07fb05a9a2bc0 /* src/CmReaderWriterLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmReaderWriterLock.h"; path = "../../Common/src/CmReaderWriterLock.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a2c287fb05a9a2c28 /* src/CmRefCountable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRefCountable.h"; path = "../../Common/src/CmRefCountable.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a2c907fb05a9a2c90 /* src/CmRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderBuffer.h"; path = "../../Common/src/CmRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a2cf87fb05a9a2cf8 /* src/CmRenderOutput.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.h"; path = "../../Common/src/CmRenderOutput.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a2d607fb05a9a2d60 /* src/CmScaling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmScaling.h"; path = "../../Common/src/CmScaling.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a2dc87fb05a9a2dc8 /* src/CmSpatialVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmSpatialVector.h"; path = "../../Common/src/CmSpatialVector.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a2e307fb05a9a2e30 /* src/CmTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTask.h"; path = "../../Common/src/CmTask.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a2e987fb05a9a2e98 /* src/CmTaskPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTaskPool.h"; path = "../../Common/src/CmTaskPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a2f007fb05a9a2f00 /* src/CmTmpMem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTmpMem.h"; path = "../../Common/src/CmTmpMem.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a2f687fb05a9a2f68 /* src/CmTransformUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTransformUtils.h"; path = "../../Common/src/CmTransformUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a2fd07fb05a9a2fd0 /* src/CmUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmUtils.h"; path = "../../Common/src/CmUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a30387fb05a9a3038 /* src/CmVisualization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.h"; path = "../../Common/src/CmVisualization.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8010007fb05b801000 /* headers/GuAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuAxes.h"; path = "../../GeomUtils/headers/GuAxes.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8010687fb05b801068 /* headers/GuBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuBox.h"; path = "../../GeomUtils/headers/GuBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8010d07fb05b8010d0 /* headers/GuDistanceSegmentBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentBox.h"; path = "../../GeomUtils/headers/GuDistanceSegmentBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8011387fb05b801138 /* headers/GuDistanceSegmentSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentSegment.h"; path = "../../GeomUtils/headers/GuDistanceSegmentSegment.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8011a07fb05b8011a0 /* headers/GuIntersectionBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionBoxBox.h"; path = "../../GeomUtils/headers/GuIntersectionBoxBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8012087fb05b801208 /* headers/GuIntersectionTriangleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionTriangleBox.h"; path = "../../GeomUtils/headers/GuIntersectionTriangleBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8012707fb05b801270 /* headers/GuRaycastTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuRaycastTests.h"; path = "../../GeomUtils/headers/GuRaycastTests.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8012d87fb05b8012d8 /* headers/GuSIMDHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSIMDHelpers.h"; path = "../../GeomUtils/headers/GuSIMDHelpers.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8013407fb05b801340 /* headers/GuSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSegment.h"; path = "../../GeomUtils/headers/GuSegment.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8013a87fb05b8013a8 /* ../../Include/GeomUtils */= { isa = PBXFileReference; fileEncoding = 4; name = "../../Include/GeomUtils"; path = "../../../Include/GeomUtils"; sourceTree = SOURCE_ROOT; }; - FFFD5b8014107fb05b801410 /* src/GuBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.h"; path = "../../GeomUtils/src/GuBounds.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8014787fb05b801478 /* src/GuCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.h"; path = "../../GeomUtils/src/GuCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8014e07fb05b8014e0 /* src/GuCenterExtents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCenterExtents.h"; path = "../../GeomUtils/src/GuCenterExtents.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8015487fb05b801548 /* src/GuGeometryUnion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.h"; path = "../../GeomUtils/src/GuGeometryUnion.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8015b07fb05b8015b0 /* src/GuInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.h"; path = "../../GeomUtils/src/GuInternal.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8016187fb05b801618 /* src/GuMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.h"; path = "../../GeomUtils/src/GuMTD.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8016807fb05b801680 /* src/GuMeshFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.h"; path = "../../GeomUtils/src/GuMeshFactory.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8016e87fb05b8016e8 /* src/GuOverlapTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.h"; path = "../../GeomUtils/src/GuOverlapTests.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8017507fb05b801750 /* src/GuSerialize.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.h"; path = "../../GeomUtils/src/GuSerialize.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8017b87fb05b8017b8 /* src/GuSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSphere.h"; path = "../../GeomUtils/src/GuSphere.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8018207fb05b801820 /* src/GuSweepMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.h"; path = "../../GeomUtils/src/GuSweepMTD.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8018887fb05b801888 /* src/GuSweepSharedTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.h"; path = "../../GeomUtils/src/GuSweepSharedTests.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8018f07fb05b8018f0 /* src/GuSweepTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.h"; path = "../../GeomUtils/src/GuSweepTests.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8019587fb05b801958 /* src/contact/GuContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactMethodImpl.h"; path = "../../GeomUtils/src/contact/GuContactMethodImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8019c07fb05b8019c0 /* src/contact/GuContactPolygonPolygon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.h"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b801a287fb05b801a28 /* src/contact/GuFeatureCode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.h"; path = "../../GeomUtils/src/contact/GuFeatureCode.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b801a907fb05b801a90 /* src/contact/GuLegacyTraceLineCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyTraceLineCallback.h"; path = "../../GeomUtils/src/contact/GuLegacyTraceLineCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b801af87fb05b801af8 /* src/common/GuBarycentricCoordinates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.h"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b801b607fb05b801b60 /* src/common/GuBoxConversion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBoxConversion.h"; path = "../../GeomUtils/src/common/GuBoxConversion.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b801bc87fb05b801bc8 /* src/common/GuEdgeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeCache.h"; path = "../../GeomUtils/src/common/GuEdgeCache.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b801c307fb05b801c30 /* src/common/GuEdgeListData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeListData.h"; path = "../../GeomUtils/src/common/GuEdgeListData.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b801c987fb05b801c98 /* src/common/GuSeparatingAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.h"; path = "../../GeomUtils/src/common/GuSeparatingAxes.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b801d007fb05b801d00 /* src/convex/GuBigConvexData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.h"; path = "../../GeomUtils/src/convex/GuBigConvexData.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b801d687fb05b801d68 /* src/convex/GuBigConvexData2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData2.h"; path = "../../GeomUtils/src/convex/GuBigConvexData2.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b801dd07fb05b801dd0 /* src/convex/GuConvexEdgeFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexEdgeFlags.h"; path = "../../GeomUtils/src/convex/GuConvexEdgeFlags.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b801e387fb05b801e38 /* src/convex/GuConvexHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.h"; path = "../../GeomUtils/src/convex/GuConvexHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b801ea07fb05b801ea0 /* src/convex/GuConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.h"; path = "../../GeomUtils/src/convex/GuConvexMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b801f087fb05b801f08 /* src/convex/GuConvexMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMeshData.h"; path = "../../GeomUtils/src/convex/GuConvexMeshData.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b801f707fb05b801f70 /* src/convex/GuConvexSupportTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.h"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b801fd87fb05b801fd8 /* src/convex/GuConvexUtilsInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.h"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8020407fb05b802040 /* src/convex/GuCubeIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuCubeIndex.h"; path = "../../GeomUtils/src/convex/GuCubeIndex.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8020a87fb05b8020a8 /* src/convex/GuHillClimbing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.h"; path = "../../GeomUtils/src/convex/GuHillClimbing.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8021107fb05b802110 /* src/convex/GuShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.h"; path = "../../GeomUtils/src/convex/GuShapeConvex.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8021787fb05b802178 /* src/distance/GuDistancePointBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.h"; path = "../../GeomUtils/src/distance/GuDistancePointBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8021e07fb05b8021e0 /* src/distance/GuDistancePointSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointSegment.h"; path = "../../GeomUtils/src/distance/GuDistancePointSegment.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8022487fb05b802248 /* src/distance/GuDistancePointTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8022b07fb05b8022b0 /* src/distance/GuDistancePointTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangleSIMD.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8023187fb05b802318 /* src/distance/GuDistanceSegmentSegmentSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegmentSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegmentSIMD.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8023807fb05b802380 /* src/distance/GuDistanceSegmentTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8023e87fb05b8023e8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangleSIMD.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8024507fb05b802450 /* src/sweep/GuSweepBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8024b87fb05b8024b8 /* src/sweep/GuSweepBoxSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8025207fb05b802520 /* src/sweep/GuSweepBoxTriangle_FeatureBased.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxTriangle_FeatureBased.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxTriangle_FeatureBased.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8025887fb05b802588 /* src/sweep/GuSweepBoxTriangle_SAT.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxTriangle_SAT.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxTriangle_SAT.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8025f07fb05b8025f0 /* src/sweep/GuSweepCapsuleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8026587fb05b802658 /* src/sweep/GuSweepCapsuleCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8026c07fb05b8026c0 /* src/sweep/GuSweepCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8027287fb05b802728 /* src/sweep/GuSweepSphereCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8027907fb05b802790 /* src/sweep/GuSweepSphereSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8027f87fb05b8027f8 /* src/sweep/GuSweepSphereTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8028607fb05b802860 /* src/sweep/GuSweepTriangleUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.h"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8028c87fb05b8028c8 /* src/gjk/GuEPA.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.h"; path = "../../GeomUtils/src/gjk/GuEPA.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8029307fb05b802930 /* src/gjk/GuEPAFacet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPAFacet.h"; path = "../../GeomUtils/src/gjk/GuEPAFacet.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8029987fb05b802998 /* src/gjk/GuGJK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJK.h"; path = "../../GeomUtils/src/gjk/GuGJK.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b802a007fb05b802a00 /* src/gjk/GuGJKPenetration.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKPenetration.h"; path = "../../GeomUtils/src/gjk/GuGJKPenetration.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b802a687fb05b802a68 /* src/gjk/GuGJKRaycast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKRaycast.h"; path = "../../GeomUtils/src/gjk/GuGJKRaycast.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b802ad07fb05b802ad0 /* src/gjk/GuGJKSimplex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.h"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b802b387fb05b802b38 /* src/gjk/GuGJKTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.h"; path = "../../GeomUtils/src/gjk/GuGJKTest.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b802ba07fb05b802ba0 /* src/gjk/GuGJKType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKType.h"; path = "../../GeomUtils/src/gjk/GuGJKType.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b802c087fb05b802c08 /* src/gjk/GuGJKUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKUtil.h"; path = "../../GeomUtils/src/gjk/GuGJKUtil.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b802c707fb05b802c70 /* src/gjk/GuVecBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecBox.h"; path = "../../GeomUtils/src/gjk/GuVecBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b802cd87fb05b802cd8 /* src/gjk/GuVecCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecCapsule.h"; path = "../../GeomUtils/src/gjk/GuVecCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b802d407fb05b802d40 /* src/gjk/GuVecConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvex.h"; path = "../../GeomUtils/src/gjk/GuVecConvex.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b802da87fb05b802da8 /* src/gjk/GuVecConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHull.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b802e107fb05b802e10 /* src/gjk/GuVecConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b802e787fb05b802e78 /* src/gjk/GuVecPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecPlane.h"; path = "../../GeomUtils/src/gjk/GuVecPlane.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b802ee07fb05b802ee0 /* src/gjk/GuVecShrunkBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkBox.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b802f487fb05b802f48 /* src/gjk/GuVecShrunkConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHull.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b802fb07fb05b802fb0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8030187fb05b803018 /* src/gjk/GuVecSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecSphere.h"; path = "../../GeomUtils/src/gjk/GuVecSphere.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8030807fb05b803080 /* src/gjk/GuVecTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecTriangle.h"; path = "../../GeomUtils/src/gjk/GuVecTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8030e87fb05b8030e8 /* src/intersection/GuIntersectionCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8031507fb05b803150 /* src/intersection/GuIntersectionEdgeEdge.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.h"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8031b87fb05b8031b8 /* src/intersection/GuIntersectionRay.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRay.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRay.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8032207fb05b803220 /* src/intersection/GuIntersectionRayBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8032887fb05b803288 /* src/intersection/GuIntersectionRayBoxSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBoxSIMD.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBoxSIMD.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8032f07fb05b8032f0 /* src/intersection/GuIntersectionRayCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8033587fb05b803358 /* src/intersection/GuIntersectionRayPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayPlane.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayPlane.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8033c07fb05b8033c0 /* src/intersection/GuIntersectionRaySphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8034287fb05b803428 /* src/intersection/GuIntersectionRayTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8034907fb05b803490 /* src/intersection/GuIntersectionSphereBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8034f87fb05b8034f8 /* src/mesh/GuBV32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.h"; path = "../../GeomUtils/src/mesh/GuBV32.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8035607fb05b803560 /* src/mesh/GuBV32Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.h"; path = "../../GeomUtils/src/mesh/GuBV32Build.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8035c87fb05b8035c8 /* src/mesh/GuBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.h"; path = "../../GeomUtils/src/mesh/GuBV4.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8036307fb05b803630 /* src/mesh/GuBV4Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.h"; path = "../../GeomUtils/src/mesh/GuBV4Build.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8036987fb05b803698 /* src/mesh/GuBV4Settings.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Settings.h"; path = "../../GeomUtils/src/mesh/GuBV4Settings.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8037007fb05b803700 /* src/mesh/GuBV4_AABBAABBSweepTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_AABBAABBSweepTest.h"; path = "../../GeomUtils/src/mesh/GuBV4_AABBAABBSweepTest.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8037687fb05b803768 /* src/mesh/GuBV4_BoxBoxOverlapTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxBoxOverlapTest.h"; path = "../../GeomUtils/src/mesh/GuBV4_BoxBoxOverlapTest.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8037d07fb05b8037d0 /* src/mesh/GuBV4_BoxOverlap_Internal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxOverlap_Internal.h"; path = "../../GeomUtils/src/mesh/GuBV4_BoxOverlap_Internal.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8038387fb05b803838 /* src/mesh/GuBV4_BoxSweep_Internal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxSweep_Internal.h"; path = "../../GeomUtils/src/mesh/GuBV4_BoxSweep_Internal.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8038a07fb05b8038a0 /* src/mesh/GuBV4_BoxSweep_Params.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxSweep_Params.h"; path = "../../GeomUtils/src/mesh/GuBV4_BoxSweep_Params.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8039087fb05b803908 /* src/mesh/GuBV4_CapsuleSweep_Internal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_CapsuleSweep_Internal.h"; path = "../../GeomUtils/src/mesh/GuBV4_CapsuleSweep_Internal.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8039707fb05b803970 /* src/mesh/GuBV4_Common.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Common.h"; path = "../../GeomUtils/src/mesh/GuBV4_Common.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8039d87fb05b8039d8 /* src/mesh/GuBV4_Internal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Internal.h"; path = "../../GeomUtils/src/mesh/GuBV4_Internal.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b803a407fb05b803a40 /* src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b803aa87fb05b803aa8 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b803b107fb05b803b10 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b803b787fb05b803b78 /* src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b803be07fb05b803be0 /* src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b803c487fb05b803c48 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b803cb07fb05b803cb0 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b803d187fb05b803d18 /* src/mesh/GuBV4_Slabs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b803d807fb05b803d80 /* src/mesh/GuBV4_Slabs_KajiyaNoOrder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs_KajiyaNoOrder.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs_KajiyaNoOrder.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b803de87fb05b803de8 /* src/mesh/GuBV4_Slabs_KajiyaOrdered.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs_KajiyaOrdered.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs_KajiyaOrdered.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b803e507fb05b803e50 /* src/mesh/GuBV4_Slabs_SwizzledNoOrder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs_SwizzledNoOrder.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs_SwizzledNoOrder.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b803eb87fb05b803eb8 /* src/mesh/GuBV4_Slabs_SwizzledOrdered.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs_SwizzledOrdered.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs_SwizzledOrdered.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b803f207fb05b803f20 /* src/mesh/GuBVConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBVConstants.h"; path = "../../GeomUtils/src/mesh/GuBVConstants.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b803f887fb05b803f88 /* src/mesh/GuMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshData.h"; path = "../../GeomUtils/src/mesh/GuMeshData.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b803ff07fb05b803ff0 /* src/mesh/GuMidphaseInterface.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseInterface.h"; path = "../../GeomUtils/src/mesh/GuMidphaseInterface.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8040587fb05b804058 /* src/mesh/GuRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.h"; path = "../../GeomUtils/src/mesh/GuRTree.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8040c07fb05b8040c0 /* src/mesh/GuSweepConvexTri.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepConvexTri.h"; path = "../../GeomUtils/src/mesh/GuSweepConvexTri.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8041287fb05b804128 /* src/mesh/GuSweepMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepMesh.h"; path = "../../GeomUtils/src/mesh/GuSweepMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8041907fb05b804190 /* src/mesh/GuTriangle32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangle32.h"; path = "../../GeomUtils/src/mesh/GuTriangle32.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8041f87fb05b8041f8 /* src/mesh/GuTriangleCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleCache.h"; path = "../../GeomUtils/src/mesh/GuTriangleCache.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8042607fb05b804260 /* src/mesh/GuTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.h"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8042c87fb05b8042c8 /* src/mesh/GuTriangleMeshBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8043307fb05b804330 /* src/mesh/GuTriangleMeshRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8043987fb05b804398 /* src/mesh/GuTriangleVertexPointers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleVertexPointers.h"; path = "../../GeomUtils/src/mesh/GuTriangleVertexPointers.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8044007fb05b804400 /* src/hf/GuEntityReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuEntityReport.h"; path = "../../GeomUtils/src/hf/GuEntityReport.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8044687fb05b804468 /* src/hf/GuHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.h"; path = "../../GeomUtils/src/hf/GuHeightField.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8044d07fb05b8044d0 /* src/hf/GuHeightFieldData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldData.h"; path = "../../GeomUtils/src/hf/GuHeightFieldData.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8045387fb05b804538 /* src/hf/GuHeightFieldUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.h"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8045a07fb05b8045a0 /* src/pcm/GuPCMContactConvexCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.h"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8046087fb05b804608 /* src/pcm/GuPCMContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGen.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8046707fb05b804670 /* src/pcm/GuPCMContactGenUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenUtil.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGenUtil.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8046d87fb05b8046d8 /* src/pcm/GuPCMContactMeshCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactMeshCallback.h"; path = "../../GeomUtils/src/pcm/GuPCMContactMeshCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8047407fb05b804740 /* src/pcm/GuPCMShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.h"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8047a87fb05b8047a8 /* src/pcm/GuPCMTriangleContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8048107fb05b804810 /* src/pcm/GuPersistentContactManifold.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.h"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8048787fb05b804878 /* src/ccd/GuCCDSweepConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.h"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8048e07fb05b8048e0 /* src/GuBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.cpp"; path = "../../GeomUtils/src/GuBounds.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8049487fb05b804948 /* src/GuBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBox.cpp"; path = "../../GeomUtils/src/GuBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8049b07fb05b8049b0 /* src/GuCCTSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCCTSweepTests.cpp"; path = "../../GeomUtils/src/GuCCTSweepTests.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b804a187fb05b804a18 /* src/GuCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.cpp"; path = "../../GeomUtils/src/GuCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b804a807fb05b804a80 /* src/GuGeometryQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryQuery.cpp"; path = "../../GeomUtils/src/GuGeometryQuery.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b804ae87fb05b804ae8 /* src/GuGeometryUnion.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.cpp"; path = "../../GeomUtils/src/GuGeometryUnion.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b804b507fb05b804b50 /* src/GuInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.cpp"; path = "../../GeomUtils/src/GuInternal.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b804bb87fb05b804bb8 /* src/GuMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.cpp"; path = "../../GeomUtils/src/GuMTD.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b804c207fb05b804c20 /* src/GuMeshFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.cpp"; path = "../../GeomUtils/src/GuMeshFactory.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b804c887fb05b804c88 /* src/GuMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMetaData.cpp"; path = "../../GeomUtils/src/GuMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b804cf07fb05b804cf0 /* src/GuOverlapTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.cpp"; path = "../../GeomUtils/src/GuOverlapTests.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b804d587fb05b804d58 /* src/GuRaycastTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuRaycastTests.cpp"; path = "../../GeomUtils/src/GuRaycastTests.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b804dc07fb05b804dc0 /* src/GuSerialize.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.cpp"; path = "../../GeomUtils/src/GuSerialize.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b804e287fb05b804e28 /* src/GuSweepMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.cpp"; path = "../../GeomUtils/src/GuSweepMTD.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b804e907fb05b804e90 /* src/GuSweepSharedTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.cpp"; path = "../../GeomUtils/src/GuSweepSharedTests.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b804ef87fb05b804ef8 /* src/GuSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.cpp"; path = "../../GeomUtils/src/GuSweepTests.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b804f607fb05b804f60 /* src/contact/GuContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactBoxBox.cpp"; path = "../../GeomUtils/src/contact/GuContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b804fc87fb05b804fc8 /* src/contact/GuContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleBox.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8050307fb05b805030 /* src/contact/GuContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8050987fb05b805098 /* src/contact/GuContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8051007fb05b805100 /* src/contact/GuContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8051687fb05b805168 /* src/contact/GuContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8051d07fb05b8051d0 /* src/contact/GuContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8052387fb05b805238 /* src/contact/GuContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneBox.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8052a07fb05b8052a0 /* src/contact/GuContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8053087fb05b805308 /* src/contact/GuContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8053707fb05b805370 /* src/contact/GuContactPolygonPolygon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.cpp"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8053d87fb05b8053d8 /* src/contact/GuContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereBox.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8054407fb05b805440 /* src/contact/GuContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8054a87fb05b8054a8 /* src/contact/GuContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8055107fb05b805510 /* src/contact/GuContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSpherePlane.cpp"; path = "../../GeomUtils/src/contact/GuContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8055787fb05b805578 /* src/contact/GuContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereSphere.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8055e07fb05b8055e0 /* src/contact/GuFeatureCode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.cpp"; path = "../../GeomUtils/src/contact/GuFeatureCode.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8056487fb05b805648 /* src/contact/GuLegacyContactBoxHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactBoxHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactBoxHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8056b07fb05b8056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8057187fb05b805718 /* src/contact/GuLegacyContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactConvexHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8057807fb05b805780 /* src/contact/GuLegacyContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactSphereHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8057e87fb05b8057e8 /* src/common/GuBarycentricCoordinates.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.cpp"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8058507fb05b805850 /* src/common/GuSeparatingAxes.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.cpp"; path = "../../GeomUtils/src/common/GuSeparatingAxes.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8058b87fb05b8058b8 /* src/convex/GuBigConvexData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.cpp"; path = "../../GeomUtils/src/convex/GuBigConvexData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8059207fb05b805920 /* src/convex/GuConvexHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.cpp"; path = "../../GeomUtils/src/convex/GuConvexHelper.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8059887fb05b805988 /* src/convex/GuConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.cpp"; path = "../../GeomUtils/src/convex/GuConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8059f07fb05b8059f0 /* src/convex/GuConvexSupportTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.cpp"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b805a587fb05b805a58 /* src/convex/GuConvexUtilsInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.cpp"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b805ac07fb05b805ac0 /* src/convex/GuHillClimbing.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.cpp"; path = "../../GeomUtils/src/convex/GuHillClimbing.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b805b287fb05b805b28 /* src/convex/GuShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.cpp"; path = "../../GeomUtils/src/convex/GuShapeConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b805b907fb05b805b90 /* src/distance/GuDistancePointBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b805bf87fb05b805bf8 /* src/distance/GuDistancePointTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b805c607fb05b805c60 /* src/distance/GuDistanceSegmentBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentBox.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b805cc87fb05b805cc8 /* src/distance/GuDistanceSegmentSegment.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegment.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegment.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b805d307fb05b805d30 /* src/distance/GuDistanceSegmentTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b805d987fb05b805d98 /* src/sweep/GuSweepBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b805e007fb05b805e00 /* src/sweep/GuSweepBoxSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b805e687fb05b805e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxTriangle_FeatureBased.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxTriangle_FeatureBased.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b805ed07fb05b805ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxTriangle_SAT.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxTriangle_SAT.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b805f387fb05b805f38 /* src/sweep/GuSweepCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b805fa07fb05b805fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8060087fb05b806008 /* src/sweep/GuSweepCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8060707fb05b806070 /* src/sweep/GuSweepSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8060d87fb05b8060d8 /* src/sweep/GuSweepSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8061407fb05b806140 /* src/sweep/GuSweepSphereTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8061a87fb05b8061a8 /* src/sweep/GuSweepTriangleUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.cpp"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8062107fb05b806210 /* src/gjk/GuEPA.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.cpp"; path = "../../GeomUtils/src/gjk/GuEPA.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8062787fb05b806278 /* src/gjk/GuGJKSimplex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.cpp"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8062e07fb05b8062e0 /* src/gjk/GuGJKTest.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.cpp"; path = "../../GeomUtils/src/gjk/GuGJKTest.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8063487fb05b806348 /* src/intersection/GuIntersectionBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionBoxBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8063b07fb05b8063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8064187fb05b806418 /* src/intersection/GuIntersectionEdgeEdge.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8064807fb05b806480 /* src/intersection/GuIntersectionRayBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8064e87fb05b8064e8 /* src/intersection/GuIntersectionRayCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8065507fb05b806550 /* src/intersection/GuIntersectionRaySphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8065b87fb05b8065b8 /* src/intersection/GuIntersectionSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8066207fb05b806620 /* src/intersection/GuIntersectionTriangleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionTriangleBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionTriangleBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8066887fb05b806688 /* src/mesh/GuBV32.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.cpp"; path = "../../GeomUtils/src/mesh/GuBV32.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8066f07fb05b8066f0 /* src/mesh/GuBV32Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV32Build.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8067587fb05b806758 /* src/mesh/GuBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.cpp"; path = "../../GeomUtils/src/mesh/GuBV4.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8067c07fb05b8067c0 /* src/mesh/GuBV4Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV4Build.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8068287fb05b806828 /* src/mesh/GuBV4_AABBSweep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_AABBSweep.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_AABBSweep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8068907fb05b806890 /* src/mesh/GuBV4_BoxOverlap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxOverlap.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_BoxOverlap.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8068f87fb05b8068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_CapsuleSweep.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_CapsuleSweep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8069607fb05b806960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_CapsuleSweepAA.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_CapsuleSweepAA.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8069c87fb05b8069c8 /* src/mesh/GuBV4_OBBSweep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_OBBSweep.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_OBBSweep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b806a307fb05b806a30 /* src/mesh/GuBV4_Raycast.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Raycast.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_Raycast.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b806a987fb05b806a98 /* src/mesh/GuBV4_SphereOverlap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_SphereOverlap.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_SphereOverlap.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b806b007fb05b806b00 /* src/mesh/GuBV4_SphereSweep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_SphereSweep.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_SphereSweep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b806b687fb05b806b68 /* src/mesh/GuMeshQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshQuery.cpp"; path = "../../GeomUtils/src/mesh/GuMeshQuery.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b806bd07fb05b806bd0 /* src/mesh/GuMidphaseBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseBV4.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseBV4.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b806c387fb05b806c38 /* src/mesh/GuMidphaseRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseRTree.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseRTree.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b806ca07fb05b806ca0 /* src/mesh/GuOverlapTestsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuOverlapTestsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuOverlapTestsMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b806d087fb05b806d08 /* src/mesh/GuRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.cpp"; path = "../../GeomUtils/src/mesh/GuRTree.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b806d707fb05b806d70 /* src/mesh/GuRTreeQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTreeQueries.cpp"; path = "../../GeomUtils/src/mesh/GuRTreeQueries.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b806dd87fb05b806dd8 /* src/mesh/GuSweepsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuSweepsMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b806e407fb05b806e40 /* src/mesh/GuTriangleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b806ea87fb05b806ea8 /* src/mesh/GuTriangleMeshBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b806f107fb05b806f10 /* src/mesh/GuTriangleMeshRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b806f787fb05b806f78 /* src/hf/GuHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.cpp"; path = "../../GeomUtils/src/hf/GuHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b806fe07fb05b806fe0 /* src/hf/GuHeightFieldUtil.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.cpp"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8070487fb05b807048 /* src/hf/GuOverlapTestsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuOverlapTestsHF.cpp"; path = "../../GeomUtils/src/hf/GuOverlapTestsHF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8070b07fb05b8070b0 /* src/hf/GuSweepsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuSweepsHF.cpp"; path = "../../GeomUtils/src/hf/GuSweepsHF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8071187fb05b807118 /* src/pcm/GuPCMContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8071807fb05b807180 /* src/pcm/GuPCMContactBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8071e87fb05b8071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8072507fb05b807250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8072b87fb05b8072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8073207fb05b807320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8073887fb05b807388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8073f07fb05b8073f0 /* src/pcm/GuPCMContactConvexCommon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8074587fb05b807458 /* src/pcm/GuPCMContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8074c07fb05b8074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8075287fb05b807528 /* src/pcm/GuPCMContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8075907fb05b807590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenBoxConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8075f87fb05b8075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8076607fb05b807660 /* src/pcm/GuPCMContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8076c87fb05b8076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8077307fb05b807730 /* src/pcm/GuPCMContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8077987fb05b807798 /* src/pcm/GuPCMContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8078007fb05b807800 /* src/pcm/GuPCMContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8078687fb05b807868 /* src/pcm/GuPCMContactSphereConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8078d07fb05b8078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8079387fb05b807938 /* src/pcm/GuPCMContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8079a07fb05b8079a0 /* src/pcm/GuPCMContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSpherePlane.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b807a087fb05b807a08 /* src/pcm/GuPCMContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereSphere.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b807a707fb05b807a70 /* src/pcm/GuPCMShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b807ad87fb05b807ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.cpp"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b807b407fb05b807b40 /* src/pcm/GuPersistentContactManifold.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.cpp"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b807ba87fb05b807ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.cpp"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b807c107fb05b807c10 /* src/ccd/GuCCDSweepPrimitives.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepPrimitives.cpp"; path = "../../GeomUtils/src/ccd/GuCCDSweepPrimitives.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed146af07febed146af0 /* PhysXCommon */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCommon"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDed80ec007febed80ec00 /* common/PxBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxBase.h"; path = "../../../Include/common/PxBase.h"; sourceTree = SOURCE_ROOT; }; + FFFDed80ec687febed80ec68 /* common/PxCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCollection.h"; path = "../../../Include/common/PxCollection.h"; sourceTree = SOURCE_ROOT; }; + FFFDed80ecd07febed80ecd0 /* common/PxCoreUtilityTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCoreUtilityTypes.h"; path = "../../../Include/common/PxCoreUtilityTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFDed80ed387febed80ed38 /* common/PxMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaData.h"; path = "../../../Include/common/PxMetaData.h"; sourceTree = SOURCE_ROOT; }; + FFFDed80eda07febed80eda0 /* common/PxMetaDataFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaDataFlags.h"; path = "../../../Include/common/PxMetaDataFlags.h"; sourceTree = SOURCE_ROOT; }; + FFFDed80ee087febed80ee08 /* common/PxPhysXCommonConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysXCommonConfig.h"; path = "../../../Include/common/PxPhysXCommonConfig.h"; sourceTree = SOURCE_ROOT; }; + FFFDed80ee707febed80ee70 /* common/PxPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysicsInsertionCallback.h"; path = "../../../Include/common/PxPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFDed80eed87febed80eed8 /* common/PxRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxRenderBuffer.h"; path = "../../../Include/common/PxRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFDed80ef407febed80ef40 /* common/PxSerialFramework.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerialFramework.h"; path = "../../../Include/common/PxSerialFramework.h"; sourceTree = SOURCE_ROOT; }; + FFFDed80efa87febed80efa8 /* common/PxSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerializer.h"; path = "../../../Include/common/PxSerializer.h"; sourceTree = SOURCE_ROOT; }; + FFFDed80f0107febed80f010 /* common/PxStringTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxStringTable.h"; path = "../../../Include/common/PxStringTable.h"; sourceTree = SOURCE_ROOT; }; + FFFDed80f0787febed80f078 /* common/PxTolerancesScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTolerancesScale.h"; path = "../../../Include/common/PxTolerancesScale.h"; sourceTree = SOURCE_ROOT; }; + FFFDed80f0e07febed80f0e0 /* common/PxTypeInfo.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTypeInfo.h"; path = "../../../Include/common/PxTypeInfo.h"; sourceTree = SOURCE_ROOT; }; + FFFDed80f1487febed80f148 /* geometry/PxBoxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxBoxGeometry.h"; path = "../../../Include/geometry/PxBoxGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFDed80f1b07febed80f1b0 /* geometry/PxCapsuleGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxCapsuleGeometry.h"; path = "../../../Include/geometry/PxCapsuleGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFDed80f2187febed80f218 /* geometry/PxConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMesh.h"; path = "../../../Include/geometry/PxConvexMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFDed80f2807febed80f280 /* geometry/PxConvexMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMeshGeometry.h"; path = "../../../Include/geometry/PxConvexMeshGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFDed80f2e87febed80f2e8 /* geometry/PxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometry.h"; path = "../../../Include/geometry/PxGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFDed80f3507febed80f350 /* geometry/PxGeometryHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryHelpers.h"; path = "../../../Include/geometry/PxGeometryHelpers.h"; sourceTree = SOURCE_ROOT; }; + FFFDed80f3b87febed80f3b8 /* geometry/PxGeometryQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryQuery.h"; path = "../../../Include/geometry/PxGeometryQuery.h"; sourceTree = SOURCE_ROOT; }; + FFFDed80f4207febed80f420 /* geometry/PxHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightField.h"; path = "../../../Include/geometry/PxHeightField.h"; sourceTree = SOURCE_ROOT; }; + FFFDed80f4887febed80f488 /* geometry/PxHeightFieldDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldDesc.h"; path = "../../../Include/geometry/PxHeightFieldDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFDed80f4f07febed80f4f0 /* geometry/PxHeightFieldFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldFlag.h"; path = "../../../Include/geometry/PxHeightFieldFlag.h"; sourceTree = SOURCE_ROOT; }; + FFFDed80f5587febed80f558 /* geometry/PxHeightFieldGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldGeometry.h"; path = "../../../Include/geometry/PxHeightFieldGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFDed80f5c07febed80f5c0 /* geometry/PxHeightFieldSample.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldSample.h"; path = "../../../Include/geometry/PxHeightFieldSample.h"; sourceTree = SOURCE_ROOT; }; + FFFDed80f6287febed80f628 /* geometry/PxMeshQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshQuery.h"; path = "../../../Include/geometry/PxMeshQuery.h"; sourceTree = SOURCE_ROOT; }; + FFFDed80f6907febed80f690 /* geometry/PxMeshScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshScale.h"; path = "../../../Include/geometry/PxMeshScale.h"; sourceTree = SOURCE_ROOT; }; + FFFDed80f6f87febed80f6f8 /* geometry/PxPlaneGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxPlaneGeometry.h"; path = "../../../Include/geometry/PxPlaneGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFDed80f7607febed80f760 /* geometry/PxSimpleTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSimpleTriangleMesh.h"; path = "../../../Include/geometry/PxSimpleTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFDed80f7c87febed80f7c8 /* geometry/PxSphereGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSphereGeometry.h"; path = "../../../Include/geometry/PxSphereGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFDed80f8307febed80f830 /* geometry/PxTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangle.h"; path = "../../../Include/geometry/PxTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFDed80f8987febed80f898 /* geometry/PxTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMesh.h"; path = "../../../Include/geometry/PxTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFDed80f9007febed80f900 /* geometry/PxTriangleMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMeshGeometry.h"; path = "../../../Include/geometry/PxTriangleMeshGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFDec990c007febec990c00 /* src/CmBoxPruning.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.cpp"; path = "../../Common/src/CmBoxPruning.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec990c687febec990c68 /* src/CmCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.cpp"; path = "../../Common/src/CmCollection.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec990cd07febec990cd0 /* src/CmMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMathUtils.cpp"; path = "../../Common/src/CmMathUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec990d387febec990d38 /* src/CmPtrTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.cpp"; path = "../../Common/src/CmPtrTable.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec990da07febec990da0 /* src/CmRadixSort.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.cpp"; path = "../../Common/src/CmRadixSort.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec990e087febec990e08 /* src/CmRadixSortBuffered.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.cpp"; path = "../../Common/src/CmRadixSortBuffered.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec990e707febec990e70 /* src/CmRenderOutput.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.cpp"; path = "../../Common/src/CmRenderOutput.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec990ed87febec990ed8 /* src/CmVisualization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.cpp"; path = "../../Common/src/CmVisualization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec990f407febec990f40 /* src/CmBitMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBitMap.h"; path = "../../Common/src/CmBitMap.h"; sourceTree = SOURCE_ROOT; }; + FFFDec990fa87febec990fa8 /* src/CmBoxPruning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.h"; path = "../../Common/src/CmBoxPruning.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9910107febec991010 /* src/CmCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.h"; path = "../../Common/src/CmCollection.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9910787febec991078 /* src/CmConeLimitHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmConeLimitHelper.h"; path = "../../Common/src/CmConeLimitHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9910e07febec9910e0 /* src/CmFlushPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmFlushPool.h"; path = "../../Common/src/CmFlushPool.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9911487febec991148 /* src/CmIDPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIDPool.h"; path = "../../Common/src/CmIDPool.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9911b07febec9911b0 /* src/CmIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIO.h"; path = "../../Common/src/CmIO.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9912187febec991218 /* src/CmMatrix34.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMatrix34.h"; path = "../../Common/src/CmMatrix34.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9912807febec991280 /* src/CmPhysXCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPhysXCommon.h"; path = "../../Common/src/CmPhysXCommon.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9912e87febec9912e8 /* src/CmPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPool.h"; path = "../../Common/src/CmPool.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9913507febec991350 /* src/CmPreallocatingPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPreallocatingPool.h"; path = "../../Common/src/CmPreallocatingPool.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9913b87febec9913b8 /* src/CmPriorityQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPriorityQueue.h"; path = "../../Common/src/CmPriorityQueue.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9914207febec991420 /* src/CmPtrTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.h"; path = "../../Common/src/CmPtrTable.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9914887febec991488 /* src/CmQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmQueue.h"; path = "../../Common/src/CmQueue.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9914f07febec9914f0 /* src/CmRadixSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.h"; path = "../../Common/src/CmRadixSort.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9915587febec991558 /* src/CmRadixSortBuffered.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.h"; path = "../../Common/src/CmRadixSortBuffered.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9915c07febec9915c0 /* src/CmReaderWriterLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmReaderWriterLock.h"; path = "../../Common/src/CmReaderWriterLock.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9916287febec991628 /* src/CmRefCountable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRefCountable.h"; path = "../../Common/src/CmRefCountable.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9916907febec991690 /* src/CmRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderBuffer.h"; path = "../../Common/src/CmRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9916f87febec9916f8 /* src/CmRenderOutput.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.h"; path = "../../Common/src/CmRenderOutput.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9917607febec991760 /* src/CmScaling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmScaling.h"; path = "../../Common/src/CmScaling.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9917c87febec9917c8 /* src/CmSpatialVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmSpatialVector.h"; path = "../../Common/src/CmSpatialVector.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9918307febec991830 /* src/CmTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTask.h"; path = "../../Common/src/CmTask.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9918987febec991898 /* src/CmTaskPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTaskPool.h"; path = "../../Common/src/CmTaskPool.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9919007febec991900 /* src/CmTmpMem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTmpMem.h"; path = "../../Common/src/CmTmpMem.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9919687febec991968 /* src/CmTransformUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTransformUtils.h"; path = "../../Common/src/CmTransformUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9919d07febec9919d0 /* src/CmUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmUtils.h"; path = "../../Common/src/CmUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFDec991a387febec991a38 /* src/CmVisualization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.h"; path = "../../Common/src/CmVisualization.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8010007febed801000 /* headers/GuAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuAxes.h"; path = "../../GeomUtils/headers/GuAxes.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8010687febed801068 /* headers/GuBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuBox.h"; path = "../../GeomUtils/headers/GuBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8010d07febed8010d0 /* headers/GuDistanceSegmentBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentBox.h"; path = "../../GeomUtils/headers/GuDistanceSegmentBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8011387febed801138 /* headers/GuDistanceSegmentSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentSegment.h"; path = "../../GeomUtils/headers/GuDistanceSegmentSegment.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8011a07febed8011a0 /* headers/GuIntersectionBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionBoxBox.h"; path = "../../GeomUtils/headers/GuIntersectionBoxBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8012087febed801208 /* headers/GuIntersectionTriangleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionTriangleBox.h"; path = "../../GeomUtils/headers/GuIntersectionTriangleBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8012707febed801270 /* headers/GuRaycastTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuRaycastTests.h"; path = "../../GeomUtils/headers/GuRaycastTests.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8012d87febed8012d8 /* headers/GuSIMDHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSIMDHelpers.h"; path = "../../GeomUtils/headers/GuSIMDHelpers.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8013407febed801340 /* headers/GuSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSegment.h"; path = "../../GeomUtils/headers/GuSegment.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8013a87febed8013a8 /* ../../Include/GeomUtils */= { isa = PBXFileReference; fileEncoding = 4; name = "../../Include/GeomUtils"; path = "../../../Include/GeomUtils"; sourceTree = SOURCE_ROOT; }; + FFFDed8014107febed801410 /* src/GuBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.h"; path = "../../GeomUtils/src/GuBounds.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8014787febed801478 /* src/GuCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.h"; path = "../../GeomUtils/src/GuCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8014e07febed8014e0 /* src/GuCenterExtents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCenterExtents.h"; path = "../../GeomUtils/src/GuCenterExtents.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8015487febed801548 /* src/GuGeometryUnion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.h"; path = "../../GeomUtils/src/GuGeometryUnion.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8015b07febed8015b0 /* src/GuInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.h"; path = "../../GeomUtils/src/GuInternal.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8016187febed801618 /* src/GuMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.h"; path = "../../GeomUtils/src/GuMTD.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8016807febed801680 /* src/GuMeshFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.h"; path = "../../GeomUtils/src/GuMeshFactory.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8016e87febed8016e8 /* src/GuOverlapTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.h"; path = "../../GeomUtils/src/GuOverlapTests.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8017507febed801750 /* src/GuSerialize.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.h"; path = "../../GeomUtils/src/GuSerialize.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8017b87febed8017b8 /* src/GuSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSphere.h"; path = "../../GeomUtils/src/GuSphere.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8018207febed801820 /* src/GuSweepMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.h"; path = "../../GeomUtils/src/GuSweepMTD.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8018887febed801888 /* src/GuSweepSharedTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.h"; path = "../../GeomUtils/src/GuSweepSharedTests.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8018f07febed8018f0 /* src/GuSweepTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.h"; path = "../../GeomUtils/src/GuSweepTests.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8019587febed801958 /* src/contact/GuContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactMethodImpl.h"; path = "../../GeomUtils/src/contact/GuContactMethodImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8019c07febed8019c0 /* src/contact/GuContactPolygonPolygon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.h"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.h"; sourceTree = SOURCE_ROOT; }; + FFFDed801a287febed801a28 /* src/contact/GuFeatureCode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.h"; path = "../../GeomUtils/src/contact/GuFeatureCode.h"; sourceTree = SOURCE_ROOT; }; + FFFDed801a907febed801a90 /* src/contact/GuLegacyTraceLineCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyTraceLineCallback.h"; path = "../../GeomUtils/src/contact/GuLegacyTraceLineCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFDed801af87febed801af8 /* src/common/GuBarycentricCoordinates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.h"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.h"; sourceTree = SOURCE_ROOT; }; + FFFDed801b607febed801b60 /* src/common/GuBoxConversion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBoxConversion.h"; path = "../../GeomUtils/src/common/GuBoxConversion.h"; sourceTree = SOURCE_ROOT; }; + FFFDed801bc87febed801bc8 /* src/common/GuEdgeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeCache.h"; path = "../../GeomUtils/src/common/GuEdgeCache.h"; sourceTree = SOURCE_ROOT; }; + FFFDed801c307febed801c30 /* src/common/GuEdgeListData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeListData.h"; path = "../../GeomUtils/src/common/GuEdgeListData.h"; sourceTree = SOURCE_ROOT; }; + FFFDed801c987febed801c98 /* src/common/GuSeparatingAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.h"; path = "../../GeomUtils/src/common/GuSeparatingAxes.h"; sourceTree = SOURCE_ROOT; }; + FFFDed801d007febed801d00 /* src/convex/GuBigConvexData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.h"; path = "../../GeomUtils/src/convex/GuBigConvexData.h"; sourceTree = SOURCE_ROOT; }; + FFFDed801d687febed801d68 /* src/convex/GuBigConvexData2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData2.h"; path = "../../GeomUtils/src/convex/GuBigConvexData2.h"; sourceTree = SOURCE_ROOT; }; + FFFDed801dd07febed801dd0 /* src/convex/GuConvexEdgeFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexEdgeFlags.h"; path = "../../GeomUtils/src/convex/GuConvexEdgeFlags.h"; sourceTree = SOURCE_ROOT; }; + FFFDed801e387febed801e38 /* src/convex/GuConvexHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.h"; path = "../../GeomUtils/src/convex/GuConvexHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFDed801ea07febed801ea0 /* src/convex/GuConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.h"; path = "../../GeomUtils/src/convex/GuConvexMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFDed801f087febed801f08 /* src/convex/GuConvexMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMeshData.h"; path = "../../GeomUtils/src/convex/GuConvexMeshData.h"; sourceTree = SOURCE_ROOT; }; + FFFDed801f707febed801f70 /* src/convex/GuConvexSupportTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.h"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.h"; sourceTree = SOURCE_ROOT; }; + FFFDed801fd87febed801fd8 /* src/convex/GuConvexUtilsInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.h"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8020407febed802040 /* src/convex/GuCubeIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuCubeIndex.h"; path = "../../GeomUtils/src/convex/GuCubeIndex.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8020a87febed8020a8 /* src/convex/GuHillClimbing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.h"; path = "../../GeomUtils/src/convex/GuHillClimbing.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8021107febed802110 /* src/convex/GuShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.h"; path = "../../GeomUtils/src/convex/GuShapeConvex.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8021787febed802178 /* src/distance/GuDistancePointBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.h"; path = "../../GeomUtils/src/distance/GuDistancePointBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8021e07febed8021e0 /* src/distance/GuDistancePointSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointSegment.h"; path = "../../GeomUtils/src/distance/GuDistancePointSegment.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8022487febed802248 /* src/distance/GuDistancePointTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8022b07febed8022b0 /* src/distance/GuDistancePointTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangleSIMD.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8023187febed802318 /* src/distance/GuDistanceSegmentSegmentSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegmentSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegmentSIMD.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8023807febed802380 /* src/distance/GuDistanceSegmentTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8023e87febed8023e8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangleSIMD.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8024507febed802450 /* src/sweep/GuSweepBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8024b87febed8024b8 /* src/sweep/GuSweepBoxSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8025207febed802520 /* 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; }; + FFFDed8025887febed802588 /* 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; }; + FFFDed8025f07febed8025f0 /* src/sweep/GuSweepCapsuleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8026587febed802658 /* src/sweep/GuSweepCapsuleCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8026c07febed8026c0 /* src/sweep/GuSweepCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8027287febed802728 /* src/sweep/GuSweepSphereCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8027907febed802790 /* src/sweep/GuSweepSphereSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8027f87febed8027f8 /* src/sweep/GuSweepSphereTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8028607febed802860 /* src/sweep/GuSweepTriangleUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.h"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8028c87febed8028c8 /* src/gjk/GuEPA.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.h"; path = "../../GeomUtils/src/gjk/GuEPA.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8029307febed802930 /* src/gjk/GuEPAFacet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPAFacet.h"; path = "../../GeomUtils/src/gjk/GuEPAFacet.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8029987febed802998 /* src/gjk/GuGJK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJK.h"; path = "../../GeomUtils/src/gjk/GuGJK.h"; sourceTree = SOURCE_ROOT; }; + FFFDed802a007febed802a00 /* src/gjk/GuGJKPenetration.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKPenetration.h"; path = "../../GeomUtils/src/gjk/GuGJKPenetration.h"; sourceTree = SOURCE_ROOT; }; + FFFDed802a687febed802a68 /* src/gjk/GuGJKRaycast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKRaycast.h"; path = "../../GeomUtils/src/gjk/GuGJKRaycast.h"; sourceTree = SOURCE_ROOT; }; + FFFDed802ad07febed802ad0 /* src/gjk/GuGJKSimplex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.h"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.h"; sourceTree = SOURCE_ROOT; }; + FFFDed802b387febed802b38 /* src/gjk/GuGJKTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.h"; path = "../../GeomUtils/src/gjk/GuGJKTest.h"; sourceTree = SOURCE_ROOT; }; + FFFDed802ba07febed802ba0 /* src/gjk/GuGJKType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKType.h"; path = "../../GeomUtils/src/gjk/GuGJKType.h"; sourceTree = SOURCE_ROOT; }; + FFFDed802c087febed802c08 /* src/gjk/GuGJKUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKUtil.h"; path = "../../GeomUtils/src/gjk/GuGJKUtil.h"; sourceTree = SOURCE_ROOT; }; + FFFDed802c707febed802c70 /* src/gjk/GuVecBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecBox.h"; path = "../../GeomUtils/src/gjk/GuVecBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDed802cd87febed802cd8 /* src/gjk/GuVecCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecCapsule.h"; path = "../../GeomUtils/src/gjk/GuVecCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFDed802d407febed802d40 /* src/gjk/GuVecConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvex.h"; path = "../../GeomUtils/src/gjk/GuVecConvex.h"; sourceTree = SOURCE_ROOT; }; + FFFDed802da87febed802da8 /* src/gjk/GuVecConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHull.h"; sourceTree = SOURCE_ROOT; }; + FFFDed802e107febed802e10 /* src/gjk/GuVecConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; }; + FFFDed802e787febed802e78 /* src/gjk/GuVecPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecPlane.h"; path = "../../GeomUtils/src/gjk/GuVecPlane.h"; sourceTree = SOURCE_ROOT; }; + FFFDed802ee07febed802ee0 /* src/gjk/GuVecShrunkBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkBox.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDed802f487febed802f48 /* src/gjk/GuVecShrunkConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHull.h"; sourceTree = SOURCE_ROOT; }; + FFFDed802fb07febed802fb0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8030187febed803018 /* src/gjk/GuVecSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecSphere.h"; path = "../../GeomUtils/src/gjk/GuVecSphere.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8030807febed803080 /* src/gjk/GuVecTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecTriangle.h"; path = "../../GeomUtils/src/gjk/GuVecTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8030e87febed8030e8 /* src/intersection/GuIntersectionCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8031507febed803150 /* src/intersection/GuIntersectionEdgeEdge.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.h"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8031b87febed8031b8 /* src/intersection/GuIntersectionRay.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRay.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRay.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8032207febed803220 /* src/intersection/GuIntersectionRayBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8032887febed803288 /* src/intersection/GuIntersectionRayBoxSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBoxSIMD.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBoxSIMD.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8032f07febed8032f0 /* src/intersection/GuIntersectionRayCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8033587febed803358 /* src/intersection/GuIntersectionRayPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayPlane.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayPlane.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8033c07febed8033c0 /* src/intersection/GuIntersectionRaySphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8034287febed803428 /* src/intersection/GuIntersectionRayTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8034907febed803490 /* src/intersection/GuIntersectionSphereBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8034f87febed8034f8 /* src/mesh/GuBV32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.h"; path = "../../GeomUtils/src/mesh/GuBV32.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8035607febed803560 /* src/mesh/GuBV32Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.h"; path = "../../GeomUtils/src/mesh/GuBV32Build.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8035c87febed8035c8 /* src/mesh/GuBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.h"; path = "../../GeomUtils/src/mesh/GuBV4.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8036307febed803630 /* src/mesh/GuBV4Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.h"; path = "../../GeomUtils/src/mesh/GuBV4Build.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8036987febed803698 /* src/mesh/GuBV4Settings.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Settings.h"; path = "../../GeomUtils/src/mesh/GuBV4Settings.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8037007febed803700 /* 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; }; + FFFDed8037687febed803768 /* 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; }; + FFFDed8037d07febed8037d0 /* 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; }; + FFFDed8038387febed803838 /* 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; }; + FFFDed8038a07febed8038a0 /* 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; }; + FFFDed8039087febed803908 /* 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; }; + FFFDed8039707febed803970 /* 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; }; + FFFDed8039d87febed8039d8 /* 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; }; + FFFDed803a407febed803a40 /* 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; }; + FFFDed803aa87febed803aa8 /* 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; }; + FFFDed803b107febed803b10 /* 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; }; + FFFDed803b787febed803b78 /* 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; }; + FFFDed803be07febed803be0 /* 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; }; + FFFDed803c487febed803c48 /* 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; }; + FFFDed803cb07febed803cb0 /* 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; }; + FFFDed803d187febed803d18 /* 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; }; + FFFDed803d807febed803d80 /* 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; }; + FFFDed803de87febed803de8 /* 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; }; + FFFDed803e507febed803e50 /* 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; }; + FFFDed803eb87febed803eb8 /* 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; }; + FFFDed803f207febed803f20 /* src/mesh/GuBVConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBVConstants.h"; path = "../../GeomUtils/src/mesh/GuBVConstants.h"; sourceTree = SOURCE_ROOT; }; + FFFDed803f887febed803f88 /* src/mesh/GuMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshData.h"; path = "../../GeomUtils/src/mesh/GuMeshData.h"; sourceTree = SOURCE_ROOT; }; + FFFDed803ff07febed803ff0 /* src/mesh/GuMidphaseInterface.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseInterface.h"; path = "../../GeomUtils/src/mesh/GuMidphaseInterface.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8040587febed804058 /* src/mesh/GuRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.h"; path = "../../GeomUtils/src/mesh/GuRTree.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8040c07febed8040c0 /* src/mesh/GuSweepConvexTri.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepConvexTri.h"; path = "../../GeomUtils/src/mesh/GuSweepConvexTri.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8041287febed804128 /* src/mesh/GuSweepMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepMesh.h"; path = "../../GeomUtils/src/mesh/GuSweepMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8041907febed804190 /* src/mesh/GuTriangle32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangle32.h"; path = "../../GeomUtils/src/mesh/GuTriangle32.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8041f87febed8041f8 /* src/mesh/GuTriangleCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleCache.h"; path = "../../GeomUtils/src/mesh/GuTriangleCache.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8042607febed804260 /* src/mesh/GuTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.h"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8042c87febed8042c8 /* src/mesh/GuTriangleMeshBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8043307febed804330 /* src/mesh/GuTriangleMeshRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8043987febed804398 /* src/mesh/GuTriangleVertexPointers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleVertexPointers.h"; path = "../../GeomUtils/src/mesh/GuTriangleVertexPointers.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8044007febed804400 /* src/hf/GuEntityReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuEntityReport.h"; path = "../../GeomUtils/src/hf/GuEntityReport.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8044687febed804468 /* src/hf/GuHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.h"; path = "../../GeomUtils/src/hf/GuHeightField.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8044d07febed8044d0 /* src/hf/GuHeightFieldData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldData.h"; path = "../../GeomUtils/src/hf/GuHeightFieldData.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8045387febed804538 /* src/hf/GuHeightFieldUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.h"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8045a07febed8045a0 /* src/pcm/GuPCMContactConvexCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.h"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8046087febed804608 /* src/pcm/GuPCMContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGen.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8046707febed804670 /* src/pcm/GuPCMContactGenUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenUtil.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGenUtil.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8046d87febed8046d8 /* src/pcm/GuPCMContactMeshCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactMeshCallback.h"; path = "../../GeomUtils/src/pcm/GuPCMContactMeshCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8047407febed804740 /* src/pcm/GuPCMShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.h"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8047a87febed8047a8 /* src/pcm/GuPCMTriangleContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8048107febed804810 /* src/pcm/GuPersistentContactManifold.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.h"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8048787febed804878 /* src/ccd/GuCCDSweepConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.h"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8048e07febed8048e0 /* src/GuBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.cpp"; path = "../../GeomUtils/src/GuBounds.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8049487febed804948 /* src/GuBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBox.cpp"; path = "../../GeomUtils/src/GuBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8049b07febed8049b0 /* src/GuCCTSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCCTSweepTests.cpp"; path = "../../GeomUtils/src/GuCCTSweepTests.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed804a187febed804a18 /* src/GuCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.cpp"; path = "../../GeomUtils/src/GuCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed804a807febed804a80 /* src/GuGeometryQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryQuery.cpp"; path = "../../GeomUtils/src/GuGeometryQuery.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed804ae87febed804ae8 /* src/GuGeometryUnion.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.cpp"; path = "../../GeomUtils/src/GuGeometryUnion.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed804b507febed804b50 /* src/GuInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.cpp"; path = "../../GeomUtils/src/GuInternal.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed804bb87febed804bb8 /* src/GuMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.cpp"; path = "../../GeomUtils/src/GuMTD.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed804c207febed804c20 /* src/GuMeshFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.cpp"; path = "../../GeomUtils/src/GuMeshFactory.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed804c887febed804c88 /* src/GuMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMetaData.cpp"; path = "../../GeomUtils/src/GuMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed804cf07febed804cf0 /* src/GuOverlapTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.cpp"; path = "../../GeomUtils/src/GuOverlapTests.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed804d587febed804d58 /* src/GuRaycastTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuRaycastTests.cpp"; path = "../../GeomUtils/src/GuRaycastTests.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed804dc07febed804dc0 /* src/GuSerialize.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.cpp"; path = "../../GeomUtils/src/GuSerialize.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed804e287febed804e28 /* src/GuSweepMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.cpp"; path = "../../GeomUtils/src/GuSweepMTD.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed804e907febed804e90 /* src/GuSweepSharedTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.cpp"; path = "../../GeomUtils/src/GuSweepSharedTests.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed804ef87febed804ef8 /* src/GuSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.cpp"; path = "../../GeomUtils/src/GuSweepTests.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed804f607febed804f60 /* src/contact/GuContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactBoxBox.cpp"; path = "../../GeomUtils/src/contact/GuContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed804fc87febed804fc8 /* src/contact/GuContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleBox.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8050307febed805030 /* src/contact/GuContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8050987febed805098 /* src/contact/GuContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8051007febed805100 /* src/contact/GuContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8051687febed805168 /* src/contact/GuContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8051d07febed8051d0 /* src/contact/GuContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8052387febed805238 /* src/contact/GuContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneBox.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8052a07febed8052a0 /* src/contact/GuContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8053087febed805308 /* src/contact/GuContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8053707febed805370 /* src/contact/GuContactPolygonPolygon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.cpp"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8053d87febed8053d8 /* src/contact/GuContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereBox.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8054407febed805440 /* src/contact/GuContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8054a87febed8054a8 /* src/contact/GuContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8055107febed805510 /* src/contact/GuContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSpherePlane.cpp"; path = "../../GeomUtils/src/contact/GuContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8055787febed805578 /* src/contact/GuContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereSphere.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8055e07febed8055e0 /* src/contact/GuFeatureCode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.cpp"; path = "../../GeomUtils/src/contact/GuFeatureCode.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8056487febed805648 /* src/contact/GuLegacyContactBoxHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactBoxHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactBoxHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8056b07febed8056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8057187febed805718 /* src/contact/GuLegacyContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactConvexHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8057807febed805780 /* src/contact/GuLegacyContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactSphereHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8057e87febed8057e8 /* src/common/GuBarycentricCoordinates.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.cpp"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8058507febed805850 /* src/common/GuSeparatingAxes.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.cpp"; path = "../../GeomUtils/src/common/GuSeparatingAxes.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8058b87febed8058b8 /* src/convex/GuBigConvexData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.cpp"; path = "../../GeomUtils/src/convex/GuBigConvexData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8059207febed805920 /* src/convex/GuConvexHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.cpp"; path = "../../GeomUtils/src/convex/GuConvexHelper.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8059887febed805988 /* src/convex/GuConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.cpp"; path = "../../GeomUtils/src/convex/GuConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8059f07febed8059f0 /* src/convex/GuConvexSupportTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.cpp"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed805a587febed805a58 /* src/convex/GuConvexUtilsInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.cpp"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed805ac07febed805ac0 /* src/convex/GuHillClimbing.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.cpp"; path = "../../GeomUtils/src/convex/GuHillClimbing.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed805b287febed805b28 /* src/convex/GuShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.cpp"; path = "../../GeomUtils/src/convex/GuShapeConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed805b907febed805b90 /* src/distance/GuDistancePointBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed805bf87febed805bf8 /* src/distance/GuDistancePointTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed805c607febed805c60 /* src/distance/GuDistanceSegmentBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentBox.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed805cc87febed805cc8 /* src/distance/GuDistanceSegmentSegment.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegment.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegment.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed805d307febed805d30 /* src/distance/GuDistanceSegmentTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed805d987febed805d98 /* src/sweep/GuSweepBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed805e007febed805e00 /* src/sweep/GuSweepBoxSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed805e687febed805e68 /* 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; }; + FFFDed805ed07febed805ed0 /* 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; }; + FFFDed805f387febed805f38 /* src/sweep/GuSweepCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed805fa07febed805fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8060087febed806008 /* src/sweep/GuSweepCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8060707febed806070 /* src/sweep/GuSweepSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8060d87febed8060d8 /* src/sweep/GuSweepSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8061407febed806140 /* src/sweep/GuSweepSphereTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8061a87febed8061a8 /* src/sweep/GuSweepTriangleUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.cpp"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8062107febed806210 /* src/gjk/GuEPA.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.cpp"; path = "../../GeomUtils/src/gjk/GuEPA.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8062787febed806278 /* src/gjk/GuGJKSimplex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.cpp"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8062e07febed8062e0 /* src/gjk/GuGJKTest.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.cpp"; path = "../../GeomUtils/src/gjk/GuGJKTest.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8063487febed806348 /* src/intersection/GuIntersectionBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionBoxBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8063b07febed8063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8064187febed806418 /* src/intersection/GuIntersectionEdgeEdge.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8064807febed806480 /* src/intersection/GuIntersectionRayBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8064e87febed8064e8 /* src/intersection/GuIntersectionRayCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8065507febed806550 /* src/intersection/GuIntersectionRaySphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8065b87febed8065b8 /* src/intersection/GuIntersectionSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8066207febed806620 /* src/intersection/GuIntersectionTriangleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionTriangleBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionTriangleBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8066887febed806688 /* src/mesh/GuBV32.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.cpp"; path = "../../GeomUtils/src/mesh/GuBV32.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8066f07febed8066f0 /* src/mesh/GuBV32Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV32Build.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8067587febed806758 /* src/mesh/GuBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.cpp"; path = "../../GeomUtils/src/mesh/GuBV4.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8067c07febed8067c0 /* src/mesh/GuBV4Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV4Build.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8068287febed806828 /* 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; }; + FFFDed8068907febed806890 /* 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; }; + FFFDed8068f87febed8068f8 /* 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; }; + FFFDed8069607febed806960 /* 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; }; + FFFDed8069c87febed8069c8 /* 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; }; + FFFDed806a307febed806a30 /* 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; }; + FFFDed806a987febed806a98 /* 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; }; + FFFDed806b007febed806b00 /* 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; }; + FFFDed806b687febed806b68 /* src/mesh/GuMeshQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshQuery.cpp"; path = "../../GeomUtils/src/mesh/GuMeshQuery.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed806bd07febed806bd0 /* src/mesh/GuMidphaseBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseBV4.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseBV4.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed806c387febed806c38 /* src/mesh/GuMidphaseRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseRTree.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseRTree.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed806ca07febed806ca0 /* src/mesh/GuOverlapTestsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuOverlapTestsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuOverlapTestsMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed806d087febed806d08 /* src/mesh/GuRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.cpp"; path = "../../GeomUtils/src/mesh/GuRTree.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed806d707febed806d70 /* src/mesh/GuRTreeQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTreeQueries.cpp"; path = "../../GeomUtils/src/mesh/GuRTreeQueries.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed806dd87febed806dd8 /* src/mesh/GuSweepsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuSweepsMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed806e407febed806e40 /* src/mesh/GuTriangleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed806ea87febed806ea8 /* src/mesh/GuTriangleMeshBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed806f107febed806f10 /* src/mesh/GuTriangleMeshRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed806f787febed806f78 /* src/hf/GuHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.cpp"; path = "../../GeomUtils/src/hf/GuHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed806fe07febed806fe0 /* src/hf/GuHeightFieldUtil.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.cpp"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8070487febed807048 /* src/hf/GuOverlapTestsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuOverlapTestsHF.cpp"; path = "../../GeomUtils/src/hf/GuOverlapTestsHF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8070b07febed8070b0 /* src/hf/GuSweepsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuSweepsHF.cpp"; path = "../../GeomUtils/src/hf/GuSweepsHF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8071187febed807118 /* src/pcm/GuPCMContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8071807febed807180 /* src/pcm/GuPCMContactBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8071e87febed8071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8072507febed807250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8072b87febed8072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8073207febed807320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8073887febed807388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8073f07febed8073f0 /* src/pcm/GuPCMContactConvexCommon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8074587febed807458 /* src/pcm/GuPCMContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8074c07febed8074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8075287febed807528 /* src/pcm/GuPCMContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8075907febed807590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenBoxConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8075f87febed8075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8076607febed807660 /* src/pcm/GuPCMContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8076c87febed8076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8077307febed807730 /* src/pcm/GuPCMContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8077987febed807798 /* src/pcm/GuPCMContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8078007febed807800 /* src/pcm/GuPCMContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8078687febed807868 /* src/pcm/GuPCMContactSphereConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8078d07febed8078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8079387febed807938 /* src/pcm/GuPCMContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8079a07febed8079a0 /* src/pcm/GuPCMContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSpherePlane.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed807a087febed807a08 /* src/pcm/GuPCMContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereSphere.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed807a707febed807a70 /* src/pcm/GuPCMShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed807ad87febed807ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.cpp"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed807b407febed807b40 /* src/pcm/GuPersistentContactManifold.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.cpp"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed807ba87febed807ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.cpp"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed807c107febed807c10 /* 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 */ - FFF25b2fb4e07fb05b2fb4e0 /* Resources */ = { + FFF2ed146af07febed146af0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF5b8013a87fb05b8013a8, + FFFFed8013a87febed8013a8, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC5b2fb4e07fb05b2fb4e0 /* Frameworks */ = { + FFFCed146af07febed146af0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -1841,145 +1841,145 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF85b2fb4e07fb05b2fb4e0 /* Sources */ = { + FFF8ed146af07febed146af0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF5a9a22007fb05a9a2200, - FFFF5a9a22687fb05a9a2268, - FFFF5a9a22d07fb05a9a22d0, - FFFF5a9a23387fb05a9a2338, - FFFF5a9a23a07fb05a9a23a0, - FFFF5a9a24087fb05a9a2408, - FFFF5a9a24707fb05a9a2470, - FFFF5a9a24d87fb05a9a24d8, - FFFF5b8048e07fb05b8048e0, - FFFF5b8049487fb05b804948, - FFFF5b8049b07fb05b8049b0, - FFFF5b804a187fb05b804a18, - FFFF5b804a807fb05b804a80, - FFFF5b804ae87fb05b804ae8, - FFFF5b804b507fb05b804b50, - FFFF5b804bb87fb05b804bb8, - FFFF5b804c207fb05b804c20, - FFFF5b804c887fb05b804c88, - FFFF5b804cf07fb05b804cf0, - FFFF5b804d587fb05b804d58, - FFFF5b804dc07fb05b804dc0, - FFFF5b804e287fb05b804e28, - FFFF5b804e907fb05b804e90, - FFFF5b804ef87fb05b804ef8, - FFFF5b804f607fb05b804f60, - FFFF5b804fc87fb05b804fc8, - FFFF5b8050307fb05b805030, - FFFF5b8050987fb05b805098, - FFFF5b8051007fb05b805100, - FFFF5b8051687fb05b805168, - FFFF5b8051d07fb05b8051d0, - FFFF5b8052387fb05b805238, - FFFF5b8052a07fb05b8052a0, - FFFF5b8053087fb05b805308, - FFFF5b8053707fb05b805370, - FFFF5b8053d87fb05b8053d8, - FFFF5b8054407fb05b805440, - FFFF5b8054a87fb05b8054a8, - FFFF5b8055107fb05b805510, - FFFF5b8055787fb05b805578, - FFFF5b8055e07fb05b8055e0, - FFFF5b8056487fb05b805648, - FFFF5b8056b07fb05b8056b0, - FFFF5b8057187fb05b805718, - FFFF5b8057807fb05b805780, - FFFF5b8057e87fb05b8057e8, - FFFF5b8058507fb05b805850, - FFFF5b8058b87fb05b8058b8, - FFFF5b8059207fb05b805920, - FFFF5b8059887fb05b805988, - FFFF5b8059f07fb05b8059f0, - FFFF5b805a587fb05b805a58, - FFFF5b805ac07fb05b805ac0, - FFFF5b805b287fb05b805b28, - FFFF5b805b907fb05b805b90, - FFFF5b805bf87fb05b805bf8, - FFFF5b805c607fb05b805c60, - FFFF5b805cc87fb05b805cc8, - FFFF5b805d307fb05b805d30, - FFFF5b805d987fb05b805d98, - FFFF5b805e007fb05b805e00, - FFFF5b805e687fb05b805e68, - FFFF5b805ed07fb05b805ed0, - FFFF5b805f387fb05b805f38, - FFFF5b805fa07fb05b805fa0, - FFFF5b8060087fb05b806008, - FFFF5b8060707fb05b806070, - FFFF5b8060d87fb05b8060d8, - FFFF5b8061407fb05b806140, - FFFF5b8061a87fb05b8061a8, - FFFF5b8062107fb05b806210, - FFFF5b8062787fb05b806278, - FFFF5b8062e07fb05b8062e0, - FFFF5b8063487fb05b806348, - FFFF5b8063b07fb05b8063b0, - FFFF5b8064187fb05b806418, - FFFF5b8064807fb05b806480, - FFFF5b8064e87fb05b8064e8, - FFFF5b8065507fb05b806550, - FFFF5b8065b87fb05b8065b8, - FFFF5b8066207fb05b806620, - FFFF5b8066887fb05b806688, - FFFF5b8066f07fb05b8066f0, - FFFF5b8067587fb05b806758, - FFFF5b8067c07fb05b8067c0, - FFFF5b8068287fb05b806828, - FFFF5b8068907fb05b806890, - FFFF5b8068f87fb05b8068f8, - FFFF5b8069607fb05b806960, - FFFF5b8069c87fb05b8069c8, - FFFF5b806a307fb05b806a30, - FFFF5b806a987fb05b806a98, - FFFF5b806b007fb05b806b00, - FFFF5b806b687fb05b806b68, - FFFF5b806bd07fb05b806bd0, - FFFF5b806c387fb05b806c38, - FFFF5b806ca07fb05b806ca0, - FFFF5b806d087fb05b806d08, - FFFF5b806d707fb05b806d70, - FFFF5b806dd87fb05b806dd8, - FFFF5b806e407fb05b806e40, - FFFF5b806ea87fb05b806ea8, - FFFF5b806f107fb05b806f10, - FFFF5b806f787fb05b806f78, - FFFF5b806fe07fb05b806fe0, - FFFF5b8070487fb05b807048, - FFFF5b8070b07fb05b8070b0, - FFFF5b8071187fb05b807118, - FFFF5b8071807fb05b807180, - FFFF5b8071e87fb05b8071e8, - FFFF5b8072507fb05b807250, - FFFF5b8072b87fb05b8072b8, - FFFF5b8073207fb05b807320, - FFFF5b8073887fb05b807388, - FFFF5b8073f07fb05b8073f0, - FFFF5b8074587fb05b807458, - FFFF5b8074c07fb05b8074c0, - FFFF5b8075287fb05b807528, - FFFF5b8075907fb05b807590, - FFFF5b8075f87fb05b8075f8, - FFFF5b8076607fb05b807660, - FFFF5b8076c87fb05b8076c8, - FFFF5b8077307fb05b807730, - FFFF5b8077987fb05b807798, - FFFF5b8078007fb05b807800, - FFFF5b8078687fb05b807868, - FFFF5b8078d07fb05b8078d0, - FFFF5b8079387fb05b807938, - FFFF5b8079a07fb05b8079a0, - FFFF5b807a087fb05b807a08, - FFFF5b807a707fb05b807a70, - FFFF5b807ad87fb05b807ad8, - FFFF5b807b407fb05b807b40, - FFFF5b807ba87fb05b807ba8, - FFFF5b807c107fb05b807c10, + FFFFec990c007febec990c00, + FFFFec990c687febec990c68, + FFFFec990cd07febec990cd0, + FFFFec990d387febec990d38, + FFFFec990da07febec990da0, + FFFFec990e087febec990e08, + FFFFec990e707febec990e70, + FFFFec990ed87febec990ed8, + FFFFed8048e07febed8048e0, + FFFFed8049487febed804948, + FFFFed8049b07febed8049b0, + FFFFed804a187febed804a18, + FFFFed804a807febed804a80, + FFFFed804ae87febed804ae8, + FFFFed804b507febed804b50, + FFFFed804bb87febed804bb8, + FFFFed804c207febed804c20, + FFFFed804c887febed804c88, + FFFFed804cf07febed804cf0, + FFFFed804d587febed804d58, + FFFFed804dc07febed804dc0, + FFFFed804e287febed804e28, + FFFFed804e907febed804e90, + FFFFed804ef87febed804ef8, + FFFFed804f607febed804f60, + FFFFed804fc87febed804fc8, + FFFFed8050307febed805030, + FFFFed8050987febed805098, + FFFFed8051007febed805100, + FFFFed8051687febed805168, + FFFFed8051d07febed8051d0, + FFFFed8052387febed805238, + FFFFed8052a07febed8052a0, + FFFFed8053087febed805308, + FFFFed8053707febed805370, + FFFFed8053d87febed8053d8, + FFFFed8054407febed805440, + FFFFed8054a87febed8054a8, + FFFFed8055107febed805510, + FFFFed8055787febed805578, + FFFFed8055e07febed8055e0, + FFFFed8056487febed805648, + FFFFed8056b07febed8056b0, + FFFFed8057187febed805718, + FFFFed8057807febed805780, + FFFFed8057e87febed8057e8, + FFFFed8058507febed805850, + FFFFed8058b87febed8058b8, + FFFFed8059207febed805920, + FFFFed8059887febed805988, + FFFFed8059f07febed8059f0, + FFFFed805a587febed805a58, + FFFFed805ac07febed805ac0, + FFFFed805b287febed805b28, + FFFFed805b907febed805b90, + FFFFed805bf87febed805bf8, + FFFFed805c607febed805c60, + FFFFed805cc87febed805cc8, + FFFFed805d307febed805d30, + FFFFed805d987febed805d98, + FFFFed805e007febed805e00, + FFFFed805e687febed805e68, + FFFFed805ed07febed805ed0, + FFFFed805f387febed805f38, + FFFFed805fa07febed805fa0, + FFFFed8060087febed806008, + FFFFed8060707febed806070, + FFFFed8060d87febed8060d8, + FFFFed8061407febed806140, + FFFFed8061a87febed8061a8, + FFFFed8062107febed806210, + FFFFed8062787febed806278, + FFFFed8062e07febed8062e0, + FFFFed8063487febed806348, + FFFFed8063b07febed8063b0, + FFFFed8064187febed806418, + FFFFed8064807febed806480, + FFFFed8064e87febed8064e8, + FFFFed8065507febed806550, + FFFFed8065b87febed8065b8, + FFFFed8066207febed806620, + FFFFed8066887febed806688, + FFFFed8066f07febed8066f0, + FFFFed8067587febed806758, + FFFFed8067c07febed8067c0, + FFFFed8068287febed806828, + FFFFed8068907febed806890, + FFFFed8068f87febed8068f8, + FFFFed8069607febed806960, + FFFFed8069c87febed8069c8, + FFFFed806a307febed806a30, + FFFFed806a987febed806a98, + FFFFed806b007febed806b00, + FFFFed806b687febed806b68, + FFFFed806bd07febed806bd0, + FFFFed806c387febed806c38, + FFFFed806ca07febed806ca0, + FFFFed806d087febed806d08, + FFFFed806d707febed806d70, + FFFFed806dd87febed806dd8, + FFFFed806e407febed806e40, + FFFFed806ea87febed806ea8, + FFFFed806f107febed806f10, + FFFFed806f787febed806f78, + FFFFed806fe07febed806fe0, + FFFFed8070487febed807048, + FFFFed8070b07febed8070b0, + FFFFed8071187febed807118, + FFFFed8071807febed807180, + FFFFed8071e87febed8071e8, + FFFFed8072507febed807250, + FFFFed8072b87febed8072b8, + FFFFed8073207febed807320, + FFFFed8073887febed807388, + FFFFed8073f07febed8073f0, + FFFFed8074587febed807458, + FFFFed8074c07febed8074c0, + FFFFed8075287febed807528, + FFFFed8075907febed807590, + FFFFed8075f87febed8075f8, + FFFFed8076607febed807660, + FFFFed8076c87febed8076c8, + FFFFed8077307febed807730, + FFFFed8077987febed807798, + FFFFed8078007febed807800, + FFFFed8078687febed807868, + FFFFed8078d07febed8078d0, + FFFFed8079387febed807938, + FFFFed8079a07febed8079a0, + FFFFed807a087febed807a08, + FFFFed807a707febed807a70, + FFFFed807ad87febed807ad8, + FFFFed807b407febed807b40, + FFFFed807ba87febed807ba8, + FFFFed807c107febed807c10, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1988,132 +1988,132 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF45b2fa1707fb05b2fa170 /* PBXTargetDependency */ = { + FFF4ed1416707febed141670 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA5b080a507fb05b080a50 /* PxFoundation */; - targetProxy = FFF55b080a507fb05b080a50 /* PBXContainerItemProxy */; + target = FFFAed13dc907febed13dc90 /* PxFoundation */; + targetProxy = FFF5ed13dc907febed13dc90 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PxFoundation */ - FFFF5a994f187fb05a994f18 /* src/PsAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a994f187fb05a994f18 /* src/PsAllocator.cpp */; }; - FFFF5a994f807fb05a994f80 /* src/PsAssert.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a994f807fb05a994f80 /* src/PsAssert.cpp */; }; - FFFF5a994fe87fb05a994fe8 /* src/PsFoundation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a994fe87fb05a994fe8 /* src/PsFoundation.cpp */; }; - FFFF5a9950507fb05a995050 /* src/PsMathUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9950507fb05a995050 /* src/PsMathUtils.cpp */; }; - FFFF5a9950b87fb05a9950b8 /* src/PsString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9950b87fb05a9950b8 /* src/PsString.cpp */; }; - FFFF5a9951207fb05a995120 /* src/PsTempAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9951207fb05a995120 /* src/PsTempAllocator.cpp */; }; - FFFF5a9951887fb05a995188 /* src/PsUtilities.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9951887fb05a995188 /* src/PsUtilities.cpp */; }; - FFFF5a9951f07fb05a9951f0 /* src/unix/PsUnixAtomic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9951f07fb05a9951f0 /* src/unix/PsUnixAtomic.cpp */; }; - FFFF5a9952587fb05a995258 /* src/unix/PsUnixCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9952587fb05a995258 /* src/unix/PsUnixCpu.cpp */; }; - FFFF5a9952c07fb05a9952c0 /* src/unix/PsUnixFPU.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9952c07fb05a9952c0 /* src/unix/PsUnixFPU.cpp */; }; - FFFF5a9953287fb05a995328 /* src/unix/PsUnixMutex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9953287fb05a995328 /* src/unix/PsUnixMutex.cpp */; }; - FFFF5a9953907fb05a995390 /* src/unix/PsUnixPrintString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9953907fb05a995390 /* src/unix/PsUnixPrintString.cpp */; }; - FFFF5a9953f87fb05a9953f8 /* src/unix/PsUnixSList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9953f87fb05a9953f8 /* src/unix/PsUnixSList.cpp */; }; - FFFF5a9954607fb05a995460 /* src/unix/PsUnixSocket.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9954607fb05a995460 /* src/unix/PsUnixSocket.cpp */; }; - FFFF5a9954c87fb05a9954c8 /* src/unix/PsUnixSync.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9954c87fb05a9954c8 /* src/unix/PsUnixSync.cpp */; }; - FFFF5a9955307fb05a995530 /* src/unix/PsUnixThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9955307fb05a995530 /* src/unix/PsUnixThread.cpp */; }; - FFFF5a9955987fb05a995598 /* src/unix/PsUnixTime.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9955987fb05a995598 /* src/unix/PsUnixTime.cpp */; }; + FFFFec9839187febec983918 /* src/PsAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec9839187febec983918 /* src/PsAllocator.cpp */; }; + FFFFec9839807febec983980 /* src/PsAssert.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec9839807febec983980 /* src/PsAssert.cpp */; }; + FFFFec9839e87febec9839e8 /* src/PsFoundation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec9839e87febec9839e8 /* src/PsFoundation.cpp */; }; + FFFFec983a507febec983a50 /* src/PsMathUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec983a507febec983a50 /* src/PsMathUtils.cpp */; }; + FFFFec983ab87febec983ab8 /* src/PsString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec983ab87febec983ab8 /* src/PsString.cpp */; }; + FFFFec983b207febec983b20 /* src/PsTempAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec983b207febec983b20 /* src/PsTempAllocator.cpp */; }; + FFFFec983b887febec983b88 /* src/PsUtilities.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec983b887febec983b88 /* src/PsUtilities.cpp */; }; + FFFFec983bf07febec983bf0 /* src/unix/PsUnixAtomic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec983bf07febec983bf0 /* src/unix/PsUnixAtomic.cpp */; }; + FFFFec983c587febec983c58 /* src/unix/PsUnixCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec983c587febec983c58 /* src/unix/PsUnixCpu.cpp */; }; + FFFFec983cc07febec983cc0 /* src/unix/PsUnixFPU.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec983cc07febec983cc0 /* src/unix/PsUnixFPU.cpp */; }; + FFFFec983d287febec983d28 /* src/unix/PsUnixMutex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec983d287febec983d28 /* src/unix/PsUnixMutex.cpp */; }; + FFFFec983d907febec983d90 /* src/unix/PsUnixPrintString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec983d907febec983d90 /* src/unix/PsUnixPrintString.cpp */; }; + FFFFec983df87febec983df8 /* src/unix/PsUnixSList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec983df87febec983df8 /* src/unix/PsUnixSList.cpp */; }; + FFFFec983e607febec983e60 /* src/unix/PsUnixSocket.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec983e607febec983e60 /* src/unix/PsUnixSocket.cpp */; }; + FFFFec983ec87febec983ec8 /* src/unix/PsUnixSync.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec983ec87febec983ec8 /* src/unix/PsUnixSync.cpp */; }; + FFFFec983f307febec983f30 /* src/unix/PsUnixThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec983f307febec983f30 /* src/unix/PsUnixThread.cpp */; }; + FFFFec983f987febec983f98 /* src/unix/PsUnixTime.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec983f987febec983f98 /* src/unix/PsUnixTime.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD5b080a507fb05b080a50 /* PxFoundation */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxFoundation"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD5a9a58007fb05a9a5800 /* Px.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Px.h"; path = "../../../../PxShared/include/foundation/Px.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a58687fb05a9a5868 /* PxAllocatorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAllocatorCallback.h"; path = "../../../../PxShared/include/foundation/PxAllocatorCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a58d07fb05a9a58d0 /* PxAssert.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAssert.h"; path = "../../../../PxShared/include/foundation/PxAssert.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a59387fb05a9a5938 /* PxBitAndData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBitAndData.h"; path = "../../../../PxShared/include/foundation/PxBitAndData.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a59a07fb05a9a59a0 /* PxBounds3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBounds3.h"; path = "../../../../PxShared/include/foundation/PxBounds3.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a5a087fb05a9a5a08 /* PxErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrorCallback.h"; path = "../../../../PxShared/include/foundation/PxErrorCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a5a707fb05a9a5a70 /* PxErrors.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrors.h"; path = "../../../../PxShared/include/foundation/PxErrors.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a5ad87fb05a9a5ad8 /* PxFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFlags.h"; path = "../../../../PxShared/include/foundation/PxFlags.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a5b407fb05a9a5b40 /* PxFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundation.h"; path = "../../../../PxShared/include/foundation/PxFoundation.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a5ba87fb05a9a5ba8 /* PxFoundationVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundationVersion.h"; path = "../../../../PxShared/include/foundation/PxFoundationVersion.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a5c107fb05a9a5c10 /* PxIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIO.h"; path = "../../../../PxShared/include/foundation/PxIO.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a5c787fb05a9a5c78 /* PxIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIntrinsics.h"; path = "../../../../PxShared/include/foundation/PxIntrinsics.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a5ce07fb05a9a5ce0 /* PxMat33.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat33.h"; path = "../../../../PxShared/include/foundation/PxMat33.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a5d487fb05a9a5d48 /* PxMat44.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat44.h"; path = "../../../../PxShared/include/foundation/PxMat44.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a5db07fb05a9a5db0 /* PxMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMath.h"; path = "../../../../PxShared/include/foundation/PxMath.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a5e187fb05a9a5e18 /* PxMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMathUtils.h"; path = "../../../../PxShared/include/foundation/PxMathUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a5e807fb05a9a5e80 /* PxMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMemory.h"; path = "../../../../PxShared/include/foundation/PxMemory.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a5ee87fb05a9a5ee8 /* PxPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPlane.h"; path = "../../../../PxShared/include/foundation/PxPlane.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a5f507fb05a9a5f50 /* PxPreprocessor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPreprocessor.h"; path = "../../../../PxShared/include/foundation/PxPreprocessor.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a5fb87fb05a9a5fb8 /* PxProfiler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxProfiler.h"; path = "../../../../PxShared/include/foundation/PxProfiler.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a60207fb05a9a6020 /* PxQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQuat.h"; path = "../../../../PxShared/include/foundation/PxQuat.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a60887fb05a9a6088 /* PxSimpleTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleTypes.h"; path = "../../../../PxShared/include/foundation/PxSimpleTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a60f07fb05a9a60f0 /* PxStrideIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStrideIterator.h"; path = "../../../../PxShared/include/foundation/PxStrideIterator.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a61587fb05a9a6158 /* PxTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTransform.h"; path = "../../../../PxShared/include/foundation/PxTransform.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a61c07fb05a9a61c0 /* PxUnionCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxUnionCast.h"; path = "../../../../PxShared/include/foundation/PxUnionCast.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a62287fb05a9a6228 /* PxVec2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec2.h"; path = "../../../../PxShared/include/foundation/PxVec2.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a62907fb05a9a6290 /* PxVec3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec3.h"; path = "../../../../PxShared/include/foundation/PxVec3.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a62f87fb05a9a62f8 /* PxVec4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec4.h"; path = "../../../../PxShared/include/foundation/PxVec4.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a63607fb05a9a6360 /* unix/PxUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "unix/PxUnixIntrinsics.h"; path = "../../../../PxShared/include/foundation/unix/PxUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a993c007fb05a993c00 /* include/Ps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/Ps.h"; path = "../../../../PxShared/src/foundation/include/Ps.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a993c687fb05a993c68 /* include/PsAlignedMalloc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlignedMalloc.h"; path = "../../../../PxShared/src/foundation/include/PsAlignedMalloc.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a993cd07fb05a993cd0 /* include/PsAlloca.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlloca.h"; path = "../../../../PxShared/src/foundation/include/PsAlloca.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a993d387fb05a993d38 /* include/PsAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a993da07fb05a993da0 /* include/PsAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAoS.h"; path = "../../../../PxShared/src/foundation/include/PsAoS.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a993e087fb05a993e08 /* include/PsArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsArray.h"; path = "../../../../PxShared/src/foundation/include/PsArray.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a993e707fb05a993e70 /* include/PsAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAtomic.h"; path = "../../../../PxShared/src/foundation/include/PsAtomic.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a993ed87fb05a993ed8 /* include/PsBasicTemplates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBasicTemplates.h"; path = "../../../../PxShared/src/foundation/include/PsBasicTemplates.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a993f407fb05a993f40 /* include/PsBitUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBitUtils.h"; path = "../../../../PxShared/src/foundation/include/PsBitUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a993fa87fb05a993fa8 /* include/PsBroadcast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBroadcast.h"; path = "../../../../PxShared/src/foundation/include/PsBroadcast.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9940107fb05a994010 /* include/PsCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsCpu.h"; path = "../../../../PxShared/src/foundation/include/PsCpu.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9940787fb05a994078 /* include/PsFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFPU.h"; path = "../../../../PxShared/src/foundation/include/PsFPU.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9940e07fb05a9940e0 /* include/PsFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFoundation.h"; path = "../../../../PxShared/src/foundation/include/PsFoundation.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9941487fb05a994148 /* include/PsHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHash.h"; path = "../../../../PxShared/src/foundation/include/PsHash.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9941b07fb05a9941b0 /* include/PsHashInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashInternals.h"; path = "../../../../PxShared/src/foundation/include/PsHashInternals.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9942187fb05a994218 /* include/PsHashMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashMap.h"; path = "../../../../PxShared/src/foundation/include/PsHashMap.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9942807fb05a994280 /* include/PsHashSet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashSet.h"; path = "../../../../PxShared/src/foundation/include/PsHashSet.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9942e87fb05a9942e8 /* include/PsInlineAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9943507fb05a994350 /* include/PsInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAoS.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9943b87fb05a9943b8 /* include/PsInlineArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineArray.h"; path = "../../../../PxShared/src/foundation/include/PsInlineArray.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9944207fb05a994420 /* include/PsIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/PsIntrinsics.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9944887fb05a994488 /* include/PsMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMathUtils.h"; path = "../../../../PxShared/src/foundation/include/PsMathUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9944f07fb05a9944f0 /* include/PsMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMutex.h"; path = "../../../../PxShared/src/foundation/include/PsMutex.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9945587fb05a994558 /* include/PsPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPool.h"; path = "../../../../PxShared/src/foundation/include/PsPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9945c07fb05a9945c0 /* include/PsSList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSList.h"; path = "../../../../PxShared/src/foundation/include/PsSList.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9946287fb05a994628 /* include/PsSocket.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSocket.h"; path = "../../../../PxShared/src/foundation/include/PsSocket.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9946907fb05a994690 /* include/PsSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSort.h"; path = "../../../../PxShared/src/foundation/include/PsSort.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9946f87fb05a9946f8 /* include/PsSortInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSortInternals.h"; path = "../../../../PxShared/src/foundation/include/PsSortInternals.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9947607fb05a994760 /* include/PsString.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsString.h"; path = "../../../../PxShared/src/foundation/include/PsString.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9947c87fb05a9947c8 /* include/PsSync.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSync.h"; path = "../../../../PxShared/src/foundation/include/PsSync.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9948307fb05a994830 /* include/PsTempAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTempAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsTempAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9948987fb05a994898 /* include/PsThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsThread.h"; path = "../../../../PxShared/src/foundation/include/PsThread.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9949007fb05a994900 /* include/PsTime.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTime.h"; path = "../../../../PxShared/src/foundation/include/PsTime.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9949687fb05a994968 /* include/PsUserAllocated.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUserAllocated.h"; path = "../../../../PxShared/src/foundation/include/PsUserAllocated.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9949d07fb05a9949d0 /* include/PsUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsUtilities.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a994a387fb05a994a38 /* include/PsVecMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMath.h"; path = "../../../../PxShared/src/foundation/include/PsVecMath.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a994aa07fb05a994aa0 /* include/PsVecMathAoSScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalar.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalar.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a994b087fb05a994b08 /* include/PsVecMathAoSScalarInline.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalarInline.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalarInline.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a994b707fb05a994b70 /* include/PsVecMathSSE.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathSSE.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathSSE.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a994bd87fb05a994bd8 /* include/PsVecMathUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathUtilities.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a994c407fb05a994c40 /* include/PsVecQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecQuat.h"; path = "../../../../PxShared/src/foundation/include/PsVecQuat.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a994ca87fb05a994ca8 /* include/PsVecTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecTransform.h"; path = "../../../../PxShared/src/foundation/include/PsVecTransform.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a994d107fb05a994d10 /* include/unix/PsUnixAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixAoS.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a994d787fb05a994d78 /* include/unix/PsUnixFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixFPU.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixFPU.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a994de07fb05a994de0 /* include/unix/PsUnixInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixInlineAoS.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a994e487fb05a994e48 /* include/unix/PsUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a994eb07fb05a994eb0 /* include/unix/PsUnixTrigConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixTrigConstants.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixTrigConstants.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a994f187fb05a994f18 /* src/PsAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsAllocator.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a994f807fb05a994f80 /* src/PsAssert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAssert.cpp"; path = "../../../../PxShared/src/foundation/src/PsAssert.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a994fe87fb05a994fe8 /* src/PsFoundation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsFoundation.cpp"; path = "../../../../PxShared/src/foundation/src/PsFoundation.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9950507fb05a995050 /* src/PsMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsMathUtils.cpp"; path = "../../../../PxShared/src/foundation/src/PsMathUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9950b87fb05a9950b8 /* src/PsString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsString.cpp"; path = "../../../../PxShared/src/foundation/src/PsString.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9951207fb05a995120 /* src/PsTempAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsTempAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsTempAllocator.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9951887fb05a995188 /* src/PsUtilities.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsUtilities.cpp"; path = "../../../../PxShared/src/foundation/src/PsUtilities.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9951f07fb05a9951f0 /* src/unix/PsUnixAtomic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixAtomic.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixAtomic.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9952587fb05a995258 /* src/unix/PsUnixCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixCpu.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixCpu.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9952c07fb05a9952c0 /* src/unix/PsUnixFPU.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixFPU.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixFPU.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9953287fb05a995328 /* src/unix/PsUnixMutex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixMutex.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixMutex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9953907fb05a995390 /* src/unix/PsUnixPrintString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixPrintString.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixPrintString.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9953f87fb05a9953f8 /* src/unix/PsUnixSList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSList.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSList.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9954607fb05a995460 /* src/unix/PsUnixSocket.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSocket.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSocket.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9954c87fb05a9954c8 /* src/unix/PsUnixSync.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSync.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSync.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9955307fb05a995530 /* src/unix/PsUnixThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixThread.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixThread.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9955987fb05a995598 /* src/unix/PsUnixTime.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixTime.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixTime.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed13dc907febed13dc90 /* PxFoundation */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxFoundation"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDec9942007febec994200 /* Px.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Px.h"; path = "../../../../PxShared/include/foundation/Px.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9942687febec994268 /* PxAllocatorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAllocatorCallback.h"; path = "../../../../PxShared/include/foundation/PxAllocatorCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9942d07febec9942d0 /* PxAssert.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAssert.h"; path = "../../../../PxShared/include/foundation/PxAssert.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9943387febec994338 /* PxBitAndData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBitAndData.h"; path = "../../../../PxShared/include/foundation/PxBitAndData.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9943a07febec9943a0 /* PxBounds3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBounds3.h"; path = "../../../../PxShared/include/foundation/PxBounds3.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9944087febec994408 /* PxErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrorCallback.h"; path = "../../../../PxShared/include/foundation/PxErrorCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9944707febec994470 /* PxErrors.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrors.h"; path = "../../../../PxShared/include/foundation/PxErrors.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9944d87febec9944d8 /* PxFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFlags.h"; path = "../../../../PxShared/include/foundation/PxFlags.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9945407febec994540 /* PxFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundation.h"; path = "../../../../PxShared/include/foundation/PxFoundation.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9945a87febec9945a8 /* PxFoundationVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundationVersion.h"; path = "../../../../PxShared/include/foundation/PxFoundationVersion.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9946107febec994610 /* PxIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIO.h"; path = "../../../../PxShared/include/foundation/PxIO.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9946787febec994678 /* PxIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIntrinsics.h"; path = "../../../../PxShared/include/foundation/PxIntrinsics.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9946e07febec9946e0 /* PxMat33.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat33.h"; path = "../../../../PxShared/include/foundation/PxMat33.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9947487febec994748 /* PxMat44.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat44.h"; path = "../../../../PxShared/include/foundation/PxMat44.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9947b07febec9947b0 /* PxMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMath.h"; path = "../../../../PxShared/include/foundation/PxMath.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9948187febec994818 /* PxMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMathUtils.h"; path = "../../../../PxShared/include/foundation/PxMathUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9948807febec994880 /* PxMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMemory.h"; path = "../../../../PxShared/include/foundation/PxMemory.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9948e87febec9948e8 /* PxPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPlane.h"; path = "../../../../PxShared/include/foundation/PxPlane.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9949507febec994950 /* PxPreprocessor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPreprocessor.h"; path = "../../../../PxShared/include/foundation/PxPreprocessor.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9949b87febec9949b8 /* PxProfiler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxProfiler.h"; path = "../../../../PxShared/include/foundation/PxProfiler.h"; sourceTree = SOURCE_ROOT; }; + FFFDec994a207febec994a20 /* PxQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQuat.h"; path = "../../../../PxShared/include/foundation/PxQuat.h"; sourceTree = SOURCE_ROOT; }; + FFFDec994a887febec994a88 /* PxSimpleTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleTypes.h"; path = "../../../../PxShared/include/foundation/PxSimpleTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFDec994af07febec994af0 /* PxStrideIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStrideIterator.h"; path = "../../../../PxShared/include/foundation/PxStrideIterator.h"; sourceTree = SOURCE_ROOT; }; + FFFDec994b587febec994b58 /* PxTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTransform.h"; path = "../../../../PxShared/include/foundation/PxTransform.h"; sourceTree = SOURCE_ROOT; }; + FFFDec994bc07febec994bc0 /* PxUnionCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxUnionCast.h"; path = "../../../../PxShared/include/foundation/PxUnionCast.h"; sourceTree = SOURCE_ROOT; }; + FFFDec994c287febec994c28 /* PxVec2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec2.h"; path = "../../../../PxShared/include/foundation/PxVec2.h"; sourceTree = SOURCE_ROOT; }; + FFFDec994c907febec994c90 /* PxVec3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec3.h"; path = "../../../../PxShared/include/foundation/PxVec3.h"; sourceTree = SOURCE_ROOT; }; + FFFDec994cf87febec994cf8 /* PxVec4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec4.h"; path = "../../../../PxShared/include/foundation/PxVec4.h"; sourceTree = SOURCE_ROOT; }; + FFFDec994d607febec994d60 /* unix/PxUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "unix/PxUnixIntrinsics.h"; path = "../../../../PxShared/include/foundation/unix/PxUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9826007febec982600 /* include/Ps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/Ps.h"; path = "../../../../PxShared/src/foundation/include/Ps.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9826687febec982668 /* include/PsAlignedMalloc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlignedMalloc.h"; path = "../../../../PxShared/src/foundation/include/PsAlignedMalloc.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9826d07febec9826d0 /* include/PsAlloca.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlloca.h"; path = "../../../../PxShared/src/foundation/include/PsAlloca.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9827387febec982738 /* include/PsAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9827a07febec9827a0 /* include/PsAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAoS.h"; path = "../../../../PxShared/src/foundation/include/PsAoS.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9828087febec982808 /* include/PsArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsArray.h"; path = "../../../../PxShared/src/foundation/include/PsArray.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9828707febec982870 /* include/PsAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAtomic.h"; path = "../../../../PxShared/src/foundation/include/PsAtomic.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9828d87febec9828d8 /* include/PsBasicTemplates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBasicTemplates.h"; path = "../../../../PxShared/src/foundation/include/PsBasicTemplates.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9829407febec982940 /* include/PsBitUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBitUtils.h"; path = "../../../../PxShared/src/foundation/include/PsBitUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9829a87febec9829a8 /* include/PsBroadcast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBroadcast.h"; path = "../../../../PxShared/src/foundation/include/PsBroadcast.h"; sourceTree = SOURCE_ROOT; }; + FFFDec982a107febec982a10 /* include/PsCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsCpu.h"; path = "../../../../PxShared/src/foundation/include/PsCpu.h"; sourceTree = SOURCE_ROOT; }; + FFFDec982a787febec982a78 /* include/PsFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFPU.h"; path = "../../../../PxShared/src/foundation/include/PsFPU.h"; sourceTree = SOURCE_ROOT; }; + FFFDec982ae07febec982ae0 /* include/PsFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFoundation.h"; path = "../../../../PxShared/src/foundation/include/PsFoundation.h"; sourceTree = SOURCE_ROOT; }; + FFFDec982b487febec982b48 /* include/PsHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHash.h"; path = "../../../../PxShared/src/foundation/include/PsHash.h"; sourceTree = SOURCE_ROOT; }; + FFFDec982bb07febec982bb0 /* include/PsHashInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashInternals.h"; path = "../../../../PxShared/src/foundation/include/PsHashInternals.h"; sourceTree = SOURCE_ROOT; }; + FFFDec982c187febec982c18 /* include/PsHashMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashMap.h"; path = "../../../../PxShared/src/foundation/include/PsHashMap.h"; sourceTree = SOURCE_ROOT; }; + FFFDec982c807febec982c80 /* include/PsHashSet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashSet.h"; path = "../../../../PxShared/src/foundation/include/PsHashSet.h"; sourceTree = SOURCE_ROOT; }; + FFFDec982ce87febec982ce8 /* include/PsInlineAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFDec982d507febec982d50 /* include/PsInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAoS.h"; sourceTree = SOURCE_ROOT; }; + FFFDec982db87febec982db8 /* include/PsInlineArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineArray.h"; path = "../../../../PxShared/src/foundation/include/PsInlineArray.h"; sourceTree = SOURCE_ROOT; }; + FFFDec982e207febec982e20 /* include/PsIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/PsIntrinsics.h"; sourceTree = SOURCE_ROOT; }; + FFFDec982e887febec982e88 /* include/PsMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMathUtils.h"; path = "../../../../PxShared/src/foundation/include/PsMathUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFDec982ef07febec982ef0 /* include/PsMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMutex.h"; path = "../../../../PxShared/src/foundation/include/PsMutex.h"; sourceTree = SOURCE_ROOT; }; + FFFDec982f587febec982f58 /* include/PsPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPool.h"; path = "../../../../PxShared/src/foundation/include/PsPool.h"; sourceTree = SOURCE_ROOT; }; + FFFDec982fc07febec982fc0 /* include/PsSList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSList.h"; path = "../../../../PxShared/src/foundation/include/PsSList.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9830287febec983028 /* include/PsSocket.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSocket.h"; path = "../../../../PxShared/src/foundation/include/PsSocket.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9830907febec983090 /* include/PsSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSort.h"; path = "../../../../PxShared/src/foundation/include/PsSort.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9830f87febec9830f8 /* include/PsSortInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSortInternals.h"; path = "../../../../PxShared/src/foundation/include/PsSortInternals.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9831607febec983160 /* include/PsString.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsString.h"; path = "../../../../PxShared/src/foundation/include/PsString.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9831c87febec9831c8 /* include/PsSync.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSync.h"; path = "../../../../PxShared/src/foundation/include/PsSync.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9832307febec983230 /* include/PsTempAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTempAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsTempAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9832987febec983298 /* include/PsThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsThread.h"; path = "../../../../PxShared/src/foundation/include/PsThread.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9833007febec983300 /* include/PsTime.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTime.h"; path = "../../../../PxShared/src/foundation/include/PsTime.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9833687febec983368 /* include/PsUserAllocated.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUserAllocated.h"; path = "../../../../PxShared/src/foundation/include/PsUserAllocated.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9833d07febec9833d0 /* include/PsUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsUtilities.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9834387febec983438 /* include/PsVecMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMath.h"; path = "../../../../PxShared/src/foundation/include/PsVecMath.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9834a07febec9834a0 /* include/PsVecMathAoSScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalar.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalar.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9835087febec983508 /* include/PsVecMathAoSScalarInline.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalarInline.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalarInline.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9835707febec983570 /* include/PsVecMathSSE.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathSSE.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathSSE.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9835d87febec9835d8 /* include/PsVecMathUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathUtilities.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9836407febec983640 /* include/PsVecQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecQuat.h"; path = "../../../../PxShared/src/foundation/include/PsVecQuat.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9836a87febec9836a8 /* include/PsVecTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecTransform.h"; path = "../../../../PxShared/src/foundation/include/PsVecTransform.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9837107febec983710 /* include/unix/PsUnixAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixAoS.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9837787febec983778 /* include/unix/PsUnixFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixFPU.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixFPU.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9837e07febec9837e0 /* include/unix/PsUnixInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixInlineAoS.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9838487febec983848 /* include/unix/PsUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9838b07febec9838b0 /* include/unix/PsUnixTrigConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixTrigConstants.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixTrigConstants.h"; sourceTree = SOURCE_ROOT; }; + FFFDec9839187febec983918 /* src/PsAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsAllocator.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec9839807febec983980 /* src/PsAssert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAssert.cpp"; path = "../../../../PxShared/src/foundation/src/PsAssert.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec9839e87febec9839e8 /* src/PsFoundation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsFoundation.cpp"; path = "../../../../PxShared/src/foundation/src/PsFoundation.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec983a507febec983a50 /* src/PsMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsMathUtils.cpp"; path = "../../../../PxShared/src/foundation/src/PsMathUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec983ab87febec983ab8 /* src/PsString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsString.cpp"; path = "../../../../PxShared/src/foundation/src/PsString.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec983b207febec983b20 /* src/PsTempAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsTempAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsTempAllocator.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec983b887febec983b88 /* src/PsUtilities.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsUtilities.cpp"; path = "../../../../PxShared/src/foundation/src/PsUtilities.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec983bf07febec983bf0 /* src/unix/PsUnixAtomic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixAtomic.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixAtomic.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec983c587febec983c58 /* src/unix/PsUnixCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixCpu.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixCpu.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec983cc07febec983cc0 /* src/unix/PsUnixFPU.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixFPU.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixFPU.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec983d287febec983d28 /* src/unix/PsUnixMutex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixMutex.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixMutex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec983d907febec983d90 /* src/unix/PsUnixPrintString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixPrintString.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixPrintString.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec983df87febec983df8 /* src/unix/PsUnixSList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSList.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSList.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec983e607febec983e60 /* src/unix/PsUnixSocket.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSocket.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSocket.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec983ec87febec983ec8 /* src/unix/PsUnixSync.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSync.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSync.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec983f307febec983f30 /* src/unix/PsUnixThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixThread.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixThread.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec983f987febec983f98 /* 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 */ - FFF25b080a507fb05b080a50 /* Resources */ = { + FFF2ed13dc907febed13dc90 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2123,7 +2123,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC5b080a507fb05b080a50 /* Frameworks */ = { + FFFCed13dc907febed13dc90 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2133,27 +2133,27 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF85b080a507fb05b080a50 /* Sources */ = { + FFF8ed13dc907febed13dc90 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF5a994f187fb05a994f18, - FFFF5a994f807fb05a994f80, - FFFF5a994fe87fb05a994fe8, - FFFF5a9950507fb05a995050, - FFFF5a9950b87fb05a9950b8, - FFFF5a9951207fb05a995120, - FFFF5a9951887fb05a995188, - FFFF5a9951f07fb05a9951f0, - FFFF5a9952587fb05a995258, - FFFF5a9952c07fb05a9952c0, - FFFF5a9953287fb05a995328, - FFFF5a9953907fb05a995390, - FFFF5a9953f87fb05a9953f8, - FFFF5a9954607fb05a995460, - FFFF5a9954c87fb05a9954c8, - FFFF5a9955307fb05a995530, - FFFF5a9955987fb05a995598, + FFFFec9839187febec983918, + FFFFec9839807febec983980, + FFFFec9839e87febec9839e8, + FFFFec983a507febec983a50, + FFFFec983ab87febec983ab8, + FFFFec983b207febec983b20, + FFFFec983b887febec983b88, + FFFFec983bf07febec983bf0, + FFFFec983c587febec983c58, + FFFFec983cc07febec983cc0, + FFFFec983d287febec983d28, + FFFFec983d907febec983d90, + FFFFec983df87febec983df8, + FFFFec983e607febec983e60, + FFFFec983ec87febec983ec8, + FFFFec983f307febec983f30, + FFFFec983f987febec983f98, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2165,103 +2165,103 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PxPvdSDK */ - FFFF5b81e9a87fb05b81e9a8 /* src/PxProfileEventImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b81e9a87fb05b81e9a8 /* src/PxProfileEventImpl.cpp */; }; - FFFF5b81ea107fb05b81ea10 /* src/PxPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b81ea107fb05b81ea10 /* src/PxPvd.cpp */; }; - FFFF5b81ea787fb05b81ea78 /* src/PxPvdDataStream.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b81ea787fb05b81ea78 /* src/PxPvdDataStream.cpp */; }; - FFFF5b81eae07fb05b81eae0 /* src/PxPvdDefaultFileTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b81eae07fb05b81eae0 /* src/PxPvdDefaultFileTransport.cpp */; }; - FFFF5b81eb487fb05b81eb48 /* src/PxPvdDefaultSocketTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b81eb487fb05b81eb48 /* src/PxPvdDefaultSocketTransport.cpp */; }; - FFFF5b81ebb07fb05b81ebb0 /* src/PxPvdImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b81ebb07fb05b81ebb0 /* src/PxPvdImpl.cpp */; }; - FFFF5b81ec187fb05b81ec18 /* src/PxPvdMemClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b81ec187fb05b81ec18 /* src/PxPvdMemClient.cpp */; }; - FFFF5b81ec807fb05b81ec80 /* src/PxPvdObjectModelMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b81ec807fb05b81ec80 /* src/PxPvdObjectModelMetaData.cpp */; }; - FFFF5b81ece87fb05b81ece8 /* src/PxPvdObjectRegistrar.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b81ece87fb05b81ece8 /* src/PxPvdObjectRegistrar.cpp */; }; - FFFF5b81ed507fb05b81ed50 /* src/PxPvdProfileZoneClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b81ed507fb05b81ed50 /* src/PxPvdProfileZoneClient.cpp */; }; - FFFF5b81edb87fb05b81edb8 /* src/PxPvdUserRenderer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b81edb87fb05b81edb8 /* src/PxPvdUserRenderer.cpp */; }; + FFFFec0203a87febec0203a8 /* src/PxProfileEventImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec0203a87febec0203a8 /* src/PxProfileEventImpl.cpp */; }; + FFFFec0204107febec020410 /* src/PxPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec0204107febec020410 /* src/PxPvd.cpp */; }; + FFFFec0204787febec020478 /* src/PxPvdDataStream.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec0204787febec020478 /* src/PxPvdDataStream.cpp */; }; + FFFFec0204e07febec0204e0 /* src/PxPvdDefaultFileTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec0204e07febec0204e0 /* src/PxPvdDefaultFileTransport.cpp */; }; + FFFFec0205487febec020548 /* src/PxPvdDefaultSocketTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec0205487febec020548 /* src/PxPvdDefaultSocketTransport.cpp */; }; + FFFFec0205b07febec0205b0 /* src/PxPvdImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec0205b07febec0205b0 /* src/PxPvdImpl.cpp */; }; + FFFFec0206187febec020618 /* src/PxPvdMemClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec0206187febec020618 /* src/PxPvdMemClient.cpp */; }; + FFFFec0206807febec020680 /* src/PxPvdObjectModelMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec0206807febec020680 /* src/PxPvdObjectModelMetaData.cpp */; }; + FFFFec0206e87febec0206e8 /* src/PxPvdObjectRegistrar.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec0206e87febec0206e8 /* src/PxPvdObjectRegistrar.cpp */; }; + FFFFec0207507febec020750 /* src/PxPvdProfileZoneClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec0207507febec020750 /* src/PxPvdProfileZoneClient.cpp */; }; + FFFFec0207b87febec0207b8 /* src/PxPvdUserRenderer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDec0207b87febec0207b8 /* src/PxPvdUserRenderer.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD5b4338707fb05b433870 /* PxPvdSDK */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxPvdSDK"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD5b4365307fb05b436530 /* PxPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvd.h"; path = "../../../../PxShared/include/pvd/PxPvd.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b4365987fb05b436598 /* PxPvdTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvdTransport.h"; path = "../../../../PxShared/include/pvd/PxPvdTransport.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b81e6007fb05b81e600 /* include/PsPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPvd.h"; path = "../../../../PxShared/src/pvd/include/PsPvd.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b81e6687fb05b81e668 /* include/PxProfileAllocatorWrapper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxProfileAllocatorWrapper.h"; path = "../../../../PxShared/src/pvd/include/PxProfileAllocatorWrapper.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b81e6d07fb05b81e6d0 /* include/PxPvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdClient.h"; path = "../../../../PxShared/src/pvd/include/PxPvdClient.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b81e7387fb05b81e738 /* include/PxPvdDataStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStream.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStream.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b81e7a07fb05b81e7a0 /* include/PxPvdDataStreamHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStreamHelpers.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStreamHelpers.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b81e8087fb05b81e808 /* include/PxPvdErrorCodes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdErrorCodes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdErrorCodes.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b81e8707fb05b81e870 /* include/PxPvdObjectModelBaseTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdObjectModelBaseTypes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdObjectModelBaseTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b81e8d87fb05b81e8d8 /* include/PxPvdRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdRenderBuffer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b81e9407fb05b81e940 /* include/PxPvdUserRenderer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdUserRenderer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdUserRenderer.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b81e9a87fb05b81e9a8 /* src/PxProfileEventImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxProfileEventImpl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b81ea107fb05b81ea10 /* src/PxPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvd.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvd.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b81ea787fb05b81ea78 /* src/PxPvdDataStream.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDataStream.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDataStream.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b81eae07fb05b81eae0 /* src/PxPvdDefaultFileTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b81eb487fb05b81eb48 /* src/PxPvdDefaultSocketTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b81ebb07fb05b81ebb0 /* src/PxPvdImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b81ec187fb05b81ec18 /* src/PxPvdMemClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b81ec807fb05b81ec80 /* src/PxPvdObjectModelMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b81ece87fb05b81ece8 /* src/PxPvdObjectRegistrar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b81ed507fb05b81ed50 /* src/PxPvdProfileZoneClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b81edb87fb05b81edb8 /* src/PxPvdUserRenderer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderer.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderer.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b81ee207fb05b81ee20 /* src/PxProfileBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileBase.h"; path = "../../../../PxShared/src/pvd/src/PxProfileBase.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b81ee887fb05b81ee88 /* src/PxProfileCompileTimeEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileCompileTimeEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileCompileTimeEventFilter.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b81eef07fb05b81eef0 /* src/PxProfileContextProvider.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProvider.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProvider.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b81ef587fb05b81ef58 /* src/PxProfileContextProviderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProviderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProviderImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b81efc07fb05b81efc0 /* src/PxProfileDataBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b81f0287fb05b81f028 /* src/PxProfileDataParsing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataParsing.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataParsing.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b81f0907fb05b81f090 /* src/PxProfileEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b81f0f87fb05b81f0f8 /* src/PxProfileEventBufferAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferAtomic.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferAtomic.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b81f1607fb05b81f160 /* src/PxProfileEventBufferClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClient.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClient.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b81f1c87fb05b81f1c8 /* src/PxProfileEventBufferClientManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClientManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClientManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b81f2307fb05b81f230 /* src/PxProfileEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventFilter.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b81f2987fb05b81f298 /* src/PxProfileEventHandler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventHandler.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventHandler.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b81f3007fb05b81f300 /* src/PxProfileEventId.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventId.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventId.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b81f3687fb05b81f368 /* src/PxProfileEventMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventMutex.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventMutex.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b81f3d07fb05b81f3d0 /* src/PxProfileEventNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventNames.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventNames.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b81f4387fb05b81f438 /* src/PxProfileEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventParser.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b81f4a07fb05b81f4a0 /* src/PxProfileEventSender.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSender.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSender.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b81f5087fb05b81f508 /* src/PxProfileEventSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSerialization.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSerialization.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b81f5707fb05b81f570 /* src/PxProfileEventSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSystem.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSystem.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b81f5d87fb05b81f5d8 /* src/PxProfileEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEvents.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b81f6407fb05b81f640 /* src/PxProfileMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemory.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemory.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b81f6a87fb05b81f6a8 /* src/PxProfileMemoryBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b81f7107fb05b81f710 /* src/PxProfileMemoryEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b81f7787fb05b81f778 /* src/PxProfileMemoryEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventParser.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b81f7e07fb05b81f7e0 /* src/PxProfileMemoryEventRecorder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventRecorder.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventRecorder.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b81f8487fb05b81f848 /* src/PxProfileMemoryEventReflexiveWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventReflexiveWriter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventReflexiveWriter.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b81f8b07fb05b81f8b0 /* src/PxProfileMemoryEventSummarizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventSummarizer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventSummarizer.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b81f9187fb05b81f918 /* src/PxProfileMemoryEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b81f9807fb05b81f980 /* src/PxProfileMemoryEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEvents.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b81f9e87fb05b81f9e8 /* src/PxProfileScopedEvent.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedEvent.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedEvent.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b81fa507fb05b81fa50 /* src/PxProfileScopedMutexLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedMutexLock.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedMutexLock.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b81fab87fb05b81fab8 /* src/PxProfileZone.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZone.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZone.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b81fb207fb05b81fb20 /* src/PxProfileZoneImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b81fb887fb05b81fb88 /* src/PxProfileZoneManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b81fbf07fb05b81fbf0 /* src/PxProfileZoneManagerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManagerImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManagerImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b81fc587fb05b81fc58 /* src/PxPvdBits.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdBits.h"; path = "../../../../PxShared/src/pvd/src/PxPvdBits.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b81fcc07fb05b81fcc0 /* src/PxPvdByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdByteStreams.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b81fd287fb05b81fd28 /* src/PxPvdCommStreamEventSink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEventSink.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEventSink.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b81fd907fb05b81fd90 /* src/PxPvdCommStreamEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEvents.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEvents.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b81fdf87fb05b81fdf8 /* src/PxPvdCommStreamSDKEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamSDKEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamSDKEventTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b81fe607fb05b81fe60 /* src/PxPvdCommStreamTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b81fec87fb05b81fec8 /* src/PxPvdDefaultFileTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b81ff307fb05b81ff30 /* src/PxPvdDefaultSocketTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b81ff987fb05b81ff98 /* src/PxPvdFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdFoundation.h"; path = "../../../../PxShared/src/pvd/src/PxPvdFoundation.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8200007fb05b820000 /* src/PxPvdImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8200687fb05b820068 /* src/PxPvdInternalByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdInternalByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdInternalByteStreams.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8200d07fb05b8200d0 /* src/PxPvdMarshalling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMarshalling.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMarshalling.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8201387fb05b820138 /* src/PxPvdMemClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8201a07fb05b8201a0 /* src/PxPvdObjectModel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModel.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModel.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8202087fb05b820208 /* src/PxPvdObjectModelInternalTypeDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypeDefs.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypeDefs.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8202707fb05b820270 /* src/PxPvdObjectModelInternalTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8202d87fb05b8202d8 /* src/PxPvdObjectModelMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8203407fb05b820340 /* src/PxPvdObjectRegistrar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8203a87fb05b8203a8 /* src/PxPvdProfileZoneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8204107fb05b820410 /* src/PxPvdUserRenderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8204787fb05b820478 /* src/PxPvdUserRenderTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFDebc7a0b07febebc7a0b0 /* PxPvdSDK */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxPvdSDK"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDebc806307febebc80630 /* PxPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvd.h"; path = "../../../../PxShared/include/pvd/PxPvd.h"; sourceTree = SOURCE_ROOT; }; + FFFDebc806987febebc80698 /* PxPvdTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvdTransport.h"; path = "../../../../PxShared/include/pvd/PxPvdTransport.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0200007febec020000 /* include/PsPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPvd.h"; path = "../../../../PxShared/src/pvd/include/PsPvd.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0200687febec020068 /* include/PxProfileAllocatorWrapper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxProfileAllocatorWrapper.h"; path = "../../../../PxShared/src/pvd/include/PxProfileAllocatorWrapper.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0200d07febec0200d0 /* include/PxPvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdClient.h"; path = "../../../../PxShared/src/pvd/include/PxPvdClient.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0201387febec020138 /* include/PxPvdDataStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStream.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStream.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0201a07febec0201a0 /* include/PxPvdDataStreamHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStreamHelpers.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStreamHelpers.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0202087febec020208 /* include/PxPvdErrorCodes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdErrorCodes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdErrorCodes.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0202707febec020270 /* include/PxPvdObjectModelBaseTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdObjectModelBaseTypes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdObjectModelBaseTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0202d87febec0202d8 /* include/PxPvdRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdRenderBuffer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0203407febec020340 /* include/PxPvdUserRenderer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdUserRenderer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdUserRenderer.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0203a87febec0203a8 /* src/PxProfileEventImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxProfileEventImpl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0204107febec020410 /* src/PxPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvd.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvd.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0204787febec020478 /* src/PxPvdDataStream.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDataStream.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDataStream.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0204e07febec0204e0 /* src/PxPvdDefaultFileTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0205487febec020548 /* src/PxPvdDefaultSocketTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0205b07febec0205b0 /* src/PxPvdImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0206187febec020618 /* src/PxPvdMemClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0206807febec020680 /* src/PxPvdObjectModelMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0206e87febec0206e8 /* src/PxPvdObjectRegistrar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0207507febec020750 /* src/PxPvdProfileZoneClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0207b87febec0207b8 /* src/PxPvdUserRenderer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderer.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderer.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0208207febec020820 /* src/PxProfileBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileBase.h"; path = "../../../../PxShared/src/pvd/src/PxProfileBase.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0208887febec020888 /* src/PxProfileCompileTimeEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileCompileTimeEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileCompileTimeEventFilter.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0208f07febec0208f0 /* src/PxProfileContextProvider.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProvider.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProvider.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0209587febec020958 /* src/PxProfileContextProviderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProviderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProviderImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0209c07febec0209c0 /* src/PxProfileDataBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFDec020a287febec020a28 /* src/PxProfileDataParsing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataParsing.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataParsing.h"; sourceTree = SOURCE_ROOT; }; + FFFDec020a907febec020a90 /* src/PxProfileEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFDec020af87febec020af8 /* src/PxProfileEventBufferAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferAtomic.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferAtomic.h"; sourceTree = SOURCE_ROOT; }; + FFFDec020b607febec020b60 /* src/PxProfileEventBufferClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClient.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClient.h"; sourceTree = SOURCE_ROOT; }; + FFFDec020bc87febec020bc8 /* src/PxProfileEventBufferClientManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClientManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClientManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDec020c307febec020c30 /* src/PxProfileEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventFilter.h"; sourceTree = SOURCE_ROOT; }; + FFFDec020c987febec020c98 /* src/PxProfileEventHandler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventHandler.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventHandler.h"; sourceTree = SOURCE_ROOT; }; + FFFDec020d007febec020d00 /* src/PxProfileEventId.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventId.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventId.h"; sourceTree = SOURCE_ROOT; }; + FFFDec020d687febec020d68 /* src/PxProfileEventMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventMutex.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventMutex.h"; sourceTree = SOURCE_ROOT; }; + FFFDec020dd07febec020dd0 /* src/PxProfileEventNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventNames.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventNames.h"; sourceTree = SOURCE_ROOT; }; + FFFDec020e387febec020e38 /* src/PxProfileEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventParser.h"; sourceTree = SOURCE_ROOT; }; + FFFDec020ea07febec020ea0 /* src/PxProfileEventSender.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSender.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSender.h"; sourceTree = SOURCE_ROOT; }; + FFFDec020f087febec020f08 /* src/PxProfileEventSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSerialization.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSerialization.h"; sourceTree = SOURCE_ROOT; }; + FFFDec020f707febec020f70 /* src/PxProfileEventSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSystem.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSystem.h"; sourceTree = SOURCE_ROOT; }; + FFFDec020fd87febec020fd8 /* src/PxProfileEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEvents.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0210407febec021040 /* src/PxProfileMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemory.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemory.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0210a87febec0210a8 /* src/PxProfileMemoryBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0211107febec021110 /* src/PxProfileMemoryEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0211787febec021178 /* src/PxProfileMemoryEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventParser.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0211e07febec0211e0 /* src/PxProfileMemoryEventRecorder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventRecorder.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventRecorder.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0212487febec021248 /* src/PxProfileMemoryEventReflexiveWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventReflexiveWriter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventReflexiveWriter.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0212b07febec0212b0 /* src/PxProfileMemoryEventSummarizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventSummarizer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventSummarizer.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0213187febec021318 /* src/PxProfileMemoryEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0213807febec021380 /* src/PxProfileMemoryEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEvents.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0213e87febec0213e8 /* src/PxProfileScopedEvent.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedEvent.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedEvent.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0214507febec021450 /* src/PxProfileScopedMutexLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedMutexLock.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedMutexLock.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0214b87febec0214b8 /* src/PxProfileZone.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZone.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZone.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0215207febec021520 /* src/PxProfileZoneImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0215887febec021588 /* src/PxProfileZoneManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0215f07febec0215f0 /* src/PxProfileZoneManagerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManagerImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManagerImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0216587febec021658 /* src/PxPvdBits.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdBits.h"; path = "../../../../PxShared/src/pvd/src/PxPvdBits.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0216c07febec0216c0 /* src/PxPvdByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdByteStreams.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0217287febec021728 /* src/PxPvdCommStreamEventSink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEventSink.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEventSink.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0217907febec021790 /* src/PxPvdCommStreamEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEvents.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEvents.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0217f87febec0217f8 /* src/PxPvdCommStreamSDKEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamSDKEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamSDKEventTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0218607febec021860 /* src/PxPvdCommStreamTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0218c87febec0218c8 /* src/PxPvdDefaultFileTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0219307febec021930 /* src/PxPvdDefaultSocketTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0219987febec021998 /* src/PxPvdFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdFoundation.h"; path = "../../../../PxShared/src/pvd/src/PxPvdFoundation.h"; sourceTree = SOURCE_ROOT; }; + FFFDec021a007febec021a00 /* src/PxPvdImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFDec021a687febec021a68 /* src/PxPvdInternalByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdInternalByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdInternalByteStreams.h"; sourceTree = SOURCE_ROOT; }; + FFFDec021ad07febec021ad0 /* src/PxPvdMarshalling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMarshalling.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMarshalling.h"; sourceTree = SOURCE_ROOT; }; + FFFDec021b387febec021b38 /* src/PxPvdMemClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.h"; sourceTree = SOURCE_ROOT; }; + FFFDec021ba07febec021ba0 /* src/PxPvdObjectModel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModel.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModel.h"; sourceTree = SOURCE_ROOT; }; + FFFDec021c087febec021c08 /* src/PxPvdObjectModelInternalTypeDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypeDefs.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypeDefs.h"; sourceTree = SOURCE_ROOT; }; + FFFDec021c707febec021c70 /* src/PxPvdObjectModelInternalTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFDec021cd87febec021cd8 /* src/PxPvdObjectModelMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.h"; sourceTree = SOURCE_ROOT; }; + FFFDec021d407febec021d40 /* src/PxPvdObjectRegistrar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.h"; sourceTree = SOURCE_ROOT; }; + FFFDec021da87febec021da8 /* src/PxPvdProfileZoneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.h"; sourceTree = SOURCE_ROOT; }; + FFFDec021e107febec021e10 /* src/PxPvdUserRenderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFDec021e787febec021e78 /* 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 */ - FFF25b4338707fb05b433870 /* Resources */ = { + FFF2ebc7a0b07febebc7a0b0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2271,7 +2271,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC5b4338707fb05b433870 /* Frameworks */ = { + FFFCebc7a0b07febebc7a0b0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2281,21 +2281,21 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF85b4338707fb05b433870 /* Sources */ = { + FFF8ebc7a0b07febebc7a0b0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF5b81e9a87fb05b81e9a8, - FFFF5b81ea107fb05b81ea10, - FFFF5b81ea787fb05b81ea78, - FFFF5b81eae07fb05b81eae0, - FFFF5b81eb487fb05b81eb48, - FFFF5b81ebb07fb05b81ebb0, - FFFF5b81ec187fb05b81ec18, - FFFF5b81ec807fb05b81ec80, - FFFF5b81ece87fb05b81ece8, - FFFF5b81ed507fb05b81ed50, - FFFF5b81edb87fb05b81edb8, + FFFFec0203a87febec0203a8, + FFFFec0204107febec020410, + FFFFec0204787febec020478, + FFFFec0204e07febec0204e0, + FFFFec0205487febec020548, + FFFFec0205b07febec0205b0, + FFFFec0206187febec020618, + FFFFec0206807febec020680, + FFFFec0206e87febec0206e8, + FFFFec0207507febec020750, + FFFFec0207b87febec0207b8, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2304,108 +2304,108 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF45b4340307fb05b434030 /* PBXTargetDependency */ = { + FFF4ebc786807febebc78680 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA5b080a507fb05b080a50 /* PxFoundation */; - targetProxy = FFF55b080a507fb05b080a50 /* PBXContainerItemProxy */; + target = FFFAed13dc907febed13dc90 /* PxFoundation */; + targetProxy = FFF5ed13dc907febed13dc90 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of LowLevel */ - FFFF5b30b4307fb05b30b430 /* px_globals.cpp in API Source */= { isa = PBXBuildFile; fileRef = FFFD5b30b4307fb05b30b430 /* px_globals.cpp */; }; - FFFF5b30dd107fb05b30dd10 /* PxsCCD.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD5b30dd107fb05b30dd10 /* PxsCCD.cpp */; }; - FFFF5b30dd787fb05b30dd78 /* PxsContactManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD5b30dd787fb05b30dd78 /* PxsContactManager.cpp */; }; - FFFF5b30dde07fb05b30dde0 /* PxsContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD5b30dde07fb05b30dde0 /* PxsContext.cpp */; }; - FFFF5b30de487fb05b30de48 /* PxsDefaultMemoryManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD5b30de487fb05b30de48 /* PxsDefaultMemoryManager.cpp */; }; - FFFF5b30deb07fb05b30deb0 /* PxsIslandSim.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD5b30deb07fb05b30deb0 /* PxsIslandSim.cpp */; }; - FFFF5b30df187fb05b30df18 /* PxsMaterialCombiner.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD5b30df187fb05b30df18 /* PxsMaterialCombiner.cpp */; }; - FFFF5b30df807fb05b30df80 /* PxsNphaseImplementationContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD5b30df807fb05b30df80 /* PxsNphaseImplementationContext.cpp */; }; - FFFF5b30dfe87fb05b30dfe8 /* PxsSimpleIslandManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD5b30dfe87fb05b30dfe8 /* PxsSimpleIslandManager.cpp */; }; - FFFF5a9a08007fb05a9a0800 /* collision/PxcContact.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD5a9a08007fb05a9a0800 /* collision/PxcContact.cpp */; }; - FFFF5a9a08687fb05a9a0868 /* pipeline/PxcContactCache.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD5a9a08687fb05a9a0868 /* pipeline/PxcContactCache.cpp */; }; - FFFF5a9a08d07fb05a9a08d0 /* pipeline/PxcContactMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD5a9a08d07fb05a9a08d0 /* pipeline/PxcContactMethodImpl.cpp */; }; - FFFF5a9a09387fb05a9a0938 /* pipeline/PxcMaterialHeightField.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD5a9a09387fb05a9a0938 /* pipeline/PxcMaterialHeightField.cpp */; }; - FFFF5a9a09a07fb05a9a09a0 /* pipeline/PxcMaterialMesh.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD5a9a09a07fb05a9a09a0 /* pipeline/PxcMaterialMesh.cpp */; }; - FFFF5a9a0a087fb05a9a0a08 /* pipeline/PxcMaterialMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD5a9a0a087fb05a9a0a08 /* pipeline/PxcMaterialMethodImpl.cpp */; }; - FFFF5a9a0a707fb05a9a0a70 /* pipeline/PxcMaterialShape.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD5a9a0a707fb05a9a0a70 /* pipeline/PxcMaterialShape.cpp */; }; - FFFF5a9a0ad87fb05a9a0ad8 /* pipeline/PxcNpBatch.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD5a9a0ad87fb05a9a0ad8 /* pipeline/PxcNpBatch.cpp */; }; - FFFF5a9a0b407fb05a9a0b40 /* pipeline/PxcNpCacheStreamPair.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD5a9a0b407fb05a9a0b40 /* pipeline/PxcNpCacheStreamPair.cpp */; }; - FFFF5a9a0ba87fb05a9a0ba8 /* pipeline/PxcNpContactPrepShared.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD5a9a0ba87fb05a9a0ba8 /* pipeline/PxcNpContactPrepShared.cpp */; }; - FFFF5a9a0c107fb05a9a0c10 /* pipeline/PxcNpMemBlockPool.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD5a9a0c107fb05a9a0c10 /* pipeline/PxcNpMemBlockPool.cpp */; }; - FFFF5a9a0c787fb05a9a0c78 /* pipeline/PxcNpThreadContext.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD5a9a0c787fb05a9a0c78 /* pipeline/PxcNpThreadContext.cpp */; }; + FFFFebe5f4d07febebe5f4d0 /* px_globals.cpp in API Source */= { isa = PBXBuildFile; fileRef = FFFDebe5f4d07febebe5f4d0 /* px_globals.cpp */; }; + FFFFebc6c0407febebc6c040 /* PxsCCD.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDebc6c0407febebc6c040 /* PxsCCD.cpp */; }; + FFFFebc6c0a87febebc6c0a8 /* PxsContactManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDebc6c0a87febebc6c0a8 /* PxsContactManager.cpp */; }; + FFFFebc6c1107febebc6c110 /* PxsContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDebc6c1107febebc6c110 /* PxsContext.cpp */; }; + FFFFebc6c1787febebc6c178 /* PxsDefaultMemoryManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDebc6c1787febebc6c178 /* PxsDefaultMemoryManager.cpp */; }; + FFFFebc6c1e07febebc6c1e0 /* PxsIslandSim.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDebc6c1e07febebc6c1e0 /* PxsIslandSim.cpp */; }; + FFFFebc6c2487febebc6c248 /* PxsMaterialCombiner.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDebc6c2487febebc6c248 /* PxsMaterialCombiner.cpp */; }; + FFFFebc6c2b07febebc6c2b0 /* PxsNphaseImplementationContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDebc6c2b07febebc6c2b0 /* PxsNphaseImplementationContext.cpp */; }; + FFFFebc6c3187febebc6c318 /* PxsSimpleIslandManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDebc6c3187febebc6c318 /* PxsSimpleIslandManager.cpp */; }; + FFFFec01e4007febec01e400 /* collision/PxcContact.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDec01e4007febec01e400 /* collision/PxcContact.cpp */; }; + FFFFec01e4687febec01e468 /* pipeline/PxcContactCache.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDec01e4687febec01e468 /* pipeline/PxcContactCache.cpp */; }; + FFFFec01e4d07febec01e4d0 /* pipeline/PxcContactMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDec01e4d07febec01e4d0 /* pipeline/PxcContactMethodImpl.cpp */; }; + FFFFec01e5387febec01e538 /* pipeline/PxcMaterialHeightField.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDec01e5387febec01e538 /* pipeline/PxcMaterialHeightField.cpp */; }; + FFFFec01e5a07febec01e5a0 /* pipeline/PxcMaterialMesh.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDec01e5a07febec01e5a0 /* pipeline/PxcMaterialMesh.cpp */; }; + FFFFec01e6087febec01e608 /* pipeline/PxcMaterialMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDec01e6087febec01e608 /* pipeline/PxcMaterialMethodImpl.cpp */; }; + FFFFec01e6707febec01e670 /* pipeline/PxcMaterialShape.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDec01e6707febec01e670 /* pipeline/PxcMaterialShape.cpp */; }; + FFFFec01e6d87febec01e6d8 /* pipeline/PxcNpBatch.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDec01e6d87febec01e6d8 /* pipeline/PxcNpBatch.cpp */; }; + FFFFec01e7407febec01e740 /* pipeline/PxcNpCacheStreamPair.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDec01e7407febec01e740 /* pipeline/PxcNpCacheStreamPair.cpp */; }; + FFFFec01e7a87febec01e7a8 /* pipeline/PxcNpContactPrepShared.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDec01e7a87febec01e7a8 /* pipeline/PxcNpContactPrepShared.cpp */; }; + FFFFec01e8107febec01e810 /* pipeline/PxcNpMemBlockPool.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDec01e8107febec01e810 /* pipeline/PxcNpMemBlockPool.cpp */; }; + FFFFec01e8787febec01e878 /* pipeline/PxcNpThreadContext.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDec01e8787febec01e878 /* pipeline/PxcNpThreadContext.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD5b308fd07fb05b308fd0 /* LowLevel */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevel"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD5b30b4307fb05b30b430 /* px_globals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "px_globals.cpp"; path = "../../LowLevel/API/src/px_globals.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b30cb307fb05b30cb30 /* PxsMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCore.h"; path = "../../LowLevel/API/include/PxsMaterialCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b30cb987fb05b30cb98 /* PxsMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialManager.h"; path = "../../LowLevel/API/include/PxsMaterialManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b30cc007fb05b30cc00 /* PxvConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvConfig.h"; path = "../../LowLevel/API/include/PxvConfig.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b30cc687fb05b30cc68 /* PxvContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvContext.h"; path = "../../LowLevel/API/include/PxvContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b30ccd07fb05b30ccd0 /* PxvDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvDynamics.h"; path = "../../LowLevel/API/include/PxvDynamics.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b30cd387fb05b30cd38 /* PxvGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGeometry.h"; path = "../../LowLevel/API/include/PxvGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b30cda07fb05b30cda0 /* PxvGlobals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGlobals.h"; path = "../../LowLevel/API/include/PxvGlobals.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b30ce087fb05b30ce08 /* PxvManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvManager.h"; path = "../../LowLevel/API/include/PxvManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b30ce707fb05b30ce70 /* PxvSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvSimStats.h"; path = "../../LowLevel/API/include/PxvSimStats.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b30dd107fb05b30dd10 /* PxsCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.cpp"; path = "../../LowLevel/software/src/PxsCCD.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b30dd787fb05b30dd78 /* PxsContactManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.cpp"; path = "../../LowLevel/software/src/PxsContactManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b30dde07fb05b30dde0 /* PxsContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.cpp"; path = "../../LowLevel/software/src/PxsContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b30de487fb05b30de48 /* PxsDefaultMemoryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.cpp"; path = "../../LowLevel/software/src/PxsDefaultMemoryManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b30deb07fb05b30deb0 /* PxsIslandSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.cpp"; path = "../../LowLevel/software/src/PxsIslandSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b30df187fb05b30df18 /* PxsMaterialCombiner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.cpp"; path = "../../LowLevel/software/src/PxsMaterialCombiner.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b30df807fb05b30df80 /* PxsNphaseImplementationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.cpp"; path = "../../LowLevel/software/src/PxsNphaseImplementationContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b30dfe87fb05b30dfe8 /* PxsSimpleIslandManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.cpp"; path = "../../LowLevel/software/src/PxsSimpleIslandManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ad6007fb05a9ad600 /* PxsBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsBodySim.h"; path = "../../LowLevel/software/include/PxsBodySim.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ad6687fb05a9ad668 /* PxsCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.h"; path = "../../LowLevel/software/include/PxsCCD.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ad6d07fb05a9ad6d0 /* PxsContactManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.h"; path = "../../LowLevel/software/include/PxsContactManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ad7387fb05a9ad738 /* PxsContactManagerState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManagerState.h"; path = "../../LowLevel/software/include/PxsContactManagerState.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ad7a07fb05a9ad7a0 /* PxsContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.h"; path = "../../LowLevel/software/include/PxsContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ad8087fb05a9ad808 /* PxsDefaultMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.h"; path = "../../LowLevel/software/include/PxsDefaultMemoryManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ad8707fb05a9ad870 /* PxsHeapMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsHeapMemoryAllocator.h"; path = "../../LowLevel/software/include/PxsHeapMemoryAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ad8d87fb05a9ad8d8 /* PxsIncrementalConstraintPartitioning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIncrementalConstraintPartitioning.h"; path = "../../LowLevel/software/include/PxsIncrementalConstraintPartitioning.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ad9407fb05a9ad940 /* PxsIslandManagerTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandManagerTypes.h"; path = "../../LowLevel/software/include/PxsIslandManagerTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ad9a87fb05a9ad9a8 /* PxsIslandSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.h"; path = "../../LowLevel/software/include/PxsIslandSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ada107fb05a9ada10 /* PxsKernelWrangler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsKernelWrangler.h"; path = "../../LowLevel/software/include/PxsKernelWrangler.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ada787fb05a9ada78 /* PxsMaterialCombiner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.h"; path = "../../LowLevel/software/include/PxsMaterialCombiner.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9adae07fb05a9adae0 /* PxsMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMemoryManager.h"; path = "../../LowLevel/software/include/PxsMemoryManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9adb487fb05a9adb48 /* PxsNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxsNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9adbb07fb05a9adbb0 /* PxsRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsRigidBody.h"; path = "../../LowLevel/software/include/PxsRigidBody.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9adc187fb05a9adc18 /* PxsShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsShapeSim.h"; path = "../../LowLevel/software/include/PxsShapeSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9adc807fb05a9adc80 /* PxsSimpleIslandManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.h"; path = "../../LowLevel/software/include/PxsSimpleIslandManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9adce87fb05a9adce8 /* PxsSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimulationController.h"; path = "../../LowLevel/software/include/PxsSimulationController.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9add507fb05a9add50 /* PxsTransformCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsTransformCache.h"; path = "../../LowLevel/software/include/PxsTransformCache.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9addb87fb05a9addb8 /* PxvNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxvNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a08007fb05a9a0800 /* collision/PxcContact.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContact.cpp"; path = "../../LowLevel/common/src/collision/PxcContact.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a08687fb05a9a0868 /* pipeline/PxcContactCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactCache.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a08d07fb05a9a08d0 /* pipeline/PxcContactMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactMethodImpl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a09387fb05a9a0938 /* pipeline/PxcMaterialHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialHeightField.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a09a07fb05a9a09a0 /* pipeline/PxcMaterialMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMesh.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a0a087fb05a9a0a08 /* pipeline/PxcMaterialMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMethodImpl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a0a707fb05a9a0a70 /* pipeline/PxcMaterialShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialShape.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialShape.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a0ad87fb05a9a0ad8 /* pipeline/PxcNpBatch.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpBatch.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a0b407fb05a9a0b40 /* pipeline/PxcNpCacheStreamPair.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpCacheStreamPair.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a0ba87fb05a9a0ba8 /* pipeline/PxcNpContactPrepShared.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpContactPrepShared.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a0c107fb05a9a0c10 /* pipeline/PxcNpMemBlockPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpMemBlockPool.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9a0c787fb05a9a0c78 /* pipeline/PxcNpThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpThreadContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ac8007fb05a9ac800 /* collision/PxcContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContactMethodImpl.h"; path = "../../LowLevel/common/include/collision/PxcContactMethodImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ac8687fb05a9ac868 /* pipeline/PxcCCDStateStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcCCDStateStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcCCDStateStreamPair.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ac8d07fb05a9ac8d0 /* pipeline/PxcConstraintBlockStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcConstraintBlockStream.h"; path = "../../LowLevel/common/include/pipeline/PxcConstraintBlockStream.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ac9387fb05a9ac938 /* pipeline/PxcContactCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.h"; path = "../../LowLevel/common/include/pipeline/PxcContactCache.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ac9a07fb05a9ac9a0 /* pipeline/PxcMaterialMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.h"; path = "../../LowLevel/common/include/pipeline/PxcMaterialMethodImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9aca087fb05a9aca08 /* pipeline/PxcNpBatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.h"; path = "../../LowLevel/common/include/pipeline/PxcNpBatch.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9aca707fb05a9aca70 /* pipeline/PxcNpCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCache.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCache.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9acad87fb05a9acad8 /* pipeline/PxcNpCacheStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCacheStreamPair.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9acb407fb05a9acb40 /* pipeline/PxcNpContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.h"; path = "../../LowLevel/common/include/pipeline/PxcNpContactPrepShared.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9acba87fb05a9acba8 /* pipeline/PxcNpMemBlockPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.h"; path = "../../LowLevel/common/include/pipeline/PxcNpMemBlockPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9acc107fb05a9acc10 /* pipeline/PxcNpThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.h"; path = "../../LowLevel/common/include/pipeline/PxcNpThreadContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9acc787fb05a9acc78 /* pipeline/PxcNpWorkUnit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpWorkUnit.h"; path = "../../LowLevel/common/include/pipeline/PxcNpWorkUnit.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9acce07fb05a9acce0 /* pipeline/PxcRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcRigidBody.h"; path = "../../LowLevel/common/include/pipeline/PxcRigidBody.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9acd487fb05a9acd48 /* utils/PxcScratchAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "utils/PxcScratchAllocator.h"; path = "../../LowLevel/common/include/utils/PxcScratchAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9acdb07fb05a9acdb0 /* utils/PxcThreadCoherentCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "utils/PxcThreadCoherentCache.h"; path = "../../LowLevel/common/include/utils/PxcThreadCoherentCache.h"; sourceTree = SOURCE_ROOT; }; + FFFDebe3bcb07febebe3bcb0 /* LowLevel */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevel"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDebe5f4d07febebe5f4d0 /* px_globals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "px_globals.cpp"; path = "../../LowLevel/API/src/px_globals.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDebc5dba07febebc5dba0 /* PxsMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCore.h"; path = "../../LowLevel/API/include/PxsMaterialCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDebc5dc087febebc5dc08 /* PxsMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialManager.h"; path = "../../LowLevel/API/include/PxsMaterialManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDebc5dc707febebc5dc70 /* PxvConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvConfig.h"; path = "../../LowLevel/API/include/PxvConfig.h"; sourceTree = SOURCE_ROOT; }; + FFFDebc5dcd87febebc5dcd8 /* PxvContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvContext.h"; path = "../../LowLevel/API/include/PxvContext.h"; sourceTree = SOURCE_ROOT; }; + FFFDebc5dd407febebc5dd40 /* PxvDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvDynamics.h"; path = "../../LowLevel/API/include/PxvDynamics.h"; sourceTree = SOURCE_ROOT; }; + FFFDebc5dda87febebc5dda8 /* PxvGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGeometry.h"; path = "../../LowLevel/API/include/PxvGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFDebc5de107febebc5de10 /* PxvGlobals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGlobals.h"; path = "../../LowLevel/API/include/PxvGlobals.h"; sourceTree = SOURCE_ROOT; }; + FFFDebc5de787febebc5de78 /* PxvManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvManager.h"; path = "../../LowLevel/API/include/PxvManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDebc5dee07febebc5dee0 /* PxvSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvSimStats.h"; path = "../../LowLevel/API/include/PxvSimStats.h"; sourceTree = SOURCE_ROOT; }; + FFFDebc6c0407febebc6c040 /* PxsCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.cpp"; path = "../../LowLevel/software/src/PxsCCD.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDebc6c0a87febebc6c0a8 /* PxsContactManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.cpp"; path = "../../LowLevel/software/src/PxsContactManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDebc6c1107febebc6c110 /* PxsContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.cpp"; path = "../../LowLevel/software/src/PxsContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDebc6c1787febebc6c178 /* PxsDefaultMemoryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.cpp"; path = "../../LowLevel/software/src/PxsDefaultMemoryManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDebc6c1e07febebc6c1e0 /* PxsIslandSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.cpp"; path = "../../LowLevel/software/src/PxsIslandSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDebc6c2487febebc6c248 /* PxsMaterialCombiner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.cpp"; path = "../../LowLevel/software/src/PxsMaterialCombiner.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDebc6c2b07febebc6c2b0 /* PxsNphaseImplementationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.cpp"; path = "../../LowLevel/software/src/PxsNphaseImplementationContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDebc6c3187febebc6c318 /* PxsSimpleIslandManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.cpp"; path = "../../LowLevel/software/src/PxsSimpleIslandManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec029a007febec029a00 /* PxsBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsBodySim.h"; path = "../../LowLevel/software/include/PxsBodySim.h"; sourceTree = SOURCE_ROOT; }; + FFFDec029a687febec029a68 /* PxsCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.h"; path = "../../LowLevel/software/include/PxsCCD.h"; sourceTree = SOURCE_ROOT; }; + FFFDec029ad07febec029ad0 /* PxsContactManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.h"; path = "../../LowLevel/software/include/PxsContactManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDec029b387febec029b38 /* PxsContactManagerState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManagerState.h"; path = "../../LowLevel/software/include/PxsContactManagerState.h"; sourceTree = SOURCE_ROOT; }; + FFFDec029ba07febec029ba0 /* PxsContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.h"; path = "../../LowLevel/software/include/PxsContext.h"; sourceTree = SOURCE_ROOT; }; + FFFDec029c087febec029c08 /* PxsDefaultMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.h"; path = "../../LowLevel/software/include/PxsDefaultMemoryManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDec029c707febec029c70 /* PxsHeapMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsHeapMemoryAllocator.h"; path = "../../LowLevel/software/include/PxsHeapMemoryAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFDec029cd87febec029cd8 /* PxsIncrementalConstraintPartitioning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIncrementalConstraintPartitioning.h"; path = "../../LowLevel/software/include/PxsIncrementalConstraintPartitioning.h"; sourceTree = SOURCE_ROOT; }; + FFFDec029d407febec029d40 /* PxsIslandManagerTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandManagerTypes.h"; path = "../../LowLevel/software/include/PxsIslandManagerTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFDec029da87febec029da8 /* PxsIslandSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.h"; path = "../../LowLevel/software/include/PxsIslandSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDec029e107febec029e10 /* PxsKernelWrangler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsKernelWrangler.h"; path = "../../LowLevel/software/include/PxsKernelWrangler.h"; sourceTree = SOURCE_ROOT; }; + FFFDec029e787febec029e78 /* PxsMaterialCombiner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.h"; path = "../../LowLevel/software/include/PxsMaterialCombiner.h"; sourceTree = SOURCE_ROOT; }; + FFFDec029ee07febec029ee0 /* PxsMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMemoryManager.h"; path = "../../LowLevel/software/include/PxsMemoryManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDec029f487febec029f48 /* PxsNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxsNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; }; + FFFDec029fb07febec029fb0 /* PxsRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsRigidBody.h"; path = "../../LowLevel/software/include/PxsRigidBody.h"; sourceTree = SOURCE_ROOT; }; + FFFDec02a0187febec02a018 /* PxsShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsShapeSim.h"; path = "../../LowLevel/software/include/PxsShapeSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDec02a0807febec02a080 /* PxsSimpleIslandManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.h"; path = "../../LowLevel/software/include/PxsSimpleIslandManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDec02a0e87febec02a0e8 /* PxsSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimulationController.h"; path = "../../LowLevel/software/include/PxsSimulationController.h"; sourceTree = SOURCE_ROOT; }; + FFFDec02a1507febec02a150 /* PxsTransformCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsTransformCache.h"; path = "../../LowLevel/software/include/PxsTransformCache.h"; sourceTree = SOURCE_ROOT; }; + FFFDec02a1b87febec02a1b8 /* PxvNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxvNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; }; + FFFDec01e4007febec01e400 /* collision/PxcContact.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContact.cpp"; path = "../../LowLevel/common/src/collision/PxcContact.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec01e4687febec01e468 /* pipeline/PxcContactCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactCache.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec01e4d07febec01e4d0 /* pipeline/PxcContactMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactMethodImpl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec01e5387febec01e538 /* pipeline/PxcMaterialHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialHeightField.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec01e5a07febec01e5a0 /* pipeline/PxcMaterialMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMesh.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec01e6087febec01e608 /* pipeline/PxcMaterialMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMethodImpl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec01e6707febec01e670 /* pipeline/PxcMaterialShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialShape.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialShape.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec01e6d87febec01e6d8 /* pipeline/PxcNpBatch.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpBatch.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec01e7407febec01e740 /* pipeline/PxcNpCacheStreamPair.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpCacheStreamPair.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec01e7a87febec01e7a8 /* pipeline/PxcNpContactPrepShared.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpContactPrepShared.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec01e8107febec01e810 /* pipeline/PxcNpMemBlockPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpMemBlockPool.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec01e8787febec01e878 /* pipeline/PxcNpThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpThreadContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec028c007febec028c00 /* collision/PxcContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContactMethodImpl.h"; path = "../../LowLevel/common/include/collision/PxcContactMethodImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFDec028c687febec028c68 /* pipeline/PxcCCDStateStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcCCDStateStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcCCDStateStreamPair.h"; sourceTree = SOURCE_ROOT; }; + FFFDec028cd07febec028cd0 /* pipeline/PxcConstraintBlockStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcConstraintBlockStream.h"; path = "../../LowLevel/common/include/pipeline/PxcConstraintBlockStream.h"; sourceTree = SOURCE_ROOT; }; + FFFDec028d387febec028d38 /* pipeline/PxcContactCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.h"; path = "../../LowLevel/common/include/pipeline/PxcContactCache.h"; sourceTree = SOURCE_ROOT; }; + FFFDec028da07febec028da0 /* pipeline/PxcMaterialMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.h"; path = "../../LowLevel/common/include/pipeline/PxcMaterialMethodImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFDec028e087febec028e08 /* pipeline/PxcNpBatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.h"; path = "../../LowLevel/common/include/pipeline/PxcNpBatch.h"; sourceTree = SOURCE_ROOT; }; + FFFDec028e707febec028e70 /* pipeline/PxcNpCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCache.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCache.h"; sourceTree = SOURCE_ROOT; }; + FFFDec028ed87febec028ed8 /* pipeline/PxcNpCacheStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCacheStreamPair.h"; sourceTree = SOURCE_ROOT; }; + FFFDec028f407febec028f40 /* pipeline/PxcNpContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.h"; path = "../../LowLevel/common/include/pipeline/PxcNpContactPrepShared.h"; sourceTree = SOURCE_ROOT; }; + FFFDec028fa87febec028fa8 /* pipeline/PxcNpMemBlockPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.h"; path = "../../LowLevel/common/include/pipeline/PxcNpMemBlockPool.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0290107febec029010 /* pipeline/PxcNpThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.h"; path = "../../LowLevel/common/include/pipeline/PxcNpThreadContext.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0290787febec029078 /* pipeline/PxcNpWorkUnit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpWorkUnit.h"; path = "../../LowLevel/common/include/pipeline/PxcNpWorkUnit.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0290e07febec0290e0 /* pipeline/PxcRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcRigidBody.h"; path = "../../LowLevel/common/include/pipeline/PxcRigidBody.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0291487febec029148 /* utils/PxcScratchAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "utils/PxcScratchAllocator.h"; path = "../../LowLevel/common/include/utils/PxcScratchAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0291b07febec0291b0 /* 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 */ - FFF25b308fd07fb05b308fd0 /* Resources */ = { + FFF2ebe3bcb07febebe3bcb0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2415,7 +2415,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC5b308fd07fb05b308fd0 /* Frameworks */ = { + FFFCebe3bcb07febebe3bcb0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2425,31 +2425,31 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF85b308fd07fb05b308fd0 /* Sources */ = { + FFF8ebe3bcb07febebe3bcb0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF5b30b4307fb05b30b430, - FFFF5b30dd107fb05b30dd10, - FFFF5b30dd787fb05b30dd78, - FFFF5b30dde07fb05b30dde0, - FFFF5b30de487fb05b30de48, - FFFF5b30deb07fb05b30deb0, - FFFF5b30df187fb05b30df18, - FFFF5b30df807fb05b30df80, - FFFF5b30dfe87fb05b30dfe8, - FFFF5a9a08007fb05a9a0800, - FFFF5a9a08687fb05a9a0868, - FFFF5a9a08d07fb05a9a08d0, - FFFF5a9a09387fb05a9a0938, - FFFF5a9a09a07fb05a9a09a0, - FFFF5a9a0a087fb05a9a0a08, - FFFF5a9a0a707fb05a9a0a70, - FFFF5a9a0ad87fb05a9a0ad8, - FFFF5a9a0b407fb05a9a0b40, - FFFF5a9a0ba87fb05a9a0ba8, - FFFF5a9a0c107fb05a9a0c10, - FFFF5a9a0c787fb05a9a0c78, + FFFFebe5f4d07febebe5f4d0, + FFFFebc6c0407febebc6c040, + FFFFebc6c0a87febebc6c0a8, + FFFFebc6c1107febebc6c110, + FFFFebc6c1787febebc6c178, + FFFFebc6c1e07febebc6c1e0, + FFFFebc6c2487febebc6c248, + FFFFebc6c2b07febebc6c2b0, + FFFFebc6c3187febebc6c318, + FFFFec01e4007febec01e400, + FFFFec01e4687febec01e468, + FFFFec01e4d07febec01e4d0, + FFFFec01e5387febec01e538, + FFFFec01e5a07febec01e5a0, + FFFFec01e6087febec01e608, + FFFFec01e6707febec01e670, + FFFFec01e6d87febec01e6d8, + FFFFec01e7407febec01e740, + FFFFec01e7a87febec01e7a8, + FFFFec01e8107febec01e810, + FFFFec01e8787febec01e878, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2461,38 +2461,38 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of LowLevelAABB */ - FFFF5d0014707fb05d001470 /* BpBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5d0014707fb05d001470 /* BpBroadPhase.cpp */; }; - FFFF5d0014d87fb05d0014d8 /* BpBroadPhaseMBP.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5d0014d87fb05d0014d8 /* BpBroadPhaseMBP.cpp */; }; - FFFF5d0015407fb05d001540 /* BpBroadPhaseSap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5d0015407fb05d001540 /* BpBroadPhaseSap.cpp */; }; - FFFF5d0015a87fb05d0015a8 /* BpBroadPhaseSapAux.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5d0015a87fb05d0015a8 /* BpBroadPhaseSapAux.cpp */; }; - FFFF5d0016107fb05d001610 /* BpMBPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5d0016107fb05d001610 /* BpMBPTasks.cpp */; }; - FFFF5d0016787fb05d001678 /* BpSAPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5d0016787fb05d001678 /* BpSAPTasks.cpp */; }; - FFFF5d0016e07fb05d0016e0 /* BpSimpleAABBManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5d0016e07fb05d0016e0 /* BpSimpleAABBManager.cpp */; }; + FFFFed818a707febed818a70 /* BpBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDed818a707febed818a70 /* BpBroadPhase.cpp */; }; + FFFFed818ad87febed818ad8 /* BpBroadPhaseMBP.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDed818ad87febed818ad8 /* BpBroadPhaseMBP.cpp */; }; + FFFFed818b407febed818b40 /* BpBroadPhaseSap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDed818b407febed818b40 /* BpBroadPhaseSap.cpp */; }; + FFFFed818ba87febed818ba8 /* BpBroadPhaseSapAux.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDed818ba87febed818ba8 /* BpBroadPhaseSapAux.cpp */; }; + FFFFed818c107febed818c10 /* BpMBPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDed818c107febed818c10 /* BpMBPTasks.cpp */; }; + FFFFed818c787febed818c78 /* BpSAPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDed818c787febed818c78 /* BpSAPTasks.cpp */; }; + FFFFed818ce07febed818ce0 /* BpSimpleAABBManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDed818ce07febed818ce0 /* BpSimpleAABBManager.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD5c8058807fb05c805880 /* LowLevelAABB */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelAABB"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD5c80c6d07fb05c80c6d0 /* BpAABBManagerTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpAABBManagerTasks.h"; path = "../../LowLevelAABB/include/BpAABBManagerTasks.h"; sourceTree = SOURCE_ROOT; }; - FFFD5c80c7387fb05c80c738 /* BpBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.h"; path = "../../LowLevelAABB/include/BpBroadPhase.h"; sourceTree = SOURCE_ROOT; }; - FFFD5c80c7a07fb05c80c7a0 /* BpBroadPhaseUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseUpdate.h"; path = "../../LowLevelAABB/include/BpBroadPhaseUpdate.h"; sourceTree = SOURCE_ROOT; }; - FFFD5c80c8087fb05c80c808 /* BpSimpleAABBManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.h"; path = "../../LowLevelAABB/include/BpSimpleAABBManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD5d0012007fb05d001200 /* BpBroadPhaseMBP.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.h"; sourceTree = SOURCE_ROOT; }; - FFFD5d0012687fb05d001268 /* BpBroadPhaseMBPCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBPCommon.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBPCommon.h"; sourceTree = SOURCE_ROOT; }; - FFFD5d0012d07fb05d0012d0 /* BpBroadPhaseSap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.h"; sourceTree = SOURCE_ROOT; }; - FFFD5d0013387fb05d001338 /* BpBroadPhaseSapAux.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.h"; sourceTree = SOURCE_ROOT; }; - FFFD5d0013a07fb05d0013a0 /* BpMBPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.h"; path = "../../LowLevelAABB/src/BpMBPTasks.h"; sourceTree = SOURCE_ROOT; }; - FFFD5d0014087fb05d001408 /* BpSAPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.h"; path = "../../LowLevelAABB/src/BpSAPTasks.h"; sourceTree = SOURCE_ROOT; }; - FFFD5d0014707fb05d001470 /* BpBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.cpp"; path = "../../LowLevelAABB/src/BpBroadPhase.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5d0014d87fb05d0014d8 /* BpBroadPhaseMBP.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5d0015407fb05d001540 /* BpBroadPhaseSap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5d0015a87fb05d0015a8 /* BpBroadPhaseSapAux.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5d0016107fb05d001610 /* BpMBPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.cpp"; path = "../../LowLevelAABB/src/BpMBPTasks.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5d0016787fb05d001678 /* BpSAPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.cpp"; path = "../../LowLevelAABB/src/BpSAPTasks.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5d0016e07fb05d0016e0 /* BpSimpleAABBManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.cpp"; path = "../../LowLevelAABB/src/BpSimpleAABBManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed432ce07febed432ce0 /* LowLevelAABB */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelAABB"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDed4363407febed436340 /* BpAABBManagerTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpAABBManagerTasks.h"; path = "../../LowLevelAABB/include/BpAABBManagerTasks.h"; sourceTree = SOURCE_ROOT; }; + FFFDed4363a87febed4363a8 /* BpBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.h"; path = "../../LowLevelAABB/include/BpBroadPhase.h"; sourceTree = SOURCE_ROOT; }; + FFFDed4364107febed436410 /* BpBroadPhaseUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseUpdate.h"; path = "../../LowLevelAABB/include/BpBroadPhaseUpdate.h"; sourceTree = SOURCE_ROOT; }; + FFFDed4364787febed436478 /* BpSimpleAABBManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.h"; path = "../../LowLevelAABB/include/BpSimpleAABBManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8188007febed818800 /* BpBroadPhaseMBP.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8188687febed818868 /* BpBroadPhaseMBPCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBPCommon.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBPCommon.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8188d07febed8188d0 /* BpBroadPhaseSap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8189387febed818938 /* BpBroadPhaseSapAux.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8189a07febed8189a0 /* BpMBPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.h"; path = "../../LowLevelAABB/src/BpMBPTasks.h"; sourceTree = SOURCE_ROOT; }; + FFFDed818a087febed818a08 /* BpSAPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.h"; path = "../../LowLevelAABB/src/BpSAPTasks.h"; sourceTree = SOURCE_ROOT; }; + FFFDed818a707febed818a70 /* BpBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.cpp"; path = "../../LowLevelAABB/src/BpBroadPhase.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed818ad87febed818ad8 /* BpBroadPhaseMBP.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed818b407febed818b40 /* BpBroadPhaseSap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed818ba87febed818ba8 /* BpBroadPhaseSapAux.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed818c107febed818c10 /* BpMBPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.cpp"; path = "../../LowLevelAABB/src/BpMBPTasks.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed818c787febed818c78 /* BpSAPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.cpp"; path = "../../LowLevelAABB/src/BpSAPTasks.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed818ce07febed818ce0 /* BpSimpleAABBManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.cpp"; path = "../../LowLevelAABB/src/BpSimpleAABBManager.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF25c8058807fb05c805880 /* Resources */ = { + FFF2ed432ce07febed432ce0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2502,7 +2502,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC5c8058807fb05c805880 /* Frameworks */ = { + FFFCed432ce07febed432ce0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2512,17 +2512,17 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF85c8058807fb05c805880 /* Sources */ = { + FFF8ed432ce07febed432ce0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF5d0014707fb05d001470, - FFFF5d0014d87fb05d0014d8, - FFFF5d0015407fb05d001540, - FFFF5d0015a87fb05d0015a8, - FFFF5d0016107fb05d001610, - FFFF5d0016787fb05d001678, - FFFF5d0016e07fb05d0016e0, + FFFFed818a707febed818a70, + FFFFed818ad87febed818ad8, + FFFFed818b407febed818b40, + FFFFed818ba87febed818ba8, + FFFFed818c107febed818c10, + FFFFed818c787febed818c78, + FFFFed818ce07febed818ce0, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2534,106 +2534,106 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of LowLevelDynamics */ - FFFF5b8278007fb05b827800 /* DyArticulation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5b8278007fb05b827800 /* DyArticulation.cpp */; }; - FFFF5b8278687fb05b827868 /* DyArticulationContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5b8278687fb05b827868 /* DyArticulationContactPrep.cpp */; }; - FFFF5b8278d07fb05b8278d0 /* DyArticulationContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5b8278d07fb05b8278d0 /* DyArticulationContactPrepPF.cpp */; }; - FFFF5b8279387fb05b827938 /* DyArticulationHelper.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5b8279387fb05b827938 /* DyArticulationHelper.cpp */; }; - FFFF5b8279a07fb05b8279a0 /* DyArticulationSIMD.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5b8279a07fb05b8279a0 /* DyArticulationSIMD.cpp */; }; - FFFF5b827a087fb05b827a08 /* DyArticulationScalar.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5b827a087fb05b827a08 /* DyArticulationScalar.cpp */; }; - FFFF5b827a707fb05b827a70 /* DyConstraintPartition.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5b827a707fb05b827a70 /* DyConstraintPartition.cpp */; }; - FFFF5b827ad87fb05b827ad8 /* DyConstraintSetup.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5b827ad87fb05b827ad8 /* DyConstraintSetup.cpp */; }; - FFFF5b827b407fb05b827b40 /* DyConstraintSetupBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5b827b407fb05b827b40 /* DyConstraintSetupBlock.cpp */; }; - FFFF5b827ba87fb05b827ba8 /* DyContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5b827ba87fb05b827ba8 /* DyContactPrep.cpp */; }; - FFFF5b827c107fb05b827c10 /* DyContactPrep4.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5b827c107fb05b827c10 /* DyContactPrep4.cpp */; }; - FFFF5b827c787fb05b827c78 /* DyContactPrep4PF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5b827c787fb05b827c78 /* DyContactPrep4PF.cpp */; }; - FFFF5b827ce07fb05b827ce0 /* DyContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5b827ce07fb05b827ce0 /* DyContactPrepPF.cpp */; }; - FFFF5b827d487fb05b827d48 /* DyDynamics.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5b827d487fb05b827d48 /* DyDynamics.cpp */; }; - FFFF5b827db07fb05b827db0 /* DyFrictionCorrelation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5b827db07fb05b827db0 /* DyFrictionCorrelation.cpp */; }; - FFFF5b827e187fb05b827e18 /* DyRigidBodyToSolverBody.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5b827e187fb05b827e18 /* DyRigidBodyToSolverBody.cpp */; }; - FFFF5b827e807fb05b827e80 /* DySolverConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5b827e807fb05b827e80 /* DySolverConstraints.cpp */; }; - FFFF5b827ee87fb05b827ee8 /* DySolverConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5b827ee87fb05b827ee8 /* DySolverConstraintsBlock.cpp */; }; - FFFF5b827f507fb05b827f50 /* DySolverControl.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5b827f507fb05b827f50 /* DySolverControl.cpp */; }; - FFFF5b827fb87fb05b827fb8 /* DySolverControlPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5b827fb87fb05b827fb8 /* DySolverControlPF.cpp */; }; - FFFF5b8280207fb05b828020 /* DySolverPFConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5b8280207fb05b828020 /* DySolverPFConstraints.cpp */; }; - FFFF5b8280887fb05b828088 /* DySolverPFConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5b8280887fb05b828088 /* DySolverPFConstraintsBlock.cpp */; }; - FFFF5b8280f07fb05b8280f0 /* DyThreadContext.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5b8280f07fb05b8280f0 /* DyThreadContext.cpp */; }; - FFFF5b8281587fb05b828158 /* DyThresholdTable.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5b8281587fb05b828158 /* DyThresholdTable.cpp */; }; + FFFFec032c007febec032c00 /* DyArticulation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDec032c007febec032c00 /* DyArticulation.cpp */; }; + FFFFec032c687febec032c68 /* DyArticulationContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDec032c687febec032c68 /* DyArticulationContactPrep.cpp */; }; + FFFFec032cd07febec032cd0 /* DyArticulationContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDec032cd07febec032cd0 /* DyArticulationContactPrepPF.cpp */; }; + FFFFec032d387febec032d38 /* DyArticulationHelper.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDec032d387febec032d38 /* DyArticulationHelper.cpp */; }; + FFFFec032da07febec032da0 /* DyArticulationSIMD.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDec032da07febec032da0 /* DyArticulationSIMD.cpp */; }; + FFFFec032e087febec032e08 /* DyArticulationScalar.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDec032e087febec032e08 /* DyArticulationScalar.cpp */; }; + FFFFec032e707febec032e70 /* DyConstraintPartition.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDec032e707febec032e70 /* DyConstraintPartition.cpp */; }; + FFFFec032ed87febec032ed8 /* DyConstraintSetup.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDec032ed87febec032ed8 /* DyConstraintSetup.cpp */; }; + FFFFec032f407febec032f40 /* DyConstraintSetupBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDec032f407febec032f40 /* DyConstraintSetupBlock.cpp */; }; + FFFFec032fa87febec032fa8 /* DyContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDec032fa87febec032fa8 /* DyContactPrep.cpp */; }; + FFFFec0330107febec033010 /* DyContactPrep4.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDec0330107febec033010 /* DyContactPrep4.cpp */; }; + FFFFec0330787febec033078 /* DyContactPrep4PF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDec0330787febec033078 /* DyContactPrep4PF.cpp */; }; + FFFFec0330e07febec0330e0 /* DyContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDec0330e07febec0330e0 /* DyContactPrepPF.cpp */; }; + FFFFec0331487febec033148 /* DyDynamics.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDec0331487febec033148 /* DyDynamics.cpp */; }; + FFFFec0331b07febec0331b0 /* DyFrictionCorrelation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDec0331b07febec0331b0 /* DyFrictionCorrelation.cpp */; }; + FFFFec0332187febec033218 /* DyRigidBodyToSolverBody.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDec0332187febec033218 /* DyRigidBodyToSolverBody.cpp */; }; + FFFFec0332807febec033280 /* DySolverConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDec0332807febec033280 /* DySolverConstraints.cpp */; }; + FFFFec0332e87febec0332e8 /* DySolverConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDec0332e87febec0332e8 /* DySolverConstraintsBlock.cpp */; }; + FFFFec0333507febec033350 /* DySolverControl.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDec0333507febec033350 /* DySolverControl.cpp */; }; + FFFFec0333b87febec0333b8 /* DySolverControlPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDec0333b87febec0333b8 /* DySolverControlPF.cpp */; }; + FFFFec0334207febec033420 /* DySolverPFConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDec0334207febec033420 /* DySolverPFConstraints.cpp */; }; + FFFFec0334887febec033488 /* DySolverPFConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDec0334887febec033488 /* DySolverPFConstraintsBlock.cpp */; }; + FFFFec0334f07febec0334f0 /* DyThreadContext.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDec0334f07febec0334f0 /* DyThreadContext.cpp */; }; + FFFFec0335587febec033558 /* DyThresholdTable.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDec0335587febec033558 /* DyThresholdTable.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD5b45afc07fb05b45afc0 /* LowLevelDynamics */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelDynamics"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD5b8278007fb05b827800 /* DyArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.cpp"; path = "../../LowLevelDynamics/src/DyArticulation.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8278687fb05b827868 /* DyArticulationContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8278d07fb05b8278d0 /* DyArticulationContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8279387fb05b827938 /* DyArticulationHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.cpp"; path = "../../LowLevelDynamics/src/DyArticulationHelper.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8279a07fb05b8279a0 /* DyArticulationSIMD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationSIMD.cpp"; path = "../../LowLevelDynamics/src/DyArticulationSIMD.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b827a087fb05b827a08 /* DyArticulationScalar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.cpp"; path = "../../LowLevelDynamics/src/DyArticulationScalar.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b827a707fb05b827a70 /* DyConstraintPartition.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.cpp"; path = "../../LowLevelDynamics/src/DyConstraintPartition.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b827ad87fb05b827ad8 /* DyConstraintSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetup.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetup.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b827b407fb05b827b40 /* DyConstraintSetupBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetupBlock.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetupBlock.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b827ba87fb05b827ba8 /* DyContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b827c107fb05b827c10 /* DyContactPrep4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b827c787fb05b827c78 /* DyContactPrep4PF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4PF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4PF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b827ce07fb05b827ce0 /* DyContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b827d487fb05b827d48 /* DyDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.cpp"; path = "../../LowLevelDynamics/src/DyDynamics.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b827db07fb05b827db0 /* DyFrictionCorrelation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionCorrelation.cpp"; path = "../../LowLevelDynamics/src/DyFrictionCorrelation.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b827e187fb05b827e18 /* DyRigidBodyToSolverBody.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyRigidBodyToSolverBody.cpp"; path = "../../LowLevelDynamics/src/DyRigidBodyToSolverBody.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b827e807fb05b827e80 /* DySolverConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraints.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b827ee87fb05b827ee8 /* DySolverConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b827f507fb05b827f50 /* DySolverControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.cpp"; path = "../../LowLevelDynamics/src/DySolverControl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b827fb87fb05b827fb8 /* DySolverControlPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.cpp"; path = "../../LowLevelDynamics/src/DySolverControlPF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8280207fb05b828020 /* DySolverPFConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraints.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8280887fb05b828088 /* DySolverPFConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8280f07fb05b8280f0 /* DyThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.cpp"; path = "../../LowLevelDynamics/src/DyThreadContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8281587fb05b828158 /* DyThresholdTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.cpp"; path = "../../LowLevelDynamics/src/DyThresholdTable.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b447df07fb05b447df0 /* DyArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.h"; path = "../../LowLevelDynamics/include/DyArticulation.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b447e587fb05b447e58 /* DyConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraint.h"; path = "../../LowLevelDynamics/include/DyConstraint.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b447ec07fb05b447ec0 /* DyConstraintWriteBack.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintWriteBack.h"; path = "../../LowLevelDynamics/include/DyConstraintWriteBack.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b447f287fb05b447f28 /* DyContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContext.h"; path = "../../LowLevelDynamics/include/DyContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b447f907fb05b447f90 /* DyGpuAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyGpuAPI.h"; path = "../../LowLevelDynamics/include/DyGpuAPI.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b447ff87fb05b447ff8 /* DySleepingConfigulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySleepingConfigulation.h"; path = "../../LowLevelDynamics/include/DySleepingConfigulation.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b4480607fb05b448060 /* DyThresholdTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.h"; path = "../../LowLevelDynamics/include/DyThresholdTable.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8290007fb05b829000 /* DyArticulationContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.h"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8290687fb05b829068 /* DyArticulationFnsDebug.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsDebug.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsDebug.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8290d07fb05b8290d0 /* DyArticulationFnsScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsScalar.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8291387fb05b829138 /* DyArticulationFnsSimd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsSimd.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsSimd.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8291a07fb05b8291a0 /* DyArticulationHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.h"; path = "../../LowLevelDynamics/src/DyArticulationHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8292087fb05b829208 /* DyArticulationPImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationPImpl.h"; path = "../../LowLevelDynamics/src/DyArticulationPImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8292707fb05b829270 /* DyArticulationReference.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationReference.h"; path = "../../LowLevelDynamics/src/DyArticulationReference.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8292d87fb05b8292d8 /* DyArticulationScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationScalar.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8293407fb05b829340 /* DyArticulationUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationUtils.h"; path = "../../LowLevelDynamics/src/DyArticulationUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8293a87fb05b8293a8 /* DyBodyCoreIntegrator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyBodyCoreIntegrator.h"; path = "../../LowLevelDynamics/src/DyBodyCoreIntegrator.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8294107fb05b829410 /* DyConstraintPartition.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.h"; path = "../../LowLevelDynamics/src/DyConstraintPartition.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8294787fb05b829478 /* DyConstraintPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPrep.h"; path = "../../LowLevelDynamics/src/DyConstraintPrep.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8294e07fb05b8294e0 /* DyContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.h"; path = "../../LowLevelDynamics/src/DyContactPrep.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8295487fb05b829548 /* DyContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepShared.h"; path = "../../LowLevelDynamics/src/DyContactPrepShared.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8295b07fb05b8295b0 /* DyContactReduction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactReduction.h"; path = "../../LowLevelDynamics/src/DyContactReduction.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8296187fb05b829618 /* DyCorrelationBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyCorrelationBuffer.h"; path = "../../LowLevelDynamics/src/DyCorrelationBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8296807fb05b829680 /* DyDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.h"; path = "../../LowLevelDynamics/src/DyDynamics.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8296e87fb05b8296e8 /* DyFrictionPatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatch.h"; path = "../../LowLevelDynamics/src/DyFrictionPatch.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8297507fb05b829750 /* DyFrictionPatchStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatchStreamPair.h"; path = "../../LowLevelDynamics/src/DyFrictionPatchStreamPair.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8297b87fb05b8297b8 /* DySolverBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverBody.h"; path = "../../LowLevelDynamics/src/DySolverBody.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8298207fb05b829820 /* DySolverConstraint1D.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8298887fb05b829888 /* DySolverConstraint1D4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D4.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D4.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8298f07fb05b8298f0 /* DySolverConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintDesc.h"; path = "../../LowLevelDynamics/src/DySolverConstraintDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8299587fb05b829958 /* DySolverConstraintExtShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintExtShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintExtShared.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8299c07fb05b8299c0 /* DySolverConstraintTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintTypes.h"; path = "../../LowLevelDynamics/src/DySolverConstraintTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b829a287fb05b829a28 /* DySolverConstraintsShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintsShared.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b829a907fb05b829a90 /* DySolverContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact.h"; path = "../../LowLevelDynamics/src/DySolverContact.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b829af87fb05b829af8 /* DySolverContact4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact4.h"; path = "../../LowLevelDynamics/src/DySolverContact4.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b829b607fb05b829b60 /* DySolverContactPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF.h"; path = "../../LowLevelDynamics/src/DySolverContactPF.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b829bc87fb05b829bc8 /* DySolverContactPF4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF4.h"; path = "../../LowLevelDynamics/src/DySolverContactPF4.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b829c307fb05b829c30 /* DySolverContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContext.h"; path = "../../LowLevelDynamics/src/DySolverContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b829c987fb05b829c98 /* DySolverControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.h"; path = "../../LowLevelDynamics/src/DySolverControl.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b829d007fb05b829d00 /* DySolverControlPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.h"; path = "../../LowLevelDynamics/src/DySolverControlPF.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b829d687fb05b829d68 /* DySolverCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverCore.h"; path = "../../LowLevelDynamics/src/DySolverCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b829dd07fb05b829dd0 /* DySolverExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverExt.h"; path = "../../LowLevelDynamics/src/DySolverExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b829e387fb05b829e38 /* DySpatial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySpatial.h"; path = "../../LowLevelDynamics/src/DySpatial.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b829ea07fb05b829ea0 /* DyThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.h"; path = "../../LowLevelDynamics/src/DyThreadContext.h"; sourceTree = SOURCE_ROOT; }; + FFFDebe6c9d07febebe6c9d0 /* LowLevelDynamics */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelDynamics"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDec032c007febec032c00 /* DyArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.cpp"; path = "../../LowLevelDynamics/src/DyArticulation.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec032c687febec032c68 /* DyArticulationContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec032cd07febec032cd0 /* DyArticulationContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec032d387febec032d38 /* DyArticulationHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.cpp"; path = "../../LowLevelDynamics/src/DyArticulationHelper.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec032da07febec032da0 /* DyArticulationSIMD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationSIMD.cpp"; path = "../../LowLevelDynamics/src/DyArticulationSIMD.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec032e087febec032e08 /* DyArticulationScalar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.cpp"; path = "../../LowLevelDynamics/src/DyArticulationScalar.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec032e707febec032e70 /* DyConstraintPartition.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.cpp"; path = "../../LowLevelDynamics/src/DyConstraintPartition.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec032ed87febec032ed8 /* DyConstraintSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetup.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetup.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec032f407febec032f40 /* DyConstraintSetupBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetupBlock.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetupBlock.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec032fa87febec032fa8 /* DyContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0330107febec033010 /* DyContactPrep4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0330787febec033078 /* DyContactPrep4PF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4PF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4PF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0330e07febec0330e0 /* DyContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0331487febec033148 /* DyDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.cpp"; path = "../../LowLevelDynamics/src/DyDynamics.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0331b07febec0331b0 /* DyFrictionCorrelation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionCorrelation.cpp"; path = "../../LowLevelDynamics/src/DyFrictionCorrelation.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0332187febec033218 /* DyRigidBodyToSolverBody.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyRigidBodyToSolverBody.cpp"; path = "../../LowLevelDynamics/src/DyRigidBodyToSolverBody.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0332807febec033280 /* DySolverConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraints.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0332e87febec0332e8 /* DySolverConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0333507febec033350 /* DySolverControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.cpp"; path = "../../LowLevelDynamics/src/DySolverControl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0333b87febec0333b8 /* DySolverControlPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.cpp"; path = "../../LowLevelDynamics/src/DySolverControlPF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0334207febec033420 /* DySolverPFConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraints.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0334887febec033488 /* DySolverPFConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0334f07febec0334f0 /* DyThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.cpp"; path = "../../LowLevelDynamics/src/DyThreadContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDec0335587febec033558 /* DyThresholdTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.cpp"; path = "../../LowLevelDynamics/src/DyThresholdTable.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDebe7ef207febebe7ef20 /* DyArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.h"; path = "../../LowLevelDynamics/include/DyArticulation.h"; sourceTree = SOURCE_ROOT; }; + FFFDebe7ef887febebe7ef88 /* DyConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraint.h"; path = "../../LowLevelDynamics/include/DyConstraint.h"; sourceTree = SOURCE_ROOT; }; + FFFDebe7eff07febebe7eff0 /* DyConstraintWriteBack.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintWriteBack.h"; path = "../../LowLevelDynamics/include/DyConstraintWriteBack.h"; sourceTree = SOURCE_ROOT; }; + FFFDebe7f0587febebe7f058 /* DyContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContext.h"; path = "../../LowLevelDynamics/include/DyContext.h"; sourceTree = SOURCE_ROOT; }; + FFFDebe7f0c07febebe7f0c0 /* DyGpuAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyGpuAPI.h"; path = "../../LowLevelDynamics/include/DyGpuAPI.h"; sourceTree = SOURCE_ROOT; }; + FFFDebe7f1287febebe7f128 /* DySleepingConfigulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySleepingConfigulation.h"; path = "../../LowLevelDynamics/include/DySleepingConfigulation.h"; sourceTree = SOURCE_ROOT; }; + FFFDebe7f1907febebe7f190 /* DyThresholdTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.h"; path = "../../LowLevelDynamics/include/DyThresholdTable.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0336007febec033600 /* DyArticulationContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.h"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0336687febec033668 /* DyArticulationFnsDebug.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsDebug.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsDebug.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0336d07febec0336d0 /* DyArticulationFnsScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsScalar.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0337387febec033738 /* DyArticulationFnsSimd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsSimd.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsSimd.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0337a07febec0337a0 /* DyArticulationHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.h"; path = "../../LowLevelDynamics/src/DyArticulationHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0338087febec033808 /* DyArticulationPImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationPImpl.h"; path = "../../LowLevelDynamics/src/DyArticulationPImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0338707febec033870 /* DyArticulationReference.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationReference.h"; path = "../../LowLevelDynamics/src/DyArticulationReference.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0338d87febec0338d8 /* DyArticulationScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationScalar.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0339407febec033940 /* DyArticulationUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationUtils.h"; path = "../../LowLevelDynamics/src/DyArticulationUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0339a87febec0339a8 /* DyBodyCoreIntegrator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyBodyCoreIntegrator.h"; path = "../../LowLevelDynamics/src/DyBodyCoreIntegrator.h"; sourceTree = SOURCE_ROOT; }; + FFFDec033a107febec033a10 /* DyConstraintPartition.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.h"; path = "../../LowLevelDynamics/src/DyConstraintPartition.h"; sourceTree = SOURCE_ROOT; }; + FFFDec033a787febec033a78 /* DyConstraintPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPrep.h"; path = "../../LowLevelDynamics/src/DyConstraintPrep.h"; sourceTree = SOURCE_ROOT; }; + FFFDec033ae07febec033ae0 /* DyContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.h"; path = "../../LowLevelDynamics/src/DyContactPrep.h"; sourceTree = SOURCE_ROOT; }; + FFFDec033b487febec033b48 /* DyContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepShared.h"; path = "../../LowLevelDynamics/src/DyContactPrepShared.h"; sourceTree = SOURCE_ROOT; }; + FFFDec033bb07febec033bb0 /* DyContactReduction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactReduction.h"; path = "../../LowLevelDynamics/src/DyContactReduction.h"; sourceTree = SOURCE_ROOT; }; + FFFDec033c187febec033c18 /* DyCorrelationBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyCorrelationBuffer.h"; path = "../../LowLevelDynamics/src/DyCorrelationBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFDec033c807febec033c80 /* DyDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.h"; path = "../../LowLevelDynamics/src/DyDynamics.h"; sourceTree = SOURCE_ROOT; }; + FFFDec033ce87febec033ce8 /* DyFrictionPatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatch.h"; path = "../../LowLevelDynamics/src/DyFrictionPatch.h"; sourceTree = SOURCE_ROOT; }; + FFFDec033d507febec033d50 /* DyFrictionPatchStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatchStreamPair.h"; path = "../../LowLevelDynamics/src/DyFrictionPatchStreamPair.h"; sourceTree = SOURCE_ROOT; }; + FFFDec033db87febec033db8 /* DySolverBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverBody.h"; path = "../../LowLevelDynamics/src/DySolverBody.h"; sourceTree = SOURCE_ROOT; }; + FFFDec033e207febec033e20 /* DySolverConstraint1D.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D.h"; sourceTree = SOURCE_ROOT; }; + FFFDec033e887febec033e88 /* DySolverConstraint1D4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D4.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D4.h"; sourceTree = SOURCE_ROOT; }; + FFFDec033ef07febec033ef0 /* DySolverConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintDesc.h"; path = "../../LowLevelDynamics/src/DySolverConstraintDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFDec033f587febec033f58 /* DySolverConstraintExtShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintExtShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintExtShared.h"; sourceTree = SOURCE_ROOT; }; + FFFDec033fc07febec033fc0 /* DySolverConstraintTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintTypes.h"; path = "../../LowLevelDynamics/src/DySolverConstraintTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0340287febec034028 /* DySolverConstraintsShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintsShared.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0340907febec034090 /* DySolverContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact.h"; path = "../../LowLevelDynamics/src/DySolverContact.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0340f87febec0340f8 /* DySolverContact4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact4.h"; path = "../../LowLevelDynamics/src/DySolverContact4.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0341607febec034160 /* DySolverContactPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF.h"; path = "../../LowLevelDynamics/src/DySolverContactPF.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0341c87febec0341c8 /* DySolverContactPF4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF4.h"; path = "../../LowLevelDynamics/src/DySolverContactPF4.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0342307febec034230 /* DySolverContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContext.h"; path = "../../LowLevelDynamics/src/DySolverContext.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0342987febec034298 /* DySolverControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.h"; path = "../../LowLevelDynamics/src/DySolverControl.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0343007febec034300 /* DySolverControlPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.h"; path = "../../LowLevelDynamics/src/DySolverControlPF.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0343687febec034368 /* DySolverCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverCore.h"; path = "../../LowLevelDynamics/src/DySolverCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0343d07febec0343d0 /* DySolverExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverExt.h"; path = "../../LowLevelDynamics/src/DySolverExt.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0344387febec034438 /* DySpatial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySpatial.h"; path = "../../LowLevelDynamics/src/DySpatial.h"; sourceTree = SOURCE_ROOT; }; + FFFDec0344a07febec0344a0 /* DyThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.h"; path = "../../LowLevelDynamics/src/DyThreadContext.h"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF25b45afc07fb05b45afc0 /* Resources */ = { + FFF2ebe6c9d07febebe6c9d0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2643,7 +2643,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC5b45afc07fb05b45afc0 /* Frameworks */ = { + FFFCebe6c9d07febebe6c9d0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2653,34 +2653,34 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF85b45afc07fb05b45afc0 /* Sources */ = { + FFF8ebe6c9d07febebe6c9d0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF5b8278007fb05b827800, - FFFF5b8278687fb05b827868, - FFFF5b8278d07fb05b8278d0, - FFFF5b8279387fb05b827938, - FFFF5b8279a07fb05b8279a0, - FFFF5b827a087fb05b827a08, - FFFF5b827a707fb05b827a70, - FFFF5b827ad87fb05b827ad8, - FFFF5b827b407fb05b827b40, - FFFF5b827ba87fb05b827ba8, - FFFF5b827c107fb05b827c10, - FFFF5b827c787fb05b827c78, - FFFF5b827ce07fb05b827ce0, - FFFF5b827d487fb05b827d48, - FFFF5b827db07fb05b827db0, - FFFF5b827e187fb05b827e18, - FFFF5b827e807fb05b827e80, - FFFF5b827ee87fb05b827ee8, - FFFF5b827f507fb05b827f50, - FFFF5b827fb87fb05b827fb8, - FFFF5b8280207fb05b828020, - FFFF5b8280887fb05b828088, - FFFF5b8280f07fb05b8280f0, - FFFF5b8281587fb05b828158, + FFFFec032c007febec032c00, + FFFFec032c687febec032c68, + FFFFec032cd07febec032cd0, + FFFFec032d387febec032d38, + FFFFec032da07febec032da0, + FFFFec032e087febec032e08, + FFFFec032e707febec032e70, + FFFFec032ed87febec032ed8, + FFFFec032f407febec032f40, + FFFFec032fa87febec032fa8, + FFFFec0330107febec033010, + FFFFec0330787febec033078, + FFFFec0330e07febec0330e0, + FFFFec0331487febec033148, + FFFFec0331b07febec0331b0, + FFFFec0332187febec033218, + FFFFec0332807febec033280, + FFFFec0332e87febec0332e8, + FFFFec0333507febec033350, + FFFFec0333b87febec0333b8, + FFFFec0334207febec033420, + FFFFec0334887febec033488, + FFFFec0334f07febec0334f0, + FFFFec0335587febec033558, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2692,70 +2692,70 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of LowLevelCloth */ - FFFF5d0125587fb05d012558 /* Allocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5d0125587fb05d012558 /* Allocator.cpp */; }; - FFFF5d0125c07fb05d0125c0 /* Factory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5d0125c07fb05d0125c0 /* Factory.cpp */; }; - FFFF5d0126287fb05d012628 /* PhaseConfig.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5d0126287fb05d012628 /* PhaseConfig.cpp */; }; - FFFF5d0126907fb05d012690 /* SwCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5d0126907fb05d012690 /* SwCloth.cpp */; }; - FFFF5d0126f87fb05d0126f8 /* SwClothData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5d0126f87fb05d0126f8 /* SwClothData.cpp */; }; - FFFF5d0127607fb05d012760 /* SwCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5d0127607fb05d012760 /* SwCollision.cpp */; }; - FFFF5d0127c87fb05d0127c8 /* SwFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5d0127c87fb05d0127c8 /* SwFabric.cpp */; }; - FFFF5d0128307fb05d012830 /* SwFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5d0128307fb05d012830 /* SwFactory.cpp */; }; - FFFF5d0128987fb05d012898 /* SwInterCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5d0128987fb05d012898 /* SwInterCollision.cpp */; }; - FFFF5d0129007fb05d012900 /* SwSelfCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5d0129007fb05d012900 /* SwSelfCollision.cpp */; }; - FFFF5d0129687fb05d012968 /* SwSolver.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5d0129687fb05d012968 /* SwSolver.cpp */; }; - FFFF5d0129d07fb05d0129d0 /* SwSolverKernel.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5d0129d07fb05d0129d0 /* SwSolverKernel.cpp */; }; - FFFF5d012a387fb05d012a38 /* TripletScheduler.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5d012a387fb05d012a38 /* TripletScheduler.cpp */; }; + FFFFed8233587febed823358 /* Allocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDed8233587febed823358 /* Allocator.cpp */; }; + FFFFed8233c07febed8233c0 /* Factory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDed8233c07febed8233c0 /* Factory.cpp */; }; + FFFFed8234287febed823428 /* PhaseConfig.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDed8234287febed823428 /* PhaseConfig.cpp */; }; + FFFFed8234907febed823490 /* SwCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDed8234907febed823490 /* SwCloth.cpp */; }; + FFFFed8234f87febed8234f8 /* SwClothData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDed8234f87febed8234f8 /* SwClothData.cpp */; }; + FFFFed8235607febed823560 /* SwCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDed8235607febed823560 /* SwCollision.cpp */; }; + FFFFed8235c87febed8235c8 /* SwFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDed8235c87febed8235c8 /* SwFabric.cpp */; }; + FFFFed8236307febed823630 /* SwFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDed8236307febed823630 /* SwFactory.cpp */; }; + FFFFed8236987febed823698 /* SwInterCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDed8236987febed823698 /* SwInterCollision.cpp */; }; + FFFFed8237007febed823700 /* SwSelfCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDed8237007febed823700 /* SwSelfCollision.cpp */; }; + FFFFed8237687febed823768 /* SwSolver.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDed8237687febed823768 /* SwSolver.cpp */; }; + FFFFed8237d07febed8237d0 /* SwSolverKernel.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDed8237d07febed8237d0 /* SwSolverKernel.cpp */; }; + FFFFed8238387febed823838 /* TripletScheduler.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDed8238387febed823838 /* TripletScheduler.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD5c8281f07fb05c8281f0 /* LowLevelCloth */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelCloth"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD5c819a607fb05c819a60 /* Cloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cloth.h"; path = "../../LowLevelCloth/include/Cloth.h"; sourceTree = SOURCE_ROOT; }; - FFFD5c819ac87fb05c819ac8 /* Fabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Fabric.h"; path = "../../LowLevelCloth/include/Fabric.h"; sourceTree = SOURCE_ROOT; }; - FFFD5c819b307fb05c819b30 /* Factory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.h"; path = "../../LowLevelCloth/include/Factory.h"; sourceTree = SOURCE_ROOT; }; - FFFD5c819b987fb05c819b98 /* PhaseConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.h"; path = "../../LowLevelCloth/include/PhaseConfig.h"; sourceTree = SOURCE_ROOT; }; - FFFD5c819c007fb05c819c00 /* Range.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Range.h"; path = "../../LowLevelCloth/include/Range.h"; sourceTree = SOURCE_ROOT; }; - FFFD5c819c687fb05c819c68 /* Solver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Solver.h"; path = "../../LowLevelCloth/include/Solver.h"; sourceTree = SOURCE_ROOT; }; - FFFD5c819cd07fb05c819cd0 /* Types.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Types.h"; path = "../../LowLevelCloth/include/Types.h"; sourceTree = SOURCE_ROOT; }; - FFFD5d011c007fb05d011c00 /* Allocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.h"; path = "../../LowLevelCloth/src/Allocator.h"; sourceTree = SOURCE_ROOT; }; - FFFD5d011c687fb05d011c68 /* Array.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Array.h"; path = "../../LowLevelCloth/src/Array.h"; sourceTree = SOURCE_ROOT; }; - FFFD5d011cd07fb05d011cd0 /* BoundingBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BoundingBox.h"; path = "../../LowLevelCloth/src/BoundingBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD5d011d387fb05d011d38 /* ClothBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothBase.h"; path = "../../LowLevelCloth/src/ClothBase.h"; sourceTree = SOURCE_ROOT; }; - FFFD5d011da07fb05d011da0 /* ClothImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothImpl.h"; path = "../../LowLevelCloth/src/ClothImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD5d011e087fb05d011e08 /* IndexPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IndexPair.h"; path = "../../LowLevelCloth/src/IndexPair.h"; sourceTree = SOURCE_ROOT; }; - FFFD5d011e707fb05d011e70 /* IterationState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IterationState.h"; path = "../../LowLevelCloth/src/IterationState.h"; sourceTree = SOURCE_ROOT; }; - FFFD5d011ed87fb05d011ed8 /* MovingAverage.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MovingAverage.h"; path = "../../LowLevelCloth/src/MovingAverage.h"; sourceTree = SOURCE_ROOT; }; - FFFD5d011f407fb05d011f40 /* PointInterpolator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PointInterpolator.h"; path = "../../LowLevelCloth/src/PointInterpolator.h"; sourceTree = SOURCE_ROOT; }; - FFFD5d011fa87fb05d011fa8 /* Simd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd.h"; path = "../../LowLevelCloth/src/Simd.h"; sourceTree = SOURCE_ROOT; }; - FFFD5d0120107fb05d012010 /* StackAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "StackAllocator.h"; path = "../../LowLevelCloth/src/StackAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFD5d0120787fb05d012078 /* SwCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.h"; path = "../../LowLevelCloth/src/SwCloth.h"; sourceTree = SOURCE_ROOT; }; - FFFD5d0120e07fb05d0120e0 /* SwClothData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.h"; path = "../../LowLevelCloth/src/SwClothData.h"; sourceTree = SOURCE_ROOT; }; - FFFD5d0121487fb05d012148 /* SwCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.h"; path = "../../LowLevelCloth/src/SwCollision.h"; sourceTree = SOURCE_ROOT; }; - FFFD5d0121b07fb05d0121b0 /* SwCollisionHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollisionHelpers.h"; path = "../../LowLevelCloth/src/SwCollisionHelpers.h"; sourceTree = SOURCE_ROOT; }; - FFFD5d0122187fb05d012218 /* SwFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.h"; path = "../../LowLevelCloth/src/SwFabric.h"; sourceTree = SOURCE_ROOT; }; - FFFD5d0122807fb05d012280 /* SwFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.h"; path = "../../LowLevelCloth/src/SwFactory.h"; sourceTree = SOURCE_ROOT; }; - FFFD5d0122e87fb05d0122e8 /* SwInterCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.h"; path = "../../LowLevelCloth/src/SwInterCollision.h"; sourceTree = SOURCE_ROOT; }; - FFFD5d0123507fb05d012350 /* SwSelfCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.h"; path = "../../LowLevelCloth/src/SwSelfCollision.h"; sourceTree = SOURCE_ROOT; }; - FFFD5d0123b87fb05d0123b8 /* SwSolver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.h"; path = "../../LowLevelCloth/src/SwSolver.h"; sourceTree = SOURCE_ROOT; }; - FFFD5d0124207fb05d012420 /* SwSolverKernel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.h"; path = "../../LowLevelCloth/src/SwSolverKernel.h"; sourceTree = SOURCE_ROOT; }; - FFFD5d0124887fb05d012488 /* TripletScheduler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.h"; path = "../../LowLevelCloth/src/TripletScheduler.h"; sourceTree = SOURCE_ROOT; }; - FFFD5d0124f07fb05d0124f0 /* Vec4T.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Vec4T.h"; path = "../../LowLevelCloth/src/Vec4T.h"; sourceTree = SOURCE_ROOT; }; - FFFD5d0125587fb05d012558 /* Allocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.cpp"; path = "../../LowLevelCloth/src/Allocator.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5d0125c07fb05d0125c0 /* Factory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.cpp"; path = "../../LowLevelCloth/src/Factory.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5d0126287fb05d012628 /* PhaseConfig.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.cpp"; path = "../../LowLevelCloth/src/PhaseConfig.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5d0126907fb05d012690 /* SwCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.cpp"; path = "../../LowLevelCloth/src/SwCloth.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5d0126f87fb05d0126f8 /* SwClothData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.cpp"; path = "../../LowLevelCloth/src/SwClothData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5d0127607fb05d012760 /* SwCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.cpp"; path = "../../LowLevelCloth/src/SwCollision.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5d0127c87fb05d0127c8 /* SwFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.cpp"; path = "../../LowLevelCloth/src/SwFabric.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5d0128307fb05d012830 /* SwFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.cpp"; path = "../../LowLevelCloth/src/SwFactory.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5d0128987fb05d012898 /* SwInterCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.cpp"; path = "../../LowLevelCloth/src/SwInterCollision.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5d0129007fb05d012900 /* SwSelfCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.cpp"; path = "../../LowLevelCloth/src/SwSelfCollision.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5d0129687fb05d012968 /* SwSolver.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.cpp"; path = "../../LowLevelCloth/src/SwSolver.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5d0129d07fb05d0129d0 /* SwSolverKernel.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.cpp"; path = "../../LowLevelCloth/src/SwSolverKernel.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5d012a387fb05d012a38 /* TripletScheduler.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.cpp"; path = "../../LowLevelCloth/src/TripletScheduler.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed443c607febed443c60 /* LowLevelCloth */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelCloth"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDed4476407febed447640 /* Cloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cloth.h"; path = "../../LowLevelCloth/include/Cloth.h"; sourceTree = SOURCE_ROOT; }; + FFFDed4476a87febed4476a8 /* Fabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Fabric.h"; path = "../../LowLevelCloth/include/Fabric.h"; sourceTree = SOURCE_ROOT; }; + FFFDed4477107febed447710 /* Factory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.h"; path = "../../LowLevelCloth/include/Factory.h"; sourceTree = SOURCE_ROOT; }; + FFFDed4477787febed447778 /* PhaseConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.h"; path = "../../LowLevelCloth/include/PhaseConfig.h"; sourceTree = SOURCE_ROOT; }; + FFFDed4477e07febed4477e0 /* Range.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Range.h"; path = "../../LowLevelCloth/include/Range.h"; sourceTree = SOURCE_ROOT; }; + FFFDed4478487febed447848 /* Solver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Solver.h"; path = "../../LowLevelCloth/include/Solver.h"; sourceTree = SOURCE_ROOT; }; + FFFDed4478b07febed4478b0 /* Types.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Types.h"; path = "../../LowLevelCloth/include/Types.h"; sourceTree = SOURCE_ROOT; }; + FFFDed822a007febed822a00 /* Allocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.h"; path = "../../LowLevelCloth/src/Allocator.h"; sourceTree = SOURCE_ROOT; }; + FFFDed822a687febed822a68 /* Array.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Array.h"; path = "../../LowLevelCloth/src/Array.h"; sourceTree = SOURCE_ROOT; }; + FFFDed822ad07febed822ad0 /* BoundingBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BoundingBox.h"; path = "../../LowLevelCloth/src/BoundingBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDed822b387febed822b38 /* ClothBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothBase.h"; path = "../../LowLevelCloth/src/ClothBase.h"; sourceTree = SOURCE_ROOT; }; + FFFDed822ba07febed822ba0 /* ClothImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothImpl.h"; path = "../../LowLevelCloth/src/ClothImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFDed822c087febed822c08 /* IndexPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IndexPair.h"; path = "../../LowLevelCloth/src/IndexPair.h"; sourceTree = SOURCE_ROOT; }; + FFFDed822c707febed822c70 /* IterationState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IterationState.h"; path = "../../LowLevelCloth/src/IterationState.h"; sourceTree = SOURCE_ROOT; }; + FFFDed822cd87febed822cd8 /* MovingAverage.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MovingAverage.h"; path = "../../LowLevelCloth/src/MovingAverage.h"; sourceTree = SOURCE_ROOT; }; + FFFDed822d407febed822d40 /* PointInterpolator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PointInterpolator.h"; path = "../../LowLevelCloth/src/PointInterpolator.h"; sourceTree = SOURCE_ROOT; }; + FFFDed822da87febed822da8 /* Simd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd.h"; path = "../../LowLevelCloth/src/Simd.h"; sourceTree = SOURCE_ROOT; }; + FFFDed822e107febed822e10 /* StackAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "StackAllocator.h"; path = "../../LowLevelCloth/src/StackAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFDed822e787febed822e78 /* SwCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.h"; path = "../../LowLevelCloth/src/SwCloth.h"; sourceTree = SOURCE_ROOT; }; + FFFDed822ee07febed822ee0 /* SwClothData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.h"; path = "../../LowLevelCloth/src/SwClothData.h"; sourceTree = SOURCE_ROOT; }; + FFFDed822f487febed822f48 /* SwCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.h"; path = "../../LowLevelCloth/src/SwCollision.h"; sourceTree = SOURCE_ROOT; }; + FFFDed822fb07febed822fb0 /* SwCollisionHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollisionHelpers.h"; path = "../../LowLevelCloth/src/SwCollisionHelpers.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8230187febed823018 /* SwFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.h"; path = "../../LowLevelCloth/src/SwFabric.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8230807febed823080 /* SwFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.h"; path = "../../LowLevelCloth/src/SwFactory.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8230e87febed8230e8 /* SwInterCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.h"; path = "../../LowLevelCloth/src/SwInterCollision.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8231507febed823150 /* SwSelfCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.h"; path = "../../LowLevelCloth/src/SwSelfCollision.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8231b87febed8231b8 /* SwSolver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.h"; path = "../../LowLevelCloth/src/SwSolver.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8232207febed823220 /* SwSolverKernel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.h"; path = "../../LowLevelCloth/src/SwSolverKernel.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8232887febed823288 /* TripletScheduler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.h"; path = "../../LowLevelCloth/src/TripletScheduler.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8232f07febed8232f0 /* Vec4T.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Vec4T.h"; path = "../../LowLevelCloth/src/Vec4T.h"; sourceTree = SOURCE_ROOT; }; + FFFDed8233587febed823358 /* Allocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.cpp"; path = "../../LowLevelCloth/src/Allocator.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8233c07febed8233c0 /* Factory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.cpp"; path = "../../LowLevelCloth/src/Factory.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8234287febed823428 /* PhaseConfig.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.cpp"; path = "../../LowLevelCloth/src/PhaseConfig.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8234907febed823490 /* SwCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.cpp"; path = "../../LowLevelCloth/src/SwCloth.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8234f87febed8234f8 /* SwClothData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.cpp"; path = "../../LowLevelCloth/src/SwClothData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8235607febed823560 /* SwCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.cpp"; path = "../../LowLevelCloth/src/SwCollision.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8235c87febed8235c8 /* SwFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.cpp"; path = "../../LowLevelCloth/src/SwFabric.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8236307febed823630 /* SwFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.cpp"; path = "../../LowLevelCloth/src/SwFactory.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8236987febed823698 /* SwInterCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.cpp"; path = "../../LowLevelCloth/src/SwInterCollision.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8237007febed823700 /* SwSelfCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.cpp"; path = "../../LowLevelCloth/src/SwSelfCollision.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8237687febed823768 /* SwSolver.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.cpp"; path = "../../LowLevelCloth/src/SwSolver.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8237d07febed8237d0 /* SwSolverKernel.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.cpp"; path = "../../LowLevelCloth/src/SwSolverKernel.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed8238387febed823838 /* TripletScheduler.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.cpp"; path = "../../LowLevelCloth/src/TripletScheduler.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF25c8281f07fb05c8281f0 /* Resources */ = { + FFF2ed443c607febed443c60 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2765,7 +2765,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC5c8281f07fb05c8281f0 /* Frameworks */ = { + FFFCed443c607febed443c60 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2775,23 +2775,23 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF85c8281f07fb05c8281f0 /* Sources */ = { + FFF8ed443c607febed443c60 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF5d0125587fb05d012558, - FFFF5d0125c07fb05d0125c0, - FFFF5d0126287fb05d012628, - FFFF5d0126907fb05d012690, - FFFF5d0126f87fb05d0126f8, - FFFF5d0127607fb05d012760, - FFFF5d0127c87fb05d0127c8, - FFFF5d0128307fb05d012830, - FFFF5d0128987fb05d012898, - FFFF5d0129007fb05d012900, - FFFF5d0129687fb05d012968, - FFFF5d0129d07fb05d0129d0, - FFFF5d012a387fb05d012a38, + FFFFed8233587febed823358, + FFFFed8233c07febed8233c0, + FFFFed8234287febed823428, + FFFFed8234907febed823490, + FFFFed8234f87febed8234f8, + FFFFed8235607febed823560, + FFFFed8235c87febed8235c8, + FFFFed8236307febed823630, + FFFFed8236987febed823698, + FFFFed8237007febed823700, + FFFFed8237687febed823768, + FFFFed8237d07febed8237d0, + FFFFed8238387febed823838, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2803,79 +2803,79 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of LowLevelParticles */ - FFFF5a9b7f587fb05a9b7f58 /* PtBatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9b7f587fb05a9b7f58 /* PtBatcher.cpp */; }; - FFFF5a9b7fc07fb05a9b7fc0 /* PtBodyTransformVault.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9b7fc07fb05a9b7fc0 /* PtBodyTransformVault.cpp */; }; - FFFF5a9b80287fb05a9b8028 /* PtCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9b80287fb05a9b8028 /* PtCollision.cpp */; }; - FFFF5a9b80907fb05a9b8090 /* PtCollisionBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9b80907fb05a9b8090 /* PtCollisionBox.cpp */; }; - FFFF5a9b80f87fb05a9b80f8 /* PtCollisionCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9b80f87fb05a9b80f8 /* PtCollisionCapsule.cpp */; }; - FFFF5a9b81607fb05a9b8160 /* PtCollisionConvex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9b81607fb05a9b8160 /* PtCollisionConvex.cpp */; }; - FFFF5a9b81c87fb05a9b81c8 /* PtCollisionMesh.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9b81c87fb05a9b81c8 /* PtCollisionMesh.cpp */; }; - FFFF5a9b82307fb05a9b8230 /* PtCollisionPlane.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9b82307fb05a9b8230 /* PtCollisionPlane.cpp */; }; - FFFF5a9b82987fb05a9b8298 /* PtCollisionSphere.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9b82987fb05a9b8298 /* PtCollisionSphere.cpp */; }; - FFFF5a9b83007fb05a9b8300 /* PtContextCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9b83007fb05a9b8300 /* PtContextCpu.cpp */; }; - FFFF5a9b83687fb05a9b8368 /* PtDynamics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9b83687fb05a9b8368 /* PtDynamics.cpp */; }; - FFFF5a9b83d07fb05a9b83d0 /* PtParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9b83d07fb05a9b83d0 /* PtParticleData.cpp */; }; - FFFF5a9b84387fb05a9b8438 /* PtParticleShapeCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9b84387fb05a9b8438 /* PtParticleShapeCpu.cpp */; }; - FFFF5a9b84a07fb05a9b84a0 /* PtParticleSystemSimCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9b84a07fb05a9b84a0 /* PtParticleSystemSimCpu.cpp */; }; - FFFF5a9b85087fb05a9b8508 /* PtSpatialHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9b85087fb05a9b8508 /* PtSpatialHash.cpp */; }; - FFFF5a9b85707fb05a9b8570 /* PtSpatialLocalHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a9b85707fb05a9b8570 /* PtSpatialLocalHash.cpp */; }; + FFFFee024f587febee024f58 /* PtBatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee024f587febee024f58 /* PtBatcher.cpp */; }; + FFFFee024fc07febee024fc0 /* PtBodyTransformVault.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee024fc07febee024fc0 /* PtBodyTransformVault.cpp */; }; + FFFFee0250287febee025028 /* PtCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0250287febee025028 /* PtCollision.cpp */; }; + FFFFee0250907febee025090 /* PtCollisionBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0250907febee025090 /* PtCollisionBox.cpp */; }; + FFFFee0250f87febee0250f8 /* PtCollisionCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0250f87febee0250f8 /* PtCollisionCapsule.cpp */; }; + FFFFee0251607febee025160 /* PtCollisionConvex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0251607febee025160 /* PtCollisionConvex.cpp */; }; + FFFFee0251c87febee0251c8 /* PtCollisionMesh.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0251c87febee0251c8 /* PtCollisionMesh.cpp */; }; + FFFFee0252307febee025230 /* PtCollisionPlane.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0252307febee025230 /* PtCollisionPlane.cpp */; }; + FFFFee0252987febee025298 /* PtCollisionSphere.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0252987febee025298 /* PtCollisionSphere.cpp */; }; + FFFFee0253007febee025300 /* PtContextCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0253007febee025300 /* PtContextCpu.cpp */; }; + FFFFee0253687febee025368 /* PtDynamics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0253687febee025368 /* PtDynamics.cpp */; }; + FFFFee0253d07febee0253d0 /* PtParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0253d07febee0253d0 /* PtParticleData.cpp */; }; + FFFFee0254387febee025438 /* PtParticleShapeCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0254387febee025438 /* PtParticleShapeCpu.cpp */; }; + FFFFee0254a07febee0254a0 /* PtParticleSystemSimCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0254a07febee0254a0 /* PtParticleSystemSimCpu.cpp */; }; + FFFFee0255087febee025508 /* PtSpatialHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0255087febee025508 /* PtSpatialHash.cpp */; }; + FFFFee0255707febee025570 /* PtSpatialLocalHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0255707febee025570 /* PtSpatialLocalHash.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD5b322ac07fb05b322ac0 /* LowLevelParticles */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelParticles"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD5a9ae0007fb05a9ae000 /* PtBodyTransformVault.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.h"; path = "../../LowLevelParticles/include/PtBodyTransformVault.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ae0687fb05a9ae068 /* PtContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContext.h"; path = "../../LowLevelParticles/include/PtContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ae0d07fb05a9ae0d0 /* PtGridCellVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtGridCellVector.h"; path = "../../LowLevelParticles/include/PtGridCellVector.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ae1387fb05a9ae138 /* PtParticle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticle.h"; path = "../../LowLevelParticles/include/PtParticle.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ae1a07fb05a9ae1a0 /* PtParticleContactManagerStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleContactManagerStream.h"; path = "../../LowLevelParticles/include/PtParticleContactManagerStream.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ae2087fb05a9ae208 /* PtParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.h"; path = "../../LowLevelParticles/include/PtParticleData.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ae2707fb05a9ae270 /* PtParticleShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShape.h"; path = "../../LowLevelParticles/include/PtParticleShape.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ae2d87fb05a9ae2d8 /* PtParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemCore.h"; path = "../../LowLevelParticles/include/PtParticleSystemCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ae3407fb05a9ae340 /* PtParticleSystemFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemFlags.h"; path = "../../LowLevelParticles/include/PtParticleSystemFlags.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9ae3a87fb05a9ae3a8 /* PtParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSim.h"; path = "../../LowLevelParticles/include/PtParticleSystemSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9b76007fb05a9b7600 /* PtBatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.h"; path = "../../LowLevelParticles/src/PtBatcher.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9b76687fb05a9b7668 /* PtCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.h"; path = "../../LowLevelParticles/src/PtCollision.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9b76d07fb05a9b76d0 /* PtCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionData.h"; path = "../../LowLevelParticles/src/PtCollisionData.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9b77387fb05a9b7738 /* PtCollisionHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionHelper.h"; path = "../../LowLevelParticles/src/PtCollisionHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9b77a07fb05a9b77a0 /* PtCollisionMethods.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMethods.h"; path = "../../LowLevelParticles/src/PtCollisionMethods.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9b78087fb05a9b7808 /* PtCollisionParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionParameters.h"; path = "../../LowLevelParticles/src/PtCollisionParameters.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9b78707fb05a9b7870 /* PtConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConfig.h"; path = "../../LowLevelParticles/src/PtConfig.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9b78d87fb05a9b78d8 /* PtConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConstants.h"; path = "../../LowLevelParticles/src/PtConstants.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9b79407fb05a9b7940 /* PtContextCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.h"; path = "../../LowLevelParticles/src/PtContextCpu.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9b79a87fb05a9b79a8 /* PtDynamicHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicHelper.h"; path = "../../LowLevelParticles/src/PtDynamicHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9b7a107fb05a9b7a10 /* PtDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.h"; path = "../../LowLevelParticles/src/PtDynamics.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9b7a787fb05a9b7a78 /* PtDynamicsKernels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsKernels.h"; path = "../../LowLevelParticles/src/PtDynamicsKernels.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9b7ae07fb05a9b7ae0 /* PtDynamicsParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsParameters.h"; path = "../../LowLevelParticles/src/PtDynamicsParameters.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9b7b487fb05a9b7b48 /* PtDynamicsTempBuffers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsTempBuffers.h"; path = "../../LowLevelParticles/src/PtDynamicsTempBuffers.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9b7bb07fb05a9b7bb0 /* PtHeightFieldAabbTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtHeightFieldAabbTest.h"; path = "../../LowLevelParticles/src/PtHeightFieldAabbTest.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9b7c187fb05a9b7c18 /* PtPacketSections.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtPacketSections.h"; path = "../../LowLevelParticles/src/PtPacketSections.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9b7c807fb05a9b7c80 /* PtParticleCell.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleCell.h"; path = "../../LowLevelParticles/src/PtParticleCell.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9b7ce87fb05a9b7ce8 /* PtParticleOpcodeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleOpcodeCache.h"; path = "../../LowLevelParticles/src/PtParticleOpcodeCache.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9b7d507fb05a9b7d50 /* PtParticleShapeCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.h"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9b7db87fb05a9b7db8 /* PtParticleSystemSimCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.h"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9b7e207fb05a9b7e20 /* PtSpatialHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.h"; path = "../../LowLevelParticles/src/PtSpatialHash.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9b7e887fb05a9b7e88 /* PtSpatialHashHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHashHelper.h"; path = "../../LowLevelParticles/src/PtSpatialHashHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9b7ef07fb05a9b7ef0 /* PtTwoWayData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtTwoWayData.h"; path = "../../LowLevelParticles/src/PtTwoWayData.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a9b7f587fb05a9b7f58 /* PtBatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.cpp"; path = "../../LowLevelParticles/src/PtBatcher.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9b7fc07fb05a9b7fc0 /* PtBodyTransformVault.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.cpp"; path = "../../LowLevelParticles/src/PtBodyTransformVault.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9b80287fb05a9b8028 /* PtCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.cpp"; path = "../../LowLevelParticles/src/PtCollision.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9b80907fb05a9b8090 /* PtCollisionBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionBox.cpp"; path = "../../LowLevelParticles/src/PtCollisionBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9b80f87fb05a9b80f8 /* PtCollisionCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionCapsule.cpp"; path = "../../LowLevelParticles/src/PtCollisionCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9b81607fb05a9b8160 /* PtCollisionConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionConvex.cpp"; path = "../../LowLevelParticles/src/PtCollisionConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9b81c87fb05a9b81c8 /* PtCollisionMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMesh.cpp"; path = "../../LowLevelParticles/src/PtCollisionMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9b82307fb05a9b8230 /* PtCollisionPlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionPlane.cpp"; path = "../../LowLevelParticles/src/PtCollisionPlane.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9b82987fb05a9b8298 /* PtCollisionSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionSphere.cpp"; path = "../../LowLevelParticles/src/PtCollisionSphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9b83007fb05a9b8300 /* PtContextCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.cpp"; path = "../../LowLevelParticles/src/PtContextCpu.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9b83687fb05a9b8368 /* PtDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.cpp"; path = "../../LowLevelParticles/src/PtDynamics.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9b83d07fb05a9b83d0 /* PtParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.cpp"; path = "../../LowLevelParticles/src/PtParticleData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9b84387fb05a9b8438 /* PtParticleShapeCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9b84a07fb05a9b84a0 /* PtParticleSystemSimCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9b85087fb05a9b8508 /* PtSpatialHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialHash.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a9b85707fb05a9b8570 /* PtSpatialLocalHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialLocalHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialLocalHash.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed7001c07febed7001c0 /* LowLevelParticles */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelParticles"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDee02b0007febee02b000 /* PtBodyTransformVault.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.h"; path = "../../LowLevelParticles/include/PtBodyTransformVault.h"; sourceTree = SOURCE_ROOT; }; + FFFDee02b0687febee02b068 /* PtContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContext.h"; path = "../../LowLevelParticles/include/PtContext.h"; sourceTree = SOURCE_ROOT; }; + FFFDee02b0d07febee02b0d0 /* PtGridCellVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtGridCellVector.h"; path = "../../LowLevelParticles/include/PtGridCellVector.h"; sourceTree = SOURCE_ROOT; }; + FFFDee02b1387febee02b138 /* PtParticle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticle.h"; path = "../../LowLevelParticles/include/PtParticle.h"; sourceTree = SOURCE_ROOT; }; + FFFDee02b1a07febee02b1a0 /* PtParticleContactManagerStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleContactManagerStream.h"; path = "../../LowLevelParticles/include/PtParticleContactManagerStream.h"; sourceTree = SOURCE_ROOT; }; + FFFDee02b2087febee02b208 /* PtParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.h"; path = "../../LowLevelParticles/include/PtParticleData.h"; sourceTree = SOURCE_ROOT; }; + FFFDee02b2707febee02b270 /* PtParticleShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShape.h"; path = "../../LowLevelParticles/include/PtParticleShape.h"; sourceTree = SOURCE_ROOT; }; + FFFDee02b2d87febee02b2d8 /* PtParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemCore.h"; path = "../../LowLevelParticles/include/PtParticleSystemCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDee02b3407febee02b340 /* PtParticleSystemFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemFlags.h"; path = "../../LowLevelParticles/include/PtParticleSystemFlags.h"; sourceTree = SOURCE_ROOT; }; + FFFDee02b3a87febee02b3a8 /* PtParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSim.h"; path = "../../LowLevelParticles/include/PtParticleSystemSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDee0246007febee024600 /* PtBatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.h"; path = "../../LowLevelParticles/src/PtBatcher.h"; sourceTree = SOURCE_ROOT; }; + FFFDee0246687febee024668 /* PtCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.h"; path = "../../LowLevelParticles/src/PtCollision.h"; sourceTree = SOURCE_ROOT; }; + FFFDee0246d07febee0246d0 /* PtCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionData.h"; path = "../../LowLevelParticles/src/PtCollisionData.h"; sourceTree = SOURCE_ROOT; }; + FFFDee0247387febee024738 /* PtCollisionHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionHelper.h"; path = "../../LowLevelParticles/src/PtCollisionHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFDee0247a07febee0247a0 /* PtCollisionMethods.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMethods.h"; path = "../../LowLevelParticles/src/PtCollisionMethods.h"; sourceTree = SOURCE_ROOT; }; + FFFDee0248087febee024808 /* PtCollisionParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionParameters.h"; path = "../../LowLevelParticles/src/PtCollisionParameters.h"; sourceTree = SOURCE_ROOT; }; + FFFDee0248707febee024870 /* PtConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConfig.h"; path = "../../LowLevelParticles/src/PtConfig.h"; sourceTree = SOURCE_ROOT; }; + FFFDee0248d87febee0248d8 /* PtConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConstants.h"; path = "../../LowLevelParticles/src/PtConstants.h"; sourceTree = SOURCE_ROOT; }; + FFFDee0249407febee024940 /* PtContextCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.h"; path = "../../LowLevelParticles/src/PtContextCpu.h"; sourceTree = SOURCE_ROOT; }; + FFFDee0249a87febee0249a8 /* PtDynamicHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicHelper.h"; path = "../../LowLevelParticles/src/PtDynamicHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFDee024a107febee024a10 /* PtDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.h"; path = "../../LowLevelParticles/src/PtDynamics.h"; sourceTree = SOURCE_ROOT; }; + FFFDee024a787febee024a78 /* PtDynamicsKernels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsKernels.h"; path = "../../LowLevelParticles/src/PtDynamicsKernels.h"; sourceTree = SOURCE_ROOT; }; + FFFDee024ae07febee024ae0 /* PtDynamicsParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsParameters.h"; path = "../../LowLevelParticles/src/PtDynamicsParameters.h"; sourceTree = SOURCE_ROOT; }; + FFFDee024b487febee024b48 /* PtDynamicsTempBuffers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsTempBuffers.h"; path = "../../LowLevelParticles/src/PtDynamicsTempBuffers.h"; sourceTree = SOURCE_ROOT; }; + FFFDee024bb07febee024bb0 /* PtHeightFieldAabbTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtHeightFieldAabbTest.h"; path = "../../LowLevelParticles/src/PtHeightFieldAabbTest.h"; sourceTree = SOURCE_ROOT; }; + FFFDee024c187febee024c18 /* PtPacketSections.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtPacketSections.h"; path = "../../LowLevelParticles/src/PtPacketSections.h"; sourceTree = SOURCE_ROOT; }; + FFFDee024c807febee024c80 /* PtParticleCell.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleCell.h"; path = "../../LowLevelParticles/src/PtParticleCell.h"; sourceTree = SOURCE_ROOT; }; + FFFDee024ce87febee024ce8 /* PtParticleOpcodeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleOpcodeCache.h"; path = "../../LowLevelParticles/src/PtParticleOpcodeCache.h"; sourceTree = SOURCE_ROOT; }; + FFFDee024d507febee024d50 /* PtParticleShapeCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.h"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.h"; sourceTree = SOURCE_ROOT; }; + FFFDee024db87febee024db8 /* PtParticleSystemSimCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.h"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.h"; sourceTree = SOURCE_ROOT; }; + FFFDee024e207febee024e20 /* PtSpatialHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.h"; path = "../../LowLevelParticles/src/PtSpatialHash.h"; sourceTree = SOURCE_ROOT; }; + FFFDee024e887febee024e88 /* PtSpatialHashHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHashHelper.h"; path = "../../LowLevelParticles/src/PtSpatialHashHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFDee024ef07febee024ef0 /* PtTwoWayData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtTwoWayData.h"; path = "../../LowLevelParticles/src/PtTwoWayData.h"; sourceTree = SOURCE_ROOT; }; + FFFDee024f587febee024f58 /* PtBatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.cpp"; path = "../../LowLevelParticles/src/PtBatcher.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDee024fc07febee024fc0 /* PtBodyTransformVault.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.cpp"; path = "../../LowLevelParticles/src/PtBodyTransformVault.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDee0250287febee025028 /* PtCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.cpp"; path = "../../LowLevelParticles/src/PtCollision.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDee0250907febee025090 /* PtCollisionBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionBox.cpp"; path = "../../LowLevelParticles/src/PtCollisionBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDee0250f87febee0250f8 /* PtCollisionCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionCapsule.cpp"; path = "../../LowLevelParticles/src/PtCollisionCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDee0251607febee025160 /* PtCollisionConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionConvex.cpp"; path = "../../LowLevelParticles/src/PtCollisionConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDee0251c87febee0251c8 /* PtCollisionMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMesh.cpp"; path = "../../LowLevelParticles/src/PtCollisionMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDee0252307febee025230 /* PtCollisionPlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionPlane.cpp"; path = "../../LowLevelParticles/src/PtCollisionPlane.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDee0252987febee025298 /* PtCollisionSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionSphere.cpp"; path = "../../LowLevelParticles/src/PtCollisionSphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDee0253007febee025300 /* PtContextCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.cpp"; path = "../../LowLevelParticles/src/PtContextCpu.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDee0253687febee025368 /* PtDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.cpp"; path = "../../LowLevelParticles/src/PtDynamics.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDee0253d07febee0253d0 /* PtParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.cpp"; path = "../../LowLevelParticles/src/PtParticleData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDee0254387febee025438 /* PtParticleShapeCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDee0254a07febee0254a0 /* PtParticleSystemSimCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDee0255087febee025508 /* PtSpatialHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialHash.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDee0255707febee025570 /* PtSpatialLocalHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialLocalHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialLocalHash.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF25b322ac07fb05b322ac0 /* Resources */ = { + FFF2ed7001c07febed7001c0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2885,7 +2885,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC5b322ac07fb05b322ac0 /* Frameworks */ = { + FFFCed7001c07febed7001c0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2895,26 +2895,26 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF85b322ac07fb05b322ac0 /* Sources */ = { + FFF8ed7001c07febed7001c0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF5a9b7f587fb05a9b7f58, - FFFF5a9b7fc07fb05a9b7fc0, - FFFF5a9b80287fb05a9b8028, - FFFF5a9b80907fb05a9b8090, - FFFF5a9b80f87fb05a9b80f8, - FFFF5a9b81607fb05a9b8160, - FFFF5a9b81c87fb05a9b81c8, - FFFF5a9b82307fb05a9b8230, - FFFF5a9b82987fb05a9b8298, - FFFF5a9b83007fb05a9b8300, - FFFF5a9b83687fb05a9b8368, - FFFF5a9b83d07fb05a9b83d0, - FFFF5a9b84387fb05a9b8438, - FFFF5a9b84a07fb05a9b84a0, - FFFF5a9b85087fb05a9b8508, - FFFF5a9b85707fb05a9b8570, + FFFFee024f587febee024f58, + FFFFee024fc07febee024fc0, + FFFFee0250287febee025028, + FFFFee0250907febee025090, + FFFFee0250f87febee0250f8, + FFFFee0251607febee025160, + FFFFee0251c87febee0251c8, + FFFFee0252307febee025230, + FFFFee0252987febee025298, + FFFFee0253007febee025300, + FFFFee0253687febee025368, + FFFFee0253d07febee0253d0, + FFFFee0254387febee025438, + FFFFee0254a07febee0254a0, + FFFFee0255087febee025508, + FFFFee0255707febee025570, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2926,22 +2926,22 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PxTask */ - FFFF5c8373c07fb05c8373c0 /* src/TaskManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c8373c07fb05c8373c0 /* src/TaskManager.cpp */; }; + FFFFed45c4207febed45c420 /* src/TaskManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDed45c4207febed45c420 /* src/TaskManager.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD5c8302207fb05c830220 /* PxTask */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxTask"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD5c837a607fb05c837a60 /* PxCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCpuDispatcher.h"; path = "../../../../PxShared/include/task/PxCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; - FFFD5c837ac87fb05c837ac8 /* PxGpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuDispatcher.h"; path = "../../../../PxShared/include/task/PxGpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; - FFFD5c837b307fb05c837b30 /* PxGpuTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuTask.h"; path = "../../../../PxShared/include/task/PxGpuTask.h"; sourceTree = SOURCE_ROOT; }; - FFFD5c837b987fb05c837b98 /* PxTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTask.h"; path = "../../../../PxShared/include/task/PxTask.h"; sourceTree = SOURCE_ROOT; }; - FFFD5c837c007fb05c837c00 /* PxTaskDefine.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskDefine.h"; path = "../../../../PxShared/include/task/PxTaskDefine.h"; sourceTree = SOURCE_ROOT; }; - FFFD5c837c687fb05c837c68 /* PxTaskManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskManager.h"; path = "../../../../PxShared/include/task/PxTaskManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD5c8373c07fb05c8373c0 /* src/TaskManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/TaskManager.cpp"; path = "../../../../PxShared/src/task/src/TaskManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDed488fe07febed488fe0 /* PxTask */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxTask"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDed45a9207febed45a920 /* PxCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCpuDispatcher.h"; path = "../../../../PxShared/include/task/PxCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; + FFFDed45a9887febed45a988 /* PxGpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuDispatcher.h"; path = "../../../../PxShared/include/task/PxGpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; + FFFDed45a9f07febed45a9f0 /* PxGpuTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuTask.h"; path = "../../../../PxShared/include/task/PxGpuTask.h"; sourceTree = SOURCE_ROOT; }; + FFFDed45aa587febed45aa58 /* PxTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTask.h"; path = "../../../../PxShared/include/task/PxTask.h"; sourceTree = SOURCE_ROOT; }; + FFFDed45aac07febed45aac0 /* PxTaskDefine.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskDefine.h"; path = "../../../../PxShared/include/task/PxTaskDefine.h"; sourceTree = SOURCE_ROOT; }; + FFFDed45ab287febed45ab28 /* PxTaskManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskManager.h"; path = "../../../../PxShared/include/task/PxTaskManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDed45c4207febed45c420 /* 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 */ - FFF25c8302207fb05c830220 /* Resources */ = { + FFF2ed488fe07febed488fe0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2951,7 +2951,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC5c8302207fb05c830220 /* Frameworks */ = { + FFFCed488fe07febed488fe0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2961,11 +2961,11 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF85c8302207fb05c830220 /* Sources */ = { + FFF8ed488fe07febed488fe0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF5c8373c07fb05c8373c0, + FFFFed45c4207febed45c420, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2977,17 +2977,17 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PsFastXml */ - FFFF5cb35e607fb05cb35e60 /* PsFastXml.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5cb35e607fb05cb35e60 /* PsFastXml.cpp */; }; + FFFFebe987707febebe98770 /* PsFastXml.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDebe987707febebe98770 /* PsFastXml.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD5cb3a3f07fb05cb3a3f0 /* PsFastXml */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PsFastXml"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD5cb35ed07fb05cb35ed0 /* PsFastXml.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PsFastXml.h"; path = "../../../../PxShared/src/fastxml/include/PsFastXml.h"; sourceTree = SOURCE_ROOT; }; - FFFD5cb35e607fb05cb35e60 /* PsFastXml.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PsFastXml.cpp"; path = "../../../../PxShared/src/fastxml/src/PsFastXml.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDebe97fd07febebe97fd0 /* PsFastXml */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PsFastXml"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDebe986707febebe98670 /* PsFastXml.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PsFastXml.h"; path = "../../../../PxShared/src/fastxml/include/PsFastXml.h"; sourceTree = SOURCE_ROOT; }; + FFFDebe987707febebe98770 /* 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 */ - FFF25cb3a3f07fb05cb3a3f0 /* Resources */ = { + FFF2ebe97fd07febebe97fd0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2997,7 +2997,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC5cb3a3f07fb05cb3a3f0 /* Frameworks */ = { + FFFCebe97fd07febebe97fd0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -3007,11 +3007,11 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF85cb3a3f07fb05cb3a3f0 /* Sources */ = { + FFF8ebe97fd07febebe97fd0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF5cb35e607fb05cb35e60, + FFFFebe987707febebe98770, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -3023,1967 +3023,1967 @@ /* End PBXTargetDependency section */ /* Begin PBXContainerItemProxy section */ - FFF55cb2e4807fb05cb2e480 /* PBXContainerItemProxy */ = { - containerPortal = FFF95a4828f07fb05a4828f0 /* Project object */; + FFF5ebe9b7407febebe9b740 /* PBXContainerItemProxy */ = { + containerPortal = FFF9ebf0fa507febebf0fa50 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA5cb2e4807fb05cb2e480 /* PhysX */; + remoteGlobalIDString = FFFAebe9b7407febebe9b740 /* PhysX */; remoteInfo = "PhysX"; }; - FFF55cb4fa707fb05cb4fa70 /* PBXContainerItemProxy */ = { - containerPortal = FFF95a4828f07fb05a4828f0 /* Project object */; + FFF5ebea7f407febebea7f40 /* PBXContainerItemProxy */ = { + containerPortal = FFF9ebf0fa507febebf0fa50 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA5cb4fa707fb05cb4fa70 /* PhysXCharacterKinematic */; + remoteGlobalIDString = FFFAebea7f407febebea7f40 /* PhysXCharacterKinematic */; remoteInfo = "PhysXCharacterKinematic"; }; - FFF55cb50f307fb05cb50f30 /* PBXContainerItemProxy */ = { - containerPortal = FFF95a4828f07fb05a4828f0 /* Project object */; + FFF5ebea52007febebea5200 /* PBXContainerItemProxy */ = { + containerPortal = FFF9ebf0fa507febebf0fa50 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA5cb50f307fb05cb50f30 /* PhysXVehicle */; + remoteGlobalIDString = FFFAebea52007febebea5200 /* PhysXVehicle */; remoteInfo = "PhysXVehicle"; }; - FFF55cb609d07fb05cb609d0 /* PBXContainerItemProxy */ = { - containerPortal = FFF95a4828f07fb05a4828f0 /* Project object */; + FFF5ebeb68107febebeb6810 /* PBXContainerItemProxy */ = { + containerPortal = FFF9ebf0fa507febebf0fa50 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA5cb609d07fb05cb609d0 /* PhysXExtensions */; + remoteGlobalIDString = FFFAebeb68107febebeb6810 /* PhysXExtensions */; remoteInfo = "PhysXExtensions"; }; - FFF55cb732c07fb05cb732c0 /* PBXContainerItemProxy */ = { - containerPortal = FFF95a4828f07fb05a4828f0 /* Project object */; + FFF5ebec79007febebec7900 /* PBXContainerItemProxy */ = { + containerPortal = FFF9ebf0fa507febebf0fa50 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA5cb732c07fb05cb732c0 /* SceneQuery */; + remoteGlobalIDString = FFFAebec79007febebec7900 /* SceneQuery */; remoteInfo = "SceneQuery"; }; - FFF55cb778e07fb05cb778e0 /* PBXContainerItemProxy */ = { - containerPortal = FFF95a4828f07fb05a4828f0 /* Project object */; + FFF5ebecbe607febebecbe60 /* PBXContainerItemProxy */ = { + containerPortal = FFF9ebf0fa507febebf0fa50 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA5cb778e07fb05cb778e0 /* SimulationController */; + remoteGlobalIDString = FFFAebecbe607febebecbe60 /* SimulationController */; remoteInfo = "SimulationController"; }; - FFF55cb7c7007fb05cb7c700 /* PBXContainerItemProxy */ = { - containerPortal = FFF95a4828f07fb05a4828f0 /* Project object */; + FFF5ebed04c07febebed04c0 /* PBXContainerItemProxy */ = { + containerPortal = FFF9ebf0fa507febebf0fa50 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA5cb7c7007fb05cb7c700 /* PhysXCooking */; + remoteGlobalIDString = FFFAebed04c07febebed04c0 /* PhysXCooking */; remoteInfo = "PhysXCooking"; }; - FFF55b2fb4e07fb05b2fb4e0 /* PBXContainerItemProxy */ = { - containerPortal = FFF95a4828f07fb05a4828f0 /* Project object */; + FFF5ed146af07febed146af0 /* PBXContainerItemProxy */ = { + containerPortal = FFF9ebf0fa507febebf0fa50 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA5b2fb4e07fb05b2fb4e0 /* PhysXCommon */; + remoteGlobalIDString = FFFAed146af07febed146af0 /* PhysXCommon */; remoteInfo = "PhysXCommon"; }; - FFF55b080a507fb05b080a50 /* PBXContainerItemProxy */ = { - containerPortal = FFF95a4828f07fb05a4828f0 /* Project object */; + FFF5ed13dc907febed13dc90 /* PBXContainerItemProxy */ = { + containerPortal = FFF9ebf0fa507febebf0fa50 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA5b080a507fb05b080a50 /* PxFoundation */; + remoteGlobalIDString = FFFAed13dc907febed13dc90 /* PxFoundation */; remoteInfo = "PxFoundation"; }; - FFF55b4338707fb05b433870 /* PBXContainerItemProxy */ = { - containerPortal = FFF95a4828f07fb05a4828f0 /* Project object */; + FFF5ebc7a0b07febebc7a0b0 /* PBXContainerItemProxy */ = { + containerPortal = FFF9ebf0fa507febebf0fa50 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA5b4338707fb05b433870 /* PxPvdSDK */; + remoteGlobalIDString = FFFAebc7a0b07febebc7a0b0 /* PxPvdSDK */; remoteInfo = "PxPvdSDK"; }; - FFF55b308fd07fb05b308fd0 /* PBXContainerItemProxy */ = { - containerPortal = FFF95a4828f07fb05a4828f0 /* Project object */; + FFF5ebe3bcb07febebe3bcb0 /* PBXContainerItemProxy */ = { + containerPortal = FFF9ebf0fa507febebf0fa50 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA5b308fd07fb05b308fd0 /* LowLevel */; + remoteGlobalIDString = FFFAebe3bcb07febebe3bcb0 /* LowLevel */; remoteInfo = "LowLevel"; }; - FFF55c8058807fb05c805880 /* PBXContainerItemProxy */ = { - containerPortal = FFF95a4828f07fb05a4828f0 /* Project object */; + FFF5ed432ce07febed432ce0 /* PBXContainerItemProxy */ = { + containerPortal = FFF9ebf0fa507febebf0fa50 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA5c8058807fb05c805880 /* LowLevelAABB */; + remoteGlobalIDString = FFFAed432ce07febed432ce0 /* LowLevelAABB */; remoteInfo = "LowLevelAABB"; }; - FFF55b45afc07fb05b45afc0 /* PBXContainerItemProxy */ = { - containerPortal = FFF95a4828f07fb05a4828f0 /* Project object */; + FFF5ebe6c9d07febebe6c9d0 /* PBXContainerItemProxy */ = { + containerPortal = FFF9ebf0fa507febebf0fa50 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA5b45afc07fb05b45afc0 /* LowLevelDynamics */; + remoteGlobalIDString = FFFAebe6c9d07febebe6c9d0 /* LowLevelDynamics */; remoteInfo = "LowLevelDynamics"; }; - FFF55c8281f07fb05c8281f0 /* PBXContainerItemProxy */ = { - containerPortal = FFF95a4828f07fb05a4828f0 /* Project object */; + FFF5ed443c607febed443c60 /* PBXContainerItemProxy */ = { + containerPortal = FFF9ebf0fa507febebf0fa50 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA5c8281f07fb05c8281f0 /* LowLevelCloth */; + remoteGlobalIDString = FFFAed443c607febed443c60 /* LowLevelCloth */; remoteInfo = "LowLevelCloth"; }; - FFF55b322ac07fb05b322ac0 /* PBXContainerItemProxy */ = { - containerPortal = FFF95a4828f07fb05a4828f0 /* Project object */; + FFF5ed7001c07febed7001c0 /* PBXContainerItemProxy */ = { + containerPortal = FFF9ebf0fa507febebf0fa50 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA5b322ac07fb05b322ac0 /* LowLevelParticles */; + remoteGlobalIDString = FFFAed7001c07febed7001c0 /* LowLevelParticles */; remoteInfo = "LowLevelParticles"; }; - FFF55c8302207fb05c830220 /* PBXContainerItemProxy */ = { - containerPortal = FFF95a4828f07fb05a4828f0 /* Project object */; + FFF5ed488fe07febed488fe0 /* PBXContainerItemProxy */ = { + containerPortal = FFF9ebf0fa507febebf0fa50 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA5c8302207fb05c830220 /* PxTask */; + remoteGlobalIDString = FFFAed488fe07febed488fe0 /* PxTask */; remoteInfo = "PxTask"; }; - FFF55cb3a3f07fb05cb3a3f0 /* PBXContainerItemProxy */ = { - containerPortal = FFF95a4828f07fb05a4828f0 /* Project object */; + FFF5ebe97fd07febebe97fd0 /* PBXContainerItemProxy */ = { + containerPortal = FFF9ebf0fa507febebf0fa50 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA5cb3a3f07fb05cb3a3f0 /* PsFastXml */; + remoteGlobalIDString = FFFAebe97fd07febebe97fd0 /* PsFastXml */; remoteInfo = "PsFastXml"; }; /* End PBXContainerItemProxy section */ /* Begin PBXGroup section */ - FFFB5a4829587fb05a482958 /* PhysX */ = { + FFFBebf0fab87febebf0fab8 /* PhysX */ = { isa = PBXGroup; children = ( - FFF05a4828f07fb05a4828f0 /* Source */, - FFEE5a4828f07fb05a4828f0 /* Products */, + FFF0ebf0fa507febebf0fa50 /* Source */, + FFEEebf0fa507febebf0fa50 /* Products */, ); name = "PhysX"; sourceTree = "<group>"; }; - FFF05a4828f07fb05a4828f0 /* Source */ = { + FFF0ebf0fa507febebf0fa50 /* Source */ = { isa = PBXGroup; children = ( - FFFB5cb2e4807fb05cb2e480, - FFFB5cb4fa707fb05cb4fa70, - FFFB5cb50f307fb05cb50f30, - FFFB5cb609d07fb05cb609d0, - FFFB5cb732c07fb05cb732c0, - FFFB5cb778e07fb05cb778e0, - FFFB5cb7c7007fb05cb7c700, - FFFB5b2fb4e07fb05b2fb4e0, - FFFB5b080a507fb05b080a50, - FFFB5b4338707fb05b433870, - FFFB5b308fd07fb05b308fd0, - FFFB5c8058807fb05c805880, - FFFB5b45afc07fb05b45afc0, - FFFB5c8281f07fb05c8281f0, - FFFB5b322ac07fb05b322ac0, - FFFB5c8302207fb05c830220, - FFFB5cb3a3f07fb05cb3a3f0, + FFFBebe9b7407febebe9b740, + FFFBebea7f407febebea7f40, + FFFBebea52007febebea5200, + FFFBebeb68107febebeb6810, + FFFBebec79007febebec7900, + FFFBebecbe607febebecbe60, + FFFBebed04c07febebed04c0, + FFFBed146af07febed146af0, + FFFBed13dc907febed13dc90, + FFFBebc7a0b07febebc7a0b0, + FFFBebe3bcb07febebe3bcb0, + FFFBed432ce07febed432ce0, + FFFBebe6c9d07febebe6c9d0, + FFFBed443c607febed443c60, + FFFBed7001c07febed7001c0, + FFFBed488fe07febed488fe0, + FFFBebe97fd07febebe97fd0, ); name = Source; sourceTree = "<group>"; }; - FFEE5a4828f07fb05a4828f0 /* Products */ = { + FFEEebf0fa507febebf0fa50 /* Products */ = { isa = PBXGroup; children = ( - FFFD5cb2e4807fb05cb2e480, - FFFD5cb4fa707fb05cb4fa70, - FFFD5cb50f307fb05cb50f30, - FFFD5cb609d07fb05cb609d0, - FFFD5cb732c07fb05cb732c0, - FFFD5cb778e07fb05cb778e0, - FFFD5cb7c7007fb05cb7c700, - FFFD5b2fb4e07fb05b2fb4e0, - FFFD5b080a507fb05b080a50, - FFFD5b4338707fb05b433870, - FFFD5b308fd07fb05b308fd0, - FFFD5c8058807fb05c805880, - FFFD5b45afc07fb05b45afc0, - FFFD5c8281f07fb05c8281f0, - FFFD5b322ac07fb05b322ac0, - FFFD5c8302207fb05c830220, - FFFD5cb3a3f07fb05cb3a3f0, + FFFDebe9b7407febebe9b740, + FFFDebea7f407febebea7f40, + FFFDebea52007febebea5200, + FFFDebeb68107febebeb6810, + FFFDebec79007febebec7900, + FFFDebecbe607febebecbe60, + FFFDebed04c07febebed04c0, + FFFDed146af07febed146af0, + FFFDed13dc907febed13dc90, + FFFDebc7a0b07febebc7a0b0, + FFFDebe3bcb07febebe3bcb0, + FFFDed432ce07febed432ce0, + FFFDebe6c9d07febebe6c9d0, + FFFDed443c607febed443c60, + FFFDed7001c07febed7001c0, + FFFDed488fe07febed488fe0, + FFFDebe97fd07febebe97fd0, ); name = Products; sourceTree = "<group>"; }; - FFFB5cb2e4807fb05cb2e480 /* PhysX */ = { + FFFBebe9b7407febebe9b740 /* PhysX */ = { isa = PBXGroup; children = ( - FFFB5cb578807fb05cb57880 /* src */, - FFFB5cb578a87fb05cb578a8 /* include */, - FFFB5cb578d07fb05cb578d0 /* metadata */, + FFFBebeabc207febebeabc20 /* src */, + FFFBebeabc487febebeabc48 /* include */, + FFFBebeabc707febebeabc70 /* metadata */, ); name = "PhysX"; sourceTree = "<group>"; }; - FFFB5cb578807fb05cb57880 /* src */ = { + FFFBebeabc207febebeabc20 /* src */ = { isa = PBXGroup; children = ( - FFFD5a9e32007fb05a9e3200 /* NpActor.h */, - FFFD5a9e32687fb05a9e3268 /* NpActorTemplate.h */, - FFFD5a9e32d07fb05a9e32d0 /* NpAggregate.h */, - FFFD5a9e33387fb05a9e3338 /* NpArticulation.h */, - FFFD5a9e33a07fb05a9e33a0 /* NpArticulationJoint.h */, - FFFD5a9e34087fb05a9e3408 /* NpArticulationLink.h */, - FFFD5a9e34707fb05a9e3470 /* NpBatchQuery.h */, - FFFD5a9e34d87fb05a9e34d8 /* NpCast.h */, - FFFD5a9e35407fb05a9e3540 /* NpConnector.h */, - FFFD5a9e35a87fb05a9e35a8 /* NpConstraint.h */, - FFFD5a9e36107fb05a9e3610 /* NpFactory.h */, - FFFD5a9e36787fb05a9e3678 /* NpMaterial.h */, - FFFD5a9e36e07fb05a9e36e0 /* NpMaterialManager.h */, - FFFD5a9e37487fb05a9e3748 /* NpPhysics.h */, - FFFD5a9e37b07fb05a9e37b0 /* NpPhysicsInsertionCallback.h */, - FFFD5a9e38187fb05a9e3818 /* NpPtrTableStorageManager.h */, - FFFD5a9e38807fb05a9e3880 /* NpPvdSceneQueryCollector.h */, - FFFD5a9e38e87fb05a9e38e8 /* NpQueryShared.h */, - FFFD5a9e39507fb05a9e3950 /* NpReadCheck.h */, - FFFD5a9e39b87fb05a9e39b8 /* NpRigidActorTemplate.h */, - FFFD5a9e3a207fb05a9e3a20 /* NpRigidActorTemplateInternal.h */, - FFFD5a9e3a887fb05a9e3a88 /* NpRigidBodyTemplate.h */, - FFFD5a9e3af07fb05a9e3af0 /* NpRigidDynamic.h */, - FFFD5a9e3b587fb05a9e3b58 /* NpRigidStatic.h */, - FFFD5a9e3bc07fb05a9e3bc0 /* NpScene.h */, - FFFD5a9e3c287fb05a9e3c28 /* NpSceneQueries.h */, - FFFD5a9e3c907fb05a9e3c90 /* NpShape.h */, - FFFD5a9e3cf87fb05a9e3cf8 /* NpShapeManager.h */, - FFFD5a9e3d607fb05a9e3d60 /* NpSpatialIndex.h */, - FFFD5a9e3dc87fb05a9e3dc8 /* NpVolumeCache.h */, - FFFD5a9e3e307fb05a9e3e30 /* NpWriteCheck.h */, - FFFD5a9e3e987fb05a9e3e98 /* PvdMetaDataBindingData.h */, - FFFD5a9e3f007fb05a9e3f00 /* PvdMetaDataPvdBinding.h */, - FFFD5a9e3f687fb05a9e3f68 /* PvdPhysicsClient.h */, - FFFD5a9e3fd07fb05a9e3fd0 /* PvdTypeNames.h */, - FFFD5a9e40387fb05a9e4038 /* NpActor.cpp */, - FFFD5a9e40a07fb05a9e40a0 /* NpAggregate.cpp */, - FFFD5a9e41087fb05a9e4108 /* NpArticulation.cpp */, - FFFD5a9e41707fb05a9e4170 /* NpArticulationJoint.cpp */, - FFFD5a9e41d87fb05a9e41d8 /* NpArticulationLink.cpp */, - FFFD5a9e42407fb05a9e4240 /* NpBatchQuery.cpp */, - FFFD5a9e42a87fb05a9e42a8 /* NpConstraint.cpp */, - FFFD5a9e43107fb05a9e4310 /* NpFactory.cpp */, - FFFD5a9e43787fb05a9e4378 /* NpMaterial.cpp */, - FFFD5a9e43e07fb05a9e43e0 /* NpMetaData.cpp */, - FFFD5a9e44487fb05a9e4448 /* NpPhysics.cpp */, - FFFD5a9e44b07fb05a9e44b0 /* NpPvdSceneQueryCollector.cpp */, - FFFD5a9e45187fb05a9e4518 /* NpReadCheck.cpp */, - FFFD5a9e45807fb05a9e4580 /* NpRigidDynamic.cpp */, - FFFD5a9e45e87fb05a9e45e8 /* NpRigidStatic.cpp */, - FFFD5a9e46507fb05a9e4650 /* NpScene.cpp */, - FFFD5a9e46b87fb05a9e46b8 /* NpSceneQueries.cpp */, - FFFD5a9e47207fb05a9e4720 /* NpSerializerAdapter.cpp */, - FFFD5a9e47887fb05a9e4788 /* NpShape.cpp */, - FFFD5a9e47f07fb05a9e47f0 /* NpShapeManager.cpp */, - FFFD5a9e48587fb05a9e4858 /* NpSpatialIndex.cpp */, - FFFD5a9e48c07fb05a9e48c0 /* NpVolumeCache.cpp */, - FFFD5a9e49287fb05a9e4928 /* NpWriteCheck.cpp */, - FFFD5a9e49907fb05a9e4990 /* PvdMetaDataPvdBinding.cpp */, - FFFD5a9e49f87fb05a9e49f8 /* PvdPhysicsClient.cpp */, - FFFD5a9e4a607fb05a9e4a60 /* particles/NpParticleBaseTemplate.h */, - FFFD5a9e4ac87fb05a9e4ac8 /* particles/NpParticleFluid.h */, - FFFD5a9e4b307fb05a9e4b30 /* particles/NpParticleFluidReadData.h */, - FFFD5a9e4b987fb05a9e4b98 /* particles/NpParticleSystem.h */, - FFFD5a9e4c007fb05a9e4c00 /* particles/NpParticleFluid.cpp */, - FFFD5a9e4c687fb05a9e4c68 /* particles/NpParticleSystem.cpp */, - FFFD5a9e4cd07fb05a9e4cd0 /* buffering/ScbActor.h */, - FFFD5a9e4d387fb05a9e4d38 /* buffering/ScbAggregate.h */, - FFFD5a9e4da07fb05a9e4da0 /* buffering/ScbArticulation.h */, - FFFD5a9e4e087fb05a9e4e08 /* buffering/ScbArticulationJoint.h */, - FFFD5a9e4e707fb05a9e4e70 /* buffering/ScbBase.h */, - FFFD5a9e4ed87fb05a9e4ed8 /* buffering/ScbBody.h */, - FFFD5a9e4f407fb05a9e4f40 /* buffering/ScbCloth.h */, - FFFD5a9e4fa87fb05a9e4fa8 /* buffering/ScbConstraint.h */, - FFFD5a9e50107fb05a9e5010 /* buffering/ScbDefs.h */, - FFFD5a9e50787fb05a9e5078 /* buffering/ScbNpDeps.h */, - FFFD5a9e50e07fb05a9e50e0 /* buffering/ScbParticleSystem.h */, - FFFD5a9e51487fb05a9e5148 /* buffering/ScbRigidObject.h */, - FFFD5a9e51b07fb05a9e51b0 /* buffering/ScbRigidStatic.h */, - FFFD5a9e52187fb05a9e5218 /* buffering/ScbScene.h */, - FFFD5a9e52807fb05a9e5280 /* buffering/ScbSceneBuffer.h */, - FFFD5a9e52e87fb05a9e52e8 /* buffering/ScbScenePvdClient.h */, - FFFD5a9e53507fb05a9e5350 /* buffering/ScbShape.h */, - FFFD5a9e53b87fb05a9e53b8 /* buffering/ScbType.h */, - FFFD5a9e54207fb05a9e5420 /* buffering/ScbActor.cpp */, - FFFD5a9e54887fb05a9e5488 /* buffering/ScbAggregate.cpp */, - FFFD5a9e54f07fb05a9e54f0 /* buffering/ScbBase.cpp */, - FFFD5a9e55587fb05a9e5558 /* buffering/ScbCloth.cpp */, - FFFD5a9e55c07fb05a9e55c0 /* buffering/ScbMetaData.cpp */, - FFFD5a9e56287fb05a9e5628 /* buffering/ScbParticleSystem.cpp */, - FFFD5a9e56907fb05a9e5690 /* buffering/ScbScene.cpp */, - FFFD5a9e56f87fb05a9e56f8 /* buffering/ScbScenePvdClient.cpp */, - FFFD5a9e57607fb05a9e5760 /* buffering/ScbShape.cpp */, - FFFD5a9e57c87fb05a9e57c8 /* cloth/NpCloth.h */, - FFFD5a9e58307fb05a9e5830 /* cloth/NpClothFabric.h */, - FFFD5a9e58987fb05a9e5898 /* cloth/NpClothParticleData.h */, - FFFD5a9e59007fb05a9e5900 /* cloth/NpCloth.cpp */, - FFFD5a9e59687fb05a9e5968 /* cloth/NpClothFabric.cpp */, - FFFD5a9e59d07fb05a9e59d0 /* cloth/NpClothParticleData.cpp */, - FFFD5a9e5a387fb05a9e5a38 /* ../../ImmediateMode/src/NpImmediateMode.cpp */, + FFFDec043a007febec043a00 /* NpActor.h */, + FFFDec043a687febec043a68 /* NpActorTemplate.h */, + FFFDec043ad07febec043ad0 /* NpAggregate.h */, + FFFDec043b387febec043b38 /* NpArticulation.h */, + FFFDec043ba07febec043ba0 /* NpArticulationJoint.h */, + FFFDec043c087febec043c08 /* NpArticulationLink.h */, + FFFDec043c707febec043c70 /* NpBatchQuery.h */, + FFFDec043cd87febec043cd8 /* NpCast.h */, + FFFDec043d407febec043d40 /* NpConnector.h */, + FFFDec043da87febec043da8 /* NpConstraint.h */, + FFFDec043e107febec043e10 /* NpFactory.h */, + FFFDec043e787febec043e78 /* NpMaterial.h */, + FFFDec043ee07febec043ee0 /* NpMaterialManager.h */, + FFFDec043f487febec043f48 /* NpPhysics.h */, + FFFDec043fb07febec043fb0 /* NpPhysicsInsertionCallback.h */, + FFFDec0440187febec044018 /* NpPtrTableStorageManager.h */, + FFFDec0440807febec044080 /* NpPvdSceneQueryCollector.h */, + FFFDec0440e87febec0440e8 /* NpQueryShared.h */, + FFFDec0441507febec044150 /* NpReadCheck.h */, + FFFDec0441b87febec0441b8 /* NpRigidActorTemplate.h */, + FFFDec0442207febec044220 /* NpRigidActorTemplateInternal.h */, + FFFDec0442887febec044288 /* NpRigidBodyTemplate.h */, + FFFDec0442f07febec0442f0 /* NpRigidDynamic.h */, + FFFDec0443587febec044358 /* NpRigidStatic.h */, + FFFDec0443c07febec0443c0 /* NpScene.h */, + FFFDec0444287febec044428 /* NpSceneQueries.h */, + FFFDec0444907febec044490 /* NpShape.h */, + FFFDec0444f87febec0444f8 /* NpShapeManager.h */, + FFFDec0445607febec044560 /* NpSpatialIndex.h */, + FFFDec0445c87febec0445c8 /* NpVolumeCache.h */, + FFFDec0446307febec044630 /* NpWriteCheck.h */, + FFFDec0446987febec044698 /* PvdMetaDataBindingData.h */, + FFFDec0447007febec044700 /* PvdMetaDataPvdBinding.h */, + FFFDec0447687febec044768 /* PvdPhysicsClient.h */, + FFFDec0447d07febec0447d0 /* PvdTypeNames.h */, + FFFDec0448387febec044838 /* NpActor.cpp */, + FFFDec0448a07febec0448a0 /* NpAggregate.cpp */, + FFFDec0449087febec044908 /* NpArticulation.cpp */, + FFFDec0449707febec044970 /* NpArticulationJoint.cpp */, + FFFDec0449d87febec0449d8 /* NpArticulationLink.cpp */, + FFFDec044a407febec044a40 /* NpBatchQuery.cpp */, + FFFDec044aa87febec044aa8 /* NpConstraint.cpp */, + FFFDec044b107febec044b10 /* NpFactory.cpp */, + FFFDec044b787febec044b78 /* NpMaterial.cpp */, + FFFDec044be07febec044be0 /* NpMetaData.cpp */, + FFFDec044c487febec044c48 /* NpPhysics.cpp */, + FFFDec044cb07febec044cb0 /* NpPvdSceneQueryCollector.cpp */, + FFFDec044d187febec044d18 /* NpReadCheck.cpp */, + FFFDec044d807febec044d80 /* NpRigidDynamic.cpp */, + FFFDec044de87febec044de8 /* NpRigidStatic.cpp */, + FFFDec044e507febec044e50 /* NpScene.cpp */, + FFFDec044eb87febec044eb8 /* NpSceneQueries.cpp */, + FFFDec044f207febec044f20 /* NpSerializerAdapter.cpp */, + FFFDec044f887febec044f88 /* NpShape.cpp */, + FFFDec044ff07febec044ff0 /* NpShapeManager.cpp */, + FFFDec0450587febec045058 /* NpSpatialIndex.cpp */, + FFFDec0450c07febec0450c0 /* NpVolumeCache.cpp */, + FFFDec0451287febec045128 /* NpWriteCheck.cpp */, + FFFDec0451907febec045190 /* PvdMetaDataPvdBinding.cpp */, + FFFDec0451f87febec0451f8 /* PvdPhysicsClient.cpp */, + FFFDec0452607febec045260 /* particles/NpParticleBaseTemplate.h */, + FFFDec0452c87febec0452c8 /* particles/NpParticleFluid.h */, + FFFDec0453307febec045330 /* particles/NpParticleFluidReadData.h */, + FFFDec0453987febec045398 /* particles/NpParticleSystem.h */, + FFFDec0454007febec045400 /* particles/NpParticleFluid.cpp */, + FFFDec0454687febec045468 /* particles/NpParticleSystem.cpp */, + FFFDec0454d07febec0454d0 /* buffering/ScbActor.h */, + FFFDec0455387febec045538 /* buffering/ScbAggregate.h */, + FFFDec0455a07febec0455a0 /* buffering/ScbArticulation.h */, + FFFDec0456087febec045608 /* buffering/ScbArticulationJoint.h */, + FFFDec0456707febec045670 /* buffering/ScbBase.h */, + FFFDec0456d87febec0456d8 /* buffering/ScbBody.h */, + FFFDec0457407febec045740 /* buffering/ScbCloth.h */, + FFFDec0457a87febec0457a8 /* buffering/ScbConstraint.h */, + FFFDec0458107febec045810 /* buffering/ScbDefs.h */, + FFFDec0458787febec045878 /* buffering/ScbNpDeps.h */, + FFFDec0458e07febec0458e0 /* buffering/ScbParticleSystem.h */, + FFFDec0459487febec045948 /* buffering/ScbRigidObject.h */, + FFFDec0459b07febec0459b0 /* buffering/ScbRigidStatic.h */, + FFFDec045a187febec045a18 /* buffering/ScbScene.h */, + FFFDec045a807febec045a80 /* buffering/ScbSceneBuffer.h */, + FFFDec045ae87febec045ae8 /* buffering/ScbScenePvdClient.h */, + FFFDec045b507febec045b50 /* buffering/ScbShape.h */, + FFFDec045bb87febec045bb8 /* buffering/ScbType.h */, + FFFDec045c207febec045c20 /* buffering/ScbActor.cpp */, + FFFDec045c887febec045c88 /* buffering/ScbAggregate.cpp */, + FFFDec045cf07febec045cf0 /* buffering/ScbBase.cpp */, + FFFDec045d587febec045d58 /* buffering/ScbCloth.cpp */, + FFFDec045dc07febec045dc0 /* buffering/ScbMetaData.cpp */, + FFFDec045e287febec045e28 /* buffering/ScbParticleSystem.cpp */, + FFFDec045e907febec045e90 /* buffering/ScbScene.cpp */, + FFFDec045ef87febec045ef8 /* buffering/ScbScenePvdClient.cpp */, + FFFDec045f607febec045f60 /* buffering/ScbShape.cpp */, + FFFDec045fc87febec045fc8 /* cloth/NpCloth.h */, + FFFDec0460307febec046030 /* cloth/NpClothFabric.h */, + FFFDec0460987febec046098 /* cloth/NpClothParticleData.h */, + FFFDec0461007febec046100 /* cloth/NpCloth.cpp */, + FFFDec0461687febec046168 /* cloth/NpClothFabric.cpp */, + FFFDec0461d07febec0461d0 /* cloth/NpClothParticleData.cpp */, + FFFDec0462387febec046238 /* ../../ImmediateMode/src/NpImmediateMode.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB5cb578a87fb05cb578a8 /* include */ = { + FFFBebeabc487febebeabc48 /* include */ = { isa = PBXGroup; children = ( - FFFD5a9e0c007fb05a9e0c00 /* PxActor.h */, - FFFD5a9e0c687fb05a9e0c68 /* PxAggregate.h */, - FFFD5a9e0cd07fb05a9e0cd0 /* PxArticulation.h */, - FFFD5a9e0d387fb05a9e0d38 /* PxArticulationJoint.h */, - FFFD5a9e0da07fb05a9e0da0 /* PxArticulationLink.h */, - FFFD5a9e0e087fb05a9e0e08 /* PxBatchQuery.h */, - FFFD5a9e0e707fb05a9e0e70 /* PxBatchQueryDesc.h */, - FFFD5a9e0ed87fb05a9e0ed8 /* PxBroadPhase.h */, - FFFD5a9e0f407fb05a9e0f40 /* PxClient.h */, - FFFD5a9e0fa87fb05a9e0fa8 /* PxConstraint.h */, - FFFD5a9e10107fb05a9e1010 /* PxConstraintDesc.h */, - FFFD5a9e10787fb05a9e1078 /* PxContact.h */, - FFFD5a9e10e07fb05a9e10e0 /* PxContactModifyCallback.h */, - FFFD5a9e11487fb05a9e1148 /* PxDeletionListener.h */, - FFFD5a9e11b07fb05a9e11b0 /* PxFiltering.h */, - FFFD5a9e12187fb05a9e1218 /* PxForceMode.h */, - FFFD5a9e12807fb05a9e1280 /* PxImmediateMode.h */, - FFFD5a9e12e87fb05a9e12e8 /* PxLockedData.h */, - FFFD5a9e13507fb05a9e1350 /* PxMaterial.h */, - FFFD5a9e13b87fb05a9e13b8 /* PxPhysXConfig.h */, - FFFD5a9e14207fb05a9e1420 /* PxPhysics.h */, - FFFD5a9e14887fb05a9e1488 /* PxPhysicsAPI.h */, - FFFD5a9e14f07fb05a9e14f0 /* PxPhysicsSerialization.h */, - FFFD5a9e15587fb05a9e1558 /* PxPhysicsVersion.h */, - FFFD5a9e15c07fb05a9e15c0 /* PxPruningStructure.h */, - FFFD5a9e16287fb05a9e1628 /* PxQueryFiltering.h */, - FFFD5a9e16907fb05a9e1690 /* PxQueryReport.h */, - FFFD5a9e16f87fb05a9e16f8 /* PxRigidActor.h */, - FFFD5a9e17607fb05a9e1760 /* PxRigidBody.h */, - FFFD5a9e17c87fb05a9e17c8 /* PxRigidDynamic.h */, - FFFD5a9e18307fb05a9e1830 /* PxRigidStatic.h */, - FFFD5a9e18987fb05a9e1898 /* PxScene.h */, - FFFD5a9e19007fb05a9e1900 /* PxSceneDesc.h */, - FFFD5a9e19687fb05a9e1968 /* PxSceneLock.h */, - FFFD5a9e19d07fb05a9e19d0 /* PxShape.h */, - FFFD5a9e1a387fb05a9e1a38 /* PxSimulationEventCallback.h */, - FFFD5a9e1aa07fb05a9e1aa0 /* PxSimulationStatistics.h */, - FFFD5a9e1b087fb05a9e1b08 /* PxSpatialIndex.h */, - FFFD5a9e1b707fb05a9e1b70 /* PxVisualizationParameter.h */, - FFFD5a9e1bd87fb05a9e1bd8 /* PxVolumeCache.h */, - FFFD5a9e1c407fb05a9e1c40 /* particles/PxParticleBase.h */, - FFFD5a9e1ca87fb05a9e1ca8 /* particles/PxParticleBaseFlag.h */, - FFFD5a9e1d107fb05a9e1d10 /* particles/PxParticleCreationData.h */, - FFFD5a9e1d787fb05a9e1d78 /* particles/PxParticleFlag.h */, - FFFD5a9e1de07fb05a9e1de0 /* particles/PxParticleFluid.h */, - FFFD5a9e1e487fb05a9e1e48 /* particles/PxParticleFluidReadData.h */, - FFFD5a9e1eb07fb05a9e1eb0 /* particles/PxParticleReadData.h */, - FFFD5a9e1f187fb05a9e1f18 /* particles/PxParticleSystem.h */, - FFFD5a9e1f807fb05a9e1f80 /* pvd/PxPvdSceneClient.h */, - FFFD5a9e1fe87fb05a9e1fe8 /* cloth/PxCloth.h */, - FFFD5a9e20507fb05a9e2050 /* cloth/PxClothCollisionData.h */, - FFFD5a9e20b87fb05a9e20b8 /* cloth/PxClothFabric.h */, - FFFD5a9e21207fb05a9e2120 /* cloth/PxClothParticleData.h */, - FFFD5a9e21887fb05a9e2188 /* cloth/PxClothTypes.h */, + FFFDec0464007febec046400 /* PxActor.h */, + FFFDec0464687febec046468 /* PxAggregate.h */, + FFFDec0464d07febec0464d0 /* PxArticulation.h */, + FFFDec0465387febec046538 /* PxArticulationJoint.h */, + FFFDec0465a07febec0465a0 /* PxArticulationLink.h */, + FFFDec0466087febec046608 /* PxBatchQuery.h */, + FFFDec0466707febec046670 /* PxBatchQueryDesc.h */, + FFFDec0466d87febec0466d8 /* PxBroadPhase.h */, + FFFDec0467407febec046740 /* PxClient.h */, + FFFDec0467a87febec0467a8 /* PxConstraint.h */, + FFFDec0468107febec046810 /* PxConstraintDesc.h */, + FFFDec0468787febec046878 /* PxContact.h */, + FFFDec0468e07febec0468e0 /* PxContactModifyCallback.h */, + FFFDec0469487febec046948 /* PxDeletionListener.h */, + FFFDec0469b07febec0469b0 /* PxFiltering.h */, + FFFDec046a187febec046a18 /* PxForceMode.h */, + FFFDec046a807febec046a80 /* PxImmediateMode.h */, + FFFDec046ae87febec046ae8 /* PxLockedData.h */, + FFFDec046b507febec046b50 /* PxMaterial.h */, + FFFDec046bb87febec046bb8 /* PxPhysXConfig.h */, + FFFDec046c207febec046c20 /* PxPhysics.h */, + FFFDec046c887febec046c88 /* PxPhysicsAPI.h */, + FFFDec046cf07febec046cf0 /* PxPhysicsSerialization.h */, + FFFDec046d587febec046d58 /* PxPhysicsVersion.h */, + FFFDec046dc07febec046dc0 /* PxPruningStructure.h */, + FFFDec046e287febec046e28 /* PxQueryFiltering.h */, + FFFDec046e907febec046e90 /* PxQueryReport.h */, + FFFDec046ef87febec046ef8 /* PxRigidActor.h */, + FFFDec046f607febec046f60 /* PxRigidBody.h */, + FFFDec046fc87febec046fc8 /* PxRigidDynamic.h */, + FFFDec0470307febec047030 /* PxRigidStatic.h */, + FFFDec0470987febec047098 /* PxScene.h */, + FFFDec0471007febec047100 /* PxSceneDesc.h */, + FFFDec0471687febec047168 /* PxSceneLock.h */, + FFFDec0471d07febec0471d0 /* PxShape.h */, + FFFDec0472387febec047238 /* PxSimulationEventCallback.h */, + FFFDec0472a07febec0472a0 /* PxSimulationStatistics.h */, + FFFDec0473087febec047308 /* PxSpatialIndex.h */, + FFFDec0473707febec047370 /* PxVisualizationParameter.h */, + FFFDec0473d87febec0473d8 /* PxVolumeCache.h */, + FFFDec0474407febec047440 /* particles/PxParticleBase.h */, + FFFDec0474a87febec0474a8 /* particles/PxParticleBaseFlag.h */, + FFFDec0475107febec047510 /* particles/PxParticleCreationData.h */, + FFFDec0475787febec047578 /* particles/PxParticleFlag.h */, + FFFDec0475e07febec0475e0 /* particles/PxParticleFluid.h */, + FFFDec0476487febec047648 /* particles/PxParticleFluidReadData.h */, + FFFDec0476b07febec0476b0 /* particles/PxParticleReadData.h */, + FFFDec0477187febec047718 /* particles/PxParticleSystem.h */, + FFFDec0477807febec047780 /* pvd/PxPvdSceneClient.h */, + FFFDec0477e87febec0477e8 /* cloth/PxCloth.h */, + FFFDec0478507febec047850 /* cloth/PxClothCollisionData.h */, + FFFDec0478b87febec0478b8 /* cloth/PxClothFabric.h */, + FFFDec0479207febec047920 /* cloth/PxClothParticleData.h */, + FFFDec0479887febec047988 /* cloth/PxClothTypes.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB5cb578d07fb05cb578d0 /* metadata */ = { + FFFBebeabc707febebeabc70 /* metadata */ = { isa = PBXGroup; children = ( - FFFD5a9e22007fb05a9e2200 /* core/include/PvdMetaDataDefineProperties.h */, - FFFD5a9e22687fb05a9e2268 /* core/include/PvdMetaDataExtensions.h */, - FFFD5a9e22d07fb05a9e22d0 /* core/include/PvdMetaDataPropertyVisitor.h */, - FFFD5a9e23387fb05a9e2338 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */, - FFFD5a9e23a07fb05a9e23a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */, - FFFD5a9e24087fb05a9e2408 /* core/include/PxMetaDataCompare.h */, - FFFD5a9e24707fb05a9e2470 /* core/include/PxMetaDataCppPrefix.h */, - FFFD5a9e24d87fb05a9e24d8 /* core/include/PxMetaDataObjects.h */, - FFFD5a9e25407fb05a9e2540 /* core/include/RepXMetaDataPropertyVisitor.h */, - FFFD5a9e25a87fb05a9e25a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */, - FFFD5a9e26107fb05a9e2610 /* core/src/PxMetaDataObjects.cpp */, + FFFDec03e6007febec03e600 /* core/include/PvdMetaDataDefineProperties.h */, + FFFDec03e6687febec03e668 /* core/include/PvdMetaDataExtensions.h */, + FFFDec03e6d07febec03e6d0 /* core/include/PvdMetaDataPropertyVisitor.h */, + FFFDec03e7387febec03e738 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */, + FFFDec03e7a07febec03e7a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */, + FFFDec03e8087febec03e808 /* core/include/PxMetaDataCompare.h */, + FFFDec03e8707febec03e870 /* core/include/PxMetaDataCppPrefix.h */, + FFFDec03e8d87febec03e8d8 /* core/include/PxMetaDataObjects.h */, + FFFDec03e9407febec03e940 /* core/include/RepXMetaDataPropertyVisitor.h */, + FFFDec03e9a87febec03e9a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */, + FFFDec03ea107febec03ea10 /* core/src/PxMetaDataObjects.cpp */, ); name = "metadata"; sourceTree = SOURCE_ROOT; }; - FFFB5cb4fa707fb05cb4fa70 /* PhysXCharacterKinematic */ = { + FFFBebea7f407febebea7f40 /* PhysXCharacterKinematic */ = { isa = PBXGroup; children = ( - FFFB5cb561007fb05cb56100 /* include */, - FFFB5cb561287fb05cb56128 /* src */, + FFFBebeaaed07febebeaaed0 /* include */, + FFFBebeaaef87febebeaaef8 /* src */, ); name = "PhysXCharacterKinematic"; sourceTree = "<group>"; }; - FFFB5cb561007fb05cb56100 /* include */ = { + FFFBebeaaed07febebeaaed0 /* include */ = { isa = PBXGroup; children = ( - FFFD5cb56b707fb05cb56b70 /* PxBoxController.h */, - FFFD5cb56bd87fb05cb56bd8 /* PxCapsuleController.h */, - FFFD5cb56c407fb05cb56c40 /* PxCharacter.h */, - FFFD5cb56ca87fb05cb56ca8 /* PxController.h */, - FFFD5cb56d107fb05cb56d10 /* PxControllerBehavior.h */, - FFFD5cb56d787fb05cb56d78 /* PxControllerManager.h */, - FFFD5cb56de07fb05cb56de0 /* PxControllerObstacles.h */, - FFFD5cb56e487fb05cb56e48 /* PxExtended.h */, + FFFDebeaaf207febebeaaf20 /* PxBoxController.h */, + FFFDebeaaf887febebeaaf88 /* PxCapsuleController.h */, + FFFDebeaaff07febebeaaff0 /* PxCharacter.h */, + FFFDebeab0587febebeab058 /* PxController.h */, + FFFDebeab0c07febebeab0c0 /* PxControllerBehavior.h */, + FFFDebeab1287febebeab128 /* PxControllerManager.h */, + FFFDebeab1907febebeab190 /* PxControllerObstacles.h */, + FFFDebeab1f87febebeab1f8 /* PxExtended.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB5cb561287fb05cb56128 /* src */ = { + FFFBebeaaef87febebeaaef8 /* src */ = { isa = PBXGroup; children = ( - FFFD5a9e9e007fb05a9e9e00 /* CctBoxController.h */, - FFFD5a9e9e687fb05a9e9e68 /* CctCapsuleController.h */, - FFFD5a9e9ed07fb05a9e9ed0 /* CctCharacterController.h */, - FFFD5a9e9f387fb05a9e9f38 /* CctCharacterControllerManager.h */, - FFFD5a9e9fa07fb05a9e9fa0 /* CctController.h */, - FFFD5a9ea0087fb05a9ea008 /* CctInternalStructs.h */, - FFFD5a9ea0707fb05a9ea070 /* CctObstacleContext.h */, - FFFD5a9ea0d87fb05a9ea0d8 /* CctSweptBox.h */, - FFFD5a9ea1407fb05a9ea140 /* CctSweptCapsule.h */, - FFFD5a9ea1a87fb05a9ea1a8 /* CctSweptVolume.h */, - FFFD5a9ea2107fb05a9ea210 /* CctUtils.h */, - FFFD5a9ea2787fb05a9ea278 /* CctBoxController.cpp */, - FFFD5a9ea2e07fb05a9ea2e0 /* CctCapsuleController.cpp */, - FFFD5a9ea3487fb05a9ea348 /* CctCharacterController.cpp */, - FFFD5a9ea3b07fb05a9ea3b0 /* CctCharacterControllerCallbacks.cpp */, - FFFD5a9ea4187fb05a9ea418 /* CctCharacterControllerManager.cpp */, - FFFD5a9ea4807fb05a9ea480 /* CctController.cpp */, - FFFD5a9ea4e87fb05a9ea4e8 /* CctObstacleContext.cpp */, - FFFD5a9ea5507fb05a9ea550 /* CctSweptBox.cpp */, - FFFD5a9ea5b87fb05a9ea5b8 /* CctSweptCapsule.cpp */, - FFFD5a9ea6207fb05a9ea620 /* CctSweptVolume.cpp */, + FFFDec047a007febec047a00 /* CctBoxController.h */, + FFFDec047a687febec047a68 /* CctCapsuleController.h */, + FFFDec047ad07febec047ad0 /* CctCharacterController.h */, + FFFDec047b387febec047b38 /* CctCharacterControllerManager.h */, + FFFDec047ba07febec047ba0 /* CctController.h */, + FFFDec047c087febec047c08 /* CctInternalStructs.h */, + FFFDec047c707febec047c70 /* CctObstacleContext.h */, + FFFDec047cd87febec047cd8 /* CctSweptBox.h */, + FFFDec047d407febec047d40 /* CctSweptCapsule.h */, + FFFDec047da87febec047da8 /* CctSweptVolume.h */, + FFFDec047e107febec047e10 /* CctUtils.h */, + FFFDec047e787febec047e78 /* CctBoxController.cpp */, + FFFDec047ee07febec047ee0 /* CctCapsuleController.cpp */, + FFFDec047f487febec047f48 /* CctCharacterController.cpp */, + FFFDec047fb07febec047fb0 /* CctCharacterControllerCallbacks.cpp */, + FFFDec0480187febec048018 /* CctCharacterControllerManager.cpp */, + FFFDec0480807febec048080 /* CctController.cpp */, + FFFDec0480e87febec0480e8 /* CctObstacleContext.cpp */, + FFFDec0481507febec048150 /* CctSweptBox.cpp */, + FFFDec0481b87febec0481b8 /* CctSweptCapsule.cpp */, + FFFDec0482207febec048220 /* CctSweptVolume.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB5cb50f307fb05cb50f30 /* PhysXVehicle */ = { + FFFBebea52007febebea5200 /* PhysXVehicle */ = { isa = PBXGroup; children = ( - FFFB5cb5f0d07fb05cb5f0d0 /* include */, - FFFB5cb5f0f87fb05cb5f0f8 /* src */, - FFFB5cb5f1207fb05cb5f120 /* metadata */, + FFFBebeb59707febebeb5970 /* include */, + FFFBebeb59987febebeb5998 /* src */, + FFFBebeb59c07febebeb59c0 /* metadata */, ); name = "PhysXVehicle"; sourceTree = "<group>"; }; - FFFB5cb5f0d07fb05cb5f0d0 /* include */ = { + FFFBebeb59707febebeb5970 /* include */ = { isa = PBXGroup; children = ( - FFFD5a9ecc007fb05a9ecc00 /* PxVehicleComponents.h */, - FFFD5a9ecc687fb05a9ecc68 /* PxVehicleDrive.h */, - FFFD5a9eccd07fb05a9eccd0 /* PxVehicleDrive4W.h */, - FFFD5a9ecd387fb05a9ecd38 /* PxVehicleDriveNW.h */, - FFFD5a9ecda07fb05a9ecda0 /* PxVehicleDriveTank.h */, - FFFD5a9ece087fb05a9ece08 /* PxVehicleNoDrive.h */, - FFFD5a9ece707fb05a9ece70 /* PxVehicleSDK.h */, - FFFD5a9eced87fb05a9eced8 /* PxVehicleShaders.h */, - FFFD5a9ecf407fb05a9ecf40 /* PxVehicleTireFriction.h */, - FFFD5a9ecfa87fb05a9ecfa8 /* PxVehicleUpdate.h */, - FFFD5a9ed0107fb05a9ed010 /* PxVehicleUtil.h */, - FFFD5a9ed0787fb05a9ed078 /* PxVehicleUtilControl.h */, - FFFD5a9ed0e07fb05a9ed0e0 /* PxVehicleUtilSetup.h */, - FFFD5a9ed1487fb05a9ed148 /* PxVehicleUtilTelemetry.h */, - FFFD5a9ed1b07fb05a9ed1b0 /* PxVehicleWheels.h */, + FFFDec04a0007febec04a000 /* PxVehicleComponents.h */, + FFFDec04a0687febec04a068 /* PxVehicleDrive.h */, + FFFDec04a0d07febec04a0d0 /* PxVehicleDrive4W.h */, + FFFDec04a1387febec04a138 /* PxVehicleDriveNW.h */, + FFFDec04a1a07febec04a1a0 /* PxVehicleDriveTank.h */, + FFFDec04a2087febec04a208 /* PxVehicleNoDrive.h */, + FFFDec04a2707febec04a270 /* PxVehicleSDK.h */, + FFFDec04a2d87febec04a2d8 /* PxVehicleShaders.h */, + FFFDec04a3407febec04a340 /* PxVehicleTireFriction.h */, + FFFDec04a3a87febec04a3a8 /* PxVehicleUpdate.h */, + FFFDec04a4107febec04a410 /* PxVehicleUtil.h */, + FFFDec04a4787febec04a478 /* PxVehicleUtilControl.h */, + FFFDec04a4e07febec04a4e0 /* PxVehicleUtilSetup.h */, + FFFDec04a5487febec04a548 /* PxVehicleUtilTelemetry.h */, + FFFDec04a5b07febec04a5b0 /* PxVehicleWheels.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB5cb5f0f87fb05cb5f0f8 /* src */ = { + FFFBebeb59987febebeb5998 /* src */ = { isa = PBXGroup; children = ( - FFFD5a9eee007fb05a9eee00 /* PxVehicleDefaults.h */, - FFFD5a9eee687fb05a9eee68 /* PxVehicleLinearMath.h */, - FFFD5a9eeed07fb05a9eeed0 /* PxVehicleSerialization.h */, - FFFD5a9eef387fb05a9eef38 /* PxVehicleSuspLimitConstraintShader.h */, - FFFD5a9eefa07fb05a9eefa0 /* PxVehicleSuspWheelTire4.h */, - FFFD5a9ef0087fb05a9ef008 /* PxVehicleComponents.cpp */, - FFFD5a9ef0707fb05a9ef070 /* PxVehicleDrive.cpp */, - FFFD5a9ef0d87fb05a9ef0d8 /* PxVehicleDrive4W.cpp */, - FFFD5a9ef1407fb05a9ef140 /* PxVehicleDriveNW.cpp */, - FFFD5a9ef1a87fb05a9ef1a8 /* PxVehicleDriveTank.cpp */, - FFFD5a9ef2107fb05a9ef210 /* PxVehicleMetaData.cpp */, - FFFD5a9ef2787fb05a9ef278 /* PxVehicleNoDrive.cpp */, - FFFD5a9ef2e07fb05a9ef2e0 /* PxVehicleSDK.cpp */, - FFFD5a9ef3487fb05a9ef348 /* PxVehicleSerialization.cpp */, - FFFD5a9ef3b07fb05a9ef3b0 /* PxVehicleSuspWheelTire4.cpp */, - FFFD5a9ef4187fb05a9ef418 /* PxVehicleTireFriction.cpp */, - FFFD5a9ef4807fb05a9ef480 /* PxVehicleUpdate.cpp */, - FFFD5a9ef4e87fb05a9ef4e8 /* PxVehicleWheels.cpp */, - FFFD5a9ef5507fb05a9ef550 /* VehicleUtilControl.cpp */, - FFFD5a9ef5b87fb05a9ef5b8 /* VehicleUtilSetup.cpp */, - FFFD5a9ef6207fb05a9ef620 /* VehicleUtilTelemetry.cpp */, + FFFDec04be007febec04be00 /* PxVehicleDefaults.h */, + FFFDec04be687febec04be68 /* PxVehicleLinearMath.h */, + FFFDec04bed07febec04bed0 /* PxVehicleSerialization.h */, + FFFDec04bf387febec04bf38 /* PxVehicleSuspLimitConstraintShader.h */, + FFFDec04bfa07febec04bfa0 /* PxVehicleSuspWheelTire4.h */, + FFFDec04c0087febec04c008 /* PxVehicleComponents.cpp */, + FFFDec04c0707febec04c070 /* PxVehicleDrive.cpp */, + FFFDec04c0d87febec04c0d8 /* PxVehicleDrive4W.cpp */, + FFFDec04c1407febec04c140 /* PxVehicleDriveNW.cpp */, + FFFDec04c1a87febec04c1a8 /* PxVehicleDriveTank.cpp */, + FFFDec04c2107febec04c210 /* PxVehicleMetaData.cpp */, + FFFDec04c2787febec04c278 /* PxVehicleNoDrive.cpp */, + FFFDec04c2e07febec04c2e0 /* PxVehicleSDK.cpp */, + FFFDec04c3487febec04c348 /* PxVehicleSerialization.cpp */, + FFFDec04c3b07febec04c3b0 /* PxVehicleSuspWheelTire4.cpp */, + FFFDec04c4187febec04c418 /* PxVehicleTireFriction.cpp */, + FFFDec04c4807febec04c480 /* PxVehicleUpdate.cpp */, + FFFDec04c4e87febec04c4e8 /* PxVehicleWheels.cpp */, + FFFDec04c5507febec04c550 /* VehicleUtilControl.cpp */, + FFFDec04c5b87febec04c5b8 /* VehicleUtilSetup.cpp */, + FFFDec04c6207febec04c620 /* VehicleUtilTelemetry.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB5cb5f1207fb05cb5f120 /* metadata */ = { + FFFBebeb59c07febebeb59c0 /* metadata */ = { isa = PBXGroup; children = ( - FFFD5cb628107fb05cb62810 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */, - FFFD5cb628787fb05cb62878 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */, - FFFD5cb628e07fb05cb628e0 /* include/PxVehicleMetaDataObjects.h */, - FFFD5cb629487fb05cb62948 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */, - FFFD5cb629b07fb05cb629b0 /* src/PxVehicleMetaDataObjects.cpp */, + FFFDebeb6bf07febebeb6bf0 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */, + FFFDebeb6c587febebeb6c58 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */, + FFFDebeb6cc07febebeb6cc0 /* include/PxVehicleMetaDataObjects.h */, + FFFDebeb6d287febebeb6d28 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */, + FFFDebeb6d907febebeb6d90 /* src/PxVehicleMetaDataObjects.cpp */, ); name = "metadata"; sourceTree = SOURCE_ROOT; }; - FFFB5cb609d07fb05cb609d0 /* PhysXExtensions */ = { + FFFBebeb68107febebeb6810 /* PhysXExtensions */ = { isa = PBXGroup; children = ( - FFFB5cb655f07fb05cb655f0 /* include */, - FFFB5cb656187fb05cb65618 /* src */, - FFFB5cb656407fb05cb65640 /* serialization */, - FFFB5cb656687fb05cb65668 /* metadata */, + FFFBebeb8e307febebeb8e30 /* include */, + FFFBebeb8e587febebeb8e58 /* src */, + FFFBebeb8e807febebeb8e80 /* serialization */, + FFFBebeb8ea87febebeb8ea8 /* metadata */, ); name = "PhysXExtensions"; sourceTree = "<group>"; }; - FFFB5cb655f07fb05cb655f0 /* include */ = { + FFFBebeb8e307febebeb8e30 /* include */ = { isa = PBXGroup; children = ( - FFFD5a9f1e007fb05a9f1e00 /* PxBinaryConverter.h */, - FFFD5a9f1e687fb05a9f1e68 /* PxBroadPhaseExt.h */, - FFFD5a9f1ed07fb05a9f1ed0 /* PxClothFabricCooker.h */, - FFFD5a9f1f387fb05a9f1f38 /* PxClothMeshDesc.h */, - FFFD5a9f1fa07fb05a9f1fa0 /* PxClothMeshQuadifier.h */, - FFFD5a9f20087fb05a9f2008 /* PxClothTetherCooker.h */, - FFFD5a9f20707fb05a9f2070 /* PxCollectionExt.h */, - FFFD5a9f20d87fb05a9f20d8 /* PxConstraintExt.h */, - FFFD5a9f21407fb05a9f2140 /* PxConvexMeshExt.h */, - FFFD5a9f21a87fb05a9f21a8 /* PxD6Joint.h */, - FFFD5a9f22107fb05a9f2210 /* PxDefaultAllocator.h */, - FFFD5a9f22787fb05a9f2278 /* PxDefaultCpuDispatcher.h */, - FFFD5a9f22e07fb05a9f22e0 /* PxDefaultErrorCallback.h */, - FFFD5a9f23487fb05a9f2348 /* PxDefaultSimulationFilterShader.h */, - FFFD5a9f23b07fb05a9f23b0 /* PxDefaultStreams.h */, - FFFD5a9f24187fb05a9f2418 /* PxDistanceJoint.h */, - FFFD5a9f24807fb05a9f2480 /* PxExtensionsAPI.h */, - FFFD5a9f24e87fb05a9f24e8 /* PxFixedJoint.h */, - FFFD5a9f25507fb05a9f2550 /* PxJoint.h */, - FFFD5a9f25b87fb05a9f25b8 /* PxJointLimit.h */, - FFFD5a9f26207fb05a9f2620 /* PxJointRepXSerializer.h */, - FFFD5a9f26887fb05a9f2688 /* PxMassProperties.h */, - FFFD5a9f26f07fb05a9f26f0 /* PxParticleExt.h */, - FFFD5a9f27587fb05a9f2758 /* PxPrismaticJoint.h */, - FFFD5a9f27c07fb05a9f27c0 /* PxRaycastCCD.h */, - FFFD5a9f28287fb05a9f2828 /* PxRepXSerializer.h */, - FFFD5a9f28907fb05a9f2890 /* PxRepXSimpleType.h */, - FFFD5a9f28f87fb05a9f28f8 /* PxRevoluteJoint.h */, - FFFD5a9f29607fb05a9f2960 /* PxRigidActorExt.h */, - FFFD5a9f29c87fb05a9f29c8 /* PxRigidBodyExt.h */, - FFFD5a9f2a307fb05a9f2a30 /* PxSceneQueryExt.h */, - FFFD5a9f2a987fb05a9f2a98 /* PxSerialization.h */, - FFFD5a9f2b007fb05a9f2b00 /* PxShapeExt.h */, - FFFD5a9f2b687fb05a9f2b68 /* PxSimpleFactory.h */, - FFFD5a9f2bd07fb05a9f2bd0 /* PxSmoothNormals.h */, - FFFD5a9f2c387fb05a9f2c38 /* PxSphericalJoint.h */, - FFFD5a9f2ca07fb05a9f2ca0 /* PxStringTableExt.h */, - FFFD5a9f2d087fb05a9f2d08 /* PxTriangleMeshExt.h */, + FFFDec04f6007febec04f600 /* PxBinaryConverter.h */, + FFFDec04f6687febec04f668 /* PxBroadPhaseExt.h */, + FFFDec04f6d07febec04f6d0 /* PxClothFabricCooker.h */, + FFFDec04f7387febec04f738 /* PxClothMeshDesc.h */, + FFFDec04f7a07febec04f7a0 /* PxClothMeshQuadifier.h */, + FFFDec04f8087febec04f808 /* PxClothTetherCooker.h */, + FFFDec04f8707febec04f870 /* PxCollectionExt.h */, + FFFDec04f8d87febec04f8d8 /* PxConstraintExt.h */, + FFFDec04f9407febec04f940 /* PxConvexMeshExt.h */, + FFFDec04f9a87febec04f9a8 /* PxD6Joint.h */, + FFFDec04fa107febec04fa10 /* PxDefaultAllocator.h */, + FFFDec04fa787febec04fa78 /* PxDefaultCpuDispatcher.h */, + FFFDec04fae07febec04fae0 /* PxDefaultErrorCallback.h */, + FFFDec04fb487febec04fb48 /* PxDefaultSimulationFilterShader.h */, + FFFDec04fbb07febec04fbb0 /* PxDefaultStreams.h */, + FFFDec04fc187febec04fc18 /* PxDistanceJoint.h */, + FFFDec04fc807febec04fc80 /* PxExtensionsAPI.h */, + FFFDec04fce87febec04fce8 /* PxFixedJoint.h */, + FFFDec04fd507febec04fd50 /* PxJoint.h */, + FFFDec04fdb87febec04fdb8 /* PxJointLimit.h */, + FFFDec04fe207febec04fe20 /* PxMassProperties.h */, + FFFDec04fe887febec04fe88 /* PxParticleExt.h */, + FFFDec04fef07febec04fef0 /* PxPrismaticJoint.h */, + FFFDec04ff587febec04ff58 /* PxRaycastCCD.h */, + FFFDec04ffc07febec04ffc0 /* PxRepXSerializer.h */, + FFFDec0500287febec050028 /* PxRepXSimpleType.h */, + FFFDec0500907febec050090 /* PxRevoluteJoint.h */, + FFFDec0500f87febec0500f8 /* PxRigidActorExt.h */, + FFFDec0501607febec050160 /* PxRigidBodyExt.h */, + FFFDec0501c87febec0501c8 /* PxSceneQueryExt.h */, + FFFDec0502307febec050230 /* PxSerialization.h */, + FFFDec0502987febec050298 /* PxShapeExt.h */, + FFFDec0503007febec050300 /* PxSimpleFactory.h */, + FFFDec0503687febec050368 /* PxSmoothNormals.h */, + FFFDec0503d07febec0503d0 /* PxSphericalJoint.h */, + FFFDec0504387febec050438 /* PxStringTableExt.h */, + FFFDec0504a07febec0504a0 /* PxTriangleMeshExt.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB5cb656187fb05cb65618 /* src */ = { + FFFBebeb8e587febebeb8e58 /* src */ = { isa = PBXGroup; children = ( - FFFD5a9f08007fb05a9f0800 /* ExtConstraintHelper.h */, - FFFD5a9f08687fb05a9f0868 /* ExtCpuWorkerThread.h */, - FFFD5a9f08d07fb05a9f08d0 /* ExtD6Joint.h */, - FFFD5a9f09387fb05a9f0938 /* ExtDefaultCpuDispatcher.h */, - FFFD5a9f09a07fb05a9f09a0 /* ExtDistanceJoint.h */, - FFFD5a9f0a087fb05a9f0a08 /* ExtFixedJoint.h */, - FFFD5a9f0a707fb05a9f0a70 /* ExtInertiaTensor.h */, - FFFD5a9f0ad87fb05a9f0ad8 /* ExtJoint.h */, - FFFD5a9f0b407fb05a9f0b40 /* ExtJointMetaDataExtensions.h */, - FFFD5a9f0ba87fb05a9f0ba8 /* ExtPlatform.h */, - FFFD5a9f0c107fb05a9f0c10 /* ExtPrismaticJoint.h */, - FFFD5a9f0c787fb05a9f0c78 /* ExtPvd.h */, - FFFD5a9f0ce07fb05a9f0ce0 /* ExtRevoluteJoint.h */, - FFFD5a9f0d487fb05a9f0d48 /* ExtSerialization.h */, - FFFD5a9f0db07fb05a9f0db0 /* ExtSharedQueueEntryPool.h */, - FFFD5a9f0e187fb05a9f0e18 /* ExtSphericalJoint.h */, - FFFD5a9f0e807fb05a9f0e80 /* ExtTaskQueueHelper.h */, - FFFD5a9f0ee87fb05a9f0ee8 /* ExtBroadPhase.cpp */, - FFFD5a9f0f507fb05a9f0f50 /* ExtClothFabricCooker.cpp */, - FFFD5a9f0fb87fb05a9f0fb8 /* ExtClothGeodesicTetherCooker.cpp */, - FFFD5a9f10207fb05a9f1020 /* ExtClothMeshQuadifier.cpp */, - FFFD5a9f10887fb05a9f1088 /* ExtClothSimpleTetherCooker.cpp */, - FFFD5a9f10f07fb05a9f10f0 /* ExtCollection.cpp */, - FFFD5a9f11587fb05a9f1158 /* ExtConvexMeshExt.cpp */, - FFFD5a9f11c07fb05a9f11c0 /* ExtCpuWorkerThread.cpp */, - FFFD5a9f12287fb05a9f1228 /* ExtD6Joint.cpp */, - FFFD5a9f12907fb05a9f1290 /* ExtD6JointSolverPrep.cpp */, - FFFD5a9f12f87fb05a9f12f8 /* ExtDefaultCpuDispatcher.cpp */, - FFFD5a9f13607fb05a9f1360 /* ExtDefaultErrorCallback.cpp */, - FFFD5a9f13c87fb05a9f13c8 /* ExtDefaultSimulationFilterShader.cpp */, - FFFD5a9f14307fb05a9f1430 /* ExtDefaultStreams.cpp */, - FFFD5a9f14987fb05a9f1498 /* ExtDistanceJoint.cpp */, - FFFD5a9f15007fb05a9f1500 /* ExtDistanceJointSolverPrep.cpp */, - FFFD5a9f15687fb05a9f1568 /* ExtExtensions.cpp */, - FFFD5a9f15d07fb05a9f15d0 /* ExtFixedJoint.cpp */, - FFFD5a9f16387fb05a9f1638 /* ExtFixedJointSolverPrep.cpp */, - FFFD5a9f16a07fb05a9f16a0 /* ExtJoint.cpp */, - FFFD5a9f17087fb05a9f1708 /* ExtMetaData.cpp */, - FFFD5a9f17707fb05a9f1770 /* ExtParticleExt.cpp */, - FFFD5a9f17d87fb05a9f17d8 /* ExtPrismaticJoint.cpp */, - FFFD5a9f18407fb05a9f1840 /* ExtPrismaticJointSolverPrep.cpp */, - FFFD5a9f18a87fb05a9f18a8 /* ExtPvd.cpp */, - FFFD5a9f19107fb05a9f1910 /* ExtPxStringTable.cpp */, - FFFD5a9f19787fb05a9f1978 /* ExtRaycastCCD.cpp */, - FFFD5a9f19e07fb05a9f19e0 /* ExtRevoluteJoint.cpp */, - FFFD5a9f1a487fb05a9f1a48 /* ExtRevoluteJointSolverPrep.cpp */, - FFFD5a9f1ab07fb05a9f1ab0 /* ExtRigidBodyExt.cpp */, - FFFD5a9f1b187fb05a9f1b18 /* ExtSceneQueryExt.cpp */, - FFFD5a9f1b807fb05a9f1b80 /* ExtSimpleFactory.cpp */, - FFFD5a9f1be87fb05a9f1be8 /* ExtSmoothNormals.cpp */, - FFFD5a9f1c507fb05a9f1c50 /* ExtSphericalJoint.cpp */, - FFFD5a9f1cb87fb05a9f1cb8 /* ExtSphericalJointSolverPrep.cpp */, - FFFD5a9f1d207fb05a9f1d20 /* ExtTriangleMeshExt.cpp */, + FFFDec04e0007febec04e000 /* ExtConstraintHelper.h */, + FFFDec04e0687febec04e068 /* ExtCpuWorkerThread.h */, + FFFDec04e0d07febec04e0d0 /* ExtD6Joint.h */, + FFFDec04e1387febec04e138 /* ExtDefaultCpuDispatcher.h */, + FFFDec04e1a07febec04e1a0 /* ExtDistanceJoint.h */, + FFFDec04e2087febec04e208 /* ExtFixedJoint.h */, + FFFDec04e2707febec04e270 /* ExtInertiaTensor.h */, + FFFDec04e2d87febec04e2d8 /* ExtJoint.h */, + FFFDec04e3407febec04e340 /* ExtJointMetaDataExtensions.h */, + FFFDec04e3a87febec04e3a8 /* ExtPlatform.h */, + FFFDec04e4107febec04e410 /* ExtPrismaticJoint.h */, + FFFDec04e4787febec04e478 /* ExtPvd.h */, + FFFDec04e4e07febec04e4e0 /* ExtRevoluteJoint.h */, + FFFDec04e5487febec04e548 /* ExtSerialization.h */, + FFFDec04e5b07febec04e5b0 /* ExtSharedQueueEntryPool.h */, + FFFDec04e6187febec04e618 /* ExtSphericalJoint.h */, + FFFDec04e6807febec04e680 /* ExtTaskQueueHelper.h */, + FFFDec04e6e87febec04e6e8 /* ExtBroadPhase.cpp */, + FFFDec04e7507febec04e750 /* ExtClothFabricCooker.cpp */, + FFFDec04e7b87febec04e7b8 /* ExtClothGeodesicTetherCooker.cpp */, + FFFDec04e8207febec04e820 /* ExtClothMeshQuadifier.cpp */, + FFFDec04e8887febec04e888 /* ExtClothSimpleTetherCooker.cpp */, + FFFDec04e8f07febec04e8f0 /* ExtCollection.cpp */, + FFFDec04e9587febec04e958 /* ExtConvexMeshExt.cpp */, + FFFDec04e9c07febec04e9c0 /* ExtCpuWorkerThread.cpp */, + FFFDec04ea287febec04ea28 /* ExtD6Joint.cpp */, + FFFDec04ea907febec04ea90 /* ExtD6JointSolverPrep.cpp */, + FFFDec04eaf87febec04eaf8 /* ExtDefaultCpuDispatcher.cpp */, + FFFDec04eb607febec04eb60 /* ExtDefaultErrorCallback.cpp */, + FFFDec04ebc87febec04ebc8 /* ExtDefaultSimulationFilterShader.cpp */, + FFFDec04ec307febec04ec30 /* ExtDefaultStreams.cpp */, + FFFDec04ec987febec04ec98 /* ExtDistanceJoint.cpp */, + FFFDec04ed007febec04ed00 /* ExtDistanceJointSolverPrep.cpp */, + FFFDec04ed687febec04ed68 /* ExtExtensions.cpp */, + FFFDec04edd07febec04edd0 /* ExtFixedJoint.cpp */, + FFFDec04ee387febec04ee38 /* ExtFixedJointSolverPrep.cpp */, + FFFDec04eea07febec04eea0 /* ExtJoint.cpp */, + FFFDec04ef087febec04ef08 /* ExtMetaData.cpp */, + FFFDec04ef707febec04ef70 /* ExtParticleExt.cpp */, + FFFDec04efd87febec04efd8 /* ExtPrismaticJoint.cpp */, + FFFDec04f0407febec04f040 /* ExtPrismaticJointSolverPrep.cpp */, + FFFDec04f0a87febec04f0a8 /* ExtPvd.cpp */, + FFFDec04f1107febec04f110 /* ExtPxStringTable.cpp */, + FFFDec04f1787febec04f178 /* ExtRaycastCCD.cpp */, + FFFDec04f1e07febec04f1e0 /* ExtRevoluteJoint.cpp */, + FFFDec04f2487febec04f248 /* ExtRevoluteJointSolverPrep.cpp */, + FFFDec04f2b07febec04f2b0 /* ExtRigidBodyExt.cpp */, + FFFDec04f3187febec04f318 /* ExtSceneQueryExt.cpp */, + FFFDec04f3807febec04f380 /* ExtSimpleFactory.cpp */, + FFFDec04f3e87febec04f3e8 /* ExtSmoothNormals.cpp */, + FFFDec04f4507febec04f450 /* ExtSphericalJoint.cpp */, + FFFDec04f4b87febec04f4b8 /* ExtSphericalJointSolverPrep.cpp */, + FFFDec04f5207febec04f520 /* ExtTriangleMeshExt.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB5cb656407fb05cb65640 /* serialization */ = { + FFFBebeb8e807febebeb8e80 /* serialization */ = { isa = PBXGroup; children = ( - FFFD5a9f52007fb05a9f5200 /* SnSerialUtils.h */, - FFFD5a9f52687fb05a9f5268 /* SnSerializationRegistry.h */, - FFFD5a9f52d07fb05a9f52d0 /* SnSerialUtils.cpp */, - FFFD5a9f53387fb05a9f5338 /* SnSerialization.cpp */, - FFFD5a9f53a07fb05a9f53a0 /* SnSerializationRegistry.cpp */, - FFFD5a9f54087fb05a9f5408 /* Binary/SnConvX.h */, - FFFD5a9f54707fb05a9f5470 /* Binary/SnConvX_Align.h */, - FFFD5a9f54d87fb05a9f54d8 /* Binary/SnConvX_Common.h */, - FFFD5a9f55407fb05a9f5540 /* Binary/SnConvX_MetaData.h */, - FFFD5a9f55a87fb05a9f55a8 /* Binary/SnConvX_Output.h */, - FFFD5a9f56107fb05a9f5610 /* Binary/SnConvX_Union.h */, - FFFD5a9f56787fb05a9f5678 /* Binary/SnSerializationContext.h */, - FFFD5a9f56e07fb05a9f56e0 /* Binary/SnBinaryDeserialization.cpp */, - FFFD5a9f57487fb05a9f5748 /* Binary/SnBinarySerialization.cpp */, - FFFD5a9f57b07fb05a9f57b0 /* Binary/SnConvX.cpp */, - FFFD5a9f58187fb05a9f5818 /* Binary/SnConvX_Align.cpp */, - FFFD5a9f58807fb05a9f5880 /* Binary/SnConvX_Convert.cpp */, - FFFD5a9f58e87fb05a9f58e8 /* Binary/SnConvX_Error.cpp */, - FFFD5a9f59507fb05a9f5950 /* Binary/SnConvX_MetaData.cpp */, - FFFD5a9f59b87fb05a9f59b8 /* Binary/SnConvX_Output.cpp */, - FFFD5a9f5a207fb05a9f5a20 /* Binary/SnConvX_Union.cpp */, - FFFD5a9f5a887fb05a9f5a88 /* Binary/SnSerializationContext.cpp */, - FFFD5a9f5af07fb05a9f5af0 /* Xml/SnPxStreamOperators.h */, - FFFD5a9f5b587fb05a9f5b58 /* Xml/SnRepX1_0Defaults.h */, - FFFD5a9f5bc07fb05a9f5bc0 /* Xml/SnRepX3_1Defaults.h */, - FFFD5a9f5c287fb05a9f5c28 /* Xml/SnRepX3_2Defaults.h */, - FFFD5a9f5c907fb05a9f5c90 /* Xml/SnRepXCollection.h */, - FFFD5a9f5cf87fb05a9f5cf8 /* Xml/SnRepXCoreSerializer.h */, - FFFD5a9f5d607fb05a9f5d60 /* Xml/SnRepXSerializerImpl.h */, - FFFD5a9f5dc87fb05a9f5dc8 /* Xml/SnRepXUpgrader.h */, - FFFD5a9f5e307fb05a9f5e30 /* Xml/SnSimpleXmlWriter.h */, - FFFD5a9f5e987fb05a9f5e98 /* Xml/SnXmlDeserializer.h */, - FFFD5a9f5f007fb05a9f5f00 /* Xml/SnXmlImpl.h */, - FFFD5a9f5f687fb05a9f5f68 /* Xml/SnXmlMemoryAllocator.h */, - FFFD5a9f5fd07fb05a9f5fd0 /* Xml/SnXmlMemoryPool.h */, - FFFD5a9f60387fb05a9f6038 /* Xml/SnXmlMemoryPoolStreams.h */, - FFFD5a9f60a07fb05a9f60a0 /* Xml/SnXmlReader.h */, - FFFD5a9f61087fb05a9f6108 /* Xml/SnXmlSerializer.h */, - FFFD5a9f61707fb05a9f6170 /* Xml/SnXmlSimpleXmlWriter.h */, - FFFD5a9f61d87fb05a9f61d8 /* Xml/SnXmlStringToType.h */, - FFFD5a9f62407fb05a9f6240 /* Xml/SnXmlVisitorReader.h */, - FFFD5a9f62a87fb05a9f62a8 /* Xml/SnXmlVisitorWriter.h */, - FFFD5a9f63107fb05a9f6310 /* Xml/SnXmlWriter.h */, - FFFD5a9f63787fb05a9f6378 /* Xml/SnJointRepXSerializer.cpp */, - FFFD5a9f63e07fb05a9f63e0 /* Xml/SnRepXCoreSerializer.cpp */, - FFFD5a9f64487fb05a9f6448 /* Xml/SnRepXUpgrader.cpp */, - FFFD5a9f64b07fb05a9f64b0 /* Xml/SnXmlSerialization.cpp */, - FFFD5a9f65187fb05a9f6518 /* File/SnFile.h */, + FFFDec051c007febec051c00 /* SnSerialUtils.h */, + FFFDec051c687febec051c68 /* SnSerializationRegistry.h */, + FFFDec051cd07febec051cd0 /* SnSerialUtils.cpp */, + FFFDec051d387febec051d38 /* SnSerialization.cpp */, + FFFDec051da07febec051da0 /* SnSerializationRegistry.cpp */, + FFFDec051e087febec051e08 /* Binary/SnConvX.h */, + FFFDec051e707febec051e70 /* Binary/SnConvX_Align.h */, + FFFDec051ed87febec051ed8 /* Binary/SnConvX_Common.h */, + FFFDec051f407febec051f40 /* Binary/SnConvX_MetaData.h */, + FFFDec051fa87febec051fa8 /* Binary/SnConvX_Output.h */, + FFFDec0520107febec052010 /* Binary/SnConvX_Union.h */, + FFFDec0520787febec052078 /* Binary/SnSerializationContext.h */, + FFFDec0520e07febec0520e0 /* Binary/SnBinaryDeserialization.cpp */, + FFFDec0521487febec052148 /* Binary/SnBinarySerialization.cpp */, + FFFDec0521b07febec0521b0 /* Binary/SnConvX.cpp */, + FFFDec0522187febec052218 /* Binary/SnConvX_Align.cpp */, + FFFDec0522807febec052280 /* Binary/SnConvX_Convert.cpp */, + FFFDec0522e87febec0522e8 /* Binary/SnConvX_Error.cpp */, + FFFDec0523507febec052350 /* Binary/SnConvX_MetaData.cpp */, + FFFDec0523b87febec0523b8 /* Binary/SnConvX_Output.cpp */, + FFFDec0524207febec052420 /* Binary/SnConvX_Union.cpp */, + FFFDec0524887febec052488 /* Binary/SnSerializationContext.cpp */, + FFFDec0524f07febec0524f0 /* Xml/SnJointRepXSerializer.h */, + FFFDec0525587febec052558 /* Xml/SnPxStreamOperators.h */, + FFFDec0525c07febec0525c0 /* Xml/SnRepX1_0Defaults.h */, + FFFDec0526287febec052628 /* Xml/SnRepX3_1Defaults.h */, + FFFDec0526907febec052690 /* Xml/SnRepX3_2Defaults.h */, + FFFDec0526f87febec0526f8 /* Xml/SnRepXCollection.h */, + FFFDec0527607febec052760 /* Xml/SnRepXCoreSerializer.h */, + FFFDec0527c87febec0527c8 /* Xml/SnRepXSerializerImpl.h */, + FFFDec0528307febec052830 /* Xml/SnRepXUpgrader.h */, + FFFDec0528987febec052898 /* Xml/SnSimpleXmlWriter.h */, + FFFDec0529007febec052900 /* Xml/SnXmlDeserializer.h */, + FFFDec0529687febec052968 /* Xml/SnXmlImpl.h */, + FFFDec0529d07febec0529d0 /* Xml/SnXmlMemoryAllocator.h */, + FFFDec052a387febec052a38 /* Xml/SnXmlMemoryPool.h */, + FFFDec052aa07febec052aa0 /* Xml/SnXmlMemoryPoolStreams.h */, + FFFDec052b087febec052b08 /* Xml/SnXmlReader.h */, + FFFDec052b707febec052b70 /* Xml/SnXmlSerializer.h */, + FFFDec052bd87febec052bd8 /* Xml/SnXmlSimpleXmlWriter.h */, + FFFDec052c407febec052c40 /* Xml/SnXmlStringToType.h */, + FFFDec052ca87febec052ca8 /* Xml/SnXmlVisitorReader.h */, + FFFDec052d107febec052d10 /* Xml/SnXmlVisitorWriter.h */, + FFFDec052d787febec052d78 /* Xml/SnXmlWriter.h */, + FFFDec052de07febec052de0 /* Xml/SnJointRepXSerializer.cpp */, + FFFDec052e487febec052e48 /* Xml/SnRepXCoreSerializer.cpp */, + FFFDec052eb07febec052eb0 /* Xml/SnRepXUpgrader.cpp */, + FFFDec052f187febec052f18 /* Xml/SnXmlSerialization.cpp */, + FFFDec052f807febec052f80 /* File/SnFile.h */, ); name = "serialization"; sourceTree = SOURCE_ROOT; }; - FFFB5cb656687fb05cb65668 /* metadata */ = { + FFFBebeb8ea87febebeb8ea8 /* metadata */ = { isa = PBXGroup; children = ( - FFFD5a9f2e007fb05a9f2e00 /* core/include/PvdMetaDataDefineProperties.h */, - FFFD5a9f2e687fb05a9f2e68 /* core/include/PvdMetaDataExtensions.h */, - FFFD5a9f2ed07fb05a9f2ed0 /* core/include/PvdMetaDataPropertyVisitor.h */, - FFFD5a9f2f387fb05a9f2f38 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */, - FFFD5a9f2fa07fb05a9f2fa0 /* core/include/PxAutoGeneratedMetaDataObjects.h */, - FFFD5a9f30087fb05a9f3008 /* core/include/PxMetaDataCompare.h */, - FFFD5a9f30707fb05a9f3070 /* core/include/PxMetaDataCppPrefix.h */, - FFFD5a9f30d87fb05a9f30d8 /* core/include/PxMetaDataObjects.h */, - FFFD5a9f31407fb05a9f3140 /* core/include/RepXMetaDataPropertyVisitor.h */, - FFFD5a9f31a87fb05a9f31a8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */, - FFFD5a9f32107fb05a9f3210 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */, - FFFD5a9f32787fb05a9f3278 /* extensions/include/PxExtensionMetaDataObjects.h */, - FFFD5a9f32e07fb05a9f32e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */, + FFFDec0506007febec050600 /* core/include/PvdMetaDataDefineProperties.h */, + FFFDec0506687febec050668 /* core/include/PvdMetaDataExtensions.h */, + FFFDec0506d07febec0506d0 /* core/include/PvdMetaDataPropertyVisitor.h */, + FFFDec0507387febec050738 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */, + FFFDec0507a07febec0507a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */, + FFFDec0508087febec050808 /* core/include/PxMetaDataCompare.h */, + FFFDec0508707febec050870 /* core/include/PxMetaDataCppPrefix.h */, + FFFDec0508d87febec0508d8 /* core/include/PxMetaDataObjects.h */, + FFFDec0509407febec050940 /* core/include/RepXMetaDataPropertyVisitor.h */, + FFFDec0509a87febec0509a8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */, + FFFDec050a107febec050a10 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */, + FFFDec050a787febec050a78 /* extensions/include/PxExtensionMetaDataObjects.h */, + FFFDec050ae07febec050ae0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */, ); name = "metadata"; sourceTree = SOURCE_ROOT; }; - FFFB5cb732c07fb05cb732c0 /* SceneQuery */ = { + FFFBebec79007febebec7900 /* SceneQuery */ = { isa = PBXGroup; children = ( - FFFB5cb763307fb05cb76330 /* src */, - FFFB5cb763587fb05cb76358 /* include */, + FFFBebec98307febebec9830 /* src */, + FFFBebec98587febebec9858 /* include */, ); name = "SceneQuery"; sourceTree = "<group>"; }; - FFFB5cb763307fb05cb76330 /* src */ = { + FFFBebec98307febebec9830 /* src */ = { isa = PBXGroup; children = ( - FFFD5a9f92007fb05a9f9200 /* SqAABBPruner.cpp */, - FFFD5a9f92687fb05a9f9268 /* SqAABBTree.cpp */, - FFFD5a9f92d07fb05a9f92d0 /* SqAABBTreeUpdateMap.cpp */, - FFFD5a9f93387fb05a9f9338 /* SqBounds.cpp */, - FFFD5a9f93a07fb05a9f93a0 /* SqBucketPruner.cpp */, - FFFD5a9f94087fb05a9f9408 /* SqExtendedBucketPruner.cpp */, - FFFD5a9f94707fb05a9f9470 /* SqMetaData.cpp */, - FFFD5a9f94d87fb05a9f94d8 /* SqPruningPool.cpp */, - FFFD5a9f95407fb05a9f9540 /* SqPruningStructure.cpp */, - FFFD5a9f95a87fb05a9f95a8 /* SqSceneQueryManager.cpp */, - FFFD5a9f96107fb05a9f9610 /* SqAABBPruner.h */, - FFFD5a9f96787fb05a9f9678 /* SqAABBTree.h */, - FFFD5a9f96e07fb05a9f96e0 /* SqAABBTreeQuery.h */, - FFFD5a9f97487fb05a9f9748 /* SqAABBTreeUpdateMap.h */, - FFFD5a9f97b07fb05a9f97b0 /* SqBounds.h */, - FFFD5a9f98187fb05a9f9818 /* SqBucketPruner.h */, - FFFD5a9f98807fb05a9f9880 /* SqExtendedBucketPruner.h */, - FFFD5a9f98e87fb05a9f98e8 /* SqPrunerTestsSIMD.h */, - FFFD5a9f99507fb05a9f9950 /* SqPruningPool.h */, - FFFD5a9f99b87fb05a9f99b8 /* SqTypedef.h */, + FFFDec056c007febec056c00 /* SqAABBPruner.cpp */, + FFFDec056c687febec056c68 /* SqAABBTree.cpp */, + FFFDec056cd07febec056cd0 /* SqAABBTreeUpdateMap.cpp */, + FFFDec056d387febec056d38 /* SqBounds.cpp */, + FFFDec056da07febec056da0 /* SqBucketPruner.cpp */, + FFFDec056e087febec056e08 /* SqExtendedBucketPruner.cpp */, + FFFDec056e707febec056e70 /* SqMetaData.cpp */, + FFFDec056ed87febec056ed8 /* SqPruningPool.cpp */, + FFFDec056f407febec056f40 /* SqPruningStructure.cpp */, + FFFDec056fa87febec056fa8 /* SqSceneQueryManager.cpp */, + FFFDec0570107febec057010 /* SqAABBPruner.h */, + FFFDec0570787febec057078 /* SqAABBTree.h */, + FFFDec0570e07febec0570e0 /* SqAABBTreeQuery.h */, + FFFDec0571487febec057148 /* SqAABBTreeUpdateMap.h */, + FFFDec0571b07febec0571b0 /* SqBounds.h */, + FFFDec0572187febec057218 /* SqBucketPruner.h */, + FFFDec0572807febec057280 /* SqExtendedBucketPruner.h */, + FFFDec0572e87febec0572e8 /* SqPrunerTestsSIMD.h */, + FFFDec0573507febec057350 /* SqPruningPool.h */, + FFFDec0573b87febec0573b8 /* SqTypedef.h */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB5cb763587fb05cb76358 /* include */ = { + FFFBebec98587febebec9858 /* include */ = { isa = PBXGroup; children = ( - FFFD5cb776207fb05cb77620 /* SqPruner.h */, - FFFD5cb776887fb05cb77688 /* SqPrunerMergeData.h */, - FFFD5cb776f07fb05cb776f0 /* SqPruningStructure.h */, - FFFD5cb777587fb05cb77758 /* SqSceneQueryManager.h */, + FFFDebecbba07febebecbba0 /* SqPruner.h */, + FFFDebecbc087febebecbc08 /* SqPrunerMergeData.h */, + FFFDebecbc707febebecbc70 /* SqPruningStructure.h */, + FFFDebecbcd87febebecbcd8 /* SqSceneQueryManager.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB5cb778e07fb05cb778e0 /* SimulationController */ = { + FFFBebecbe607febebecbe60 /* SimulationController */ = { isa = PBXGroup; children = ( - FFFB5cb7b2e07fb05cb7b2e0 /* include */, - FFFB5cb7b3087fb05cb7b308 /* src */, + FFFBebed00807febebed0080 /* include */, + FFFBebed00a87febebed00a8 /* src */, ); name = "SimulationController"; sourceTree = "<group>"; }; - FFFB5cb7b2e07fb05cb7b2e0 /* include */ = { + FFFBebed00807febebed0080 /* include */ = { isa = PBXGroup; children = ( - FFFD5a9fbc007fb05a9fbc00 /* ScActorCore.h */, - FFFD5a9fbc687fb05a9fbc68 /* ScArticulationCore.h */, - FFFD5a9fbcd07fb05a9fbcd0 /* ScArticulationJointCore.h */, - FFFD5a9fbd387fb05a9fbd38 /* ScBodyCore.h */, - FFFD5a9fbda07fb05a9fbda0 /* ScClothCore.h */, - FFFD5a9fbe087fb05a9fbe08 /* ScClothFabricCore.h */, - FFFD5a9fbe707fb05a9fbe70 /* ScConstraintCore.h */, - FFFD5a9fbed87fb05a9fbed8 /* ScIterators.h */, - FFFD5a9fbf407fb05a9fbf40 /* ScMaterialCore.h */, - FFFD5a9fbfa87fb05a9fbfa8 /* ScParticleSystemCore.h */, - FFFD5a9fc0107fb05a9fc010 /* ScPhysics.h */, - FFFD5a9fc0787fb05a9fc078 /* ScRigidCore.h */, - FFFD5a9fc0e07fb05a9fc0e0 /* ScScene.h */, - FFFD5a9fc1487fb05a9fc148 /* ScShapeCore.h */, - FFFD5a9fc1b07fb05a9fc1b0 /* ScStaticCore.h */, + FFFDec0598007febec059800 /* ScActorCore.h */, + FFFDec0598687febec059868 /* ScArticulationCore.h */, + FFFDec0598d07febec0598d0 /* ScArticulationJointCore.h */, + FFFDec0599387febec059938 /* ScBodyCore.h */, + FFFDec0599a07febec0599a0 /* ScClothCore.h */, + FFFDec059a087febec059a08 /* ScClothFabricCore.h */, + FFFDec059a707febec059a70 /* ScConstraintCore.h */, + FFFDec059ad87febec059ad8 /* ScIterators.h */, + FFFDec059b407febec059b40 /* ScMaterialCore.h */, + FFFDec059ba87febec059ba8 /* ScParticleSystemCore.h */, + FFFDec059c107febec059c10 /* ScPhysics.h */, + FFFDec059c787febec059c78 /* ScRigidCore.h */, + FFFDec059ce07febec059ce0 /* ScScene.h */, + FFFDec059d487febec059d48 /* ScShapeCore.h */, + FFFDec059db07febec059db0 /* ScStaticCore.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB5cb7b3087fb05cb7b308 /* src */ = { + FFFBebed00a87febebed00a8 /* src */ = { isa = PBXGroup; children = ( - FFFD5a9fee007fb05a9fee00 /* ScActorElementPair.h */, - FFFD5a9fee687fb05a9fee68 /* ScActorInteraction.h */, - FFFD5a9feed07fb05a9feed0 /* ScActorPair.h */, - FFFD5a9fef387fb05a9fef38 /* ScActorSim.h */, - FFFD5a9fefa07fb05a9fefa0 /* ScArticulationJointSim.h */, - FFFD5a9ff0087fb05a9ff008 /* ScArticulationSim.h */, - FFFD5a9ff0707fb05a9ff070 /* ScBodySim.h */, - FFFD5a9ff0d87fb05a9ff0d8 /* ScClient.h */, - FFFD5a9ff1407fb05a9ff140 /* ScConstraintGroupNode.h */, - FFFD5a9ff1a87fb05a9ff1a8 /* ScConstraintInteraction.h */, - FFFD5a9ff2107fb05a9ff210 /* ScConstraintProjectionManager.h */, - FFFD5a9ff2787fb05a9ff278 /* ScConstraintProjectionTree.h */, - FFFD5a9ff2e07fb05a9ff2e0 /* ScConstraintSim.h */, - FFFD5a9ff3487fb05a9ff348 /* ScContactReportBuffer.h */, - FFFD5a9ff3b07fb05a9ff3b0 /* ScContactStream.h */, - FFFD5a9ff4187fb05a9ff418 /* ScElementInteractionMarker.h */, - FFFD5a9ff4807fb05a9ff480 /* ScElementSim.h */, - FFFD5a9ff4e87fb05a9ff4e8 /* ScElementSimInteraction.h */, - FFFD5a9ff5507fb05a9ff550 /* ScInteraction.h */, - FFFD5a9ff5b87fb05a9ff5b8 /* ScInteractionFlags.h */, - FFFD5a9ff6207fb05a9ff620 /* ScNPhaseCore.h */, - FFFD5a9ff6887fb05a9ff688 /* ScObjectIDTracker.h */, - FFFD5a9ff6f07fb05a9ff6f0 /* ScRbElementInteraction.h */, - FFFD5a9ff7587fb05a9ff758 /* ScRigidSim.h */, - FFFD5a9ff7c07fb05a9ff7c0 /* ScShapeInteraction.h */, - FFFD5a9ff8287fb05a9ff828 /* ScShapeIterator.h */, - FFFD5a9ff8907fb05a9ff890 /* ScShapeSim.h */, - FFFD5a9ff8f87fb05a9ff8f8 /* ScSimStateData.h */, - FFFD5a9ff9607fb05a9ff960 /* ScSimStats.h */, - FFFD5a9ff9c87fb05a9ff9c8 /* ScSimulationController.h */, - FFFD5a9ffa307fb05a9ffa30 /* ScSqBoundsManager.h */, - FFFD5a9ffa987fb05a9ffa98 /* ScStaticSim.h */, - FFFD5a9ffb007fb05a9ffb00 /* ScTriggerInteraction.h */, - FFFD5a9ffb687fb05a9ffb68 /* ScTriggerPairs.h */, - FFFD5a9ffbd07fb05a9ffbd0 /* ScActorCore.cpp */, - FFFD5a9ffc387fb05a9ffc38 /* ScActorSim.cpp */, - FFFD5a9ffca07fb05a9ffca0 /* ScArticulationCore.cpp */, - FFFD5a9ffd087fb05a9ffd08 /* ScArticulationJointCore.cpp */, - FFFD5a9ffd707fb05a9ffd70 /* ScArticulationJointSim.cpp */, - FFFD5a9ffdd87fb05a9ffdd8 /* ScArticulationSim.cpp */, - FFFD5a9ffe407fb05a9ffe40 /* ScBodyCore.cpp */, - FFFD5a9ffea87fb05a9ffea8 /* ScBodyCoreKinematic.cpp */, - FFFD5a9fff107fb05a9fff10 /* ScBodySim.cpp */, - FFFD5a9fff787fb05a9fff78 /* ScConstraintCore.cpp */, - FFFD5a9fffe07fb05a9fffe0 /* ScConstraintGroupNode.cpp */, - FFFD5aa000487fb05aa00048 /* ScConstraintInteraction.cpp */, - FFFD5aa000b07fb05aa000b0 /* ScConstraintProjectionManager.cpp */, - FFFD5aa001187fb05aa00118 /* ScConstraintProjectionTree.cpp */, - FFFD5aa001807fb05aa00180 /* ScConstraintSim.cpp */, - FFFD5aa001e87fb05aa001e8 /* ScElementInteractionMarker.cpp */, - FFFD5aa002507fb05aa00250 /* ScElementSim.cpp */, - FFFD5aa002b87fb05aa002b8 /* ScInteraction.cpp */, - FFFD5aa003207fb05aa00320 /* ScIterators.cpp */, - FFFD5aa003887fb05aa00388 /* ScMaterialCore.cpp */, - FFFD5aa003f07fb05aa003f0 /* ScMetaData.cpp */, - FFFD5aa004587fb05aa00458 /* ScNPhaseCore.cpp */, - FFFD5aa004c07fb05aa004c0 /* ScPhysics.cpp */, - FFFD5aa005287fb05aa00528 /* ScRigidCore.cpp */, - FFFD5aa005907fb05aa00590 /* ScRigidSim.cpp */, - FFFD5aa005f87fb05aa005f8 /* ScScene.cpp */, - FFFD5aa006607fb05aa00660 /* ScShapeCore.cpp */, - FFFD5aa006c87fb05aa006c8 /* ScShapeInteraction.cpp */, - FFFD5aa007307fb05aa00730 /* ScShapeSim.cpp */, - FFFD5aa007987fb05aa00798 /* ScSimStats.cpp */, - FFFD5aa008007fb05aa00800 /* ScSimulationController.cpp */, - FFFD5aa008687fb05aa00868 /* ScSqBoundsManager.cpp */, - FFFD5aa008d07fb05aa008d0 /* ScStaticCore.cpp */, - FFFD5aa009387fb05aa00938 /* ScStaticSim.cpp */, - FFFD5aa009a07fb05aa009a0 /* ScTriggerInteraction.cpp */, - FFFD5aa00a087fb05aa00a08 /* particles/ScParticleBodyInteraction.h */, - FFFD5aa00a707fb05aa00a70 /* particles/ScParticlePacketShape.h */, - FFFD5aa00ad87fb05aa00ad8 /* particles/ScParticleSystemSim.h */, - FFFD5aa00b407fb05aa00b40 /* particles/ScParticleBodyInteraction.cpp */, - FFFD5aa00ba87fb05aa00ba8 /* particles/ScParticlePacketShape.cpp */, - FFFD5aa00c107fb05aa00c10 /* particles/ScParticleSystemCore.cpp */, - FFFD5aa00c787fb05aa00c78 /* particles/ScParticleSystemSim.cpp */, - FFFD5aa00ce07fb05aa00ce0 /* cloth/ScClothShape.h */, - FFFD5aa00d487fb05aa00d48 /* cloth/ScClothSim.h */, - FFFD5aa00db07fb05aa00db0 /* cloth/ScClothCore.cpp */, - FFFD5aa00e187fb05aa00e18 /* cloth/ScClothFabricCore.cpp */, - FFFD5aa00e807fb05aa00e80 /* cloth/ScClothShape.cpp */, - FFFD5aa00ee87fb05aa00ee8 /* cloth/ScClothSim.cpp */, + FFFDec05ca007febec05ca00 /* ScActorElementPair.h */, + FFFDec05ca687febec05ca68 /* ScActorInteraction.h */, + FFFDec05cad07febec05cad0 /* ScActorPair.h */, + FFFDec05cb387febec05cb38 /* ScActorSim.h */, + FFFDec05cba07febec05cba0 /* ScArticulationJointSim.h */, + FFFDec05cc087febec05cc08 /* ScArticulationSim.h */, + FFFDec05cc707febec05cc70 /* ScBodySim.h */, + FFFDec05ccd87febec05ccd8 /* ScClient.h */, + FFFDec05cd407febec05cd40 /* ScConstraintGroupNode.h */, + FFFDec05cda87febec05cda8 /* ScConstraintInteraction.h */, + FFFDec05ce107febec05ce10 /* ScConstraintProjectionManager.h */, + FFFDec05ce787febec05ce78 /* ScConstraintProjectionTree.h */, + FFFDec05cee07febec05cee0 /* ScConstraintSim.h */, + FFFDec05cf487febec05cf48 /* ScContactReportBuffer.h */, + FFFDec05cfb07febec05cfb0 /* ScContactStream.h */, + FFFDec05d0187febec05d018 /* ScElementInteractionMarker.h */, + FFFDec05d0807febec05d080 /* ScElementSim.h */, + FFFDec05d0e87febec05d0e8 /* ScElementSimInteraction.h */, + FFFDec05d1507febec05d150 /* ScInteraction.h */, + FFFDec05d1b87febec05d1b8 /* ScInteractionFlags.h */, + FFFDec05d2207febec05d220 /* ScNPhaseCore.h */, + FFFDec05d2887febec05d288 /* ScObjectIDTracker.h */, + FFFDec05d2f07febec05d2f0 /* ScRbElementInteraction.h */, + FFFDec05d3587febec05d358 /* ScRigidSim.h */, + FFFDec05d3c07febec05d3c0 /* ScShapeInteraction.h */, + FFFDec05d4287febec05d428 /* ScShapeIterator.h */, + FFFDec05d4907febec05d490 /* ScShapeSim.h */, + FFFDec05d4f87febec05d4f8 /* ScSimStateData.h */, + FFFDec05d5607febec05d560 /* ScSimStats.h */, + FFFDec05d5c87febec05d5c8 /* ScSimulationController.h */, + FFFDec05d6307febec05d630 /* ScSqBoundsManager.h */, + FFFDec05d6987febec05d698 /* ScStaticSim.h */, + FFFDec05d7007febec05d700 /* ScTriggerInteraction.h */, + FFFDec05d7687febec05d768 /* ScTriggerPairs.h */, + FFFDec05d7d07febec05d7d0 /* ScActorCore.cpp */, + FFFDec05d8387febec05d838 /* ScActorSim.cpp */, + FFFDec05d8a07febec05d8a0 /* ScArticulationCore.cpp */, + FFFDec05d9087febec05d908 /* ScArticulationJointCore.cpp */, + FFFDec05d9707febec05d970 /* ScArticulationJointSim.cpp */, + FFFDec05d9d87febec05d9d8 /* ScArticulationSim.cpp */, + FFFDec05da407febec05da40 /* ScBodyCore.cpp */, + FFFDec05daa87febec05daa8 /* ScBodyCoreKinematic.cpp */, + FFFDec05db107febec05db10 /* ScBodySim.cpp */, + FFFDec05db787febec05db78 /* ScConstraintCore.cpp */, + FFFDec05dbe07febec05dbe0 /* ScConstraintGroupNode.cpp */, + FFFDec05dc487febec05dc48 /* ScConstraintInteraction.cpp */, + FFFDec05dcb07febec05dcb0 /* ScConstraintProjectionManager.cpp */, + FFFDec05dd187febec05dd18 /* ScConstraintProjectionTree.cpp */, + FFFDec05dd807febec05dd80 /* ScConstraintSim.cpp */, + FFFDec05dde87febec05dde8 /* ScElementInteractionMarker.cpp */, + FFFDec05de507febec05de50 /* ScElementSim.cpp */, + FFFDec05deb87febec05deb8 /* ScInteraction.cpp */, + FFFDec05df207febec05df20 /* ScIterators.cpp */, + FFFDec05df887febec05df88 /* ScMaterialCore.cpp */, + FFFDec05dff07febec05dff0 /* ScMetaData.cpp */, + FFFDec05e0587febec05e058 /* ScNPhaseCore.cpp */, + FFFDec05e0c07febec05e0c0 /* ScPhysics.cpp */, + FFFDec05e1287febec05e128 /* ScRigidCore.cpp */, + FFFDec05e1907febec05e190 /* ScRigidSim.cpp */, + FFFDec05e1f87febec05e1f8 /* ScScene.cpp */, + FFFDec05e2607febec05e260 /* ScShapeCore.cpp */, + FFFDec05e2c87febec05e2c8 /* ScShapeInteraction.cpp */, + FFFDec05e3307febec05e330 /* ScShapeSim.cpp */, + FFFDec05e3987febec05e398 /* ScSimStats.cpp */, + FFFDec05e4007febec05e400 /* ScSimulationController.cpp */, + FFFDec05e4687febec05e468 /* ScSqBoundsManager.cpp */, + FFFDec05e4d07febec05e4d0 /* ScStaticCore.cpp */, + FFFDec05e5387febec05e538 /* ScStaticSim.cpp */, + FFFDec05e5a07febec05e5a0 /* ScTriggerInteraction.cpp */, + FFFDec05e6087febec05e608 /* particles/ScParticleBodyInteraction.h */, + FFFDec05e6707febec05e670 /* particles/ScParticlePacketShape.h */, + FFFDec05e6d87febec05e6d8 /* particles/ScParticleSystemSim.h */, + FFFDec05e7407febec05e740 /* particles/ScParticleBodyInteraction.cpp */, + FFFDec05e7a87febec05e7a8 /* particles/ScParticlePacketShape.cpp */, + FFFDec05e8107febec05e810 /* particles/ScParticleSystemCore.cpp */, + FFFDec05e8787febec05e878 /* particles/ScParticleSystemSim.cpp */, + FFFDec05e8e07febec05e8e0 /* cloth/ScClothShape.h */, + FFFDec05e9487febec05e948 /* cloth/ScClothSim.h */, + FFFDec05e9b07febec05e9b0 /* cloth/ScClothCore.cpp */, + FFFDec05ea187febec05ea18 /* cloth/ScClothFabricCore.cpp */, + FFFDec05ea807febec05ea80 /* cloth/ScClothShape.cpp */, + FFFDec05eae87febec05eae8 /* cloth/ScClothSim.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB5cb7c7007fb05cb7c700 /* PhysXCooking */ = { + FFFBebed04c07febebed04c0 /* PhysXCooking */ = { isa = PBXGroup; children = ( - FFFB5cb801207fb05cb80120 /* include */, - FFFB5cb801487fb05cb80148 /* src */, + FFFBebed49407febebed4940 /* include */, + FFFBebed49687febebed4968 /* src */, ); name = "PhysXCooking"; sourceTree = "<group>"; }; - FFFB5cb801207fb05cb80120 /* include */ = { + FFFBebed49407febebed4940 /* include */ = { isa = PBXGroup; children = ( - FFFD5cb85f007fb05cb85f00 /* PxBVH33MidphaseDesc.h */, - FFFD5cb85f687fb05cb85f68 /* PxBVH34MidphaseDesc.h */, - FFFD5cb85fd07fb05cb85fd0 /* PxConvexMeshDesc.h */, - FFFD5cb860387fb05cb86038 /* PxCooking.h */, - FFFD5cb860a07fb05cb860a0 /* PxMidphaseDesc.h */, - FFFD5cb861087fb05cb86108 /* PxTriangleMeshDesc.h */, - FFFD5cb861707fb05cb86170 /* Pxc.h */, + FFFDebeda7707febebeda770 /* PxBVH33MidphaseDesc.h */, + FFFDebeda7d87febebeda7d8 /* PxBVH34MidphaseDesc.h */, + FFFDebeda8407febebeda840 /* PxConvexMeshDesc.h */, + FFFDebeda8a87febebeda8a8 /* PxCooking.h */, + FFFDebeda9107febebeda910 /* PxMidphaseDesc.h */, + FFFDebeda9787febebeda978 /* PxTriangleMeshDesc.h */, + FFFDebeda9e07febebeda9e0 /* Pxc.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB5cb801487fb05cb80148 /* src */ = { + FFFBebed49687febebed4968 /* src */ = { isa = PBXGroup; children = ( - FFFD5aa030007fb05aa03000 /* Adjacencies.cpp */, - FFFD5aa030687fb05aa03068 /* Cooking.cpp */, - FFFD5aa030d07fb05aa030d0 /* CookingUtils.cpp */, - FFFD5aa031387fb05aa03138 /* EdgeList.cpp */, - FFFD5aa031a07fb05aa031a0 /* MeshCleaner.cpp */, - FFFD5aa032087fb05aa03208 /* Quantizer.cpp */, - FFFD5aa032707fb05aa03270 /* Adjacencies.h */, - FFFD5aa032d87fb05aa032d8 /* Cooking.h */, - FFFD5aa033407fb05aa03340 /* CookingUtils.h */, - FFFD5aa033a87fb05aa033a8 /* EdgeList.h */, - FFFD5aa034107fb05aa03410 /* MeshCleaner.h */, - FFFD5aa034787fb05aa03478 /* Quantizer.h */, - FFFD5aa034e07fb05aa034e0 /* mesh/GrbTriangleMeshCooking.cpp */, - FFFD5aa035487fb05aa03548 /* mesh/HeightFieldCooking.cpp */, - FFFD5aa035b07fb05aa035b0 /* mesh/RTreeCooking.cpp */, - FFFD5aa036187fb05aa03618 /* mesh/TriangleMeshBuilder.cpp */, - FFFD5aa036807fb05aa03680 /* mesh/GrbTriangleMeshCooking.h */, - FFFD5aa036e87fb05aa036e8 /* mesh/HeightFieldCooking.h */, - FFFD5aa037507fb05aa03750 /* mesh/QuickSelect.h */, - FFFD5aa037b87fb05aa037b8 /* mesh/RTreeCooking.h */, - FFFD5aa038207fb05aa03820 /* mesh/TriangleMeshBuilder.h */, - FFFD5aa038887fb05aa03888 /* convex/BigConvexDataBuilder.cpp */, - FFFD5aa038f07fb05aa038f0 /* convex/ConvexHullBuilder.cpp */, - FFFD5aa039587fb05aa03958 /* convex/ConvexHullLib.cpp */, - FFFD5aa039c07fb05aa039c0 /* convex/ConvexHullUtils.cpp */, - FFFD5aa03a287fb05aa03a28 /* convex/ConvexMeshBuilder.cpp */, - FFFD5aa03a907fb05aa03a90 /* convex/ConvexPolygonsBuilder.cpp */, - FFFD5aa03af87fb05aa03af8 /* convex/InflationConvexHullLib.cpp */, - FFFD5aa03b607fb05aa03b60 /* convex/QuickHullConvexHullLib.cpp */, - FFFD5aa03bc87fb05aa03bc8 /* convex/VolumeIntegration.cpp */, - FFFD5aa03c307fb05aa03c30 /* convex/BigConvexDataBuilder.h */, - FFFD5aa03c987fb05aa03c98 /* convex/ConvexHullBuilder.h */, - FFFD5aa03d007fb05aa03d00 /* convex/ConvexHullLib.h */, - FFFD5aa03d687fb05aa03d68 /* convex/ConvexHullUtils.h */, - FFFD5aa03dd07fb05aa03dd0 /* convex/ConvexMeshBuilder.h */, - FFFD5aa03e387fb05aa03e38 /* convex/ConvexPolygonsBuilder.h */, - FFFD5aa03ea07fb05aa03ea0 /* convex/InflationConvexHullLib.h */, - FFFD5aa03f087fb05aa03f08 /* convex/QuickHullConvexHullLib.h */, - FFFD5aa03f707fb05aa03f70 /* convex/VolumeIntegration.h */, + FFFDec060c007febec060c00 /* Adjacencies.cpp */, + FFFDec060c687febec060c68 /* Cooking.cpp */, + FFFDec060cd07febec060cd0 /* CookingUtils.cpp */, + FFFDec060d387febec060d38 /* EdgeList.cpp */, + FFFDec060da07febec060da0 /* MeshCleaner.cpp */, + FFFDec060e087febec060e08 /* Quantizer.cpp */, + FFFDec060e707febec060e70 /* Adjacencies.h */, + FFFDec060ed87febec060ed8 /* Cooking.h */, + FFFDec060f407febec060f40 /* CookingUtils.h */, + FFFDec060fa87febec060fa8 /* EdgeList.h */, + FFFDec0610107febec061010 /* MeshCleaner.h */, + FFFDec0610787febec061078 /* Quantizer.h */, + FFFDec0610e07febec0610e0 /* mesh/GrbTriangleMeshCooking.cpp */, + FFFDec0611487febec061148 /* mesh/HeightFieldCooking.cpp */, + FFFDec0611b07febec0611b0 /* mesh/RTreeCooking.cpp */, + FFFDec0612187febec061218 /* mesh/TriangleMeshBuilder.cpp */, + FFFDec0612807febec061280 /* mesh/GrbTriangleMeshCooking.h */, + FFFDec0612e87febec0612e8 /* mesh/HeightFieldCooking.h */, + FFFDec0613507febec061350 /* mesh/QuickSelect.h */, + FFFDec0613b87febec0613b8 /* mesh/RTreeCooking.h */, + FFFDec0614207febec061420 /* mesh/TriangleMeshBuilder.h */, + FFFDec0614887febec061488 /* convex/BigConvexDataBuilder.cpp */, + FFFDec0614f07febec0614f0 /* convex/ConvexHullBuilder.cpp */, + FFFDec0615587febec061558 /* convex/ConvexHullLib.cpp */, + FFFDec0615c07febec0615c0 /* convex/ConvexHullUtils.cpp */, + FFFDec0616287febec061628 /* convex/ConvexMeshBuilder.cpp */, + FFFDec0616907febec061690 /* convex/ConvexPolygonsBuilder.cpp */, + FFFDec0616f87febec0616f8 /* convex/InflationConvexHullLib.cpp */, + FFFDec0617607febec061760 /* convex/QuickHullConvexHullLib.cpp */, + FFFDec0617c87febec0617c8 /* convex/VolumeIntegration.cpp */, + FFFDec0618307febec061830 /* convex/BigConvexDataBuilder.h */, + FFFDec0618987febec061898 /* convex/ConvexHullBuilder.h */, + FFFDec0619007febec061900 /* convex/ConvexHullLib.h */, + FFFDec0619687febec061968 /* convex/ConvexHullUtils.h */, + FFFDec0619d07febec0619d0 /* convex/ConvexMeshBuilder.h */, + FFFDec061a387febec061a38 /* convex/ConvexPolygonsBuilder.h */, + FFFDec061aa07febec061aa0 /* convex/InflationConvexHullLib.h */, + FFFDec061b087febec061b08 /* convex/QuickHullConvexHullLib.h */, + FFFDec061b707febec061b70 /* convex/VolumeIntegration.h */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB5b2fb4e07fb05b2fb4e0 /* PhysXCommon */ = { + FFFBed146af07febed146af0 /* PhysXCommon */ = { isa = PBXGroup; children = ( - FFFB5b0981607fb05b098160 /* include */, - FFFB5b0981887fb05b098188 /* common */, - FFFB5b0981b07fb05b0981b0 /* geomutils */, + FFFBed13b4407febed13b440 /* include */, + FFFBed13b4687febed13b468 /* common */, + FFFBed13b4907febed13b490 /* geomutils */, ); name = "PhysXCommon"; sourceTree = "<group>"; }; - FFFB5b0981607fb05b098160 /* include */ = { + FFFBed13b4407febed13b440 /* include */ = { isa = PBXGroup; children = ( - FFFD5b80ec007fb05b80ec00 /* common/PxBase.h */, - FFFD5b80ec687fb05b80ec68 /* common/PxCollection.h */, - FFFD5b80ecd07fb05b80ecd0 /* common/PxCoreUtilityTypes.h */, - FFFD5b80ed387fb05b80ed38 /* common/PxMetaData.h */, - FFFD5b80eda07fb05b80eda0 /* common/PxMetaDataFlags.h */, - FFFD5b80ee087fb05b80ee08 /* common/PxPhysXCommonConfig.h */, - FFFD5b80ee707fb05b80ee70 /* common/PxPhysicsInsertionCallback.h */, - FFFD5b80eed87fb05b80eed8 /* common/PxRenderBuffer.h */, - FFFD5b80ef407fb05b80ef40 /* common/PxSerialFramework.h */, - FFFD5b80efa87fb05b80efa8 /* common/PxSerializer.h */, - FFFD5b80f0107fb05b80f010 /* common/PxStringTable.h */, - FFFD5b80f0787fb05b80f078 /* common/PxTolerancesScale.h */, - FFFD5b80f0e07fb05b80f0e0 /* common/PxTypeInfo.h */, - FFFD5b80f1487fb05b80f148 /* geometry/PxBoxGeometry.h */, - FFFD5b80f1b07fb05b80f1b0 /* geometry/PxCapsuleGeometry.h */, - FFFD5b80f2187fb05b80f218 /* geometry/PxConvexMesh.h */, - FFFD5b80f2807fb05b80f280 /* geometry/PxConvexMeshGeometry.h */, - FFFD5b80f2e87fb05b80f2e8 /* geometry/PxGeometry.h */, - FFFD5b80f3507fb05b80f350 /* geometry/PxGeometryHelpers.h */, - FFFD5b80f3b87fb05b80f3b8 /* geometry/PxGeometryQuery.h */, - FFFD5b80f4207fb05b80f420 /* geometry/PxHeightField.h */, - FFFD5b80f4887fb05b80f488 /* geometry/PxHeightFieldDesc.h */, - FFFD5b80f4f07fb05b80f4f0 /* geometry/PxHeightFieldFlag.h */, - FFFD5b80f5587fb05b80f558 /* geometry/PxHeightFieldGeometry.h */, - FFFD5b80f5c07fb05b80f5c0 /* geometry/PxHeightFieldSample.h */, - FFFD5b80f6287fb05b80f628 /* geometry/PxMeshQuery.h */, - FFFD5b80f6907fb05b80f690 /* geometry/PxMeshScale.h */, - FFFD5b80f6f87fb05b80f6f8 /* geometry/PxPlaneGeometry.h */, - FFFD5b80f7607fb05b80f760 /* geometry/PxSimpleTriangleMesh.h */, - FFFD5b80f7c87fb05b80f7c8 /* geometry/PxSphereGeometry.h */, - FFFD5b80f8307fb05b80f830 /* geometry/PxTriangle.h */, - FFFD5b80f8987fb05b80f898 /* geometry/PxTriangleMesh.h */, - FFFD5b80f9007fb05b80f900 /* geometry/PxTriangleMeshGeometry.h */, + FFFDed80ec007febed80ec00 /* common/PxBase.h */, + FFFDed80ec687febed80ec68 /* common/PxCollection.h */, + FFFDed80ecd07febed80ecd0 /* common/PxCoreUtilityTypes.h */, + FFFDed80ed387febed80ed38 /* common/PxMetaData.h */, + FFFDed80eda07febed80eda0 /* common/PxMetaDataFlags.h */, + FFFDed80ee087febed80ee08 /* common/PxPhysXCommonConfig.h */, + FFFDed80ee707febed80ee70 /* common/PxPhysicsInsertionCallback.h */, + FFFDed80eed87febed80eed8 /* common/PxRenderBuffer.h */, + FFFDed80ef407febed80ef40 /* common/PxSerialFramework.h */, + FFFDed80efa87febed80efa8 /* common/PxSerializer.h */, + FFFDed80f0107febed80f010 /* common/PxStringTable.h */, + FFFDed80f0787febed80f078 /* common/PxTolerancesScale.h */, + FFFDed80f0e07febed80f0e0 /* common/PxTypeInfo.h */, + FFFDed80f1487febed80f148 /* geometry/PxBoxGeometry.h */, + FFFDed80f1b07febed80f1b0 /* geometry/PxCapsuleGeometry.h */, + FFFDed80f2187febed80f218 /* geometry/PxConvexMesh.h */, + FFFDed80f2807febed80f280 /* geometry/PxConvexMeshGeometry.h */, + FFFDed80f2e87febed80f2e8 /* geometry/PxGeometry.h */, + FFFDed80f3507febed80f350 /* geometry/PxGeometryHelpers.h */, + FFFDed80f3b87febed80f3b8 /* geometry/PxGeometryQuery.h */, + FFFDed80f4207febed80f420 /* geometry/PxHeightField.h */, + FFFDed80f4887febed80f488 /* geometry/PxHeightFieldDesc.h */, + FFFDed80f4f07febed80f4f0 /* geometry/PxHeightFieldFlag.h */, + FFFDed80f5587febed80f558 /* geometry/PxHeightFieldGeometry.h */, + FFFDed80f5c07febed80f5c0 /* geometry/PxHeightFieldSample.h */, + FFFDed80f6287febed80f628 /* geometry/PxMeshQuery.h */, + FFFDed80f6907febed80f690 /* geometry/PxMeshScale.h */, + FFFDed80f6f87febed80f6f8 /* geometry/PxPlaneGeometry.h */, + FFFDed80f7607febed80f760 /* geometry/PxSimpleTriangleMesh.h */, + FFFDed80f7c87febed80f7c8 /* geometry/PxSphereGeometry.h */, + FFFDed80f8307febed80f830 /* geometry/PxTriangle.h */, + FFFDed80f8987febed80f898 /* geometry/PxTriangleMesh.h */, + FFFDed80f9007febed80f900 /* geometry/PxTriangleMeshGeometry.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB5b0981887fb05b098188 /* common */ = { + FFFBed13b4687febed13b468 /* common */ = { isa = PBXGroup; children = ( - FFFD5a9a22007fb05a9a2200 /* src/CmBoxPruning.cpp */, - FFFD5a9a22687fb05a9a2268 /* src/CmCollection.cpp */, - FFFD5a9a22d07fb05a9a22d0 /* src/CmMathUtils.cpp */, - FFFD5a9a23387fb05a9a2338 /* src/CmPtrTable.cpp */, - FFFD5a9a23a07fb05a9a23a0 /* src/CmRadixSort.cpp */, - FFFD5a9a24087fb05a9a2408 /* src/CmRadixSortBuffered.cpp */, - FFFD5a9a24707fb05a9a2470 /* src/CmRenderOutput.cpp */, - FFFD5a9a24d87fb05a9a24d8 /* src/CmVisualization.cpp */, - FFFD5a9a25407fb05a9a2540 /* src/CmBitMap.h */, - FFFD5a9a25a87fb05a9a25a8 /* src/CmBoxPruning.h */, - FFFD5a9a26107fb05a9a2610 /* src/CmCollection.h */, - FFFD5a9a26787fb05a9a2678 /* src/CmConeLimitHelper.h */, - FFFD5a9a26e07fb05a9a26e0 /* src/CmFlushPool.h */, - FFFD5a9a27487fb05a9a2748 /* src/CmIDPool.h */, - FFFD5a9a27b07fb05a9a27b0 /* src/CmIO.h */, - FFFD5a9a28187fb05a9a2818 /* src/CmMatrix34.h */, - FFFD5a9a28807fb05a9a2880 /* src/CmPhysXCommon.h */, - FFFD5a9a28e87fb05a9a28e8 /* src/CmPool.h */, - FFFD5a9a29507fb05a9a2950 /* src/CmPreallocatingPool.h */, - FFFD5a9a29b87fb05a9a29b8 /* src/CmPriorityQueue.h */, - FFFD5a9a2a207fb05a9a2a20 /* src/CmPtrTable.h */, - FFFD5a9a2a887fb05a9a2a88 /* src/CmQueue.h */, - FFFD5a9a2af07fb05a9a2af0 /* src/CmRadixSort.h */, - FFFD5a9a2b587fb05a9a2b58 /* src/CmRadixSortBuffered.h */, - FFFD5a9a2bc07fb05a9a2bc0 /* src/CmReaderWriterLock.h */, - FFFD5a9a2c287fb05a9a2c28 /* src/CmRefCountable.h */, - FFFD5a9a2c907fb05a9a2c90 /* src/CmRenderBuffer.h */, - FFFD5a9a2cf87fb05a9a2cf8 /* src/CmRenderOutput.h */, - FFFD5a9a2d607fb05a9a2d60 /* src/CmScaling.h */, - FFFD5a9a2dc87fb05a9a2dc8 /* src/CmSpatialVector.h */, - FFFD5a9a2e307fb05a9a2e30 /* src/CmTask.h */, - FFFD5a9a2e987fb05a9a2e98 /* src/CmTaskPool.h */, - FFFD5a9a2f007fb05a9a2f00 /* src/CmTmpMem.h */, - FFFD5a9a2f687fb05a9a2f68 /* src/CmTransformUtils.h */, - FFFD5a9a2fd07fb05a9a2fd0 /* src/CmUtils.h */, - FFFD5a9a30387fb05a9a3038 /* src/CmVisualization.h */, + FFFDec990c007febec990c00 /* src/CmBoxPruning.cpp */, + FFFDec990c687febec990c68 /* src/CmCollection.cpp */, + FFFDec990cd07febec990cd0 /* src/CmMathUtils.cpp */, + FFFDec990d387febec990d38 /* src/CmPtrTable.cpp */, + FFFDec990da07febec990da0 /* src/CmRadixSort.cpp */, + FFFDec990e087febec990e08 /* src/CmRadixSortBuffered.cpp */, + FFFDec990e707febec990e70 /* src/CmRenderOutput.cpp */, + FFFDec990ed87febec990ed8 /* src/CmVisualization.cpp */, + FFFDec990f407febec990f40 /* src/CmBitMap.h */, + FFFDec990fa87febec990fa8 /* src/CmBoxPruning.h */, + FFFDec9910107febec991010 /* src/CmCollection.h */, + FFFDec9910787febec991078 /* src/CmConeLimitHelper.h */, + FFFDec9910e07febec9910e0 /* src/CmFlushPool.h */, + FFFDec9911487febec991148 /* src/CmIDPool.h */, + FFFDec9911b07febec9911b0 /* src/CmIO.h */, + FFFDec9912187febec991218 /* src/CmMatrix34.h */, + FFFDec9912807febec991280 /* src/CmPhysXCommon.h */, + FFFDec9912e87febec9912e8 /* src/CmPool.h */, + FFFDec9913507febec991350 /* src/CmPreallocatingPool.h */, + FFFDec9913b87febec9913b8 /* src/CmPriorityQueue.h */, + FFFDec9914207febec991420 /* src/CmPtrTable.h */, + FFFDec9914887febec991488 /* src/CmQueue.h */, + FFFDec9914f07febec9914f0 /* src/CmRadixSort.h */, + FFFDec9915587febec991558 /* src/CmRadixSortBuffered.h */, + FFFDec9915c07febec9915c0 /* src/CmReaderWriterLock.h */, + FFFDec9916287febec991628 /* src/CmRefCountable.h */, + FFFDec9916907febec991690 /* src/CmRenderBuffer.h */, + FFFDec9916f87febec9916f8 /* src/CmRenderOutput.h */, + FFFDec9917607febec991760 /* src/CmScaling.h */, + FFFDec9917c87febec9917c8 /* src/CmSpatialVector.h */, + FFFDec9918307febec991830 /* src/CmTask.h */, + FFFDec9918987febec991898 /* src/CmTaskPool.h */, + FFFDec9919007febec991900 /* src/CmTmpMem.h */, + FFFDec9919687febec991968 /* src/CmTransformUtils.h */, + FFFDec9919d07febec9919d0 /* src/CmUtils.h */, + FFFDec991a387febec991a38 /* src/CmVisualization.h */, ); name = "common"; sourceTree = SOURCE_ROOT; }; - FFFB5b0981b07fb05b0981b0 /* geomutils */ = { + FFFBed13b4907febed13b490 /* geomutils */ = { isa = PBXGroup; children = ( - FFFD5b8010007fb05b801000 /* headers/GuAxes.h */, - FFFD5b8010687fb05b801068 /* headers/GuBox.h */, - FFFD5b8010d07fb05b8010d0 /* headers/GuDistanceSegmentBox.h */, - FFFD5b8011387fb05b801138 /* headers/GuDistanceSegmentSegment.h */, - FFFD5b8011a07fb05b8011a0 /* headers/GuIntersectionBoxBox.h */, - FFFD5b8012087fb05b801208 /* headers/GuIntersectionTriangleBox.h */, - FFFD5b8012707fb05b801270 /* headers/GuRaycastTests.h */, - FFFD5b8012d87fb05b8012d8 /* headers/GuSIMDHelpers.h */, - FFFD5b8013407fb05b801340 /* headers/GuSegment.h */, - FFFD5b8013a87fb05b8013a8 /* ../../Include/GeomUtils */, - FFFD5b8014107fb05b801410 /* src/GuBounds.h */, - FFFD5b8014787fb05b801478 /* src/GuCapsule.h */, - FFFD5b8014e07fb05b8014e0 /* src/GuCenterExtents.h */, - FFFD5b8015487fb05b801548 /* src/GuGeometryUnion.h */, - FFFD5b8015b07fb05b8015b0 /* src/GuInternal.h */, - FFFD5b8016187fb05b801618 /* src/GuMTD.h */, - FFFD5b8016807fb05b801680 /* src/GuMeshFactory.h */, - FFFD5b8016e87fb05b8016e8 /* src/GuOverlapTests.h */, - FFFD5b8017507fb05b801750 /* src/GuSerialize.h */, - FFFD5b8017b87fb05b8017b8 /* src/GuSphere.h */, - FFFD5b8018207fb05b801820 /* src/GuSweepMTD.h */, - FFFD5b8018887fb05b801888 /* src/GuSweepSharedTests.h */, - FFFD5b8018f07fb05b8018f0 /* src/GuSweepTests.h */, - FFFD5b8019587fb05b801958 /* src/contact/GuContactMethodImpl.h */, - FFFD5b8019c07fb05b8019c0 /* src/contact/GuContactPolygonPolygon.h */, - FFFD5b801a287fb05b801a28 /* src/contact/GuFeatureCode.h */, - FFFD5b801a907fb05b801a90 /* src/contact/GuLegacyTraceLineCallback.h */, - FFFD5b801af87fb05b801af8 /* src/common/GuBarycentricCoordinates.h */, - FFFD5b801b607fb05b801b60 /* src/common/GuBoxConversion.h */, - FFFD5b801bc87fb05b801bc8 /* src/common/GuEdgeCache.h */, - FFFD5b801c307fb05b801c30 /* src/common/GuEdgeListData.h */, - FFFD5b801c987fb05b801c98 /* src/common/GuSeparatingAxes.h */, - FFFD5b801d007fb05b801d00 /* src/convex/GuBigConvexData.h */, - FFFD5b801d687fb05b801d68 /* src/convex/GuBigConvexData2.h */, - FFFD5b801dd07fb05b801dd0 /* src/convex/GuConvexEdgeFlags.h */, - FFFD5b801e387fb05b801e38 /* src/convex/GuConvexHelper.h */, - FFFD5b801ea07fb05b801ea0 /* src/convex/GuConvexMesh.h */, - FFFD5b801f087fb05b801f08 /* src/convex/GuConvexMeshData.h */, - FFFD5b801f707fb05b801f70 /* src/convex/GuConvexSupportTable.h */, - FFFD5b801fd87fb05b801fd8 /* src/convex/GuConvexUtilsInternal.h */, - FFFD5b8020407fb05b802040 /* src/convex/GuCubeIndex.h */, - FFFD5b8020a87fb05b8020a8 /* src/convex/GuHillClimbing.h */, - FFFD5b8021107fb05b802110 /* src/convex/GuShapeConvex.h */, - FFFD5b8021787fb05b802178 /* src/distance/GuDistancePointBox.h */, - FFFD5b8021e07fb05b8021e0 /* src/distance/GuDistancePointSegment.h */, - FFFD5b8022487fb05b802248 /* src/distance/GuDistancePointTriangle.h */, - FFFD5b8022b07fb05b8022b0 /* src/distance/GuDistancePointTriangleSIMD.h */, - FFFD5b8023187fb05b802318 /* src/distance/GuDistanceSegmentSegmentSIMD.h */, - FFFD5b8023807fb05b802380 /* src/distance/GuDistanceSegmentTriangle.h */, - FFFD5b8023e87fb05b8023e8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */, - FFFD5b8024507fb05b802450 /* src/sweep/GuSweepBoxBox.h */, - FFFD5b8024b87fb05b8024b8 /* src/sweep/GuSweepBoxSphere.h */, - FFFD5b8025207fb05b802520 /* src/sweep/GuSweepBoxTriangle_FeatureBased.h */, - FFFD5b8025887fb05b802588 /* src/sweep/GuSweepBoxTriangle_SAT.h */, - FFFD5b8025f07fb05b8025f0 /* src/sweep/GuSweepCapsuleBox.h */, - FFFD5b8026587fb05b802658 /* src/sweep/GuSweepCapsuleCapsule.h */, - FFFD5b8026c07fb05b8026c0 /* src/sweep/GuSweepCapsuleTriangle.h */, - FFFD5b8027287fb05b802728 /* src/sweep/GuSweepSphereCapsule.h */, - FFFD5b8027907fb05b802790 /* src/sweep/GuSweepSphereSphere.h */, - FFFD5b8027f87fb05b8027f8 /* src/sweep/GuSweepSphereTriangle.h */, - FFFD5b8028607fb05b802860 /* src/sweep/GuSweepTriangleUtils.h */, - FFFD5b8028c87fb05b8028c8 /* src/gjk/GuEPA.h */, - FFFD5b8029307fb05b802930 /* src/gjk/GuEPAFacet.h */, - FFFD5b8029987fb05b802998 /* src/gjk/GuGJK.h */, - FFFD5b802a007fb05b802a00 /* src/gjk/GuGJKPenetration.h */, - FFFD5b802a687fb05b802a68 /* src/gjk/GuGJKRaycast.h */, - FFFD5b802ad07fb05b802ad0 /* src/gjk/GuGJKSimplex.h */, - FFFD5b802b387fb05b802b38 /* src/gjk/GuGJKTest.h */, - FFFD5b802ba07fb05b802ba0 /* src/gjk/GuGJKType.h */, - FFFD5b802c087fb05b802c08 /* src/gjk/GuGJKUtil.h */, - FFFD5b802c707fb05b802c70 /* src/gjk/GuVecBox.h */, - FFFD5b802cd87fb05b802cd8 /* src/gjk/GuVecCapsule.h */, - FFFD5b802d407fb05b802d40 /* src/gjk/GuVecConvex.h */, - FFFD5b802da87fb05b802da8 /* src/gjk/GuVecConvexHull.h */, - FFFD5b802e107fb05b802e10 /* src/gjk/GuVecConvexHullNoScale.h */, - FFFD5b802e787fb05b802e78 /* src/gjk/GuVecPlane.h */, - FFFD5b802ee07fb05b802ee0 /* src/gjk/GuVecShrunkBox.h */, - FFFD5b802f487fb05b802f48 /* src/gjk/GuVecShrunkConvexHull.h */, - FFFD5b802fb07fb05b802fb0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */, - FFFD5b8030187fb05b803018 /* src/gjk/GuVecSphere.h */, - FFFD5b8030807fb05b803080 /* src/gjk/GuVecTriangle.h */, - FFFD5b8030e87fb05b8030e8 /* src/intersection/GuIntersectionCapsuleTriangle.h */, - FFFD5b8031507fb05b803150 /* src/intersection/GuIntersectionEdgeEdge.h */, - FFFD5b8031b87fb05b8031b8 /* src/intersection/GuIntersectionRay.h */, - FFFD5b8032207fb05b803220 /* src/intersection/GuIntersectionRayBox.h */, - FFFD5b8032887fb05b803288 /* src/intersection/GuIntersectionRayBoxSIMD.h */, - FFFD5b8032f07fb05b8032f0 /* src/intersection/GuIntersectionRayCapsule.h */, - FFFD5b8033587fb05b803358 /* src/intersection/GuIntersectionRayPlane.h */, - FFFD5b8033c07fb05b8033c0 /* src/intersection/GuIntersectionRaySphere.h */, - FFFD5b8034287fb05b803428 /* src/intersection/GuIntersectionRayTriangle.h */, - FFFD5b8034907fb05b803490 /* src/intersection/GuIntersectionSphereBox.h */, - FFFD5b8034f87fb05b8034f8 /* src/mesh/GuBV32.h */, - FFFD5b8035607fb05b803560 /* src/mesh/GuBV32Build.h */, - FFFD5b8035c87fb05b8035c8 /* src/mesh/GuBV4.h */, - FFFD5b8036307fb05b803630 /* src/mesh/GuBV4Build.h */, - FFFD5b8036987fb05b803698 /* src/mesh/GuBV4Settings.h */, - FFFD5b8037007fb05b803700 /* src/mesh/GuBV4_AABBAABBSweepTest.h */, - FFFD5b8037687fb05b803768 /* src/mesh/GuBV4_BoxBoxOverlapTest.h */, - FFFD5b8037d07fb05b8037d0 /* src/mesh/GuBV4_BoxOverlap_Internal.h */, - FFFD5b8038387fb05b803838 /* src/mesh/GuBV4_BoxSweep_Internal.h */, - FFFD5b8038a07fb05b8038a0 /* src/mesh/GuBV4_BoxSweep_Params.h */, - FFFD5b8039087fb05b803908 /* src/mesh/GuBV4_CapsuleSweep_Internal.h */, - FFFD5b8039707fb05b803970 /* src/mesh/GuBV4_Common.h */, - FFFD5b8039d87fb05b8039d8 /* src/mesh/GuBV4_Internal.h */, - FFFD5b803a407fb05b803a40 /* src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h */, - FFFD5b803aa87fb05b803aa8 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h */, - FFFD5b803b107fb05b803b10 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h */, - FFFD5b803b787fb05b803b78 /* src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h */, - FFFD5b803be07fb05b803be0 /* src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h */, - FFFD5b803c487fb05b803c48 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h */, - FFFD5b803cb07fb05b803cb0 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h */, - FFFD5b803d187fb05b803d18 /* src/mesh/GuBV4_Slabs.h */, - FFFD5b803d807fb05b803d80 /* src/mesh/GuBV4_Slabs_KajiyaNoOrder.h */, - FFFD5b803de87fb05b803de8 /* src/mesh/GuBV4_Slabs_KajiyaOrdered.h */, - FFFD5b803e507fb05b803e50 /* src/mesh/GuBV4_Slabs_SwizzledNoOrder.h */, - FFFD5b803eb87fb05b803eb8 /* src/mesh/GuBV4_Slabs_SwizzledOrdered.h */, - FFFD5b803f207fb05b803f20 /* src/mesh/GuBVConstants.h */, - FFFD5b803f887fb05b803f88 /* src/mesh/GuMeshData.h */, - FFFD5b803ff07fb05b803ff0 /* src/mesh/GuMidphaseInterface.h */, - FFFD5b8040587fb05b804058 /* src/mesh/GuRTree.h */, - FFFD5b8040c07fb05b8040c0 /* src/mesh/GuSweepConvexTri.h */, - FFFD5b8041287fb05b804128 /* src/mesh/GuSweepMesh.h */, - FFFD5b8041907fb05b804190 /* src/mesh/GuTriangle32.h */, - FFFD5b8041f87fb05b8041f8 /* src/mesh/GuTriangleCache.h */, - FFFD5b8042607fb05b804260 /* src/mesh/GuTriangleMesh.h */, - FFFD5b8042c87fb05b8042c8 /* src/mesh/GuTriangleMeshBV4.h */, - FFFD5b8043307fb05b804330 /* src/mesh/GuTriangleMeshRTree.h */, - FFFD5b8043987fb05b804398 /* src/mesh/GuTriangleVertexPointers.h */, - FFFD5b8044007fb05b804400 /* src/hf/GuEntityReport.h */, - FFFD5b8044687fb05b804468 /* src/hf/GuHeightField.h */, - FFFD5b8044d07fb05b8044d0 /* src/hf/GuHeightFieldData.h */, - FFFD5b8045387fb05b804538 /* src/hf/GuHeightFieldUtil.h */, - FFFD5b8045a07fb05b8045a0 /* src/pcm/GuPCMContactConvexCommon.h */, - FFFD5b8046087fb05b804608 /* src/pcm/GuPCMContactGen.h */, - FFFD5b8046707fb05b804670 /* src/pcm/GuPCMContactGenUtil.h */, - FFFD5b8046d87fb05b8046d8 /* src/pcm/GuPCMContactMeshCallback.h */, - FFFD5b8047407fb05b804740 /* src/pcm/GuPCMShapeConvex.h */, - FFFD5b8047a87fb05b8047a8 /* src/pcm/GuPCMTriangleContactGen.h */, - FFFD5b8048107fb05b804810 /* src/pcm/GuPersistentContactManifold.h */, - FFFD5b8048787fb05b804878 /* src/ccd/GuCCDSweepConvexMesh.h */, - FFFD5b8048e07fb05b8048e0 /* src/GuBounds.cpp */, - FFFD5b8049487fb05b804948 /* src/GuBox.cpp */, - FFFD5b8049b07fb05b8049b0 /* src/GuCCTSweepTests.cpp */, - FFFD5b804a187fb05b804a18 /* src/GuCapsule.cpp */, - FFFD5b804a807fb05b804a80 /* src/GuGeometryQuery.cpp */, - FFFD5b804ae87fb05b804ae8 /* src/GuGeometryUnion.cpp */, - FFFD5b804b507fb05b804b50 /* src/GuInternal.cpp */, - FFFD5b804bb87fb05b804bb8 /* src/GuMTD.cpp */, - FFFD5b804c207fb05b804c20 /* src/GuMeshFactory.cpp */, - FFFD5b804c887fb05b804c88 /* src/GuMetaData.cpp */, - FFFD5b804cf07fb05b804cf0 /* src/GuOverlapTests.cpp */, - FFFD5b804d587fb05b804d58 /* src/GuRaycastTests.cpp */, - FFFD5b804dc07fb05b804dc0 /* src/GuSerialize.cpp */, - FFFD5b804e287fb05b804e28 /* src/GuSweepMTD.cpp */, - FFFD5b804e907fb05b804e90 /* src/GuSweepSharedTests.cpp */, - FFFD5b804ef87fb05b804ef8 /* src/GuSweepTests.cpp */, - FFFD5b804f607fb05b804f60 /* src/contact/GuContactBoxBox.cpp */, - FFFD5b804fc87fb05b804fc8 /* src/contact/GuContactCapsuleBox.cpp */, - FFFD5b8050307fb05b805030 /* src/contact/GuContactCapsuleCapsule.cpp */, - FFFD5b8050987fb05b805098 /* src/contact/GuContactCapsuleConvex.cpp */, - FFFD5b8051007fb05b805100 /* src/contact/GuContactCapsuleMesh.cpp */, - FFFD5b8051687fb05b805168 /* src/contact/GuContactConvexConvex.cpp */, - FFFD5b8051d07fb05b8051d0 /* src/contact/GuContactConvexMesh.cpp */, - FFFD5b8052387fb05b805238 /* src/contact/GuContactPlaneBox.cpp */, - FFFD5b8052a07fb05b8052a0 /* src/contact/GuContactPlaneCapsule.cpp */, - FFFD5b8053087fb05b805308 /* src/contact/GuContactPlaneConvex.cpp */, - FFFD5b8053707fb05b805370 /* src/contact/GuContactPolygonPolygon.cpp */, - FFFD5b8053d87fb05b8053d8 /* src/contact/GuContactSphereBox.cpp */, - FFFD5b8054407fb05b805440 /* src/contact/GuContactSphereCapsule.cpp */, - FFFD5b8054a87fb05b8054a8 /* src/contact/GuContactSphereMesh.cpp */, - FFFD5b8055107fb05b805510 /* src/contact/GuContactSpherePlane.cpp */, - FFFD5b8055787fb05b805578 /* src/contact/GuContactSphereSphere.cpp */, - FFFD5b8055e07fb05b8055e0 /* src/contact/GuFeatureCode.cpp */, - FFFD5b8056487fb05b805648 /* src/contact/GuLegacyContactBoxHeightField.cpp */, - FFFD5b8056b07fb05b8056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */, - FFFD5b8057187fb05b805718 /* src/contact/GuLegacyContactConvexHeightField.cpp */, - FFFD5b8057807fb05b805780 /* src/contact/GuLegacyContactSphereHeightField.cpp */, - FFFD5b8057e87fb05b8057e8 /* src/common/GuBarycentricCoordinates.cpp */, - FFFD5b8058507fb05b805850 /* src/common/GuSeparatingAxes.cpp */, - FFFD5b8058b87fb05b8058b8 /* src/convex/GuBigConvexData.cpp */, - FFFD5b8059207fb05b805920 /* src/convex/GuConvexHelper.cpp */, - FFFD5b8059887fb05b805988 /* src/convex/GuConvexMesh.cpp */, - FFFD5b8059f07fb05b8059f0 /* src/convex/GuConvexSupportTable.cpp */, - FFFD5b805a587fb05b805a58 /* src/convex/GuConvexUtilsInternal.cpp */, - FFFD5b805ac07fb05b805ac0 /* src/convex/GuHillClimbing.cpp */, - FFFD5b805b287fb05b805b28 /* src/convex/GuShapeConvex.cpp */, - FFFD5b805b907fb05b805b90 /* src/distance/GuDistancePointBox.cpp */, - FFFD5b805bf87fb05b805bf8 /* src/distance/GuDistancePointTriangle.cpp */, - FFFD5b805c607fb05b805c60 /* src/distance/GuDistanceSegmentBox.cpp */, - FFFD5b805cc87fb05b805cc8 /* src/distance/GuDistanceSegmentSegment.cpp */, - FFFD5b805d307fb05b805d30 /* src/distance/GuDistanceSegmentTriangle.cpp */, - FFFD5b805d987fb05b805d98 /* src/sweep/GuSweepBoxBox.cpp */, - FFFD5b805e007fb05b805e00 /* src/sweep/GuSweepBoxSphere.cpp */, - FFFD5b805e687fb05b805e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */, - FFFD5b805ed07fb05b805ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */, - FFFD5b805f387fb05b805f38 /* src/sweep/GuSweepCapsuleBox.cpp */, - FFFD5b805fa07fb05b805fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */, - FFFD5b8060087fb05b806008 /* src/sweep/GuSweepCapsuleTriangle.cpp */, - FFFD5b8060707fb05b806070 /* src/sweep/GuSweepSphereCapsule.cpp */, - FFFD5b8060d87fb05b8060d8 /* src/sweep/GuSweepSphereSphere.cpp */, - FFFD5b8061407fb05b806140 /* src/sweep/GuSweepSphereTriangle.cpp */, - FFFD5b8061a87fb05b8061a8 /* src/sweep/GuSweepTriangleUtils.cpp */, - FFFD5b8062107fb05b806210 /* src/gjk/GuEPA.cpp */, - FFFD5b8062787fb05b806278 /* src/gjk/GuGJKSimplex.cpp */, - FFFD5b8062e07fb05b8062e0 /* src/gjk/GuGJKTest.cpp */, - FFFD5b8063487fb05b806348 /* src/intersection/GuIntersectionBoxBox.cpp */, - FFFD5b8063b07fb05b8063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */, - FFFD5b8064187fb05b806418 /* src/intersection/GuIntersectionEdgeEdge.cpp */, - FFFD5b8064807fb05b806480 /* src/intersection/GuIntersectionRayBox.cpp */, - FFFD5b8064e87fb05b8064e8 /* src/intersection/GuIntersectionRayCapsule.cpp */, - FFFD5b8065507fb05b806550 /* src/intersection/GuIntersectionRaySphere.cpp */, - FFFD5b8065b87fb05b8065b8 /* src/intersection/GuIntersectionSphereBox.cpp */, - FFFD5b8066207fb05b806620 /* src/intersection/GuIntersectionTriangleBox.cpp */, - FFFD5b8066887fb05b806688 /* src/mesh/GuBV32.cpp */, - FFFD5b8066f07fb05b8066f0 /* src/mesh/GuBV32Build.cpp */, - FFFD5b8067587fb05b806758 /* src/mesh/GuBV4.cpp */, - FFFD5b8067c07fb05b8067c0 /* src/mesh/GuBV4Build.cpp */, - FFFD5b8068287fb05b806828 /* src/mesh/GuBV4_AABBSweep.cpp */, - FFFD5b8068907fb05b806890 /* src/mesh/GuBV4_BoxOverlap.cpp */, - FFFD5b8068f87fb05b8068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */, - FFFD5b8069607fb05b806960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */, - FFFD5b8069c87fb05b8069c8 /* src/mesh/GuBV4_OBBSweep.cpp */, - FFFD5b806a307fb05b806a30 /* src/mesh/GuBV4_Raycast.cpp */, - FFFD5b806a987fb05b806a98 /* src/mesh/GuBV4_SphereOverlap.cpp */, - FFFD5b806b007fb05b806b00 /* src/mesh/GuBV4_SphereSweep.cpp */, - FFFD5b806b687fb05b806b68 /* src/mesh/GuMeshQuery.cpp */, - FFFD5b806bd07fb05b806bd0 /* src/mesh/GuMidphaseBV4.cpp */, - FFFD5b806c387fb05b806c38 /* src/mesh/GuMidphaseRTree.cpp */, - FFFD5b806ca07fb05b806ca0 /* src/mesh/GuOverlapTestsMesh.cpp */, - FFFD5b806d087fb05b806d08 /* src/mesh/GuRTree.cpp */, - FFFD5b806d707fb05b806d70 /* src/mesh/GuRTreeQueries.cpp */, - FFFD5b806dd87fb05b806dd8 /* src/mesh/GuSweepsMesh.cpp */, - FFFD5b806e407fb05b806e40 /* src/mesh/GuTriangleMesh.cpp */, - FFFD5b806ea87fb05b806ea8 /* src/mesh/GuTriangleMeshBV4.cpp */, - FFFD5b806f107fb05b806f10 /* src/mesh/GuTriangleMeshRTree.cpp */, - FFFD5b806f787fb05b806f78 /* src/hf/GuHeightField.cpp */, - FFFD5b806fe07fb05b806fe0 /* src/hf/GuHeightFieldUtil.cpp */, - FFFD5b8070487fb05b807048 /* src/hf/GuOverlapTestsHF.cpp */, - FFFD5b8070b07fb05b8070b0 /* src/hf/GuSweepsHF.cpp */, - FFFD5b8071187fb05b807118 /* src/pcm/GuPCMContactBoxBox.cpp */, - FFFD5b8071807fb05b807180 /* src/pcm/GuPCMContactBoxConvex.cpp */, - FFFD5b8071e87fb05b8071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */, - FFFD5b8072507fb05b807250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */, - FFFD5b8072b87fb05b8072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */, - FFFD5b8073207fb05b807320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */, - FFFD5b8073887fb05b807388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */, - FFFD5b8073f07fb05b8073f0 /* src/pcm/GuPCMContactConvexCommon.cpp */, - FFFD5b8074587fb05b807458 /* src/pcm/GuPCMContactConvexConvex.cpp */, - FFFD5b8074c07fb05b8074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */, - FFFD5b8075287fb05b807528 /* src/pcm/GuPCMContactConvexMesh.cpp */, - FFFD5b8075907fb05b807590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */, - FFFD5b8075f87fb05b8075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */, - FFFD5b8076607fb05b807660 /* src/pcm/GuPCMContactPlaneBox.cpp */, - FFFD5b8076c87fb05b8076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */, - FFFD5b8077307fb05b807730 /* src/pcm/GuPCMContactPlaneConvex.cpp */, - FFFD5b8077987fb05b807798 /* src/pcm/GuPCMContactSphereBox.cpp */, - FFFD5b8078007fb05b807800 /* src/pcm/GuPCMContactSphereCapsule.cpp */, - FFFD5b8078687fb05b807868 /* src/pcm/GuPCMContactSphereConvex.cpp */, - FFFD5b8078d07fb05b8078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */, - FFFD5b8079387fb05b807938 /* src/pcm/GuPCMContactSphereMesh.cpp */, - FFFD5b8079a07fb05b8079a0 /* src/pcm/GuPCMContactSpherePlane.cpp */, - FFFD5b807a087fb05b807a08 /* src/pcm/GuPCMContactSphereSphere.cpp */, - FFFD5b807a707fb05b807a70 /* src/pcm/GuPCMShapeConvex.cpp */, - FFFD5b807ad87fb05b807ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */, - FFFD5b807b407fb05b807b40 /* src/pcm/GuPersistentContactManifold.cpp */, - FFFD5b807ba87fb05b807ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */, - FFFD5b807c107fb05b807c10 /* src/ccd/GuCCDSweepPrimitives.cpp */, + FFFDed8010007febed801000 /* headers/GuAxes.h */, + FFFDed8010687febed801068 /* headers/GuBox.h */, + FFFDed8010d07febed8010d0 /* headers/GuDistanceSegmentBox.h */, + FFFDed8011387febed801138 /* headers/GuDistanceSegmentSegment.h */, + FFFDed8011a07febed8011a0 /* headers/GuIntersectionBoxBox.h */, + FFFDed8012087febed801208 /* headers/GuIntersectionTriangleBox.h */, + FFFDed8012707febed801270 /* headers/GuRaycastTests.h */, + FFFDed8012d87febed8012d8 /* headers/GuSIMDHelpers.h */, + FFFDed8013407febed801340 /* headers/GuSegment.h */, + FFFDed8013a87febed8013a8 /* ../../Include/GeomUtils */, + FFFDed8014107febed801410 /* src/GuBounds.h */, + FFFDed8014787febed801478 /* src/GuCapsule.h */, + FFFDed8014e07febed8014e0 /* src/GuCenterExtents.h */, + FFFDed8015487febed801548 /* src/GuGeometryUnion.h */, + FFFDed8015b07febed8015b0 /* src/GuInternal.h */, + FFFDed8016187febed801618 /* src/GuMTD.h */, + FFFDed8016807febed801680 /* src/GuMeshFactory.h */, + FFFDed8016e87febed8016e8 /* src/GuOverlapTests.h */, + FFFDed8017507febed801750 /* src/GuSerialize.h */, + FFFDed8017b87febed8017b8 /* src/GuSphere.h */, + FFFDed8018207febed801820 /* src/GuSweepMTD.h */, + FFFDed8018887febed801888 /* src/GuSweepSharedTests.h */, + FFFDed8018f07febed8018f0 /* src/GuSweepTests.h */, + FFFDed8019587febed801958 /* src/contact/GuContactMethodImpl.h */, + FFFDed8019c07febed8019c0 /* src/contact/GuContactPolygonPolygon.h */, + FFFDed801a287febed801a28 /* src/contact/GuFeatureCode.h */, + FFFDed801a907febed801a90 /* src/contact/GuLegacyTraceLineCallback.h */, + FFFDed801af87febed801af8 /* src/common/GuBarycentricCoordinates.h */, + FFFDed801b607febed801b60 /* src/common/GuBoxConversion.h */, + FFFDed801bc87febed801bc8 /* src/common/GuEdgeCache.h */, + FFFDed801c307febed801c30 /* src/common/GuEdgeListData.h */, + FFFDed801c987febed801c98 /* src/common/GuSeparatingAxes.h */, + FFFDed801d007febed801d00 /* src/convex/GuBigConvexData.h */, + FFFDed801d687febed801d68 /* src/convex/GuBigConvexData2.h */, + FFFDed801dd07febed801dd0 /* src/convex/GuConvexEdgeFlags.h */, + FFFDed801e387febed801e38 /* src/convex/GuConvexHelper.h */, + FFFDed801ea07febed801ea0 /* src/convex/GuConvexMesh.h */, + FFFDed801f087febed801f08 /* src/convex/GuConvexMeshData.h */, + FFFDed801f707febed801f70 /* src/convex/GuConvexSupportTable.h */, + FFFDed801fd87febed801fd8 /* src/convex/GuConvexUtilsInternal.h */, + FFFDed8020407febed802040 /* src/convex/GuCubeIndex.h */, + FFFDed8020a87febed8020a8 /* src/convex/GuHillClimbing.h */, + FFFDed8021107febed802110 /* src/convex/GuShapeConvex.h */, + FFFDed8021787febed802178 /* src/distance/GuDistancePointBox.h */, + FFFDed8021e07febed8021e0 /* src/distance/GuDistancePointSegment.h */, + FFFDed8022487febed802248 /* src/distance/GuDistancePointTriangle.h */, + FFFDed8022b07febed8022b0 /* src/distance/GuDistancePointTriangleSIMD.h */, + FFFDed8023187febed802318 /* src/distance/GuDistanceSegmentSegmentSIMD.h */, + FFFDed8023807febed802380 /* src/distance/GuDistanceSegmentTriangle.h */, + FFFDed8023e87febed8023e8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */, + FFFDed8024507febed802450 /* src/sweep/GuSweepBoxBox.h */, + FFFDed8024b87febed8024b8 /* src/sweep/GuSweepBoxSphere.h */, + FFFDed8025207febed802520 /* src/sweep/GuSweepBoxTriangle_FeatureBased.h */, + FFFDed8025887febed802588 /* src/sweep/GuSweepBoxTriangle_SAT.h */, + FFFDed8025f07febed8025f0 /* src/sweep/GuSweepCapsuleBox.h */, + FFFDed8026587febed802658 /* src/sweep/GuSweepCapsuleCapsule.h */, + FFFDed8026c07febed8026c0 /* src/sweep/GuSweepCapsuleTriangle.h */, + FFFDed8027287febed802728 /* src/sweep/GuSweepSphereCapsule.h */, + FFFDed8027907febed802790 /* src/sweep/GuSweepSphereSphere.h */, + FFFDed8027f87febed8027f8 /* src/sweep/GuSweepSphereTriangle.h */, + FFFDed8028607febed802860 /* src/sweep/GuSweepTriangleUtils.h */, + FFFDed8028c87febed8028c8 /* src/gjk/GuEPA.h */, + FFFDed8029307febed802930 /* src/gjk/GuEPAFacet.h */, + FFFDed8029987febed802998 /* src/gjk/GuGJK.h */, + FFFDed802a007febed802a00 /* src/gjk/GuGJKPenetration.h */, + FFFDed802a687febed802a68 /* src/gjk/GuGJKRaycast.h */, + FFFDed802ad07febed802ad0 /* src/gjk/GuGJKSimplex.h */, + FFFDed802b387febed802b38 /* src/gjk/GuGJKTest.h */, + FFFDed802ba07febed802ba0 /* src/gjk/GuGJKType.h */, + FFFDed802c087febed802c08 /* src/gjk/GuGJKUtil.h */, + FFFDed802c707febed802c70 /* src/gjk/GuVecBox.h */, + FFFDed802cd87febed802cd8 /* src/gjk/GuVecCapsule.h */, + FFFDed802d407febed802d40 /* src/gjk/GuVecConvex.h */, + FFFDed802da87febed802da8 /* src/gjk/GuVecConvexHull.h */, + FFFDed802e107febed802e10 /* src/gjk/GuVecConvexHullNoScale.h */, + FFFDed802e787febed802e78 /* src/gjk/GuVecPlane.h */, + FFFDed802ee07febed802ee0 /* src/gjk/GuVecShrunkBox.h */, + FFFDed802f487febed802f48 /* src/gjk/GuVecShrunkConvexHull.h */, + FFFDed802fb07febed802fb0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */, + FFFDed8030187febed803018 /* src/gjk/GuVecSphere.h */, + FFFDed8030807febed803080 /* src/gjk/GuVecTriangle.h */, + FFFDed8030e87febed8030e8 /* src/intersection/GuIntersectionCapsuleTriangle.h */, + FFFDed8031507febed803150 /* src/intersection/GuIntersectionEdgeEdge.h */, + FFFDed8031b87febed8031b8 /* src/intersection/GuIntersectionRay.h */, + FFFDed8032207febed803220 /* src/intersection/GuIntersectionRayBox.h */, + FFFDed8032887febed803288 /* src/intersection/GuIntersectionRayBoxSIMD.h */, + FFFDed8032f07febed8032f0 /* src/intersection/GuIntersectionRayCapsule.h */, + FFFDed8033587febed803358 /* src/intersection/GuIntersectionRayPlane.h */, + FFFDed8033c07febed8033c0 /* src/intersection/GuIntersectionRaySphere.h */, + FFFDed8034287febed803428 /* src/intersection/GuIntersectionRayTriangle.h */, + FFFDed8034907febed803490 /* src/intersection/GuIntersectionSphereBox.h */, + FFFDed8034f87febed8034f8 /* src/mesh/GuBV32.h */, + FFFDed8035607febed803560 /* src/mesh/GuBV32Build.h */, + FFFDed8035c87febed8035c8 /* src/mesh/GuBV4.h */, + FFFDed8036307febed803630 /* src/mesh/GuBV4Build.h */, + FFFDed8036987febed803698 /* src/mesh/GuBV4Settings.h */, + FFFDed8037007febed803700 /* src/mesh/GuBV4_AABBAABBSweepTest.h */, + FFFDed8037687febed803768 /* src/mesh/GuBV4_BoxBoxOverlapTest.h */, + FFFDed8037d07febed8037d0 /* src/mesh/GuBV4_BoxOverlap_Internal.h */, + FFFDed8038387febed803838 /* src/mesh/GuBV4_BoxSweep_Internal.h */, + FFFDed8038a07febed8038a0 /* src/mesh/GuBV4_BoxSweep_Params.h */, + FFFDed8039087febed803908 /* src/mesh/GuBV4_CapsuleSweep_Internal.h */, + FFFDed8039707febed803970 /* src/mesh/GuBV4_Common.h */, + FFFDed8039d87febed8039d8 /* src/mesh/GuBV4_Internal.h */, + FFFDed803a407febed803a40 /* src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h */, + FFFDed803aa87febed803aa8 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h */, + FFFDed803b107febed803b10 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h */, + FFFDed803b787febed803b78 /* src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h */, + FFFDed803be07febed803be0 /* src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h */, + FFFDed803c487febed803c48 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h */, + FFFDed803cb07febed803cb0 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h */, + FFFDed803d187febed803d18 /* src/mesh/GuBV4_Slabs.h */, + FFFDed803d807febed803d80 /* src/mesh/GuBV4_Slabs_KajiyaNoOrder.h */, + FFFDed803de87febed803de8 /* src/mesh/GuBV4_Slabs_KajiyaOrdered.h */, + FFFDed803e507febed803e50 /* src/mesh/GuBV4_Slabs_SwizzledNoOrder.h */, + FFFDed803eb87febed803eb8 /* src/mesh/GuBV4_Slabs_SwizzledOrdered.h */, + FFFDed803f207febed803f20 /* src/mesh/GuBVConstants.h */, + FFFDed803f887febed803f88 /* src/mesh/GuMeshData.h */, + FFFDed803ff07febed803ff0 /* src/mesh/GuMidphaseInterface.h */, + FFFDed8040587febed804058 /* src/mesh/GuRTree.h */, + FFFDed8040c07febed8040c0 /* src/mesh/GuSweepConvexTri.h */, + FFFDed8041287febed804128 /* src/mesh/GuSweepMesh.h */, + FFFDed8041907febed804190 /* src/mesh/GuTriangle32.h */, + FFFDed8041f87febed8041f8 /* src/mesh/GuTriangleCache.h */, + FFFDed8042607febed804260 /* src/mesh/GuTriangleMesh.h */, + FFFDed8042c87febed8042c8 /* src/mesh/GuTriangleMeshBV4.h */, + FFFDed8043307febed804330 /* src/mesh/GuTriangleMeshRTree.h */, + FFFDed8043987febed804398 /* src/mesh/GuTriangleVertexPointers.h */, + FFFDed8044007febed804400 /* src/hf/GuEntityReport.h */, + FFFDed8044687febed804468 /* src/hf/GuHeightField.h */, + FFFDed8044d07febed8044d0 /* src/hf/GuHeightFieldData.h */, + FFFDed8045387febed804538 /* src/hf/GuHeightFieldUtil.h */, + FFFDed8045a07febed8045a0 /* src/pcm/GuPCMContactConvexCommon.h */, + FFFDed8046087febed804608 /* src/pcm/GuPCMContactGen.h */, + FFFDed8046707febed804670 /* src/pcm/GuPCMContactGenUtil.h */, + FFFDed8046d87febed8046d8 /* src/pcm/GuPCMContactMeshCallback.h */, + FFFDed8047407febed804740 /* src/pcm/GuPCMShapeConvex.h */, + FFFDed8047a87febed8047a8 /* src/pcm/GuPCMTriangleContactGen.h */, + FFFDed8048107febed804810 /* src/pcm/GuPersistentContactManifold.h */, + FFFDed8048787febed804878 /* src/ccd/GuCCDSweepConvexMesh.h */, + FFFDed8048e07febed8048e0 /* src/GuBounds.cpp */, + FFFDed8049487febed804948 /* src/GuBox.cpp */, + FFFDed8049b07febed8049b0 /* src/GuCCTSweepTests.cpp */, + FFFDed804a187febed804a18 /* src/GuCapsule.cpp */, + FFFDed804a807febed804a80 /* src/GuGeometryQuery.cpp */, + FFFDed804ae87febed804ae8 /* src/GuGeometryUnion.cpp */, + FFFDed804b507febed804b50 /* src/GuInternal.cpp */, + FFFDed804bb87febed804bb8 /* src/GuMTD.cpp */, + FFFDed804c207febed804c20 /* src/GuMeshFactory.cpp */, + FFFDed804c887febed804c88 /* src/GuMetaData.cpp */, + FFFDed804cf07febed804cf0 /* src/GuOverlapTests.cpp */, + FFFDed804d587febed804d58 /* src/GuRaycastTests.cpp */, + FFFDed804dc07febed804dc0 /* src/GuSerialize.cpp */, + FFFDed804e287febed804e28 /* src/GuSweepMTD.cpp */, + FFFDed804e907febed804e90 /* src/GuSweepSharedTests.cpp */, + FFFDed804ef87febed804ef8 /* src/GuSweepTests.cpp */, + FFFDed804f607febed804f60 /* src/contact/GuContactBoxBox.cpp */, + FFFDed804fc87febed804fc8 /* src/contact/GuContactCapsuleBox.cpp */, + FFFDed8050307febed805030 /* src/contact/GuContactCapsuleCapsule.cpp */, + FFFDed8050987febed805098 /* src/contact/GuContactCapsuleConvex.cpp */, + FFFDed8051007febed805100 /* src/contact/GuContactCapsuleMesh.cpp */, + FFFDed8051687febed805168 /* src/contact/GuContactConvexConvex.cpp */, + FFFDed8051d07febed8051d0 /* src/contact/GuContactConvexMesh.cpp */, + FFFDed8052387febed805238 /* src/contact/GuContactPlaneBox.cpp */, + FFFDed8052a07febed8052a0 /* src/contact/GuContactPlaneCapsule.cpp */, + FFFDed8053087febed805308 /* src/contact/GuContactPlaneConvex.cpp */, + FFFDed8053707febed805370 /* src/contact/GuContactPolygonPolygon.cpp */, + FFFDed8053d87febed8053d8 /* src/contact/GuContactSphereBox.cpp */, + FFFDed8054407febed805440 /* src/contact/GuContactSphereCapsule.cpp */, + FFFDed8054a87febed8054a8 /* src/contact/GuContactSphereMesh.cpp */, + FFFDed8055107febed805510 /* src/contact/GuContactSpherePlane.cpp */, + FFFDed8055787febed805578 /* src/contact/GuContactSphereSphere.cpp */, + FFFDed8055e07febed8055e0 /* src/contact/GuFeatureCode.cpp */, + FFFDed8056487febed805648 /* src/contact/GuLegacyContactBoxHeightField.cpp */, + FFFDed8056b07febed8056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */, + FFFDed8057187febed805718 /* src/contact/GuLegacyContactConvexHeightField.cpp */, + FFFDed8057807febed805780 /* src/contact/GuLegacyContactSphereHeightField.cpp */, + FFFDed8057e87febed8057e8 /* src/common/GuBarycentricCoordinates.cpp */, + FFFDed8058507febed805850 /* src/common/GuSeparatingAxes.cpp */, + FFFDed8058b87febed8058b8 /* src/convex/GuBigConvexData.cpp */, + FFFDed8059207febed805920 /* src/convex/GuConvexHelper.cpp */, + FFFDed8059887febed805988 /* src/convex/GuConvexMesh.cpp */, + FFFDed8059f07febed8059f0 /* src/convex/GuConvexSupportTable.cpp */, + FFFDed805a587febed805a58 /* src/convex/GuConvexUtilsInternal.cpp */, + FFFDed805ac07febed805ac0 /* src/convex/GuHillClimbing.cpp */, + FFFDed805b287febed805b28 /* src/convex/GuShapeConvex.cpp */, + FFFDed805b907febed805b90 /* src/distance/GuDistancePointBox.cpp */, + FFFDed805bf87febed805bf8 /* src/distance/GuDistancePointTriangle.cpp */, + FFFDed805c607febed805c60 /* src/distance/GuDistanceSegmentBox.cpp */, + FFFDed805cc87febed805cc8 /* src/distance/GuDistanceSegmentSegment.cpp */, + FFFDed805d307febed805d30 /* src/distance/GuDistanceSegmentTriangle.cpp */, + FFFDed805d987febed805d98 /* src/sweep/GuSweepBoxBox.cpp */, + FFFDed805e007febed805e00 /* src/sweep/GuSweepBoxSphere.cpp */, + FFFDed805e687febed805e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */, + FFFDed805ed07febed805ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */, + FFFDed805f387febed805f38 /* src/sweep/GuSweepCapsuleBox.cpp */, + FFFDed805fa07febed805fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */, + FFFDed8060087febed806008 /* src/sweep/GuSweepCapsuleTriangle.cpp */, + FFFDed8060707febed806070 /* src/sweep/GuSweepSphereCapsule.cpp */, + FFFDed8060d87febed8060d8 /* src/sweep/GuSweepSphereSphere.cpp */, + FFFDed8061407febed806140 /* src/sweep/GuSweepSphereTriangle.cpp */, + FFFDed8061a87febed8061a8 /* src/sweep/GuSweepTriangleUtils.cpp */, + FFFDed8062107febed806210 /* src/gjk/GuEPA.cpp */, + FFFDed8062787febed806278 /* src/gjk/GuGJKSimplex.cpp */, + FFFDed8062e07febed8062e0 /* src/gjk/GuGJKTest.cpp */, + FFFDed8063487febed806348 /* src/intersection/GuIntersectionBoxBox.cpp */, + FFFDed8063b07febed8063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */, + FFFDed8064187febed806418 /* src/intersection/GuIntersectionEdgeEdge.cpp */, + FFFDed8064807febed806480 /* src/intersection/GuIntersectionRayBox.cpp */, + FFFDed8064e87febed8064e8 /* src/intersection/GuIntersectionRayCapsule.cpp */, + FFFDed8065507febed806550 /* src/intersection/GuIntersectionRaySphere.cpp */, + FFFDed8065b87febed8065b8 /* src/intersection/GuIntersectionSphereBox.cpp */, + FFFDed8066207febed806620 /* src/intersection/GuIntersectionTriangleBox.cpp */, + FFFDed8066887febed806688 /* src/mesh/GuBV32.cpp */, + FFFDed8066f07febed8066f0 /* src/mesh/GuBV32Build.cpp */, + FFFDed8067587febed806758 /* src/mesh/GuBV4.cpp */, + FFFDed8067c07febed8067c0 /* src/mesh/GuBV4Build.cpp */, + FFFDed8068287febed806828 /* src/mesh/GuBV4_AABBSweep.cpp */, + FFFDed8068907febed806890 /* src/mesh/GuBV4_BoxOverlap.cpp */, + FFFDed8068f87febed8068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */, + FFFDed8069607febed806960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */, + FFFDed8069c87febed8069c8 /* src/mesh/GuBV4_OBBSweep.cpp */, + FFFDed806a307febed806a30 /* src/mesh/GuBV4_Raycast.cpp */, + FFFDed806a987febed806a98 /* src/mesh/GuBV4_SphereOverlap.cpp */, + FFFDed806b007febed806b00 /* src/mesh/GuBV4_SphereSweep.cpp */, + FFFDed806b687febed806b68 /* src/mesh/GuMeshQuery.cpp */, + FFFDed806bd07febed806bd0 /* src/mesh/GuMidphaseBV4.cpp */, + FFFDed806c387febed806c38 /* src/mesh/GuMidphaseRTree.cpp */, + FFFDed806ca07febed806ca0 /* src/mesh/GuOverlapTestsMesh.cpp */, + FFFDed806d087febed806d08 /* src/mesh/GuRTree.cpp */, + FFFDed806d707febed806d70 /* src/mesh/GuRTreeQueries.cpp */, + FFFDed806dd87febed806dd8 /* src/mesh/GuSweepsMesh.cpp */, + FFFDed806e407febed806e40 /* src/mesh/GuTriangleMesh.cpp */, + FFFDed806ea87febed806ea8 /* src/mesh/GuTriangleMeshBV4.cpp */, + FFFDed806f107febed806f10 /* src/mesh/GuTriangleMeshRTree.cpp */, + FFFDed806f787febed806f78 /* src/hf/GuHeightField.cpp */, + FFFDed806fe07febed806fe0 /* src/hf/GuHeightFieldUtil.cpp */, + FFFDed8070487febed807048 /* src/hf/GuOverlapTestsHF.cpp */, + FFFDed8070b07febed8070b0 /* src/hf/GuSweepsHF.cpp */, + FFFDed8071187febed807118 /* src/pcm/GuPCMContactBoxBox.cpp */, + FFFDed8071807febed807180 /* src/pcm/GuPCMContactBoxConvex.cpp */, + FFFDed8071e87febed8071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */, + FFFDed8072507febed807250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */, + FFFDed8072b87febed8072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */, + FFFDed8073207febed807320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */, + FFFDed8073887febed807388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */, + FFFDed8073f07febed8073f0 /* src/pcm/GuPCMContactConvexCommon.cpp */, + FFFDed8074587febed807458 /* src/pcm/GuPCMContactConvexConvex.cpp */, + FFFDed8074c07febed8074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */, + FFFDed8075287febed807528 /* src/pcm/GuPCMContactConvexMesh.cpp */, + FFFDed8075907febed807590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */, + FFFDed8075f87febed8075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */, + FFFDed8076607febed807660 /* src/pcm/GuPCMContactPlaneBox.cpp */, + FFFDed8076c87febed8076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */, + FFFDed8077307febed807730 /* src/pcm/GuPCMContactPlaneConvex.cpp */, + FFFDed8077987febed807798 /* src/pcm/GuPCMContactSphereBox.cpp */, + FFFDed8078007febed807800 /* src/pcm/GuPCMContactSphereCapsule.cpp */, + FFFDed8078687febed807868 /* src/pcm/GuPCMContactSphereConvex.cpp */, + FFFDed8078d07febed8078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */, + FFFDed8079387febed807938 /* src/pcm/GuPCMContactSphereMesh.cpp */, + FFFDed8079a07febed8079a0 /* src/pcm/GuPCMContactSpherePlane.cpp */, + FFFDed807a087febed807a08 /* src/pcm/GuPCMContactSphereSphere.cpp */, + FFFDed807a707febed807a70 /* src/pcm/GuPCMShapeConvex.cpp */, + FFFDed807ad87febed807ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */, + FFFDed807b407febed807b40 /* src/pcm/GuPersistentContactManifold.cpp */, + FFFDed807ba87febed807ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */, + FFFDed807c107febed807c10 /* src/ccd/GuCCDSweepPrimitives.cpp */, ); name = "geomutils"; sourceTree = SOURCE_ROOT; }; - FFFB5b080a507fb05b080a50 /* PxFoundation */ = { + FFFBed13dc907febed13dc90 /* PxFoundation */ = { isa = PBXGroup; children = ( - FFFB5b080ee07fb05b080ee0 /* include */, - FFFB5b080f087fb05b080f08 /* src */, + FFFBed13fa407febed13fa40 /* include */, + FFFBed13fa687febed13fa68 /* src */, ); name = "PxFoundation"; sourceTree = "<group>"; }; - FFFB5b080ee07fb05b080ee0 /* include */ = { + FFFBed13fa407febed13fa40 /* include */ = { isa = PBXGroup; children = ( - FFFD5a9a58007fb05a9a5800 /* Px.h */, - FFFD5a9a58687fb05a9a5868 /* PxAllocatorCallback.h */, - FFFD5a9a58d07fb05a9a58d0 /* PxAssert.h */, - FFFD5a9a59387fb05a9a5938 /* PxBitAndData.h */, - FFFD5a9a59a07fb05a9a59a0 /* PxBounds3.h */, - FFFD5a9a5a087fb05a9a5a08 /* PxErrorCallback.h */, - FFFD5a9a5a707fb05a9a5a70 /* PxErrors.h */, - FFFD5a9a5ad87fb05a9a5ad8 /* PxFlags.h */, - FFFD5a9a5b407fb05a9a5b40 /* PxFoundation.h */, - FFFD5a9a5ba87fb05a9a5ba8 /* PxFoundationVersion.h */, - FFFD5a9a5c107fb05a9a5c10 /* PxIO.h */, - FFFD5a9a5c787fb05a9a5c78 /* PxIntrinsics.h */, - FFFD5a9a5ce07fb05a9a5ce0 /* PxMat33.h */, - FFFD5a9a5d487fb05a9a5d48 /* PxMat44.h */, - FFFD5a9a5db07fb05a9a5db0 /* PxMath.h */, - FFFD5a9a5e187fb05a9a5e18 /* PxMathUtils.h */, - FFFD5a9a5e807fb05a9a5e80 /* PxMemory.h */, - FFFD5a9a5ee87fb05a9a5ee8 /* PxPlane.h */, - FFFD5a9a5f507fb05a9a5f50 /* PxPreprocessor.h */, - FFFD5a9a5fb87fb05a9a5fb8 /* PxProfiler.h */, - FFFD5a9a60207fb05a9a6020 /* PxQuat.h */, - FFFD5a9a60887fb05a9a6088 /* PxSimpleTypes.h */, - FFFD5a9a60f07fb05a9a60f0 /* PxStrideIterator.h */, - FFFD5a9a61587fb05a9a6158 /* PxTransform.h */, - FFFD5a9a61c07fb05a9a61c0 /* PxUnionCast.h */, - FFFD5a9a62287fb05a9a6228 /* PxVec2.h */, - FFFD5a9a62907fb05a9a6290 /* PxVec3.h */, - FFFD5a9a62f87fb05a9a62f8 /* PxVec4.h */, - FFFD5a9a63607fb05a9a6360 /* unix/PxUnixIntrinsics.h */, + FFFDec9942007febec994200 /* Px.h */, + FFFDec9942687febec994268 /* PxAllocatorCallback.h */, + FFFDec9942d07febec9942d0 /* PxAssert.h */, + FFFDec9943387febec994338 /* PxBitAndData.h */, + FFFDec9943a07febec9943a0 /* PxBounds3.h */, + FFFDec9944087febec994408 /* PxErrorCallback.h */, + FFFDec9944707febec994470 /* PxErrors.h */, + FFFDec9944d87febec9944d8 /* PxFlags.h */, + FFFDec9945407febec994540 /* PxFoundation.h */, + FFFDec9945a87febec9945a8 /* PxFoundationVersion.h */, + FFFDec9946107febec994610 /* PxIO.h */, + FFFDec9946787febec994678 /* PxIntrinsics.h */, + FFFDec9946e07febec9946e0 /* PxMat33.h */, + FFFDec9947487febec994748 /* PxMat44.h */, + FFFDec9947b07febec9947b0 /* PxMath.h */, + FFFDec9948187febec994818 /* PxMathUtils.h */, + FFFDec9948807febec994880 /* PxMemory.h */, + FFFDec9948e87febec9948e8 /* PxPlane.h */, + FFFDec9949507febec994950 /* PxPreprocessor.h */, + FFFDec9949b87febec9949b8 /* PxProfiler.h */, + FFFDec994a207febec994a20 /* PxQuat.h */, + FFFDec994a887febec994a88 /* PxSimpleTypes.h */, + FFFDec994af07febec994af0 /* PxStrideIterator.h */, + FFFDec994b587febec994b58 /* PxTransform.h */, + FFFDec994bc07febec994bc0 /* PxUnionCast.h */, + FFFDec994c287febec994c28 /* PxVec2.h */, + FFFDec994c907febec994c90 /* PxVec3.h */, + FFFDec994cf87febec994cf8 /* PxVec4.h */, + FFFDec994d607febec994d60 /* unix/PxUnixIntrinsics.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB5b080f087fb05b080f08 /* src */ = { + FFFBed13fa687febed13fa68 /* src */ = { isa = PBXGroup; children = ( - FFFD5a993c007fb05a993c00 /* include/Ps.h */, - FFFD5a993c687fb05a993c68 /* include/PsAlignedMalloc.h */, - FFFD5a993cd07fb05a993cd0 /* include/PsAlloca.h */, - FFFD5a993d387fb05a993d38 /* include/PsAllocator.h */, - FFFD5a993da07fb05a993da0 /* include/PsAoS.h */, - FFFD5a993e087fb05a993e08 /* include/PsArray.h */, - FFFD5a993e707fb05a993e70 /* include/PsAtomic.h */, - FFFD5a993ed87fb05a993ed8 /* include/PsBasicTemplates.h */, - FFFD5a993f407fb05a993f40 /* include/PsBitUtils.h */, - FFFD5a993fa87fb05a993fa8 /* include/PsBroadcast.h */, - FFFD5a9940107fb05a994010 /* include/PsCpu.h */, - FFFD5a9940787fb05a994078 /* include/PsFPU.h */, - FFFD5a9940e07fb05a9940e0 /* include/PsFoundation.h */, - FFFD5a9941487fb05a994148 /* include/PsHash.h */, - FFFD5a9941b07fb05a9941b0 /* include/PsHashInternals.h */, - FFFD5a9942187fb05a994218 /* include/PsHashMap.h */, - FFFD5a9942807fb05a994280 /* include/PsHashSet.h */, - FFFD5a9942e87fb05a9942e8 /* include/PsInlineAllocator.h */, - FFFD5a9943507fb05a994350 /* include/PsInlineAoS.h */, - FFFD5a9943b87fb05a9943b8 /* include/PsInlineArray.h */, - FFFD5a9944207fb05a994420 /* include/PsIntrinsics.h */, - FFFD5a9944887fb05a994488 /* include/PsMathUtils.h */, - FFFD5a9944f07fb05a9944f0 /* include/PsMutex.h */, - FFFD5a9945587fb05a994558 /* include/PsPool.h */, - FFFD5a9945c07fb05a9945c0 /* include/PsSList.h */, - FFFD5a9946287fb05a994628 /* include/PsSocket.h */, - FFFD5a9946907fb05a994690 /* include/PsSort.h */, - FFFD5a9946f87fb05a9946f8 /* include/PsSortInternals.h */, - FFFD5a9947607fb05a994760 /* include/PsString.h */, - FFFD5a9947c87fb05a9947c8 /* include/PsSync.h */, - FFFD5a9948307fb05a994830 /* include/PsTempAllocator.h */, - FFFD5a9948987fb05a994898 /* include/PsThread.h */, - FFFD5a9949007fb05a994900 /* include/PsTime.h */, - FFFD5a9949687fb05a994968 /* include/PsUserAllocated.h */, - FFFD5a9949d07fb05a9949d0 /* include/PsUtilities.h */, - FFFD5a994a387fb05a994a38 /* include/PsVecMath.h */, - FFFD5a994aa07fb05a994aa0 /* include/PsVecMathAoSScalar.h */, - FFFD5a994b087fb05a994b08 /* include/PsVecMathAoSScalarInline.h */, - FFFD5a994b707fb05a994b70 /* include/PsVecMathSSE.h */, - FFFD5a994bd87fb05a994bd8 /* include/PsVecMathUtilities.h */, - FFFD5a994c407fb05a994c40 /* include/PsVecQuat.h */, - FFFD5a994ca87fb05a994ca8 /* include/PsVecTransform.h */, - FFFD5a994d107fb05a994d10 /* include/unix/PsUnixAoS.h */, - FFFD5a994d787fb05a994d78 /* include/unix/PsUnixFPU.h */, - FFFD5a994de07fb05a994de0 /* include/unix/PsUnixInlineAoS.h */, - FFFD5a994e487fb05a994e48 /* include/unix/PsUnixIntrinsics.h */, - FFFD5a994eb07fb05a994eb0 /* include/unix/PsUnixTrigConstants.h */, - FFFD5a994f187fb05a994f18 /* src/PsAllocator.cpp */, - FFFD5a994f807fb05a994f80 /* src/PsAssert.cpp */, - FFFD5a994fe87fb05a994fe8 /* src/PsFoundation.cpp */, - FFFD5a9950507fb05a995050 /* src/PsMathUtils.cpp */, - FFFD5a9950b87fb05a9950b8 /* src/PsString.cpp */, - FFFD5a9951207fb05a995120 /* src/PsTempAllocator.cpp */, - FFFD5a9951887fb05a995188 /* src/PsUtilities.cpp */, - FFFD5a9951f07fb05a9951f0 /* src/unix/PsUnixAtomic.cpp */, - FFFD5a9952587fb05a995258 /* src/unix/PsUnixCpu.cpp */, - FFFD5a9952c07fb05a9952c0 /* src/unix/PsUnixFPU.cpp */, - FFFD5a9953287fb05a995328 /* src/unix/PsUnixMutex.cpp */, - FFFD5a9953907fb05a995390 /* src/unix/PsUnixPrintString.cpp */, - FFFD5a9953f87fb05a9953f8 /* src/unix/PsUnixSList.cpp */, - FFFD5a9954607fb05a995460 /* src/unix/PsUnixSocket.cpp */, - FFFD5a9954c87fb05a9954c8 /* src/unix/PsUnixSync.cpp */, - FFFD5a9955307fb05a995530 /* src/unix/PsUnixThread.cpp */, - FFFD5a9955987fb05a995598 /* src/unix/PsUnixTime.cpp */, + FFFDec9826007febec982600 /* include/Ps.h */, + FFFDec9826687febec982668 /* include/PsAlignedMalloc.h */, + FFFDec9826d07febec9826d0 /* include/PsAlloca.h */, + FFFDec9827387febec982738 /* include/PsAllocator.h */, + FFFDec9827a07febec9827a0 /* include/PsAoS.h */, + FFFDec9828087febec982808 /* include/PsArray.h */, + FFFDec9828707febec982870 /* include/PsAtomic.h */, + FFFDec9828d87febec9828d8 /* include/PsBasicTemplates.h */, + FFFDec9829407febec982940 /* include/PsBitUtils.h */, + FFFDec9829a87febec9829a8 /* include/PsBroadcast.h */, + FFFDec982a107febec982a10 /* include/PsCpu.h */, + FFFDec982a787febec982a78 /* include/PsFPU.h */, + FFFDec982ae07febec982ae0 /* include/PsFoundation.h */, + FFFDec982b487febec982b48 /* include/PsHash.h */, + FFFDec982bb07febec982bb0 /* include/PsHashInternals.h */, + FFFDec982c187febec982c18 /* include/PsHashMap.h */, + FFFDec982c807febec982c80 /* include/PsHashSet.h */, + FFFDec982ce87febec982ce8 /* include/PsInlineAllocator.h */, + FFFDec982d507febec982d50 /* include/PsInlineAoS.h */, + FFFDec982db87febec982db8 /* include/PsInlineArray.h */, + FFFDec982e207febec982e20 /* include/PsIntrinsics.h */, + FFFDec982e887febec982e88 /* include/PsMathUtils.h */, + FFFDec982ef07febec982ef0 /* include/PsMutex.h */, + FFFDec982f587febec982f58 /* include/PsPool.h */, + FFFDec982fc07febec982fc0 /* include/PsSList.h */, + FFFDec9830287febec983028 /* include/PsSocket.h */, + FFFDec9830907febec983090 /* include/PsSort.h */, + FFFDec9830f87febec9830f8 /* include/PsSortInternals.h */, + FFFDec9831607febec983160 /* include/PsString.h */, + FFFDec9831c87febec9831c8 /* include/PsSync.h */, + FFFDec9832307febec983230 /* include/PsTempAllocator.h */, + FFFDec9832987febec983298 /* include/PsThread.h */, + FFFDec9833007febec983300 /* include/PsTime.h */, + FFFDec9833687febec983368 /* include/PsUserAllocated.h */, + FFFDec9833d07febec9833d0 /* include/PsUtilities.h */, + FFFDec9834387febec983438 /* include/PsVecMath.h */, + FFFDec9834a07febec9834a0 /* include/PsVecMathAoSScalar.h */, + FFFDec9835087febec983508 /* include/PsVecMathAoSScalarInline.h */, + FFFDec9835707febec983570 /* include/PsVecMathSSE.h */, + FFFDec9835d87febec9835d8 /* include/PsVecMathUtilities.h */, + FFFDec9836407febec983640 /* include/PsVecQuat.h */, + FFFDec9836a87febec9836a8 /* include/PsVecTransform.h */, + FFFDec9837107febec983710 /* include/unix/PsUnixAoS.h */, + FFFDec9837787febec983778 /* include/unix/PsUnixFPU.h */, + FFFDec9837e07febec9837e0 /* include/unix/PsUnixInlineAoS.h */, + FFFDec9838487febec983848 /* include/unix/PsUnixIntrinsics.h */, + FFFDec9838b07febec9838b0 /* include/unix/PsUnixTrigConstants.h */, + FFFDec9839187febec983918 /* src/PsAllocator.cpp */, + FFFDec9839807febec983980 /* src/PsAssert.cpp */, + FFFDec9839e87febec9839e8 /* src/PsFoundation.cpp */, + FFFDec983a507febec983a50 /* src/PsMathUtils.cpp */, + FFFDec983ab87febec983ab8 /* src/PsString.cpp */, + FFFDec983b207febec983b20 /* src/PsTempAllocator.cpp */, + FFFDec983b887febec983b88 /* src/PsUtilities.cpp */, + FFFDec983bf07febec983bf0 /* src/unix/PsUnixAtomic.cpp */, + FFFDec983c587febec983c58 /* src/unix/PsUnixCpu.cpp */, + FFFDec983cc07febec983cc0 /* src/unix/PsUnixFPU.cpp */, + FFFDec983d287febec983d28 /* src/unix/PsUnixMutex.cpp */, + FFFDec983d907febec983d90 /* src/unix/PsUnixPrintString.cpp */, + FFFDec983df87febec983df8 /* src/unix/PsUnixSList.cpp */, + FFFDec983e607febec983e60 /* src/unix/PsUnixSocket.cpp */, + FFFDec983ec87febec983ec8 /* src/unix/PsUnixSync.cpp */, + FFFDec983f307febec983f30 /* src/unix/PsUnixThread.cpp */, + FFFDec983f987febec983f98 /* src/unix/PsUnixTime.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB5b4338707fb05b433870 /* PxPvdSDK */ = { + FFFBebc7a0b07febebc7a0b0 /* PxPvdSDK */ = { isa = PBXGroup; children = ( - FFFB5b435e607fb05b435e60 /* include */, - FFFB5b435e887fb05b435e88 /* src */, + FFFBebc797007febebc79700 /* include */, + FFFBebc797287febebc79728 /* src */, ); name = "PxPvdSDK"; sourceTree = "<group>"; }; - FFFB5b435e607fb05b435e60 /* include */ = { + FFFBebc797007febebc79700 /* include */ = { isa = PBXGroup; children = ( - FFFD5b4365307fb05b436530 /* PxPvd.h */, - FFFD5b4365987fb05b436598 /* PxPvdTransport.h */, + FFFDebc806307febebc80630 /* PxPvd.h */, + FFFDebc806987febebc80698 /* PxPvdTransport.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB5b435e887fb05b435e88 /* src */ = { + FFFBebc797287febebc79728 /* src */ = { isa = PBXGroup; children = ( - FFFD5b81e6007fb05b81e600 /* include/PsPvd.h */, - FFFD5b81e6687fb05b81e668 /* include/PxProfileAllocatorWrapper.h */, - FFFD5b81e6d07fb05b81e6d0 /* include/PxPvdClient.h */, - FFFD5b81e7387fb05b81e738 /* include/PxPvdDataStream.h */, - FFFD5b81e7a07fb05b81e7a0 /* include/PxPvdDataStreamHelpers.h */, - FFFD5b81e8087fb05b81e808 /* include/PxPvdErrorCodes.h */, - FFFD5b81e8707fb05b81e870 /* include/PxPvdObjectModelBaseTypes.h */, - FFFD5b81e8d87fb05b81e8d8 /* include/PxPvdRenderBuffer.h */, - FFFD5b81e9407fb05b81e940 /* include/PxPvdUserRenderer.h */, - FFFD5b81e9a87fb05b81e9a8 /* src/PxProfileEventImpl.cpp */, - FFFD5b81ea107fb05b81ea10 /* src/PxPvd.cpp */, - FFFD5b81ea787fb05b81ea78 /* src/PxPvdDataStream.cpp */, - FFFD5b81eae07fb05b81eae0 /* src/PxPvdDefaultFileTransport.cpp */, - FFFD5b81eb487fb05b81eb48 /* src/PxPvdDefaultSocketTransport.cpp */, - FFFD5b81ebb07fb05b81ebb0 /* src/PxPvdImpl.cpp */, - FFFD5b81ec187fb05b81ec18 /* src/PxPvdMemClient.cpp */, - FFFD5b81ec807fb05b81ec80 /* src/PxPvdObjectModelMetaData.cpp */, - FFFD5b81ece87fb05b81ece8 /* src/PxPvdObjectRegistrar.cpp */, - FFFD5b81ed507fb05b81ed50 /* src/PxPvdProfileZoneClient.cpp */, - FFFD5b81edb87fb05b81edb8 /* src/PxPvdUserRenderer.cpp */, - FFFD5b81ee207fb05b81ee20 /* src/PxProfileBase.h */, - FFFD5b81ee887fb05b81ee88 /* src/PxProfileCompileTimeEventFilter.h */, - FFFD5b81eef07fb05b81eef0 /* src/PxProfileContextProvider.h */, - FFFD5b81ef587fb05b81ef58 /* src/PxProfileContextProviderImpl.h */, - FFFD5b81efc07fb05b81efc0 /* src/PxProfileDataBuffer.h */, - FFFD5b81f0287fb05b81f028 /* src/PxProfileDataParsing.h */, - FFFD5b81f0907fb05b81f090 /* src/PxProfileEventBuffer.h */, - FFFD5b81f0f87fb05b81f0f8 /* src/PxProfileEventBufferAtomic.h */, - FFFD5b81f1607fb05b81f160 /* src/PxProfileEventBufferClient.h */, - FFFD5b81f1c87fb05b81f1c8 /* src/PxProfileEventBufferClientManager.h */, - FFFD5b81f2307fb05b81f230 /* src/PxProfileEventFilter.h */, - FFFD5b81f2987fb05b81f298 /* src/PxProfileEventHandler.h */, - FFFD5b81f3007fb05b81f300 /* src/PxProfileEventId.h */, - FFFD5b81f3687fb05b81f368 /* src/PxProfileEventMutex.h */, - FFFD5b81f3d07fb05b81f3d0 /* src/PxProfileEventNames.h */, - FFFD5b81f4387fb05b81f438 /* src/PxProfileEventParser.h */, - FFFD5b81f4a07fb05b81f4a0 /* src/PxProfileEventSender.h */, - FFFD5b81f5087fb05b81f508 /* src/PxProfileEventSerialization.h */, - FFFD5b81f5707fb05b81f570 /* src/PxProfileEventSystem.h */, - FFFD5b81f5d87fb05b81f5d8 /* src/PxProfileEvents.h */, - FFFD5b81f6407fb05b81f640 /* src/PxProfileMemory.h */, - FFFD5b81f6a87fb05b81f6a8 /* src/PxProfileMemoryBuffer.h */, - FFFD5b81f7107fb05b81f710 /* src/PxProfileMemoryEventBuffer.h */, - FFFD5b81f7787fb05b81f778 /* src/PxProfileMemoryEventParser.h */, - FFFD5b81f7e07fb05b81f7e0 /* src/PxProfileMemoryEventRecorder.h */, - FFFD5b81f8487fb05b81f848 /* src/PxProfileMemoryEventReflexiveWriter.h */, - FFFD5b81f8b07fb05b81f8b0 /* src/PxProfileMemoryEventSummarizer.h */, - FFFD5b81f9187fb05b81f918 /* src/PxProfileMemoryEventTypes.h */, - FFFD5b81f9807fb05b81f980 /* src/PxProfileMemoryEvents.h */, - FFFD5b81f9e87fb05b81f9e8 /* src/PxProfileScopedEvent.h */, - FFFD5b81fa507fb05b81fa50 /* src/PxProfileScopedMutexLock.h */, - FFFD5b81fab87fb05b81fab8 /* src/PxProfileZone.h */, - FFFD5b81fb207fb05b81fb20 /* src/PxProfileZoneImpl.h */, - FFFD5b81fb887fb05b81fb88 /* src/PxProfileZoneManager.h */, - FFFD5b81fbf07fb05b81fbf0 /* src/PxProfileZoneManagerImpl.h */, - FFFD5b81fc587fb05b81fc58 /* src/PxPvdBits.h */, - FFFD5b81fcc07fb05b81fcc0 /* src/PxPvdByteStreams.h */, - FFFD5b81fd287fb05b81fd28 /* src/PxPvdCommStreamEventSink.h */, - FFFD5b81fd907fb05b81fd90 /* src/PxPvdCommStreamEvents.h */, - FFFD5b81fdf87fb05b81fdf8 /* src/PxPvdCommStreamSDKEventTypes.h */, - FFFD5b81fe607fb05b81fe60 /* src/PxPvdCommStreamTypes.h */, - FFFD5b81fec87fb05b81fec8 /* src/PxPvdDefaultFileTransport.h */, - FFFD5b81ff307fb05b81ff30 /* src/PxPvdDefaultSocketTransport.h */, - FFFD5b81ff987fb05b81ff98 /* src/PxPvdFoundation.h */, - FFFD5b8200007fb05b820000 /* src/PxPvdImpl.h */, - FFFD5b8200687fb05b820068 /* src/PxPvdInternalByteStreams.h */, - FFFD5b8200d07fb05b8200d0 /* src/PxPvdMarshalling.h */, - FFFD5b8201387fb05b820138 /* src/PxPvdMemClient.h */, - FFFD5b8201a07fb05b8201a0 /* src/PxPvdObjectModel.h */, - FFFD5b8202087fb05b820208 /* src/PxPvdObjectModelInternalTypeDefs.h */, - FFFD5b8202707fb05b820270 /* src/PxPvdObjectModelInternalTypes.h */, - FFFD5b8202d87fb05b8202d8 /* src/PxPvdObjectModelMetaData.h */, - FFFD5b8203407fb05b820340 /* src/PxPvdObjectRegistrar.h */, - FFFD5b8203a87fb05b8203a8 /* src/PxPvdProfileZoneClient.h */, - FFFD5b8204107fb05b820410 /* src/PxPvdUserRenderImpl.h */, - FFFD5b8204787fb05b820478 /* src/PxPvdUserRenderTypes.h */, + FFFDec0200007febec020000 /* include/PsPvd.h */, + FFFDec0200687febec020068 /* include/PxProfileAllocatorWrapper.h */, + FFFDec0200d07febec0200d0 /* include/PxPvdClient.h */, + FFFDec0201387febec020138 /* include/PxPvdDataStream.h */, + FFFDec0201a07febec0201a0 /* include/PxPvdDataStreamHelpers.h */, + FFFDec0202087febec020208 /* include/PxPvdErrorCodes.h */, + FFFDec0202707febec020270 /* include/PxPvdObjectModelBaseTypes.h */, + FFFDec0202d87febec0202d8 /* include/PxPvdRenderBuffer.h */, + FFFDec0203407febec020340 /* include/PxPvdUserRenderer.h */, + FFFDec0203a87febec0203a8 /* src/PxProfileEventImpl.cpp */, + FFFDec0204107febec020410 /* src/PxPvd.cpp */, + FFFDec0204787febec020478 /* src/PxPvdDataStream.cpp */, + FFFDec0204e07febec0204e0 /* src/PxPvdDefaultFileTransport.cpp */, + FFFDec0205487febec020548 /* src/PxPvdDefaultSocketTransport.cpp */, + FFFDec0205b07febec0205b0 /* src/PxPvdImpl.cpp */, + FFFDec0206187febec020618 /* src/PxPvdMemClient.cpp */, + FFFDec0206807febec020680 /* src/PxPvdObjectModelMetaData.cpp */, + FFFDec0206e87febec0206e8 /* src/PxPvdObjectRegistrar.cpp */, + FFFDec0207507febec020750 /* src/PxPvdProfileZoneClient.cpp */, + FFFDec0207b87febec0207b8 /* src/PxPvdUserRenderer.cpp */, + FFFDec0208207febec020820 /* src/PxProfileBase.h */, + FFFDec0208887febec020888 /* src/PxProfileCompileTimeEventFilter.h */, + FFFDec0208f07febec0208f0 /* src/PxProfileContextProvider.h */, + FFFDec0209587febec020958 /* src/PxProfileContextProviderImpl.h */, + FFFDec0209c07febec0209c0 /* src/PxProfileDataBuffer.h */, + FFFDec020a287febec020a28 /* src/PxProfileDataParsing.h */, + FFFDec020a907febec020a90 /* src/PxProfileEventBuffer.h */, + FFFDec020af87febec020af8 /* src/PxProfileEventBufferAtomic.h */, + FFFDec020b607febec020b60 /* src/PxProfileEventBufferClient.h */, + FFFDec020bc87febec020bc8 /* src/PxProfileEventBufferClientManager.h */, + FFFDec020c307febec020c30 /* src/PxProfileEventFilter.h */, + FFFDec020c987febec020c98 /* src/PxProfileEventHandler.h */, + FFFDec020d007febec020d00 /* src/PxProfileEventId.h */, + FFFDec020d687febec020d68 /* src/PxProfileEventMutex.h */, + FFFDec020dd07febec020dd0 /* src/PxProfileEventNames.h */, + FFFDec020e387febec020e38 /* src/PxProfileEventParser.h */, + FFFDec020ea07febec020ea0 /* src/PxProfileEventSender.h */, + FFFDec020f087febec020f08 /* src/PxProfileEventSerialization.h */, + FFFDec020f707febec020f70 /* src/PxProfileEventSystem.h */, + FFFDec020fd87febec020fd8 /* src/PxProfileEvents.h */, + FFFDec0210407febec021040 /* src/PxProfileMemory.h */, + FFFDec0210a87febec0210a8 /* src/PxProfileMemoryBuffer.h */, + FFFDec0211107febec021110 /* src/PxProfileMemoryEventBuffer.h */, + FFFDec0211787febec021178 /* src/PxProfileMemoryEventParser.h */, + FFFDec0211e07febec0211e0 /* src/PxProfileMemoryEventRecorder.h */, + FFFDec0212487febec021248 /* src/PxProfileMemoryEventReflexiveWriter.h */, + FFFDec0212b07febec0212b0 /* src/PxProfileMemoryEventSummarizer.h */, + FFFDec0213187febec021318 /* src/PxProfileMemoryEventTypes.h */, + FFFDec0213807febec021380 /* src/PxProfileMemoryEvents.h */, + FFFDec0213e87febec0213e8 /* src/PxProfileScopedEvent.h */, + FFFDec0214507febec021450 /* src/PxProfileScopedMutexLock.h */, + FFFDec0214b87febec0214b8 /* src/PxProfileZone.h */, + FFFDec0215207febec021520 /* src/PxProfileZoneImpl.h */, + FFFDec0215887febec021588 /* src/PxProfileZoneManager.h */, + FFFDec0215f07febec0215f0 /* src/PxProfileZoneManagerImpl.h */, + FFFDec0216587febec021658 /* src/PxPvdBits.h */, + FFFDec0216c07febec0216c0 /* src/PxPvdByteStreams.h */, + FFFDec0217287febec021728 /* src/PxPvdCommStreamEventSink.h */, + FFFDec0217907febec021790 /* src/PxPvdCommStreamEvents.h */, + FFFDec0217f87febec0217f8 /* src/PxPvdCommStreamSDKEventTypes.h */, + FFFDec0218607febec021860 /* src/PxPvdCommStreamTypes.h */, + FFFDec0218c87febec0218c8 /* src/PxPvdDefaultFileTransport.h */, + FFFDec0219307febec021930 /* src/PxPvdDefaultSocketTransport.h */, + FFFDec0219987febec021998 /* src/PxPvdFoundation.h */, + FFFDec021a007febec021a00 /* src/PxPvdImpl.h */, + FFFDec021a687febec021a68 /* src/PxPvdInternalByteStreams.h */, + FFFDec021ad07febec021ad0 /* src/PxPvdMarshalling.h */, + FFFDec021b387febec021b38 /* src/PxPvdMemClient.h */, + FFFDec021ba07febec021ba0 /* src/PxPvdObjectModel.h */, + FFFDec021c087febec021c08 /* src/PxPvdObjectModelInternalTypeDefs.h */, + FFFDec021c707febec021c70 /* src/PxPvdObjectModelInternalTypes.h */, + FFFDec021cd87febec021cd8 /* src/PxPvdObjectModelMetaData.h */, + FFFDec021d407febec021d40 /* src/PxPvdObjectRegistrar.h */, + FFFDec021da87febec021da8 /* src/PxPvdProfileZoneClient.h */, + FFFDec021e107febec021e10 /* src/PxPvdUserRenderImpl.h */, + FFFDec021e787febec021e78 /* src/PxPvdUserRenderTypes.h */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB5b308fd07fb05b308fd0 /* LowLevel */ = { + FFFBebe3bcb07febebe3bcb0 /* LowLevel */ = { isa = PBXGroup; children = ( - FFFB5b30b4e07fb05b30b4e0 /* API Source */, - FFFB5b30b5087fb05b30b508 /* API Includes */, - FFFB5b30b5307fb05b30b530 /* Software Source */, - FFFB5b30b5587fb05b30b558 /* Software Includes */, - FFFB5b30b5807fb05b30b580 /* Common Source */, - FFFB5b30b5a87fb05b30b5a8 /* Common Includes */, + FFFBebc5c9607febebc5c960 /* API Source */, + FFFBebc5c9887febebc5c988 /* API Includes */, + FFFBebc5c9b07febebc5c9b0 /* Software Source */, + FFFBebc5c9d87febebc5c9d8 /* Software Includes */, + FFFBebc5ca007febebc5ca00 /* Common Source */, + FFFBebc5ca287febebc5ca28 /* Common Includes */, ); name = "LowLevel"; sourceTree = "<group>"; }; - FFFB5b30b4e07fb05b30b4e0 /* API Source */ = { + FFFBebc5c9607febebc5c960 /* API Source */ = { isa = PBXGroup; children = ( - FFFD5b30b4307fb05b30b430 /* px_globals.cpp */, + FFFDebe5f4d07febebe5f4d0 /* px_globals.cpp */, ); name = "API Source"; sourceTree = SOURCE_ROOT; }; - FFFB5b30b5087fb05b30b508 /* API Includes */ = { + FFFBebc5c9887febebc5c988 /* API Includes */ = { isa = PBXGroup; children = ( - FFFD5b30cb307fb05b30cb30 /* PxsMaterialCore.h */, - FFFD5b30cb987fb05b30cb98 /* PxsMaterialManager.h */, - FFFD5b30cc007fb05b30cc00 /* PxvConfig.h */, - FFFD5b30cc687fb05b30cc68 /* PxvContext.h */, - FFFD5b30ccd07fb05b30ccd0 /* PxvDynamics.h */, - FFFD5b30cd387fb05b30cd38 /* PxvGeometry.h */, - FFFD5b30cda07fb05b30cda0 /* PxvGlobals.h */, - FFFD5b30ce087fb05b30ce08 /* PxvManager.h */, - FFFD5b30ce707fb05b30ce70 /* PxvSimStats.h */, + FFFDebc5dba07febebc5dba0 /* PxsMaterialCore.h */, + FFFDebc5dc087febebc5dc08 /* PxsMaterialManager.h */, + FFFDebc5dc707febebc5dc70 /* PxvConfig.h */, + FFFDebc5dcd87febebc5dcd8 /* PxvContext.h */, + FFFDebc5dd407febebc5dd40 /* PxvDynamics.h */, + FFFDebc5dda87febebc5dda8 /* PxvGeometry.h */, + FFFDebc5de107febebc5de10 /* PxvGlobals.h */, + FFFDebc5de787febebc5de78 /* PxvManager.h */, + FFFDebc5dee07febebc5dee0 /* PxvSimStats.h */, ); name = "API Includes"; sourceTree = SOURCE_ROOT; }; - FFFB5b30b5307fb05b30b530 /* Software Source */ = { + FFFBebc5c9b07febebc5c9b0 /* Software Source */ = { isa = PBXGroup; children = ( - FFFD5b30dd107fb05b30dd10 /* PxsCCD.cpp */, - FFFD5b30dd787fb05b30dd78 /* PxsContactManager.cpp */, - FFFD5b30dde07fb05b30dde0 /* PxsContext.cpp */, - FFFD5b30de487fb05b30de48 /* PxsDefaultMemoryManager.cpp */, - FFFD5b30deb07fb05b30deb0 /* PxsIslandSim.cpp */, - FFFD5b30df187fb05b30df18 /* PxsMaterialCombiner.cpp */, - FFFD5b30df807fb05b30df80 /* PxsNphaseImplementationContext.cpp */, - FFFD5b30dfe87fb05b30dfe8 /* PxsSimpleIslandManager.cpp */, + FFFDebc6c0407febebc6c040 /* PxsCCD.cpp */, + FFFDebc6c0a87febebc6c0a8 /* PxsContactManager.cpp */, + FFFDebc6c1107febebc6c110 /* PxsContext.cpp */, + FFFDebc6c1787febebc6c178 /* PxsDefaultMemoryManager.cpp */, + FFFDebc6c1e07febebc6c1e0 /* PxsIslandSim.cpp */, + FFFDebc6c2487febebc6c248 /* PxsMaterialCombiner.cpp */, + FFFDebc6c2b07febebc6c2b0 /* PxsNphaseImplementationContext.cpp */, + FFFDebc6c3187febebc6c318 /* PxsSimpleIslandManager.cpp */, ); name = "Software Source"; sourceTree = SOURCE_ROOT; }; - FFFB5b30b5587fb05b30b558 /* Software Includes */ = { + FFFBebc5c9d87febebc5c9d8 /* Software Includes */ = { isa = PBXGroup; children = ( - FFFD5a9ad6007fb05a9ad600 /* PxsBodySim.h */, - FFFD5a9ad6687fb05a9ad668 /* PxsCCD.h */, - FFFD5a9ad6d07fb05a9ad6d0 /* PxsContactManager.h */, - FFFD5a9ad7387fb05a9ad738 /* PxsContactManagerState.h */, - FFFD5a9ad7a07fb05a9ad7a0 /* PxsContext.h */, - FFFD5a9ad8087fb05a9ad808 /* PxsDefaultMemoryManager.h */, - FFFD5a9ad8707fb05a9ad870 /* PxsHeapMemoryAllocator.h */, - FFFD5a9ad8d87fb05a9ad8d8 /* PxsIncrementalConstraintPartitioning.h */, - FFFD5a9ad9407fb05a9ad940 /* PxsIslandManagerTypes.h */, - FFFD5a9ad9a87fb05a9ad9a8 /* PxsIslandSim.h */, - FFFD5a9ada107fb05a9ada10 /* PxsKernelWrangler.h */, - FFFD5a9ada787fb05a9ada78 /* PxsMaterialCombiner.h */, - FFFD5a9adae07fb05a9adae0 /* PxsMemoryManager.h */, - FFFD5a9adb487fb05a9adb48 /* PxsNphaseImplementationContext.h */, - FFFD5a9adbb07fb05a9adbb0 /* PxsRigidBody.h */, - FFFD5a9adc187fb05a9adc18 /* PxsShapeSim.h */, - FFFD5a9adc807fb05a9adc80 /* PxsSimpleIslandManager.h */, - FFFD5a9adce87fb05a9adce8 /* PxsSimulationController.h */, - FFFD5a9add507fb05a9add50 /* PxsTransformCache.h */, - FFFD5a9addb87fb05a9addb8 /* PxvNphaseImplementationContext.h */, + FFFDec029a007febec029a00 /* PxsBodySim.h */, + FFFDec029a687febec029a68 /* PxsCCD.h */, + FFFDec029ad07febec029ad0 /* PxsContactManager.h */, + FFFDec029b387febec029b38 /* PxsContactManagerState.h */, + FFFDec029ba07febec029ba0 /* PxsContext.h */, + FFFDec029c087febec029c08 /* PxsDefaultMemoryManager.h */, + FFFDec029c707febec029c70 /* PxsHeapMemoryAllocator.h */, + FFFDec029cd87febec029cd8 /* PxsIncrementalConstraintPartitioning.h */, + FFFDec029d407febec029d40 /* PxsIslandManagerTypes.h */, + FFFDec029da87febec029da8 /* PxsIslandSim.h */, + FFFDec029e107febec029e10 /* PxsKernelWrangler.h */, + FFFDec029e787febec029e78 /* PxsMaterialCombiner.h */, + FFFDec029ee07febec029ee0 /* PxsMemoryManager.h */, + FFFDec029f487febec029f48 /* PxsNphaseImplementationContext.h */, + FFFDec029fb07febec029fb0 /* PxsRigidBody.h */, + FFFDec02a0187febec02a018 /* PxsShapeSim.h */, + FFFDec02a0807febec02a080 /* PxsSimpleIslandManager.h */, + FFFDec02a0e87febec02a0e8 /* PxsSimulationController.h */, + FFFDec02a1507febec02a150 /* PxsTransformCache.h */, + FFFDec02a1b87febec02a1b8 /* PxvNphaseImplementationContext.h */, ); name = "Software Includes"; sourceTree = SOURCE_ROOT; }; - FFFB5b30b5807fb05b30b580 /* Common Source */ = { + FFFBebc5ca007febebc5ca00 /* Common Source */ = { isa = PBXGroup; children = ( - FFFD5a9a08007fb05a9a0800 /* collision/PxcContact.cpp */, - FFFD5a9a08687fb05a9a0868 /* pipeline/PxcContactCache.cpp */, - FFFD5a9a08d07fb05a9a08d0 /* pipeline/PxcContactMethodImpl.cpp */, - FFFD5a9a09387fb05a9a0938 /* pipeline/PxcMaterialHeightField.cpp */, - FFFD5a9a09a07fb05a9a09a0 /* pipeline/PxcMaterialMesh.cpp */, - FFFD5a9a0a087fb05a9a0a08 /* pipeline/PxcMaterialMethodImpl.cpp */, - FFFD5a9a0a707fb05a9a0a70 /* pipeline/PxcMaterialShape.cpp */, - FFFD5a9a0ad87fb05a9a0ad8 /* pipeline/PxcNpBatch.cpp */, - FFFD5a9a0b407fb05a9a0b40 /* pipeline/PxcNpCacheStreamPair.cpp */, - FFFD5a9a0ba87fb05a9a0ba8 /* pipeline/PxcNpContactPrepShared.cpp */, - FFFD5a9a0c107fb05a9a0c10 /* pipeline/PxcNpMemBlockPool.cpp */, - FFFD5a9a0c787fb05a9a0c78 /* pipeline/PxcNpThreadContext.cpp */, + FFFDec01e4007febec01e400 /* collision/PxcContact.cpp */, + FFFDec01e4687febec01e468 /* pipeline/PxcContactCache.cpp */, + FFFDec01e4d07febec01e4d0 /* pipeline/PxcContactMethodImpl.cpp */, + FFFDec01e5387febec01e538 /* pipeline/PxcMaterialHeightField.cpp */, + FFFDec01e5a07febec01e5a0 /* pipeline/PxcMaterialMesh.cpp */, + FFFDec01e6087febec01e608 /* pipeline/PxcMaterialMethodImpl.cpp */, + FFFDec01e6707febec01e670 /* pipeline/PxcMaterialShape.cpp */, + FFFDec01e6d87febec01e6d8 /* pipeline/PxcNpBatch.cpp */, + FFFDec01e7407febec01e740 /* pipeline/PxcNpCacheStreamPair.cpp */, + FFFDec01e7a87febec01e7a8 /* pipeline/PxcNpContactPrepShared.cpp */, + FFFDec01e8107febec01e810 /* pipeline/PxcNpMemBlockPool.cpp */, + FFFDec01e8787febec01e878 /* pipeline/PxcNpThreadContext.cpp */, ); name = "Common Source"; sourceTree = SOURCE_ROOT; }; - FFFB5b30b5a87fb05b30b5a8 /* Common Includes */ = { + FFFBebc5ca287febebc5ca28 /* Common Includes */ = { isa = PBXGroup; children = ( - FFFD5a9ac8007fb05a9ac800 /* collision/PxcContactMethodImpl.h */, - FFFD5a9ac8687fb05a9ac868 /* pipeline/PxcCCDStateStreamPair.h */, - FFFD5a9ac8d07fb05a9ac8d0 /* pipeline/PxcConstraintBlockStream.h */, - FFFD5a9ac9387fb05a9ac938 /* pipeline/PxcContactCache.h */, - FFFD5a9ac9a07fb05a9ac9a0 /* pipeline/PxcMaterialMethodImpl.h */, - FFFD5a9aca087fb05a9aca08 /* pipeline/PxcNpBatch.h */, - FFFD5a9aca707fb05a9aca70 /* pipeline/PxcNpCache.h */, - FFFD5a9acad87fb05a9acad8 /* pipeline/PxcNpCacheStreamPair.h */, - FFFD5a9acb407fb05a9acb40 /* pipeline/PxcNpContactPrepShared.h */, - FFFD5a9acba87fb05a9acba8 /* pipeline/PxcNpMemBlockPool.h */, - FFFD5a9acc107fb05a9acc10 /* pipeline/PxcNpThreadContext.h */, - FFFD5a9acc787fb05a9acc78 /* pipeline/PxcNpWorkUnit.h */, - FFFD5a9acce07fb05a9acce0 /* pipeline/PxcRigidBody.h */, - FFFD5a9acd487fb05a9acd48 /* utils/PxcScratchAllocator.h */, - FFFD5a9acdb07fb05a9acdb0 /* utils/PxcThreadCoherentCache.h */, + FFFDec028c007febec028c00 /* collision/PxcContactMethodImpl.h */, + FFFDec028c687febec028c68 /* pipeline/PxcCCDStateStreamPair.h */, + FFFDec028cd07febec028cd0 /* pipeline/PxcConstraintBlockStream.h */, + FFFDec028d387febec028d38 /* pipeline/PxcContactCache.h */, + FFFDec028da07febec028da0 /* pipeline/PxcMaterialMethodImpl.h */, + FFFDec028e087febec028e08 /* pipeline/PxcNpBatch.h */, + FFFDec028e707febec028e70 /* pipeline/PxcNpCache.h */, + FFFDec028ed87febec028ed8 /* pipeline/PxcNpCacheStreamPair.h */, + FFFDec028f407febec028f40 /* pipeline/PxcNpContactPrepShared.h */, + FFFDec028fa87febec028fa8 /* pipeline/PxcNpMemBlockPool.h */, + FFFDec0290107febec029010 /* pipeline/PxcNpThreadContext.h */, + FFFDec0290787febec029078 /* pipeline/PxcNpWorkUnit.h */, + FFFDec0290e07febec0290e0 /* pipeline/PxcRigidBody.h */, + FFFDec0291487febec029148 /* utils/PxcScratchAllocator.h */, + FFFDec0291b07febec0291b0 /* utils/PxcThreadCoherentCache.h */, ); name = "Common Includes"; sourceTree = SOURCE_ROOT; }; - FFFB5c8058807fb05c805880 /* LowLevelAABB */ = { + FFFBed432ce07febed432ce0 /* LowLevelAABB */ = { isa = PBXGroup; children = ( - FFFB5c80c1b07fb05c80c1b0 /* include */, - FFFB5c80c1d87fb05c80c1d8 /* src */, + FFFBed435b507febed435b50 /* include */, + FFFBed435b787febed435b78 /* src */, ); name = "LowLevelAABB"; sourceTree = "<group>"; }; - FFFB5c80c1b07fb05c80c1b0 /* include */ = { + FFFBed435b507febed435b50 /* include */ = { isa = PBXGroup; children = ( - FFFD5c80c6d07fb05c80c6d0 /* BpAABBManagerTasks.h */, - FFFD5c80c7387fb05c80c738 /* BpBroadPhase.h */, - FFFD5c80c7a07fb05c80c7a0 /* BpBroadPhaseUpdate.h */, - FFFD5c80c8087fb05c80c808 /* BpSimpleAABBManager.h */, + FFFDed4363407febed436340 /* BpAABBManagerTasks.h */, + FFFDed4363a87febed4363a8 /* BpBroadPhase.h */, + FFFDed4364107febed436410 /* BpBroadPhaseUpdate.h */, + FFFDed4364787febed436478 /* BpSimpleAABBManager.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB5c80c1d87fb05c80c1d8 /* src */ = { + FFFBed435b787febed435b78 /* src */ = { isa = PBXGroup; children = ( - FFFD5d0012007fb05d001200 /* BpBroadPhaseMBP.h */, - FFFD5d0012687fb05d001268 /* BpBroadPhaseMBPCommon.h */, - FFFD5d0012d07fb05d0012d0 /* BpBroadPhaseSap.h */, - FFFD5d0013387fb05d001338 /* BpBroadPhaseSapAux.h */, - FFFD5d0013a07fb05d0013a0 /* BpMBPTasks.h */, - FFFD5d0014087fb05d001408 /* BpSAPTasks.h */, - FFFD5d0014707fb05d001470 /* BpBroadPhase.cpp */, - FFFD5d0014d87fb05d0014d8 /* BpBroadPhaseMBP.cpp */, - FFFD5d0015407fb05d001540 /* BpBroadPhaseSap.cpp */, - FFFD5d0015a87fb05d0015a8 /* BpBroadPhaseSapAux.cpp */, - FFFD5d0016107fb05d001610 /* BpMBPTasks.cpp */, - FFFD5d0016787fb05d001678 /* BpSAPTasks.cpp */, - FFFD5d0016e07fb05d0016e0 /* BpSimpleAABBManager.cpp */, + FFFDed8188007febed818800 /* BpBroadPhaseMBP.h */, + FFFDed8188687febed818868 /* BpBroadPhaseMBPCommon.h */, + FFFDed8188d07febed8188d0 /* BpBroadPhaseSap.h */, + FFFDed8189387febed818938 /* BpBroadPhaseSapAux.h */, + FFFDed8189a07febed8189a0 /* BpMBPTasks.h */, + FFFDed818a087febed818a08 /* BpSAPTasks.h */, + FFFDed818a707febed818a70 /* BpBroadPhase.cpp */, + FFFDed818ad87febed818ad8 /* BpBroadPhaseMBP.cpp */, + FFFDed818b407febed818b40 /* BpBroadPhaseSap.cpp */, + FFFDed818ba87febed818ba8 /* BpBroadPhaseSapAux.cpp */, + FFFDed818c107febed818c10 /* BpMBPTasks.cpp */, + FFFDed818c787febed818c78 /* BpSAPTasks.cpp */, + FFFDed818ce07febed818ce0 /* BpSimpleAABBManager.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB5b45afc07fb05b45afc0 /* LowLevelDynamics */ = { + FFFBebe6c9d07febebe6c9d0 /* LowLevelDynamics */ = { isa = PBXGroup; children = ( - FFFB5b4462e07fb05b4462e0 /* Dynamics Source */, - FFFB5b4463087fb05b446308 /* Dynamics Includes */, - FFFB5b4463307fb05b446330 /* Dynamics Internal Includes */, + FFFBebe792607febebe79260 /* Dynamics Source */, + FFFBebe792887febebe79288 /* Dynamics Includes */, + FFFBebe792b07febebe792b0 /* Dynamics Internal Includes */, ); name = "LowLevelDynamics"; sourceTree = "<group>"; }; - FFFB5b4462e07fb05b4462e0 /* Dynamics Source */ = { + FFFBebe792607febebe79260 /* Dynamics Source */ = { isa = PBXGroup; children = ( - FFFD5b8278007fb05b827800 /* DyArticulation.cpp */, - FFFD5b8278687fb05b827868 /* DyArticulationContactPrep.cpp */, - FFFD5b8278d07fb05b8278d0 /* DyArticulationContactPrepPF.cpp */, - FFFD5b8279387fb05b827938 /* DyArticulationHelper.cpp */, - FFFD5b8279a07fb05b8279a0 /* DyArticulationSIMD.cpp */, - FFFD5b827a087fb05b827a08 /* DyArticulationScalar.cpp */, - FFFD5b827a707fb05b827a70 /* DyConstraintPartition.cpp */, - FFFD5b827ad87fb05b827ad8 /* DyConstraintSetup.cpp */, - FFFD5b827b407fb05b827b40 /* DyConstraintSetupBlock.cpp */, - FFFD5b827ba87fb05b827ba8 /* DyContactPrep.cpp */, - FFFD5b827c107fb05b827c10 /* DyContactPrep4.cpp */, - FFFD5b827c787fb05b827c78 /* DyContactPrep4PF.cpp */, - FFFD5b827ce07fb05b827ce0 /* DyContactPrepPF.cpp */, - FFFD5b827d487fb05b827d48 /* DyDynamics.cpp */, - FFFD5b827db07fb05b827db0 /* DyFrictionCorrelation.cpp */, - FFFD5b827e187fb05b827e18 /* DyRigidBodyToSolverBody.cpp */, - FFFD5b827e807fb05b827e80 /* DySolverConstraints.cpp */, - FFFD5b827ee87fb05b827ee8 /* DySolverConstraintsBlock.cpp */, - FFFD5b827f507fb05b827f50 /* DySolverControl.cpp */, - FFFD5b827fb87fb05b827fb8 /* DySolverControlPF.cpp */, - FFFD5b8280207fb05b828020 /* DySolverPFConstraints.cpp */, - FFFD5b8280887fb05b828088 /* DySolverPFConstraintsBlock.cpp */, - FFFD5b8280f07fb05b8280f0 /* DyThreadContext.cpp */, - FFFD5b8281587fb05b828158 /* DyThresholdTable.cpp */, + FFFDec032c007febec032c00 /* DyArticulation.cpp */, + FFFDec032c687febec032c68 /* DyArticulationContactPrep.cpp */, + FFFDec032cd07febec032cd0 /* DyArticulationContactPrepPF.cpp */, + FFFDec032d387febec032d38 /* DyArticulationHelper.cpp */, + FFFDec032da07febec032da0 /* DyArticulationSIMD.cpp */, + FFFDec032e087febec032e08 /* DyArticulationScalar.cpp */, + FFFDec032e707febec032e70 /* DyConstraintPartition.cpp */, + FFFDec032ed87febec032ed8 /* DyConstraintSetup.cpp */, + FFFDec032f407febec032f40 /* DyConstraintSetupBlock.cpp */, + FFFDec032fa87febec032fa8 /* DyContactPrep.cpp */, + FFFDec0330107febec033010 /* DyContactPrep4.cpp */, + FFFDec0330787febec033078 /* DyContactPrep4PF.cpp */, + FFFDec0330e07febec0330e0 /* DyContactPrepPF.cpp */, + FFFDec0331487febec033148 /* DyDynamics.cpp */, + FFFDec0331b07febec0331b0 /* DyFrictionCorrelation.cpp */, + FFFDec0332187febec033218 /* DyRigidBodyToSolverBody.cpp */, + FFFDec0332807febec033280 /* DySolverConstraints.cpp */, + FFFDec0332e87febec0332e8 /* DySolverConstraintsBlock.cpp */, + FFFDec0333507febec033350 /* DySolverControl.cpp */, + FFFDec0333b87febec0333b8 /* DySolverControlPF.cpp */, + FFFDec0334207febec033420 /* DySolverPFConstraints.cpp */, + FFFDec0334887febec033488 /* DySolverPFConstraintsBlock.cpp */, + FFFDec0334f07febec0334f0 /* DyThreadContext.cpp */, + FFFDec0335587febec033558 /* DyThresholdTable.cpp */, ); name = "Dynamics Source"; sourceTree = SOURCE_ROOT; }; - FFFB5b4463087fb05b446308 /* Dynamics Includes */ = { + FFFBebe792887febebe79288 /* Dynamics Includes */ = { isa = PBXGroup; children = ( - FFFD5b447df07fb05b447df0 /* DyArticulation.h */, - FFFD5b447e587fb05b447e58 /* DyConstraint.h */, - FFFD5b447ec07fb05b447ec0 /* DyConstraintWriteBack.h */, - FFFD5b447f287fb05b447f28 /* DyContext.h */, - FFFD5b447f907fb05b447f90 /* DyGpuAPI.h */, - FFFD5b447ff87fb05b447ff8 /* DySleepingConfigulation.h */, - FFFD5b4480607fb05b448060 /* DyThresholdTable.h */, + FFFDebe7ef207febebe7ef20 /* DyArticulation.h */, + FFFDebe7ef887febebe7ef88 /* DyConstraint.h */, + FFFDebe7eff07febebe7eff0 /* DyConstraintWriteBack.h */, + FFFDebe7f0587febebe7f058 /* DyContext.h */, + FFFDebe7f0c07febebe7f0c0 /* DyGpuAPI.h */, + FFFDebe7f1287febebe7f128 /* DySleepingConfigulation.h */, + FFFDebe7f1907febebe7f190 /* DyThresholdTable.h */, ); name = "Dynamics Includes"; sourceTree = SOURCE_ROOT; }; - FFFB5b4463307fb05b446330 /* Dynamics Internal Includes */ = { + FFFBebe792b07febebe792b0 /* Dynamics Internal Includes */ = { isa = PBXGroup; children = ( - FFFD5b8290007fb05b829000 /* DyArticulationContactPrep.h */, - FFFD5b8290687fb05b829068 /* DyArticulationFnsDebug.h */, - FFFD5b8290d07fb05b8290d0 /* DyArticulationFnsScalar.h */, - FFFD5b8291387fb05b829138 /* DyArticulationFnsSimd.h */, - FFFD5b8291a07fb05b8291a0 /* DyArticulationHelper.h */, - FFFD5b8292087fb05b829208 /* DyArticulationPImpl.h */, - FFFD5b8292707fb05b829270 /* DyArticulationReference.h */, - FFFD5b8292d87fb05b8292d8 /* DyArticulationScalar.h */, - FFFD5b8293407fb05b829340 /* DyArticulationUtils.h */, - FFFD5b8293a87fb05b8293a8 /* DyBodyCoreIntegrator.h */, - FFFD5b8294107fb05b829410 /* DyConstraintPartition.h */, - FFFD5b8294787fb05b829478 /* DyConstraintPrep.h */, - FFFD5b8294e07fb05b8294e0 /* DyContactPrep.h */, - FFFD5b8295487fb05b829548 /* DyContactPrepShared.h */, - FFFD5b8295b07fb05b8295b0 /* DyContactReduction.h */, - FFFD5b8296187fb05b829618 /* DyCorrelationBuffer.h */, - FFFD5b8296807fb05b829680 /* DyDynamics.h */, - FFFD5b8296e87fb05b8296e8 /* DyFrictionPatch.h */, - FFFD5b8297507fb05b829750 /* DyFrictionPatchStreamPair.h */, - FFFD5b8297b87fb05b8297b8 /* DySolverBody.h */, - FFFD5b8298207fb05b829820 /* DySolverConstraint1D.h */, - FFFD5b8298887fb05b829888 /* DySolverConstraint1D4.h */, - FFFD5b8298f07fb05b8298f0 /* DySolverConstraintDesc.h */, - FFFD5b8299587fb05b829958 /* DySolverConstraintExtShared.h */, - FFFD5b8299c07fb05b8299c0 /* DySolverConstraintTypes.h */, - FFFD5b829a287fb05b829a28 /* DySolverConstraintsShared.h */, - FFFD5b829a907fb05b829a90 /* DySolverContact.h */, - FFFD5b829af87fb05b829af8 /* DySolverContact4.h */, - FFFD5b829b607fb05b829b60 /* DySolverContactPF.h */, - FFFD5b829bc87fb05b829bc8 /* DySolverContactPF4.h */, - FFFD5b829c307fb05b829c30 /* DySolverContext.h */, - FFFD5b829c987fb05b829c98 /* DySolverControl.h */, - FFFD5b829d007fb05b829d00 /* DySolverControlPF.h */, - FFFD5b829d687fb05b829d68 /* DySolverCore.h */, - FFFD5b829dd07fb05b829dd0 /* DySolverExt.h */, - FFFD5b829e387fb05b829e38 /* DySpatial.h */, - FFFD5b829ea07fb05b829ea0 /* DyThreadContext.h */, + FFFDec0336007febec033600 /* DyArticulationContactPrep.h */, + FFFDec0336687febec033668 /* DyArticulationFnsDebug.h */, + FFFDec0336d07febec0336d0 /* DyArticulationFnsScalar.h */, + FFFDec0337387febec033738 /* DyArticulationFnsSimd.h */, + FFFDec0337a07febec0337a0 /* DyArticulationHelper.h */, + FFFDec0338087febec033808 /* DyArticulationPImpl.h */, + FFFDec0338707febec033870 /* DyArticulationReference.h */, + FFFDec0338d87febec0338d8 /* DyArticulationScalar.h */, + FFFDec0339407febec033940 /* DyArticulationUtils.h */, + FFFDec0339a87febec0339a8 /* DyBodyCoreIntegrator.h */, + FFFDec033a107febec033a10 /* DyConstraintPartition.h */, + FFFDec033a787febec033a78 /* DyConstraintPrep.h */, + FFFDec033ae07febec033ae0 /* DyContactPrep.h */, + FFFDec033b487febec033b48 /* DyContactPrepShared.h */, + FFFDec033bb07febec033bb0 /* DyContactReduction.h */, + FFFDec033c187febec033c18 /* DyCorrelationBuffer.h */, + FFFDec033c807febec033c80 /* DyDynamics.h */, + FFFDec033ce87febec033ce8 /* DyFrictionPatch.h */, + FFFDec033d507febec033d50 /* DyFrictionPatchStreamPair.h */, + FFFDec033db87febec033db8 /* DySolverBody.h */, + FFFDec033e207febec033e20 /* DySolverConstraint1D.h */, + FFFDec033e887febec033e88 /* DySolverConstraint1D4.h */, + FFFDec033ef07febec033ef0 /* DySolverConstraintDesc.h */, + FFFDec033f587febec033f58 /* DySolverConstraintExtShared.h */, + FFFDec033fc07febec033fc0 /* DySolverConstraintTypes.h */, + FFFDec0340287febec034028 /* DySolverConstraintsShared.h */, + FFFDec0340907febec034090 /* DySolverContact.h */, + FFFDec0340f87febec0340f8 /* DySolverContact4.h */, + FFFDec0341607febec034160 /* DySolverContactPF.h */, + FFFDec0341c87febec0341c8 /* DySolverContactPF4.h */, + FFFDec0342307febec034230 /* DySolverContext.h */, + FFFDec0342987febec034298 /* DySolverControl.h */, + FFFDec0343007febec034300 /* DySolverControlPF.h */, + FFFDec0343687febec034368 /* DySolverCore.h */, + FFFDec0343d07febec0343d0 /* DySolverExt.h */, + FFFDec0344387febec034438 /* DySpatial.h */, + FFFDec0344a07febec0344a0 /* DyThreadContext.h */, ); name = "Dynamics Internal Includes"; sourceTree = SOURCE_ROOT; }; - FFFB5c8281f07fb05c8281f0 /* LowLevelCloth */ = { + FFFBed443c607febed443c60 /* LowLevelCloth */ = { isa = PBXGroup; children = ( - FFFB5c8173707fb05c817370 /* include */, - FFFB5c8173987fb05c817398 /* src */, + FFFBed4465207febed446520 /* include */, + FFFBed4465487febed446548 /* src */, ); name = "LowLevelCloth"; sourceTree = "<group>"; }; - FFFB5c8173707fb05c817370 /* include */ = { + FFFBed4465207febed446520 /* include */ = { isa = PBXGroup; children = ( - FFFD5c819a607fb05c819a60 /* Cloth.h */, - FFFD5c819ac87fb05c819ac8 /* Fabric.h */, - FFFD5c819b307fb05c819b30 /* Factory.h */, - FFFD5c819b987fb05c819b98 /* PhaseConfig.h */, - FFFD5c819c007fb05c819c00 /* Range.h */, - FFFD5c819c687fb05c819c68 /* Solver.h */, - FFFD5c819cd07fb05c819cd0 /* Types.h */, + FFFDed4476407febed447640 /* Cloth.h */, + FFFDed4476a87febed4476a8 /* Fabric.h */, + FFFDed4477107febed447710 /* Factory.h */, + FFFDed4477787febed447778 /* PhaseConfig.h */, + FFFDed4477e07febed4477e0 /* Range.h */, + FFFDed4478487febed447848 /* Solver.h */, + FFFDed4478b07febed4478b0 /* Types.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB5c8173987fb05c817398 /* src */ = { + FFFBed4465487febed446548 /* src */ = { isa = PBXGroup; children = ( - FFFD5d011c007fb05d011c00 /* Allocator.h */, - FFFD5d011c687fb05d011c68 /* Array.h */, - FFFD5d011cd07fb05d011cd0 /* BoundingBox.h */, - FFFD5d011d387fb05d011d38 /* ClothBase.h */, - FFFD5d011da07fb05d011da0 /* ClothImpl.h */, - FFFD5d011e087fb05d011e08 /* IndexPair.h */, - FFFD5d011e707fb05d011e70 /* IterationState.h */, - FFFD5d011ed87fb05d011ed8 /* MovingAverage.h */, - FFFD5d011f407fb05d011f40 /* PointInterpolator.h */, - FFFD5d011fa87fb05d011fa8 /* Simd.h */, - FFFD5d0120107fb05d012010 /* StackAllocator.h */, - FFFD5d0120787fb05d012078 /* SwCloth.h */, - FFFD5d0120e07fb05d0120e0 /* SwClothData.h */, - FFFD5d0121487fb05d012148 /* SwCollision.h */, - FFFD5d0121b07fb05d0121b0 /* SwCollisionHelpers.h */, - FFFD5d0122187fb05d012218 /* SwFabric.h */, - FFFD5d0122807fb05d012280 /* SwFactory.h */, - FFFD5d0122e87fb05d0122e8 /* SwInterCollision.h */, - FFFD5d0123507fb05d012350 /* SwSelfCollision.h */, - FFFD5d0123b87fb05d0123b8 /* SwSolver.h */, - FFFD5d0124207fb05d012420 /* SwSolverKernel.h */, - FFFD5d0124887fb05d012488 /* TripletScheduler.h */, - FFFD5d0124f07fb05d0124f0 /* Vec4T.h */, - FFFD5d0125587fb05d012558 /* Allocator.cpp */, - FFFD5d0125c07fb05d0125c0 /* Factory.cpp */, - FFFD5d0126287fb05d012628 /* PhaseConfig.cpp */, - FFFD5d0126907fb05d012690 /* SwCloth.cpp */, - FFFD5d0126f87fb05d0126f8 /* SwClothData.cpp */, - FFFD5d0127607fb05d012760 /* SwCollision.cpp */, - FFFD5d0127c87fb05d0127c8 /* SwFabric.cpp */, - FFFD5d0128307fb05d012830 /* SwFactory.cpp */, - FFFD5d0128987fb05d012898 /* SwInterCollision.cpp */, - FFFD5d0129007fb05d012900 /* SwSelfCollision.cpp */, - FFFD5d0129687fb05d012968 /* SwSolver.cpp */, - FFFD5d0129d07fb05d0129d0 /* SwSolverKernel.cpp */, - FFFD5d012a387fb05d012a38 /* TripletScheduler.cpp */, + FFFDed822a007febed822a00 /* Allocator.h */, + FFFDed822a687febed822a68 /* Array.h */, + FFFDed822ad07febed822ad0 /* BoundingBox.h */, + FFFDed822b387febed822b38 /* ClothBase.h */, + FFFDed822ba07febed822ba0 /* ClothImpl.h */, + FFFDed822c087febed822c08 /* IndexPair.h */, + FFFDed822c707febed822c70 /* IterationState.h */, + FFFDed822cd87febed822cd8 /* MovingAverage.h */, + FFFDed822d407febed822d40 /* PointInterpolator.h */, + FFFDed822da87febed822da8 /* Simd.h */, + FFFDed822e107febed822e10 /* StackAllocator.h */, + FFFDed822e787febed822e78 /* SwCloth.h */, + FFFDed822ee07febed822ee0 /* SwClothData.h */, + FFFDed822f487febed822f48 /* SwCollision.h */, + FFFDed822fb07febed822fb0 /* SwCollisionHelpers.h */, + FFFDed8230187febed823018 /* SwFabric.h */, + FFFDed8230807febed823080 /* SwFactory.h */, + FFFDed8230e87febed8230e8 /* SwInterCollision.h */, + FFFDed8231507febed823150 /* SwSelfCollision.h */, + FFFDed8231b87febed8231b8 /* SwSolver.h */, + FFFDed8232207febed823220 /* SwSolverKernel.h */, + FFFDed8232887febed823288 /* TripletScheduler.h */, + FFFDed8232f07febed8232f0 /* Vec4T.h */, + FFFDed8233587febed823358 /* Allocator.cpp */, + FFFDed8233c07febed8233c0 /* Factory.cpp */, + FFFDed8234287febed823428 /* PhaseConfig.cpp */, + FFFDed8234907febed823490 /* SwCloth.cpp */, + FFFDed8234f87febed8234f8 /* SwClothData.cpp */, + FFFDed8235607febed823560 /* SwCollision.cpp */, + FFFDed8235c87febed8235c8 /* SwFabric.cpp */, + FFFDed8236307febed823630 /* SwFactory.cpp */, + FFFDed8236987febed823698 /* SwInterCollision.cpp */, + FFFDed8237007febed823700 /* SwSelfCollision.cpp */, + FFFDed8237687febed823768 /* SwSolver.cpp */, + FFFDed8237d07febed8237d0 /* SwSolverKernel.cpp */, + FFFDed8238387febed823838 /* TripletScheduler.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB5b322ac07fb05b322ac0 /* LowLevelParticles */ = { + FFFBed7001c07febed7001c0 /* LowLevelParticles */ = { isa = PBXGroup; children = ( - FFFB5b31e2707fb05b31e270 /* include */, - FFFB5b31e2987fb05b31e298 /* src */, + FFFBed7059907febed705990 /* include */, + FFFBed7059b87febed7059b8 /* src */, ); name = "LowLevelParticles"; sourceTree = "<group>"; }; - FFFB5b31e2707fb05b31e270 /* include */ = { + FFFBed7059907febed705990 /* include */ = { isa = PBXGroup; children = ( - FFFD5a9ae0007fb05a9ae000 /* PtBodyTransformVault.h */, - FFFD5a9ae0687fb05a9ae068 /* PtContext.h */, - FFFD5a9ae0d07fb05a9ae0d0 /* PtGridCellVector.h */, - FFFD5a9ae1387fb05a9ae138 /* PtParticle.h */, - FFFD5a9ae1a07fb05a9ae1a0 /* PtParticleContactManagerStream.h */, - FFFD5a9ae2087fb05a9ae208 /* PtParticleData.h */, - FFFD5a9ae2707fb05a9ae270 /* PtParticleShape.h */, - FFFD5a9ae2d87fb05a9ae2d8 /* PtParticleSystemCore.h */, - FFFD5a9ae3407fb05a9ae340 /* PtParticleSystemFlags.h */, - FFFD5a9ae3a87fb05a9ae3a8 /* PtParticleSystemSim.h */, + FFFDee02b0007febee02b000 /* PtBodyTransformVault.h */, + FFFDee02b0687febee02b068 /* PtContext.h */, + FFFDee02b0d07febee02b0d0 /* PtGridCellVector.h */, + FFFDee02b1387febee02b138 /* PtParticle.h */, + FFFDee02b1a07febee02b1a0 /* PtParticleContactManagerStream.h */, + FFFDee02b2087febee02b208 /* PtParticleData.h */, + FFFDee02b2707febee02b270 /* PtParticleShape.h */, + FFFDee02b2d87febee02b2d8 /* PtParticleSystemCore.h */, + FFFDee02b3407febee02b340 /* PtParticleSystemFlags.h */, + FFFDee02b3a87febee02b3a8 /* PtParticleSystemSim.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB5b31e2987fb05b31e298 /* src */ = { + FFFBed7059b87febed7059b8 /* src */ = { isa = PBXGroup; children = ( - FFFD5a9b76007fb05a9b7600 /* PtBatcher.h */, - FFFD5a9b76687fb05a9b7668 /* PtCollision.h */, - FFFD5a9b76d07fb05a9b76d0 /* PtCollisionData.h */, - FFFD5a9b77387fb05a9b7738 /* PtCollisionHelper.h */, - FFFD5a9b77a07fb05a9b77a0 /* PtCollisionMethods.h */, - FFFD5a9b78087fb05a9b7808 /* PtCollisionParameters.h */, - FFFD5a9b78707fb05a9b7870 /* PtConfig.h */, - FFFD5a9b78d87fb05a9b78d8 /* PtConstants.h */, - FFFD5a9b79407fb05a9b7940 /* PtContextCpu.h */, - FFFD5a9b79a87fb05a9b79a8 /* PtDynamicHelper.h */, - FFFD5a9b7a107fb05a9b7a10 /* PtDynamics.h */, - FFFD5a9b7a787fb05a9b7a78 /* PtDynamicsKernels.h */, - FFFD5a9b7ae07fb05a9b7ae0 /* PtDynamicsParameters.h */, - FFFD5a9b7b487fb05a9b7b48 /* PtDynamicsTempBuffers.h */, - FFFD5a9b7bb07fb05a9b7bb0 /* PtHeightFieldAabbTest.h */, - FFFD5a9b7c187fb05a9b7c18 /* PtPacketSections.h */, - FFFD5a9b7c807fb05a9b7c80 /* PtParticleCell.h */, - FFFD5a9b7ce87fb05a9b7ce8 /* PtParticleOpcodeCache.h */, - FFFD5a9b7d507fb05a9b7d50 /* PtParticleShapeCpu.h */, - FFFD5a9b7db87fb05a9b7db8 /* PtParticleSystemSimCpu.h */, - FFFD5a9b7e207fb05a9b7e20 /* PtSpatialHash.h */, - FFFD5a9b7e887fb05a9b7e88 /* PtSpatialHashHelper.h */, - FFFD5a9b7ef07fb05a9b7ef0 /* PtTwoWayData.h */, - FFFD5a9b7f587fb05a9b7f58 /* PtBatcher.cpp */, - FFFD5a9b7fc07fb05a9b7fc0 /* PtBodyTransformVault.cpp */, - FFFD5a9b80287fb05a9b8028 /* PtCollision.cpp */, - FFFD5a9b80907fb05a9b8090 /* PtCollisionBox.cpp */, - FFFD5a9b80f87fb05a9b80f8 /* PtCollisionCapsule.cpp */, - FFFD5a9b81607fb05a9b8160 /* PtCollisionConvex.cpp */, - FFFD5a9b81c87fb05a9b81c8 /* PtCollisionMesh.cpp */, - FFFD5a9b82307fb05a9b8230 /* PtCollisionPlane.cpp */, - FFFD5a9b82987fb05a9b8298 /* PtCollisionSphere.cpp */, - FFFD5a9b83007fb05a9b8300 /* PtContextCpu.cpp */, - FFFD5a9b83687fb05a9b8368 /* PtDynamics.cpp */, - FFFD5a9b83d07fb05a9b83d0 /* PtParticleData.cpp */, - FFFD5a9b84387fb05a9b8438 /* PtParticleShapeCpu.cpp */, - FFFD5a9b84a07fb05a9b84a0 /* PtParticleSystemSimCpu.cpp */, - FFFD5a9b85087fb05a9b8508 /* PtSpatialHash.cpp */, - FFFD5a9b85707fb05a9b8570 /* PtSpatialLocalHash.cpp */, + FFFDee0246007febee024600 /* PtBatcher.h */, + FFFDee0246687febee024668 /* PtCollision.h */, + FFFDee0246d07febee0246d0 /* PtCollisionData.h */, + FFFDee0247387febee024738 /* PtCollisionHelper.h */, + FFFDee0247a07febee0247a0 /* PtCollisionMethods.h */, + FFFDee0248087febee024808 /* PtCollisionParameters.h */, + FFFDee0248707febee024870 /* PtConfig.h */, + FFFDee0248d87febee0248d8 /* PtConstants.h */, + FFFDee0249407febee024940 /* PtContextCpu.h */, + FFFDee0249a87febee0249a8 /* PtDynamicHelper.h */, + FFFDee024a107febee024a10 /* PtDynamics.h */, + FFFDee024a787febee024a78 /* PtDynamicsKernels.h */, + FFFDee024ae07febee024ae0 /* PtDynamicsParameters.h */, + FFFDee024b487febee024b48 /* PtDynamicsTempBuffers.h */, + FFFDee024bb07febee024bb0 /* PtHeightFieldAabbTest.h */, + FFFDee024c187febee024c18 /* PtPacketSections.h */, + FFFDee024c807febee024c80 /* PtParticleCell.h */, + FFFDee024ce87febee024ce8 /* PtParticleOpcodeCache.h */, + FFFDee024d507febee024d50 /* PtParticleShapeCpu.h */, + FFFDee024db87febee024db8 /* PtParticleSystemSimCpu.h */, + FFFDee024e207febee024e20 /* PtSpatialHash.h */, + FFFDee024e887febee024e88 /* PtSpatialHashHelper.h */, + FFFDee024ef07febee024ef0 /* PtTwoWayData.h */, + FFFDee024f587febee024f58 /* PtBatcher.cpp */, + FFFDee024fc07febee024fc0 /* PtBodyTransformVault.cpp */, + FFFDee0250287febee025028 /* PtCollision.cpp */, + FFFDee0250907febee025090 /* PtCollisionBox.cpp */, + FFFDee0250f87febee0250f8 /* PtCollisionCapsule.cpp */, + FFFDee0251607febee025160 /* PtCollisionConvex.cpp */, + FFFDee0251c87febee0251c8 /* PtCollisionMesh.cpp */, + FFFDee0252307febee025230 /* PtCollisionPlane.cpp */, + FFFDee0252987febee025298 /* PtCollisionSphere.cpp */, + FFFDee0253007febee025300 /* PtContextCpu.cpp */, + FFFDee0253687febee025368 /* PtDynamics.cpp */, + FFFDee0253d07febee0253d0 /* PtParticleData.cpp */, + FFFDee0254387febee025438 /* PtParticleShapeCpu.cpp */, + FFFDee0254a07febee0254a0 /* PtParticleSystemSimCpu.cpp */, + FFFDee0255087febee025508 /* PtSpatialHash.cpp */, + FFFDee0255707febee025570 /* PtSpatialLocalHash.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB5c8302207fb05c830220 /* PxTask */ = { + FFFBed488fe07febed488fe0 /* PxTask */ = { isa = PBXGroup; children = ( - FFFB5c830bd07fb05c830bd0 /* include */, - FFFB5c830bf87fb05c830bf8 /* src */, + FFFBed45b7d07febed45b7d0 /* include */, + FFFBed45b7f87febed45b7f8 /* src */, ); name = "PxTask"; sourceTree = "<group>"; }; - FFFB5c830bd07fb05c830bd0 /* include */ = { + FFFBed45b7d07febed45b7d0 /* include */ = { isa = PBXGroup; children = ( - FFFD5c837a607fb05c837a60 /* PxCpuDispatcher.h */, - FFFD5c837ac87fb05c837ac8 /* PxGpuDispatcher.h */, - FFFD5c837b307fb05c837b30 /* PxGpuTask.h */, - FFFD5c837b987fb05c837b98 /* PxTask.h */, - FFFD5c837c007fb05c837c00 /* PxTaskDefine.h */, - FFFD5c837c687fb05c837c68 /* PxTaskManager.h */, + FFFDed45a9207febed45a920 /* PxCpuDispatcher.h */, + FFFDed45a9887febed45a988 /* PxGpuDispatcher.h */, + FFFDed45a9f07febed45a9f0 /* PxGpuTask.h */, + FFFDed45aa587febed45aa58 /* PxTask.h */, + FFFDed45aac07febed45aac0 /* PxTaskDefine.h */, + FFFDed45ab287febed45ab28 /* PxTaskManager.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB5c830bf87fb05c830bf8 /* src */ = { + FFFBed45b7f87febed45b7f8 /* src */ = { isa = PBXGroup; children = ( - FFFD5c8373c07fb05c8373c0 /* src/TaskManager.cpp */, + FFFDed45c4207febed45c420 /* src/TaskManager.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB5cb3a3f07fb05cb3a3f0 /* PsFastXml */ = { + FFFBebe97fd07febebe97fd0 /* PsFastXml */ = { isa = PBXGroup; children = ( - FFFB5cb35d407fb05cb35d40 /* include */, - FFFB5cb35d687fb05cb35d68 /* src */, + FFFBebe984e07febebe984e0 /* include */, + FFFBebe985087febebe98508 /* src */, ); name = "PsFastXml"; sourceTree = "<group>"; }; - FFFB5cb35d407fb05cb35d40 /* include */ = { + FFFBebe984e07febebe984e0 /* include */ = { isa = PBXGroup; children = ( - FFFD5cb35ed07fb05cb35ed0 /* PsFastXml.h */, + FFFDebe986707febebe98670 /* PsFastXml.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB5cb35d687fb05cb35d68 /* src */ = { + FFFBebe985087febebe98508 /* src */ = { isa = PBXGroup; children = ( - FFFD5cb35e607fb05cb35e60 /* PsFastXml.cpp */, + FFFDebe987707febebe98770 /* PsFastXml.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; @@ -4991,61 +4991,61 @@ /* End PBXGroup section */ /* Begin PBXNativeTarget section */ - FFFA5cb2e4807fb05cb2e480 /* PhysX */ = { + FFFAebe9b7407febebe9b740 /* PhysX */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF65cb2e4807fb05cb2e480 /* Build configuration list for PBXNativeTarget "PhysX" */; + buildConfigurationList = FFF6ebe9b7407febebe9b740 /* Build configuration list for PBXNativeTarget "PhysX" */; buildPhases = ( - FFF25cb2e4807fb05cb2e480, - FFF85cb2e4807fb05cb2e480, - FFFC5cb2e4807fb05cb2e480, + FFF2ebe9b7407febebe9b740, + FFF8ebe9b7407febebe9b740, + FFFCebe9b7407febebe9b740, ); buildRules = ( ); dependencies = ( - FFF45cb4fe207fb05cb4fe20, /* LowLevel */ - FFF45cb4fe807fb05cb4fe80, /* LowLevelAABB */ - FFF45cb531707fb05cb53170, /* LowLevelCloth */ - FFF45cb531107fb05cb53110, /* LowLevelDynamics */ - FFF45cb531d07fb05cb531d0, /* LowLevelParticles */ - FFF45cb52c107fb05cb52c10, /* PhysXCommon */ - FFF45cb2e7a07fb05cb2e7a0, /* PxFoundation */ - FFF45cb2e4507fb05cb2e450, /* PxPvdSDK */ - FFF45cb4f9507fb05cb4f950, /* PxTask */ - FFF45cb4f8c07fb05cb4f8c0, /* SceneQuery */ - FFF45cb4f9207fb05cb4f920, /* SimulationController */ + FFF4ebea6b307febebea6b30, /* LowLevel */ + FFF4ebea1da07febebea1da0, /* LowLevelAABB */ + FFF4ebea26107febebea2610, /* LowLevelCloth */ + FFF4ebea25b07febebea25b0, /* LowLevelDynamics */ + FFF4ebea41807febebea4180, /* LowLevelParticles */ + FFF4ebea6ad07febebea6ad0, /* PhysXCommon */ + FFF4ebe9ba607febebe9ba60, /* PxFoundation */ + FFF4ebe9b7107febebe9b710, /* PxPvdSDK */ + FFF4ebea7f307febebea7f30, /* PxTask */ + FFF4ebea41e07febebea41e0, /* SceneQuery */ + FFF4ebea7f007febebea7f00, /* SimulationController */ ); name = "PhysX"; productName = "PhysX"; - productReference = FFFD5cb2e4807fb05cb2e480 /* PhysX */; + productReference = FFFDebe9b7407febebe9b740 /* PhysX */; productType = "com.apple.product-type.library.static"; }; - FFFA5cb4fa707fb05cb4fa70 /* PhysXCharacterKinematic */ = { + FFFAebea7f407febebea7f40 /* PhysXCharacterKinematic */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF65cb4fa707fb05cb4fa70 /* Build configuration list for PBXNativeTarget "PhysXCharacterKinematic" */; + buildConfigurationList = FFF6ebea7f407febebea7f40 /* Build configuration list for PBXNativeTarget "PhysXCharacterKinematic" */; buildPhases = ( - FFF25cb4fa707fb05cb4fa70, - FFF85cb4fa707fb05cb4fa70, - FFFC5cb4fa707fb05cb4fa70, + FFF2ebea7f407febebea7f40, + FFF8ebea7f407febebea7f40, + FFFCebea7f407febebea7f40, ); buildRules = ( ); dependencies = ( - FFF45cb560007fb05cb56000, /* PhysXCommon */ - FFF45cb543d07fb05cb543d0, /* PhysXExtensions */ - FFF45cb54f207fb05cb54f20, /* PxFoundation */ + FFF4ebeaa4b07febebeaa4b0, /* PhysXCommon */ + FFF4ebea5a007febebea5a00, /* PhysXExtensions */ + FFF4ebeaaca07febebeaaca0, /* PxFoundation */ ); name = "PhysXCharacterKinematic"; productName = "PhysXCharacterKinematic"; - productReference = FFFD5cb4fa707fb05cb4fa70 /* PhysXCharacterKinematic */; + productReference = FFFDebea7f407febebea7f40 /* PhysXCharacterKinematic */; productType = "com.apple.product-type.library.static"; }; - FFFA5cb50f307fb05cb50f30 /* PhysXVehicle */ = { + FFFAebea52007febebea5200 /* PhysXVehicle */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF65cb50f307fb05cb50f30 /* Build configuration list for PBXNativeTarget "PhysXVehicle" */; + buildConfigurationList = FFF6ebea52007febebea5200 /* Build configuration list for PBXNativeTarget "PhysXVehicle" */; buildPhases = ( - FFF25cb50f307fb05cb50f30, - FFF85cb50f307fb05cb50f30, - FFFC5cb50f307fb05cb50f30, + FFF2ebea52007febebea5200, + FFF8ebea52007febebea5200, + FFFCebea52007febebea5200, ); buildRules = ( ); @@ -5053,34 +5053,34 @@ ); name = "PhysXVehicle"; productName = "PhysXVehicle"; - productReference = FFFD5cb50f307fb05cb50f30 /* PhysXVehicle */; + productReference = FFFDebea52007febebea5200 /* PhysXVehicle */; productType = "com.apple.product-type.library.static"; }; - FFFA5cb609d07fb05cb609d0 /* PhysXExtensions */ = { + FFFAebeb68107febebeb6810 /* PhysXExtensions */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF65cb609d07fb05cb609d0 /* Build configuration list for PBXNativeTarget "PhysXExtensions" */; + buildConfigurationList = FFF6ebeb68107febebeb6810 /* Build configuration list for PBXNativeTarget "PhysXExtensions" */; buildPhases = ( - FFF25cb609d07fb05cb609d0, - FFF85cb609d07fb05cb609d0, - FFFC5cb609d07fb05cb609d0, + FFF2ebeb68107febebeb6810, + FFF8ebeb68107febebeb6810, + FFFCebeb68107febebeb6810, ); buildRules = ( ); dependencies = ( - FFF45cb623b07fb05cb623b0, /* PsFastXml */ + FFF4ebeb5f107febebeb5f10, /* PsFastXml */ ); name = "PhysXExtensions"; productName = "PhysXExtensions"; - productReference = FFFD5cb609d07fb05cb609d0 /* PhysXExtensions */; + productReference = FFFDebeb68107febebeb6810 /* PhysXExtensions */; productType = "com.apple.product-type.library.static"; }; - FFFA5cb732c07fb05cb732c0 /* SceneQuery */ = { + FFFAebec79007febebec7900 /* SceneQuery */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF65cb732c07fb05cb732c0 /* Build configuration list for PBXNativeTarget "SceneQuery" */; + buildConfigurationList = FFF6ebec79007febebec7900 /* Build configuration list for PBXNativeTarget "SceneQuery" */; buildPhases = ( - FFF25cb732c07fb05cb732c0, - FFF85cb732c07fb05cb732c0, - FFFC5cb732c07fb05cb732c0, + FFF2ebec79007febebec7900, + FFF8ebec79007febebec7900, + FFFCebec79007febebec7900, ); buildRules = ( ); @@ -5088,16 +5088,16 @@ ); name = "SceneQuery"; productName = "SceneQuery"; - productReference = FFFD5cb732c07fb05cb732c0 /* SceneQuery */; + productReference = FFFDebec79007febebec7900 /* SceneQuery */; productType = "com.apple.product-type.library.static"; }; - FFFA5cb778e07fb05cb778e0 /* SimulationController */ = { + FFFAebecbe607febebecbe60 /* SimulationController */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF65cb778e07fb05cb778e0 /* Build configuration list for PBXNativeTarget "SimulationController" */; + buildConfigurationList = FFF6ebecbe607febebecbe60 /* Build configuration list for PBXNativeTarget "SimulationController" */; buildPhases = ( - FFF25cb778e07fb05cb778e0, - FFF85cb778e07fb05cb778e0, - FFFC5cb778e07fb05cb778e0, + FFF2ebecbe607febebecbe60, + FFF8ebecbe607febebecbe60, + FFFCebecbe607febebecbe60, ); buildRules = ( ); @@ -5105,54 +5105,54 @@ ); name = "SimulationController"; productName = "SimulationController"; - productReference = FFFD5cb778e07fb05cb778e0 /* SimulationController */; + productReference = FFFDebecbe607febebecbe60 /* SimulationController */; productType = "com.apple.product-type.library.static"; }; - FFFA5cb7c7007fb05cb7c700 /* PhysXCooking */ = { + FFFAebed04c07febebed04c0 /* PhysXCooking */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF65cb7c7007fb05cb7c700 /* Build configuration list for PBXNativeTarget "PhysXCooking" */; + buildConfigurationList = FFF6ebed04c07febebed04c0 /* Build configuration list for PBXNativeTarget "PhysXCooking" */; buildPhases = ( - FFF25cb7c7007fb05cb7c700, - FFF85cb7c7007fb05cb7c700, - FFFC5cb7c7007fb05cb7c700, + FFF2ebed04c07febebed04c0, + FFF8ebed04c07febebed04c0, + FFFCebed04c07febebed04c0, ); buildRules = ( ); dependencies = ( - FFF45cb872607fb05cb87260, /* PhysXCommon */ - FFF45cb802007fb05cb80200, /* PhysXExtensions */ - FFF45cb7eff07fb05cb7eff0, /* PxFoundation */ + FFF4ebedb0e07febebedb0e0, /* PhysXCommon */ + FFF4ebed60707febebed6070, /* PhysXExtensions */ + FFF4ebed65507febebed6550, /* PxFoundation */ ); name = "PhysXCooking"; productName = "PhysXCooking"; - productReference = FFFD5cb7c7007fb05cb7c700 /* PhysXCooking */; + productReference = FFFDebed04c07febebed04c0 /* PhysXCooking */; productType = "com.apple.product-type.library.static"; }; - FFFA5b2fb4e07fb05b2fb4e0 /* PhysXCommon */ = { + FFFAed146af07febed146af0 /* PhysXCommon */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF65b2fb4e07fb05b2fb4e0 /* Build configuration list for PBXNativeTarget "PhysXCommon" */; + buildConfigurationList = FFF6ed146af07febed146af0 /* Build configuration list for PBXNativeTarget "PhysXCommon" */; buildPhases = ( - FFF25b2fb4e07fb05b2fb4e0, - FFF85b2fb4e07fb05b2fb4e0, - FFFC5b2fb4e07fb05b2fb4e0, + FFF2ed146af07febed146af0, + FFF8ed146af07febed146af0, + FFFCed146af07febed146af0, ); buildRules = ( ); dependencies = ( - FFF45b2fa1707fb05b2fa170, /* PxFoundation */ + FFF4ed1416707febed141670, /* PxFoundation */ ); name = "PhysXCommon"; productName = "PhysXCommon"; - productReference = FFFD5b2fb4e07fb05b2fb4e0 /* PhysXCommon */; + productReference = FFFDed146af07febed146af0 /* PhysXCommon */; productType = "com.apple.product-type.library.static"; }; - FFFA5b080a507fb05b080a50 /* PxFoundation */ = { + FFFAed13dc907febed13dc90 /* PxFoundation */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF65b080a507fb05b080a50 /* Build configuration list for PBXNativeTarget "PxFoundation" */; + buildConfigurationList = FFF6ed13dc907febed13dc90 /* Build configuration list for PBXNativeTarget "PxFoundation" */; buildPhases = ( - FFF25b080a507fb05b080a50, - FFF85b080a507fb05b080a50, - FFFC5b080a507fb05b080a50, + FFF2ed13dc907febed13dc90, + FFF8ed13dc907febed13dc90, + FFFCed13dc907febed13dc90, ); buildRules = ( ); @@ -5160,34 +5160,34 @@ ); name = "PxFoundation"; productName = "PxFoundation"; - productReference = FFFD5b080a507fb05b080a50 /* PxFoundation */; + productReference = FFFDed13dc907febed13dc90 /* PxFoundation */; productType = "com.apple.product-type.library.static"; }; - FFFA5b4338707fb05b433870 /* PxPvdSDK */ = { + FFFAebc7a0b07febebc7a0b0 /* PxPvdSDK */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF65b4338707fb05b433870 /* Build configuration list for PBXNativeTarget "PxPvdSDK" */; + buildConfigurationList = FFF6ebc7a0b07febebc7a0b0 /* Build configuration list for PBXNativeTarget "PxPvdSDK" */; buildPhases = ( - FFF25b4338707fb05b433870, - FFF85b4338707fb05b433870, - FFFC5b4338707fb05b433870, + FFF2ebc7a0b07febebc7a0b0, + FFF8ebc7a0b07febebc7a0b0, + FFFCebc7a0b07febebc7a0b0, ); buildRules = ( ); dependencies = ( - FFF45b4340307fb05b434030, /* PxFoundation */ + FFF4ebc786807febebc78680, /* PxFoundation */ ); name = "PxPvdSDK"; productName = "PxPvdSDK"; - productReference = FFFD5b4338707fb05b433870 /* PxPvdSDK */; + productReference = FFFDebc7a0b07febebc7a0b0 /* PxPvdSDK */; productType = "com.apple.product-type.library.static"; }; - FFFA5b308fd07fb05b308fd0 /* LowLevel */ = { + FFFAebe3bcb07febebe3bcb0 /* LowLevel */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF65b308fd07fb05b308fd0 /* Build configuration list for PBXNativeTarget "LowLevel" */; + buildConfigurationList = FFF6ebe3bcb07febebe3bcb0 /* Build configuration list for PBXNativeTarget "LowLevel" */; buildPhases = ( - FFF25b308fd07fb05b308fd0, - FFF85b308fd07fb05b308fd0, - FFFC5b308fd07fb05b308fd0, + FFF2ebe3bcb07febebe3bcb0, + FFF8ebe3bcb07febebe3bcb0, + FFFCebe3bcb07febebe3bcb0, ); buildRules = ( ); @@ -5195,16 +5195,16 @@ ); name = "LowLevel"; productName = "LowLevel"; - productReference = FFFD5b308fd07fb05b308fd0 /* LowLevel */; + productReference = FFFDebe3bcb07febebe3bcb0 /* LowLevel */; productType = "com.apple.product-type.library.static"; }; - FFFA5c8058807fb05c805880 /* LowLevelAABB */ = { + FFFAed432ce07febed432ce0 /* LowLevelAABB */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF65c8058807fb05c805880 /* Build configuration list for PBXNativeTarget "LowLevelAABB" */; + buildConfigurationList = FFF6ed432ce07febed432ce0 /* Build configuration list for PBXNativeTarget "LowLevelAABB" */; buildPhases = ( - FFF25c8058807fb05c805880, - FFF85c8058807fb05c805880, - FFFC5c8058807fb05c805880, + FFF2ed432ce07febed432ce0, + FFF8ed432ce07febed432ce0, + FFFCed432ce07febed432ce0, ); buildRules = ( ); @@ -5212,16 +5212,16 @@ ); name = "LowLevelAABB"; productName = "LowLevelAABB"; - productReference = FFFD5c8058807fb05c805880 /* LowLevelAABB */; + productReference = FFFDed432ce07febed432ce0 /* LowLevelAABB */; productType = "com.apple.product-type.library.static"; }; - FFFA5b45afc07fb05b45afc0 /* LowLevelDynamics */ = { + FFFAebe6c9d07febebe6c9d0 /* LowLevelDynamics */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF65b45afc07fb05b45afc0 /* Build configuration list for PBXNativeTarget "LowLevelDynamics" */; + buildConfigurationList = FFF6ebe6c9d07febebe6c9d0 /* Build configuration list for PBXNativeTarget "LowLevelDynamics" */; buildPhases = ( - FFF25b45afc07fb05b45afc0, - FFF85b45afc07fb05b45afc0, - FFFC5b45afc07fb05b45afc0, + FFF2ebe6c9d07febebe6c9d0, + FFF8ebe6c9d07febebe6c9d0, + FFFCebe6c9d07febebe6c9d0, ); buildRules = ( ); @@ -5229,16 +5229,16 @@ ); name = "LowLevelDynamics"; productName = "LowLevelDynamics"; - productReference = FFFD5b45afc07fb05b45afc0 /* LowLevelDynamics */; + productReference = FFFDebe6c9d07febebe6c9d0 /* LowLevelDynamics */; productType = "com.apple.product-type.library.static"; }; - FFFA5c8281f07fb05c8281f0 /* LowLevelCloth */ = { + FFFAed443c607febed443c60 /* LowLevelCloth */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF65c8281f07fb05c8281f0 /* Build configuration list for PBXNativeTarget "LowLevelCloth" */; + buildConfigurationList = FFF6ed443c607febed443c60 /* Build configuration list for PBXNativeTarget "LowLevelCloth" */; buildPhases = ( - FFF25c8281f07fb05c8281f0, - FFF85c8281f07fb05c8281f0, - FFFC5c8281f07fb05c8281f0, + FFF2ed443c607febed443c60, + FFF8ed443c607febed443c60, + FFFCed443c607febed443c60, ); buildRules = ( ); @@ -5246,16 +5246,16 @@ ); name = "LowLevelCloth"; productName = "LowLevelCloth"; - productReference = FFFD5c8281f07fb05c8281f0 /* LowLevelCloth */; + productReference = FFFDed443c607febed443c60 /* LowLevelCloth */; productType = "com.apple.product-type.library.static"; }; - FFFA5b322ac07fb05b322ac0 /* LowLevelParticles */ = { + FFFAed7001c07febed7001c0 /* LowLevelParticles */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF65b322ac07fb05b322ac0 /* Build configuration list for PBXNativeTarget "LowLevelParticles" */; + buildConfigurationList = FFF6ed7001c07febed7001c0 /* Build configuration list for PBXNativeTarget "LowLevelParticles" */; buildPhases = ( - FFF25b322ac07fb05b322ac0, - FFF85b322ac07fb05b322ac0, - FFFC5b322ac07fb05b322ac0, + FFF2ed7001c07febed7001c0, + FFF8ed7001c07febed7001c0, + FFFCed7001c07febed7001c0, ); buildRules = ( ); @@ -5263,16 +5263,16 @@ ); name = "LowLevelParticles"; productName = "LowLevelParticles"; - productReference = FFFD5b322ac07fb05b322ac0 /* LowLevelParticles */; + productReference = FFFDed7001c07febed7001c0 /* LowLevelParticles */; productType = "com.apple.product-type.library.static"; }; - FFFA5c8302207fb05c830220 /* PxTask */ = { + FFFAed488fe07febed488fe0 /* PxTask */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF65c8302207fb05c830220 /* Build configuration list for PBXNativeTarget "PxTask" */; + buildConfigurationList = FFF6ed488fe07febed488fe0 /* Build configuration list for PBXNativeTarget "PxTask" */; buildPhases = ( - FFF25c8302207fb05c830220, - FFF85c8302207fb05c830220, - FFFC5c8302207fb05c830220, + FFF2ed488fe07febed488fe0, + FFF8ed488fe07febed488fe0, + FFFCed488fe07febed488fe0, ); buildRules = ( ); @@ -5280,16 +5280,16 @@ ); name = "PxTask"; productName = "PxTask"; - productReference = FFFD5c8302207fb05c830220 /* PxTask */; + productReference = FFFDed488fe07febed488fe0 /* PxTask */; productType = "com.apple.product-type.library.static"; }; - FFFA5cb3a3f07fb05cb3a3f0 /* PsFastXml */ = { + FFFAebe97fd07febebe97fd0 /* PsFastXml */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF65cb3a3f07fb05cb3a3f0 /* Build configuration list for PBXNativeTarget "PsFastXml" */; + buildConfigurationList = FFF6ebe97fd07febebe97fd0 /* Build configuration list for PBXNativeTarget "PsFastXml" */; buildPhases = ( - FFF25cb3a3f07fb05cb3a3f0, - FFF85cb3a3f07fb05cb3a3f0, - FFFC5cb3a3f07fb05cb3a3f0, + FFF2ebe97fd07febebe97fd0, + FFF8ebe97fd07febebe97fd0, + FFFCebe97fd07febebe97fd0, ); buildRules = ( ); @@ -5297,213 +5297,213 @@ ); name = "PsFastXml"; productName = "PsFastXml"; - productReference = FFFD5cb3a3f07fb05cb3a3f0 /* PsFastXml */; + productReference = FFFDebe97fd07febebe97fd0 /* PsFastXml */; productType = "com.apple.product-type.library.static"; }; /* End PBXNativeTarget section */ /* Begin XCConfigurationList section */ - FFF65cb2e4807fb05cb2e480 = { + FFF6ebe9b7407febebe9b740 = { isa = XCConfigurationList; buildConfigurations = ( - FFF75aa04a007fb05aa04a00, - FFF75aa050f07fb05aa050f0, - FFF75aa057e07fb05aa057e0, - FFF75aa05ed07fb05aa05ed0, + FFF7ec0626007febec062600, + FFF7ec062cf07febec062cf0, + FFF7ec0633e07febec0633e0, + FFF7ec063ad07febec063ad0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "release"; }; - FFF65cb4fa707fb05cb4fa70 = { + FFF6ebea7f407febebea7f40 = { isa = XCConfigurationList; buildConfigurations = ( - FFF75aa066007fb05aa06600, - FFF75aa06cf07fb05aa06cf0, - FFF75aa073e07fb05aa073e0, - FFF75aa07ad07fb05aa07ad0, + FFF7ec0642007febec064200, + FFF7ec0648f07febec0648f0, + FFF7ec064fe07febec064fe0, + FFF7ec0656d07febec0656d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF65cb50f307fb05cb50f30 = { + FFF6ebea52007febebea5200 = { isa = XCConfigurationList; buildConfigurations = ( - FFF75aa082007fb05aa08200, - FFF75aa088f07fb05aa088f0, - FFF75aa08fe07fb05aa08fe0, - FFF75aa096d07fb05aa096d0, + FFF7ec065e007febec065e00, + FFF7ec0664f07febec0664f0, + FFF7ec066be07febec066be0, + FFF7ec0672d07febec0672d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF65cb609d07fb05cb609d0 = { + FFF6ebeb68107febebeb6810 = { isa = XCConfigurationList; buildConfigurations = ( - FFF75aa09e007fb05aa09e00, - FFF75aa0a4f07fb05aa0a4f0, - FFF75aa0abe07fb05aa0abe0, - FFF75aa0b2d07fb05aa0b2d0, + FFF7ec067a007febec067a00, + FFF7ec0680f07febec0680f0, + FFF7ec0687e07febec0687e0, + FFF7ec068ed07febec068ed0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF65cb732c07fb05cb732c0 = { + FFF6ebec79007febebec7900 = { isa = XCConfigurationList; buildConfigurations = ( - FFF75aa0ba007fb05aa0ba00, - FFF75aa0c0f07fb05aa0c0f0, - FFF75aa0c7e07fb05aa0c7e0, - FFF75aa0ced07fb05aa0ced0, + FFF7ec0696007febec069600, + FFF7ec069cf07febec069cf0, + FFF7ec06a3e07febec06a3e0, + FFF7ec06aad07febec06aad0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF65cb778e07fb05cb778e0 = { + FFF6ebecbe607febebecbe60 = { isa = XCConfigurationList; buildConfigurations = ( - FFF75aa0d6007fb05aa0d600, - FFF75aa0dcf07fb05aa0dcf0, - FFF75aa0e3e07fb05aa0e3e0, - FFF75aa0ead07fb05aa0ead0, + FFF7ec06b2007febec06b200, + FFF7ec06b8f07febec06b8f0, + FFF7ec06bfe07febec06bfe0, + FFF7ec06c6d07febec06c6d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF65cb7c7007fb05cb7c700 = { + FFF6ebed04c07febebed04c0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF75aa0f2007fb05aa0f200, - FFF75aa0f8f07fb05aa0f8f0, - FFF75aa0ffe07fb05aa0ffe0, - FFF75aa106d07fb05aa106d0, + FFF7ec06ce007febec06ce00, + FFF7ec06d4f07febec06d4f0, + FFF7ec06dbe07febec06dbe0, + FFF7ec06e2d07febec06e2d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "release"; }; - FFF65b2fb4e07fb05b2fb4e0 = { + FFF6ed146af07febed146af0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF75b8110007fb05b811000, - FFF75b8116f07fb05b8116f0, - FFF75b811de07fb05b811de0, - FFF75b8124d07fb05b8124d0, + FFF7ed8110007febed811000, + FFF7ed8116f07febed8116f0, + FFF7ed811de07febed811de0, + FFF7ed8124d07febed8124d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "release"; }; - FFF65b080a507fb05b080a50 = { + FFF6ed13dc907febed13dc90 = { isa = XCConfigurationList; buildConfigurations = ( - FFF75a97f0007fb05a97f000, - FFF75a97f6f07fb05a97f6f0, - FFF75a97fde07fb05a97fde0, - FFF75a9804d07fb05a9804d0, + FFF7ec96da007febec96da00, + FFF7ec96e0f07febec96e0f0, + FFF7ec96e7e07febec96e7e0, + FFF7ec96eed07febec96eed0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF65b4338707fb05b433870 = { + FFF6ebc7a0b07febebc7a0b0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF75b81ca007fb05b81ca00, - FFF75b81d0f07fb05b81d0f0, - FFF75b81d7e07fb05b81d7e0, - FFF75b81ded07fb05b81ded0, + FFF7ec0234007febec023400, + FFF7ec023af07febec023af0, + FFF7ec0241e07febec0241e0, + FFF7ec0248d07febec0248d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF65b308fd07fb05b308fd0 = { + FFF6ebe3bcb07febebe3bcb0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF75a9af6007fb05a9af600, - FFF75a9afcf07fb05a9afcf0, - FFF75a9b03e07fb05a9b03e0, - FFF75a9b0ad07fb05a9b0ad0, + FFF7ec02ba007febec02ba00, + FFF7ec02c0f07febec02c0f0, + FFF7ec02c7e07febec02c7e0, + FFF7ec02ced07febec02ced0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF65c8058807fb05c805880 = { + FFF6ed432ce07febed432ce0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF75d009c007fb05d009c00, - FFF75d00a2f07fb05d00a2f0, - FFF75d00a9e07fb05d00a9e0, - FFF75d00b0d07fb05d00b0d0, + FFF7ed81a6007febed81a600, + FFF7ed81acf07febed81acf0, + FFF7ed81b3e07febed81b3e0, + FFF7ed81bad07febed81bad0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF65b45afc07fb05b45afc0 = { + FFF6ebe6c9d07febebe6c9d0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF75b82aa007fb05b82aa00, - FFF75b82b0f07fb05b82b0f0, - FFF75b82b7e07fb05b82b7e0, - FFF75b82bed07fb05b82bed0, + FFF7ec0350007febec035000, + FFF7ec0356f07febec0356f0, + FFF7ec035de07febec035de0, + FFF7ec0364d07febec0364d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF65c8281f07fb05c8281f0 = { + FFF6ed443c607febed443c60 = { isa = XCConfigurationList; buildConfigurations = ( - FFF75d0136007fb05d013600, - FFF75d013cf07fb05d013cf0, - FFF75d0143e07fb05d0143e0, - FFF75d014ad07fb05d014ad0, + FFF7ed8244007febed824400, + FFF7ed824af07febed824af0, + FFF7ed8251e07febed8251e0, + FFF7ed8258d07febed8258d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF65b322ac07fb05b322ac0 = { + FFF6ed7001c07febed7001c0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF75a9b90007fb05a9b9000, - FFF75a9b96f07fb05a9b96f0, - FFF75a9b9de07fb05a9b9de0, - FFF75a9ba4d07fb05a9ba4d0, + FFF7ee0260007febee026000, + FFF7ee0266f07febee0266f0, + FFF7ee026de07febee026de0, + FFF7ee0274d07febee0274d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF65c8302207fb05c830220 = { + FFF6ed488fe07febed488fe0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF75d01ac007fb05d01ac00, - FFF75d01b2f07fb05d01b2f0, - FFF75d01b9e07fb05d01b9e0, - FFF75d01c0d07fb05d01c0d0, + FFF7ed82bc007febed82bc00, + FFF7ed82c2f07febed82c2f0, + FFF7ed82c9e07febed82c9e0, + FFF7ed82d0d07febed82d0d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF65cb3a3f07fb05cb3a3f0 = { + FFF6ebe97fd07febebe97fd0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF75a9df0007fb05a9df000, - FFF75a9df6f07fb05a9df6f0, - FFF75a9dfde07fb05a9dfde0, - FFF75a9e04d07fb05a9e04d0, + FFF7ec03c2007febec03c200, + FFF7ec03c8f07febec03c8f0, + FFF7ec03cfe07febec03cfe0, + FFF7ec03d6d07febec03d6d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF65a4828f07fb05a4828f0 = { + FFF6ebf0fa507febebf0fa50 = { isa = XCConfigurationList; buildConfigurations = ( - FFF35aa04a007fb05aa04a00 /* release */, - FFF35aa050f07fb05aa050f0 /* debug */, - FFF35aa057e07fb05aa057e0 /* checked */, - FFF35aa05ed07fb05aa05ed0 /* profile */, + FFF3ec0626007febec062600 /* release */, + FFF3ec062cf07febec062cf0 /* debug */, + FFF3ec0633e07febec0633e0 /* checked */, + FFF3ec063ad07febec063ad0 /* profile */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "release"; }; /* End XCConfigurationList section */ /* Begin XCBuildConfiguration section */ - FFF75aa04a007fb05aa04a00 /* release */ = { + FFF7ec0626007febec062600 /* 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++"; @@ -5519,7 +5519,7 @@ "-lLowLevel", "-lLowLevelAABB", "-lLowLevelCloth", "-lLowLevelDynamics", "-lLowLevelParticles", "-lPhysX3Common", "-lPxFoundation", "-lPxPvdSDK", "-lPxTask", "-lSceneQuery", "-lSimulationController", ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../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/particles", "../../../Include/cloth", "../../../Include", "../../Common/src", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../LowLevel/API/include", "../../LowLevel/software/include", "../../LowLevel/common/include/pipeline", "../../LowLevelAABB/include", "../../LowLevelDynamics/include", "../../LowLevelDynamics/src", "../../LowLevelParticles/include", "../../PhysX/src", "../../PhysX/src/buffering", "../../PhysX/src/particles", "../../PhysX/src/cloth", "../../SimulationController/include", "../../SimulationController/src", "../../SimulationController/src/particles", "../../PhysXCooking/src", "../../PhysXCooking/src/mesh", "../../PhysXCooking/src/convex", "../../SceneQuery/include", "../../PhysXMetaData/core/include", @@ -5534,7 +5534,7 @@ }; name = "release"; }; - FFF75aa050f07fb05aa050f0 /* debug */ = { + FFF7ec062cf07febec062cf0 /* 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++"; @@ -5550,7 +5550,7 @@ "-lLowLevelDEBUG", "-lLowLevelAABBDEBUG", "-lLowLevelClothDEBUG", "-lLowLevelDynamicsDEBUG", "-lLowLevelParticlesDEBUG", "-lPhysX3CommonDEBUG", "-lPxFoundationDEBUG", "-lPxPvdSDKDEBUG", "-lPxTaskDEBUG", "-lSceneQueryDEBUG", "-lSimulationControllerDEBUG", ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O0", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0", ); HEADER_SEARCH_PATHS = ( "../../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/particles", "../../../Include/cloth", "../../../Include", "../../Common/src", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../LowLevel/API/include", "../../LowLevel/software/include", "../../LowLevel/common/include/pipeline", "../../LowLevelAABB/include", "../../LowLevelDynamics/include", "../../LowLevelDynamics/src", "../../LowLevelParticles/include", "../../PhysX/src", "../../PhysX/src/buffering", "../../PhysX/src/particles", "../../PhysX/src/cloth", "../../SimulationController/include", "../../SimulationController/src", "../../SimulationController/src/particles", "../../PhysXCooking/src", "../../PhysXCooking/src/mesh", "../../PhysXCooking/src/convex", "../../SceneQuery/include", "../../PhysXMetaData/core/include", @@ -5565,7 +5565,7 @@ }; name = "debug"; }; - FFF75aa057e07fb05aa057e0 /* checked */ = { + FFF7ec0633e07febec0633e0 /* 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++"; @@ -5581,7 +5581,7 @@ "-lLowLevelCHECKED", "-lLowLevelAABBCHECKED", "-lLowLevelClothCHECKED", "-lLowLevelDynamicsCHECKED", "-lLowLevelParticlesCHECKED", "-lPhysX3CommonCHECKED", "-lPxFoundationCHECKED", "-lPxPvdSDKCHECKED", "-lPxTaskCHECKED", "-lSceneQueryCHECKED", "-lSimulationControllerCHECKED", ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../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/particles", "../../../Include/cloth", "../../../Include", "../../Common/src", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../LowLevel/API/include", "../../LowLevel/software/include", "../../LowLevel/common/include/pipeline", "../../LowLevelAABB/include", "../../LowLevelDynamics/include", "../../LowLevelDynamics/src", "../../LowLevelParticles/include", "../../PhysX/src", "../../PhysX/src/buffering", "../../PhysX/src/particles", "../../PhysX/src/cloth", "../../SimulationController/include", "../../SimulationController/src", "../../SimulationController/src/particles", "../../PhysXCooking/src", "../../PhysXCooking/src/mesh", "../../PhysXCooking/src/convex", "../../SceneQuery/include", "../../PhysXMetaData/core/include", @@ -5596,7 +5596,7 @@ }; name = "checked"; }; - FFF75aa05ed07fb05aa05ed0 /* profile */ = { + FFF7ec063ad07febec063ad0 /* 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++"; @@ -5612,7 +5612,7 @@ "-lLowLevelPROFILE", "-lLowLevelAABBPROFILE", "-lLowLevelClothPROFILE", "-lLowLevelDynamicsPROFILE", "-lLowLevelParticlesPROFILE", "-lPhysX3CommonPROFILE", "-lPxFoundationPROFILE", "-lPxPvdSDKPROFILE", "-lPxTaskPROFILE", "-lSceneQueryPROFILE", "-lSimulationControllerPROFILE", ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../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/particles", "../../../Include/cloth", "../../../Include", "../../Common/src", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../LowLevel/API/include", "../../LowLevel/software/include", "../../LowLevel/common/include/pipeline", "../../LowLevelAABB/include", "../../LowLevelDynamics/include", "../../LowLevelDynamics/src", "../../LowLevelParticles/include", "../../PhysX/src", "../../PhysX/src/buffering", "../../PhysX/src/particles", "../../PhysX/src/cloth", "../../SimulationController/include", "../../SimulationController/src", "../../SimulationController/src/particles", "../../PhysXCooking/src", "../../PhysXCooking/src/mesh", "../../PhysXCooking/src/convex", "../../SceneQuery/include", "../../PhysXMetaData/core/include", @@ -5627,7 +5627,7 @@ }; name = "profile"; }; - FFF75aa066007fb05aa06600 /* debug */ = { + FFF7ec0642007febec064200 /* 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++"; @@ -5643,7 +5643,7 @@ "-lPhysX3CommonDEBUG", "-lPhysX3ExtensionsDEBUG", "-lPxFoundationDEBUG", ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O0", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/characterkinematic", "../../../Include/common", "../../../Include/geometry", "../../../Include/extensions", "../../../Include", "../../GeomUtils/headers", "../../Common/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", @@ -5658,7 +5658,7 @@ }; name = "debug"; }; - FFF75aa06cf07fb05aa06cf0 /* checked */ = { + FFF7ec0648f07febec0648f0 /* 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++"; @@ -5674,7 +5674,7 @@ "-lPhysX3CommonCHECKED", "-lPhysX3ExtensionsCHECKED", "-lPxFoundationCHECKED", ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/characterkinematic", "../../../Include/common", "../../../Include/geometry", "../../../Include/extensions", "../../../Include", "../../GeomUtils/headers", "../../Common/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", @@ -5689,7 +5689,7 @@ }; name = "checked"; }; - FFF75aa073e07fb05aa073e0 /* profile */ = { + FFF7ec064fe07febec064fe0 /* 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++"; @@ -5705,7 +5705,7 @@ "-lPhysX3CommonPROFILE", "-lPhysX3ExtensionsPROFILE", "-lPxFoundationPROFILE", ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/characterkinematic", "../../../Include/common", "../../../Include/geometry", "../../../Include/extensions", "../../../Include", "../../GeomUtils/headers", "../../Common/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", @@ -5720,7 +5720,7 @@ }; name = "profile"; }; - FFF75aa07ad07fb05aa07ad0 /* release */ = { + FFF7ec0656d07febec0656d0 /* 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++"; @@ -5736,7 +5736,7 @@ "-lPhysX3Common", "-lPhysX3Extensions", "-lPxFoundation", ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/characterkinematic", "../../../Include/common", "../../../Include/geometry", "../../../Include/extensions", "../../../Include", "../../GeomUtils/headers", "../../Common/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", @@ -5751,7 +5751,7 @@ }; name = "release"; }; - FFF75aa082007fb05aa08200 /* debug */ = { + FFF7ec065e007febec065e00 /* 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++"; @@ -5767,7 +5767,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O0", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/vehicle", "../../../Include/common", "../../../Include/geometry", "../../../Include/extensions", "../../../Include/cloth", "../../../Include", "../../../Include/pvd", "../../../Include/physxprofilesdk", "../../Common/src", "../../PhysXVehicle/src", "../../PhysXMetaData/extensions/include", "../../PhysXExtensions/src/serialization/Xml", "../../PhysXMetaData/core/include", "../../PhysXVehicle/src/PhysXMetaData/include", "../../PvdSDK/src", @@ -5782,7 +5782,7 @@ }; name = "debug"; }; - FFF75aa088f07fb05aa088f0 /* checked */ = { + FFF7ec0664f07febec0664f0 /* 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++"; @@ -5798,7 +5798,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/vehicle", "../../../Include/common", "../../../Include/geometry", "../../../Include/extensions", "../../../Include/cloth", "../../../Include", "../../../Include/pvd", "../../../Include/physxprofilesdk", "../../Common/src", "../../PhysXVehicle/src", "../../PhysXMetaData/extensions/include", "../../PhysXExtensions/src/serialization/Xml", "../../PhysXMetaData/core/include", "../../PhysXVehicle/src/PhysXMetaData/include", "../../PvdSDK/src", @@ -5813,7 +5813,7 @@ }; name = "checked"; }; - FFF75aa08fe07fb05aa08fe0 /* profile */ = { + FFF7ec066be07febec066be0 /* 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++"; @@ -5829,7 +5829,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/vehicle", "../../../Include/common", "../../../Include/geometry", "../../../Include/extensions", "../../../Include/cloth", "../../../Include", "../../../Include/pvd", "../../../Include/physxprofilesdk", "../../Common/src", "../../PhysXVehicle/src", "../../PhysXMetaData/extensions/include", "../../PhysXExtensions/src/serialization/Xml", "../../PhysXMetaData/core/include", "../../PhysXVehicle/src/PhysXMetaData/include", "../../PvdSDK/src", @@ -5844,7 +5844,7 @@ }; name = "profile"; }; - FFF75aa096d07fb05aa096d0 /* release */ = { + FFF7ec0672d07febec0672d0 /* 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++"; @@ -5860,7 +5860,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/vehicle", "../../../Include/common", "../../../Include/geometry", "../../../Include/extensions", "../../../Include/cloth", "../../../Include", "../../../Include/pvd", "../../../Include/physxprofilesdk", "../../Common/src", "../../PhysXVehicle/src", "../../PhysXMetaData/extensions/include", "../../PhysXExtensions/src/serialization/Xml", "../../PhysXMetaData/core/include", "../../PhysXVehicle/src/PhysXMetaData/include", "../../PvdSDK/src", @@ -5875,7 +5875,7 @@ }; name = "release"; }; - FFF75aa09e007fb05aa09e00 /* debug */ = { + FFF7ec067a007febec067a00 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -5884,14 +5884,14 @@ ALWAYS_SEARCH_USER_PATHS = NO; USE_HEADERMAP = NO; GCC_PREPROCESSOR_DEFINITIONS = ( - "PX_BUILD_NUMBER=21749494", "PX_PHYSX_STATIC_LIB", "_DEBUG", "PX_DEBUG=1", "PX_CHECKED=1", "PX_SUPPORT_PVD=1", + "PX_BUILD_NUMBER=22017532", "PX_PHYSX_STATIC_LIB", "_DEBUG", "PX_DEBUG=1", "PX_CHECKED=1", "PX_SUPPORT_PVD=1", ); GCC_ENABLE_EXCEPTIONS = NO; OTHER_LDFLAGS = ( "-lPsFastXmlDEBUG", ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O0", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0", ); HEADER_SEARCH_PATHS = ( "../../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", @@ -5906,7 +5906,7 @@ }; name = "debug"; }; - FFF75aa0a4f07fb05aa0a4f0 /* checked */ = { + FFF7ec0680f07febec0680f0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -5915,14 +5915,14 @@ ALWAYS_SEARCH_USER_PATHS = NO; USE_HEADERMAP = NO; GCC_PREPROCESSOR_DEFINITIONS = ( - "PX_BUILD_NUMBER=21749494", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_CHECKED=1", "PX_SUPPORT_PVD=1", + "PX_BUILD_NUMBER=22017532", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_CHECKED=1", "PX_SUPPORT_PVD=1", ); GCC_ENABLE_EXCEPTIONS = NO; OTHER_LDFLAGS = ( "-lPsFastXmlCHECKED", ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../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", @@ -5937,7 +5937,7 @@ }; name = "checked"; }; - FFF75aa0abe07fb05aa0abe0 /* profile */ = { + FFF7ec0687e07febec0687e0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -5946,14 +5946,14 @@ ALWAYS_SEARCH_USER_PATHS = NO; USE_HEADERMAP = NO; GCC_PREPROCESSOR_DEFINITIONS = ( - "PX_BUILD_NUMBER=21749494", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_PROFILE=1", "PX_SUPPORT_PVD=1", + "PX_BUILD_NUMBER=22017532", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_PROFILE=1", "PX_SUPPORT_PVD=1", ); GCC_ENABLE_EXCEPTIONS = NO; OTHER_LDFLAGS = ( "-lPsFastXmlPROFILE", ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../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", @@ -5968,7 +5968,7 @@ }; name = "profile"; }; - FFF75aa0b2d07fb05aa0b2d0 /* release */ = { + FFF7ec068ed07febec068ed0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -5977,14 +5977,14 @@ ALWAYS_SEARCH_USER_PATHS = NO; USE_HEADERMAP = NO; GCC_PREPROCESSOR_DEFINITIONS = ( - "PX_BUILD_NUMBER=21749494", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_SUPPORT_PVD=0", + "PX_BUILD_NUMBER=22017532", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_SUPPORT_PVD=0", ); GCC_ENABLE_EXCEPTIONS = NO; OTHER_LDFLAGS = ( "-lPsFastXml", ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../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", @@ -5999,7 +5999,7 @@ }; name = "release"; }; - FFF75aa0ba007fb05aa0ba00 /* debug */ = { + FFF7ec0696007febec069600 /* 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++"; @@ -6015,7 +6015,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O0", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0", ); HEADER_SEARCH_PATHS = ( "../../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", "../../Common/src", "../../Common/src/unix", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../SceneQuery/include", "../../SimulationController/include", "../../LowLevel/API/include", "../../PhysX/src", "../../PhysX/src/buffering", @@ -6030,7 +6030,7 @@ }; name = "debug"; }; - FFF75aa0c0f07fb05aa0c0f0 /* checked */ = { + FFF7ec069cf07febec069cf0 /* 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++"; @@ -6046,7 +6046,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../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", "../../Common/src", "../../Common/src/unix", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../SceneQuery/include", "../../SimulationController/include", "../../LowLevel/API/include", "../../PhysX/src", "../../PhysX/src/buffering", @@ -6061,7 +6061,7 @@ }; name = "checked"; }; - FFF75aa0c7e07fb05aa0c7e0 /* profile */ = { + FFF7ec06a3e07febec06a3e0 /* 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++"; @@ -6077,7 +6077,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../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", "../../Common/src", "../../Common/src/unix", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../SceneQuery/include", "../../SimulationController/include", "../../LowLevel/API/include", "../../PhysX/src", "../../PhysX/src/buffering", @@ -6092,7 +6092,7 @@ }; name = "profile"; }; - FFF75aa0ced07fb05aa0ced0 /* release */ = { + FFF7ec06aad07febec06aad0 /* 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++"; @@ -6108,7 +6108,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../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", "../../Common/src", "../../Common/src/unix", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../SceneQuery/include", "../../SimulationController/include", "../../LowLevel/API/include", "../../PhysX/src", "../../PhysX/src/buffering", @@ -6123,7 +6123,7 @@ }; name = "release"; }; - FFF75aa0d6007fb05aa0d600 /* debug */ = { + FFF7ec06b2007febec06b200 /* 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++"; @@ -6139,7 +6139,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O0", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0", ); HEADER_SEARCH_PATHS = ( "../../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/particles", "../../../Include/cloth", "../../../Include", "../../Common/src", "../../Common/src/unix", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../SimulationController/include", "../../SimulationController/src", "../../SimulationController/src/particles", "../../SimulationController/src/cloth", "../../LowLevel/unix/include", "../../LowLevel/API/include", "../../LowLevel/software/include", "../../LowLevel/common/include/math", "../../LowLevel/common/include/utils", "../../LowLevel/common/include/collision", "../../LowLevel/common/include/pipeline", "../../LowLevelCloth/include", "../../LowLevelAABB/include", "../../LowLevelDynamics/include", "../../LowLevelParticles/include", @@ -6154,7 +6154,7 @@ }; name = "debug"; }; - FFF75aa0dcf07fb05aa0dcf0 /* checked */ = { + FFF7ec06b8f07febec06b8f0 /* 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++"; @@ -6170,7 +6170,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../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/particles", "../../../Include/cloth", "../../../Include", "../../Common/src", "../../Common/src/unix", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../SimulationController/include", "../../SimulationController/src", "../../SimulationController/src/particles", "../../SimulationController/src/cloth", "../../LowLevel/unix/include", "../../LowLevel/API/include", "../../LowLevel/software/include", "../../LowLevel/common/include/math", "../../LowLevel/common/include/utils", "../../LowLevel/common/include/collision", "../../LowLevel/common/include/pipeline", "../../LowLevelCloth/include", "../../LowLevelAABB/include", "../../LowLevelDynamics/include", "../../LowLevelParticles/include", @@ -6185,7 +6185,7 @@ }; name = "checked"; }; - FFF75aa0e3e07fb05aa0e3e0 /* profile */ = { + FFF7ec06bfe07febec06bfe0 /* 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++"; @@ -6201,7 +6201,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../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/particles", "../../../Include/cloth", "../../../Include", "../../Common/src", "../../Common/src/unix", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../SimulationController/include", "../../SimulationController/src", "../../SimulationController/src/particles", "../../SimulationController/src/cloth", "../../LowLevel/unix/include", "../../LowLevel/API/include", "../../LowLevel/software/include", "../../LowLevel/common/include/math", "../../LowLevel/common/include/utils", "../../LowLevel/common/include/collision", "../../LowLevel/common/include/pipeline", "../../LowLevelCloth/include", "../../LowLevelAABB/include", "../../LowLevelDynamics/include", "../../LowLevelParticles/include", @@ -6216,7 +6216,7 @@ }; name = "profile"; }; - FFF75aa0ead07fb05aa0ead0 /* release */ = { + FFF7ec06c6d07febec06c6d0 /* 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++"; @@ -6232,7 +6232,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../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/particles", "../../../Include/cloth", "../../../Include", "../../Common/src", "../../Common/src/unix", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../SimulationController/include", "../../SimulationController/src", "../../SimulationController/src/particles", "../../SimulationController/src/cloth", "../../LowLevel/unix/include", "../../LowLevel/API/include", "../../LowLevel/software/include", "../../LowLevel/common/include/math", "../../LowLevel/common/include/utils", "../../LowLevel/common/include/collision", "../../LowLevel/common/include/pipeline", "../../LowLevelCloth/include", "../../LowLevelAABB/include", "../../LowLevelDynamics/include", "../../LowLevelParticles/include", @@ -6247,7 +6247,7 @@ }; name = "release"; }; - FFF75aa0f2007fb05aa0f200 /* release */ = { + FFF7ec06ce007febec06ce00 /* 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++"; @@ -6263,7 +6263,7 @@ "-lPhysX3Common", "-lPhysX3Extensions", "-lPxFoundation", ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../../Include/cloth", "../../../Include/cooking", "../../../Include", "../../Common/src", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../PhysXCooking/src", "../../PhysXCooking/src/mesh", "../../PhysXCooking/src/convex", "../../PhysXExtensions/src", "../../PhysXGpu/include", @@ -6278,7 +6278,7 @@ }; name = "release"; }; - FFF75aa0f8f07fb05aa0f8f0 /* debug */ = { + FFF7ec06d4f07febec06d4f0 /* 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++"; @@ -6294,7 +6294,7 @@ "-lPhysX3CommonDEBUG", "-lPhysX3ExtensionsDEBUG", "-lPxFoundationDEBUG", ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O0", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../../Include/cloth", "../../../Include/cooking", "../../../Include", "../../Common/src", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../PhysXCooking/src", "../../PhysXCooking/src/mesh", "../../PhysXCooking/src/convex", "../../PhysXExtensions/src", "../../PhysXGpu/include", @@ -6309,7 +6309,7 @@ }; name = "debug"; }; - FFF75aa0ffe07fb05aa0ffe0 /* checked */ = { + FFF7ec06dbe07febec06dbe0 /* 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++"; @@ -6325,7 +6325,7 @@ "-lPhysX3CommonCHECKED", "-lPhysX3ExtensionsCHECKED", "-lPxFoundationCHECKED", ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../../Include/cloth", "../../../Include/cooking", "../../../Include", "../../Common/src", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../PhysXCooking/src", "../../PhysXCooking/src/mesh", "../../PhysXCooking/src/convex", "../../PhysXExtensions/src", "../../PhysXGpu/include", @@ -6340,7 +6340,7 @@ }; name = "checked"; }; - FFF75aa106d07fb05aa106d0 /* profile */ = { + FFF7ec06e2d07febec06e2d0 /* 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++"; @@ -6356,7 +6356,7 @@ "-lPhysX3CommonPROFILE", "-lPhysX3ExtensionsPROFILE", "-lPxFoundationPROFILE", ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../../Include/cloth", "../../../Include/cooking", "../../../Include", "../../Common/src", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../PhysXCooking/src", "../../PhysXCooking/src/mesh", "../../PhysXCooking/src/convex", "../../PhysXExtensions/src", "../../PhysXGpu/include", @@ -6371,7 +6371,7 @@ }; name = "profile"; }; - FFF75b8110007fb05b811000 /* release */ = { + FFF7ed8110007febed811000 /* 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++"; @@ -6387,7 +6387,7 @@ "-lPxFoundation", ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include", "../../Common/src", "../../Common/src/unix", "../../PhysXProfile/include", "../../PhysXProfile/src", "../../PhysXGpu/include", "../../../Include/geometry", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../../Include/GeomUtils", @@ -6402,7 +6402,7 @@ }; name = "release"; }; - FFF75b8116f07fb05b8116f0 /* debug */ = { + FFF7ed8116f07febed8116f0 /* 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++"; @@ -6418,7 +6418,7 @@ "-lPxFoundationDEBUG", ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O0", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include", "../../Common/src", "../../Common/src/unix", "../../PhysXProfile/include", "../../PhysXProfile/src", "../../PhysXGpu/include", "../../../Include/geometry", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../../Include/GeomUtils", @@ -6433,7 +6433,7 @@ }; name = "debug"; }; - FFF75b811de07fb05b811de0 /* checked */ = { + FFF7ed811de07febed811de0 /* 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++"; @@ -6449,7 +6449,7 @@ "-lPxFoundationCHECKED", ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include", "../../Common/src", "../../Common/src/unix", "../../PhysXProfile/include", "../../PhysXProfile/src", "../../PhysXGpu/include", "../../../Include/geometry", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../../Include/GeomUtils", @@ -6464,7 +6464,7 @@ }; name = "checked"; }; - FFF75b8124d07fb05b8124d0 /* profile */ = { + FFF7ed8124d07febed8124d0 /* 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++"; @@ -6480,7 +6480,7 @@ "-lPxFoundationPROFILE", ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include", "../../Common/src", "../../Common/src/unix", "../../PhysXProfile/include", "../../PhysXProfile/src", "../../PhysXGpu/include", "../../../Include/geometry", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../../Include/GeomUtils", @@ -6495,7 +6495,7 @@ }; name = "profile"; }; - FFF75a97f0007fb05a97f000 /* debug */ = { + FFF7ec96da007febec96da00 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -6526,7 +6526,7 @@ }; name = "debug"; }; - FFF75a97f6f07fb05a97f6f0 /* release */ = { + FFF7ec96e0f07febec96e0f0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -6557,7 +6557,7 @@ }; name = "release"; }; - FFF75a97fde07fb05a97fde0 /* checked */ = { + FFF7ec96e7e07febec96e7e0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -6588,7 +6588,7 @@ }; name = "checked"; }; - FFF75a9804d07fb05a9804d0 /* profile */ = { + FFF7ec96eed07febec96eed0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -6619,7 +6619,7 @@ }; name = "profile"; }; - FFF75b81ca007fb05b81ca00 /* debug */ = { + FFF7ec0234007febec023400 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -6650,7 +6650,7 @@ }; name = "debug"; }; - FFF75b81d0f07fb05b81d0f0 /* release */ = { + FFF7ec023af07febec023af0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -6681,7 +6681,7 @@ }; name = "release"; }; - FFF75b81d7e07fb05b81d7e0 /* checked */ = { + FFF7ec0241e07febec0241e0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -6712,7 +6712,7 @@ }; name = "checked"; }; - FFF75b81ded07fb05b81ded0 /* profile */ = { + FFF7ec0248d07febec0248d0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -6743,7 +6743,7 @@ }; name = "profile"; }; - FFF75a9af6007fb05a9af600 /* debug */ = { + FFF7ec02ba007febec02ba00 /* 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++"; @@ -6759,7 +6759,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O0", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include", "../../../Include/GeomUtils", "../../Common/src", "../../Common/src/unix", "../../PhysXProfile/src", "../../PhysXProfile/include", "../../GeomUtils/headers", "../../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", "../../GeomUtils/src/ccd", "../../GeomUtils/src", "../../LowLevel/API/include", "../../LowLevel/common/include", "../../LowLevel/common/include/collision", "../../LowLevel/common/include/pipeline", "../../LowLevel/common/include/pipeline/unix", "../../LowLevel/common/include/utils", "../../LowLevel/software/include", "../../LowLevel/software/include/unix", "../../LowLevelDynamics/include", "../../LowLevelDynamics/include/unix", @@ -6774,7 +6774,7 @@ }; name = "debug"; }; - FFF75a9afcf07fb05a9afcf0 /* checked */ = { + FFF7ec02c0f07febec02c0f0 /* 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++"; @@ -6790,7 +6790,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include", "../../../Include/GeomUtils", "../../Common/src", "../../Common/src/unix", "../../PhysXProfile/src", "../../PhysXProfile/include", "../../GeomUtils/headers", "../../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", "../../GeomUtils/src/ccd", "../../GeomUtils/src", "../../LowLevel/API/include", "../../LowLevel/common/include", "../../LowLevel/common/include/collision", "../../LowLevel/common/include/pipeline", "../../LowLevel/common/include/pipeline/unix", "../../LowLevel/common/include/utils", "../../LowLevel/software/include", "../../LowLevel/software/include/unix", "../../LowLevelDynamics/include", "../../LowLevelDynamics/include/unix", @@ -6805,7 +6805,7 @@ }; name = "checked"; }; - FFF75a9b03e07fb05a9b03e0 /* profile */ = { + FFF7ec02c7e07febec02c7e0 /* 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++"; @@ -6821,7 +6821,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include", "../../../Include/GeomUtils", "../../Common/src", "../../Common/src/unix", "../../PhysXProfile/src", "../../PhysXProfile/include", "../../GeomUtils/headers", "../../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", "../../GeomUtils/src/ccd", "../../GeomUtils/src", "../../LowLevel/API/include", "../../LowLevel/common/include", "../../LowLevel/common/include/collision", "../../LowLevel/common/include/pipeline", "../../LowLevel/common/include/pipeline/unix", "../../LowLevel/common/include/utils", "../../LowLevel/software/include", "../../LowLevel/software/include/unix", "../../LowLevelDynamics/include", "../../LowLevelDynamics/include/unix", @@ -6836,7 +6836,7 @@ }; name = "profile"; }; - FFF75a9b0ad07fb05a9b0ad0 /* release */ = { + FFF7ec02ced07febec02ced0 /* 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++"; @@ -6852,7 +6852,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include", "../../../Include/GeomUtils", "../../Common/src", "../../Common/src/unix", "../../PhysXProfile/src", "../../PhysXProfile/include", "../../GeomUtils/headers", "../../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", "../../GeomUtils/src/ccd", "../../GeomUtils/src", "../../LowLevel/API/include", "../../LowLevel/common/include", "../../LowLevel/common/include/collision", "../../LowLevel/common/include/pipeline", "../../LowLevel/common/include/pipeline/unix", "../../LowLevel/common/include/utils", "../../LowLevel/software/include", "../../LowLevel/software/include/unix", "../../LowLevelDynamics/include", "../../LowLevelDynamics/include/unix", @@ -6867,7 +6867,7 @@ }; name = "release"; }; - FFF75d009c007fb05d009c00 /* debug */ = { + FFF7ed81a6007febed81a600 /* 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++"; @@ -6883,7 +6883,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O0", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../Common/src/unix", "../../GeomUtils/headers", "../../GeomUtils/src", "../../Common/src", "../../LowLevel/API/include", "../../LowLevel/common/include/utils", "../../LowLevel/common/include/pipeline", "../../LowLevelAABB/include", "../../LowLevelAABB/src", "../../GpuBroadPhase/include", "../../GpuBroadPhase/src", "../../LowLevelAABB/unix/include", @@ -6898,7 +6898,7 @@ }; name = "debug"; }; - FFF75d00a2f07fb05d00a2f0 /* checked */ = { + FFF7ed81acf07febed81acf0 /* 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++"; @@ -6914,7 +6914,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../Common/src/unix", "../../GeomUtils/headers", "../../GeomUtils/src", "../../Common/src", "../../LowLevel/API/include", "../../LowLevel/common/include/utils", "../../LowLevel/common/include/pipeline", "../../LowLevelAABB/include", "../../LowLevelAABB/src", "../../GpuBroadPhase/include", "../../GpuBroadPhase/src", "../../LowLevelAABB/unix/include", @@ -6929,7 +6929,7 @@ }; name = "checked"; }; - FFF75d00a9e07fb05d00a9e0 /* profile */ = { + FFF7ed81b3e07febed81b3e0 /* 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++"; @@ -6945,7 +6945,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../Common/src/unix", "../../GeomUtils/headers", "../../GeomUtils/src", "../../Common/src", "../../LowLevel/API/include", "../../LowLevel/common/include/utils", "../../LowLevel/common/include/pipeline", "../../LowLevelAABB/include", "../../LowLevelAABB/src", "../../GpuBroadPhase/include", "../../GpuBroadPhase/src", "../../LowLevelAABB/unix/include", @@ -6960,7 +6960,7 @@ }; name = "profile"; }; - FFF75d00b0d07fb05d00b0d0 /* release */ = { + FFF7ed81bad07febed81bad0 /* 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++"; @@ -6976,7 +6976,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../Common/src/unix", "../../GeomUtils/headers", "../../GeomUtils/src", "../../Common/src", "../../LowLevel/API/include", "../../LowLevel/common/include/utils", "../../LowLevel/common/include/pipeline", "../../LowLevelAABB/include", "../../LowLevelAABB/src", "../../GpuBroadPhase/include", "../../GpuBroadPhase/src", "../../LowLevelAABB/unix/include", @@ -6991,7 +6991,7 @@ }; name = "release"; }; - FFF75b82aa007fb05b82aa00 /* debug */ = { + FFF7ec0350007febec035000 /* 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++"; @@ -7007,7 +7007,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O0", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include", "../../../Include/GeomUtils", "../../Common/src", "../../Common/src/unix", "../../PhysXProfile/src", "../../PhysXProfile/include", "../../GeomUtils/src/contact", "../../LowLevel/API/include", "../../LowLevel/common/include", "../../LowLevel/common/include/pipeline", "../../LowLevel/common/include/pipeline/unix", "../../LowLevel/common/include/math", "../../LowLevel/common/include/utils", "../../LowLevel/software/include", "../../LowLevel/software/include/unix", "../../LowLevelDynamics/include", "../../LowLevelDynamics/src", "../../LowLevelDynamics/include/unix", @@ -7022,7 +7022,7 @@ }; name = "debug"; }; - FFF75b82b0f07fb05b82b0f0 /* checked */ = { + FFF7ec0356f07febec0356f0 /* 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++"; @@ -7038,7 +7038,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include", "../../../Include/GeomUtils", "../../Common/src", "../../Common/src/unix", "../../PhysXProfile/src", "../../PhysXProfile/include", "../../GeomUtils/src/contact", "../../LowLevel/API/include", "../../LowLevel/common/include", "../../LowLevel/common/include/pipeline", "../../LowLevel/common/include/pipeline/unix", "../../LowLevel/common/include/math", "../../LowLevel/common/include/utils", "../../LowLevel/software/include", "../../LowLevel/software/include/unix", "../../LowLevelDynamics/include", "../../LowLevelDynamics/src", "../../LowLevelDynamics/include/unix", @@ -7053,7 +7053,7 @@ }; name = "checked"; }; - FFF75b82b7e07fb05b82b7e0 /* profile */ = { + FFF7ec035de07febec035de0 /* 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++"; @@ -7069,7 +7069,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include", "../../../Include/GeomUtils", "../../Common/src", "../../Common/src/unix", "../../PhysXProfile/src", "../../PhysXProfile/include", "../../GeomUtils/src/contact", "../../LowLevel/API/include", "../../LowLevel/common/include", "../../LowLevel/common/include/pipeline", "../../LowLevel/common/include/pipeline/unix", "../../LowLevel/common/include/math", "../../LowLevel/common/include/utils", "../../LowLevel/software/include", "../../LowLevel/software/include/unix", "../../LowLevelDynamics/include", "../../LowLevelDynamics/src", "../../LowLevelDynamics/include/unix", @@ -7084,7 +7084,7 @@ }; name = "profile"; }; - FFF75b82bed07fb05b82bed0 /* release */ = { + FFF7ec0364d07febec0364d0 /* 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++"; @@ -7100,7 +7100,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include", "../../../Include/GeomUtils", "../../Common/src", "../../Common/src/unix", "../../PhysXProfile/src", "../../PhysXProfile/include", "../../GeomUtils/src/contact", "../../LowLevel/API/include", "../../LowLevel/common/include", "../../LowLevel/common/include/pipeline", "../../LowLevel/common/include/pipeline/unix", "../../LowLevel/common/include/math", "../../LowLevel/common/include/utils", "../../LowLevel/software/include", "../../LowLevel/software/include/unix", "../../LowLevelDynamics/include", "../../LowLevelDynamics/src", "../../LowLevelDynamics/include/unix", @@ -7115,7 +7115,7 @@ }; name = "release"; }; - FFF75d0136007fb05d013600 /* debug */ = { + FFF7ed8244007febed824400 /* 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++"; @@ -7131,7 +7131,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O0", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include", "../../../Include/common", "../../Common/src", "../../LowLevelCloth/include", "../../LowLevelCloth/src", "../../../../PxShared/src/NvSimd/include", @@ -7146,7 +7146,7 @@ }; name = "debug"; }; - FFF75d013cf07fb05d013cf0 /* checked */ = { + FFF7ed824af07febed824af0 /* 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++"; @@ -7162,7 +7162,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include", "../../../Include/common", "../../Common/src", "../../LowLevelCloth/include", "../../LowLevelCloth/src", "../../../../PxShared/src/NvSimd/include", @@ -7177,7 +7177,7 @@ }; name = "checked"; }; - FFF75d0143e07fb05d0143e0 /* profile */ = { + FFF7ed8251e07febed8251e0 /* 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++"; @@ -7193,7 +7193,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include", "../../../Include/common", "../../Common/src", "../../LowLevelCloth/include", "../../LowLevelCloth/src", "../../../../PxShared/src/NvSimd/include", @@ -7208,7 +7208,7 @@ }; name = "profile"; }; - FFF75d014ad07fb05d014ad0 /* release */ = { + FFF7ed8258d07febed8258d0 /* 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++"; @@ -7224,7 +7224,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include", "../../../Include/common", "../../Common/src", "../../LowLevelCloth/include", "../../LowLevelCloth/src", "../../../../PxShared/src/NvSimd/include", @@ -7239,7 +7239,7 @@ }; name = "release"; }; - FFF75a9b90007fb05a9b9000 /* debug */ = { + FFF7ee0260007febee026000 /* 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++"; @@ -7255,7 +7255,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O0", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../Common/src", "../../LowLevelParticles/include", "../../LowLevelParticles/src", "../../LowLevel/API/include", "../../LowLevel/common/include/utils", "../../GeomUtils/src", "../../GeomUtils/src/convex", "../../GeomUtils/src/hf", "../../GeomUtils/src/mesh", "../../GeomUtils/headers", @@ -7270,7 +7270,7 @@ }; name = "debug"; }; - FFF75a9b96f07fb05a9b96f0 /* checked */ = { + FFF7ee0266f07febee0266f0 /* 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++"; @@ -7286,7 +7286,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../Common/src", "../../LowLevelParticles/include", "../../LowLevelParticles/src", "../../LowLevel/API/include", "../../LowLevel/common/include/utils", "../../GeomUtils/src", "../../GeomUtils/src/convex", "../../GeomUtils/src/hf", "../../GeomUtils/src/mesh", "../../GeomUtils/headers", @@ -7301,7 +7301,7 @@ }; name = "checked"; }; - FFF75a9b9de07fb05a9b9de0 /* profile */ = { + FFF7ee026de07febee026de0 /* 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++"; @@ -7317,7 +7317,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../Common/src", "../../LowLevelParticles/include", "../../LowLevelParticles/src", "../../LowLevel/API/include", "../../LowLevel/common/include/utils", "../../GeomUtils/src", "../../GeomUtils/src/convex", "../../GeomUtils/src/hf", "../../GeomUtils/src/mesh", "../../GeomUtils/headers", @@ -7332,7 +7332,7 @@ }; name = "profile"; }; - FFF75a9ba4d07fb05a9ba4d0 /* release */ = { + FFF7ee0274d07febee0274d0 /* 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++"; @@ -7348,7 +7348,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../Common/src", "../../LowLevelParticles/include", "../../LowLevelParticles/src", "../../LowLevel/API/include", "../../LowLevel/common/include/utils", "../../GeomUtils/src", "../../GeomUtils/src/convex", "../../GeomUtils/src/hf", "../../GeomUtils/src/mesh", "../../GeomUtils/headers", @@ -7363,7 +7363,7 @@ }; name = "release"; }; - FFF75d01ac007fb05d01ac00 /* debug */ = { + FFF7ed82bc007febed82bc00 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -7394,7 +7394,7 @@ }; name = "debug"; }; - FFF75d01b2f07fb05d01b2f0 /* release */ = { + FFF7ed82c2f07febed82c2f0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -7425,7 +7425,7 @@ }; name = "release"; }; - FFF75d01b9e07fb05d01b9e0 /* checked */ = { + FFF7ed82c9e07febed82c9e0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -7456,7 +7456,7 @@ }; name = "checked"; }; - FFF75d01c0d07fb05d01c0d0 /* profile */ = { + FFF7ed82d0d07febed82d0d0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -7487,7 +7487,7 @@ }; name = "profile"; }; - FFF75a9df0007fb05a9df000 /* debug */ = { + FFF7ec03c2007febec03c200 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -7518,7 +7518,7 @@ }; name = "debug"; }; - FFF75a9df6f07fb05a9df6f0 /* release */ = { + FFF7ec03c8f07febec03c8f0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -7549,7 +7549,7 @@ }; name = "release"; }; - FFF75a9dfde07fb05a9dfde0 /* checked */ = { + FFF7ec03cfe07febec03cfe0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -7580,7 +7580,7 @@ }; name = "checked"; }; - FFF75a9e04d07fb05a9e04d0 /* profile */ = { + FFF7ec03d6d07febec03d6d0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_32_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; CLANG_CXX_LIBRARY = "libstdc++"; @@ -7611,25 +7611,25 @@ }; name = "profile"; }; - FFF35aa04a007fb05aa04a00 /* release */ = { + FFF3ec0626007febec062600 /* release */ = { isa = XCBuildConfiguration; buildSettings = { }; name = "release"; }; - FFF35aa050f07fb05aa050f0 /* debug */ = { + FFF3ec062cf07febec062cf0 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { }; name = "debug"; }; - FFF35aa057e07fb05aa057e0 /* checked */ = { + FFF3ec0633e07febec0633e0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { }; name = "checked"; }; - FFF35aa05ed07fb05aa05ed0 /* profile */ = { + FFF3ec063ad07febec063ad0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { }; @@ -7638,34 +7638,34 @@ /* End XCBuildConfiguration section */ /* Begin PBXProject section */ - FFF95a4828f07fb05a4828f0 /* Project object */ = { + FFF9ebf0fa507febebf0fa50 /* Project object */ = { isa = PBXProject; - buildConfigurationList = FFF65a4828f07fb05a4828f0 /* Build configuration list for PBXProject PhysX */; + buildConfigurationList = FFF6ebf0fa507febebf0fa50 /* Build configuration list for PBXProject PhysX */; compatibilityVersion = "Xcode 3.2"; hasScannedForEncodings = 1; - mainGroup = FFFB5a4829587fb05a482958 /* PhysX */; + mainGroup = FFFBebf0fab87febebf0fab8 /* PhysX */; targets = ( - FFFA5cb2e4807fb05cb2e480, - FFFA5cb4fa707fb05cb4fa70, - FFFA5cb50f307fb05cb50f30, - FFFA5cb609d07fb05cb609d0, - FFFA5cb732c07fb05cb732c0, - FFFA5cb778e07fb05cb778e0, - FFFA5cb7c7007fb05cb7c700, - FFFA5b2fb4e07fb05b2fb4e0, - FFFA5b080a507fb05b080a50, - FFFA5b4338707fb05b433870, - FFFA5b308fd07fb05b308fd0, - FFFA5c8058807fb05c805880, - FFFA5b45afc07fb05b45afc0, - FFFA5c8281f07fb05c8281f0, - FFFA5b322ac07fb05b322ac0, - FFFA5c8302207fb05c830220, - FFFA5cb3a3f07fb05cb3a3f0, + FFFAebe9b7407febebe9b740, + FFFAebea7f407febebea7f40, + FFFAebea52007febebea5200, + FFFAebeb68107febebeb6810, + FFFAebec79007febebec7900, + FFFAebecbe607febebecbe60, + FFFAebed04c07febebed04c0, + FFFAed146af07febed146af0, + FFFAed13dc907febed13dc90, + FFFAebc7a0b07febebc7a0b0, + FFFAebe3bcb07febebe3bcb0, + FFFAed432ce07febed432ce0, + FFFAebe6c9d07febebe6c9d0, + FFFAed443c607febed443c60, + FFFAed7001c07febed7001c0, + FFFAed488fe07febed488fe0, + FFFAebe97fd07febebe97fd0, ); }; /* End PBXProject section */ }; - rootObject = FFF95a4828f07fb05a4828f0 /* Project object */; + rootObject = FFF9ebf0fa507febebf0fa50 /* 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 95392fe0..1f64e21e 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 */ - FFFFe294f3207ffde294f320 /* SceneQuery in Frameworks */= { isa = PBXBuildFile; fileRef = FFFDe450b7207ffde450b720 /* SceneQuery */; }; - FFFFe294f3807ffde294f380 /* SimulationController in Frameworks */= { isa = PBXBuildFile; fileRef = FFFDe450fbf07ffde450fbf0 /* SimulationController */; }; - FFFFe2194c387ffde2194c38 /* NpActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe2194c387ffde2194c38 /* NpActor.cpp */; }; - FFFFe2194ca07ffde2194ca0 /* NpAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe2194ca07ffde2194ca0 /* NpAggregate.cpp */; }; - FFFFe2194d087ffde2194d08 /* NpArticulation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe2194d087ffde2194d08 /* NpArticulation.cpp */; }; - FFFFe2194d707ffde2194d70 /* NpArticulationJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe2194d707ffde2194d70 /* NpArticulationJoint.cpp */; }; - FFFFe2194dd87ffde2194dd8 /* NpArticulationLink.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe2194dd87ffde2194dd8 /* NpArticulationLink.cpp */; }; - FFFFe2194e407ffde2194e40 /* NpBatchQuery.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe2194e407ffde2194e40 /* NpBatchQuery.cpp */; }; - FFFFe2194ea87ffde2194ea8 /* NpConstraint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe2194ea87ffde2194ea8 /* NpConstraint.cpp */; }; - FFFFe2194f107ffde2194f10 /* NpFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe2194f107ffde2194f10 /* NpFactory.cpp */; }; - FFFFe2194f787ffde2194f78 /* NpMaterial.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe2194f787ffde2194f78 /* NpMaterial.cpp */; }; - FFFFe2194fe07ffde2194fe0 /* NpMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe2194fe07ffde2194fe0 /* NpMetaData.cpp */; }; - FFFFe21950487ffde2195048 /* NpPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21950487ffde2195048 /* NpPhysics.cpp */; }; - FFFFe21950b07ffde21950b0 /* NpPvdSceneQueryCollector.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21950b07ffde21950b0 /* NpPvdSceneQueryCollector.cpp */; }; - FFFFe21951187ffde2195118 /* NpReadCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21951187ffde2195118 /* NpReadCheck.cpp */; }; - FFFFe21951807ffde2195180 /* NpRigidDynamic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21951807ffde2195180 /* NpRigidDynamic.cpp */; }; - FFFFe21951e87ffde21951e8 /* NpRigidStatic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21951e87ffde21951e8 /* NpRigidStatic.cpp */; }; - FFFFe21952507ffde2195250 /* NpScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21952507ffde2195250 /* NpScene.cpp */; }; - FFFFe21952b87ffde21952b8 /* NpSceneQueries.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21952b87ffde21952b8 /* NpSceneQueries.cpp */; }; - FFFFe21953207ffde2195320 /* NpSerializerAdapter.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21953207ffde2195320 /* NpSerializerAdapter.cpp */; }; - FFFFe21953887ffde2195388 /* NpShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21953887ffde2195388 /* NpShape.cpp */; }; - FFFFe21953f07ffde21953f0 /* NpShapeManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21953f07ffde21953f0 /* NpShapeManager.cpp */; }; - FFFFe21954587ffde2195458 /* NpSpatialIndex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21954587ffde2195458 /* NpSpatialIndex.cpp */; }; - FFFFe21954c07ffde21954c0 /* NpVolumeCache.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21954c07ffde21954c0 /* NpVolumeCache.cpp */; }; - FFFFe21955287ffde2195528 /* NpWriteCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21955287ffde2195528 /* NpWriteCheck.cpp */; }; - FFFFe21955907ffde2195590 /* PvdMetaDataPvdBinding.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21955907ffde2195590 /* PvdMetaDataPvdBinding.cpp */; }; - FFFFe21955f87ffde21955f8 /* PvdPhysicsClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21955f87ffde21955f8 /* PvdPhysicsClient.cpp */; }; - FFFFe21958007ffde2195800 /* particles/NpParticleFluid.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21958007ffde2195800 /* particles/NpParticleFluid.cpp */; }; - FFFFe21958687ffde2195868 /* particles/NpParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21958687ffde2195868 /* particles/NpParticleSystem.cpp */; }; - FFFFe21960207ffde2196020 /* buffering/ScbActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21960207ffde2196020 /* buffering/ScbActor.cpp */; }; - FFFFe21960887ffde2196088 /* buffering/ScbAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21960887ffde2196088 /* buffering/ScbAggregate.cpp */; }; - FFFFe21960f07ffde21960f0 /* buffering/ScbBase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21960f07ffde21960f0 /* buffering/ScbBase.cpp */; }; - FFFFe21961587ffde2196158 /* buffering/ScbCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21961587ffde2196158 /* buffering/ScbCloth.cpp */; }; - FFFFe21961c07ffde21961c0 /* buffering/ScbMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21961c07ffde21961c0 /* buffering/ScbMetaData.cpp */; }; - FFFFe21962287ffde2196228 /* buffering/ScbParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21962287ffde2196228 /* buffering/ScbParticleSystem.cpp */; }; - FFFFe21962907ffde2196290 /* buffering/ScbScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21962907ffde2196290 /* buffering/ScbScene.cpp */; }; - FFFFe21962f87ffde21962f8 /* buffering/ScbScenePvdClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21962f87ffde21962f8 /* buffering/ScbScenePvdClient.cpp */; }; - FFFFe21963607ffde2196360 /* buffering/ScbShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21963607ffde2196360 /* buffering/ScbShape.cpp */; }; - FFFFe21965007ffde2196500 /* cloth/NpCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21965007ffde2196500 /* cloth/NpCloth.cpp */; }; - FFFFe21965687ffde2196568 /* cloth/NpClothFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21965687ffde2196568 /* cloth/NpClothFabric.cpp */; }; - FFFFe21965d07ffde21965d0 /* cloth/NpClothParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21965d07ffde21965d0 /* cloth/NpClothParticleData.cpp */; }; - FFFFe21966387ffde2196638 /* ../../ImmediateMode/src/NpImmediateMode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21966387ffde2196638 /* ../../ImmediateMode/src/NpImmediateMode.cpp */; }; - FFFFe218eda87ffde218eda8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDe218eda87ffde218eda8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */; }; - FFFFe218ee107ffde218ee10 /* core/src/PxMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDe218ee107ffde218ee10 /* core/src/PxMetaDataObjects.cpp */; }; + FFFF0caf3ba07fa90caf3ba0 /* SceneQuery in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD0cb173f07fa90cb173f0 /* SceneQuery */; }; + FFFF0caf3c007fa90caf3c00 /* SimulationController in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD0cb1ba307fa90cb1ba30 /* SimulationController */; }; + FFFF0c091e387fa90c091e38 /* NpActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c091e387fa90c091e38 /* NpActor.cpp */; }; + FFFF0c091ea07fa90c091ea0 /* NpAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c091ea07fa90c091ea0 /* NpAggregate.cpp */; }; + FFFF0c091f087fa90c091f08 /* NpArticulation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c091f087fa90c091f08 /* NpArticulation.cpp */; }; + FFFF0c091f707fa90c091f70 /* NpArticulationJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c091f707fa90c091f70 /* NpArticulationJoint.cpp */; }; + FFFF0c091fd87fa90c091fd8 /* NpArticulationLink.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c091fd87fa90c091fd8 /* NpArticulationLink.cpp */; }; + FFFF0c0920407fa90c092040 /* NpBatchQuery.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0920407fa90c092040 /* NpBatchQuery.cpp */; }; + FFFF0c0920a87fa90c0920a8 /* NpConstraint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0920a87fa90c0920a8 /* NpConstraint.cpp */; }; + FFFF0c0921107fa90c092110 /* NpFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0921107fa90c092110 /* NpFactory.cpp */; }; + FFFF0c0921787fa90c092178 /* NpMaterial.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0921787fa90c092178 /* NpMaterial.cpp */; }; + FFFF0c0921e07fa90c0921e0 /* NpMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0921e07fa90c0921e0 /* NpMetaData.cpp */; }; + FFFF0c0922487fa90c092248 /* NpPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0922487fa90c092248 /* NpPhysics.cpp */; }; + FFFF0c0922b07fa90c0922b0 /* NpPvdSceneQueryCollector.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0922b07fa90c0922b0 /* NpPvdSceneQueryCollector.cpp */; }; + FFFF0c0923187fa90c092318 /* NpReadCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0923187fa90c092318 /* NpReadCheck.cpp */; }; + FFFF0c0923807fa90c092380 /* NpRigidDynamic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0923807fa90c092380 /* NpRigidDynamic.cpp */; }; + FFFF0c0923e87fa90c0923e8 /* NpRigidStatic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0923e87fa90c0923e8 /* NpRigidStatic.cpp */; }; + FFFF0c0924507fa90c092450 /* NpScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0924507fa90c092450 /* NpScene.cpp */; }; + FFFF0c0924b87fa90c0924b8 /* NpSceneQueries.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0924b87fa90c0924b8 /* NpSceneQueries.cpp */; }; + FFFF0c0925207fa90c092520 /* NpSerializerAdapter.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0925207fa90c092520 /* NpSerializerAdapter.cpp */; }; + FFFF0c0925887fa90c092588 /* NpShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0925887fa90c092588 /* NpShape.cpp */; }; + FFFF0c0925f07fa90c0925f0 /* NpShapeManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0925f07fa90c0925f0 /* NpShapeManager.cpp */; }; + FFFF0c0926587fa90c092658 /* NpSpatialIndex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0926587fa90c092658 /* NpSpatialIndex.cpp */; }; + FFFF0c0926c07fa90c0926c0 /* NpVolumeCache.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0926c07fa90c0926c0 /* NpVolumeCache.cpp */; }; + FFFF0c0927287fa90c092728 /* NpWriteCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0927287fa90c092728 /* NpWriteCheck.cpp */; }; + FFFF0c0927907fa90c092790 /* PvdMetaDataPvdBinding.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0927907fa90c092790 /* PvdMetaDataPvdBinding.cpp */; }; + FFFF0c0927f87fa90c0927f8 /* PvdPhysicsClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0927f87fa90c0927f8 /* PvdPhysicsClient.cpp */; }; + FFFF0c092a007fa90c092a00 /* particles/NpParticleFluid.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c092a007fa90c092a00 /* particles/NpParticleFluid.cpp */; }; + FFFF0c092a687fa90c092a68 /* particles/NpParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c092a687fa90c092a68 /* particles/NpParticleSystem.cpp */; }; + FFFF0c0932207fa90c093220 /* buffering/ScbActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0932207fa90c093220 /* buffering/ScbActor.cpp */; }; + FFFF0c0932887fa90c093288 /* buffering/ScbAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0932887fa90c093288 /* buffering/ScbAggregate.cpp */; }; + FFFF0c0932f07fa90c0932f0 /* buffering/ScbBase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0932f07fa90c0932f0 /* buffering/ScbBase.cpp */; }; + FFFF0c0933587fa90c093358 /* buffering/ScbCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0933587fa90c093358 /* buffering/ScbCloth.cpp */; }; + FFFF0c0933c07fa90c0933c0 /* buffering/ScbMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0933c07fa90c0933c0 /* buffering/ScbMetaData.cpp */; }; + FFFF0c0934287fa90c093428 /* buffering/ScbParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0934287fa90c093428 /* buffering/ScbParticleSystem.cpp */; }; + FFFF0c0934907fa90c093490 /* buffering/ScbScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0934907fa90c093490 /* buffering/ScbScene.cpp */; }; + FFFF0c0934f87fa90c0934f8 /* buffering/ScbScenePvdClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0934f87fa90c0934f8 /* buffering/ScbScenePvdClient.cpp */; }; + FFFF0c0935607fa90c093560 /* buffering/ScbShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0935607fa90c093560 /* buffering/ScbShape.cpp */; }; + FFFF0c0937007fa90c093700 /* cloth/NpCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0937007fa90c093700 /* cloth/NpCloth.cpp */; }; + FFFF0c0937687fa90c093768 /* cloth/NpClothFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0937687fa90c093768 /* cloth/NpClothFabric.cpp */; }; + FFFF0c0937d07fa90c0937d0 /* cloth/NpClothParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0937d07fa90c0937d0 /* cloth/NpClothParticleData.cpp */; }; + FFFF0c0938387fa90c093838 /* ../../ImmediateMode/src/NpImmediateMode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0938387fa90c093838 /* ../../ImmediateMode/src/NpImmediateMode.cpp */; }; + FFFF0c0903a87fa90c0903a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD0c0903a87fa90c0903a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */; }; + FFFF0c0904107fa90c090410 /* core/src/PxMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD0c0904107fa90c090410 /* core/src/PxMetaDataObjects.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDe29464b07ffde29464b0 /* PhysX */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysX"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDe2193e007ffde2193e00 /* NpActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.h"; path = "../../PhysX/src/NpActor.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2193e687ffde2193e68 /* NpActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActorTemplate.h"; path = "../../PhysX/src/NpActorTemplate.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2193ed07ffde2193ed0 /* NpAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.h"; path = "../../PhysX/src/NpAggregate.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2193f387ffde2193f38 /* NpArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.h"; path = "../../PhysX/src/NpArticulation.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2193fa07ffde2193fa0 /* NpArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.h"; path = "../../PhysX/src/NpArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21940087ffde2194008 /* NpArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.h"; path = "../../PhysX/src/NpArticulationLink.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21940707ffde2194070 /* NpBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.h"; path = "../../PhysX/src/NpBatchQuery.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21940d87ffde21940d8 /* NpCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpCast.h"; path = "../../PhysX/src/NpCast.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21941407ffde2194140 /* NpConnector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConnector.h"; path = "../../PhysX/src/NpConnector.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21941a87ffde21941a8 /* NpConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.h"; path = "../../PhysX/src/NpConstraint.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21942107ffde2194210 /* NpFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.h"; path = "../../PhysX/src/NpFactory.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21942787ffde2194278 /* NpMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.h"; path = "../../PhysX/src/NpMaterial.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21942e07ffde21942e0 /* NpMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterialManager.h"; path = "../../PhysX/src/NpMaterialManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21943487ffde2194348 /* NpPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.h"; path = "../../PhysX/src/NpPhysics.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21943b07ffde21943b0 /* NpPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysicsInsertionCallback.h"; path = "../../PhysX/src/NpPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21944187ffde2194418 /* NpPtrTableStorageManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPtrTableStorageManager.h"; path = "../../PhysX/src/NpPtrTableStorageManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21944807ffde2194480 /* NpPvdSceneQueryCollector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.h"; path = "../../PhysX/src/NpPvdSceneQueryCollector.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21944e87ffde21944e8 /* NpQueryShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpQueryShared.h"; path = "../../PhysX/src/NpQueryShared.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21945507ffde2194550 /* NpReadCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.h"; path = "../../PhysX/src/NpReadCheck.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21945b87ffde21945b8 /* NpRigidActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplate.h"; path = "../../PhysX/src/NpRigidActorTemplate.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21946207ffde2194620 /* NpRigidActorTemplateInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplateInternal.h"; path = "../../PhysX/src/NpRigidActorTemplateInternal.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21946887ffde2194688 /* NpRigidBodyTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidBodyTemplate.h"; path = "../../PhysX/src/NpRigidBodyTemplate.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21946f07ffde21946f0 /* NpRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.h"; path = "../../PhysX/src/NpRigidDynamic.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21947587ffde2194758 /* NpRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.h"; path = "../../PhysX/src/NpRigidStatic.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21947c07ffde21947c0 /* NpScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.h"; path = "../../PhysX/src/NpScene.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21948287ffde2194828 /* NpSceneQueries.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.h"; path = "../../PhysX/src/NpSceneQueries.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21948907ffde2194890 /* NpShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.h"; path = "../../PhysX/src/NpShape.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21948f87ffde21948f8 /* NpShapeManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.h"; path = "../../PhysX/src/NpShapeManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21949607ffde2194960 /* NpSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.h"; path = "../../PhysX/src/NpSpatialIndex.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21949c87ffde21949c8 /* NpVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.h"; path = "../../PhysX/src/NpVolumeCache.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2194a307ffde2194a30 /* NpWriteCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.h"; path = "../../PhysX/src/NpWriteCheck.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2194a987ffde2194a98 /* PvdMetaDataBindingData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataBindingData.h"; path = "../../PhysX/src/PvdMetaDataBindingData.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2194b007ffde2194b00 /* PvdMetaDataPvdBinding.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.h"; path = "../../PhysX/src/PvdMetaDataPvdBinding.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2194b687ffde2194b68 /* PvdPhysicsClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.h"; path = "../../PhysX/src/PvdPhysicsClient.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2194bd07ffde2194bd0 /* PvdTypeNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdTypeNames.h"; path = "../../PhysX/src/PvdTypeNames.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2194c387ffde2194c38 /* NpActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.cpp"; path = "../../PhysX/src/NpActor.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe2194ca07ffde2194ca0 /* NpAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.cpp"; path = "../../PhysX/src/NpAggregate.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe2194d087ffde2194d08 /* NpArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.cpp"; path = "../../PhysX/src/NpArticulation.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe2194d707ffde2194d70 /* NpArticulationJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.cpp"; path = "../../PhysX/src/NpArticulationJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe2194dd87ffde2194dd8 /* NpArticulationLink.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.cpp"; path = "../../PhysX/src/NpArticulationLink.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe2194e407ffde2194e40 /* NpBatchQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.cpp"; path = "../../PhysX/src/NpBatchQuery.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe2194ea87ffde2194ea8 /* NpConstraint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.cpp"; path = "../../PhysX/src/NpConstraint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe2194f107ffde2194f10 /* NpFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.cpp"; path = "../../PhysX/src/NpFactory.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe2194f787ffde2194f78 /* NpMaterial.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.cpp"; path = "../../PhysX/src/NpMaterial.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe2194fe07ffde2194fe0 /* NpMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMetaData.cpp"; path = "../../PhysX/src/NpMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21950487ffde2195048 /* NpPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.cpp"; path = "../../PhysX/src/NpPhysics.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21950b07ffde21950b0 /* NpPvdSceneQueryCollector.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.cpp"; path = "../../PhysX/src/NpPvdSceneQueryCollector.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21951187ffde2195118 /* NpReadCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.cpp"; path = "../../PhysX/src/NpReadCheck.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21951807ffde2195180 /* NpRigidDynamic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.cpp"; path = "../../PhysX/src/NpRigidDynamic.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21951e87ffde21951e8 /* NpRigidStatic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.cpp"; path = "../../PhysX/src/NpRigidStatic.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21952507ffde2195250 /* NpScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.cpp"; path = "../../PhysX/src/NpScene.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21952b87ffde21952b8 /* NpSceneQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.cpp"; path = "../../PhysX/src/NpSceneQueries.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21953207ffde2195320 /* NpSerializerAdapter.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSerializerAdapter.cpp"; path = "../../PhysX/src/NpSerializerAdapter.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21953887ffde2195388 /* NpShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.cpp"; path = "../../PhysX/src/NpShape.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21953f07ffde21953f0 /* NpShapeManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.cpp"; path = "../../PhysX/src/NpShapeManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21954587ffde2195458 /* NpSpatialIndex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.cpp"; path = "../../PhysX/src/NpSpatialIndex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21954c07ffde21954c0 /* NpVolumeCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.cpp"; path = "../../PhysX/src/NpVolumeCache.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21955287ffde2195528 /* NpWriteCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.cpp"; path = "../../PhysX/src/NpWriteCheck.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21955907ffde2195590 /* PvdMetaDataPvdBinding.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.cpp"; path = "../../PhysX/src/PvdMetaDataPvdBinding.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21955f87ffde21955f8 /* PvdPhysicsClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.cpp"; path = "../../PhysX/src/PvdPhysicsClient.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21956607ffde2195660 /* particles/NpParticleBaseTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleBaseTemplate.h"; path = "../../PhysX/src/particles/NpParticleBaseTemplate.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21956c87ffde21956c8 /* particles/NpParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.h"; path = "../../PhysX/src/particles/NpParticleFluid.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21957307ffde2195730 /* particles/NpParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluidReadData.h"; path = "../../PhysX/src/particles/NpParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21957987ffde2195798 /* particles/NpParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.h"; path = "../../PhysX/src/particles/NpParticleSystem.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21958007ffde2195800 /* particles/NpParticleFluid.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.cpp"; path = "../../PhysX/src/particles/NpParticleFluid.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21958687ffde2195868 /* particles/NpParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.cpp"; path = "../../PhysX/src/particles/NpParticleSystem.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21958d07ffde21958d0 /* buffering/ScbActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.h"; path = "../../PhysX/src/buffering/ScbActor.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21959387ffde2195938 /* buffering/ScbAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.h"; path = "../../PhysX/src/buffering/ScbAggregate.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21959a07ffde21959a0 /* buffering/ScbArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulation.h"; path = "../../PhysX/src/buffering/ScbArticulation.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2195a087ffde2195a08 /* buffering/ScbArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulationJoint.h"; path = "../../PhysX/src/buffering/ScbArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2195a707ffde2195a70 /* buffering/ScbBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.h"; path = "../../PhysX/src/buffering/ScbBase.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2195ad87ffde2195ad8 /* buffering/ScbBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBody.h"; path = "../../PhysX/src/buffering/ScbBody.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2195b407ffde2195b40 /* buffering/ScbCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.h"; path = "../../PhysX/src/buffering/ScbCloth.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2195ba87ffde2195ba8 /* buffering/ScbConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbConstraint.h"; path = "../../PhysX/src/buffering/ScbConstraint.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2195c107ffde2195c10 /* buffering/ScbDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbDefs.h"; path = "../../PhysX/src/buffering/ScbDefs.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2195c787ffde2195c78 /* buffering/ScbNpDeps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbNpDeps.h"; path = "../../PhysX/src/buffering/ScbNpDeps.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2195ce07ffde2195ce0 /* buffering/ScbParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.h"; path = "../../PhysX/src/buffering/ScbParticleSystem.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2195d487ffde2195d48 /* buffering/ScbRigidObject.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidObject.h"; path = "../../PhysX/src/buffering/ScbRigidObject.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2195db07ffde2195db0 /* buffering/ScbRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidStatic.h"; path = "../../PhysX/src/buffering/ScbRigidStatic.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2195e187ffde2195e18 /* buffering/ScbScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.h"; path = "../../PhysX/src/buffering/ScbScene.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2195e807ffde2195e80 /* buffering/ScbSceneBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbSceneBuffer.h"; path = "../../PhysX/src/buffering/ScbSceneBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2195ee87ffde2195ee8 /* buffering/ScbScenePvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.h"; path = "../../PhysX/src/buffering/ScbScenePvdClient.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2195f507ffde2195f50 /* buffering/ScbShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.h"; path = "../../PhysX/src/buffering/ScbShape.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2195fb87ffde2195fb8 /* buffering/ScbType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbType.h"; path = "../../PhysX/src/buffering/ScbType.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21960207ffde2196020 /* buffering/ScbActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.cpp"; path = "../../PhysX/src/buffering/ScbActor.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21960887ffde2196088 /* buffering/ScbAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.cpp"; path = "../../PhysX/src/buffering/ScbAggregate.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21960f07ffde21960f0 /* buffering/ScbBase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.cpp"; path = "../../PhysX/src/buffering/ScbBase.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21961587ffde2196158 /* buffering/ScbCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.cpp"; path = "../../PhysX/src/buffering/ScbCloth.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21961c07ffde21961c0 /* buffering/ScbMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbMetaData.cpp"; path = "../../PhysX/src/buffering/ScbMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21962287ffde2196228 /* buffering/ScbParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.cpp"; path = "../../PhysX/src/buffering/ScbParticleSystem.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21962907ffde2196290 /* buffering/ScbScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.cpp"; path = "../../PhysX/src/buffering/ScbScene.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21962f87ffde21962f8 /* buffering/ScbScenePvdClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.cpp"; path = "../../PhysX/src/buffering/ScbScenePvdClient.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21963607ffde2196360 /* buffering/ScbShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.cpp"; path = "../../PhysX/src/buffering/ScbShape.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21963c87ffde21963c8 /* cloth/NpCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.h"; path = "../../PhysX/src/cloth/NpCloth.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21964307ffde2196430 /* cloth/NpClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.h"; path = "../../PhysX/src/cloth/NpClothFabric.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21964987ffde2196498 /* cloth/NpClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.h"; path = "../../PhysX/src/cloth/NpClothParticleData.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21965007ffde2196500 /* cloth/NpCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.cpp"; path = "../../PhysX/src/cloth/NpCloth.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21965687ffde2196568 /* cloth/NpClothFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.cpp"; path = "../../PhysX/src/cloth/NpClothFabric.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21965d07ffde21965d0 /* cloth/NpClothParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.cpp"; path = "../../PhysX/src/cloth/NpClothParticleData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21966387ffde2196638 /* ../../ImmediateMode/src/NpImmediateMode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "../../ImmediateMode/src/NpImmediateMode.cpp"; path = "../../ImmediateMode/src/NpImmediateMode.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21968007ffde2196800 /* PxActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxActor.h"; path = "../../../Include/PxActor.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21968687ffde2196868 /* PxAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAggregate.h"; path = "../../../Include/PxAggregate.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21968d07ffde21968d0 /* PxArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulation.h"; path = "../../../Include/PxArticulation.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21969387ffde2196938 /* PxArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationJoint.h"; path = "../../../Include/PxArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21969a07ffde21969a0 /* PxArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationLink.h"; path = "../../../Include/PxArticulationLink.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2196a087ffde2196a08 /* PxBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQuery.h"; path = "../../../Include/PxBatchQuery.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2196a707ffde2196a70 /* PxBatchQueryDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQueryDesc.h"; path = "../../../Include/PxBatchQueryDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2196ad87ffde2196ad8 /* PxBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhase.h"; path = "../../../Include/PxBroadPhase.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2196b407ffde2196b40 /* PxClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClient.h"; path = "../../../Include/PxClient.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2196ba87ffde2196ba8 /* PxConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraint.h"; path = "../../../Include/PxConstraint.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2196c107ffde2196c10 /* PxConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintDesc.h"; path = "../../../Include/PxConstraintDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2196c787ffde2196c78 /* PxContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContact.h"; path = "../../../Include/PxContact.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2196ce07ffde2196ce0 /* PxContactModifyCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContactModifyCallback.h"; path = "../../../Include/PxContactModifyCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2196d487ffde2196d48 /* PxDeletionListener.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDeletionListener.h"; path = "../../../Include/PxDeletionListener.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2196db07ffde2196db0 /* PxFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFiltering.h"; path = "../../../Include/PxFiltering.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2196e187ffde2196e18 /* PxForceMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxForceMode.h"; path = "../../../Include/PxForceMode.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2196e807ffde2196e80 /* PxImmediateMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxImmediateMode.h"; path = "../../../Include/PxImmediateMode.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2196ee87ffde2196ee8 /* PxLockedData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxLockedData.h"; path = "../../../Include/PxLockedData.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2196f507ffde2196f50 /* PxMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMaterial.h"; path = "../../../Include/PxMaterial.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2196fb87ffde2196fb8 /* PxPhysXConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysXConfig.h"; path = "../../../Include/PxPhysXConfig.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21970207ffde2197020 /* PxPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysics.h"; path = "../../../Include/PxPhysics.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21970887ffde2197088 /* PxPhysicsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsAPI.h"; path = "../../../Include/PxPhysicsAPI.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21970f07ffde21970f0 /* PxPhysicsSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsSerialization.h"; path = "../../../Include/PxPhysicsSerialization.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21971587ffde2197158 /* PxPhysicsVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsVersion.h"; path = "../../../Include/PxPhysicsVersion.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21971c07ffde21971c0 /* PxPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPruningStructure.h"; path = "../../../Include/PxPruningStructure.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21972287ffde2197228 /* PxQueryFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryFiltering.h"; path = "../../../Include/PxQueryFiltering.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21972907ffde2197290 /* PxQueryReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryReport.h"; path = "../../../Include/PxQueryReport.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21972f87ffde21972f8 /* PxRigidActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActor.h"; path = "../../../Include/PxRigidActor.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21973607ffde2197360 /* PxRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBody.h"; path = "../../../Include/PxRigidBody.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21973c87ffde21973c8 /* PxRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidDynamic.h"; path = "../../../Include/PxRigidDynamic.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21974307ffde2197430 /* PxRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidStatic.h"; path = "../../../Include/PxRigidStatic.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21974987ffde2197498 /* PxScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxScene.h"; path = "../../../Include/PxScene.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21975007ffde2197500 /* PxSceneDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneDesc.h"; path = "../../../Include/PxSceneDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21975687ffde2197568 /* PxSceneLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneLock.h"; path = "../../../Include/PxSceneLock.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21975d07ffde21975d0 /* PxShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShape.h"; path = "../../../Include/PxShape.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21976387ffde2197638 /* PxSimulationEventCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationEventCallback.h"; path = "../../../Include/PxSimulationEventCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21976a07ffde21976a0 /* PxSimulationStatistics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationStatistics.h"; path = "../../../Include/PxSimulationStatistics.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21977087ffde2197708 /* PxSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSpatialIndex.h"; path = "../../../Include/PxSpatialIndex.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21977707ffde2197770 /* PxVisualizationParameter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVisualizationParameter.h"; path = "../../../Include/PxVisualizationParameter.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21977d87ffde21977d8 /* PxVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVolumeCache.h"; path = "../../../Include/PxVolumeCache.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21978407ffde2197840 /* particles/PxParticleBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBase.h"; path = "../../../Include/particles/PxParticleBase.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21978a87ffde21978a8 /* particles/PxParticleBaseFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBaseFlag.h"; path = "../../../Include/particles/PxParticleBaseFlag.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21979107ffde2197910 /* particles/PxParticleCreationData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleCreationData.h"; path = "../../../Include/particles/PxParticleCreationData.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21979787ffde2197978 /* particles/PxParticleFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFlag.h"; path = "../../../Include/particles/PxParticleFlag.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21979e07ffde21979e0 /* particles/PxParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluid.h"; path = "../../../Include/particles/PxParticleFluid.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2197a487ffde2197a48 /* particles/PxParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluidReadData.h"; path = "../../../Include/particles/PxParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2197ab07ffde2197ab0 /* particles/PxParticleReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleReadData.h"; path = "../../../Include/particles/PxParticleReadData.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2197b187ffde2197b18 /* particles/PxParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleSystem.h"; path = "../../../Include/particles/PxParticleSystem.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2197b807ffde2197b80 /* pvd/PxPvdSceneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pvd/PxPvdSceneClient.h"; path = "../../../Include/pvd/PxPvdSceneClient.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2197be87ffde2197be8 /* cloth/PxCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxCloth.h"; path = "../../../Include/cloth/PxCloth.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2197c507ffde2197c50 /* cloth/PxClothCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothCollisionData.h"; path = "../../../Include/cloth/PxClothCollisionData.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2197cb87ffde2197cb8 /* cloth/PxClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothFabric.h"; path = "../../../Include/cloth/PxClothFabric.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2197d207ffde2197d20 /* cloth/PxClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothParticleData.h"; path = "../../../Include/cloth/PxClothParticleData.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2197d887ffde2197d88 /* cloth/PxClothTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothTypes.h"; path = "../../../Include/cloth/PxClothTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFDe218ea007ffde218ea00 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; }; - FFFDe218ea687ffde218ea68 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; - FFFDe218ead07ffde218ead0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; - FFFDe218eb387ffde218eb38 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; - FFFDe218eba07ffde218eba0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFDe218ec087ffde218ec08 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; }; - FFFDe218ec707ffde218ec70 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; }; - FFFDe218ecd87ffde218ecd8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFDe218ed407ffde218ed40 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; - FFFDe218eda87ffde218eda8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "core/src/PxAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXMetaData/core/src/PxAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe218ee107ffde218ee10 /* core/src/PxMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "core/src/PxMetaDataObjects.cpp"; path = "../../PhysXMetaData/core/src/PxMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0cae9cd07fa90cae9cd0 /* PhysX */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysX"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD0c0910007fa90c091000 /* NpActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.h"; path = "../../PhysX/src/NpActor.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0910687fa90c091068 /* NpActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActorTemplate.h"; path = "../../PhysX/src/NpActorTemplate.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0910d07fa90c0910d0 /* NpAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.h"; path = "../../PhysX/src/NpAggregate.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0911387fa90c091138 /* NpArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.h"; path = "../../PhysX/src/NpArticulation.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0911a07fa90c0911a0 /* NpArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.h"; path = "../../PhysX/src/NpArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0912087fa90c091208 /* NpArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.h"; path = "../../PhysX/src/NpArticulationLink.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0912707fa90c091270 /* NpBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.h"; path = "../../PhysX/src/NpBatchQuery.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0912d87fa90c0912d8 /* NpCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpCast.h"; path = "../../PhysX/src/NpCast.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0913407fa90c091340 /* NpConnector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConnector.h"; path = "../../PhysX/src/NpConnector.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0913a87fa90c0913a8 /* NpConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.h"; path = "../../PhysX/src/NpConstraint.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0914107fa90c091410 /* NpFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.h"; path = "../../PhysX/src/NpFactory.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0914787fa90c091478 /* NpMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.h"; path = "../../PhysX/src/NpMaterial.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0914e07fa90c0914e0 /* NpMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterialManager.h"; path = "../../PhysX/src/NpMaterialManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0915487fa90c091548 /* NpPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.h"; path = "../../PhysX/src/NpPhysics.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0915b07fa90c0915b0 /* NpPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysicsInsertionCallback.h"; path = "../../PhysX/src/NpPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0916187fa90c091618 /* NpPtrTableStorageManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPtrTableStorageManager.h"; path = "../../PhysX/src/NpPtrTableStorageManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0916807fa90c091680 /* NpPvdSceneQueryCollector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.h"; path = "../../PhysX/src/NpPvdSceneQueryCollector.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0916e87fa90c0916e8 /* NpQueryShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpQueryShared.h"; path = "../../PhysX/src/NpQueryShared.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0917507fa90c091750 /* NpReadCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.h"; path = "../../PhysX/src/NpReadCheck.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0917b87fa90c0917b8 /* NpRigidActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplate.h"; path = "../../PhysX/src/NpRigidActorTemplate.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0918207fa90c091820 /* NpRigidActorTemplateInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplateInternal.h"; path = "../../PhysX/src/NpRigidActorTemplateInternal.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0918887fa90c091888 /* NpRigidBodyTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidBodyTemplate.h"; path = "../../PhysX/src/NpRigidBodyTemplate.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0918f07fa90c0918f0 /* NpRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.h"; path = "../../PhysX/src/NpRigidDynamic.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0919587fa90c091958 /* NpRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.h"; path = "../../PhysX/src/NpRigidStatic.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0919c07fa90c0919c0 /* NpScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.h"; path = "../../PhysX/src/NpScene.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c091a287fa90c091a28 /* NpSceneQueries.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.h"; path = "../../PhysX/src/NpSceneQueries.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c091a907fa90c091a90 /* NpShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.h"; path = "../../PhysX/src/NpShape.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c091af87fa90c091af8 /* NpShapeManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.h"; path = "../../PhysX/src/NpShapeManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c091b607fa90c091b60 /* NpSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.h"; path = "../../PhysX/src/NpSpatialIndex.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c091bc87fa90c091bc8 /* NpVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.h"; path = "../../PhysX/src/NpVolumeCache.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c091c307fa90c091c30 /* NpWriteCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.h"; path = "../../PhysX/src/NpWriteCheck.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c091c987fa90c091c98 /* PvdMetaDataBindingData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataBindingData.h"; path = "../../PhysX/src/PvdMetaDataBindingData.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c091d007fa90c091d00 /* PvdMetaDataPvdBinding.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.h"; path = "../../PhysX/src/PvdMetaDataPvdBinding.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c091d687fa90c091d68 /* PvdPhysicsClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.h"; path = "../../PhysX/src/PvdPhysicsClient.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c091dd07fa90c091dd0 /* PvdTypeNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdTypeNames.h"; path = "../../PhysX/src/PvdTypeNames.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c091e387fa90c091e38 /* NpActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.cpp"; path = "../../PhysX/src/NpActor.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c091ea07fa90c091ea0 /* NpAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.cpp"; path = "../../PhysX/src/NpAggregate.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c091f087fa90c091f08 /* NpArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.cpp"; path = "../../PhysX/src/NpArticulation.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c091f707fa90c091f70 /* NpArticulationJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.cpp"; path = "../../PhysX/src/NpArticulationJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c091fd87fa90c091fd8 /* NpArticulationLink.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.cpp"; path = "../../PhysX/src/NpArticulationLink.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0920407fa90c092040 /* NpBatchQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.cpp"; path = "../../PhysX/src/NpBatchQuery.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0920a87fa90c0920a8 /* NpConstraint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.cpp"; path = "../../PhysX/src/NpConstraint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0921107fa90c092110 /* NpFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.cpp"; path = "../../PhysX/src/NpFactory.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0921787fa90c092178 /* NpMaterial.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.cpp"; path = "../../PhysX/src/NpMaterial.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0921e07fa90c0921e0 /* NpMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMetaData.cpp"; path = "../../PhysX/src/NpMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0922487fa90c092248 /* NpPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.cpp"; path = "../../PhysX/src/NpPhysics.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0922b07fa90c0922b0 /* NpPvdSceneQueryCollector.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.cpp"; path = "../../PhysX/src/NpPvdSceneQueryCollector.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0923187fa90c092318 /* NpReadCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.cpp"; path = "../../PhysX/src/NpReadCheck.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0923807fa90c092380 /* NpRigidDynamic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.cpp"; path = "../../PhysX/src/NpRigidDynamic.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0923e87fa90c0923e8 /* NpRigidStatic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.cpp"; path = "../../PhysX/src/NpRigidStatic.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0924507fa90c092450 /* NpScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.cpp"; path = "../../PhysX/src/NpScene.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0924b87fa90c0924b8 /* NpSceneQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.cpp"; path = "../../PhysX/src/NpSceneQueries.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0925207fa90c092520 /* NpSerializerAdapter.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSerializerAdapter.cpp"; path = "../../PhysX/src/NpSerializerAdapter.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0925887fa90c092588 /* NpShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.cpp"; path = "../../PhysX/src/NpShape.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0925f07fa90c0925f0 /* NpShapeManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.cpp"; path = "../../PhysX/src/NpShapeManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0926587fa90c092658 /* NpSpatialIndex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.cpp"; path = "../../PhysX/src/NpSpatialIndex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0926c07fa90c0926c0 /* NpVolumeCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.cpp"; path = "../../PhysX/src/NpVolumeCache.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0927287fa90c092728 /* NpWriteCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.cpp"; path = "../../PhysX/src/NpWriteCheck.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0927907fa90c092790 /* PvdMetaDataPvdBinding.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.cpp"; path = "../../PhysX/src/PvdMetaDataPvdBinding.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0927f87fa90c0927f8 /* PvdPhysicsClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.cpp"; path = "../../PhysX/src/PvdPhysicsClient.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0928607fa90c092860 /* particles/NpParticleBaseTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleBaseTemplate.h"; path = "../../PhysX/src/particles/NpParticleBaseTemplate.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0928c87fa90c0928c8 /* particles/NpParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.h"; path = "../../PhysX/src/particles/NpParticleFluid.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0929307fa90c092930 /* particles/NpParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluidReadData.h"; path = "../../PhysX/src/particles/NpParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0929987fa90c092998 /* particles/NpParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.h"; path = "../../PhysX/src/particles/NpParticleSystem.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c092a007fa90c092a00 /* particles/NpParticleFluid.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.cpp"; path = "../../PhysX/src/particles/NpParticleFluid.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c092a687fa90c092a68 /* particles/NpParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.cpp"; path = "../../PhysX/src/particles/NpParticleSystem.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c092ad07fa90c092ad0 /* buffering/ScbActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.h"; path = "../../PhysX/src/buffering/ScbActor.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c092b387fa90c092b38 /* buffering/ScbAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.h"; path = "../../PhysX/src/buffering/ScbAggregate.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c092ba07fa90c092ba0 /* buffering/ScbArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulation.h"; path = "../../PhysX/src/buffering/ScbArticulation.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c092c087fa90c092c08 /* buffering/ScbArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulationJoint.h"; path = "../../PhysX/src/buffering/ScbArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c092c707fa90c092c70 /* buffering/ScbBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.h"; path = "../../PhysX/src/buffering/ScbBase.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c092cd87fa90c092cd8 /* buffering/ScbBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBody.h"; path = "../../PhysX/src/buffering/ScbBody.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c092d407fa90c092d40 /* buffering/ScbCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.h"; path = "../../PhysX/src/buffering/ScbCloth.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c092da87fa90c092da8 /* buffering/ScbConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbConstraint.h"; path = "../../PhysX/src/buffering/ScbConstraint.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c092e107fa90c092e10 /* buffering/ScbDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbDefs.h"; path = "../../PhysX/src/buffering/ScbDefs.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c092e787fa90c092e78 /* buffering/ScbNpDeps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbNpDeps.h"; path = "../../PhysX/src/buffering/ScbNpDeps.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c092ee07fa90c092ee0 /* buffering/ScbParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.h"; path = "../../PhysX/src/buffering/ScbParticleSystem.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c092f487fa90c092f48 /* buffering/ScbRigidObject.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidObject.h"; path = "../../PhysX/src/buffering/ScbRigidObject.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c092fb07fa90c092fb0 /* buffering/ScbRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidStatic.h"; path = "../../PhysX/src/buffering/ScbRigidStatic.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0930187fa90c093018 /* buffering/ScbScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.h"; path = "../../PhysX/src/buffering/ScbScene.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0930807fa90c093080 /* buffering/ScbSceneBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbSceneBuffer.h"; path = "../../PhysX/src/buffering/ScbSceneBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0930e87fa90c0930e8 /* buffering/ScbScenePvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.h"; path = "../../PhysX/src/buffering/ScbScenePvdClient.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0931507fa90c093150 /* buffering/ScbShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.h"; path = "../../PhysX/src/buffering/ScbShape.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0931b87fa90c0931b8 /* buffering/ScbType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbType.h"; path = "../../PhysX/src/buffering/ScbType.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0932207fa90c093220 /* buffering/ScbActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.cpp"; path = "../../PhysX/src/buffering/ScbActor.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0932887fa90c093288 /* buffering/ScbAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.cpp"; path = "../../PhysX/src/buffering/ScbAggregate.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0932f07fa90c0932f0 /* buffering/ScbBase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.cpp"; path = "../../PhysX/src/buffering/ScbBase.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0933587fa90c093358 /* buffering/ScbCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.cpp"; path = "../../PhysX/src/buffering/ScbCloth.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0933c07fa90c0933c0 /* buffering/ScbMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbMetaData.cpp"; path = "../../PhysX/src/buffering/ScbMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0934287fa90c093428 /* buffering/ScbParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.cpp"; path = "../../PhysX/src/buffering/ScbParticleSystem.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0934907fa90c093490 /* buffering/ScbScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.cpp"; path = "../../PhysX/src/buffering/ScbScene.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0934f87fa90c0934f8 /* buffering/ScbScenePvdClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.cpp"; path = "../../PhysX/src/buffering/ScbScenePvdClient.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0935607fa90c093560 /* buffering/ScbShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.cpp"; path = "../../PhysX/src/buffering/ScbShape.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0935c87fa90c0935c8 /* cloth/NpCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.h"; path = "../../PhysX/src/cloth/NpCloth.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0936307fa90c093630 /* cloth/NpClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.h"; path = "../../PhysX/src/cloth/NpClothFabric.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0936987fa90c093698 /* cloth/NpClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.h"; path = "../../PhysX/src/cloth/NpClothParticleData.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0937007fa90c093700 /* cloth/NpCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.cpp"; path = "../../PhysX/src/cloth/NpCloth.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0937687fa90c093768 /* cloth/NpClothFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.cpp"; path = "../../PhysX/src/cloth/NpClothFabric.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0937d07fa90c0937d0 /* cloth/NpClothParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.cpp"; path = "../../PhysX/src/cloth/NpClothParticleData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0938387fa90c093838 /* ../../ImmediateMode/src/NpImmediateMode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "../../ImmediateMode/src/NpImmediateMode.cpp"; path = "../../ImmediateMode/src/NpImmediateMode.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c08ea007fa90c08ea00 /* PxActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxActor.h"; path = "../../../Include/PxActor.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c08ea687fa90c08ea68 /* PxAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAggregate.h"; path = "../../../Include/PxAggregate.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c08ead07fa90c08ead0 /* PxArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulation.h"; path = "../../../Include/PxArticulation.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c08eb387fa90c08eb38 /* PxArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationJoint.h"; path = "../../../Include/PxArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c08eba07fa90c08eba0 /* PxArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationLink.h"; path = "../../../Include/PxArticulationLink.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c08ec087fa90c08ec08 /* PxBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQuery.h"; path = "../../../Include/PxBatchQuery.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c08ec707fa90c08ec70 /* PxBatchQueryDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQueryDesc.h"; path = "../../../Include/PxBatchQueryDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c08ecd87fa90c08ecd8 /* PxBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhase.h"; path = "../../../Include/PxBroadPhase.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c08ed407fa90c08ed40 /* PxClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClient.h"; path = "../../../Include/PxClient.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c08eda87fa90c08eda8 /* PxConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraint.h"; path = "../../../Include/PxConstraint.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c08ee107fa90c08ee10 /* PxConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintDesc.h"; path = "../../../Include/PxConstraintDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c08ee787fa90c08ee78 /* PxContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContact.h"; path = "../../../Include/PxContact.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c08eee07fa90c08eee0 /* PxContactModifyCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContactModifyCallback.h"; path = "../../../Include/PxContactModifyCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c08ef487fa90c08ef48 /* PxDeletionListener.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDeletionListener.h"; path = "../../../Include/PxDeletionListener.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c08efb07fa90c08efb0 /* PxFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFiltering.h"; path = "../../../Include/PxFiltering.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c08f0187fa90c08f018 /* PxForceMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxForceMode.h"; path = "../../../Include/PxForceMode.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c08f0807fa90c08f080 /* PxImmediateMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxImmediateMode.h"; path = "../../../Include/PxImmediateMode.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c08f0e87fa90c08f0e8 /* PxLockedData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxLockedData.h"; path = "../../../Include/PxLockedData.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c08f1507fa90c08f150 /* PxMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMaterial.h"; path = "../../../Include/PxMaterial.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c08f1b87fa90c08f1b8 /* PxPhysXConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysXConfig.h"; path = "../../../Include/PxPhysXConfig.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c08f2207fa90c08f220 /* PxPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysics.h"; path = "../../../Include/PxPhysics.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c08f2887fa90c08f288 /* PxPhysicsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsAPI.h"; path = "../../../Include/PxPhysicsAPI.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c08f2f07fa90c08f2f0 /* PxPhysicsSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsSerialization.h"; path = "../../../Include/PxPhysicsSerialization.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c08f3587fa90c08f358 /* PxPhysicsVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsVersion.h"; path = "../../../Include/PxPhysicsVersion.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c08f3c07fa90c08f3c0 /* PxPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPruningStructure.h"; path = "../../../Include/PxPruningStructure.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c08f4287fa90c08f428 /* PxQueryFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryFiltering.h"; path = "../../../Include/PxQueryFiltering.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c08f4907fa90c08f490 /* PxQueryReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryReport.h"; path = "../../../Include/PxQueryReport.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c08f4f87fa90c08f4f8 /* PxRigidActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActor.h"; path = "../../../Include/PxRigidActor.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c08f5607fa90c08f560 /* PxRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBody.h"; path = "../../../Include/PxRigidBody.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c08f5c87fa90c08f5c8 /* PxRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidDynamic.h"; path = "../../../Include/PxRigidDynamic.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c08f6307fa90c08f630 /* PxRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidStatic.h"; path = "../../../Include/PxRigidStatic.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c08f6987fa90c08f698 /* PxScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxScene.h"; path = "../../../Include/PxScene.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c08f7007fa90c08f700 /* PxSceneDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneDesc.h"; path = "../../../Include/PxSceneDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c08f7687fa90c08f768 /* PxSceneLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneLock.h"; path = "../../../Include/PxSceneLock.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c08f7d07fa90c08f7d0 /* PxShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShape.h"; path = "../../../Include/PxShape.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c08f8387fa90c08f838 /* PxSimulationEventCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationEventCallback.h"; path = "../../../Include/PxSimulationEventCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c08f8a07fa90c08f8a0 /* PxSimulationStatistics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationStatistics.h"; path = "../../../Include/PxSimulationStatistics.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c08f9087fa90c08f908 /* PxSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSpatialIndex.h"; path = "../../../Include/PxSpatialIndex.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c08f9707fa90c08f970 /* PxVisualizationParameter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVisualizationParameter.h"; path = "../../../Include/PxVisualizationParameter.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c08f9d87fa90c08f9d8 /* PxVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVolumeCache.h"; path = "../../../Include/PxVolumeCache.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c08fa407fa90c08fa40 /* particles/PxParticleBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBase.h"; path = "../../../Include/particles/PxParticleBase.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c08faa87fa90c08faa8 /* particles/PxParticleBaseFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBaseFlag.h"; path = "../../../Include/particles/PxParticleBaseFlag.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c08fb107fa90c08fb10 /* particles/PxParticleCreationData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleCreationData.h"; path = "../../../Include/particles/PxParticleCreationData.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c08fb787fa90c08fb78 /* particles/PxParticleFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFlag.h"; path = "../../../Include/particles/PxParticleFlag.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c08fbe07fa90c08fbe0 /* particles/PxParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluid.h"; path = "../../../Include/particles/PxParticleFluid.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c08fc487fa90c08fc48 /* particles/PxParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluidReadData.h"; path = "../../../Include/particles/PxParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c08fcb07fa90c08fcb0 /* particles/PxParticleReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleReadData.h"; path = "../../../Include/particles/PxParticleReadData.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c08fd187fa90c08fd18 /* particles/PxParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleSystem.h"; path = "../../../Include/particles/PxParticleSystem.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c08fd807fa90c08fd80 /* pvd/PxPvdSceneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pvd/PxPvdSceneClient.h"; path = "../../../Include/pvd/PxPvdSceneClient.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c08fde87fa90c08fde8 /* cloth/PxCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxCloth.h"; path = "../../../Include/cloth/PxCloth.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c08fe507fa90c08fe50 /* cloth/PxClothCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothCollisionData.h"; path = "../../../Include/cloth/PxClothCollisionData.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c08feb87fa90c08feb8 /* cloth/PxClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothFabric.h"; path = "../../../Include/cloth/PxClothFabric.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c08ff207fa90c08ff20 /* cloth/PxClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothParticleData.h"; path = "../../../Include/cloth/PxClothParticleData.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c08ff887fa90c08ff88 /* cloth/PxClothTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothTypes.h"; path = "../../../Include/cloth/PxClothTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0900007fa90c090000 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0900687fa90c090068 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0900d07fa90c0900d0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0901387fa90c090138 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0901a07fa90c0901a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0902087fa90c090208 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0902707fa90c090270 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0902d87fa90c0902d8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0903407fa90c090340 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0903a87fa90c0903a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "core/src/PxAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXMetaData/core/src/PxAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0904107fa90c090410 /* 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 */ - FFF2e29464b07ffde29464b0 /* Resources */ = { + FFF20cae9cd07fa90cae9cd0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -233,7 +233,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCe29464b07ffde29464b0 /* Frameworks */ = { + FFFC0cae9cd07fa90cae9cd0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -243,52 +243,52 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8e29464b07ffde29464b0 /* Sources */ = { + FFF80cae9cd07fa90cae9cd0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFe2194c387ffde2194c38, - FFFFe2194ca07ffde2194ca0, - FFFFe2194d087ffde2194d08, - FFFFe2194d707ffde2194d70, - FFFFe2194dd87ffde2194dd8, - FFFFe2194e407ffde2194e40, - FFFFe2194ea87ffde2194ea8, - FFFFe2194f107ffde2194f10, - FFFFe2194f787ffde2194f78, - FFFFe2194fe07ffde2194fe0, - FFFFe21950487ffde2195048, - FFFFe21950b07ffde21950b0, - FFFFe21951187ffde2195118, - FFFFe21951807ffde2195180, - FFFFe21951e87ffde21951e8, - FFFFe21952507ffde2195250, - FFFFe21952b87ffde21952b8, - FFFFe21953207ffde2195320, - FFFFe21953887ffde2195388, - FFFFe21953f07ffde21953f0, - FFFFe21954587ffde2195458, - FFFFe21954c07ffde21954c0, - FFFFe21955287ffde2195528, - FFFFe21955907ffde2195590, - FFFFe21955f87ffde21955f8, - FFFFe21958007ffde2195800, - FFFFe21958687ffde2195868, - FFFFe21960207ffde2196020, - FFFFe21960887ffde2196088, - FFFFe21960f07ffde21960f0, - FFFFe21961587ffde2196158, - FFFFe21961c07ffde21961c0, - FFFFe21962287ffde2196228, - FFFFe21962907ffde2196290, - FFFFe21962f87ffde21962f8, - FFFFe21963607ffde2196360, - FFFFe21965007ffde2196500, - FFFFe21965687ffde2196568, - FFFFe21965d07ffde21965d0, - FFFFe21966387ffde2196638, - FFFFe218eda87ffde218eda8, - FFFFe218ee107ffde218ee10, + FFFF0c091e387fa90c091e38, + FFFF0c091ea07fa90c091ea0, + FFFF0c091f087fa90c091f08, + FFFF0c091f707fa90c091f70, + FFFF0c091fd87fa90c091fd8, + FFFF0c0920407fa90c092040, + FFFF0c0920a87fa90c0920a8, + FFFF0c0921107fa90c092110, + FFFF0c0921787fa90c092178, + FFFF0c0921e07fa90c0921e0, + FFFF0c0922487fa90c092248, + FFFF0c0922b07fa90c0922b0, + FFFF0c0923187fa90c092318, + FFFF0c0923807fa90c092380, + FFFF0c0923e87fa90c0923e8, + FFFF0c0924507fa90c092450, + FFFF0c0924b87fa90c0924b8, + FFFF0c0925207fa90c092520, + FFFF0c0925887fa90c092588, + FFFF0c0925f07fa90c0925f0, + FFFF0c0926587fa90c092658, + FFFF0c0926c07fa90c0926c0, + FFFF0c0927287fa90c092728, + FFFF0c0927907fa90c092790, + FFFF0c0927f87fa90c0927f8, + FFFF0c092a007fa90c092a00, + FFFF0c092a687fa90c092a68, + FFFF0c0932207fa90c093220, + FFFF0c0932887fa90c093288, + FFFF0c0932f07fa90c0932f0, + FFFF0c0933587fa90c093358, + FFFF0c0933c07fa90c0933c0, + FFFF0c0934287fa90c093428, + FFFF0c0934907fa90c093490, + FFFF0c0934f87fa90c0934f8, + FFFF0c0935607fa90c093560, + FFFF0c0937007fa90c093700, + FFFF0c0937687fa90c093768, + FFFF0c0937d07fa90c0937d0, + FFFF0c0938387fa90c093838, + FFFF0c0903a87fa90c0903a8, + FFFF0c0904107fa90c090410, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -297,112 +297,112 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF4e2952c507ffde2952c50 /* PBXTargetDependency */ = { + FFF40caf2e607fa90caf2e60 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAe2f1a6b07ffde2f1a6b0 /* LowLevel */; - targetProxy = FFF5e2f1a6b07ffde2f1a6b0 /* PBXContainerItemProxy */; + target = FFFA0bc50de07fa90bc50de0 /* LowLevel */; + targetProxy = FFF50bc50de07fa90bc50de0 /* PBXContainerItemProxy */; }; - FFF4e2951e907ffde2951e90 /* PBXTargetDependency */ = { + FFF40caf32e07fa90caf32e0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAe2d334507ffde2d33450 /* LowLevelAABB */; - targetProxy = FFF5e2d334507ffde2d33450 /* PBXContainerItemProxy */; + target = FFFA0bb097007fa90bb09700 /* LowLevelAABB */; + targetProxy = FFF50bb097007fa90bb09700 /* PBXContainerItemProxy */; }; - FFF4e2952b607ffde2952b60 /* PBXTargetDependency */ = { + FFF40caefdd07fa90caefdd0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAe292cb407ffde292cb40 /* LowLevelCloth */; - targetProxy = FFF5e292cb407ffde292cb40 /* PBXContainerItemProxy */; + target = FFFA0be0eb007fa90be0eb00 /* LowLevelCloth */; + targetProxy = FFF50be0eb007fa90be0eb00 /* PBXContainerItemProxy */; }; - FFF4e2952b007ffde2952b00 /* PBXTargetDependency */ = { + FFF40caf33407fa90caf3340 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAe2d544f07ffde2d544f0 /* LowLevelDynamics */; - targetProxy = FFF5e2d544f07ffde2d544f0 /* PBXContainerItemProxy */; + target = FFFA0bc6a7707fa90bc6a770 /* LowLevelDynamics */; + targetProxy = FFF50bc6a7707fa90bc6a770 /* PBXContainerItemProxy */; }; - FFF4e294f2c07ffde294f2c0 /* PBXTargetDependency */ = { + FFF40caefe307fa90caefe30 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAe1484d707ffde1484d70 /* LowLevelParticles */; - targetProxy = FFF5e1484d707ffde1484d70 /* PBXContainerItemProxy */; + target = FFFA0bc8f2607fa90bc8f260 /* LowLevelParticles */; + targetProxy = FFF50bc8f2607fa90bc8f260 /* PBXContainerItemProxy */; }; - FFF4e2952bf07ffde2952bf0 /* PBXTargetDependency */ = { + FFF40caee9207fa90caee920 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAe2c17a107ffde2c17a10 /* PhysXCommon */; - targetProxy = FFF5e2c17a107ffde2c17a10 /* PBXContainerItemProxy */; + target = FFFA0b897c207fa90b897c20 /* PhysXCommon */; + targetProxy = FFF50b897c207fa90b897c20 /* PBXContainerItemProxy */; }; - FFF4e29467a07ffde29467a0 /* PBXTargetDependency */ = { + FFF40c8f4e207fa90c8f4e20 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAe2c0b7d07ffde2c0b7d0 /* PxFoundation */; - targetProxy = FFF5e2c0b7d07ffde2c0b7d0 /* PBXContainerItemProxy */; + target = FFFA0b8818007fa90b881800 /* PxFoundation */; + targetProxy = FFF50b8818007fa90b881800 /* PBXContainerItemProxy */; }; - FFF4e29464507ffde2946450 /* PBXTargetDependency */ = { + FFF40cae1a907fa90cae1a90 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAe29691807ffde2969180 /* PxPvdSDK */; - targetProxy = FFF5e29691807ffde2969180 /* PBXContainerItemProxy */; + target = FFFA0bc33a807fa90bc33a80 /* PxPvdSDK */; + targetProxy = FFF50bc33a807fa90bc33a80 /* PBXContainerItemProxy */; }; - FFF4e294f3b07ffde294f3b0 /* PBXTargetDependency */ = { + FFF40caf3c307fa90caf3c30 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAe2f4cec07ffde2f4cec0 /* PxTask */; - targetProxy = FFF5e2f4cec07ffde2f4cec0 /* PBXContainerItemProxy */; + target = FFFA0c8f73507fa90c8f7350 /* PxTask */; + targetProxy = FFF50c8f73507fa90c8f7350 /* PBXContainerItemProxy */; }; - FFF4e294f3207ffde294f320 /* PBXTargetDependency */ = { + FFF40caf3ba07fa90caf3ba0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAe450b7207ffde450b720 /* SceneQuery */; - targetProxy = FFF5e450b7207ffde450b720 /* PBXContainerItemProxy */; + target = FFFA0cb173f07fa90cb173f0 /* SceneQuery */; + targetProxy = FFF50cb173f07fa90cb173f0 /* PBXContainerItemProxy */; }; - FFF4e294f3807ffde294f380 /* PBXTargetDependency */ = { + FFF40caf3c007fa90caf3c00 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAe450fbf07ffde450fbf0 /* SimulationController */; - targetProxy = FFF5e450fbf07ffde450fbf0 /* PBXContainerItemProxy */; + target = FFFA0cb1ba307fa90cb1ba30 /* SimulationController */; + targetProxy = FFF50cb1ba307fa90cb1ba30 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PhysXCharacterKinematic */ - FFFFe29543507ffde2954350 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFDe29617f07ffde29617f0 /* PhysXExtensions */; }; - FFFFe21982787ffde2198278 /* CctBoxController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21982787ffde2198278 /* CctBoxController.cpp */; }; - FFFFe21982e07ffde21982e0 /* CctCapsuleController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21982e07ffde21982e0 /* CctCapsuleController.cpp */; }; - FFFFe21983487ffde2198348 /* CctCharacterController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21983487ffde2198348 /* CctCharacterController.cpp */; }; - FFFFe21983b07ffde21983b0 /* CctCharacterControllerCallbacks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21983b07ffde21983b0 /* CctCharacterControllerCallbacks.cpp */; }; - FFFFe21984187ffde2198418 /* CctCharacterControllerManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21984187ffde2198418 /* CctCharacterControllerManager.cpp */; }; - FFFFe21984807ffde2198480 /* CctController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21984807ffde2198480 /* CctController.cpp */; }; - FFFFe21984e87ffde21984e8 /* CctObstacleContext.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21984e87ffde21984e8 /* CctObstacleContext.cpp */; }; - FFFFe21985507ffde2198550 /* CctSweptBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21985507ffde2198550 /* CctSweptBox.cpp */; }; - FFFFe21985b87ffde21985b8 /* CctSweptCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21985b87ffde21985b8 /* CctSweptCapsule.cpp */; }; - FFFFe21986207ffde2198620 /* CctSweptVolume.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21986207ffde2198620 /* CctSweptVolume.cpp */; }; + FFFF0caf58707fa90caf5870 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD0cb04a207fa90cb04a20 /* PhysXExtensions */; }; + FFFF0c0980787fa90c098078 /* CctBoxController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0980787fa90c098078 /* CctBoxController.cpp */; }; + FFFF0c0980e07fa90c0980e0 /* CctCapsuleController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0980e07fa90c0980e0 /* CctCapsuleController.cpp */; }; + FFFF0c0981487fa90c098148 /* CctCharacterController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0981487fa90c098148 /* CctCharacterController.cpp */; }; + FFFF0c0981b07fa90c0981b0 /* CctCharacterControllerCallbacks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0981b07fa90c0981b0 /* CctCharacterControllerCallbacks.cpp */; }; + FFFF0c0982187fa90c098218 /* CctCharacterControllerManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0982187fa90c098218 /* CctCharacterControllerManager.cpp */; }; + FFFF0c0982807fa90c098280 /* CctController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0982807fa90c098280 /* CctController.cpp */; }; + FFFF0c0982e87fa90c0982e8 /* CctObstacleContext.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0982e87fa90c0982e8 /* CctObstacleContext.cpp */; }; + FFFF0c0983507fa90c098350 /* CctSweptBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0983507fa90c098350 /* CctSweptBox.cpp */; }; + FFFF0c0983b87fa90c0983b8 /* CctSweptCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0983b87fa90c0983b8 /* CctSweptCapsule.cpp */; }; + FFFF0c0984207fa90c098420 /* CctSweptVolume.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0984207fa90c098420 /* CctSweptVolume.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDe294ef707ffde294ef70 /* PhysXCharacterKinematic */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCharacterKinematic"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDe29560807ffde2956080 /* PxBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBoxController.h"; path = "../../../Include/characterkinematic/PxBoxController.h"; sourceTree = SOURCE_ROOT; }; - FFFDe29560e87ffde29560e8 /* PxCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCapsuleController.h"; path = "../../../Include/characterkinematic/PxCapsuleController.h"; sourceTree = SOURCE_ROOT; }; - FFFDe29561507ffde2956150 /* PxCharacter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCharacter.h"; path = "../../../Include/characterkinematic/PxCharacter.h"; sourceTree = SOURCE_ROOT; }; - FFFDe29561b87ffde29561b8 /* PxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxController.h"; path = "../../../Include/characterkinematic/PxController.h"; sourceTree = SOURCE_ROOT; }; - FFFDe29562207ffde2956220 /* PxControllerBehavior.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerBehavior.h"; path = "../../../Include/characterkinematic/PxControllerBehavior.h"; sourceTree = SOURCE_ROOT; }; - FFFDe29562887ffde2956288 /* PxControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerManager.h"; path = "../../../Include/characterkinematic/PxControllerManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDe29562f07ffde29562f0 /* PxControllerObstacles.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerObstacles.h"; path = "../../../Include/characterkinematic/PxControllerObstacles.h"; sourceTree = SOURCE_ROOT; }; - FFFDe29563587ffde2956358 /* PxExtended.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtended.h"; path = "../../../Include/characterkinematic/PxExtended.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2197e007ffde2197e00 /* CctBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.h"; path = "../../PhysXCharacterKinematic/src/CctBoxController.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2197e687ffde2197e68 /* CctCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.h"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2197ed07ffde2197ed0 /* CctCharacterController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2197f387ffde2197f38 /* CctCharacterControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2197fa07ffde2197fa0 /* CctController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.h"; path = "../../PhysXCharacterKinematic/src/CctController.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21980087ffde2198008 /* CctInternalStructs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctInternalStructs.h"; path = "../../PhysXCharacterKinematic/src/CctInternalStructs.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21980707ffde2198070 /* CctObstacleContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.h"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21980d87ffde21980d8 /* CctSweptBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.h"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21981407ffde2198140 /* CctSweptCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.h"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21981a87ffde21981a8 /* CctSweptVolume.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.h"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21982107ffde2198210 /* CctUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctUtils.h"; path = "../../PhysXCharacterKinematic/src/CctUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21982787ffde2198278 /* CctBoxController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.cpp"; path = "../../PhysXCharacterKinematic/src/CctBoxController.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21982e07ffde21982e0 /* CctCapsuleController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21983487ffde2198348 /* CctCharacterController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21983b07ffde21983b0 /* CctCharacterControllerCallbacks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerCallbacks.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerCallbacks.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21984187ffde2198418 /* CctCharacterControllerManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21984807ffde2198480 /* CctController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.cpp"; path = "../../PhysXCharacterKinematic/src/CctController.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21984e87ffde21984e8 /* CctObstacleContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.cpp"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21985507ffde2198550 /* CctSweptBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21985b87ffde21985b8 /* CctSweptCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21986207ffde2198620 /* CctSweptVolume.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0caf3c407fa90caf3c40 /* PhysXCharacterKinematic */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCharacterKinematic"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD0caf6af07fa90caf6af0 /* PxBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBoxController.h"; path = "../../../Include/characterkinematic/PxBoxController.h"; sourceTree = SOURCE_ROOT; }; + FFFD0caf6b587fa90caf6b58 /* PxCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCapsuleController.h"; path = "../../../Include/characterkinematic/PxCapsuleController.h"; sourceTree = SOURCE_ROOT; }; + FFFD0caf6bc07fa90caf6bc0 /* PxCharacter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCharacter.h"; path = "../../../Include/characterkinematic/PxCharacter.h"; sourceTree = SOURCE_ROOT; }; + FFFD0caf6c287fa90caf6c28 /* PxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxController.h"; path = "../../../Include/characterkinematic/PxController.h"; sourceTree = SOURCE_ROOT; }; + FFFD0caf6c907fa90caf6c90 /* PxControllerBehavior.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerBehavior.h"; path = "../../../Include/characterkinematic/PxControllerBehavior.h"; sourceTree = SOURCE_ROOT; }; + FFFD0caf6cf87fa90caf6cf8 /* PxControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerManager.h"; path = "../../../Include/characterkinematic/PxControllerManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD0caf6d607fa90caf6d60 /* PxControllerObstacles.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerObstacles.h"; path = "../../../Include/characterkinematic/PxControllerObstacles.h"; sourceTree = SOURCE_ROOT; }; + FFFD0caf6dc87fa90caf6dc8 /* PxExtended.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtended.h"; path = "../../../Include/characterkinematic/PxExtended.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c097c007fa90c097c00 /* CctBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.h"; path = "../../PhysXCharacterKinematic/src/CctBoxController.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c097c687fa90c097c68 /* CctCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.h"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c097cd07fa90c097cd0 /* CctCharacterController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c097d387fa90c097d38 /* CctCharacterControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c097da07fa90c097da0 /* CctController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.h"; path = "../../PhysXCharacterKinematic/src/CctController.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c097e087fa90c097e08 /* CctInternalStructs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctInternalStructs.h"; path = "../../PhysXCharacterKinematic/src/CctInternalStructs.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c097e707fa90c097e70 /* CctObstacleContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.h"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c097ed87fa90c097ed8 /* CctSweptBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.h"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c097f407fa90c097f40 /* CctSweptCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.h"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c097fa87fa90c097fa8 /* CctSweptVolume.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.h"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0980107fa90c098010 /* CctUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctUtils.h"; path = "../../PhysXCharacterKinematic/src/CctUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0980787fa90c098078 /* CctBoxController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.cpp"; path = "../../PhysXCharacterKinematic/src/CctBoxController.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0980e07fa90c0980e0 /* CctCapsuleController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0981487fa90c098148 /* CctCharacterController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0981b07fa90c0981b0 /* CctCharacterControllerCallbacks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerCallbacks.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerCallbacks.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0982187fa90c098218 /* CctCharacterControllerManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0982807fa90c098280 /* CctController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.cpp"; path = "../../PhysXCharacterKinematic/src/CctController.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0982e87fa90c0982e8 /* CctObstacleContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.cpp"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0983507fa90c098350 /* CctSweptBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0983b87fa90c0983b8 /* CctSweptCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0984207fa90c098420 /* CctSweptVolume.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2e294ef707ffde294ef70 /* Resources */ = { + FFF20caf3c407fa90caf3c40 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -412,7 +412,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCe294ef707ffde294ef70 /* Frameworks */ = { + FFFC0caf3c407fa90caf3c40 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -422,20 +422,20 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8e294ef707ffde294ef70 /* Sources */ = { + FFF80caf3c407fa90caf3c40 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFe21982787ffde2198278, - FFFFe21982e07ffde21982e0, - FFFFe21983487ffde2198348, - FFFFe21983b07ffde21983b0, - FFFFe21984187ffde2198418, - FFFFe21984807ffde2198480, - FFFFe21984e87ffde21984e8, - FFFFe21985507ffde2198550, - FFFFe21985b87ffde21985b8, - FFFFe21986207ffde2198620, + FFFF0c0980787fa90c098078, + FFFF0c0980e07fa90c0980e0, + FFFF0c0981487fa90c098148, + FFFF0c0981b07fa90c0981b0, + FFFF0c0982187fa90c098218, + FFFF0c0982807fa90c098280, + FFFF0c0982e87fa90c0982e8, + FFFF0c0983507fa90c098350, + FFFF0c0983b87fa90c0983b8, + FFFF0c0984207fa90c098420, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -444,91 +444,91 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF4e2954dc07ffde2954dc0 /* PBXTargetDependency */ = { + FFF40caf4d707fa90caf4d70 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAe2c17a107ffde2c17a10 /* PhysXCommon */; - targetProxy = FFF5e2c17a107ffde2c17a10 /* PBXContainerItemProxy */; + target = FFFA0b897c207fa90b897c20 /* PhysXCommon */; + targetProxy = FFF50b897c207fa90b897c20 /* PBXContainerItemProxy */; }; - FFF4e29543507ffde2954350 /* PBXTargetDependency */ = { + FFF40caf58707fa90caf5870 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAe29617f07ffde29617f0 /* PhysXExtensions */; - targetProxy = FFF5e29617f07ffde29617f0 /* PBXContainerItemProxy */; + target = FFFA0cb04a207fa90cb04a20 /* PhysXExtensions */; + targetProxy = FFF50cb04a207fa90cb04a20 /* PBXContainerItemProxy */; }; - FFF4e29555207ffde2955520 /* PBXTargetDependency */ = { + FFF40caf61007fa90caf6100 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAe2c0b7d07ffde2c0b7d0 /* PxFoundation */; - targetProxy = FFF5e2c0b7d07ffde2c0b7d0 /* PBXContainerItemProxy */; + target = FFFA0b8818007fa90b881800 /* PxFoundation */; + targetProxy = FFF50b8818007fa90b881800 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PhysXVehicle */ - FFFFe219c4087ffde219c408 /* PxVehicleComponents.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219c4087ffde219c408 /* PxVehicleComponents.cpp */; }; - FFFFe219c4707ffde219c470 /* PxVehicleDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219c4707ffde219c470 /* PxVehicleDrive.cpp */; }; - FFFFe219c4d87ffde219c4d8 /* PxVehicleDrive4W.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219c4d87ffde219c4d8 /* PxVehicleDrive4W.cpp */; }; - FFFFe219c5407ffde219c540 /* PxVehicleDriveNW.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219c5407ffde219c540 /* PxVehicleDriveNW.cpp */; }; - FFFFe219c5a87ffde219c5a8 /* PxVehicleDriveTank.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219c5a87ffde219c5a8 /* PxVehicleDriveTank.cpp */; }; - FFFFe219c6107ffde219c610 /* PxVehicleMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219c6107ffde219c610 /* PxVehicleMetaData.cpp */; }; - FFFFe219c6787ffde219c678 /* PxVehicleNoDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219c6787ffde219c678 /* PxVehicleNoDrive.cpp */; }; - FFFFe219c6e07ffde219c6e0 /* PxVehicleSDK.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219c6e07ffde219c6e0 /* PxVehicleSDK.cpp */; }; - FFFFe219c7487ffde219c748 /* PxVehicleSerialization.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219c7487ffde219c748 /* PxVehicleSerialization.cpp */; }; - FFFFe219c7b07ffde219c7b0 /* PxVehicleSuspWheelTire4.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219c7b07ffde219c7b0 /* PxVehicleSuspWheelTire4.cpp */; }; - FFFFe219c8187ffde219c818 /* PxVehicleTireFriction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219c8187ffde219c818 /* PxVehicleTireFriction.cpp */; }; - FFFFe219c8807ffde219c880 /* PxVehicleUpdate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219c8807ffde219c880 /* PxVehicleUpdate.cpp */; }; - FFFFe219c8e87ffde219c8e8 /* PxVehicleWheels.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219c8e87ffde219c8e8 /* PxVehicleWheels.cpp */; }; - FFFFe219c9507ffde219c950 /* VehicleUtilControl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219c9507ffde219c950 /* VehicleUtilControl.cpp */; }; - FFFFe219c9b87ffde219c9b8 /* VehicleUtilSetup.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219c9b87ffde219c9b8 /* VehicleUtilSetup.cpp */; }; - FFFFe219ca207ffde219ca20 /* VehicleUtilTelemetry.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219ca207ffde219ca20 /* VehicleUtilTelemetry.cpp */; }; - FFFFe2961be87ffde2961be8 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDe2961be87ffde2961be8 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */; }; - FFFFe2961c507ffde2961c50 /* src/PxVehicleMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDe2961c507ffde2961c50 /* src/PxVehicleMetaDataObjects.cpp */; }; + FFFF0c09ce087fa90c09ce08 /* PxVehicleComponents.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c09ce087fa90c09ce08 /* PxVehicleComponents.cpp */; }; + FFFF0c09ce707fa90c09ce70 /* PxVehicleDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c09ce707fa90c09ce70 /* PxVehicleDrive.cpp */; }; + FFFF0c09ced87fa90c09ced8 /* PxVehicleDrive4W.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c09ced87fa90c09ced8 /* PxVehicleDrive4W.cpp */; }; + FFFF0c09cf407fa90c09cf40 /* PxVehicleDriveNW.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c09cf407fa90c09cf40 /* PxVehicleDriveNW.cpp */; }; + FFFF0c09cfa87fa90c09cfa8 /* PxVehicleDriveTank.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c09cfa87fa90c09cfa8 /* PxVehicleDriveTank.cpp */; }; + FFFF0c09d0107fa90c09d010 /* PxVehicleMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c09d0107fa90c09d010 /* PxVehicleMetaData.cpp */; }; + FFFF0c09d0787fa90c09d078 /* PxVehicleNoDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c09d0787fa90c09d078 /* PxVehicleNoDrive.cpp */; }; + FFFF0c09d0e07fa90c09d0e0 /* PxVehicleSDK.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c09d0e07fa90c09d0e0 /* PxVehicleSDK.cpp */; }; + FFFF0c09d1487fa90c09d148 /* PxVehicleSerialization.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c09d1487fa90c09d148 /* PxVehicleSerialization.cpp */; }; + FFFF0c09d1b07fa90c09d1b0 /* PxVehicleSuspWheelTire4.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c09d1b07fa90c09d1b0 /* PxVehicleSuspWheelTire4.cpp */; }; + FFFF0c09d2187fa90c09d218 /* PxVehicleTireFriction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c09d2187fa90c09d218 /* PxVehicleTireFriction.cpp */; }; + FFFF0c09d2807fa90c09d280 /* PxVehicleUpdate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c09d2807fa90c09d280 /* PxVehicleUpdate.cpp */; }; + FFFF0c09d2e87fa90c09d2e8 /* PxVehicleWheels.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c09d2e87fa90c09d2e8 /* PxVehicleWheels.cpp */; }; + FFFF0c09d3507fa90c09d350 /* VehicleUtilControl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c09d3507fa90c09d350 /* VehicleUtilControl.cpp */; }; + FFFF0c09d3b87fa90c09d3b8 /* VehicleUtilSetup.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c09d3b87fa90c09d3b8 /* VehicleUtilSetup.cpp */; }; + FFFF0c09d4207fa90c09d420 /* VehicleUtilTelemetry.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c09d4207fa90c09d420 /* VehicleUtilTelemetry.cpp */; }; + FFFF0cb068f87fa90cb068f8 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD0cb068f87fa90cb068f8 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */; }; + FFFF0cb069607fa90cb06960 /* src/PxVehicleMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD0cb069607fa90cb06960 /* src/PxVehicleMetaDataObjects.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDe29504707ffde2950470 /* PhysXVehicle */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXVehicle"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDe219a4007ffde219a400 /* PxVehicleComponents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.h"; path = "../../../Include/vehicle/PxVehicleComponents.h"; sourceTree = SOURCE_ROOT; }; - FFFDe219a4687ffde219a468 /* PxVehicleDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.h"; path = "../../../Include/vehicle/PxVehicleDrive.h"; sourceTree = SOURCE_ROOT; }; - FFFDe219a4d07ffde219a4d0 /* PxVehicleDrive4W.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.h"; path = "../../../Include/vehicle/PxVehicleDrive4W.h"; sourceTree = SOURCE_ROOT; }; - FFFDe219a5387ffde219a538 /* PxVehicleDriveNW.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.h"; path = "../../../Include/vehicle/PxVehicleDriveNW.h"; sourceTree = SOURCE_ROOT; }; - FFFDe219a5a07ffde219a5a0 /* PxVehicleDriveTank.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.h"; path = "../../../Include/vehicle/PxVehicleDriveTank.h"; sourceTree = SOURCE_ROOT; }; - FFFDe219a6087ffde219a608 /* PxVehicleNoDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.h"; path = "../../../Include/vehicle/PxVehicleNoDrive.h"; sourceTree = SOURCE_ROOT; }; - FFFDe219a6707ffde219a670 /* PxVehicleSDK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.h"; path = "../../../Include/vehicle/PxVehicleSDK.h"; sourceTree = SOURCE_ROOT; }; - FFFDe219a6d87ffde219a6d8 /* PxVehicleShaders.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleShaders.h"; path = "../../../Include/vehicle/PxVehicleShaders.h"; sourceTree = SOURCE_ROOT; }; - FFFDe219a7407ffde219a740 /* PxVehicleTireFriction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.h"; path = "../../../Include/vehicle/PxVehicleTireFriction.h"; sourceTree = SOURCE_ROOT; }; - FFFDe219a7a87ffde219a7a8 /* PxVehicleUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.h"; path = "../../../Include/vehicle/PxVehicleUpdate.h"; sourceTree = SOURCE_ROOT; }; - FFFDe219a8107ffde219a810 /* PxVehicleUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtil.h"; path = "../../../Include/vehicle/PxVehicleUtil.h"; sourceTree = SOURCE_ROOT; }; - FFFDe219a8787ffde219a878 /* PxVehicleUtilControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilControl.h"; path = "../../../Include/vehicle/PxVehicleUtilControl.h"; sourceTree = SOURCE_ROOT; }; - FFFDe219a8e07ffde219a8e0 /* PxVehicleUtilSetup.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilSetup.h"; path = "../../../Include/vehicle/PxVehicleUtilSetup.h"; sourceTree = SOURCE_ROOT; }; - FFFDe219a9487ffde219a948 /* PxVehicleUtilTelemetry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilTelemetry.h"; path = "../../../Include/vehicle/PxVehicleUtilTelemetry.h"; sourceTree = SOURCE_ROOT; }; - FFFDe219a9b07ffde219a9b0 /* PxVehicleWheels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.h"; path = "../../../Include/vehicle/PxVehicleWheels.h"; sourceTree = SOURCE_ROOT; }; - FFFDe219c2007ffde219c200 /* PxVehicleDefaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDefaults.h"; path = "../../PhysXVehicle/src/PxVehicleDefaults.h"; sourceTree = SOURCE_ROOT; }; - FFFDe219c2687ffde219c268 /* PxVehicleLinearMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleLinearMath.h"; path = "../../PhysXVehicle/src/PxVehicleLinearMath.h"; sourceTree = SOURCE_ROOT; }; - FFFDe219c2d07ffde219c2d0 /* PxVehicleSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.h"; path = "../../PhysXVehicle/src/PxVehicleSerialization.h"; sourceTree = SOURCE_ROOT; }; - FFFDe219c3387ffde219c338 /* PxVehicleSuspLimitConstraintShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspLimitConstraintShader.h"; path = "../../PhysXVehicle/src/PxVehicleSuspLimitConstraintShader.h"; sourceTree = SOURCE_ROOT; }; - FFFDe219c3a07ffde219c3a0 /* PxVehicleSuspWheelTire4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.h"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.h"; sourceTree = SOURCE_ROOT; }; - FFFDe219c4087ffde219c408 /* PxVehicleComponents.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.cpp"; path = "../../PhysXVehicle/src/PxVehicleComponents.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe219c4707ffde219c470 /* PxVehicleDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe219c4d87ffde219c4d8 /* PxVehicleDrive4W.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive4W.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe219c5407ffde219c540 /* PxVehicleDriveNW.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveNW.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe219c5a87ffde219c5a8 /* PxVehicleDriveTank.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveTank.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe219c6107ffde219c610 /* PxVehicleMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleMetaData.cpp"; path = "../../PhysXVehicle/src/PxVehicleMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe219c6787ffde219c678 /* PxVehicleNoDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleNoDrive.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe219c6e07ffde219c6e0 /* PxVehicleSDK.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.cpp"; path = "../../PhysXVehicle/src/PxVehicleSDK.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe219c7487ffde219c748 /* PxVehicleSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.cpp"; path = "../../PhysXVehicle/src/PxVehicleSerialization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe219c7b07ffde219c7b0 /* PxVehicleSuspWheelTire4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.cpp"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe219c8187ffde219c818 /* PxVehicleTireFriction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.cpp"; path = "../../PhysXVehicle/src/PxVehicleTireFriction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe219c8807ffde219c880 /* PxVehicleUpdate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.cpp"; path = "../../PhysXVehicle/src/PxVehicleUpdate.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe219c8e87ffde219c8e8 /* PxVehicleWheels.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.cpp"; path = "../../PhysXVehicle/src/PxVehicleWheels.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe219c9507ffde219c950 /* VehicleUtilControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilControl.cpp"; path = "../../PhysXVehicle/src/VehicleUtilControl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe219c9b87ffde219c9b8 /* VehicleUtilSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilSetup.cpp"; path = "../../PhysXVehicle/src/VehicleUtilSetup.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe219ca207ffde219ca20 /* VehicleUtilTelemetry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilTelemetry.cpp"; path = "../../PhysXVehicle/src/VehicleUtilTelemetry.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe2961ab07ffde2961ab0 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2961b187ffde2961b18 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2961b807ffde2961b80 /* include/PxVehicleMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2961be87ffde2961be8 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXVehicle/src/PhysXMetaData/src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe2961c507ffde2961c50 /* src/PxVehicleMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxVehicleMetaDataObjects.cpp"; path = "../../PhysXVehicle/src/PhysXMetaData/src/PxVehicleMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0caf0ea07fa90caf0ea0 /* PhysXVehicle */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXVehicle"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD0c09aa007fa90c09aa00 /* PxVehicleComponents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.h"; path = "../../../Include/vehicle/PxVehicleComponents.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c09aa687fa90c09aa68 /* PxVehicleDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.h"; path = "../../../Include/vehicle/PxVehicleDrive.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c09aad07fa90c09aad0 /* PxVehicleDrive4W.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.h"; path = "../../../Include/vehicle/PxVehicleDrive4W.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c09ab387fa90c09ab38 /* PxVehicleDriveNW.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.h"; path = "../../../Include/vehicle/PxVehicleDriveNW.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c09aba07fa90c09aba0 /* PxVehicleDriveTank.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.h"; path = "../../../Include/vehicle/PxVehicleDriveTank.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c09ac087fa90c09ac08 /* PxVehicleNoDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.h"; path = "../../../Include/vehicle/PxVehicleNoDrive.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c09ac707fa90c09ac70 /* PxVehicleSDK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.h"; path = "../../../Include/vehicle/PxVehicleSDK.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c09acd87fa90c09acd8 /* PxVehicleShaders.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleShaders.h"; path = "../../../Include/vehicle/PxVehicleShaders.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c09ad407fa90c09ad40 /* PxVehicleTireFriction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.h"; path = "../../../Include/vehicle/PxVehicleTireFriction.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c09ada87fa90c09ada8 /* PxVehicleUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.h"; path = "../../../Include/vehicle/PxVehicleUpdate.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c09ae107fa90c09ae10 /* PxVehicleUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtil.h"; path = "../../../Include/vehicle/PxVehicleUtil.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c09ae787fa90c09ae78 /* PxVehicleUtilControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilControl.h"; path = "../../../Include/vehicle/PxVehicleUtilControl.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c09aee07fa90c09aee0 /* PxVehicleUtilSetup.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilSetup.h"; path = "../../../Include/vehicle/PxVehicleUtilSetup.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c09af487fa90c09af48 /* PxVehicleUtilTelemetry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilTelemetry.h"; path = "../../../Include/vehicle/PxVehicleUtilTelemetry.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c09afb07fa90c09afb0 /* PxVehicleWheels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.h"; path = "../../../Include/vehicle/PxVehicleWheels.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c09cc007fa90c09cc00 /* PxVehicleDefaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDefaults.h"; path = "../../PhysXVehicle/src/PxVehicleDefaults.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c09cc687fa90c09cc68 /* PxVehicleLinearMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleLinearMath.h"; path = "../../PhysXVehicle/src/PxVehicleLinearMath.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c09ccd07fa90c09ccd0 /* PxVehicleSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.h"; path = "../../PhysXVehicle/src/PxVehicleSerialization.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c09cd387fa90c09cd38 /* PxVehicleSuspLimitConstraintShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspLimitConstraintShader.h"; path = "../../PhysXVehicle/src/PxVehicleSuspLimitConstraintShader.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c09cda07fa90c09cda0 /* PxVehicleSuspWheelTire4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.h"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c09ce087fa90c09ce08 /* PxVehicleComponents.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.cpp"; path = "../../PhysXVehicle/src/PxVehicleComponents.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c09ce707fa90c09ce70 /* PxVehicleDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c09ced87fa90c09ced8 /* PxVehicleDrive4W.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive4W.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c09cf407fa90c09cf40 /* PxVehicleDriveNW.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveNW.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c09cfa87fa90c09cfa8 /* PxVehicleDriveTank.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveTank.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c09d0107fa90c09d010 /* PxVehicleMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleMetaData.cpp"; path = "../../PhysXVehicle/src/PxVehicleMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c09d0787fa90c09d078 /* PxVehicleNoDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleNoDrive.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c09d0e07fa90c09d0e0 /* PxVehicleSDK.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.cpp"; path = "../../PhysXVehicle/src/PxVehicleSDK.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c09d1487fa90c09d148 /* PxVehicleSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.cpp"; path = "../../PhysXVehicle/src/PxVehicleSerialization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c09d1b07fa90c09d1b0 /* PxVehicleSuspWheelTire4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.cpp"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c09d2187fa90c09d218 /* PxVehicleTireFriction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.cpp"; path = "../../PhysXVehicle/src/PxVehicleTireFriction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c09d2807fa90c09d280 /* PxVehicleUpdate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.cpp"; path = "../../PhysXVehicle/src/PxVehicleUpdate.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c09d2e87fa90c09d2e8 /* PxVehicleWheels.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.cpp"; path = "../../PhysXVehicle/src/PxVehicleWheels.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c09d3507fa90c09d350 /* VehicleUtilControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilControl.cpp"; path = "../../PhysXVehicle/src/VehicleUtilControl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c09d3b87fa90c09d3b8 /* VehicleUtilSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilSetup.cpp"; path = "../../PhysXVehicle/src/VehicleUtilSetup.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c09d4207fa90c09d420 /* VehicleUtilTelemetry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilTelemetry.cpp"; path = "../../PhysXVehicle/src/VehicleUtilTelemetry.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0cb067c07fa90cb067c0 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; + FFFD0cb068287fa90cb06828 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFD0cb068907fa90cb06890 /* include/PxVehicleMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFD0cb068f87fa90cb068f8 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXVehicle/src/PhysXMetaData/src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0cb069607fa90cb06960 /* 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 */ - FFF2e29504707ffde2950470 /* Resources */ = { + FFF20caf0ea07fa90caf0ea0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -538,7 +538,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCe29504707ffde2950470 /* Frameworks */ = { + FFFC0caf0ea07fa90caf0ea0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -548,28 +548,28 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8e29504707ffde2950470 /* Sources */ = { + FFF80caf0ea07fa90caf0ea0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFe219c4087ffde219c408, - FFFFe219c4707ffde219c470, - FFFFe219c4d87ffde219c4d8, - FFFFe219c5407ffde219c540, - FFFFe219c5a87ffde219c5a8, - FFFFe219c6107ffde219c610, - FFFFe219c6787ffde219c678, - FFFFe219c6e07ffde219c6e0, - FFFFe219c7487ffde219c748, - FFFFe219c7b07ffde219c7b0, - FFFFe219c8187ffde219c818, - FFFFe219c8807ffde219c880, - FFFFe219c8e87ffde219c8e8, - FFFFe219c9507ffde219c950, - FFFFe219c9b87ffde219c9b8, - FFFFe219ca207ffde219ca20, - FFFFe2961be87ffde2961be8, - FFFFe2961c507ffde2961c50, + FFFF0c09ce087fa90c09ce08, + FFFF0c09ce707fa90c09ce70, + FFFF0c09ced87fa90c09ced8, + FFFF0c09cf407fa90c09cf40, + FFFF0c09cfa87fa90c09cfa8, + FFFF0c09d0107fa90c09d010, + FFFF0c09d0787fa90c09d078, + FFFF0c09d0e07fa90c09d0e0, + FFFF0c09d1487fa90c09d148, + FFFF0c09d1b07fa90c09d1b0, + FFFF0c09d2187fa90c09d218, + FFFF0c09d2807fa90c09d280, + FFFF0c09d2e87fa90c09d2e8, + FFFF0c09d3507fa90c09d350, + FFFF0c09d3b87fa90c09d3b8, + FFFF0c09d4207fa90c09d420, + FFFF0cb068f87fa90cb068f8, + FFFF0cb069607fa90cb06960, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -581,220 +581,220 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PhysXExtensions */ - FFFFe219eae87ffde219eae8 /* ExtBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219eae87ffde219eae8 /* ExtBroadPhase.cpp */; }; - FFFFe219eb507ffde219eb50 /* ExtClothFabricCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219eb507ffde219eb50 /* ExtClothFabricCooker.cpp */; }; - FFFFe219ebb87ffde219ebb8 /* ExtClothGeodesicTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219ebb87ffde219ebb8 /* ExtClothGeodesicTetherCooker.cpp */; }; - FFFFe219ec207ffde219ec20 /* ExtClothMeshQuadifier.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219ec207ffde219ec20 /* ExtClothMeshQuadifier.cpp */; }; - FFFFe219ec887ffde219ec88 /* ExtClothSimpleTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219ec887ffde219ec88 /* ExtClothSimpleTetherCooker.cpp */; }; - FFFFe219ecf07ffde219ecf0 /* ExtCollection.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219ecf07ffde219ecf0 /* ExtCollection.cpp */; }; - FFFFe219ed587ffde219ed58 /* ExtConvexMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219ed587ffde219ed58 /* ExtConvexMeshExt.cpp */; }; - FFFFe219edc07ffde219edc0 /* ExtCpuWorkerThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219edc07ffde219edc0 /* ExtCpuWorkerThread.cpp */; }; - FFFFe219ee287ffde219ee28 /* ExtD6Joint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219ee287ffde219ee28 /* ExtD6Joint.cpp */; }; - FFFFe219ee907ffde219ee90 /* ExtD6JointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219ee907ffde219ee90 /* ExtD6JointSolverPrep.cpp */; }; - FFFFe219eef87ffde219eef8 /* ExtDefaultCpuDispatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219eef87ffde219eef8 /* ExtDefaultCpuDispatcher.cpp */; }; - FFFFe219ef607ffde219ef60 /* ExtDefaultErrorCallback.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219ef607ffde219ef60 /* ExtDefaultErrorCallback.cpp */; }; - FFFFe219efc87ffde219efc8 /* ExtDefaultSimulationFilterShader.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219efc87ffde219efc8 /* ExtDefaultSimulationFilterShader.cpp */; }; - FFFFe219f0307ffde219f030 /* ExtDefaultStreams.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219f0307ffde219f030 /* ExtDefaultStreams.cpp */; }; - FFFFe219f0987ffde219f098 /* ExtDistanceJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219f0987ffde219f098 /* ExtDistanceJoint.cpp */; }; - FFFFe219f1007ffde219f100 /* ExtDistanceJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219f1007ffde219f100 /* ExtDistanceJointSolverPrep.cpp */; }; - FFFFe219f1687ffde219f168 /* ExtExtensions.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219f1687ffde219f168 /* ExtExtensions.cpp */; }; - FFFFe219f1d07ffde219f1d0 /* ExtFixedJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219f1d07ffde219f1d0 /* ExtFixedJoint.cpp */; }; - FFFFe219f2387ffde219f238 /* ExtFixedJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219f2387ffde219f238 /* ExtFixedJointSolverPrep.cpp */; }; - FFFFe219f2a07ffde219f2a0 /* ExtJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219f2a07ffde219f2a0 /* ExtJoint.cpp */; }; - FFFFe219f3087ffde219f308 /* ExtMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219f3087ffde219f308 /* ExtMetaData.cpp */; }; - FFFFe219f3707ffde219f370 /* ExtParticleExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219f3707ffde219f370 /* ExtParticleExt.cpp */; }; - FFFFe219f3d87ffde219f3d8 /* ExtPrismaticJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219f3d87ffde219f3d8 /* ExtPrismaticJoint.cpp */; }; - FFFFe219f4407ffde219f440 /* ExtPrismaticJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219f4407ffde219f440 /* ExtPrismaticJointSolverPrep.cpp */; }; - FFFFe219f4a87ffde219f4a8 /* ExtPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219f4a87ffde219f4a8 /* ExtPvd.cpp */; }; - FFFFe219f5107ffde219f510 /* ExtPxStringTable.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219f5107ffde219f510 /* ExtPxStringTable.cpp */; }; - FFFFe219f5787ffde219f578 /* ExtRaycastCCD.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219f5787ffde219f578 /* ExtRaycastCCD.cpp */; }; - FFFFe219f5e07ffde219f5e0 /* ExtRevoluteJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219f5e07ffde219f5e0 /* ExtRevoluteJoint.cpp */; }; - FFFFe219f6487ffde219f648 /* ExtRevoluteJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219f6487ffde219f648 /* ExtRevoluteJointSolverPrep.cpp */; }; - FFFFe219f6b07ffde219f6b0 /* ExtRigidBodyExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219f6b07ffde219f6b0 /* ExtRigidBodyExt.cpp */; }; - FFFFe219f7187ffde219f718 /* ExtSceneQueryExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219f7187ffde219f718 /* ExtSceneQueryExt.cpp */; }; - FFFFe219f7807ffde219f780 /* ExtSimpleFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219f7807ffde219f780 /* ExtSimpleFactory.cpp */; }; - FFFFe219f7e87ffde219f7e8 /* ExtSmoothNormals.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219f7e87ffde219f7e8 /* ExtSmoothNormals.cpp */; }; - FFFFe219f8507ffde219f850 /* ExtSphericalJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219f8507ffde219f850 /* ExtSphericalJoint.cpp */; }; - FFFFe219f8b87ffde219f8b8 /* ExtSphericalJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219f8b87ffde219f8b8 /* ExtSphericalJointSolverPrep.cpp */; }; - FFFFe219f9207ffde219f920 /* ExtTriangleMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe219f9207ffde219f920 /* ExtTriangleMeshExt.cpp */; }; - FFFFe21a20d07ffde21a20d0 /* SnSerialUtils.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDe21a20d07ffde21a20d0 /* SnSerialUtils.cpp */; }; - FFFFe21a21387ffde21a2138 /* SnSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDe21a21387ffde21a2138 /* SnSerialization.cpp */; }; - FFFFe21a21a07ffde21a21a0 /* SnSerializationRegistry.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDe21a21a07ffde21a21a0 /* SnSerializationRegistry.cpp */; }; - FFFFe21a24e07ffde21a24e0 /* Binary/SnBinaryDeserialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDe21a24e07ffde21a24e0 /* Binary/SnBinaryDeserialization.cpp */; }; - FFFFe21a25487ffde21a2548 /* Binary/SnBinarySerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDe21a25487ffde21a2548 /* Binary/SnBinarySerialization.cpp */; }; - FFFFe21a25b07ffde21a25b0 /* Binary/SnConvX.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDe21a25b07ffde21a25b0 /* Binary/SnConvX.cpp */; }; - FFFFe21a26187ffde21a2618 /* Binary/SnConvX_Align.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDe21a26187ffde21a2618 /* Binary/SnConvX_Align.cpp */; }; - FFFFe21a26807ffde21a2680 /* Binary/SnConvX_Convert.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDe21a26807ffde21a2680 /* Binary/SnConvX_Convert.cpp */; }; - FFFFe21a26e87ffde21a26e8 /* Binary/SnConvX_Error.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDe21a26e87ffde21a26e8 /* Binary/SnConvX_Error.cpp */; }; - FFFFe21a27507ffde21a2750 /* Binary/SnConvX_MetaData.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDe21a27507ffde21a2750 /* Binary/SnConvX_MetaData.cpp */; }; - FFFFe21a27b87ffde21a27b8 /* Binary/SnConvX_Output.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDe21a27b87ffde21a27b8 /* Binary/SnConvX_Output.cpp */; }; - FFFFe21a28207ffde21a2820 /* Binary/SnConvX_Union.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDe21a28207ffde21a2820 /* Binary/SnConvX_Union.cpp */; }; - FFFFe21a28887ffde21a2888 /* Binary/SnSerializationContext.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDe21a28887ffde21a2888 /* Binary/SnSerializationContext.cpp */; }; - FFFFe21a31787ffde21a3178 /* Xml/SnJointRepXSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDe21a31787ffde21a3178 /* Xml/SnJointRepXSerializer.cpp */; }; - FFFFe21a31e07ffde21a31e0 /* Xml/SnRepXCoreSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDe21a31e07ffde21a31e0 /* Xml/SnRepXCoreSerializer.cpp */; }; - FFFFe21a32487ffde21a3248 /* Xml/SnRepXUpgrader.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDe21a32487ffde21a3248 /* Xml/SnRepXUpgrader.cpp */; }; - FFFFe21a32b07ffde21a32b0 /* Xml/SnXmlSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDe21a32b07ffde21a32b0 /* Xml/SnXmlSerialization.cpp */; }; - FFFFe21a0ee07ffde21a0ee0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDe21a0ee07ffde21a0ee0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */; }; + FFFF0c09ece87fa90c09ece8 /* ExtBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c09ece87fa90c09ece8 /* ExtBroadPhase.cpp */; }; + FFFF0c09ed507fa90c09ed50 /* ExtClothFabricCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c09ed507fa90c09ed50 /* ExtClothFabricCooker.cpp */; }; + FFFF0c09edb87fa90c09edb8 /* ExtClothGeodesicTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c09edb87fa90c09edb8 /* ExtClothGeodesicTetherCooker.cpp */; }; + FFFF0c09ee207fa90c09ee20 /* ExtClothMeshQuadifier.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c09ee207fa90c09ee20 /* ExtClothMeshQuadifier.cpp */; }; + FFFF0c09ee887fa90c09ee88 /* ExtClothSimpleTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c09ee887fa90c09ee88 /* ExtClothSimpleTetherCooker.cpp */; }; + FFFF0c09eef07fa90c09eef0 /* ExtCollection.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c09eef07fa90c09eef0 /* ExtCollection.cpp */; }; + FFFF0c09ef587fa90c09ef58 /* ExtConvexMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c09ef587fa90c09ef58 /* ExtConvexMeshExt.cpp */; }; + FFFF0c09efc07fa90c09efc0 /* ExtCpuWorkerThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c09efc07fa90c09efc0 /* ExtCpuWorkerThread.cpp */; }; + FFFF0c09f0287fa90c09f028 /* ExtD6Joint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c09f0287fa90c09f028 /* ExtD6Joint.cpp */; }; + FFFF0c09f0907fa90c09f090 /* ExtD6JointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c09f0907fa90c09f090 /* ExtD6JointSolverPrep.cpp */; }; + FFFF0c09f0f87fa90c09f0f8 /* ExtDefaultCpuDispatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c09f0f87fa90c09f0f8 /* ExtDefaultCpuDispatcher.cpp */; }; + FFFF0c09f1607fa90c09f160 /* ExtDefaultErrorCallback.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c09f1607fa90c09f160 /* ExtDefaultErrorCallback.cpp */; }; + FFFF0c09f1c87fa90c09f1c8 /* ExtDefaultSimulationFilterShader.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c09f1c87fa90c09f1c8 /* ExtDefaultSimulationFilterShader.cpp */; }; + FFFF0c09f2307fa90c09f230 /* ExtDefaultStreams.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c09f2307fa90c09f230 /* ExtDefaultStreams.cpp */; }; + FFFF0c09f2987fa90c09f298 /* ExtDistanceJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c09f2987fa90c09f298 /* ExtDistanceJoint.cpp */; }; + FFFF0c09f3007fa90c09f300 /* ExtDistanceJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c09f3007fa90c09f300 /* ExtDistanceJointSolverPrep.cpp */; }; + FFFF0c09f3687fa90c09f368 /* ExtExtensions.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c09f3687fa90c09f368 /* ExtExtensions.cpp */; }; + FFFF0c09f3d07fa90c09f3d0 /* ExtFixedJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c09f3d07fa90c09f3d0 /* ExtFixedJoint.cpp */; }; + FFFF0c09f4387fa90c09f438 /* ExtFixedJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c09f4387fa90c09f438 /* ExtFixedJointSolverPrep.cpp */; }; + FFFF0c09f4a07fa90c09f4a0 /* ExtJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c09f4a07fa90c09f4a0 /* ExtJoint.cpp */; }; + FFFF0c09f5087fa90c09f508 /* ExtMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c09f5087fa90c09f508 /* ExtMetaData.cpp */; }; + FFFF0c09f5707fa90c09f570 /* ExtParticleExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c09f5707fa90c09f570 /* ExtParticleExt.cpp */; }; + FFFF0c09f5d87fa90c09f5d8 /* ExtPrismaticJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c09f5d87fa90c09f5d8 /* ExtPrismaticJoint.cpp */; }; + FFFF0c09f6407fa90c09f640 /* ExtPrismaticJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c09f6407fa90c09f640 /* ExtPrismaticJointSolverPrep.cpp */; }; + FFFF0c09f6a87fa90c09f6a8 /* ExtPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c09f6a87fa90c09f6a8 /* ExtPvd.cpp */; }; + FFFF0c09f7107fa90c09f710 /* ExtPxStringTable.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c09f7107fa90c09f710 /* ExtPxStringTable.cpp */; }; + FFFF0c09f7787fa90c09f778 /* ExtRaycastCCD.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c09f7787fa90c09f778 /* ExtRaycastCCD.cpp */; }; + FFFF0c09f7e07fa90c09f7e0 /* ExtRevoluteJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c09f7e07fa90c09f7e0 /* ExtRevoluteJoint.cpp */; }; + FFFF0c09f8487fa90c09f848 /* ExtRevoluteJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c09f8487fa90c09f848 /* ExtRevoluteJointSolverPrep.cpp */; }; + FFFF0c09f8b07fa90c09f8b0 /* ExtRigidBodyExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c09f8b07fa90c09f8b0 /* ExtRigidBodyExt.cpp */; }; + FFFF0c09f9187fa90c09f918 /* ExtSceneQueryExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c09f9187fa90c09f918 /* ExtSceneQueryExt.cpp */; }; + FFFF0c09f9807fa90c09f980 /* ExtSimpleFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c09f9807fa90c09f980 /* ExtSimpleFactory.cpp */; }; + FFFF0c09f9e87fa90c09f9e8 /* ExtSmoothNormals.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c09f9e87fa90c09f9e8 /* ExtSmoothNormals.cpp */; }; + FFFF0c09fa507fa90c09fa50 /* ExtSphericalJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c09fa507fa90c09fa50 /* ExtSphericalJoint.cpp */; }; + FFFF0c09fab87fa90c09fab8 /* ExtSphericalJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c09fab87fa90c09fab8 /* ExtSphericalJointSolverPrep.cpp */; }; + FFFF0c09fb207fa90c09fb20 /* ExtTriangleMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c09fb207fa90c09fb20 /* ExtTriangleMeshExt.cpp */; }; + FFFF0c0a30d07fa90c0a30d0 /* SnSerialUtils.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD0c0a30d07fa90c0a30d0 /* SnSerialUtils.cpp */; }; + FFFF0c0a31387fa90c0a3138 /* SnSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD0c0a31387fa90c0a3138 /* SnSerialization.cpp */; }; + FFFF0c0a31a07fa90c0a31a0 /* SnSerializationRegistry.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD0c0a31a07fa90c0a31a0 /* SnSerializationRegistry.cpp */; }; + FFFF0c0a34e07fa90c0a34e0 /* Binary/SnBinaryDeserialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD0c0a34e07fa90c0a34e0 /* Binary/SnBinaryDeserialization.cpp */; }; + FFFF0c0a35487fa90c0a3548 /* Binary/SnBinarySerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD0c0a35487fa90c0a3548 /* Binary/SnBinarySerialization.cpp */; }; + FFFF0c0a35b07fa90c0a35b0 /* Binary/SnConvX.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD0c0a35b07fa90c0a35b0 /* Binary/SnConvX.cpp */; }; + FFFF0c0a36187fa90c0a3618 /* Binary/SnConvX_Align.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD0c0a36187fa90c0a3618 /* Binary/SnConvX_Align.cpp */; }; + FFFF0c0a36807fa90c0a3680 /* Binary/SnConvX_Convert.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD0c0a36807fa90c0a3680 /* Binary/SnConvX_Convert.cpp */; }; + FFFF0c0a36e87fa90c0a36e8 /* Binary/SnConvX_Error.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD0c0a36e87fa90c0a36e8 /* Binary/SnConvX_Error.cpp */; }; + FFFF0c0a37507fa90c0a3750 /* Binary/SnConvX_MetaData.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD0c0a37507fa90c0a3750 /* Binary/SnConvX_MetaData.cpp */; }; + FFFF0c0a37b87fa90c0a37b8 /* Binary/SnConvX_Output.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD0c0a37b87fa90c0a37b8 /* Binary/SnConvX_Output.cpp */; }; + FFFF0c0a38207fa90c0a3820 /* Binary/SnConvX_Union.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD0c0a38207fa90c0a3820 /* Binary/SnConvX_Union.cpp */; }; + FFFF0c0a38887fa90c0a3888 /* Binary/SnSerializationContext.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD0c0a38887fa90c0a3888 /* Binary/SnSerializationContext.cpp */; }; + FFFF0c0a41e07fa90c0a41e0 /* Xml/SnJointRepXSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD0c0a41e07fa90c0a41e0 /* Xml/SnJointRepXSerializer.cpp */; }; + FFFF0c0a42487fa90c0a4248 /* Xml/SnRepXCoreSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD0c0a42487fa90c0a4248 /* Xml/SnRepXCoreSerializer.cpp */; }; + FFFF0c0a42b07fa90c0a42b0 /* Xml/SnRepXUpgrader.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD0c0a42b07fa90c0a42b0 /* Xml/SnRepXUpgrader.cpp */; }; + FFFF0c0a43187fa90c0a4318 /* Xml/SnXmlSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD0c0a43187fa90c0a4318 /* Xml/SnXmlSerialization.cpp */; }; + FFFF0c0a10e07fa90c0a10e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD0c0a10e07fa90c0a10e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDe29617f07ffde29617f0 /* PhysXExtensions */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXExtensions"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDe219fa007ffde219fa00 /* PxBinaryConverter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBinaryConverter.h"; path = "../../../Include/extensions/PxBinaryConverter.h"; sourceTree = SOURCE_ROOT; }; - FFFDe219fa687ffde219fa68 /* PxBroadPhaseExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhaseExt.h"; path = "../../../Include/extensions/PxBroadPhaseExt.h"; sourceTree = SOURCE_ROOT; }; - FFFDe219fad07ffde219fad0 /* PxClothFabricCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothFabricCooker.h"; path = "../../../Include/extensions/PxClothFabricCooker.h"; sourceTree = SOURCE_ROOT; }; - FFFDe219fb387ffde219fb38 /* PxClothMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshDesc.h"; path = "../../../Include/extensions/PxClothMeshDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFDe219fba07ffde219fba0 /* PxClothMeshQuadifier.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshQuadifier.h"; path = "../../../Include/extensions/PxClothMeshQuadifier.h"; sourceTree = SOURCE_ROOT; }; - FFFDe219fc087ffde219fc08 /* PxClothTetherCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothTetherCooker.h"; path = "../../../Include/extensions/PxClothTetherCooker.h"; sourceTree = SOURCE_ROOT; }; - FFFDe219fc707ffde219fc70 /* PxCollectionExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCollectionExt.h"; path = "../../../Include/extensions/PxCollectionExt.h"; sourceTree = SOURCE_ROOT; }; - FFFDe219fcd87ffde219fcd8 /* PxConstraintExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintExt.h"; path = "../../../Include/extensions/PxConstraintExt.h"; sourceTree = SOURCE_ROOT; }; - FFFDe219fd407ffde219fd40 /* PxConvexMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshExt.h"; path = "../../../Include/extensions/PxConvexMeshExt.h"; sourceTree = SOURCE_ROOT; }; - FFFDe219fda87ffde219fda8 /* PxD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxD6Joint.h"; path = "../../../Include/extensions/PxD6Joint.h"; sourceTree = SOURCE_ROOT; }; - FFFDe219fe107ffde219fe10 /* PxDefaultAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultAllocator.h"; path = "../../../Include/extensions/PxDefaultAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFDe219fe787ffde219fe78 /* PxDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultCpuDispatcher.h"; path = "../../../Include/extensions/PxDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; - FFFDe219fee07ffde219fee0 /* PxDefaultErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultErrorCallback.h"; path = "../../../Include/extensions/PxDefaultErrorCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFDe219ff487ffde219ff48 /* PxDefaultSimulationFilterShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultSimulationFilterShader.h"; path = "../../../Include/extensions/PxDefaultSimulationFilterShader.h"; sourceTree = SOURCE_ROOT; }; - FFFDe219ffb07ffde219ffb0 /* PxDefaultStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultStreams.h"; path = "../../../Include/extensions/PxDefaultStreams.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a00187ffde21a0018 /* PxDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDistanceJoint.h"; path = "../../../Include/extensions/PxDistanceJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a00807ffde21a0080 /* PxExtensionsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtensionsAPI.h"; path = "../../../Include/extensions/PxExtensionsAPI.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a00e87ffde21a00e8 /* PxFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFixedJoint.h"; path = "../../../Include/extensions/PxFixedJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a01507ffde21a0150 /* PxJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJoint.h"; path = "../../../Include/extensions/PxJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a01b87ffde21a01b8 /* PxJointLimit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJointLimit.h"; path = "../../../Include/extensions/PxJointLimit.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a02207ffde21a0220 /* PxJointRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJointRepXSerializer.h"; path = "../../../Include/extensions/PxJointRepXSerializer.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a02887ffde21a0288 /* PxMassProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMassProperties.h"; path = "../../../Include/extensions/PxMassProperties.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a02f07ffde21a02f0 /* PxParticleExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxParticleExt.h"; path = "../../../Include/extensions/PxParticleExt.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a03587ffde21a0358 /* PxPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPrismaticJoint.h"; path = "../../../Include/extensions/PxPrismaticJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a03c07ffde21a03c0 /* PxRaycastCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRaycastCCD.h"; path = "../../../Include/extensions/PxRaycastCCD.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a04287ffde21a0428 /* PxRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSerializer.h"; path = "../../../Include/extensions/PxRepXSerializer.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a04907ffde21a0490 /* PxRepXSimpleType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSimpleType.h"; path = "../../../Include/extensions/PxRepXSimpleType.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a04f87ffde21a04f8 /* PxRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRevoluteJoint.h"; path = "../../../Include/extensions/PxRevoluteJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a05607ffde21a0560 /* PxRigidActorExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActorExt.h"; path = "../../../Include/extensions/PxRigidActorExt.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a05c87ffde21a05c8 /* PxRigidBodyExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBodyExt.h"; path = "../../../Include/extensions/PxRigidBodyExt.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a06307ffde21a0630 /* PxSceneQueryExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneQueryExt.h"; path = "../../../Include/extensions/PxSceneQueryExt.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a06987ffde21a0698 /* PxSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSerialization.h"; path = "../../../Include/extensions/PxSerialization.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a07007ffde21a0700 /* PxShapeExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShapeExt.h"; path = "../../../Include/extensions/PxShapeExt.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a07687ffde21a0768 /* PxSimpleFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleFactory.h"; path = "../../../Include/extensions/PxSimpleFactory.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a07d07ffde21a07d0 /* PxSmoothNormals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSmoothNormals.h"; path = "../../../Include/extensions/PxSmoothNormals.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a08387ffde21a0838 /* PxSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSphericalJoint.h"; path = "../../../Include/extensions/PxSphericalJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a08a07ffde21a08a0 /* PxStringTableExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStringTableExt.h"; path = "../../../Include/extensions/PxStringTableExt.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a09087ffde21a0908 /* PxTriangleMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshExt.h"; path = "../../../Include/extensions/PxTriangleMeshExt.h"; sourceTree = SOURCE_ROOT; }; - FFFDe219e4007ffde219e400 /* ExtConstraintHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConstraintHelper.h"; path = "../../PhysXExtensions/src/ExtConstraintHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFDe219e4687ffde219e468 /* ExtCpuWorkerThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.h"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.h"; sourceTree = SOURCE_ROOT; }; - FFFDe219e4d07ffde219e4d0 /* ExtD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.h"; path = "../../PhysXExtensions/src/ExtD6Joint.h"; sourceTree = SOURCE_ROOT; }; - FFFDe219e5387ffde219e538 /* ExtDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.h"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; - FFFDe219e5a07ffde219e5a0 /* ExtDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.h"; path = "../../PhysXExtensions/src/ExtDistanceJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDe219e6087ffde219e608 /* ExtFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.h"; path = "../../PhysXExtensions/src/ExtFixedJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDe219e6707ffde219e670 /* ExtInertiaTensor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtInertiaTensor.h"; path = "../../PhysXExtensions/src/ExtInertiaTensor.h"; sourceTree = SOURCE_ROOT; }; - FFFDe219e6d87ffde219e6d8 /* ExtJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.h"; path = "../../PhysXExtensions/src/ExtJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDe219e7407ffde219e740 /* ExtJointMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJointMetaDataExtensions.h"; path = "../../PhysXExtensions/src/ExtJointMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; - FFFDe219e7a87ffde219e7a8 /* ExtPlatform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPlatform.h"; path = "../../PhysXExtensions/src/ExtPlatform.h"; sourceTree = SOURCE_ROOT; }; - FFFDe219e8107ffde219e810 /* ExtPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.h"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDe219e8787ffde219e878 /* ExtPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.h"; path = "../../PhysXExtensions/src/ExtPvd.h"; sourceTree = SOURCE_ROOT; }; - FFFDe219e8e07ffde219e8e0 /* ExtRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.h"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDe219e9487ffde219e948 /* ExtSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSerialization.h"; path = "../../PhysXExtensions/src/ExtSerialization.h"; sourceTree = SOURCE_ROOT; }; - FFFDe219e9b07ffde219e9b0 /* ExtSharedQueueEntryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSharedQueueEntryPool.h"; path = "../../PhysXExtensions/src/ExtSharedQueueEntryPool.h"; sourceTree = SOURCE_ROOT; }; - FFFDe219ea187ffde219ea18 /* ExtSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.h"; path = "../../PhysXExtensions/src/ExtSphericalJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDe219ea807ffde219ea80 /* ExtTaskQueueHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTaskQueueHelper.h"; path = "../../PhysXExtensions/src/ExtTaskQueueHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFDe219eae87ffde219eae8 /* ExtBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtBroadPhase.cpp"; path = "../../PhysXExtensions/src/ExtBroadPhase.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe219eb507ffde219eb50 /* ExtClothFabricCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothFabricCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothFabricCooker.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe219ebb87ffde219ebb8 /* ExtClothGeodesicTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothGeodesicTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothGeodesicTetherCooker.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe219ec207ffde219ec20 /* ExtClothMeshQuadifier.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothMeshQuadifier.cpp"; path = "../../PhysXExtensions/src/ExtClothMeshQuadifier.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe219ec887ffde219ec88 /* ExtClothSimpleTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothSimpleTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothSimpleTetherCooker.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe219ecf07ffde219ecf0 /* ExtCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCollection.cpp"; path = "../../PhysXExtensions/src/ExtCollection.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe219ed587ffde219ed58 /* ExtConvexMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConvexMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtConvexMeshExt.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe219edc07ffde219edc0 /* ExtCpuWorkerThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.cpp"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe219ee287ffde219ee28 /* ExtD6Joint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.cpp"; path = "../../PhysXExtensions/src/ExtD6Joint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe219ee907ffde219ee90 /* ExtD6JointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6JointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtD6JointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe219eef87ffde219eef8 /* ExtDefaultCpuDispatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.cpp"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe219ef607ffde219ef60 /* ExtDefaultErrorCallback.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultErrorCallback.cpp"; path = "../../PhysXExtensions/src/ExtDefaultErrorCallback.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe219efc87ffde219efc8 /* ExtDefaultSimulationFilterShader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultSimulationFilterShader.cpp"; path = "../../PhysXExtensions/src/ExtDefaultSimulationFilterShader.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe219f0307ffde219f030 /* ExtDefaultStreams.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultStreams.cpp"; path = "../../PhysXExtensions/src/ExtDefaultStreams.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe219f0987ffde219f098 /* ExtDistanceJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe219f1007ffde219f100 /* ExtDistanceJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe219f1687ffde219f168 /* ExtExtensions.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtExtensions.cpp"; path = "../../PhysXExtensions/src/ExtExtensions.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe219f1d07ffde219f1d0 /* ExtFixedJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.cpp"; path = "../../PhysXExtensions/src/ExtFixedJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe219f2387ffde219f238 /* ExtFixedJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtFixedJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe219f2a07ffde219f2a0 /* ExtJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.cpp"; path = "../../PhysXExtensions/src/ExtJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe219f3087ffde219f308 /* ExtMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtMetaData.cpp"; path = "../../PhysXExtensions/src/ExtMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe219f3707ffde219f370 /* ExtParticleExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtParticleExt.cpp"; path = "../../PhysXExtensions/src/ExtParticleExt.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe219f3d87ffde219f3d8 /* ExtPrismaticJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe219f4407ffde219f440 /* ExtPrismaticJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe219f4a87ffde219f4a8 /* ExtPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.cpp"; path = "../../PhysXExtensions/src/ExtPvd.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe219f5107ffde219f510 /* ExtPxStringTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPxStringTable.cpp"; path = "../../PhysXExtensions/src/ExtPxStringTable.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe219f5787ffde219f578 /* ExtRaycastCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRaycastCCD.cpp"; path = "../../PhysXExtensions/src/ExtRaycastCCD.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe219f5e07ffde219f5e0 /* ExtRevoluteJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe219f6487ffde219f648 /* ExtRevoluteJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe219f6b07ffde219f6b0 /* ExtRigidBodyExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRigidBodyExt.cpp"; path = "../../PhysXExtensions/src/ExtRigidBodyExt.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe219f7187ffde219f718 /* ExtSceneQueryExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSceneQueryExt.cpp"; path = "../../PhysXExtensions/src/ExtSceneQueryExt.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe219f7807ffde219f780 /* ExtSimpleFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSimpleFactory.cpp"; path = "../../PhysXExtensions/src/ExtSimpleFactory.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe219f7e87ffde219f7e8 /* ExtSmoothNormals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSmoothNormals.cpp"; path = "../../PhysXExtensions/src/ExtSmoothNormals.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe219f8507ffde219f850 /* ExtSphericalJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe219f8b87ffde219f8b8 /* ExtSphericalJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe219f9207ffde219f920 /* ExtTriangleMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTriangleMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtTriangleMeshExt.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21a20007ffde21a2000 /* SnSerialUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.h"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a20687ffde21a2068 /* SnSerializationRegistry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.h"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a20d07ffde21a20d0 /* SnSerialUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21a21387ffde21a2138 /* SnSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21a21a07ffde21a21a0 /* SnSerializationRegistry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21a22087ffde21a2208 /* Binary/SnConvX.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a22707ffde21a2270 /* Binary/SnConvX_Align.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a22d87ffde21a22d8 /* Binary/SnConvX_Common.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Common.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Common.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a23407ffde21a2340 /* Binary/SnConvX_MetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a23a87ffde21a23a8 /* Binary/SnConvX_Output.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a24107ffde21a2410 /* Binary/SnConvX_Union.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a24787ffde21a2478 /* Binary/SnSerializationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a24e07ffde21a24e0 /* Binary/SnBinaryDeserialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinaryDeserialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinaryDeserialization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21a25487ffde21a2548 /* Binary/SnBinarySerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinarySerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinarySerialization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21a25b07ffde21a25b0 /* Binary/SnConvX.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21a26187ffde21a2618 /* Binary/SnConvX_Align.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21a26807ffde21a2680 /* Binary/SnConvX_Convert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Convert.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Convert.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21a26e87ffde21a26e8 /* Binary/SnConvX_Error.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Error.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Error.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21a27507ffde21a2750 /* Binary/SnConvX_MetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21a27b87ffde21a27b8 /* Binary/SnConvX_Output.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21a28207ffde21a2820 /* Binary/SnConvX_Union.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21a28887ffde21a2888 /* Binary/SnSerializationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21a28f07ffde21a28f0 /* Xml/SnPxStreamOperators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnPxStreamOperators.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnPxStreamOperators.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a29587ffde21a2958 /* Xml/SnRepX1_0Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX1_0Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX1_0Defaults.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a29c07ffde21a29c0 /* Xml/SnRepX3_1Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_1Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_1Defaults.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a2a287ffde21a2a28 /* Xml/SnRepX3_2Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_2Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_2Defaults.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a2a907ffde21a2a90 /* Xml/SnRepXCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCollection.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCollection.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a2af87ffde21a2af8 /* Xml/SnRepXCoreSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a2b607ffde21a2b60 /* Xml/SnRepXSerializerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXSerializerImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXSerializerImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a2bc87ffde21a2bc8 /* Xml/SnRepXUpgrader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a2c307ffde21a2c30 /* Xml/SnSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a2c987ffde21a2c98 /* Xml/SnXmlDeserializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlDeserializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlDeserializer.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a2d007ffde21a2d00 /* Xml/SnXmlImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a2d687ffde21a2d68 /* Xml/SnXmlMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryAllocator.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a2dd07ffde21a2dd0 /* Xml/SnXmlMemoryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPool.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPool.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a2e387ffde21a2e38 /* Xml/SnXmlMemoryPoolStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPoolStreams.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPoolStreams.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a2ea07ffde21a2ea0 /* Xml/SnXmlReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlReader.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a2f087ffde21a2f08 /* Xml/SnXmlSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerializer.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a2f707ffde21a2f70 /* Xml/SnXmlSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a2fd87ffde21a2fd8 /* Xml/SnXmlStringToType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlStringToType.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlStringToType.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a30407ffde21a3040 /* Xml/SnXmlVisitorReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorReader.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a30a87ffde21a30a8 /* Xml/SnXmlVisitorWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorWriter.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a31107ffde21a3110 /* Xml/SnXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlWriter.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a31787ffde21a3178 /* Xml/SnJointRepXSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnJointRepXSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21a31e07ffde21a31e0 /* Xml/SnRepXCoreSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21a32487ffde21a3248 /* Xml/SnRepXUpgrader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21a32b07ffde21a32b0 /* Xml/SnXmlSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerialization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21a33187ffde21a3318 /* File/SnFile.h */= { isa = PBXFileReference; fileEncoding = 4; name = "File/SnFile.h"; path = "../../PhysXExtensions/src/serialization/File/SnFile.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a0a007ffde21a0a00 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a0a687ffde21a0a68 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a0ad07ffde21a0ad0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a0b387ffde21a0b38 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a0ba07ffde21a0ba0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a0c087ffde21a0c08 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a0c707ffde21a0c70 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a0cd87ffde21a0cd8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a0d407ffde21a0d40 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a0da87ffde21a0da8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a0e107ffde21a0e10 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a0e787ffde21a0e78 /* extensions/include/PxExtensionMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a0ee07ffde21a0ee0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXMetaData/extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0cb04a207fa90cb04a20 /* PhysXExtensions */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXExtensions"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD0c09fc007fa90c09fc00 /* PxBinaryConverter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBinaryConverter.h"; path = "../../../Include/extensions/PxBinaryConverter.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c09fc687fa90c09fc68 /* PxBroadPhaseExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhaseExt.h"; path = "../../../Include/extensions/PxBroadPhaseExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c09fcd07fa90c09fcd0 /* PxClothFabricCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothFabricCooker.h"; path = "../../../Include/extensions/PxClothFabricCooker.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c09fd387fa90c09fd38 /* PxClothMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshDesc.h"; path = "../../../Include/extensions/PxClothMeshDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c09fda07fa90c09fda0 /* PxClothMeshQuadifier.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshQuadifier.h"; path = "../../../Include/extensions/PxClothMeshQuadifier.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c09fe087fa90c09fe08 /* PxClothTetherCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothTetherCooker.h"; path = "../../../Include/extensions/PxClothTetherCooker.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c09fe707fa90c09fe70 /* PxCollectionExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCollectionExt.h"; path = "../../../Include/extensions/PxCollectionExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c09fed87fa90c09fed8 /* PxConstraintExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintExt.h"; path = "../../../Include/extensions/PxConstraintExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c09ff407fa90c09ff40 /* PxConvexMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshExt.h"; path = "../../../Include/extensions/PxConvexMeshExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c09ffa87fa90c09ffa8 /* PxD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxD6Joint.h"; path = "../../../Include/extensions/PxD6Joint.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a00107fa90c0a0010 /* PxDefaultAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultAllocator.h"; path = "../../../Include/extensions/PxDefaultAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a00787fa90c0a0078 /* PxDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultCpuDispatcher.h"; path = "../../../Include/extensions/PxDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a00e07fa90c0a00e0 /* PxDefaultErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultErrorCallback.h"; path = "../../../Include/extensions/PxDefaultErrorCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a01487fa90c0a0148 /* PxDefaultSimulationFilterShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultSimulationFilterShader.h"; path = "../../../Include/extensions/PxDefaultSimulationFilterShader.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a01b07fa90c0a01b0 /* PxDefaultStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultStreams.h"; path = "../../../Include/extensions/PxDefaultStreams.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a02187fa90c0a0218 /* PxDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDistanceJoint.h"; path = "../../../Include/extensions/PxDistanceJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a02807fa90c0a0280 /* PxExtensionsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtensionsAPI.h"; path = "../../../Include/extensions/PxExtensionsAPI.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a02e87fa90c0a02e8 /* PxFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFixedJoint.h"; path = "../../../Include/extensions/PxFixedJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a03507fa90c0a0350 /* PxJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJoint.h"; path = "../../../Include/extensions/PxJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a03b87fa90c0a03b8 /* PxJointLimit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJointLimit.h"; path = "../../../Include/extensions/PxJointLimit.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a04207fa90c0a0420 /* PxMassProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMassProperties.h"; path = "../../../Include/extensions/PxMassProperties.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a04887fa90c0a0488 /* PxParticleExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxParticleExt.h"; path = "../../../Include/extensions/PxParticleExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a04f07fa90c0a04f0 /* PxPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPrismaticJoint.h"; path = "../../../Include/extensions/PxPrismaticJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a05587fa90c0a0558 /* PxRaycastCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRaycastCCD.h"; path = "../../../Include/extensions/PxRaycastCCD.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a05c07fa90c0a05c0 /* PxRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSerializer.h"; path = "../../../Include/extensions/PxRepXSerializer.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a06287fa90c0a0628 /* PxRepXSimpleType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSimpleType.h"; path = "../../../Include/extensions/PxRepXSimpleType.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a06907fa90c0a0690 /* PxRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRevoluteJoint.h"; path = "../../../Include/extensions/PxRevoluteJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a06f87fa90c0a06f8 /* PxRigidActorExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActorExt.h"; path = "../../../Include/extensions/PxRigidActorExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a07607fa90c0a0760 /* PxRigidBodyExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBodyExt.h"; path = "../../../Include/extensions/PxRigidBodyExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a07c87fa90c0a07c8 /* PxSceneQueryExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneQueryExt.h"; path = "../../../Include/extensions/PxSceneQueryExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a08307fa90c0a0830 /* PxSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSerialization.h"; path = "../../../Include/extensions/PxSerialization.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a08987fa90c0a0898 /* PxShapeExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShapeExt.h"; path = "../../../Include/extensions/PxShapeExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a09007fa90c0a0900 /* PxSimpleFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleFactory.h"; path = "../../../Include/extensions/PxSimpleFactory.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a09687fa90c0a0968 /* PxSmoothNormals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSmoothNormals.h"; path = "../../../Include/extensions/PxSmoothNormals.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a09d07fa90c0a09d0 /* PxSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSphericalJoint.h"; path = "../../../Include/extensions/PxSphericalJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a0a387fa90c0a0a38 /* PxStringTableExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStringTableExt.h"; path = "../../../Include/extensions/PxStringTableExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a0aa07fa90c0a0aa0 /* PxTriangleMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshExt.h"; path = "../../../Include/extensions/PxTriangleMeshExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c09e6007fa90c09e600 /* ExtConstraintHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConstraintHelper.h"; path = "../../PhysXExtensions/src/ExtConstraintHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c09e6687fa90c09e668 /* ExtCpuWorkerThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.h"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c09e6d07fa90c09e6d0 /* ExtD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.h"; path = "../../PhysXExtensions/src/ExtD6Joint.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c09e7387fa90c09e738 /* ExtDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.h"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c09e7a07fa90c09e7a0 /* ExtDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.h"; path = "../../PhysXExtensions/src/ExtDistanceJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c09e8087fa90c09e808 /* ExtFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.h"; path = "../../PhysXExtensions/src/ExtFixedJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c09e8707fa90c09e870 /* ExtInertiaTensor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtInertiaTensor.h"; path = "../../PhysXExtensions/src/ExtInertiaTensor.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c09e8d87fa90c09e8d8 /* ExtJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.h"; path = "../../PhysXExtensions/src/ExtJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c09e9407fa90c09e940 /* ExtJointMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJointMetaDataExtensions.h"; path = "../../PhysXExtensions/src/ExtJointMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c09e9a87fa90c09e9a8 /* ExtPlatform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPlatform.h"; path = "../../PhysXExtensions/src/ExtPlatform.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c09ea107fa90c09ea10 /* ExtPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.h"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c09ea787fa90c09ea78 /* ExtPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.h"; path = "../../PhysXExtensions/src/ExtPvd.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c09eae07fa90c09eae0 /* ExtRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.h"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c09eb487fa90c09eb48 /* ExtSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSerialization.h"; path = "../../PhysXExtensions/src/ExtSerialization.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c09ebb07fa90c09ebb0 /* ExtSharedQueueEntryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSharedQueueEntryPool.h"; path = "../../PhysXExtensions/src/ExtSharedQueueEntryPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c09ec187fa90c09ec18 /* ExtSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.h"; path = "../../PhysXExtensions/src/ExtSphericalJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c09ec807fa90c09ec80 /* ExtTaskQueueHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTaskQueueHelper.h"; path = "../../PhysXExtensions/src/ExtTaskQueueHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c09ece87fa90c09ece8 /* ExtBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtBroadPhase.cpp"; path = "../../PhysXExtensions/src/ExtBroadPhase.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c09ed507fa90c09ed50 /* ExtClothFabricCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothFabricCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothFabricCooker.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c09edb87fa90c09edb8 /* ExtClothGeodesicTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothGeodesicTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothGeodesicTetherCooker.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c09ee207fa90c09ee20 /* ExtClothMeshQuadifier.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothMeshQuadifier.cpp"; path = "../../PhysXExtensions/src/ExtClothMeshQuadifier.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c09ee887fa90c09ee88 /* ExtClothSimpleTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothSimpleTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothSimpleTetherCooker.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c09eef07fa90c09eef0 /* ExtCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCollection.cpp"; path = "../../PhysXExtensions/src/ExtCollection.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c09ef587fa90c09ef58 /* ExtConvexMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConvexMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtConvexMeshExt.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c09efc07fa90c09efc0 /* ExtCpuWorkerThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.cpp"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c09f0287fa90c09f028 /* ExtD6Joint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.cpp"; path = "../../PhysXExtensions/src/ExtD6Joint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c09f0907fa90c09f090 /* ExtD6JointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6JointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtD6JointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c09f0f87fa90c09f0f8 /* ExtDefaultCpuDispatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.cpp"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c09f1607fa90c09f160 /* ExtDefaultErrorCallback.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultErrorCallback.cpp"; path = "../../PhysXExtensions/src/ExtDefaultErrorCallback.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c09f1c87fa90c09f1c8 /* ExtDefaultSimulationFilterShader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultSimulationFilterShader.cpp"; path = "../../PhysXExtensions/src/ExtDefaultSimulationFilterShader.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c09f2307fa90c09f230 /* ExtDefaultStreams.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultStreams.cpp"; path = "../../PhysXExtensions/src/ExtDefaultStreams.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c09f2987fa90c09f298 /* ExtDistanceJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c09f3007fa90c09f300 /* ExtDistanceJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c09f3687fa90c09f368 /* ExtExtensions.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtExtensions.cpp"; path = "../../PhysXExtensions/src/ExtExtensions.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c09f3d07fa90c09f3d0 /* ExtFixedJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.cpp"; path = "../../PhysXExtensions/src/ExtFixedJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c09f4387fa90c09f438 /* ExtFixedJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtFixedJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c09f4a07fa90c09f4a0 /* ExtJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.cpp"; path = "../../PhysXExtensions/src/ExtJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c09f5087fa90c09f508 /* ExtMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtMetaData.cpp"; path = "../../PhysXExtensions/src/ExtMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c09f5707fa90c09f570 /* ExtParticleExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtParticleExt.cpp"; path = "../../PhysXExtensions/src/ExtParticleExt.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c09f5d87fa90c09f5d8 /* ExtPrismaticJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c09f6407fa90c09f640 /* ExtPrismaticJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c09f6a87fa90c09f6a8 /* ExtPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.cpp"; path = "../../PhysXExtensions/src/ExtPvd.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c09f7107fa90c09f710 /* ExtPxStringTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPxStringTable.cpp"; path = "../../PhysXExtensions/src/ExtPxStringTable.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c09f7787fa90c09f778 /* ExtRaycastCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRaycastCCD.cpp"; path = "../../PhysXExtensions/src/ExtRaycastCCD.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c09f7e07fa90c09f7e0 /* ExtRevoluteJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c09f8487fa90c09f848 /* ExtRevoluteJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c09f8b07fa90c09f8b0 /* ExtRigidBodyExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRigidBodyExt.cpp"; path = "../../PhysXExtensions/src/ExtRigidBodyExt.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c09f9187fa90c09f918 /* ExtSceneQueryExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSceneQueryExt.cpp"; path = "../../PhysXExtensions/src/ExtSceneQueryExt.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c09f9807fa90c09f980 /* ExtSimpleFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSimpleFactory.cpp"; path = "../../PhysXExtensions/src/ExtSimpleFactory.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c09f9e87fa90c09f9e8 /* ExtSmoothNormals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSmoothNormals.cpp"; path = "../../PhysXExtensions/src/ExtSmoothNormals.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c09fa507fa90c09fa50 /* ExtSphericalJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c09fab87fa90c09fab8 /* ExtSphericalJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c09fb207fa90c09fb20 /* ExtTriangleMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTriangleMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtTriangleMeshExt.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a30007fa90c0a3000 /* SnSerialUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.h"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a30687fa90c0a3068 /* SnSerializationRegistry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.h"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a30d07fa90c0a30d0 /* SnSerialUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a31387fa90c0a3138 /* SnSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a31a07fa90c0a31a0 /* SnSerializationRegistry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a32087fa90c0a3208 /* Binary/SnConvX.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a32707fa90c0a3270 /* Binary/SnConvX_Align.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a32d87fa90c0a32d8 /* Binary/SnConvX_Common.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Common.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Common.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a33407fa90c0a3340 /* Binary/SnConvX_MetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a33a87fa90c0a33a8 /* Binary/SnConvX_Output.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a34107fa90c0a3410 /* Binary/SnConvX_Union.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a34787fa90c0a3478 /* Binary/SnSerializationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a34e07fa90c0a34e0 /* Binary/SnBinaryDeserialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinaryDeserialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinaryDeserialization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a35487fa90c0a3548 /* Binary/SnBinarySerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinarySerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinarySerialization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a35b07fa90c0a35b0 /* Binary/SnConvX.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a36187fa90c0a3618 /* Binary/SnConvX_Align.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a36807fa90c0a3680 /* Binary/SnConvX_Convert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Convert.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Convert.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a36e87fa90c0a36e8 /* Binary/SnConvX_Error.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Error.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Error.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a37507fa90c0a3750 /* Binary/SnConvX_MetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a37b87fa90c0a37b8 /* Binary/SnConvX_Output.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a38207fa90c0a3820 /* Binary/SnConvX_Union.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a38887fa90c0a3888 /* Binary/SnSerializationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a38f07fa90c0a38f0 /* Xml/SnJointRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnJointRepXSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a39587fa90c0a3958 /* Xml/SnPxStreamOperators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnPxStreamOperators.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnPxStreamOperators.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a39c07fa90c0a39c0 /* Xml/SnRepX1_0Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX1_0Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX1_0Defaults.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a3a287fa90c0a3a28 /* Xml/SnRepX3_1Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_1Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_1Defaults.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a3a907fa90c0a3a90 /* Xml/SnRepX3_2Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_2Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_2Defaults.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a3af87fa90c0a3af8 /* Xml/SnRepXCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCollection.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCollection.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a3b607fa90c0a3b60 /* Xml/SnRepXCoreSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a3bc87fa90c0a3bc8 /* Xml/SnRepXSerializerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXSerializerImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXSerializerImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a3c307fa90c0a3c30 /* Xml/SnRepXUpgrader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a3c987fa90c0a3c98 /* Xml/SnSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a3d007fa90c0a3d00 /* Xml/SnXmlDeserializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlDeserializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlDeserializer.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a3d687fa90c0a3d68 /* Xml/SnXmlImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a3dd07fa90c0a3dd0 /* Xml/SnXmlMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryAllocator.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a3e387fa90c0a3e38 /* Xml/SnXmlMemoryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPool.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a3ea07fa90c0a3ea0 /* Xml/SnXmlMemoryPoolStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPoolStreams.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPoolStreams.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a3f087fa90c0a3f08 /* Xml/SnXmlReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlReader.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a3f707fa90c0a3f70 /* Xml/SnXmlSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerializer.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a3fd87fa90c0a3fd8 /* Xml/SnXmlSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a40407fa90c0a4040 /* Xml/SnXmlStringToType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlStringToType.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlStringToType.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a40a87fa90c0a40a8 /* Xml/SnXmlVisitorReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorReader.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a41107fa90c0a4110 /* Xml/SnXmlVisitorWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorWriter.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a41787fa90c0a4178 /* Xml/SnXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlWriter.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a41e07fa90c0a41e0 /* Xml/SnJointRepXSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnJointRepXSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a42487fa90c0a4248 /* Xml/SnRepXCoreSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a42b07fa90c0a42b0 /* Xml/SnRepXUpgrader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a43187fa90c0a4318 /* Xml/SnXmlSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerialization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a43807fa90c0a4380 /* File/SnFile.h */= { isa = PBXFileReference; fileEncoding = 4; name = "File/SnFile.h"; path = "../../PhysXExtensions/src/serialization/File/SnFile.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a0c007fa90c0a0c00 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a0c687fa90c0a0c68 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a0cd07fa90c0a0cd0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a0d387fa90c0a0d38 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a0da07fa90c0a0da0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a0e087fa90c0a0e08 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a0e707fa90c0a0e70 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a0ed87fa90c0a0ed8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a0f407fa90c0a0f40 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a0fa87fa90c0a0fa8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a10107fa90c0a1010 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a10787fa90c0a1078 /* extensions/include/PxExtensionMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a10e07fa90c0a10e0 /* 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 */ - FFF2e29617f07ffde29617f0 /* Resources */ = { + FFF20cb04a207fa90cb04a20 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -804,7 +804,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCe29617f07ffde29617f0 /* Frameworks */ = { + FFFC0cb04a207fa90cb04a20 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -814,64 +814,64 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8e29617f07ffde29617f0 /* Sources */ = { + FFF80cb04a207fa90cb04a20 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFe219eae87ffde219eae8, - FFFFe219eb507ffde219eb50, - FFFFe219ebb87ffde219ebb8, - FFFFe219ec207ffde219ec20, - FFFFe219ec887ffde219ec88, - FFFFe219ecf07ffde219ecf0, - FFFFe219ed587ffde219ed58, - FFFFe219edc07ffde219edc0, - FFFFe219ee287ffde219ee28, - FFFFe219ee907ffde219ee90, - FFFFe219eef87ffde219eef8, - FFFFe219ef607ffde219ef60, - FFFFe219efc87ffde219efc8, - FFFFe219f0307ffde219f030, - FFFFe219f0987ffde219f098, - FFFFe219f1007ffde219f100, - FFFFe219f1687ffde219f168, - FFFFe219f1d07ffde219f1d0, - FFFFe219f2387ffde219f238, - FFFFe219f2a07ffde219f2a0, - FFFFe219f3087ffde219f308, - FFFFe219f3707ffde219f370, - FFFFe219f3d87ffde219f3d8, - FFFFe219f4407ffde219f440, - FFFFe219f4a87ffde219f4a8, - FFFFe219f5107ffde219f510, - FFFFe219f5787ffde219f578, - FFFFe219f5e07ffde219f5e0, - FFFFe219f6487ffde219f648, - FFFFe219f6b07ffde219f6b0, - FFFFe219f7187ffde219f718, - FFFFe219f7807ffde219f780, - FFFFe219f7e87ffde219f7e8, - FFFFe219f8507ffde219f850, - FFFFe219f8b87ffde219f8b8, - FFFFe219f9207ffde219f920, - FFFFe21a20d07ffde21a20d0, - FFFFe21a21387ffde21a2138, - FFFFe21a21a07ffde21a21a0, - FFFFe21a24e07ffde21a24e0, - FFFFe21a25487ffde21a2548, - FFFFe21a25b07ffde21a25b0, - FFFFe21a26187ffde21a2618, - FFFFe21a26807ffde21a2680, - FFFFe21a26e87ffde21a26e8, - FFFFe21a27507ffde21a2750, - FFFFe21a27b87ffde21a27b8, - FFFFe21a28207ffde21a2820, - FFFFe21a28887ffde21a2888, - FFFFe21a31787ffde21a3178, - FFFFe21a31e07ffde21a31e0, - FFFFe21a32487ffde21a3248, - FFFFe21a32b07ffde21a32b0, - FFFFe21a0ee07ffde21a0ee0, + FFFF0c09ece87fa90c09ece8, + FFFF0c09ed507fa90c09ed50, + FFFF0c09edb87fa90c09edb8, + FFFF0c09ee207fa90c09ee20, + FFFF0c09ee887fa90c09ee88, + FFFF0c09eef07fa90c09eef0, + FFFF0c09ef587fa90c09ef58, + FFFF0c09efc07fa90c09efc0, + FFFF0c09f0287fa90c09f028, + FFFF0c09f0907fa90c09f090, + FFFF0c09f0f87fa90c09f0f8, + FFFF0c09f1607fa90c09f160, + FFFF0c09f1c87fa90c09f1c8, + FFFF0c09f2307fa90c09f230, + FFFF0c09f2987fa90c09f298, + FFFF0c09f3007fa90c09f300, + FFFF0c09f3687fa90c09f368, + FFFF0c09f3d07fa90c09f3d0, + FFFF0c09f4387fa90c09f438, + FFFF0c09f4a07fa90c09f4a0, + FFFF0c09f5087fa90c09f508, + FFFF0c09f5707fa90c09f570, + FFFF0c09f5d87fa90c09f5d8, + FFFF0c09f6407fa90c09f640, + FFFF0c09f6a87fa90c09f6a8, + FFFF0c09f7107fa90c09f710, + FFFF0c09f7787fa90c09f778, + FFFF0c09f7e07fa90c09f7e0, + FFFF0c09f8487fa90c09f848, + FFFF0c09f8b07fa90c09f8b0, + FFFF0c09f9187fa90c09f918, + FFFF0c09f9807fa90c09f980, + FFFF0c09f9e87fa90c09f9e8, + FFFF0c09fa507fa90c09fa50, + FFFF0c09fab87fa90c09fab8, + FFFF0c09fb207fa90c09fb20, + FFFF0c0a30d07fa90c0a30d0, + FFFF0c0a31387fa90c0a3138, + FFFF0c0a31a07fa90c0a31a0, + FFFF0c0a34e07fa90c0a34e0, + FFFF0c0a35487fa90c0a3548, + FFFF0c0a35b07fa90c0a35b0, + FFFF0c0a36187fa90c0a3618, + FFFF0c0a36807fa90c0a3680, + FFFF0c0a36e87fa90c0a36e8, + FFFF0c0a37507fa90c0a3750, + FFFF0c0a37b87fa90c0a37b8, + FFFF0c0a38207fa90c0a3820, + FFFF0c0a38887fa90c0a3888, + FFFF0c0a41e07fa90c0a41e0, + FFFF0c0a42487fa90c0a4248, + FFFF0c0a42b07fa90c0a42b0, + FFFF0c0a43187fa90c0a4318, + FFFF0c0a10e07fa90c0a10e0, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -880,56 +880,56 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF4e295e8007ffde295e800 /* PBXTargetDependency */ = { + FFF40cb04ea07fa90cb04ea0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAe2942d107ffde2942d10 /* PsFastXml */; - targetProxy = FFF5e2942d107ffde2942d10 /* PBXContainerItemProxy */; + target = FFFA0cac6a007fa90cac6a00 /* PsFastXml */; + targetProxy = FFF50cac6a007fa90cac6a00 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of SceneQuery */ - FFFFe21a70007ffde21a7000 /* SqAABBPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21a70007ffde21a7000 /* SqAABBPruner.cpp */; }; - FFFFe21a70687ffde21a7068 /* SqAABBTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21a70687ffde21a7068 /* SqAABBTree.cpp */; }; - FFFFe21a70d07ffde21a70d0 /* SqAABBTreeUpdateMap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21a70d07ffde21a70d0 /* SqAABBTreeUpdateMap.cpp */; }; - FFFFe21a71387ffde21a7138 /* SqBounds.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21a71387ffde21a7138 /* SqBounds.cpp */; }; - FFFFe21a71a07ffde21a71a0 /* SqBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21a71a07ffde21a71a0 /* SqBucketPruner.cpp */; }; - FFFFe21a72087ffde21a7208 /* SqExtendedBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21a72087ffde21a7208 /* SqExtendedBucketPruner.cpp */; }; - FFFFe21a72707ffde21a7270 /* SqMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21a72707ffde21a7270 /* SqMetaData.cpp */; }; - FFFFe21a72d87ffde21a72d8 /* SqPruningPool.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21a72d87ffde21a72d8 /* SqPruningPool.cpp */; }; - FFFFe21a73407ffde21a7340 /* SqPruningStructure.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21a73407ffde21a7340 /* SqPruningStructure.cpp */; }; - FFFFe21a73a87ffde21a73a8 /* SqSceneQueryManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21a73a87ffde21a73a8 /* SqSceneQueryManager.cpp */; }; + FFFF0c0a70007fa90c0a7000 /* SqAABBPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0a70007fa90c0a7000 /* SqAABBPruner.cpp */; }; + FFFF0c0a70687fa90c0a7068 /* SqAABBTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0a70687fa90c0a7068 /* SqAABBTree.cpp */; }; + FFFF0c0a70d07fa90c0a70d0 /* SqAABBTreeUpdateMap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0a70d07fa90c0a70d0 /* SqAABBTreeUpdateMap.cpp */; }; + FFFF0c0a71387fa90c0a7138 /* SqBounds.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0a71387fa90c0a7138 /* SqBounds.cpp */; }; + FFFF0c0a71a07fa90c0a71a0 /* SqBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0a71a07fa90c0a71a0 /* SqBucketPruner.cpp */; }; + FFFF0c0a72087fa90c0a7208 /* SqExtendedBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0a72087fa90c0a7208 /* SqExtendedBucketPruner.cpp */; }; + FFFF0c0a72707fa90c0a7270 /* SqMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0a72707fa90c0a7270 /* SqMetaData.cpp */; }; + FFFF0c0a72d87fa90c0a72d8 /* SqPruningPool.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0a72d87fa90c0a72d8 /* SqPruningPool.cpp */; }; + FFFF0c0a73407fa90c0a7340 /* SqPruningStructure.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0a73407fa90c0a7340 /* SqPruningStructure.cpp */; }; + FFFF0c0a73a87fa90c0a73a8 /* SqSceneQueryManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0a73a87fa90c0a73a8 /* SqSceneQueryManager.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDe450b7207ffde450b720 /* SceneQuery */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SceneQuery"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDe21a70007ffde21a7000 /* SqAABBPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.cpp"; path = "../../SceneQuery/src/SqAABBPruner.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21a70687ffde21a7068 /* SqAABBTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.cpp"; path = "../../SceneQuery/src/SqAABBTree.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21a70d07ffde21a70d0 /* SqAABBTreeUpdateMap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.cpp"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21a71387ffde21a7138 /* SqBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.cpp"; path = "../../SceneQuery/src/SqBounds.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21a71a07ffde21a71a0 /* SqBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.cpp"; path = "../../SceneQuery/src/SqBucketPruner.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21a72087ffde21a7208 /* SqExtendedBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.cpp"; path = "../../SceneQuery/src/SqExtendedBucketPruner.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21a72707ffde21a7270 /* SqMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqMetaData.cpp"; path = "../../SceneQuery/src/SqMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21a72d87ffde21a72d8 /* SqPruningPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.cpp"; path = "../../SceneQuery/src/SqPruningPool.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21a73407ffde21a7340 /* SqPruningStructure.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.cpp"; path = "../../SceneQuery/src/SqPruningStructure.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21a73a87ffde21a73a8 /* SqSceneQueryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.cpp"; path = "../../SceneQuery/src/SqSceneQueryManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21a74107ffde21a7410 /* SqAABBPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.h"; path = "../../SceneQuery/src/SqAABBPruner.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a74787ffde21a7478 /* SqAABBTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.h"; path = "../../SceneQuery/src/SqAABBTree.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a74e07ffde21a74e0 /* SqAABBTreeQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeQuery.h"; path = "../../SceneQuery/src/SqAABBTreeQuery.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a75487ffde21a7548 /* SqAABBTreeUpdateMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.h"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a75b07ffde21a75b0 /* SqBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.h"; path = "../../SceneQuery/src/SqBounds.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a76187ffde21a7618 /* SqBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.h"; path = "../../SceneQuery/src/SqBucketPruner.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a76807ffde21a7680 /* SqExtendedBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.h"; path = "../../SceneQuery/src/SqExtendedBucketPruner.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a76e87ffde21a76e8 /* SqPrunerTestsSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerTestsSIMD.h"; path = "../../SceneQuery/src/SqPrunerTestsSIMD.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a77507ffde21a7750 /* SqPruningPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.h"; path = "../../SceneQuery/src/SqPruningPool.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a77b87ffde21a77b8 /* SqTypedef.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqTypedef.h"; path = "../../SceneQuery/src/SqTypedef.h"; sourceTree = SOURCE_ROOT; }; - FFFDe450f9307ffde450f930 /* SqPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruner.h"; path = "../../SceneQuery/include/SqPruner.h"; sourceTree = SOURCE_ROOT; }; - FFFDe450f9987ffde450f998 /* SqPrunerMergeData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerMergeData.h"; path = "../../SceneQuery/include/SqPrunerMergeData.h"; sourceTree = SOURCE_ROOT; }; - FFFDe450fa007ffde450fa00 /* SqPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.h"; path = "../../SceneQuery/include/SqPruningStructure.h"; sourceTree = SOURCE_ROOT; }; - FFFDe450fa687ffde450fa68 /* SqSceneQueryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.h"; path = "../../SceneQuery/include/SqSceneQueryManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD0cb173f07fa90cb173f0 /* SceneQuery */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SceneQuery"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD0c0a70007fa90c0a7000 /* SqAABBPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.cpp"; path = "../../SceneQuery/src/SqAABBPruner.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a70687fa90c0a7068 /* SqAABBTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.cpp"; path = "../../SceneQuery/src/SqAABBTree.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a70d07fa90c0a70d0 /* SqAABBTreeUpdateMap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.cpp"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a71387fa90c0a7138 /* SqBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.cpp"; path = "../../SceneQuery/src/SqBounds.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a71a07fa90c0a71a0 /* SqBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.cpp"; path = "../../SceneQuery/src/SqBucketPruner.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a72087fa90c0a7208 /* SqExtendedBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.cpp"; path = "../../SceneQuery/src/SqExtendedBucketPruner.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a72707fa90c0a7270 /* SqMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqMetaData.cpp"; path = "../../SceneQuery/src/SqMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a72d87fa90c0a72d8 /* SqPruningPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.cpp"; path = "../../SceneQuery/src/SqPruningPool.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a73407fa90c0a7340 /* SqPruningStructure.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.cpp"; path = "../../SceneQuery/src/SqPruningStructure.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a73a87fa90c0a73a8 /* SqSceneQueryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.cpp"; path = "../../SceneQuery/src/SqSceneQueryManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a74107fa90c0a7410 /* SqAABBPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.h"; path = "../../SceneQuery/src/SqAABBPruner.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a74787fa90c0a7478 /* SqAABBTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.h"; path = "../../SceneQuery/src/SqAABBTree.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a74e07fa90c0a74e0 /* SqAABBTreeQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeQuery.h"; path = "../../SceneQuery/src/SqAABBTreeQuery.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a75487fa90c0a7548 /* SqAABBTreeUpdateMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.h"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a75b07fa90c0a75b0 /* SqBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.h"; path = "../../SceneQuery/src/SqBounds.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a76187fa90c0a7618 /* SqBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.h"; path = "../../SceneQuery/src/SqBucketPruner.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a76807fa90c0a7680 /* SqExtendedBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.h"; path = "../../SceneQuery/src/SqExtendedBucketPruner.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a76e87fa90c0a76e8 /* SqPrunerTestsSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerTestsSIMD.h"; path = "../../SceneQuery/src/SqPrunerTestsSIMD.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a77507fa90c0a7750 /* SqPruningPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.h"; path = "../../SceneQuery/src/SqPruningPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a77b87fa90c0a77b8 /* SqTypedef.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqTypedef.h"; path = "../../SceneQuery/src/SqTypedef.h"; sourceTree = SOURCE_ROOT; }; + FFFD0cb1b7707fa90cb1b770 /* SqPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruner.h"; path = "../../SceneQuery/include/SqPruner.h"; sourceTree = SOURCE_ROOT; }; + FFFD0cb1b7d87fa90cb1b7d8 /* SqPrunerMergeData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerMergeData.h"; path = "../../SceneQuery/include/SqPrunerMergeData.h"; sourceTree = SOURCE_ROOT; }; + FFFD0cb1b8407fa90cb1b840 /* SqPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.h"; path = "../../SceneQuery/include/SqPruningStructure.h"; sourceTree = SOURCE_ROOT; }; + FFFD0cb1b8a87fa90cb1b8a8 /* SqSceneQueryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.h"; path = "../../SceneQuery/include/SqSceneQueryManager.h"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2e450b7207ffde450b720 /* Resources */ = { + FFF20cb173f07fa90cb173f0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -939,7 +939,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCe450b7207ffde450b720 /* Frameworks */ = { + FFFC0cb173f07fa90cb173f0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -949,20 +949,20 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8e450b7207ffde450b720 /* Sources */ = { + FFF80cb173f07fa90cb173f0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFe21a70007ffde21a7000, - FFFFe21a70687ffde21a7068, - FFFFe21a70d07ffde21a70d0, - FFFFe21a71387ffde21a7138, - FFFFe21a71a07ffde21a71a0, - FFFFe21a72087ffde21a7208, - FFFFe21a72707ffde21a7270, - FFFFe21a72d87ffde21a72d8, - FFFFe21a73407ffde21a7340, - FFFFe21a73a87ffde21a73a8, + FFFF0c0a70007fa90c0a7000, + FFFF0c0a70687fa90c0a7068, + FFFF0c0a70d07fa90c0a70d0, + FFFF0c0a71387fa90c0a7138, + FFFF0c0a71a07fa90c0a71a0, + FFFF0c0a72087fa90c0a7208, + FFFF0c0a72707fa90c0a7270, + FFFF0c0a72d87fa90c0a72d8, + FFFF0c0a73407fa90c0a7340, + FFFF0c0a73a87fa90c0a73a8, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -974,154 +974,154 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of SimulationController */ - FFFFe21b0bd07ffde21b0bd0 /* ScActorCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b0bd07ffde21b0bd0 /* ScActorCore.cpp */; }; - FFFFe21b0c387ffde21b0c38 /* ScActorSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b0c387ffde21b0c38 /* ScActorSim.cpp */; }; - FFFFe21b0ca07ffde21b0ca0 /* ScArticulationCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b0ca07ffde21b0ca0 /* ScArticulationCore.cpp */; }; - FFFFe21b0d087ffde21b0d08 /* ScArticulationJointCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b0d087ffde21b0d08 /* ScArticulationJointCore.cpp */; }; - FFFFe21b0d707ffde21b0d70 /* ScArticulationJointSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b0d707ffde21b0d70 /* ScArticulationJointSim.cpp */; }; - FFFFe21b0dd87ffde21b0dd8 /* ScArticulationSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b0dd87ffde21b0dd8 /* ScArticulationSim.cpp */; }; - FFFFe21b0e407ffde21b0e40 /* ScBodyCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b0e407ffde21b0e40 /* ScBodyCore.cpp */; }; - FFFFe21b0ea87ffde21b0ea8 /* ScBodyCoreKinematic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b0ea87ffde21b0ea8 /* ScBodyCoreKinematic.cpp */; }; - FFFFe21b0f107ffde21b0f10 /* ScBodySim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b0f107ffde21b0f10 /* ScBodySim.cpp */; }; - FFFFe21b0f787ffde21b0f78 /* ScConstraintCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b0f787ffde21b0f78 /* ScConstraintCore.cpp */; }; - FFFFe21b0fe07ffde21b0fe0 /* ScConstraintGroupNode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b0fe07ffde21b0fe0 /* ScConstraintGroupNode.cpp */; }; - FFFFe21b10487ffde21b1048 /* ScConstraintInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b10487ffde21b1048 /* ScConstraintInteraction.cpp */; }; - FFFFe21b10b07ffde21b10b0 /* ScConstraintProjectionManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b10b07ffde21b10b0 /* ScConstraintProjectionManager.cpp */; }; - FFFFe21b11187ffde21b1118 /* ScConstraintProjectionTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b11187ffde21b1118 /* ScConstraintProjectionTree.cpp */; }; - FFFFe21b11807ffde21b1180 /* ScConstraintSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b11807ffde21b1180 /* ScConstraintSim.cpp */; }; - FFFFe21b11e87ffde21b11e8 /* ScElementInteractionMarker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b11e87ffde21b11e8 /* ScElementInteractionMarker.cpp */; }; - FFFFe21b12507ffde21b1250 /* ScElementSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b12507ffde21b1250 /* ScElementSim.cpp */; }; - FFFFe21b12b87ffde21b12b8 /* ScInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b12b87ffde21b12b8 /* ScInteraction.cpp */; }; - FFFFe21b13207ffde21b1320 /* ScIterators.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b13207ffde21b1320 /* ScIterators.cpp */; }; - FFFFe21b13887ffde21b1388 /* ScMaterialCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b13887ffde21b1388 /* ScMaterialCore.cpp */; }; - FFFFe21b13f07ffde21b13f0 /* ScMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b13f07ffde21b13f0 /* ScMetaData.cpp */; }; - FFFFe21b14587ffde21b1458 /* ScNPhaseCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b14587ffde21b1458 /* ScNPhaseCore.cpp */; }; - FFFFe21b14c07ffde21b14c0 /* ScPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b14c07ffde21b14c0 /* ScPhysics.cpp */; }; - FFFFe21b15287ffde21b1528 /* ScRigidCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b15287ffde21b1528 /* ScRigidCore.cpp */; }; - FFFFe21b15907ffde21b1590 /* ScRigidSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b15907ffde21b1590 /* ScRigidSim.cpp */; }; - FFFFe21b15f87ffde21b15f8 /* ScScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b15f87ffde21b15f8 /* ScScene.cpp */; }; - FFFFe21b16607ffde21b1660 /* ScShapeCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b16607ffde21b1660 /* ScShapeCore.cpp */; }; - FFFFe21b16c87ffde21b16c8 /* ScShapeInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b16c87ffde21b16c8 /* ScShapeInteraction.cpp */; }; - FFFFe21b17307ffde21b1730 /* ScShapeSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b17307ffde21b1730 /* ScShapeSim.cpp */; }; - FFFFe21b17987ffde21b1798 /* ScSimStats.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b17987ffde21b1798 /* ScSimStats.cpp */; }; - FFFFe21b18007ffde21b1800 /* ScSimulationController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b18007ffde21b1800 /* ScSimulationController.cpp */; }; - FFFFe21b18687ffde21b1868 /* ScSqBoundsManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b18687ffde21b1868 /* ScSqBoundsManager.cpp */; }; - FFFFe21b18d07ffde21b18d0 /* ScStaticCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b18d07ffde21b18d0 /* ScStaticCore.cpp */; }; - FFFFe21b19387ffde21b1938 /* ScStaticSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b19387ffde21b1938 /* ScStaticSim.cpp */; }; - FFFFe21b19a07ffde21b19a0 /* ScTriggerInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b19a07ffde21b19a0 /* ScTriggerInteraction.cpp */; }; - FFFFe21b1b407ffde21b1b40 /* particles/ScParticleBodyInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b1b407ffde21b1b40 /* particles/ScParticleBodyInteraction.cpp */; }; - FFFFe21b1ba87ffde21b1ba8 /* particles/ScParticlePacketShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b1ba87ffde21b1ba8 /* particles/ScParticlePacketShape.cpp */; }; - FFFFe21b1c107ffde21b1c10 /* particles/ScParticleSystemCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b1c107ffde21b1c10 /* particles/ScParticleSystemCore.cpp */; }; - FFFFe21b1c787ffde21b1c78 /* particles/ScParticleSystemSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b1c787ffde21b1c78 /* particles/ScParticleSystemSim.cpp */; }; - FFFFe21b1db07ffde21b1db0 /* cloth/ScClothCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b1db07ffde21b1db0 /* cloth/ScClothCore.cpp */; }; - FFFFe21b1e187ffde21b1e18 /* cloth/ScClothFabricCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b1e187ffde21b1e18 /* cloth/ScClothFabricCore.cpp */; }; - FFFFe21b1e807ffde21b1e80 /* cloth/ScClothShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b1e807ffde21b1e80 /* cloth/ScClothShape.cpp */; }; - FFFFe21b1ee87ffde21b1ee8 /* cloth/ScClothSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21b1ee87ffde21b1ee8 /* cloth/ScClothSim.cpp */; }; + FFFF0c0ad9d07fa90c0ad9d0 /* ScActorCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0ad9d07fa90c0ad9d0 /* ScActorCore.cpp */; }; + FFFF0c0ada387fa90c0ada38 /* ScActorSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0ada387fa90c0ada38 /* ScActorSim.cpp */; }; + FFFF0c0adaa07fa90c0adaa0 /* ScArticulationCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0adaa07fa90c0adaa0 /* ScArticulationCore.cpp */; }; + FFFF0c0adb087fa90c0adb08 /* ScArticulationJointCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0adb087fa90c0adb08 /* ScArticulationJointCore.cpp */; }; + FFFF0c0adb707fa90c0adb70 /* ScArticulationJointSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0adb707fa90c0adb70 /* ScArticulationJointSim.cpp */; }; + FFFF0c0adbd87fa90c0adbd8 /* ScArticulationSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0adbd87fa90c0adbd8 /* ScArticulationSim.cpp */; }; + FFFF0c0adc407fa90c0adc40 /* ScBodyCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0adc407fa90c0adc40 /* ScBodyCore.cpp */; }; + FFFF0c0adca87fa90c0adca8 /* ScBodyCoreKinematic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0adca87fa90c0adca8 /* ScBodyCoreKinematic.cpp */; }; + FFFF0c0add107fa90c0add10 /* ScBodySim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0add107fa90c0add10 /* ScBodySim.cpp */; }; + FFFF0c0add787fa90c0add78 /* ScConstraintCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0add787fa90c0add78 /* ScConstraintCore.cpp */; }; + FFFF0c0adde07fa90c0adde0 /* ScConstraintGroupNode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0adde07fa90c0adde0 /* ScConstraintGroupNode.cpp */; }; + FFFF0c0ade487fa90c0ade48 /* ScConstraintInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0ade487fa90c0ade48 /* ScConstraintInteraction.cpp */; }; + FFFF0c0adeb07fa90c0adeb0 /* ScConstraintProjectionManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0adeb07fa90c0adeb0 /* ScConstraintProjectionManager.cpp */; }; + FFFF0c0adf187fa90c0adf18 /* ScConstraintProjectionTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0adf187fa90c0adf18 /* ScConstraintProjectionTree.cpp */; }; + FFFF0c0adf807fa90c0adf80 /* ScConstraintSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0adf807fa90c0adf80 /* ScConstraintSim.cpp */; }; + FFFF0c0adfe87fa90c0adfe8 /* ScElementInteractionMarker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0adfe87fa90c0adfe8 /* ScElementInteractionMarker.cpp */; }; + FFFF0c0ae0507fa90c0ae050 /* ScElementSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0ae0507fa90c0ae050 /* ScElementSim.cpp */; }; + FFFF0c0ae0b87fa90c0ae0b8 /* ScInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0ae0b87fa90c0ae0b8 /* ScInteraction.cpp */; }; + FFFF0c0ae1207fa90c0ae120 /* ScIterators.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0ae1207fa90c0ae120 /* ScIterators.cpp */; }; + FFFF0c0ae1887fa90c0ae188 /* ScMaterialCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0ae1887fa90c0ae188 /* ScMaterialCore.cpp */; }; + FFFF0c0ae1f07fa90c0ae1f0 /* ScMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0ae1f07fa90c0ae1f0 /* ScMetaData.cpp */; }; + FFFF0c0ae2587fa90c0ae258 /* ScNPhaseCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0ae2587fa90c0ae258 /* ScNPhaseCore.cpp */; }; + FFFF0c0ae2c07fa90c0ae2c0 /* ScPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0ae2c07fa90c0ae2c0 /* ScPhysics.cpp */; }; + FFFF0c0ae3287fa90c0ae328 /* ScRigidCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0ae3287fa90c0ae328 /* ScRigidCore.cpp */; }; + FFFF0c0ae3907fa90c0ae390 /* ScRigidSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0ae3907fa90c0ae390 /* ScRigidSim.cpp */; }; + FFFF0c0ae3f87fa90c0ae3f8 /* ScScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0ae3f87fa90c0ae3f8 /* ScScene.cpp */; }; + FFFF0c0ae4607fa90c0ae460 /* ScShapeCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0ae4607fa90c0ae460 /* ScShapeCore.cpp */; }; + FFFF0c0ae4c87fa90c0ae4c8 /* ScShapeInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0ae4c87fa90c0ae4c8 /* ScShapeInteraction.cpp */; }; + FFFF0c0ae5307fa90c0ae530 /* ScShapeSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0ae5307fa90c0ae530 /* ScShapeSim.cpp */; }; + FFFF0c0ae5987fa90c0ae598 /* ScSimStats.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0ae5987fa90c0ae598 /* ScSimStats.cpp */; }; + FFFF0c0ae6007fa90c0ae600 /* ScSimulationController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0ae6007fa90c0ae600 /* ScSimulationController.cpp */; }; + FFFF0c0ae6687fa90c0ae668 /* ScSqBoundsManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0ae6687fa90c0ae668 /* ScSqBoundsManager.cpp */; }; + FFFF0c0ae6d07fa90c0ae6d0 /* ScStaticCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0ae6d07fa90c0ae6d0 /* ScStaticCore.cpp */; }; + FFFF0c0ae7387fa90c0ae738 /* ScStaticSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0ae7387fa90c0ae738 /* ScStaticSim.cpp */; }; + FFFF0c0ae7a07fa90c0ae7a0 /* ScTriggerInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0ae7a07fa90c0ae7a0 /* ScTriggerInteraction.cpp */; }; + FFFF0c0ae9407fa90c0ae940 /* particles/ScParticleBodyInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0ae9407fa90c0ae940 /* particles/ScParticleBodyInteraction.cpp */; }; + FFFF0c0ae9a87fa90c0ae9a8 /* particles/ScParticlePacketShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0ae9a87fa90c0ae9a8 /* particles/ScParticlePacketShape.cpp */; }; + FFFF0c0aea107fa90c0aea10 /* particles/ScParticleSystemCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0aea107fa90c0aea10 /* particles/ScParticleSystemCore.cpp */; }; + FFFF0c0aea787fa90c0aea78 /* particles/ScParticleSystemSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0aea787fa90c0aea78 /* particles/ScParticleSystemSim.cpp */; }; + FFFF0c0aebb07fa90c0aebb0 /* cloth/ScClothCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0aebb07fa90c0aebb0 /* cloth/ScClothCore.cpp */; }; + FFFF0c0aec187fa90c0aec18 /* cloth/ScClothFabricCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0aec187fa90c0aec18 /* cloth/ScClothFabricCore.cpp */; }; + FFFF0c0aec807fa90c0aec80 /* cloth/ScClothShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0aec807fa90c0aec80 /* cloth/ScClothShape.cpp */; }; + FFFF0c0aece87fa90c0aece8 /* cloth/ScClothSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0aece87fa90c0aece8 /* cloth/ScClothSim.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDe450fbf07ffde450fbf0 /* SimulationController */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SimulationController"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDe21a9a007ffde21a9a00 /* ScActorCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.h"; path = "../../SimulationController/include/ScActorCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a9a687ffde21a9a68 /* ScArticulationCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.h"; path = "../../SimulationController/include/ScArticulationCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a9ad07ffde21a9ad0 /* ScArticulationJointCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.h"; path = "../../SimulationController/include/ScArticulationJointCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a9b387ffde21a9b38 /* ScBodyCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.h"; path = "../../SimulationController/include/ScBodyCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a9ba07ffde21a9ba0 /* ScClothCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothCore.h"; path = "../../SimulationController/include/ScClothCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a9c087ffde21a9c08 /* ScClothFabricCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothFabricCore.h"; path = "../../SimulationController/include/ScClothFabricCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a9c707ffde21a9c70 /* ScConstraintCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.h"; path = "../../SimulationController/include/ScConstraintCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a9cd87ffde21a9cd8 /* ScIterators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.h"; path = "../../SimulationController/include/ScIterators.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a9d407ffde21a9d40 /* ScMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.h"; path = "../../SimulationController/include/ScMaterialCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a9da87ffde21a9da8 /* ScParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScParticleSystemCore.h"; path = "../../SimulationController/include/ScParticleSystemCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a9e107ffde21a9e10 /* ScPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.h"; path = "../../SimulationController/include/ScPhysics.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a9e787ffde21a9e78 /* ScRigidCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.h"; path = "../../SimulationController/include/ScRigidCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a9ee07ffde21a9ee0 /* ScScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.h"; path = "../../SimulationController/include/ScScene.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a9f487ffde21a9f48 /* ScShapeCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.h"; path = "../../SimulationController/include/ScShapeCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21a9fb07ffde21a9fb0 /* ScStaticCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.h"; path = "../../SimulationController/include/ScStaticCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21afe007ffde21afe00 /* ScActorElementPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorElementPair.h"; path = "../../SimulationController/src/ScActorElementPair.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21afe687ffde21afe68 /* ScActorInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorInteraction.h"; path = "../../SimulationController/src/ScActorInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21afed07ffde21afed0 /* ScActorPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorPair.h"; path = "../../SimulationController/src/ScActorPair.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21aff387ffde21aff38 /* ScActorSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.h"; path = "../../SimulationController/src/ScActorSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21affa07ffde21affa0 /* ScArticulationJointSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.h"; path = "../../SimulationController/src/ScArticulationJointSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21b00087ffde21b0008 /* ScArticulationSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.h"; path = "../../SimulationController/src/ScArticulationSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21b00707ffde21b0070 /* ScBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.h"; path = "../../SimulationController/src/ScBodySim.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21b00d87ffde21b00d8 /* ScClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClient.h"; path = "../../SimulationController/src/ScClient.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21b01407ffde21b0140 /* ScConstraintGroupNode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.h"; path = "../../SimulationController/src/ScConstraintGroupNode.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21b01a87ffde21b01a8 /* ScConstraintInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.h"; path = "../../SimulationController/src/ScConstraintInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21b02107ffde21b0210 /* ScConstraintProjectionManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.h"; path = "../../SimulationController/src/ScConstraintProjectionManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21b02787ffde21b0278 /* ScConstraintProjectionTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.h"; path = "../../SimulationController/src/ScConstraintProjectionTree.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21b02e07ffde21b02e0 /* ScConstraintSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.h"; path = "../../SimulationController/src/ScConstraintSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21b03487ffde21b0348 /* ScContactReportBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactReportBuffer.h"; path = "../../SimulationController/src/ScContactReportBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21b03b07ffde21b03b0 /* ScContactStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactStream.h"; path = "../../SimulationController/src/ScContactStream.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21b04187ffde21b0418 /* ScElementInteractionMarker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.h"; path = "../../SimulationController/src/ScElementInteractionMarker.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21b04807ffde21b0480 /* ScElementSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.h"; path = "../../SimulationController/src/ScElementSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21b04e87ffde21b04e8 /* ScElementSimInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSimInteraction.h"; path = "../../SimulationController/src/ScElementSimInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21b05507ffde21b0550 /* ScInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.h"; path = "../../SimulationController/src/ScInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21b05b87ffde21b05b8 /* ScInteractionFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteractionFlags.h"; path = "../../SimulationController/src/ScInteractionFlags.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21b06207ffde21b0620 /* ScNPhaseCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.h"; path = "../../SimulationController/src/ScNPhaseCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21b06887ffde21b0688 /* ScObjectIDTracker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScObjectIDTracker.h"; path = "../../SimulationController/src/ScObjectIDTracker.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21b06f07ffde21b06f0 /* ScRbElementInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRbElementInteraction.h"; path = "../../SimulationController/src/ScRbElementInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21b07587ffde21b0758 /* ScRigidSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.h"; path = "../../SimulationController/src/ScRigidSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21b07c07ffde21b07c0 /* ScShapeInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.h"; path = "../../SimulationController/src/ScShapeInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21b08287ffde21b0828 /* ScShapeIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeIterator.h"; path = "../../SimulationController/src/ScShapeIterator.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21b08907ffde21b0890 /* ScShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.h"; path = "../../SimulationController/src/ScShapeSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21b08f87ffde21b08f8 /* ScSimStateData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStateData.h"; path = "../../SimulationController/src/ScSimStateData.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21b09607ffde21b0960 /* ScSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.h"; path = "../../SimulationController/src/ScSimStats.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21b09c87ffde21b09c8 /* ScSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.h"; path = "../../SimulationController/src/ScSimulationController.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21b0a307ffde21b0a30 /* ScSqBoundsManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.h"; path = "../../SimulationController/src/ScSqBoundsManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21b0a987ffde21b0a98 /* ScStaticSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.h"; path = "../../SimulationController/src/ScStaticSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21b0b007ffde21b0b00 /* ScTriggerInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.h"; path = "../../SimulationController/src/ScTriggerInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21b0b687ffde21b0b68 /* ScTriggerPairs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerPairs.h"; path = "../../SimulationController/src/ScTriggerPairs.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21b0bd07ffde21b0bd0 /* ScActorCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.cpp"; path = "../../SimulationController/src/ScActorCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21b0c387ffde21b0c38 /* ScActorSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.cpp"; path = "../../SimulationController/src/ScActorSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21b0ca07ffde21b0ca0 /* ScArticulationCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.cpp"; path = "../../SimulationController/src/ScArticulationCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21b0d087ffde21b0d08 /* ScArticulationJointCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.cpp"; path = "../../SimulationController/src/ScArticulationJointCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21b0d707ffde21b0d70 /* ScArticulationJointSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.cpp"; path = "../../SimulationController/src/ScArticulationJointSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21b0dd87ffde21b0dd8 /* ScArticulationSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.cpp"; path = "../../SimulationController/src/ScArticulationSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21b0e407ffde21b0e40 /* ScBodyCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.cpp"; path = "../../SimulationController/src/ScBodyCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21b0ea87ffde21b0ea8 /* ScBodyCoreKinematic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCoreKinematic.cpp"; path = "../../SimulationController/src/ScBodyCoreKinematic.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21b0f107ffde21b0f10 /* ScBodySim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.cpp"; path = "../../SimulationController/src/ScBodySim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21b0f787ffde21b0f78 /* ScConstraintCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.cpp"; path = "../../SimulationController/src/ScConstraintCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21b0fe07ffde21b0fe0 /* ScConstraintGroupNode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.cpp"; path = "../../SimulationController/src/ScConstraintGroupNode.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21b10487ffde21b1048 /* ScConstraintInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.cpp"; path = "../../SimulationController/src/ScConstraintInteraction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21b10b07ffde21b10b0 /* ScConstraintProjectionManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.cpp"; path = "../../SimulationController/src/ScConstraintProjectionManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21b11187ffde21b1118 /* ScConstraintProjectionTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.cpp"; path = "../../SimulationController/src/ScConstraintProjectionTree.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21b11807ffde21b1180 /* ScConstraintSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.cpp"; path = "../../SimulationController/src/ScConstraintSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21b11e87ffde21b11e8 /* ScElementInteractionMarker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.cpp"; path = "../../SimulationController/src/ScElementInteractionMarker.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21b12507ffde21b1250 /* ScElementSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.cpp"; path = "../../SimulationController/src/ScElementSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21b12b87ffde21b12b8 /* ScInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.cpp"; path = "../../SimulationController/src/ScInteraction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21b13207ffde21b1320 /* ScIterators.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.cpp"; path = "../../SimulationController/src/ScIterators.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21b13887ffde21b1388 /* ScMaterialCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.cpp"; path = "../../SimulationController/src/ScMaterialCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21b13f07ffde21b13f0 /* ScMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMetaData.cpp"; path = "../../SimulationController/src/ScMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21b14587ffde21b1458 /* ScNPhaseCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.cpp"; path = "../../SimulationController/src/ScNPhaseCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21b14c07ffde21b14c0 /* ScPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.cpp"; path = "../../SimulationController/src/ScPhysics.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21b15287ffde21b1528 /* ScRigidCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.cpp"; path = "../../SimulationController/src/ScRigidCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21b15907ffde21b1590 /* ScRigidSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.cpp"; path = "../../SimulationController/src/ScRigidSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21b15f87ffde21b15f8 /* ScScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.cpp"; path = "../../SimulationController/src/ScScene.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21b16607ffde21b1660 /* ScShapeCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.cpp"; path = "../../SimulationController/src/ScShapeCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21b16c87ffde21b16c8 /* ScShapeInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.cpp"; path = "../../SimulationController/src/ScShapeInteraction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21b17307ffde21b1730 /* ScShapeSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.cpp"; path = "../../SimulationController/src/ScShapeSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21b17987ffde21b1798 /* ScSimStats.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.cpp"; path = "../../SimulationController/src/ScSimStats.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21b18007ffde21b1800 /* ScSimulationController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.cpp"; path = "../../SimulationController/src/ScSimulationController.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21b18687ffde21b1868 /* ScSqBoundsManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.cpp"; path = "../../SimulationController/src/ScSqBoundsManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21b18d07ffde21b18d0 /* ScStaticCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.cpp"; path = "../../SimulationController/src/ScStaticCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21b19387ffde21b1938 /* ScStaticSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.cpp"; path = "../../SimulationController/src/ScStaticSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21b19a07ffde21b19a0 /* ScTriggerInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.cpp"; path = "../../SimulationController/src/ScTriggerInteraction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21b1a087ffde21b1a08 /* particles/ScParticleBodyInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.h"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21b1a707ffde21b1a70 /* particles/ScParticlePacketShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.h"; path = "../../SimulationController/src/particles/ScParticlePacketShape.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21b1ad87ffde21b1ad8 /* particles/ScParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.h"; path = "../../SimulationController/src/particles/ScParticleSystemSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21b1b407ffde21b1b40 /* particles/ScParticleBodyInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.cpp"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21b1ba87ffde21b1ba8 /* particles/ScParticlePacketShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.cpp"; path = "../../SimulationController/src/particles/ScParticlePacketShape.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21b1c107ffde21b1c10 /* particles/ScParticleSystemCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemCore.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21b1c787ffde21b1c78 /* particles/ScParticleSystemSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21b1ce07ffde21b1ce0 /* cloth/ScClothShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.h"; path = "../../SimulationController/src/cloth/ScClothShape.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21b1d487ffde21b1d48 /* cloth/ScClothSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothSim.h"; path = "../../SimulationController/src/cloth/ScClothSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21b1db07ffde21b1db0 /* cloth/ScClothCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothCore.cpp"; path = "../../SimulationController/src/cloth/ScClothCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21b1e187ffde21b1e18 /* cloth/ScClothFabricCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothFabricCore.cpp"; path = "../../SimulationController/src/cloth/ScClothFabricCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21b1e807ffde21b1e80 /* cloth/ScClothShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.cpp"; path = "../../SimulationController/src/cloth/ScClothShape.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21b1ee87ffde21b1ee8 /* cloth/ScClothSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothSim.cpp"; path = "../../SimulationController/src/cloth/ScClothSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0cb1ba307fa90cb1ba30 /* SimulationController */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SimulationController"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD0c0a9a007fa90c0a9a00 /* ScActorCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.h"; path = "../../SimulationController/include/ScActorCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a9a687fa90c0a9a68 /* ScArticulationCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.h"; path = "../../SimulationController/include/ScArticulationCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a9ad07fa90c0a9ad0 /* ScArticulationJointCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.h"; path = "../../SimulationController/include/ScArticulationJointCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a9b387fa90c0a9b38 /* ScBodyCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.h"; path = "../../SimulationController/include/ScBodyCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a9ba07fa90c0a9ba0 /* ScClothCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothCore.h"; path = "../../SimulationController/include/ScClothCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a9c087fa90c0a9c08 /* ScClothFabricCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothFabricCore.h"; path = "../../SimulationController/include/ScClothFabricCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a9c707fa90c0a9c70 /* ScConstraintCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.h"; path = "../../SimulationController/include/ScConstraintCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a9cd87fa90c0a9cd8 /* ScIterators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.h"; path = "../../SimulationController/include/ScIterators.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a9d407fa90c0a9d40 /* ScMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.h"; path = "../../SimulationController/include/ScMaterialCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a9da87fa90c0a9da8 /* ScParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScParticleSystemCore.h"; path = "../../SimulationController/include/ScParticleSystemCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a9e107fa90c0a9e10 /* ScPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.h"; path = "../../SimulationController/include/ScPhysics.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a9e787fa90c0a9e78 /* ScRigidCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.h"; path = "../../SimulationController/include/ScRigidCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a9ee07fa90c0a9ee0 /* ScScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.h"; path = "../../SimulationController/include/ScScene.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a9f487fa90c0a9f48 /* ScShapeCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.h"; path = "../../SimulationController/include/ScShapeCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0a9fb07fa90c0a9fb0 /* ScStaticCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.h"; path = "../../SimulationController/include/ScStaticCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0acc007fa90c0acc00 /* ScActorElementPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorElementPair.h"; path = "../../SimulationController/src/ScActorElementPair.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0acc687fa90c0acc68 /* ScActorInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorInteraction.h"; path = "../../SimulationController/src/ScActorInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0accd07fa90c0accd0 /* ScActorPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorPair.h"; path = "../../SimulationController/src/ScActorPair.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0acd387fa90c0acd38 /* ScActorSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.h"; path = "../../SimulationController/src/ScActorSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0acda07fa90c0acda0 /* ScArticulationJointSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.h"; path = "../../SimulationController/src/ScArticulationJointSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0ace087fa90c0ace08 /* ScArticulationSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.h"; path = "../../SimulationController/src/ScArticulationSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0ace707fa90c0ace70 /* ScBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.h"; path = "../../SimulationController/src/ScBodySim.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0aced87fa90c0aced8 /* ScClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClient.h"; path = "../../SimulationController/src/ScClient.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0acf407fa90c0acf40 /* ScConstraintGroupNode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.h"; path = "../../SimulationController/src/ScConstraintGroupNode.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0acfa87fa90c0acfa8 /* ScConstraintInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.h"; path = "../../SimulationController/src/ScConstraintInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0ad0107fa90c0ad010 /* ScConstraintProjectionManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.h"; path = "../../SimulationController/src/ScConstraintProjectionManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0ad0787fa90c0ad078 /* ScConstraintProjectionTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.h"; path = "../../SimulationController/src/ScConstraintProjectionTree.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0ad0e07fa90c0ad0e0 /* ScConstraintSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.h"; path = "../../SimulationController/src/ScConstraintSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0ad1487fa90c0ad148 /* ScContactReportBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactReportBuffer.h"; path = "../../SimulationController/src/ScContactReportBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0ad1b07fa90c0ad1b0 /* ScContactStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactStream.h"; path = "../../SimulationController/src/ScContactStream.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0ad2187fa90c0ad218 /* ScElementInteractionMarker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.h"; path = "../../SimulationController/src/ScElementInteractionMarker.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0ad2807fa90c0ad280 /* ScElementSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.h"; path = "../../SimulationController/src/ScElementSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0ad2e87fa90c0ad2e8 /* ScElementSimInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSimInteraction.h"; path = "../../SimulationController/src/ScElementSimInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0ad3507fa90c0ad350 /* ScInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.h"; path = "../../SimulationController/src/ScInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0ad3b87fa90c0ad3b8 /* ScInteractionFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteractionFlags.h"; path = "../../SimulationController/src/ScInteractionFlags.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0ad4207fa90c0ad420 /* ScNPhaseCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.h"; path = "../../SimulationController/src/ScNPhaseCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0ad4887fa90c0ad488 /* ScObjectIDTracker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScObjectIDTracker.h"; path = "../../SimulationController/src/ScObjectIDTracker.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0ad4f07fa90c0ad4f0 /* ScRbElementInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRbElementInteraction.h"; path = "../../SimulationController/src/ScRbElementInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0ad5587fa90c0ad558 /* ScRigidSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.h"; path = "../../SimulationController/src/ScRigidSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0ad5c07fa90c0ad5c0 /* ScShapeInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.h"; path = "../../SimulationController/src/ScShapeInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0ad6287fa90c0ad628 /* ScShapeIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeIterator.h"; path = "../../SimulationController/src/ScShapeIterator.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0ad6907fa90c0ad690 /* ScShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.h"; path = "../../SimulationController/src/ScShapeSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0ad6f87fa90c0ad6f8 /* ScSimStateData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStateData.h"; path = "../../SimulationController/src/ScSimStateData.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0ad7607fa90c0ad760 /* ScSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.h"; path = "../../SimulationController/src/ScSimStats.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0ad7c87fa90c0ad7c8 /* ScSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.h"; path = "../../SimulationController/src/ScSimulationController.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0ad8307fa90c0ad830 /* ScSqBoundsManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.h"; path = "../../SimulationController/src/ScSqBoundsManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0ad8987fa90c0ad898 /* ScStaticSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.h"; path = "../../SimulationController/src/ScStaticSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0ad9007fa90c0ad900 /* ScTriggerInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.h"; path = "../../SimulationController/src/ScTriggerInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0ad9687fa90c0ad968 /* ScTriggerPairs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerPairs.h"; path = "../../SimulationController/src/ScTriggerPairs.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0ad9d07fa90c0ad9d0 /* ScActorCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.cpp"; path = "../../SimulationController/src/ScActorCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0ada387fa90c0ada38 /* ScActorSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.cpp"; path = "../../SimulationController/src/ScActorSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0adaa07fa90c0adaa0 /* ScArticulationCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.cpp"; path = "../../SimulationController/src/ScArticulationCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0adb087fa90c0adb08 /* ScArticulationJointCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.cpp"; path = "../../SimulationController/src/ScArticulationJointCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0adb707fa90c0adb70 /* ScArticulationJointSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.cpp"; path = "../../SimulationController/src/ScArticulationJointSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0adbd87fa90c0adbd8 /* ScArticulationSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.cpp"; path = "../../SimulationController/src/ScArticulationSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0adc407fa90c0adc40 /* ScBodyCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.cpp"; path = "../../SimulationController/src/ScBodyCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0adca87fa90c0adca8 /* ScBodyCoreKinematic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCoreKinematic.cpp"; path = "../../SimulationController/src/ScBodyCoreKinematic.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0add107fa90c0add10 /* ScBodySim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.cpp"; path = "../../SimulationController/src/ScBodySim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0add787fa90c0add78 /* ScConstraintCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.cpp"; path = "../../SimulationController/src/ScConstraintCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0adde07fa90c0adde0 /* ScConstraintGroupNode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.cpp"; path = "../../SimulationController/src/ScConstraintGroupNode.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0ade487fa90c0ade48 /* ScConstraintInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.cpp"; path = "../../SimulationController/src/ScConstraintInteraction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0adeb07fa90c0adeb0 /* ScConstraintProjectionManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.cpp"; path = "../../SimulationController/src/ScConstraintProjectionManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0adf187fa90c0adf18 /* ScConstraintProjectionTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.cpp"; path = "../../SimulationController/src/ScConstraintProjectionTree.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0adf807fa90c0adf80 /* ScConstraintSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.cpp"; path = "../../SimulationController/src/ScConstraintSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0adfe87fa90c0adfe8 /* ScElementInteractionMarker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.cpp"; path = "../../SimulationController/src/ScElementInteractionMarker.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0ae0507fa90c0ae050 /* ScElementSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.cpp"; path = "../../SimulationController/src/ScElementSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0ae0b87fa90c0ae0b8 /* ScInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.cpp"; path = "../../SimulationController/src/ScInteraction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0ae1207fa90c0ae120 /* ScIterators.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.cpp"; path = "../../SimulationController/src/ScIterators.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0ae1887fa90c0ae188 /* ScMaterialCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.cpp"; path = "../../SimulationController/src/ScMaterialCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0ae1f07fa90c0ae1f0 /* ScMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMetaData.cpp"; path = "../../SimulationController/src/ScMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0ae2587fa90c0ae258 /* ScNPhaseCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.cpp"; path = "../../SimulationController/src/ScNPhaseCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0ae2c07fa90c0ae2c0 /* ScPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.cpp"; path = "../../SimulationController/src/ScPhysics.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0ae3287fa90c0ae328 /* ScRigidCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.cpp"; path = "../../SimulationController/src/ScRigidCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0ae3907fa90c0ae390 /* ScRigidSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.cpp"; path = "../../SimulationController/src/ScRigidSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0ae3f87fa90c0ae3f8 /* ScScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.cpp"; path = "../../SimulationController/src/ScScene.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0ae4607fa90c0ae460 /* ScShapeCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.cpp"; path = "../../SimulationController/src/ScShapeCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0ae4c87fa90c0ae4c8 /* ScShapeInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.cpp"; path = "../../SimulationController/src/ScShapeInteraction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0ae5307fa90c0ae530 /* ScShapeSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.cpp"; path = "../../SimulationController/src/ScShapeSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0ae5987fa90c0ae598 /* ScSimStats.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.cpp"; path = "../../SimulationController/src/ScSimStats.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0ae6007fa90c0ae600 /* ScSimulationController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.cpp"; path = "../../SimulationController/src/ScSimulationController.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0ae6687fa90c0ae668 /* ScSqBoundsManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.cpp"; path = "../../SimulationController/src/ScSqBoundsManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0ae6d07fa90c0ae6d0 /* ScStaticCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.cpp"; path = "../../SimulationController/src/ScStaticCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0ae7387fa90c0ae738 /* ScStaticSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.cpp"; path = "../../SimulationController/src/ScStaticSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0ae7a07fa90c0ae7a0 /* ScTriggerInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.cpp"; path = "../../SimulationController/src/ScTriggerInteraction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0ae8087fa90c0ae808 /* particles/ScParticleBodyInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.h"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0ae8707fa90c0ae870 /* particles/ScParticlePacketShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.h"; path = "../../SimulationController/src/particles/ScParticlePacketShape.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0ae8d87fa90c0ae8d8 /* particles/ScParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.h"; path = "../../SimulationController/src/particles/ScParticleSystemSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0ae9407fa90c0ae940 /* particles/ScParticleBodyInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.cpp"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0ae9a87fa90c0ae9a8 /* particles/ScParticlePacketShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.cpp"; path = "../../SimulationController/src/particles/ScParticlePacketShape.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0aea107fa90c0aea10 /* particles/ScParticleSystemCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemCore.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0aea787fa90c0aea78 /* particles/ScParticleSystemSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0aeae07fa90c0aeae0 /* cloth/ScClothShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.h"; path = "../../SimulationController/src/cloth/ScClothShape.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0aeb487fa90c0aeb48 /* cloth/ScClothSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothSim.h"; path = "../../SimulationController/src/cloth/ScClothSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0aebb07fa90c0aebb0 /* cloth/ScClothCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothCore.cpp"; path = "../../SimulationController/src/cloth/ScClothCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0aec187fa90c0aec18 /* cloth/ScClothFabricCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothFabricCore.cpp"; path = "../../SimulationController/src/cloth/ScClothFabricCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0aec807fa90c0aec80 /* cloth/ScClothShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.cpp"; path = "../../SimulationController/src/cloth/ScClothShape.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0aece87fa90c0aece8 /* 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 */ - FFF2e450fbf07ffde450fbf0 /* Resources */ = { + FFF20cb1ba307fa90cb1ba30 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -1131,7 +1131,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCe450fbf07ffde450fbf0 /* Frameworks */ = { + FFFC0cb1ba307fa90cb1ba30 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -1141,53 +1141,53 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8e450fbf07ffde450fbf0 /* Sources */ = { + FFF80cb1ba307fa90cb1ba30 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFe21b0bd07ffde21b0bd0, - FFFFe21b0c387ffde21b0c38, - FFFFe21b0ca07ffde21b0ca0, - FFFFe21b0d087ffde21b0d08, - FFFFe21b0d707ffde21b0d70, - FFFFe21b0dd87ffde21b0dd8, - FFFFe21b0e407ffde21b0e40, - FFFFe21b0ea87ffde21b0ea8, - FFFFe21b0f107ffde21b0f10, - FFFFe21b0f787ffde21b0f78, - FFFFe21b0fe07ffde21b0fe0, - FFFFe21b10487ffde21b1048, - FFFFe21b10b07ffde21b10b0, - FFFFe21b11187ffde21b1118, - FFFFe21b11807ffde21b1180, - FFFFe21b11e87ffde21b11e8, - FFFFe21b12507ffde21b1250, - FFFFe21b12b87ffde21b12b8, - FFFFe21b13207ffde21b1320, - FFFFe21b13887ffde21b1388, - FFFFe21b13f07ffde21b13f0, - FFFFe21b14587ffde21b1458, - FFFFe21b14c07ffde21b14c0, - FFFFe21b15287ffde21b1528, - FFFFe21b15907ffde21b1590, - FFFFe21b15f87ffde21b15f8, - FFFFe21b16607ffde21b1660, - FFFFe21b16c87ffde21b16c8, - FFFFe21b17307ffde21b1730, - FFFFe21b17987ffde21b1798, - FFFFe21b18007ffde21b1800, - FFFFe21b18687ffde21b1868, - FFFFe21b18d07ffde21b18d0, - FFFFe21b19387ffde21b1938, - FFFFe21b19a07ffde21b19a0, - FFFFe21b1b407ffde21b1b40, - FFFFe21b1ba87ffde21b1ba8, - FFFFe21b1c107ffde21b1c10, - FFFFe21b1c787ffde21b1c78, - FFFFe21b1db07ffde21b1db0, - FFFFe21b1e187ffde21b1e18, - FFFFe21b1e807ffde21b1e80, - FFFFe21b1ee87ffde21b1ee8, + FFFF0c0ad9d07fa90c0ad9d0, + FFFF0c0ada387fa90c0ada38, + FFFF0c0adaa07fa90c0adaa0, + FFFF0c0adb087fa90c0adb08, + FFFF0c0adb707fa90c0adb70, + FFFF0c0adbd87fa90c0adbd8, + FFFF0c0adc407fa90c0adc40, + FFFF0c0adca87fa90c0adca8, + FFFF0c0add107fa90c0add10, + FFFF0c0add787fa90c0add78, + FFFF0c0adde07fa90c0adde0, + FFFF0c0ade487fa90c0ade48, + FFFF0c0adeb07fa90c0adeb0, + FFFF0c0adf187fa90c0adf18, + FFFF0c0adf807fa90c0adf80, + FFFF0c0adfe87fa90c0adfe8, + FFFF0c0ae0507fa90c0ae050, + FFFF0c0ae0b87fa90c0ae0b8, + FFFF0c0ae1207fa90c0ae120, + FFFF0c0ae1887fa90c0ae188, + FFFF0c0ae1f07fa90c0ae1f0, + FFFF0c0ae2587fa90c0ae258, + FFFF0c0ae2c07fa90c0ae2c0, + FFFF0c0ae3287fa90c0ae328, + FFFF0c0ae3907fa90c0ae390, + FFFF0c0ae3f87fa90c0ae3f8, + FFFF0c0ae4607fa90c0ae460, + FFFF0c0ae4c87fa90c0ae4c8, + FFFF0c0ae5307fa90c0ae530, + FFFF0c0ae5987fa90c0ae598, + FFFF0c0ae6007fa90c0ae600, + FFFF0c0ae6687fa90c0ae668, + FFFF0c0ae6d07fa90c0ae6d0, + FFFF0c0ae7387fa90c0ae738, + FFFF0c0ae7a07fa90c0ae7a0, + FFFF0c0ae9407fa90c0ae940, + FFFF0c0ae9a87fa90c0ae9a8, + FFFF0c0aea107fa90c0aea10, + FFFF0c0aea787fa90c0aea78, + FFFF0c0aebb07fa90c0aebb0, + FFFF0c0aec187fa90c0aec18, + FFFF0c0aec807fa90c0aec80, + FFFF0c0aece87fa90c0aece8, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1199,80 +1199,80 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PhysXCooking */ - FFFFe2d762407ffde2d76240 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFDe29617f07ffde29617f0 /* PhysXExtensions */; }; - FFFFe3829c007ffde3829c00 /* Adjacencies.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe3829c007ffde3829c00 /* Adjacencies.cpp */; }; - FFFFe3829c687ffde3829c68 /* Cooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe3829c687ffde3829c68 /* Cooking.cpp */; }; - FFFFe3829cd07ffde3829cd0 /* CookingUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe3829cd07ffde3829cd0 /* CookingUtils.cpp */; }; - FFFFe3829d387ffde3829d38 /* EdgeList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe3829d387ffde3829d38 /* EdgeList.cpp */; }; - FFFFe3829da07ffde3829da0 /* MeshCleaner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe3829da07ffde3829da0 /* MeshCleaner.cpp */; }; - FFFFe3829e087ffde3829e08 /* Quantizer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe3829e087ffde3829e08 /* Quantizer.cpp */; }; - FFFFe382a0e07ffde382a0e0 /* mesh/GrbTriangleMeshCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe382a0e07ffde382a0e0 /* mesh/GrbTriangleMeshCooking.cpp */; }; - FFFFe382a1487ffde382a148 /* mesh/HeightFieldCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe382a1487ffde382a148 /* mesh/HeightFieldCooking.cpp */; }; - FFFFe382a1b07ffde382a1b0 /* mesh/RTreeCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe382a1b07ffde382a1b0 /* mesh/RTreeCooking.cpp */; }; - FFFFe382a2187ffde382a218 /* mesh/TriangleMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe382a2187ffde382a218 /* mesh/TriangleMeshBuilder.cpp */; }; - FFFFe382a4887ffde382a488 /* convex/BigConvexDataBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe382a4887ffde382a488 /* convex/BigConvexDataBuilder.cpp */; }; - FFFFe382a4f07ffde382a4f0 /* convex/ConvexHullBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe382a4f07ffde382a4f0 /* convex/ConvexHullBuilder.cpp */; }; - FFFFe382a5587ffde382a558 /* convex/ConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe382a5587ffde382a558 /* convex/ConvexHullLib.cpp */; }; - FFFFe382a5c07ffde382a5c0 /* convex/ConvexHullUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe382a5c07ffde382a5c0 /* convex/ConvexHullUtils.cpp */; }; - FFFFe382a6287ffde382a628 /* convex/ConvexMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe382a6287ffde382a628 /* convex/ConvexMeshBuilder.cpp */; }; - FFFFe382a6907ffde382a690 /* convex/ConvexPolygonsBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe382a6907ffde382a690 /* convex/ConvexPolygonsBuilder.cpp */; }; - FFFFe382a6f87ffde382a6f8 /* convex/InflationConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe382a6f87ffde382a6f8 /* convex/InflationConvexHullLib.cpp */; }; - FFFFe382a7607ffde382a760 /* convex/QuickHullConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe382a7607ffde382a760 /* convex/QuickHullConvexHullLib.cpp */; }; - FFFFe382a7c87ffde382a7c8 /* convex/VolumeIntegration.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe382a7c87ffde382a7c8 /* convex/VolumeIntegration.cpp */; }; + FFFF0cb299407fa90cb29940 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD0cb04a207fa90cb04a20 /* PhysXExtensions */; }; + FFFF0c0b0e007fa90c0b0e00 /* Adjacencies.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0b0e007fa90c0b0e00 /* Adjacencies.cpp */; }; + FFFF0c0b0e687fa90c0b0e68 /* Cooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0b0e687fa90c0b0e68 /* Cooking.cpp */; }; + FFFF0c0b0ed07fa90c0b0ed0 /* CookingUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0b0ed07fa90c0b0ed0 /* CookingUtils.cpp */; }; + FFFF0c0b0f387fa90c0b0f38 /* EdgeList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0b0f387fa90c0b0f38 /* EdgeList.cpp */; }; + FFFF0c0b0fa07fa90c0b0fa0 /* MeshCleaner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0b0fa07fa90c0b0fa0 /* MeshCleaner.cpp */; }; + FFFF0c0b10087fa90c0b1008 /* Quantizer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0b10087fa90c0b1008 /* Quantizer.cpp */; }; + FFFF0c0b12e07fa90c0b12e0 /* mesh/GrbTriangleMeshCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0b12e07fa90c0b12e0 /* mesh/GrbTriangleMeshCooking.cpp */; }; + FFFF0c0b13487fa90c0b1348 /* mesh/HeightFieldCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0b13487fa90c0b1348 /* mesh/HeightFieldCooking.cpp */; }; + FFFF0c0b13b07fa90c0b13b0 /* mesh/RTreeCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0b13b07fa90c0b13b0 /* mesh/RTreeCooking.cpp */; }; + FFFF0c0b14187fa90c0b1418 /* mesh/TriangleMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0b14187fa90c0b1418 /* mesh/TriangleMeshBuilder.cpp */; }; + FFFF0c0b16887fa90c0b1688 /* convex/BigConvexDataBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0b16887fa90c0b1688 /* convex/BigConvexDataBuilder.cpp */; }; + FFFF0c0b16f07fa90c0b16f0 /* convex/ConvexHullBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0b16f07fa90c0b16f0 /* convex/ConvexHullBuilder.cpp */; }; + FFFF0c0b17587fa90c0b1758 /* convex/ConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0b17587fa90c0b1758 /* convex/ConvexHullLib.cpp */; }; + FFFF0c0b17c07fa90c0b17c0 /* convex/ConvexHullUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0b17c07fa90c0b17c0 /* convex/ConvexHullUtils.cpp */; }; + FFFF0c0b18287fa90c0b1828 /* convex/ConvexMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0b18287fa90c0b1828 /* convex/ConvexMeshBuilder.cpp */; }; + FFFF0c0b18907fa90c0b1890 /* convex/ConvexPolygonsBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0b18907fa90c0b1890 /* convex/ConvexPolygonsBuilder.cpp */; }; + FFFF0c0b18f87fa90c0b18f8 /* convex/InflationConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0b18f87fa90c0b18f8 /* convex/InflationConvexHullLib.cpp */; }; + FFFF0c0b19607fa90c0b1960 /* convex/QuickHullConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0b19607fa90c0b1960 /* convex/QuickHullConvexHullLib.cpp */; }; + FFFF0c0b19c87fa90c0b19c8 /* convex/VolumeIntegration.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0b19c87fa90c0b19c8 /* convex/VolumeIntegration.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDe2d74eb07ffde2d74eb0 /* PhysXCooking */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCooking"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDe2d68c307ffde2d68c30 /* PxBVH33MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH33MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH33MidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2d68c987ffde2d68c98 /* PxBVH34MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH34MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH34MidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2d68d007ffde2d68d00 /* PxConvexMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshDesc.h"; path = "../../../Include/cooking/PxConvexMeshDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2d68d687ffde2d68d68 /* PxCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCooking.h"; path = "../../../Include/cooking/PxCooking.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2d68dd07ffde2d68dd0 /* PxMidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMidphaseDesc.h"; path = "../../../Include/cooking/PxMidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2d68e387ffde2d68e38 /* PxTriangleMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshDesc.h"; path = "../../../Include/cooking/PxTriangleMeshDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2d68ea07ffde2d68ea0 /* Pxc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Pxc.h"; path = "../../../Include/cooking/Pxc.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3829c007ffde3829c00 /* Adjacencies.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.cpp"; path = "../../PhysXCooking/src/Adjacencies.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3829c687ffde3829c68 /* Cooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.cpp"; path = "../../PhysXCooking/src/Cooking.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3829cd07ffde3829cd0 /* CookingUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.cpp"; path = "../../PhysXCooking/src/CookingUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3829d387ffde3829d38 /* EdgeList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.cpp"; path = "../../PhysXCooking/src/EdgeList.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3829da07ffde3829da0 /* MeshCleaner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.cpp"; path = "../../PhysXCooking/src/MeshCleaner.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3829e087ffde3829e08 /* Quantizer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.cpp"; path = "../../PhysXCooking/src/Quantizer.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3829e707ffde3829e70 /* Adjacencies.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.h"; path = "../../PhysXCooking/src/Adjacencies.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3829ed87ffde3829ed8 /* Cooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.h"; path = "../../PhysXCooking/src/Cooking.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3829f407ffde3829f40 /* CookingUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.h"; path = "../../PhysXCooking/src/CookingUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3829fa87ffde3829fa8 /* EdgeList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.h"; path = "../../PhysXCooking/src/EdgeList.h"; sourceTree = SOURCE_ROOT; }; - FFFDe382a0107ffde382a010 /* MeshCleaner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.h"; path = "../../PhysXCooking/src/MeshCleaner.h"; sourceTree = SOURCE_ROOT; }; - FFFDe382a0787ffde382a078 /* Quantizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.h"; path = "../../PhysXCooking/src/Quantizer.h"; sourceTree = SOURCE_ROOT; }; - FFFDe382a0e07ffde382a0e0 /* mesh/GrbTriangleMeshCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.cpp"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe382a1487ffde382a148 /* mesh/HeightFieldCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.cpp"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe382a1b07ffde382a1b0 /* mesh/RTreeCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.cpp"; path = "../../PhysXCooking/src/mesh/RTreeCooking.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe382a2187ffde382a218 /* mesh/TriangleMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.cpp"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe382a2807ffde382a280 /* mesh/GrbTriangleMeshCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.h"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.h"; sourceTree = SOURCE_ROOT; }; - FFFDe382a2e87ffde382a2e8 /* mesh/HeightFieldCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.h"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.h"; sourceTree = SOURCE_ROOT; }; - FFFDe382a3507ffde382a350 /* mesh/QuickSelect.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/QuickSelect.h"; path = "../../PhysXCooking/src/mesh/QuickSelect.h"; sourceTree = SOURCE_ROOT; }; - FFFDe382a3b87ffde382a3b8 /* mesh/RTreeCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.h"; path = "../../PhysXCooking/src/mesh/RTreeCooking.h"; sourceTree = SOURCE_ROOT; }; - FFFDe382a4207ffde382a420 /* mesh/TriangleMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.h"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.h"; sourceTree = SOURCE_ROOT; }; - FFFDe382a4887ffde382a488 /* convex/BigConvexDataBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.cpp"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe382a4f07ffde382a4f0 /* convex/ConvexHullBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe382a5587ffde382a558 /* convex/ConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe382a5c07ffde382a5c0 /* convex/ConvexHullUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe382a6287ffde382a628 /* convex/ConvexMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe382a6907ffde382a690 /* convex/ConvexPolygonsBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe382a6f87ffde382a6f8 /* convex/InflationConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe382a7607ffde382a760 /* convex/QuickHullConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe382a7c87ffde382a7c8 /* convex/VolumeIntegration.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/VolumeIntegration.cpp"; path = "../../PhysXCooking/src/convex/VolumeIntegration.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe382a8307ffde382a830 /* convex/BigConvexDataBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.h"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.h"; sourceTree = SOURCE_ROOT; }; - FFFDe382a8987ffde382a898 /* convex/ConvexHullBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.h"; sourceTree = SOURCE_ROOT; }; - FFFDe382a9007ffde382a900 /* convex/ConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.h"; path = "../../PhysXCooking/src/convex/ConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; - FFFDe382a9687ffde382a968 /* convex/ConvexHullUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.h"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFDe382a9d07ffde382a9d0 /* convex/ConvexMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.h"; sourceTree = SOURCE_ROOT; }; - FFFDe382aa387ffde382aa38 /* convex/ConvexPolygonsBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.h"; sourceTree = SOURCE_ROOT; }; - FFFDe382aaa07ffde382aaa0 /* convex/InflationConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.h"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; - FFFDe382ab087ffde382ab08 /* convex/QuickHullConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.h"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; - FFFDe382ab707ffde382ab70 /* convex/VolumeIntegration.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/VolumeIntegration.h"; path = "../../PhysXCooking/src/convex/VolumeIntegration.h"; sourceTree = SOURCE_ROOT; }; + FFFD0cb201d07fa90cb201d0 /* PhysXCooking */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCooking"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD0cb2a2d07fa90cb2a2d0 /* PxBVH33MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH33MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH33MidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD0cb2a3387fa90cb2a338 /* PxBVH34MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH34MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH34MidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD0cb2a3a07fa90cb2a3a0 /* PxConvexMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshDesc.h"; path = "../../../Include/cooking/PxConvexMeshDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD0cb2a4087fa90cb2a408 /* PxCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCooking.h"; path = "../../../Include/cooking/PxCooking.h"; sourceTree = SOURCE_ROOT; }; + FFFD0cb2a4707fa90cb2a470 /* PxMidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMidphaseDesc.h"; path = "../../../Include/cooking/PxMidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD0cb2a4d87fa90cb2a4d8 /* PxTriangleMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshDesc.h"; path = "../../../Include/cooking/PxTriangleMeshDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD0cb2a5407fa90cb2a540 /* Pxc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Pxc.h"; path = "../../../Include/cooking/Pxc.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0b0e007fa90c0b0e00 /* Adjacencies.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.cpp"; path = "../../PhysXCooking/src/Adjacencies.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0b0e687fa90c0b0e68 /* Cooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.cpp"; path = "../../PhysXCooking/src/Cooking.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0b0ed07fa90c0b0ed0 /* CookingUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.cpp"; path = "../../PhysXCooking/src/CookingUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0b0f387fa90c0b0f38 /* EdgeList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.cpp"; path = "../../PhysXCooking/src/EdgeList.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0b0fa07fa90c0b0fa0 /* MeshCleaner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.cpp"; path = "../../PhysXCooking/src/MeshCleaner.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0b10087fa90c0b1008 /* Quantizer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.cpp"; path = "../../PhysXCooking/src/Quantizer.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0b10707fa90c0b1070 /* Adjacencies.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.h"; path = "../../PhysXCooking/src/Adjacencies.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0b10d87fa90c0b10d8 /* Cooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.h"; path = "../../PhysXCooking/src/Cooking.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0b11407fa90c0b1140 /* CookingUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.h"; path = "../../PhysXCooking/src/CookingUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0b11a87fa90c0b11a8 /* EdgeList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.h"; path = "../../PhysXCooking/src/EdgeList.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0b12107fa90c0b1210 /* MeshCleaner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.h"; path = "../../PhysXCooking/src/MeshCleaner.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0b12787fa90c0b1278 /* Quantizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.h"; path = "../../PhysXCooking/src/Quantizer.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0b12e07fa90c0b12e0 /* mesh/GrbTriangleMeshCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.cpp"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0b13487fa90c0b1348 /* mesh/HeightFieldCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.cpp"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0b13b07fa90c0b13b0 /* mesh/RTreeCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.cpp"; path = "../../PhysXCooking/src/mesh/RTreeCooking.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0b14187fa90c0b1418 /* mesh/TriangleMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.cpp"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0b14807fa90c0b1480 /* mesh/GrbTriangleMeshCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.h"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0b14e87fa90c0b14e8 /* mesh/HeightFieldCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.h"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0b15507fa90c0b1550 /* mesh/QuickSelect.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/QuickSelect.h"; path = "../../PhysXCooking/src/mesh/QuickSelect.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0b15b87fa90c0b15b8 /* mesh/RTreeCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.h"; path = "../../PhysXCooking/src/mesh/RTreeCooking.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0b16207fa90c0b1620 /* mesh/TriangleMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.h"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0b16887fa90c0b1688 /* convex/BigConvexDataBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.cpp"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0b16f07fa90c0b16f0 /* convex/ConvexHullBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0b17587fa90c0b1758 /* convex/ConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0b17c07fa90c0b17c0 /* convex/ConvexHullUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0b18287fa90c0b1828 /* convex/ConvexMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0b18907fa90c0b1890 /* convex/ConvexPolygonsBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0b18f87fa90c0b18f8 /* convex/InflationConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0b19607fa90c0b1960 /* convex/QuickHullConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0b19c87fa90c0b19c8 /* convex/VolumeIntegration.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/VolumeIntegration.cpp"; path = "../../PhysXCooking/src/convex/VolumeIntegration.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0b1a307fa90c0b1a30 /* convex/BigConvexDataBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.h"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0b1a987fa90c0b1a98 /* convex/ConvexHullBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0b1b007fa90c0b1b00 /* convex/ConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.h"; path = "../../PhysXCooking/src/convex/ConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0b1b687fa90c0b1b68 /* convex/ConvexHullUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.h"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0b1bd07fa90c0b1bd0 /* convex/ConvexMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0b1c387fa90c0b1c38 /* convex/ConvexPolygonsBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0b1ca07fa90c0b1ca0 /* convex/InflationConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.h"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0b1d087fa90c0b1d08 /* convex/QuickHullConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.h"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0b1d707fa90c0b1d70 /* 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 */ - FFF2e2d74eb07ffde2d74eb0 /* Resources */ = { + FFF20cb201d07fa90cb201d0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -1282,7 +1282,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCe2d74eb07ffde2d74eb0 /* Frameworks */ = { + FFFC0cb201d07fa90cb201d0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -1292,29 +1292,29 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8e2d74eb07ffde2d74eb0 /* Sources */ = { + FFF80cb201d07fa90cb201d0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFe3829c007ffde3829c00, - FFFFe3829c687ffde3829c68, - FFFFe3829cd07ffde3829cd0, - FFFFe3829d387ffde3829d38, - FFFFe3829da07ffde3829da0, - FFFFe3829e087ffde3829e08, - FFFFe382a0e07ffde382a0e0, - FFFFe382a1487ffde382a148, - FFFFe382a1b07ffde382a1b0, - FFFFe382a2187ffde382a218, - FFFFe382a4887ffde382a488, - FFFFe382a4f07ffde382a4f0, - FFFFe382a5587ffde382a558, - FFFFe382a5c07ffde382a5c0, - FFFFe382a6287ffde382a628, - FFFFe382a6907ffde382a690, - FFFFe382a6f87ffde382a6f8, - FFFFe382a7607ffde382a760, - FFFFe382a7c87ffde382a7c8, + FFFF0c0b0e007fa90c0b0e00, + FFFF0c0b0e687fa90c0b0e68, + FFFF0c0b0ed07fa90c0b0ed0, + FFFF0c0b0f387fa90c0b0f38, + FFFF0c0b0fa07fa90c0b0fa0, + FFFF0c0b10087fa90c0b1008, + FFFF0c0b12e07fa90c0b12e0, + FFFF0c0b13487fa90c0b1348, + FFFF0c0b13b07fa90c0b13b0, + FFFF0c0b14187fa90c0b1418, + FFFF0c0b16887fa90c0b1688, + FFFF0c0b16f07fa90c0b16f0, + FFFF0c0b17587fa90c0b1758, + FFFF0c0b17c07fa90c0b17c0, + FFFF0c0b18287fa90c0b1828, + FFFF0c0b18907fa90c0b1890, + FFFF0c0b18f87fa90c0b18f8, + FFFF0c0b19607fa90c0b1960, + FFFF0c0b19c87fa90c0b19c8, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1323,515 +1323,515 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF4e2d66cf07ffde2d66cf0 /* PBXTargetDependency */ = { + FFF40cb29a207fa90cb29a20 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAe2c17a107ffde2c17a10 /* PhysXCommon */; - targetProxy = FFF5e2c17a107ffde2c17a10 /* PBXContainerItemProxy */; + target = FFFA0b897c207fa90b897c20 /* PhysXCommon */; + targetProxy = FFF50b897c207fa90b897c20 /* PBXContainerItemProxy */; }; - FFF4e2d762407ffde2d76240 /* PBXTargetDependency */ = { + FFF40cb299407fa90cb29940 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAe29617f07ffde29617f0 /* PhysXExtensions */; - targetProxy = FFF5e29617f07ffde29617f0 /* PBXContainerItemProxy */; + target = FFFA0cb04a207fa90cb04a20 /* PhysXExtensions */; + targetProxy = FFF50cb04a207fa90cb04a20 /* PBXContainerItemProxy */; }; - FFF4e2d748507ffde2d74850 /* PBXTargetDependency */ = { + FFF40cb251507fa90cb25150 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAe2c0b7d07ffde2c0b7d0 /* PxFoundation */; - targetProxy = FFF5e2c0b7d07ffde2c0b7d0 /* PBXContainerItemProxy */; + target = FFFA0b8818007fa90b881800 /* PxFoundation */; + targetProxy = FFF50b8818007fa90b881800 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PhysXCommon */ - FFFFe30290007ffde3029000 /* src/CmBoxPruning.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDe30290007ffde3029000 /* src/CmBoxPruning.cpp */; }; - FFFFe30290687ffde3029068 /* src/CmCollection.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDe30290687ffde3029068 /* src/CmCollection.cpp */; }; - FFFFe30290d07ffde30290d0 /* src/CmMathUtils.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDe30290d07ffde30290d0 /* src/CmMathUtils.cpp */; }; - FFFFe30291387ffde3029138 /* src/CmPtrTable.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDe30291387ffde3029138 /* src/CmPtrTable.cpp */; }; - FFFFe30291a07ffde30291a0 /* src/CmRadixSort.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDe30291a07ffde30291a0 /* src/CmRadixSort.cpp */; }; - FFFFe30292087ffde3029208 /* src/CmRadixSortBuffered.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDe30292087ffde3029208 /* src/CmRadixSortBuffered.cpp */; }; - FFFFe30292707ffde3029270 /* src/CmRenderOutput.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDe30292707ffde3029270 /* src/CmRenderOutput.cpp */; }; - FFFFe30292d87ffde30292d8 /* src/CmVisualization.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDe30292d87ffde30292d8 /* src/CmVisualization.cpp */; }; - FFFFe38013a87ffde38013a8 /* ../../Include/GeomUtils in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38013a87ffde38013a8 /* ../../Include/GeomUtils */; }; - FFFFe38048e07ffde38048e0 /* src/GuBounds.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38048e07ffde38048e0 /* src/GuBounds.cpp */; }; - FFFFe38049487ffde3804948 /* src/GuBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38049487ffde3804948 /* src/GuBox.cpp */; }; - FFFFe38049b07ffde38049b0 /* src/GuCCTSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38049b07ffde38049b0 /* src/GuCCTSweepTests.cpp */; }; - FFFFe3804a187ffde3804a18 /* src/GuCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3804a187ffde3804a18 /* src/GuCapsule.cpp */; }; - FFFFe3804a807ffde3804a80 /* src/GuGeometryQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3804a807ffde3804a80 /* src/GuGeometryQuery.cpp */; }; - FFFFe3804ae87ffde3804ae8 /* src/GuGeometryUnion.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3804ae87ffde3804ae8 /* src/GuGeometryUnion.cpp */; }; - FFFFe3804b507ffde3804b50 /* src/GuInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3804b507ffde3804b50 /* src/GuInternal.cpp */; }; - FFFFe3804bb87ffde3804bb8 /* src/GuMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3804bb87ffde3804bb8 /* src/GuMTD.cpp */; }; - FFFFe3804c207ffde3804c20 /* src/GuMeshFactory.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3804c207ffde3804c20 /* src/GuMeshFactory.cpp */; }; - FFFFe3804c887ffde3804c88 /* src/GuMetaData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3804c887ffde3804c88 /* src/GuMetaData.cpp */; }; - FFFFe3804cf07ffde3804cf0 /* src/GuOverlapTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3804cf07ffde3804cf0 /* src/GuOverlapTests.cpp */; }; - FFFFe3804d587ffde3804d58 /* src/GuRaycastTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3804d587ffde3804d58 /* src/GuRaycastTests.cpp */; }; - FFFFe3804dc07ffde3804dc0 /* src/GuSerialize.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3804dc07ffde3804dc0 /* src/GuSerialize.cpp */; }; - FFFFe3804e287ffde3804e28 /* src/GuSweepMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3804e287ffde3804e28 /* src/GuSweepMTD.cpp */; }; - FFFFe3804e907ffde3804e90 /* src/GuSweepSharedTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3804e907ffde3804e90 /* src/GuSweepSharedTests.cpp */; }; - FFFFe3804ef87ffde3804ef8 /* src/GuSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3804ef87ffde3804ef8 /* src/GuSweepTests.cpp */; }; - FFFFe3804f607ffde3804f60 /* src/contact/GuContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3804f607ffde3804f60 /* src/contact/GuContactBoxBox.cpp */; }; - FFFFe3804fc87ffde3804fc8 /* src/contact/GuContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3804fc87ffde3804fc8 /* src/contact/GuContactCapsuleBox.cpp */; }; - FFFFe38050307ffde3805030 /* src/contact/GuContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38050307ffde3805030 /* src/contact/GuContactCapsuleCapsule.cpp */; }; - FFFFe38050987ffde3805098 /* src/contact/GuContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38050987ffde3805098 /* src/contact/GuContactCapsuleConvex.cpp */; }; - FFFFe38051007ffde3805100 /* src/contact/GuContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38051007ffde3805100 /* src/contact/GuContactCapsuleMesh.cpp */; }; - FFFFe38051687ffde3805168 /* src/contact/GuContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38051687ffde3805168 /* src/contact/GuContactConvexConvex.cpp */; }; - FFFFe38051d07ffde38051d0 /* src/contact/GuContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38051d07ffde38051d0 /* src/contact/GuContactConvexMesh.cpp */; }; - FFFFe38052387ffde3805238 /* src/contact/GuContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38052387ffde3805238 /* src/contact/GuContactPlaneBox.cpp */; }; - FFFFe38052a07ffde38052a0 /* src/contact/GuContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38052a07ffde38052a0 /* src/contact/GuContactPlaneCapsule.cpp */; }; - FFFFe38053087ffde3805308 /* src/contact/GuContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38053087ffde3805308 /* src/contact/GuContactPlaneConvex.cpp */; }; - FFFFe38053707ffde3805370 /* src/contact/GuContactPolygonPolygon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38053707ffde3805370 /* src/contact/GuContactPolygonPolygon.cpp */; }; - FFFFe38053d87ffde38053d8 /* src/contact/GuContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38053d87ffde38053d8 /* src/contact/GuContactSphereBox.cpp */; }; - FFFFe38054407ffde3805440 /* src/contact/GuContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38054407ffde3805440 /* src/contact/GuContactSphereCapsule.cpp */; }; - FFFFe38054a87ffde38054a8 /* src/contact/GuContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38054a87ffde38054a8 /* src/contact/GuContactSphereMesh.cpp */; }; - FFFFe38055107ffde3805510 /* src/contact/GuContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38055107ffde3805510 /* src/contact/GuContactSpherePlane.cpp */; }; - FFFFe38055787ffde3805578 /* src/contact/GuContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38055787ffde3805578 /* src/contact/GuContactSphereSphere.cpp */; }; - FFFFe38055e07ffde38055e0 /* src/contact/GuFeatureCode.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38055e07ffde38055e0 /* src/contact/GuFeatureCode.cpp */; }; - FFFFe38056487ffde3805648 /* src/contact/GuLegacyContactBoxHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38056487ffde3805648 /* src/contact/GuLegacyContactBoxHeightField.cpp */; }; - FFFFe38056b07ffde38056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38056b07ffde38056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */; }; - FFFFe38057187ffde3805718 /* src/contact/GuLegacyContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38057187ffde3805718 /* src/contact/GuLegacyContactConvexHeightField.cpp */; }; - FFFFe38057807ffde3805780 /* src/contact/GuLegacyContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38057807ffde3805780 /* src/contact/GuLegacyContactSphereHeightField.cpp */; }; - FFFFe38057e87ffde38057e8 /* src/common/GuBarycentricCoordinates.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38057e87ffde38057e8 /* src/common/GuBarycentricCoordinates.cpp */; }; - FFFFe38058507ffde3805850 /* src/common/GuSeparatingAxes.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38058507ffde3805850 /* src/common/GuSeparatingAxes.cpp */; }; - FFFFe38058b87ffde38058b8 /* src/convex/GuBigConvexData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38058b87ffde38058b8 /* src/convex/GuBigConvexData.cpp */; }; - FFFFe38059207ffde3805920 /* src/convex/GuConvexHelper.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38059207ffde3805920 /* src/convex/GuConvexHelper.cpp */; }; - FFFFe38059887ffde3805988 /* src/convex/GuConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38059887ffde3805988 /* src/convex/GuConvexMesh.cpp */; }; - FFFFe38059f07ffde38059f0 /* src/convex/GuConvexSupportTable.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38059f07ffde38059f0 /* src/convex/GuConvexSupportTable.cpp */; }; - FFFFe3805a587ffde3805a58 /* src/convex/GuConvexUtilsInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3805a587ffde3805a58 /* src/convex/GuConvexUtilsInternal.cpp */; }; - FFFFe3805ac07ffde3805ac0 /* src/convex/GuHillClimbing.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3805ac07ffde3805ac0 /* src/convex/GuHillClimbing.cpp */; }; - FFFFe3805b287ffde3805b28 /* src/convex/GuShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3805b287ffde3805b28 /* src/convex/GuShapeConvex.cpp */; }; - FFFFe3805b907ffde3805b90 /* src/distance/GuDistancePointBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3805b907ffde3805b90 /* src/distance/GuDistancePointBox.cpp */; }; - FFFFe3805bf87ffde3805bf8 /* src/distance/GuDistancePointTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3805bf87ffde3805bf8 /* src/distance/GuDistancePointTriangle.cpp */; }; - FFFFe3805c607ffde3805c60 /* src/distance/GuDistanceSegmentBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3805c607ffde3805c60 /* src/distance/GuDistanceSegmentBox.cpp */; }; - FFFFe3805cc87ffde3805cc8 /* src/distance/GuDistanceSegmentSegment.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3805cc87ffde3805cc8 /* src/distance/GuDistanceSegmentSegment.cpp */; }; - FFFFe3805d307ffde3805d30 /* src/distance/GuDistanceSegmentTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3805d307ffde3805d30 /* src/distance/GuDistanceSegmentTriangle.cpp */; }; - FFFFe3805d987ffde3805d98 /* src/sweep/GuSweepBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3805d987ffde3805d98 /* src/sweep/GuSweepBoxBox.cpp */; }; - FFFFe3805e007ffde3805e00 /* src/sweep/GuSweepBoxSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3805e007ffde3805e00 /* src/sweep/GuSweepBoxSphere.cpp */; }; - FFFFe3805e687ffde3805e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3805e687ffde3805e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */; }; - FFFFe3805ed07ffde3805ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3805ed07ffde3805ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */; }; - FFFFe3805f387ffde3805f38 /* src/sweep/GuSweepCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3805f387ffde3805f38 /* src/sweep/GuSweepCapsuleBox.cpp */; }; - FFFFe3805fa07ffde3805fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3805fa07ffde3805fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */; }; - FFFFe38060087ffde3806008 /* src/sweep/GuSweepCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38060087ffde3806008 /* src/sweep/GuSweepCapsuleTriangle.cpp */; }; - FFFFe38060707ffde3806070 /* src/sweep/GuSweepSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38060707ffde3806070 /* src/sweep/GuSweepSphereCapsule.cpp */; }; - FFFFe38060d87ffde38060d8 /* src/sweep/GuSweepSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38060d87ffde38060d8 /* src/sweep/GuSweepSphereSphere.cpp */; }; - FFFFe38061407ffde3806140 /* src/sweep/GuSweepSphereTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38061407ffde3806140 /* src/sweep/GuSweepSphereTriangle.cpp */; }; - FFFFe38061a87ffde38061a8 /* src/sweep/GuSweepTriangleUtils.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38061a87ffde38061a8 /* src/sweep/GuSweepTriangleUtils.cpp */; }; - FFFFe38062107ffde3806210 /* src/gjk/GuEPA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38062107ffde3806210 /* src/gjk/GuEPA.cpp */; }; - FFFFe38062787ffde3806278 /* src/gjk/GuGJKSimplex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38062787ffde3806278 /* src/gjk/GuGJKSimplex.cpp */; }; - FFFFe38062e07ffde38062e0 /* src/gjk/GuGJKTest.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38062e07ffde38062e0 /* src/gjk/GuGJKTest.cpp */; }; - FFFFe38063487ffde3806348 /* src/intersection/GuIntersectionBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38063487ffde3806348 /* src/intersection/GuIntersectionBoxBox.cpp */; }; - FFFFe38063b07ffde38063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38063b07ffde38063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */; }; - FFFFe38064187ffde3806418 /* src/intersection/GuIntersectionEdgeEdge.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38064187ffde3806418 /* src/intersection/GuIntersectionEdgeEdge.cpp */; }; - FFFFe38064807ffde3806480 /* src/intersection/GuIntersectionRayBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38064807ffde3806480 /* src/intersection/GuIntersectionRayBox.cpp */; }; - FFFFe38064e87ffde38064e8 /* src/intersection/GuIntersectionRayCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38064e87ffde38064e8 /* src/intersection/GuIntersectionRayCapsule.cpp */; }; - FFFFe38065507ffde3806550 /* src/intersection/GuIntersectionRaySphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38065507ffde3806550 /* src/intersection/GuIntersectionRaySphere.cpp */; }; - FFFFe38065b87ffde38065b8 /* src/intersection/GuIntersectionSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38065b87ffde38065b8 /* src/intersection/GuIntersectionSphereBox.cpp */; }; - FFFFe38066207ffde3806620 /* src/intersection/GuIntersectionTriangleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38066207ffde3806620 /* src/intersection/GuIntersectionTriangleBox.cpp */; }; - FFFFe38066887ffde3806688 /* src/mesh/GuBV32.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38066887ffde3806688 /* src/mesh/GuBV32.cpp */; }; - FFFFe38066f07ffde38066f0 /* src/mesh/GuBV32Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38066f07ffde38066f0 /* src/mesh/GuBV32Build.cpp */; }; - FFFFe38067587ffde3806758 /* src/mesh/GuBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38067587ffde3806758 /* src/mesh/GuBV4.cpp */; }; - FFFFe38067c07ffde38067c0 /* src/mesh/GuBV4Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38067c07ffde38067c0 /* src/mesh/GuBV4Build.cpp */; }; - FFFFe38068287ffde3806828 /* src/mesh/GuBV4_AABBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38068287ffde3806828 /* src/mesh/GuBV4_AABBSweep.cpp */; }; - FFFFe38068907ffde3806890 /* src/mesh/GuBV4_BoxOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38068907ffde3806890 /* src/mesh/GuBV4_BoxOverlap.cpp */; }; - FFFFe38068f87ffde38068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38068f87ffde38068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */; }; - FFFFe38069607ffde3806960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38069607ffde3806960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */; }; - FFFFe38069c87ffde38069c8 /* src/mesh/GuBV4_OBBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38069c87ffde38069c8 /* src/mesh/GuBV4_OBBSweep.cpp */; }; - FFFFe3806a307ffde3806a30 /* src/mesh/GuBV4_Raycast.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3806a307ffde3806a30 /* src/mesh/GuBV4_Raycast.cpp */; }; - FFFFe3806a987ffde3806a98 /* src/mesh/GuBV4_SphereOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3806a987ffde3806a98 /* src/mesh/GuBV4_SphereOverlap.cpp */; }; - FFFFe3806b007ffde3806b00 /* src/mesh/GuBV4_SphereSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3806b007ffde3806b00 /* src/mesh/GuBV4_SphereSweep.cpp */; }; - FFFFe3806b687ffde3806b68 /* src/mesh/GuMeshQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3806b687ffde3806b68 /* src/mesh/GuMeshQuery.cpp */; }; - FFFFe3806bd07ffde3806bd0 /* src/mesh/GuMidphaseBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3806bd07ffde3806bd0 /* src/mesh/GuMidphaseBV4.cpp */; }; - FFFFe3806c387ffde3806c38 /* src/mesh/GuMidphaseRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3806c387ffde3806c38 /* src/mesh/GuMidphaseRTree.cpp */; }; - FFFFe3806ca07ffde3806ca0 /* src/mesh/GuOverlapTestsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3806ca07ffde3806ca0 /* src/mesh/GuOverlapTestsMesh.cpp */; }; - FFFFe3806d087ffde3806d08 /* src/mesh/GuRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3806d087ffde3806d08 /* src/mesh/GuRTree.cpp */; }; - FFFFe3806d707ffde3806d70 /* src/mesh/GuRTreeQueries.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3806d707ffde3806d70 /* src/mesh/GuRTreeQueries.cpp */; }; - FFFFe3806dd87ffde3806dd8 /* src/mesh/GuSweepsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3806dd87ffde3806dd8 /* src/mesh/GuSweepsMesh.cpp */; }; - FFFFe3806e407ffde3806e40 /* src/mesh/GuTriangleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3806e407ffde3806e40 /* src/mesh/GuTriangleMesh.cpp */; }; - FFFFe3806ea87ffde3806ea8 /* src/mesh/GuTriangleMeshBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3806ea87ffde3806ea8 /* src/mesh/GuTriangleMeshBV4.cpp */; }; - FFFFe3806f107ffde3806f10 /* src/mesh/GuTriangleMeshRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3806f107ffde3806f10 /* src/mesh/GuTriangleMeshRTree.cpp */; }; - FFFFe3806f787ffde3806f78 /* src/hf/GuHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3806f787ffde3806f78 /* src/hf/GuHeightField.cpp */; }; - FFFFe3806fe07ffde3806fe0 /* src/hf/GuHeightFieldUtil.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3806fe07ffde3806fe0 /* src/hf/GuHeightFieldUtil.cpp */; }; - FFFFe38070487ffde3807048 /* src/hf/GuOverlapTestsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38070487ffde3807048 /* src/hf/GuOverlapTestsHF.cpp */; }; - FFFFe38070b07ffde38070b0 /* src/hf/GuSweepsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38070b07ffde38070b0 /* src/hf/GuSweepsHF.cpp */; }; - FFFFe38071187ffde3807118 /* src/pcm/GuPCMContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38071187ffde3807118 /* src/pcm/GuPCMContactBoxBox.cpp */; }; - FFFFe38071807ffde3807180 /* src/pcm/GuPCMContactBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38071807ffde3807180 /* src/pcm/GuPCMContactBoxConvex.cpp */; }; - FFFFe38071e87ffde38071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38071e87ffde38071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */; }; - FFFFe38072507ffde3807250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38072507ffde3807250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */; }; - FFFFe38072b87ffde38072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38072b87ffde38072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */; }; - FFFFe38073207ffde3807320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38073207ffde3807320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */; }; - FFFFe38073887ffde3807388 /* src/pcm/GuPCMContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38073887ffde3807388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */; }; - FFFFe38073f07ffde38073f0 /* src/pcm/GuPCMContactConvexCommon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38073f07ffde38073f0 /* src/pcm/GuPCMContactConvexCommon.cpp */; }; - FFFFe38074587ffde3807458 /* src/pcm/GuPCMContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38074587ffde3807458 /* src/pcm/GuPCMContactConvexConvex.cpp */; }; - FFFFe38074c07ffde38074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38074c07ffde38074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */; }; - FFFFe38075287ffde3807528 /* src/pcm/GuPCMContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38075287ffde3807528 /* src/pcm/GuPCMContactConvexMesh.cpp */; }; - FFFFe38075907ffde3807590 /* src/pcm/GuPCMContactGenBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38075907ffde3807590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */; }; - FFFFe38075f87ffde38075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38075f87ffde38075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */; }; - FFFFe38076607ffde3807660 /* src/pcm/GuPCMContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38076607ffde3807660 /* src/pcm/GuPCMContactPlaneBox.cpp */; }; - FFFFe38076c87ffde38076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38076c87ffde38076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */; }; - FFFFe38077307ffde3807730 /* src/pcm/GuPCMContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38077307ffde3807730 /* src/pcm/GuPCMContactPlaneConvex.cpp */; }; - FFFFe38077987ffde3807798 /* src/pcm/GuPCMContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38077987ffde3807798 /* src/pcm/GuPCMContactSphereBox.cpp */; }; - FFFFe38078007ffde3807800 /* src/pcm/GuPCMContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38078007ffde3807800 /* src/pcm/GuPCMContactSphereCapsule.cpp */; }; - FFFFe38078687ffde3807868 /* src/pcm/GuPCMContactSphereConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38078687ffde3807868 /* src/pcm/GuPCMContactSphereConvex.cpp */; }; - FFFFe38078d07ffde38078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38078d07ffde38078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */; }; - FFFFe38079387ffde3807938 /* src/pcm/GuPCMContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38079387ffde3807938 /* src/pcm/GuPCMContactSphereMesh.cpp */; }; - FFFFe38079a07ffde38079a0 /* src/pcm/GuPCMContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe38079a07ffde38079a0 /* src/pcm/GuPCMContactSpherePlane.cpp */; }; - FFFFe3807a087ffde3807a08 /* src/pcm/GuPCMContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3807a087ffde3807a08 /* src/pcm/GuPCMContactSphereSphere.cpp */; }; - FFFFe3807a707ffde3807a70 /* src/pcm/GuPCMShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3807a707ffde3807a70 /* src/pcm/GuPCMShapeConvex.cpp */; }; - FFFFe3807ad87ffde3807ad8 /* src/pcm/GuPCMTriangleContactGen.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3807ad87ffde3807ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */; }; - FFFFe3807b407ffde3807b40 /* src/pcm/GuPersistentContactManifold.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3807b407ffde3807b40 /* src/pcm/GuPersistentContactManifold.cpp */; }; - FFFFe3807ba87ffde3807ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3807ba87ffde3807ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */; }; - FFFFe3807c107ffde3807c10 /* src/ccd/GuCCDSweepPrimitives.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDe3807c107ffde3807c10 /* src/ccd/GuCCDSweepPrimitives.cpp */; }; + FFFF0b1a48007fa90b1a4800 /* src/CmBoxPruning.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD0b1a48007fa90b1a4800 /* src/CmBoxPruning.cpp */; }; + FFFF0b1a48687fa90b1a4868 /* src/CmCollection.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD0b1a48687fa90b1a4868 /* src/CmCollection.cpp */; }; + FFFF0b1a48d07fa90b1a48d0 /* src/CmMathUtils.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD0b1a48d07fa90b1a48d0 /* src/CmMathUtils.cpp */; }; + FFFF0b1a49387fa90b1a4938 /* src/CmPtrTable.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD0b1a49387fa90b1a4938 /* src/CmPtrTable.cpp */; }; + FFFF0b1a49a07fa90b1a49a0 /* src/CmRadixSort.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD0b1a49a07fa90b1a49a0 /* src/CmRadixSort.cpp */; }; + FFFF0b1a4a087fa90b1a4a08 /* src/CmRadixSortBuffered.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD0b1a4a087fa90b1a4a08 /* src/CmRadixSortBuffered.cpp */; }; + FFFF0b1a4a707fa90b1a4a70 /* src/CmRenderOutput.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD0b1a4a707fa90b1a4a70 /* src/CmRenderOutput.cpp */; }; + FFFF0b1a4ad87fa90b1a4ad8 /* src/CmVisualization.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD0b1a4ad87fa90b1a4ad8 /* src/CmVisualization.cpp */; }; + FFFF0c0013a87fa90c0013a8 /* ../../Include/GeomUtils in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0013a87fa90c0013a8 /* ../../Include/GeomUtils */; }; + FFFF0c0048e07fa90c0048e0 /* src/GuBounds.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0048e07fa90c0048e0 /* src/GuBounds.cpp */; }; + FFFF0c0049487fa90c004948 /* src/GuBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0049487fa90c004948 /* src/GuBox.cpp */; }; + FFFF0c0049b07fa90c0049b0 /* src/GuCCTSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0049b07fa90c0049b0 /* src/GuCCTSweepTests.cpp */; }; + FFFF0c004a187fa90c004a18 /* src/GuCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c004a187fa90c004a18 /* src/GuCapsule.cpp */; }; + FFFF0c004a807fa90c004a80 /* src/GuGeometryQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c004a807fa90c004a80 /* src/GuGeometryQuery.cpp */; }; + FFFF0c004ae87fa90c004ae8 /* src/GuGeometryUnion.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c004ae87fa90c004ae8 /* src/GuGeometryUnion.cpp */; }; + FFFF0c004b507fa90c004b50 /* src/GuInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c004b507fa90c004b50 /* src/GuInternal.cpp */; }; + FFFF0c004bb87fa90c004bb8 /* src/GuMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c004bb87fa90c004bb8 /* src/GuMTD.cpp */; }; + FFFF0c004c207fa90c004c20 /* src/GuMeshFactory.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c004c207fa90c004c20 /* src/GuMeshFactory.cpp */; }; + FFFF0c004c887fa90c004c88 /* src/GuMetaData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c004c887fa90c004c88 /* src/GuMetaData.cpp */; }; + FFFF0c004cf07fa90c004cf0 /* src/GuOverlapTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c004cf07fa90c004cf0 /* src/GuOverlapTests.cpp */; }; + FFFF0c004d587fa90c004d58 /* src/GuRaycastTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c004d587fa90c004d58 /* src/GuRaycastTests.cpp */; }; + FFFF0c004dc07fa90c004dc0 /* src/GuSerialize.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c004dc07fa90c004dc0 /* src/GuSerialize.cpp */; }; + FFFF0c004e287fa90c004e28 /* src/GuSweepMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c004e287fa90c004e28 /* src/GuSweepMTD.cpp */; }; + FFFF0c004e907fa90c004e90 /* src/GuSweepSharedTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c004e907fa90c004e90 /* src/GuSweepSharedTests.cpp */; }; + FFFF0c004ef87fa90c004ef8 /* src/GuSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c004ef87fa90c004ef8 /* src/GuSweepTests.cpp */; }; + FFFF0c004f607fa90c004f60 /* src/contact/GuContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c004f607fa90c004f60 /* src/contact/GuContactBoxBox.cpp */; }; + FFFF0c004fc87fa90c004fc8 /* src/contact/GuContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c004fc87fa90c004fc8 /* src/contact/GuContactCapsuleBox.cpp */; }; + FFFF0c0050307fa90c005030 /* src/contact/GuContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0050307fa90c005030 /* src/contact/GuContactCapsuleCapsule.cpp */; }; + FFFF0c0050987fa90c005098 /* src/contact/GuContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0050987fa90c005098 /* src/contact/GuContactCapsuleConvex.cpp */; }; + FFFF0c0051007fa90c005100 /* src/contact/GuContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0051007fa90c005100 /* src/contact/GuContactCapsuleMesh.cpp */; }; + FFFF0c0051687fa90c005168 /* src/contact/GuContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0051687fa90c005168 /* src/contact/GuContactConvexConvex.cpp */; }; + FFFF0c0051d07fa90c0051d0 /* src/contact/GuContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0051d07fa90c0051d0 /* src/contact/GuContactConvexMesh.cpp */; }; + FFFF0c0052387fa90c005238 /* src/contact/GuContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0052387fa90c005238 /* src/contact/GuContactPlaneBox.cpp */; }; + FFFF0c0052a07fa90c0052a0 /* src/contact/GuContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0052a07fa90c0052a0 /* src/contact/GuContactPlaneCapsule.cpp */; }; + FFFF0c0053087fa90c005308 /* src/contact/GuContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0053087fa90c005308 /* src/contact/GuContactPlaneConvex.cpp */; }; + FFFF0c0053707fa90c005370 /* src/contact/GuContactPolygonPolygon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0053707fa90c005370 /* src/contact/GuContactPolygonPolygon.cpp */; }; + FFFF0c0053d87fa90c0053d8 /* src/contact/GuContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0053d87fa90c0053d8 /* src/contact/GuContactSphereBox.cpp */; }; + FFFF0c0054407fa90c005440 /* src/contact/GuContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0054407fa90c005440 /* src/contact/GuContactSphereCapsule.cpp */; }; + FFFF0c0054a87fa90c0054a8 /* src/contact/GuContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0054a87fa90c0054a8 /* src/contact/GuContactSphereMesh.cpp */; }; + FFFF0c0055107fa90c005510 /* src/contact/GuContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0055107fa90c005510 /* src/contact/GuContactSpherePlane.cpp */; }; + FFFF0c0055787fa90c005578 /* src/contact/GuContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0055787fa90c005578 /* src/contact/GuContactSphereSphere.cpp */; }; + FFFF0c0055e07fa90c0055e0 /* src/contact/GuFeatureCode.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0055e07fa90c0055e0 /* src/contact/GuFeatureCode.cpp */; }; + FFFF0c0056487fa90c005648 /* src/contact/GuLegacyContactBoxHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0056487fa90c005648 /* src/contact/GuLegacyContactBoxHeightField.cpp */; }; + FFFF0c0056b07fa90c0056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0056b07fa90c0056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */; }; + FFFF0c0057187fa90c005718 /* src/contact/GuLegacyContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0057187fa90c005718 /* src/contact/GuLegacyContactConvexHeightField.cpp */; }; + FFFF0c0057807fa90c005780 /* src/contact/GuLegacyContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0057807fa90c005780 /* src/contact/GuLegacyContactSphereHeightField.cpp */; }; + FFFF0c0057e87fa90c0057e8 /* src/common/GuBarycentricCoordinates.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0057e87fa90c0057e8 /* src/common/GuBarycentricCoordinates.cpp */; }; + FFFF0c0058507fa90c005850 /* src/common/GuSeparatingAxes.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0058507fa90c005850 /* src/common/GuSeparatingAxes.cpp */; }; + FFFF0c0058b87fa90c0058b8 /* src/convex/GuBigConvexData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0058b87fa90c0058b8 /* src/convex/GuBigConvexData.cpp */; }; + FFFF0c0059207fa90c005920 /* src/convex/GuConvexHelper.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0059207fa90c005920 /* src/convex/GuConvexHelper.cpp */; }; + FFFF0c0059887fa90c005988 /* src/convex/GuConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0059887fa90c005988 /* src/convex/GuConvexMesh.cpp */; }; + FFFF0c0059f07fa90c0059f0 /* src/convex/GuConvexSupportTable.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0059f07fa90c0059f0 /* src/convex/GuConvexSupportTable.cpp */; }; + FFFF0c005a587fa90c005a58 /* src/convex/GuConvexUtilsInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c005a587fa90c005a58 /* src/convex/GuConvexUtilsInternal.cpp */; }; + FFFF0c005ac07fa90c005ac0 /* src/convex/GuHillClimbing.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c005ac07fa90c005ac0 /* src/convex/GuHillClimbing.cpp */; }; + FFFF0c005b287fa90c005b28 /* src/convex/GuShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c005b287fa90c005b28 /* src/convex/GuShapeConvex.cpp */; }; + FFFF0c005b907fa90c005b90 /* src/distance/GuDistancePointBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c005b907fa90c005b90 /* src/distance/GuDistancePointBox.cpp */; }; + FFFF0c005bf87fa90c005bf8 /* src/distance/GuDistancePointTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c005bf87fa90c005bf8 /* src/distance/GuDistancePointTriangle.cpp */; }; + FFFF0c005c607fa90c005c60 /* src/distance/GuDistanceSegmentBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c005c607fa90c005c60 /* src/distance/GuDistanceSegmentBox.cpp */; }; + FFFF0c005cc87fa90c005cc8 /* src/distance/GuDistanceSegmentSegment.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c005cc87fa90c005cc8 /* src/distance/GuDistanceSegmentSegment.cpp */; }; + FFFF0c005d307fa90c005d30 /* src/distance/GuDistanceSegmentTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c005d307fa90c005d30 /* src/distance/GuDistanceSegmentTriangle.cpp */; }; + FFFF0c005d987fa90c005d98 /* src/sweep/GuSweepBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c005d987fa90c005d98 /* src/sweep/GuSweepBoxBox.cpp */; }; + FFFF0c005e007fa90c005e00 /* src/sweep/GuSweepBoxSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c005e007fa90c005e00 /* src/sweep/GuSweepBoxSphere.cpp */; }; + FFFF0c005e687fa90c005e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c005e687fa90c005e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */; }; + FFFF0c005ed07fa90c005ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c005ed07fa90c005ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */; }; + FFFF0c005f387fa90c005f38 /* src/sweep/GuSweepCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c005f387fa90c005f38 /* src/sweep/GuSweepCapsuleBox.cpp */; }; + FFFF0c005fa07fa90c005fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c005fa07fa90c005fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */; }; + FFFF0c0060087fa90c006008 /* src/sweep/GuSweepCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0060087fa90c006008 /* src/sweep/GuSweepCapsuleTriangle.cpp */; }; + FFFF0c0060707fa90c006070 /* src/sweep/GuSweepSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0060707fa90c006070 /* src/sweep/GuSweepSphereCapsule.cpp */; }; + FFFF0c0060d87fa90c0060d8 /* src/sweep/GuSweepSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0060d87fa90c0060d8 /* src/sweep/GuSweepSphereSphere.cpp */; }; + FFFF0c0061407fa90c006140 /* src/sweep/GuSweepSphereTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0061407fa90c006140 /* src/sweep/GuSweepSphereTriangle.cpp */; }; + FFFF0c0061a87fa90c0061a8 /* src/sweep/GuSweepTriangleUtils.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0061a87fa90c0061a8 /* src/sweep/GuSweepTriangleUtils.cpp */; }; + FFFF0c0062107fa90c006210 /* src/gjk/GuEPA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0062107fa90c006210 /* src/gjk/GuEPA.cpp */; }; + FFFF0c0062787fa90c006278 /* src/gjk/GuGJKSimplex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0062787fa90c006278 /* src/gjk/GuGJKSimplex.cpp */; }; + FFFF0c0062e07fa90c0062e0 /* src/gjk/GuGJKTest.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0062e07fa90c0062e0 /* src/gjk/GuGJKTest.cpp */; }; + FFFF0c0063487fa90c006348 /* src/intersection/GuIntersectionBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0063487fa90c006348 /* src/intersection/GuIntersectionBoxBox.cpp */; }; + FFFF0c0063b07fa90c0063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0063b07fa90c0063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */; }; + FFFF0c0064187fa90c006418 /* src/intersection/GuIntersectionEdgeEdge.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0064187fa90c006418 /* src/intersection/GuIntersectionEdgeEdge.cpp */; }; + FFFF0c0064807fa90c006480 /* src/intersection/GuIntersectionRayBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0064807fa90c006480 /* src/intersection/GuIntersectionRayBox.cpp */; }; + FFFF0c0064e87fa90c0064e8 /* src/intersection/GuIntersectionRayCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0064e87fa90c0064e8 /* src/intersection/GuIntersectionRayCapsule.cpp */; }; + FFFF0c0065507fa90c006550 /* src/intersection/GuIntersectionRaySphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0065507fa90c006550 /* src/intersection/GuIntersectionRaySphere.cpp */; }; + FFFF0c0065b87fa90c0065b8 /* src/intersection/GuIntersectionSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0065b87fa90c0065b8 /* src/intersection/GuIntersectionSphereBox.cpp */; }; + FFFF0c0066207fa90c006620 /* src/intersection/GuIntersectionTriangleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0066207fa90c006620 /* src/intersection/GuIntersectionTriangleBox.cpp */; }; + FFFF0c0066887fa90c006688 /* src/mesh/GuBV32.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0066887fa90c006688 /* src/mesh/GuBV32.cpp */; }; + FFFF0c0066f07fa90c0066f0 /* src/mesh/GuBV32Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0066f07fa90c0066f0 /* src/mesh/GuBV32Build.cpp */; }; + FFFF0c0067587fa90c006758 /* src/mesh/GuBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0067587fa90c006758 /* src/mesh/GuBV4.cpp */; }; + FFFF0c0067c07fa90c0067c0 /* src/mesh/GuBV4Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0067c07fa90c0067c0 /* src/mesh/GuBV4Build.cpp */; }; + FFFF0c0068287fa90c006828 /* src/mesh/GuBV4_AABBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0068287fa90c006828 /* src/mesh/GuBV4_AABBSweep.cpp */; }; + FFFF0c0068907fa90c006890 /* src/mesh/GuBV4_BoxOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0068907fa90c006890 /* src/mesh/GuBV4_BoxOverlap.cpp */; }; + FFFF0c0068f87fa90c0068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0068f87fa90c0068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */; }; + FFFF0c0069607fa90c006960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0069607fa90c006960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */; }; + FFFF0c0069c87fa90c0069c8 /* src/mesh/GuBV4_OBBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0069c87fa90c0069c8 /* src/mesh/GuBV4_OBBSweep.cpp */; }; + FFFF0c006a307fa90c006a30 /* src/mesh/GuBV4_Raycast.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c006a307fa90c006a30 /* src/mesh/GuBV4_Raycast.cpp */; }; + FFFF0c006a987fa90c006a98 /* src/mesh/GuBV4_SphereOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c006a987fa90c006a98 /* src/mesh/GuBV4_SphereOverlap.cpp */; }; + FFFF0c006b007fa90c006b00 /* src/mesh/GuBV4_SphereSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c006b007fa90c006b00 /* src/mesh/GuBV4_SphereSweep.cpp */; }; + FFFF0c006b687fa90c006b68 /* src/mesh/GuMeshQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c006b687fa90c006b68 /* src/mesh/GuMeshQuery.cpp */; }; + FFFF0c006bd07fa90c006bd0 /* src/mesh/GuMidphaseBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c006bd07fa90c006bd0 /* src/mesh/GuMidphaseBV4.cpp */; }; + FFFF0c006c387fa90c006c38 /* src/mesh/GuMidphaseRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c006c387fa90c006c38 /* src/mesh/GuMidphaseRTree.cpp */; }; + FFFF0c006ca07fa90c006ca0 /* src/mesh/GuOverlapTestsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c006ca07fa90c006ca0 /* src/mesh/GuOverlapTestsMesh.cpp */; }; + FFFF0c006d087fa90c006d08 /* src/mesh/GuRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c006d087fa90c006d08 /* src/mesh/GuRTree.cpp */; }; + FFFF0c006d707fa90c006d70 /* src/mesh/GuRTreeQueries.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c006d707fa90c006d70 /* src/mesh/GuRTreeQueries.cpp */; }; + FFFF0c006dd87fa90c006dd8 /* src/mesh/GuSweepsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c006dd87fa90c006dd8 /* src/mesh/GuSweepsMesh.cpp */; }; + FFFF0c006e407fa90c006e40 /* src/mesh/GuTriangleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c006e407fa90c006e40 /* src/mesh/GuTriangleMesh.cpp */; }; + FFFF0c006ea87fa90c006ea8 /* src/mesh/GuTriangleMeshBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c006ea87fa90c006ea8 /* src/mesh/GuTriangleMeshBV4.cpp */; }; + FFFF0c006f107fa90c006f10 /* src/mesh/GuTriangleMeshRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c006f107fa90c006f10 /* src/mesh/GuTriangleMeshRTree.cpp */; }; + FFFF0c006f787fa90c006f78 /* src/hf/GuHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c006f787fa90c006f78 /* src/hf/GuHeightField.cpp */; }; + FFFF0c006fe07fa90c006fe0 /* src/hf/GuHeightFieldUtil.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c006fe07fa90c006fe0 /* src/hf/GuHeightFieldUtil.cpp */; }; + FFFF0c0070487fa90c007048 /* src/hf/GuOverlapTestsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0070487fa90c007048 /* src/hf/GuOverlapTestsHF.cpp */; }; + FFFF0c0070b07fa90c0070b0 /* src/hf/GuSweepsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0070b07fa90c0070b0 /* src/hf/GuSweepsHF.cpp */; }; + FFFF0c0071187fa90c007118 /* src/pcm/GuPCMContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0071187fa90c007118 /* src/pcm/GuPCMContactBoxBox.cpp */; }; + FFFF0c0071807fa90c007180 /* src/pcm/GuPCMContactBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0071807fa90c007180 /* src/pcm/GuPCMContactBoxConvex.cpp */; }; + FFFF0c0071e87fa90c0071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0071e87fa90c0071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */; }; + FFFF0c0072507fa90c007250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0072507fa90c007250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */; }; + FFFF0c0072b87fa90c0072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0072b87fa90c0072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */; }; + FFFF0c0073207fa90c007320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0073207fa90c007320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */; }; + FFFF0c0073887fa90c007388 /* src/pcm/GuPCMContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0073887fa90c007388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */; }; + FFFF0c0073f07fa90c0073f0 /* src/pcm/GuPCMContactConvexCommon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0073f07fa90c0073f0 /* src/pcm/GuPCMContactConvexCommon.cpp */; }; + FFFF0c0074587fa90c007458 /* src/pcm/GuPCMContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0074587fa90c007458 /* src/pcm/GuPCMContactConvexConvex.cpp */; }; + FFFF0c0074c07fa90c0074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0074c07fa90c0074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */; }; + FFFF0c0075287fa90c007528 /* src/pcm/GuPCMContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0075287fa90c007528 /* src/pcm/GuPCMContactConvexMesh.cpp */; }; + FFFF0c0075907fa90c007590 /* src/pcm/GuPCMContactGenBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0075907fa90c007590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */; }; + FFFF0c0075f87fa90c0075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0075f87fa90c0075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */; }; + FFFF0c0076607fa90c007660 /* src/pcm/GuPCMContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0076607fa90c007660 /* src/pcm/GuPCMContactPlaneBox.cpp */; }; + FFFF0c0076c87fa90c0076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0076c87fa90c0076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */; }; + FFFF0c0077307fa90c007730 /* src/pcm/GuPCMContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0077307fa90c007730 /* src/pcm/GuPCMContactPlaneConvex.cpp */; }; + FFFF0c0077987fa90c007798 /* src/pcm/GuPCMContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0077987fa90c007798 /* src/pcm/GuPCMContactSphereBox.cpp */; }; + FFFF0c0078007fa90c007800 /* src/pcm/GuPCMContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0078007fa90c007800 /* src/pcm/GuPCMContactSphereCapsule.cpp */; }; + FFFF0c0078687fa90c007868 /* src/pcm/GuPCMContactSphereConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0078687fa90c007868 /* src/pcm/GuPCMContactSphereConvex.cpp */; }; + FFFF0c0078d07fa90c0078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0078d07fa90c0078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */; }; + FFFF0c0079387fa90c007938 /* src/pcm/GuPCMContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0079387fa90c007938 /* src/pcm/GuPCMContactSphereMesh.cpp */; }; + FFFF0c0079a07fa90c0079a0 /* src/pcm/GuPCMContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c0079a07fa90c0079a0 /* src/pcm/GuPCMContactSpherePlane.cpp */; }; + FFFF0c007a087fa90c007a08 /* src/pcm/GuPCMContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c007a087fa90c007a08 /* src/pcm/GuPCMContactSphereSphere.cpp */; }; + FFFF0c007a707fa90c007a70 /* src/pcm/GuPCMShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c007a707fa90c007a70 /* src/pcm/GuPCMShapeConvex.cpp */; }; + FFFF0c007ad87fa90c007ad8 /* src/pcm/GuPCMTriangleContactGen.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c007ad87fa90c007ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */; }; + FFFF0c007b407fa90c007b40 /* src/pcm/GuPersistentContactManifold.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c007b407fa90c007b40 /* src/pcm/GuPersistentContactManifold.cpp */; }; + FFFF0c007ba87fa90c007ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c007ba87fa90c007ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */; }; + FFFF0c007c107fa90c007c10 /* src/ccd/GuCCDSweepPrimitives.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0c007c107fa90c007c10 /* src/ccd/GuCCDSweepPrimitives.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDe2c17a107ffde2c17a10 /* PhysXCommon */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCommon"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDe380ec007ffde380ec00 /* common/PxBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxBase.h"; path = "../../../Include/common/PxBase.h"; sourceTree = SOURCE_ROOT; }; - FFFDe380ec687ffde380ec68 /* common/PxCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCollection.h"; path = "../../../Include/common/PxCollection.h"; sourceTree = SOURCE_ROOT; }; - FFFDe380ecd07ffde380ecd0 /* common/PxCoreUtilityTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCoreUtilityTypes.h"; path = "../../../Include/common/PxCoreUtilityTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFDe380ed387ffde380ed38 /* common/PxMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaData.h"; path = "../../../Include/common/PxMetaData.h"; sourceTree = SOURCE_ROOT; }; - FFFDe380eda07ffde380eda0 /* common/PxMetaDataFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaDataFlags.h"; path = "../../../Include/common/PxMetaDataFlags.h"; sourceTree = SOURCE_ROOT; }; - FFFDe380ee087ffde380ee08 /* common/PxPhysXCommonConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysXCommonConfig.h"; path = "../../../Include/common/PxPhysXCommonConfig.h"; sourceTree = SOURCE_ROOT; }; - FFFDe380ee707ffde380ee70 /* common/PxPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysicsInsertionCallback.h"; path = "../../../Include/common/PxPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFDe380eed87ffde380eed8 /* common/PxRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxRenderBuffer.h"; path = "../../../Include/common/PxRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFDe380ef407ffde380ef40 /* common/PxSerialFramework.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerialFramework.h"; path = "../../../Include/common/PxSerialFramework.h"; sourceTree = SOURCE_ROOT; }; - FFFDe380efa87ffde380efa8 /* common/PxSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerializer.h"; path = "../../../Include/common/PxSerializer.h"; sourceTree = SOURCE_ROOT; }; - FFFDe380f0107ffde380f010 /* common/PxStringTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxStringTable.h"; path = "../../../Include/common/PxStringTable.h"; sourceTree = SOURCE_ROOT; }; - FFFDe380f0787ffde380f078 /* common/PxTolerancesScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTolerancesScale.h"; path = "../../../Include/common/PxTolerancesScale.h"; sourceTree = SOURCE_ROOT; }; - FFFDe380f0e07ffde380f0e0 /* common/PxTypeInfo.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTypeInfo.h"; path = "../../../Include/common/PxTypeInfo.h"; sourceTree = SOURCE_ROOT; }; - FFFDe380f1487ffde380f148 /* geometry/PxBoxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxBoxGeometry.h"; path = "../../../Include/geometry/PxBoxGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFDe380f1b07ffde380f1b0 /* geometry/PxCapsuleGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxCapsuleGeometry.h"; path = "../../../Include/geometry/PxCapsuleGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFDe380f2187ffde380f218 /* geometry/PxConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMesh.h"; path = "../../../Include/geometry/PxConvexMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFDe380f2807ffde380f280 /* geometry/PxConvexMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMeshGeometry.h"; path = "../../../Include/geometry/PxConvexMeshGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFDe380f2e87ffde380f2e8 /* geometry/PxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometry.h"; path = "../../../Include/geometry/PxGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFDe380f3507ffde380f350 /* geometry/PxGeometryHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryHelpers.h"; path = "../../../Include/geometry/PxGeometryHelpers.h"; sourceTree = SOURCE_ROOT; }; - FFFDe380f3b87ffde380f3b8 /* geometry/PxGeometryQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryQuery.h"; path = "../../../Include/geometry/PxGeometryQuery.h"; sourceTree = SOURCE_ROOT; }; - FFFDe380f4207ffde380f420 /* geometry/PxHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightField.h"; path = "../../../Include/geometry/PxHeightField.h"; sourceTree = SOURCE_ROOT; }; - FFFDe380f4887ffde380f488 /* geometry/PxHeightFieldDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldDesc.h"; path = "../../../Include/geometry/PxHeightFieldDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFDe380f4f07ffde380f4f0 /* geometry/PxHeightFieldFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldFlag.h"; path = "../../../Include/geometry/PxHeightFieldFlag.h"; sourceTree = SOURCE_ROOT; }; - FFFDe380f5587ffde380f558 /* geometry/PxHeightFieldGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldGeometry.h"; path = "../../../Include/geometry/PxHeightFieldGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFDe380f5c07ffde380f5c0 /* geometry/PxHeightFieldSample.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldSample.h"; path = "../../../Include/geometry/PxHeightFieldSample.h"; sourceTree = SOURCE_ROOT; }; - FFFDe380f6287ffde380f628 /* geometry/PxMeshQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshQuery.h"; path = "../../../Include/geometry/PxMeshQuery.h"; sourceTree = SOURCE_ROOT; }; - FFFDe380f6907ffde380f690 /* geometry/PxMeshScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshScale.h"; path = "../../../Include/geometry/PxMeshScale.h"; sourceTree = SOURCE_ROOT; }; - FFFDe380f6f87ffde380f6f8 /* geometry/PxPlaneGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxPlaneGeometry.h"; path = "../../../Include/geometry/PxPlaneGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFDe380f7607ffde380f760 /* geometry/PxSimpleTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSimpleTriangleMesh.h"; path = "../../../Include/geometry/PxSimpleTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFDe380f7c87ffde380f7c8 /* geometry/PxSphereGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSphereGeometry.h"; path = "../../../Include/geometry/PxSphereGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFDe380f8307ffde380f830 /* geometry/PxTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangle.h"; path = "../../../Include/geometry/PxTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFDe380f8987ffde380f898 /* geometry/PxTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMesh.h"; path = "../../../Include/geometry/PxTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFDe380f9007ffde380f900 /* geometry/PxTriangleMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMeshGeometry.h"; path = "../../../Include/geometry/PxTriangleMeshGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30290007ffde3029000 /* src/CmBoxPruning.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.cpp"; path = "../../Common/src/CmBoxPruning.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe30290687ffde3029068 /* src/CmCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.cpp"; path = "../../Common/src/CmCollection.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe30290d07ffde30290d0 /* src/CmMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMathUtils.cpp"; path = "../../Common/src/CmMathUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe30291387ffde3029138 /* src/CmPtrTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.cpp"; path = "../../Common/src/CmPtrTable.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe30291a07ffde30291a0 /* src/CmRadixSort.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.cpp"; path = "../../Common/src/CmRadixSort.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe30292087ffde3029208 /* src/CmRadixSortBuffered.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.cpp"; path = "../../Common/src/CmRadixSortBuffered.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe30292707ffde3029270 /* src/CmRenderOutput.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.cpp"; path = "../../Common/src/CmRenderOutput.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe30292d87ffde30292d8 /* src/CmVisualization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.cpp"; path = "../../Common/src/CmVisualization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe30293407ffde3029340 /* src/CmBitMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBitMap.h"; path = "../../Common/src/CmBitMap.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30293a87ffde30293a8 /* src/CmBoxPruning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.h"; path = "../../Common/src/CmBoxPruning.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30294107ffde3029410 /* src/CmCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.h"; path = "../../Common/src/CmCollection.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30294787ffde3029478 /* src/CmConeLimitHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmConeLimitHelper.h"; path = "../../Common/src/CmConeLimitHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30294e07ffde30294e0 /* src/CmFlushPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmFlushPool.h"; path = "../../Common/src/CmFlushPool.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30295487ffde3029548 /* src/CmIDPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIDPool.h"; path = "../../Common/src/CmIDPool.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30295b07ffde30295b0 /* src/CmIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIO.h"; path = "../../Common/src/CmIO.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30296187ffde3029618 /* src/CmMatrix34.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMatrix34.h"; path = "../../Common/src/CmMatrix34.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30296807ffde3029680 /* src/CmPhysXCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPhysXCommon.h"; path = "../../Common/src/CmPhysXCommon.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30296e87ffde30296e8 /* src/CmPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPool.h"; path = "../../Common/src/CmPool.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30297507ffde3029750 /* src/CmPreallocatingPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPreallocatingPool.h"; path = "../../Common/src/CmPreallocatingPool.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30297b87ffde30297b8 /* src/CmPriorityQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPriorityQueue.h"; path = "../../Common/src/CmPriorityQueue.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30298207ffde3029820 /* src/CmPtrTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.h"; path = "../../Common/src/CmPtrTable.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30298887ffde3029888 /* src/CmQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmQueue.h"; path = "../../Common/src/CmQueue.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30298f07ffde30298f0 /* src/CmRadixSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.h"; path = "../../Common/src/CmRadixSort.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30299587ffde3029958 /* src/CmRadixSortBuffered.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.h"; path = "../../Common/src/CmRadixSortBuffered.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30299c07ffde30299c0 /* src/CmReaderWriterLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmReaderWriterLock.h"; path = "../../Common/src/CmReaderWriterLock.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3029a287ffde3029a28 /* src/CmRefCountable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRefCountable.h"; path = "../../Common/src/CmRefCountable.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3029a907ffde3029a90 /* src/CmRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderBuffer.h"; path = "../../Common/src/CmRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3029af87ffde3029af8 /* src/CmRenderOutput.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.h"; path = "../../Common/src/CmRenderOutput.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3029b607ffde3029b60 /* src/CmScaling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmScaling.h"; path = "../../Common/src/CmScaling.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3029bc87ffde3029bc8 /* src/CmSpatialVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmSpatialVector.h"; path = "../../Common/src/CmSpatialVector.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3029c307ffde3029c30 /* src/CmTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTask.h"; path = "../../Common/src/CmTask.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3029c987ffde3029c98 /* src/CmTaskPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTaskPool.h"; path = "../../Common/src/CmTaskPool.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3029d007ffde3029d00 /* src/CmTmpMem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTmpMem.h"; path = "../../Common/src/CmTmpMem.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3029d687ffde3029d68 /* src/CmTransformUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTransformUtils.h"; path = "../../Common/src/CmTransformUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3029dd07ffde3029dd0 /* src/CmUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmUtils.h"; path = "../../Common/src/CmUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3029e387ffde3029e38 /* src/CmVisualization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.h"; path = "../../Common/src/CmVisualization.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38010007ffde3801000 /* headers/GuAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuAxes.h"; path = "../../GeomUtils/headers/GuAxes.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38010687ffde3801068 /* headers/GuBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuBox.h"; path = "../../GeomUtils/headers/GuBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38010d07ffde38010d0 /* headers/GuDistanceSegmentBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentBox.h"; path = "../../GeomUtils/headers/GuDistanceSegmentBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38011387ffde3801138 /* headers/GuDistanceSegmentSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentSegment.h"; path = "../../GeomUtils/headers/GuDistanceSegmentSegment.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38011a07ffde38011a0 /* headers/GuIntersectionBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionBoxBox.h"; path = "../../GeomUtils/headers/GuIntersectionBoxBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38012087ffde3801208 /* headers/GuIntersectionTriangleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionTriangleBox.h"; path = "../../GeomUtils/headers/GuIntersectionTriangleBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38012707ffde3801270 /* headers/GuRaycastTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuRaycastTests.h"; path = "../../GeomUtils/headers/GuRaycastTests.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38012d87ffde38012d8 /* headers/GuSIMDHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSIMDHelpers.h"; path = "../../GeomUtils/headers/GuSIMDHelpers.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38013407ffde3801340 /* headers/GuSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSegment.h"; path = "../../GeomUtils/headers/GuSegment.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38013a87ffde38013a8 /* ../../Include/GeomUtils */= { isa = PBXFileReference; fileEncoding = 4; name = "../../Include/GeomUtils"; path = "../../../Include/GeomUtils"; sourceTree = SOURCE_ROOT; }; - FFFDe38014107ffde3801410 /* src/GuBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.h"; path = "../../GeomUtils/src/GuBounds.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38014787ffde3801478 /* src/GuCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.h"; path = "../../GeomUtils/src/GuCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38014e07ffde38014e0 /* src/GuCenterExtents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCenterExtents.h"; path = "../../GeomUtils/src/GuCenterExtents.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38015487ffde3801548 /* src/GuGeometryUnion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.h"; path = "../../GeomUtils/src/GuGeometryUnion.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38015b07ffde38015b0 /* src/GuInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.h"; path = "../../GeomUtils/src/GuInternal.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38016187ffde3801618 /* src/GuMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.h"; path = "../../GeomUtils/src/GuMTD.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38016807ffde3801680 /* src/GuMeshFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.h"; path = "../../GeomUtils/src/GuMeshFactory.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38016e87ffde38016e8 /* src/GuOverlapTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.h"; path = "../../GeomUtils/src/GuOverlapTests.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38017507ffde3801750 /* src/GuSerialize.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.h"; path = "../../GeomUtils/src/GuSerialize.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38017b87ffde38017b8 /* src/GuSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSphere.h"; path = "../../GeomUtils/src/GuSphere.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38018207ffde3801820 /* src/GuSweepMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.h"; path = "../../GeomUtils/src/GuSweepMTD.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38018887ffde3801888 /* src/GuSweepSharedTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.h"; path = "../../GeomUtils/src/GuSweepSharedTests.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38018f07ffde38018f0 /* src/GuSweepTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.h"; path = "../../GeomUtils/src/GuSweepTests.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38019587ffde3801958 /* src/contact/GuContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactMethodImpl.h"; path = "../../GeomUtils/src/contact/GuContactMethodImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38019c07ffde38019c0 /* src/contact/GuContactPolygonPolygon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.h"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3801a287ffde3801a28 /* src/contact/GuFeatureCode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.h"; path = "../../GeomUtils/src/contact/GuFeatureCode.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3801a907ffde3801a90 /* src/contact/GuLegacyTraceLineCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyTraceLineCallback.h"; path = "../../GeomUtils/src/contact/GuLegacyTraceLineCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3801af87ffde3801af8 /* src/common/GuBarycentricCoordinates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.h"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3801b607ffde3801b60 /* src/common/GuBoxConversion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBoxConversion.h"; path = "../../GeomUtils/src/common/GuBoxConversion.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3801bc87ffde3801bc8 /* src/common/GuEdgeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeCache.h"; path = "../../GeomUtils/src/common/GuEdgeCache.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3801c307ffde3801c30 /* src/common/GuEdgeListData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeListData.h"; path = "../../GeomUtils/src/common/GuEdgeListData.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3801c987ffde3801c98 /* src/common/GuSeparatingAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.h"; path = "../../GeomUtils/src/common/GuSeparatingAxes.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3801d007ffde3801d00 /* src/convex/GuBigConvexData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.h"; path = "../../GeomUtils/src/convex/GuBigConvexData.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3801d687ffde3801d68 /* src/convex/GuBigConvexData2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData2.h"; path = "../../GeomUtils/src/convex/GuBigConvexData2.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3801dd07ffde3801dd0 /* src/convex/GuConvexEdgeFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexEdgeFlags.h"; path = "../../GeomUtils/src/convex/GuConvexEdgeFlags.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3801e387ffde3801e38 /* src/convex/GuConvexHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.h"; path = "../../GeomUtils/src/convex/GuConvexHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3801ea07ffde3801ea0 /* src/convex/GuConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.h"; path = "../../GeomUtils/src/convex/GuConvexMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3801f087ffde3801f08 /* src/convex/GuConvexMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMeshData.h"; path = "../../GeomUtils/src/convex/GuConvexMeshData.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3801f707ffde3801f70 /* src/convex/GuConvexSupportTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.h"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3801fd87ffde3801fd8 /* src/convex/GuConvexUtilsInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.h"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38020407ffde3802040 /* src/convex/GuCubeIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuCubeIndex.h"; path = "../../GeomUtils/src/convex/GuCubeIndex.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38020a87ffde38020a8 /* src/convex/GuHillClimbing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.h"; path = "../../GeomUtils/src/convex/GuHillClimbing.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38021107ffde3802110 /* src/convex/GuShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.h"; path = "../../GeomUtils/src/convex/GuShapeConvex.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38021787ffde3802178 /* src/distance/GuDistancePointBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.h"; path = "../../GeomUtils/src/distance/GuDistancePointBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38021e07ffde38021e0 /* src/distance/GuDistancePointSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointSegment.h"; path = "../../GeomUtils/src/distance/GuDistancePointSegment.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38022487ffde3802248 /* src/distance/GuDistancePointTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38022b07ffde38022b0 /* src/distance/GuDistancePointTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangleSIMD.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38023187ffde3802318 /* src/distance/GuDistanceSegmentSegmentSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegmentSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegmentSIMD.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38023807ffde3802380 /* src/distance/GuDistanceSegmentTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38023e87ffde38023e8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangleSIMD.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38024507ffde3802450 /* src/sweep/GuSweepBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38024b87ffde38024b8 /* src/sweep/GuSweepBoxSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38025207ffde3802520 /* src/sweep/GuSweepBoxTriangle_FeatureBased.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxTriangle_FeatureBased.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxTriangle_FeatureBased.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38025887ffde3802588 /* src/sweep/GuSweepBoxTriangle_SAT.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxTriangle_SAT.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxTriangle_SAT.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38025f07ffde38025f0 /* src/sweep/GuSweepCapsuleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38026587ffde3802658 /* src/sweep/GuSweepCapsuleCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38026c07ffde38026c0 /* src/sweep/GuSweepCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38027287ffde3802728 /* src/sweep/GuSweepSphereCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38027907ffde3802790 /* src/sweep/GuSweepSphereSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38027f87ffde38027f8 /* src/sweep/GuSweepSphereTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38028607ffde3802860 /* src/sweep/GuSweepTriangleUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.h"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38028c87ffde38028c8 /* src/gjk/GuEPA.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.h"; path = "../../GeomUtils/src/gjk/GuEPA.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38029307ffde3802930 /* src/gjk/GuEPAFacet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPAFacet.h"; path = "../../GeomUtils/src/gjk/GuEPAFacet.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38029987ffde3802998 /* src/gjk/GuGJK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJK.h"; path = "../../GeomUtils/src/gjk/GuGJK.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3802a007ffde3802a00 /* src/gjk/GuGJKPenetration.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKPenetration.h"; path = "../../GeomUtils/src/gjk/GuGJKPenetration.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3802a687ffde3802a68 /* src/gjk/GuGJKRaycast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKRaycast.h"; path = "../../GeomUtils/src/gjk/GuGJKRaycast.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3802ad07ffde3802ad0 /* src/gjk/GuGJKSimplex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.h"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3802b387ffde3802b38 /* src/gjk/GuGJKTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.h"; path = "../../GeomUtils/src/gjk/GuGJKTest.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3802ba07ffde3802ba0 /* src/gjk/GuGJKType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKType.h"; path = "../../GeomUtils/src/gjk/GuGJKType.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3802c087ffde3802c08 /* src/gjk/GuGJKUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKUtil.h"; path = "../../GeomUtils/src/gjk/GuGJKUtil.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3802c707ffde3802c70 /* src/gjk/GuVecBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecBox.h"; path = "../../GeomUtils/src/gjk/GuVecBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3802cd87ffde3802cd8 /* src/gjk/GuVecCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecCapsule.h"; path = "../../GeomUtils/src/gjk/GuVecCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3802d407ffde3802d40 /* src/gjk/GuVecConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvex.h"; path = "../../GeomUtils/src/gjk/GuVecConvex.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3802da87ffde3802da8 /* src/gjk/GuVecConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHull.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3802e107ffde3802e10 /* src/gjk/GuVecConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3802e787ffde3802e78 /* src/gjk/GuVecPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecPlane.h"; path = "../../GeomUtils/src/gjk/GuVecPlane.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3802ee07ffde3802ee0 /* src/gjk/GuVecShrunkBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkBox.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3802f487ffde3802f48 /* src/gjk/GuVecShrunkConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHull.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3802fb07ffde3802fb0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38030187ffde3803018 /* src/gjk/GuVecSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecSphere.h"; path = "../../GeomUtils/src/gjk/GuVecSphere.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38030807ffde3803080 /* src/gjk/GuVecTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecTriangle.h"; path = "../../GeomUtils/src/gjk/GuVecTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38030e87ffde38030e8 /* src/intersection/GuIntersectionCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38031507ffde3803150 /* src/intersection/GuIntersectionEdgeEdge.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.h"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38031b87ffde38031b8 /* src/intersection/GuIntersectionRay.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRay.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRay.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38032207ffde3803220 /* src/intersection/GuIntersectionRayBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38032887ffde3803288 /* src/intersection/GuIntersectionRayBoxSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBoxSIMD.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBoxSIMD.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38032f07ffde38032f0 /* src/intersection/GuIntersectionRayCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38033587ffde3803358 /* src/intersection/GuIntersectionRayPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayPlane.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayPlane.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38033c07ffde38033c0 /* src/intersection/GuIntersectionRaySphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38034287ffde3803428 /* src/intersection/GuIntersectionRayTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38034907ffde3803490 /* src/intersection/GuIntersectionSphereBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38034f87ffde38034f8 /* src/mesh/GuBV32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.h"; path = "../../GeomUtils/src/mesh/GuBV32.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38035607ffde3803560 /* src/mesh/GuBV32Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.h"; path = "../../GeomUtils/src/mesh/GuBV32Build.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38035c87ffde38035c8 /* src/mesh/GuBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.h"; path = "../../GeomUtils/src/mesh/GuBV4.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38036307ffde3803630 /* src/mesh/GuBV4Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.h"; path = "../../GeomUtils/src/mesh/GuBV4Build.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38036987ffde3803698 /* src/mesh/GuBV4Settings.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Settings.h"; path = "../../GeomUtils/src/mesh/GuBV4Settings.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38037007ffde3803700 /* src/mesh/GuBV4_AABBAABBSweepTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_AABBAABBSweepTest.h"; path = "../../GeomUtils/src/mesh/GuBV4_AABBAABBSweepTest.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38037687ffde3803768 /* src/mesh/GuBV4_BoxBoxOverlapTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxBoxOverlapTest.h"; path = "../../GeomUtils/src/mesh/GuBV4_BoxBoxOverlapTest.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38037d07ffde38037d0 /* src/mesh/GuBV4_BoxOverlap_Internal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxOverlap_Internal.h"; path = "../../GeomUtils/src/mesh/GuBV4_BoxOverlap_Internal.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38038387ffde3803838 /* src/mesh/GuBV4_BoxSweep_Internal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxSweep_Internal.h"; path = "../../GeomUtils/src/mesh/GuBV4_BoxSweep_Internal.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38038a07ffde38038a0 /* src/mesh/GuBV4_BoxSweep_Params.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxSweep_Params.h"; path = "../../GeomUtils/src/mesh/GuBV4_BoxSweep_Params.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38039087ffde3803908 /* src/mesh/GuBV4_CapsuleSweep_Internal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_CapsuleSweep_Internal.h"; path = "../../GeomUtils/src/mesh/GuBV4_CapsuleSweep_Internal.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38039707ffde3803970 /* src/mesh/GuBV4_Common.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Common.h"; path = "../../GeomUtils/src/mesh/GuBV4_Common.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38039d87ffde38039d8 /* src/mesh/GuBV4_Internal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Internal.h"; path = "../../GeomUtils/src/mesh/GuBV4_Internal.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3803a407ffde3803a40 /* src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3803aa87ffde3803aa8 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3803b107ffde3803b10 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3803b787ffde3803b78 /* src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3803be07ffde3803be0 /* src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3803c487ffde3803c48 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3803cb07ffde3803cb0 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3803d187ffde3803d18 /* src/mesh/GuBV4_Slabs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3803d807ffde3803d80 /* src/mesh/GuBV4_Slabs_KajiyaNoOrder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs_KajiyaNoOrder.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs_KajiyaNoOrder.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3803de87ffde3803de8 /* src/mesh/GuBV4_Slabs_KajiyaOrdered.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs_KajiyaOrdered.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs_KajiyaOrdered.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3803e507ffde3803e50 /* src/mesh/GuBV4_Slabs_SwizzledNoOrder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs_SwizzledNoOrder.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs_SwizzledNoOrder.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3803eb87ffde3803eb8 /* src/mesh/GuBV4_Slabs_SwizzledOrdered.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs_SwizzledOrdered.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs_SwizzledOrdered.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3803f207ffde3803f20 /* src/mesh/GuBVConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBVConstants.h"; path = "../../GeomUtils/src/mesh/GuBVConstants.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3803f887ffde3803f88 /* src/mesh/GuMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshData.h"; path = "../../GeomUtils/src/mesh/GuMeshData.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3803ff07ffde3803ff0 /* src/mesh/GuMidphaseInterface.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseInterface.h"; path = "../../GeomUtils/src/mesh/GuMidphaseInterface.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38040587ffde3804058 /* src/mesh/GuRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.h"; path = "../../GeomUtils/src/mesh/GuRTree.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38040c07ffde38040c0 /* src/mesh/GuSweepConvexTri.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepConvexTri.h"; path = "../../GeomUtils/src/mesh/GuSweepConvexTri.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38041287ffde3804128 /* src/mesh/GuSweepMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepMesh.h"; path = "../../GeomUtils/src/mesh/GuSweepMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38041907ffde3804190 /* src/mesh/GuTriangle32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangle32.h"; path = "../../GeomUtils/src/mesh/GuTriangle32.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38041f87ffde38041f8 /* src/mesh/GuTriangleCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleCache.h"; path = "../../GeomUtils/src/mesh/GuTriangleCache.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38042607ffde3804260 /* src/mesh/GuTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.h"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38042c87ffde38042c8 /* src/mesh/GuTriangleMeshBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38043307ffde3804330 /* src/mesh/GuTriangleMeshRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38043987ffde3804398 /* src/mesh/GuTriangleVertexPointers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleVertexPointers.h"; path = "../../GeomUtils/src/mesh/GuTriangleVertexPointers.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38044007ffde3804400 /* src/hf/GuEntityReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuEntityReport.h"; path = "../../GeomUtils/src/hf/GuEntityReport.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38044687ffde3804468 /* src/hf/GuHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.h"; path = "../../GeomUtils/src/hf/GuHeightField.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38044d07ffde38044d0 /* src/hf/GuHeightFieldData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldData.h"; path = "../../GeomUtils/src/hf/GuHeightFieldData.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38045387ffde3804538 /* src/hf/GuHeightFieldUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.h"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38045a07ffde38045a0 /* src/pcm/GuPCMContactConvexCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.h"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38046087ffde3804608 /* src/pcm/GuPCMContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGen.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38046707ffde3804670 /* src/pcm/GuPCMContactGenUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenUtil.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGenUtil.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38046d87ffde38046d8 /* src/pcm/GuPCMContactMeshCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactMeshCallback.h"; path = "../../GeomUtils/src/pcm/GuPCMContactMeshCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38047407ffde3804740 /* src/pcm/GuPCMShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.h"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38047a87ffde38047a8 /* src/pcm/GuPCMTriangleContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38048107ffde3804810 /* src/pcm/GuPersistentContactManifold.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.h"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38048787ffde3804878 /* src/ccd/GuCCDSweepConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.h"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38048e07ffde38048e0 /* src/GuBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.cpp"; path = "../../GeomUtils/src/GuBounds.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38049487ffde3804948 /* src/GuBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBox.cpp"; path = "../../GeomUtils/src/GuBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38049b07ffde38049b0 /* src/GuCCTSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCCTSweepTests.cpp"; path = "../../GeomUtils/src/GuCCTSweepTests.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3804a187ffde3804a18 /* src/GuCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.cpp"; path = "../../GeomUtils/src/GuCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3804a807ffde3804a80 /* src/GuGeometryQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryQuery.cpp"; path = "../../GeomUtils/src/GuGeometryQuery.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3804ae87ffde3804ae8 /* src/GuGeometryUnion.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.cpp"; path = "../../GeomUtils/src/GuGeometryUnion.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3804b507ffde3804b50 /* src/GuInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.cpp"; path = "../../GeomUtils/src/GuInternal.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3804bb87ffde3804bb8 /* src/GuMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.cpp"; path = "../../GeomUtils/src/GuMTD.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3804c207ffde3804c20 /* src/GuMeshFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.cpp"; path = "../../GeomUtils/src/GuMeshFactory.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3804c887ffde3804c88 /* src/GuMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMetaData.cpp"; path = "../../GeomUtils/src/GuMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3804cf07ffde3804cf0 /* src/GuOverlapTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.cpp"; path = "../../GeomUtils/src/GuOverlapTests.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3804d587ffde3804d58 /* src/GuRaycastTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuRaycastTests.cpp"; path = "../../GeomUtils/src/GuRaycastTests.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3804dc07ffde3804dc0 /* src/GuSerialize.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.cpp"; path = "../../GeomUtils/src/GuSerialize.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3804e287ffde3804e28 /* src/GuSweepMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.cpp"; path = "../../GeomUtils/src/GuSweepMTD.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3804e907ffde3804e90 /* src/GuSweepSharedTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.cpp"; path = "../../GeomUtils/src/GuSweepSharedTests.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3804ef87ffde3804ef8 /* src/GuSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.cpp"; path = "../../GeomUtils/src/GuSweepTests.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3804f607ffde3804f60 /* src/contact/GuContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactBoxBox.cpp"; path = "../../GeomUtils/src/contact/GuContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3804fc87ffde3804fc8 /* src/contact/GuContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleBox.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38050307ffde3805030 /* src/contact/GuContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38050987ffde3805098 /* src/contact/GuContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38051007ffde3805100 /* src/contact/GuContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38051687ffde3805168 /* src/contact/GuContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38051d07ffde38051d0 /* src/contact/GuContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38052387ffde3805238 /* src/contact/GuContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneBox.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38052a07ffde38052a0 /* src/contact/GuContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38053087ffde3805308 /* src/contact/GuContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38053707ffde3805370 /* src/contact/GuContactPolygonPolygon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.cpp"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38053d87ffde38053d8 /* src/contact/GuContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereBox.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38054407ffde3805440 /* src/contact/GuContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38054a87ffde38054a8 /* src/contact/GuContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38055107ffde3805510 /* src/contact/GuContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSpherePlane.cpp"; path = "../../GeomUtils/src/contact/GuContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38055787ffde3805578 /* src/contact/GuContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereSphere.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38055e07ffde38055e0 /* src/contact/GuFeatureCode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.cpp"; path = "../../GeomUtils/src/contact/GuFeatureCode.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38056487ffde3805648 /* src/contact/GuLegacyContactBoxHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactBoxHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactBoxHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38056b07ffde38056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38057187ffde3805718 /* src/contact/GuLegacyContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactConvexHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38057807ffde3805780 /* src/contact/GuLegacyContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactSphereHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38057e87ffde38057e8 /* src/common/GuBarycentricCoordinates.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.cpp"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38058507ffde3805850 /* src/common/GuSeparatingAxes.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.cpp"; path = "../../GeomUtils/src/common/GuSeparatingAxes.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38058b87ffde38058b8 /* src/convex/GuBigConvexData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.cpp"; path = "../../GeomUtils/src/convex/GuBigConvexData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38059207ffde3805920 /* src/convex/GuConvexHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.cpp"; path = "../../GeomUtils/src/convex/GuConvexHelper.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38059887ffde3805988 /* src/convex/GuConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.cpp"; path = "../../GeomUtils/src/convex/GuConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38059f07ffde38059f0 /* src/convex/GuConvexSupportTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.cpp"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3805a587ffde3805a58 /* src/convex/GuConvexUtilsInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.cpp"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3805ac07ffde3805ac0 /* src/convex/GuHillClimbing.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.cpp"; path = "../../GeomUtils/src/convex/GuHillClimbing.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3805b287ffde3805b28 /* src/convex/GuShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.cpp"; path = "../../GeomUtils/src/convex/GuShapeConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3805b907ffde3805b90 /* src/distance/GuDistancePointBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3805bf87ffde3805bf8 /* src/distance/GuDistancePointTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3805c607ffde3805c60 /* src/distance/GuDistanceSegmentBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentBox.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3805cc87ffde3805cc8 /* src/distance/GuDistanceSegmentSegment.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegment.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegment.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3805d307ffde3805d30 /* src/distance/GuDistanceSegmentTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3805d987ffde3805d98 /* src/sweep/GuSweepBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3805e007ffde3805e00 /* src/sweep/GuSweepBoxSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3805e687ffde3805e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxTriangle_FeatureBased.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxTriangle_FeatureBased.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3805ed07ffde3805ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxTriangle_SAT.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxTriangle_SAT.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3805f387ffde3805f38 /* src/sweep/GuSweepCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3805fa07ffde3805fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38060087ffde3806008 /* src/sweep/GuSweepCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38060707ffde3806070 /* src/sweep/GuSweepSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38060d87ffde38060d8 /* src/sweep/GuSweepSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38061407ffde3806140 /* src/sweep/GuSweepSphereTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38061a87ffde38061a8 /* src/sweep/GuSweepTriangleUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.cpp"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38062107ffde3806210 /* src/gjk/GuEPA.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.cpp"; path = "../../GeomUtils/src/gjk/GuEPA.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38062787ffde3806278 /* src/gjk/GuGJKSimplex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.cpp"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38062e07ffde38062e0 /* src/gjk/GuGJKTest.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.cpp"; path = "../../GeomUtils/src/gjk/GuGJKTest.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38063487ffde3806348 /* src/intersection/GuIntersectionBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionBoxBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38063b07ffde38063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38064187ffde3806418 /* src/intersection/GuIntersectionEdgeEdge.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38064807ffde3806480 /* src/intersection/GuIntersectionRayBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38064e87ffde38064e8 /* src/intersection/GuIntersectionRayCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38065507ffde3806550 /* src/intersection/GuIntersectionRaySphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38065b87ffde38065b8 /* src/intersection/GuIntersectionSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38066207ffde3806620 /* src/intersection/GuIntersectionTriangleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionTriangleBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionTriangleBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38066887ffde3806688 /* src/mesh/GuBV32.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.cpp"; path = "../../GeomUtils/src/mesh/GuBV32.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38066f07ffde38066f0 /* src/mesh/GuBV32Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV32Build.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38067587ffde3806758 /* src/mesh/GuBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.cpp"; path = "../../GeomUtils/src/mesh/GuBV4.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38067c07ffde38067c0 /* src/mesh/GuBV4Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV4Build.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38068287ffde3806828 /* src/mesh/GuBV4_AABBSweep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_AABBSweep.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_AABBSweep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38068907ffde3806890 /* src/mesh/GuBV4_BoxOverlap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxOverlap.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_BoxOverlap.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38068f87ffde38068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_CapsuleSweep.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_CapsuleSweep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38069607ffde3806960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_CapsuleSweepAA.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_CapsuleSweepAA.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38069c87ffde38069c8 /* src/mesh/GuBV4_OBBSweep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_OBBSweep.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_OBBSweep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3806a307ffde3806a30 /* src/mesh/GuBV4_Raycast.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Raycast.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_Raycast.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3806a987ffde3806a98 /* src/mesh/GuBV4_SphereOverlap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_SphereOverlap.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_SphereOverlap.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3806b007ffde3806b00 /* src/mesh/GuBV4_SphereSweep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_SphereSweep.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_SphereSweep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3806b687ffde3806b68 /* src/mesh/GuMeshQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshQuery.cpp"; path = "../../GeomUtils/src/mesh/GuMeshQuery.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3806bd07ffde3806bd0 /* src/mesh/GuMidphaseBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseBV4.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseBV4.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3806c387ffde3806c38 /* src/mesh/GuMidphaseRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseRTree.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseRTree.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3806ca07ffde3806ca0 /* src/mesh/GuOverlapTestsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuOverlapTestsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuOverlapTestsMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3806d087ffde3806d08 /* src/mesh/GuRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.cpp"; path = "../../GeomUtils/src/mesh/GuRTree.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3806d707ffde3806d70 /* src/mesh/GuRTreeQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTreeQueries.cpp"; path = "../../GeomUtils/src/mesh/GuRTreeQueries.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3806dd87ffde3806dd8 /* src/mesh/GuSweepsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuSweepsMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3806e407ffde3806e40 /* src/mesh/GuTriangleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3806ea87ffde3806ea8 /* src/mesh/GuTriangleMeshBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3806f107ffde3806f10 /* src/mesh/GuTriangleMeshRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3806f787ffde3806f78 /* src/hf/GuHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.cpp"; path = "../../GeomUtils/src/hf/GuHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3806fe07ffde3806fe0 /* src/hf/GuHeightFieldUtil.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.cpp"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38070487ffde3807048 /* src/hf/GuOverlapTestsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuOverlapTestsHF.cpp"; path = "../../GeomUtils/src/hf/GuOverlapTestsHF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38070b07ffde38070b0 /* src/hf/GuSweepsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuSweepsHF.cpp"; path = "../../GeomUtils/src/hf/GuSweepsHF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38071187ffde3807118 /* src/pcm/GuPCMContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38071807ffde3807180 /* src/pcm/GuPCMContactBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38071e87ffde38071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38072507ffde3807250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38072b87ffde38072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38073207ffde3807320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38073887ffde3807388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38073f07ffde38073f0 /* src/pcm/GuPCMContactConvexCommon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38074587ffde3807458 /* src/pcm/GuPCMContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38074c07ffde38074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38075287ffde3807528 /* src/pcm/GuPCMContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38075907ffde3807590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenBoxConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38075f87ffde38075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38076607ffde3807660 /* src/pcm/GuPCMContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38076c87ffde38076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38077307ffde3807730 /* src/pcm/GuPCMContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38077987ffde3807798 /* src/pcm/GuPCMContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38078007ffde3807800 /* src/pcm/GuPCMContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38078687ffde3807868 /* src/pcm/GuPCMContactSphereConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38078d07ffde38078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38079387ffde3807938 /* src/pcm/GuPCMContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38079a07ffde38079a0 /* src/pcm/GuPCMContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSpherePlane.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3807a087ffde3807a08 /* src/pcm/GuPCMContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereSphere.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3807a707ffde3807a70 /* src/pcm/GuPCMShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3807ad87ffde3807ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.cpp"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3807b407ffde3807b40 /* src/pcm/GuPersistentContactManifold.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.cpp"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3807ba87ffde3807ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.cpp"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3807c107ffde3807c10 /* src/ccd/GuCCDSweepPrimitives.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepPrimitives.cpp"; path = "../../GeomUtils/src/ccd/GuCCDSweepPrimitives.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0b897c207fa90b897c20 /* PhysXCommon */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCommon"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD0c00ec007fa90c00ec00 /* common/PxBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxBase.h"; path = "../../../Include/common/PxBase.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c00ec687fa90c00ec68 /* common/PxCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCollection.h"; path = "../../../Include/common/PxCollection.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c00ecd07fa90c00ecd0 /* common/PxCoreUtilityTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCoreUtilityTypes.h"; path = "../../../Include/common/PxCoreUtilityTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c00ed387fa90c00ed38 /* common/PxMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaData.h"; path = "../../../Include/common/PxMetaData.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c00eda07fa90c00eda0 /* common/PxMetaDataFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaDataFlags.h"; path = "../../../Include/common/PxMetaDataFlags.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c00ee087fa90c00ee08 /* common/PxPhysXCommonConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysXCommonConfig.h"; path = "../../../Include/common/PxPhysXCommonConfig.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c00ee707fa90c00ee70 /* common/PxPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysicsInsertionCallback.h"; path = "../../../Include/common/PxPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c00eed87fa90c00eed8 /* common/PxRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxRenderBuffer.h"; path = "../../../Include/common/PxRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c00ef407fa90c00ef40 /* common/PxSerialFramework.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerialFramework.h"; path = "../../../Include/common/PxSerialFramework.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c00efa87fa90c00efa8 /* common/PxSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerializer.h"; path = "../../../Include/common/PxSerializer.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c00f0107fa90c00f010 /* common/PxStringTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxStringTable.h"; path = "../../../Include/common/PxStringTable.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c00f0787fa90c00f078 /* common/PxTolerancesScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTolerancesScale.h"; path = "../../../Include/common/PxTolerancesScale.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c00f0e07fa90c00f0e0 /* common/PxTypeInfo.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTypeInfo.h"; path = "../../../Include/common/PxTypeInfo.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c00f1487fa90c00f148 /* geometry/PxBoxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxBoxGeometry.h"; path = "../../../Include/geometry/PxBoxGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c00f1b07fa90c00f1b0 /* geometry/PxCapsuleGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxCapsuleGeometry.h"; path = "../../../Include/geometry/PxCapsuleGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c00f2187fa90c00f218 /* geometry/PxConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMesh.h"; path = "../../../Include/geometry/PxConvexMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c00f2807fa90c00f280 /* geometry/PxConvexMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMeshGeometry.h"; path = "../../../Include/geometry/PxConvexMeshGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c00f2e87fa90c00f2e8 /* geometry/PxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometry.h"; path = "../../../Include/geometry/PxGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c00f3507fa90c00f350 /* geometry/PxGeometryHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryHelpers.h"; path = "../../../Include/geometry/PxGeometryHelpers.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c00f3b87fa90c00f3b8 /* geometry/PxGeometryQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryQuery.h"; path = "../../../Include/geometry/PxGeometryQuery.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c00f4207fa90c00f420 /* geometry/PxHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightField.h"; path = "../../../Include/geometry/PxHeightField.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c00f4887fa90c00f488 /* geometry/PxHeightFieldDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldDesc.h"; path = "../../../Include/geometry/PxHeightFieldDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c00f4f07fa90c00f4f0 /* geometry/PxHeightFieldFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldFlag.h"; path = "../../../Include/geometry/PxHeightFieldFlag.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c00f5587fa90c00f558 /* geometry/PxHeightFieldGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldGeometry.h"; path = "../../../Include/geometry/PxHeightFieldGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c00f5c07fa90c00f5c0 /* geometry/PxHeightFieldSample.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldSample.h"; path = "../../../Include/geometry/PxHeightFieldSample.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c00f6287fa90c00f628 /* geometry/PxMeshQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshQuery.h"; path = "../../../Include/geometry/PxMeshQuery.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c00f6907fa90c00f690 /* geometry/PxMeshScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshScale.h"; path = "../../../Include/geometry/PxMeshScale.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c00f6f87fa90c00f6f8 /* geometry/PxPlaneGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxPlaneGeometry.h"; path = "../../../Include/geometry/PxPlaneGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c00f7607fa90c00f760 /* geometry/PxSimpleTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSimpleTriangleMesh.h"; path = "../../../Include/geometry/PxSimpleTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c00f7c87fa90c00f7c8 /* geometry/PxSphereGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSphereGeometry.h"; path = "../../../Include/geometry/PxSphereGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c00f8307fa90c00f830 /* geometry/PxTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangle.h"; path = "../../../Include/geometry/PxTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c00f8987fa90c00f898 /* geometry/PxTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMesh.h"; path = "../../../Include/geometry/PxTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c00f9007fa90c00f900 /* geometry/PxTriangleMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMeshGeometry.h"; path = "../../../Include/geometry/PxTriangleMeshGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1a48007fa90b1a4800 /* src/CmBoxPruning.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.cpp"; path = "../../Common/src/CmBoxPruning.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0b1a48687fa90b1a4868 /* src/CmCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.cpp"; path = "../../Common/src/CmCollection.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0b1a48d07fa90b1a48d0 /* src/CmMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMathUtils.cpp"; path = "../../Common/src/CmMathUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0b1a49387fa90b1a4938 /* src/CmPtrTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.cpp"; path = "../../Common/src/CmPtrTable.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0b1a49a07fa90b1a49a0 /* src/CmRadixSort.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.cpp"; path = "../../Common/src/CmRadixSort.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0b1a4a087fa90b1a4a08 /* src/CmRadixSortBuffered.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.cpp"; path = "../../Common/src/CmRadixSortBuffered.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0b1a4a707fa90b1a4a70 /* src/CmRenderOutput.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.cpp"; path = "../../Common/src/CmRenderOutput.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0b1a4ad87fa90b1a4ad8 /* src/CmVisualization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.cpp"; path = "../../Common/src/CmVisualization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0b1a4b407fa90b1a4b40 /* src/CmBitMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBitMap.h"; path = "../../Common/src/CmBitMap.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1a4ba87fa90b1a4ba8 /* src/CmBoxPruning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.h"; path = "../../Common/src/CmBoxPruning.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1a4c107fa90b1a4c10 /* src/CmCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.h"; path = "../../Common/src/CmCollection.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1a4c787fa90b1a4c78 /* src/CmConeLimitHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmConeLimitHelper.h"; path = "../../Common/src/CmConeLimitHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1a4ce07fa90b1a4ce0 /* src/CmFlushPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmFlushPool.h"; path = "../../Common/src/CmFlushPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1a4d487fa90b1a4d48 /* src/CmIDPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIDPool.h"; path = "../../Common/src/CmIDPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1a4db07fa90b1a4db0 /* src/CmIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIO.h"; path = "../../Common/src/CmIO.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1a4e187fa90b1a4e18 /* src/CmMatrix34.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMatrix34.h"; path = "../../Common/src/CmMatrix34.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1a4e807fa90b1a4e80 /* src/CmPhysXCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPhysXCommon.h"; path = "../../Common/src/CmPhysXCommon.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1a4ee87fa90b1a4ee8 /* src/CmPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPool.h"; path = "../../Common/src/CmPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1a4f507fa90b1a4f50 /* src/CmPreallocatingPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPreallocatingPool.h"; path = "../../Common/src/CmPreallocatingPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1a4fb87fa90b1a4fb8 /* src/CmPriorityQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPriorityQueue.h"; path = "../../Common/src/CmPriorityQueue.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1a50207fa90b1a5020 /* src/CmPtrTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.h"; path = "../../Common/src/CmPtrTable.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1a50887fa90b1a5088 /* src/CmQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmQueue.h"; path = "../../Common/src/CmQueue.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1a50f07fa90b1a50f0 /* src/CmRadixSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.h"; path = "../../Common/src/CmRadixSort.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1a51587fa90b1a5158 /* src/CmRadixSortBuffered.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.h"; path = "../../Common/src/CmRadixSortBuffered.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1a51c07fa90b1a51c0 /* src/CmReaderWriterLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmReaderWriterLock.h"; path = "../../Common/src/CmReaderWriterLock.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1a52287fa90b1a5228 /* src/CmRefCountable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRefCountable.h"; path = "../../Common/src/CmRefCountable.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1a52907fa90b1a5290 /* src/CmRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderBuffer.h"; path = "../../Common/src/CmRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1a52f87fa90b1a52f8 /* src/CmRenderOutput.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.h"; path = "../../Common/src/CmRenderOutput.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1a53607fa90b1a5360 /* src/CmScaling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmScaling.h"; path = "../../Common/src/CmScaling.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1a53c87fa90b1a53c8 /* src/CmSpatialVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmSpatialVector.h"; path = "../../Common/src/CmSpatialVector.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1a54307fa90b1a5430 /* src/CmTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTask.h"; path = "../../Common/src/CmTask.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1a54987fa90b1a5498 /* src/CmTaskPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTaskPool.h"; path = "../../Common/src/CmTaskPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1a55007fa90b1a5500 /* src/CmTmpMem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTmpMem.h"; path = "../../Common/src/CmTmpMem.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1a55687fa90b1a5568 /* src/CmTransformUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTransformUtils.h"; path = "../../Common/src/CmTransformUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1a55d07fa90b1a55d0 /* src/CmUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmUtils.h"; path = "../../Common/src/CmUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1a56387fa90b1a5638 /* src/CmVisualization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.h"; path = "../../Common/src/CmVisualization.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0010007fa90c001000 /* headers/GuAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuAxes.h"; path = "../../GeomUtils/headers/GuAxes.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0010687fa90c001068 /* headers/GuBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuBox.h"; path = "../../GeomUtils/headers/GuBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0010d07fa90c0010d0 /* headers/GuDistanceSegmentBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentBox.h"; path = "../../GeomUtils/headers/GuDistanceSegmentBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0011387fa90c001138 /* headers/GuDistanceSegmentSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentSegment.h"; path = "../../GeomUtils/headers/GuDistanceSegmentSegment.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0011a07fa90c0011a0 /* headers/GuIntersectionBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionBoxBox.h"; path = "../../GeomUtils/headers/GuIntersectionBoxBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0012087fa90c001208 /* headers/GuIntersectionTriangleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionTriangleBox.h"; path = "../../GeomUtils/headers/GuIntersectionTriangleBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0012707fa90c001270 /* headers/GuRaycastTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuRaycastTests.h"; path = "../../GeomUtils/headers/GuRaycastTests.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0012d87fa90c0012d8 /* headers/GuSIMDHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSIMDHelpers.h"; path = "../../GeomUtils/headers/GuSIMDHelpers.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0013407fa90c001340 /* headers/GuSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSegment.h"; path = "../../GeomUtils/headers/GuSegment.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0013a87fa90c0013a8 /* ../../Include/GeomUtils */= { isa = PBXFileReference; fileEncoding = 4; name = "../../Include/GeomUtils"; path = "../../../Include/GeomUtils"; sourceTree = SOURCE_ROOT; }; + FFFD0c0014107fa90c001410 /* src/GuBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.h"; path = "../../GeomUtils/src/GuBounds.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0014787fa90c001478 /* src/GuCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.h"; path = "../../GeomUtils/src/GuCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0014e07fa90c0014e0 /* src/GuCenterExtents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCenterExtents.h"; path = "../../GeomUtils/src/GuCenterExtents.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0015487fa90c001548 /* src/GuGeometryUnion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.h"; path = "../../GeomUtils/src/GuGeometryUnion.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0015b07fa90c0015b0 /* src/GuInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.h"; path = "../../GeomUtils/src/GuInternal.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0016187fa90c001618 /* src/GuMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.h"; path = "../../GeomUtils/src/GuMTD.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0016807fa90c001680 /* src/GuMeshFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.h"; path = "../../GeomUtils/src/GuMeshFactory.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0016e87fa90c0016e8 /* src/GuOverlapTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.h"; path = "../../GeomUtils/src/GuOverlapTests.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0017507fa90c001750 /* src/GuSerialize.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.h"; path = "../../GeomUtils/src/GuSerialize.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0017b87fa90c0017b8 /* src/GuSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSphere.h"; path = "../../GeomUtils/src/GuSphere.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0018207fa90c001820 /* src/GuSweepMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.h"; path = "../../GeomUtils/src/GuSweepMTD.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0018887fa90c001888 /* src/GuSweepSharedTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.h"; path = "../../GeomUtils/src/GuSweepSharedTests.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0018f07fa90c0018f0 /* src/GuSweepTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.h"; path = "../../GeomUtils/src/GuSweepTests.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0019587fa90c001958 /* src/contact/GuContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactMethodImpl.h"; path = "../../GeomUtils/src/contact/GuContactMethodImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0019c07fa90c0019c0 /* src/contact/GuContactPolygonPolygon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.h"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c001a287fa90c001a28 /* src/contact/GuFeatureCode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.h"; path = "../../GeomUtils/src/contact/GuFeatureCode.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c001a907fa90c001a90 /* src/contact/GuLegacyTraceLineCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyTraceLineCallback.h"; path = "../../GeomUtils/src/contact/GuLegacyTraceLineCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c001af87fa90c001af8 /* src/common/GuBarycentricCoordinates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.h"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c001b607fa90c001b60 /* src/common/GuBoxConversion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBoxConversion.h"; path = "../../GeomUtils/src/common/GuBoxConversion.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c001bc87fa90c001bc8 /* src/common/GuEdgeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeCache.h"; path = "../../GeomUtils/src/common/GuEdgeCache.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c001c307fa90c001c30 /* src/common/GuEdgeListData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeListData.h"; path = "../../GeomUtils/src/common/GuEdgeListData.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c001c987fa90c001c98 /* src/common/GuSeparatingAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.h"; path = "../../GeomUtils/src/common/GuSeparatingAxes.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c001d007fa90c001d00 /* src/convex/GuBigConvexData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.h"; path = "../../GeomUtils/src/convex/GuBigConvexData.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c001d687fa90c001d68 /* src/convex/GuBigConvexData2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData2.h"; path = "../../GeomUtils/src/convex/GuBigConvexData2.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c001dd07fa90c001dd0 /* src/convex/GuConvexEdgeFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexEdgeFlags.h"; path = "../../GeomUtils/src/convex/GuConvexEdgeFlags.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c001e387fa90c001e38 /* src/convex/GuConvexHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.h"; path = "../../GeomUtils/src/convex/GuConvexHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c001ea07fa90c001ea0 /* src/convex/GuConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.h"; path = "../../GeomUtils/src/convex/GuConvexMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c001f087fa90c001f08 /* src/convex/GuConvexMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMeshData.h"; path = "../../GeomUtils/src/convex/GuConvexMeshData.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c001f707fa90c001f70 /* src/convex/GuConvexSupportTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.h"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c001fd87fa90c001fd8 /* src/convex/GuConvexUtilsInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.h"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0020407fa90c002040 /* src/convex/GuCubeIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuCubeIndex.h"; path = "../../GeomUtils/src/convex/GuCubeIndex.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0020a87fa90c0020a8 /* src/convex/GuHillClimbing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.h"; path = "../../GeomUtils/src/convex/GuHillClimbing.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0021107fa90c002110 /* src/convex/GuShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.h"; path = "../../GeomUtils/src/convex/GuShapeConvex.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0021787fa90c002178 /* src/distance/GuDistancePointBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.h"; path = "../../GeomUtils/src/distance/GuDistancePointBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0021e07fa90c0021e0 /* src/distance/GuDistancePointSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointSegment.h"; path = "../../GeomUtils/src/distance/GuDistancePointSegment.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0022487fa90c002248 /* src/distance/GuDistancePointTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0022b07fa90c0022b0 /* src/distance/GuDistancePointTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangleSIMD.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0023187fa90c002318 /* src/distance/GuDistanceSegmentSegmentSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegmentSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegmentSIMD.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0023807fa90c002380 /* src/distance/GuDistanceSegmentTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0023e87fa90c0023e8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangleSIMD.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0024507fa90c002450 /* src/sweep/GuSweepBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0024b87fa90c0024b8 /* src/sweep/GuSweepBoxSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0025207fa90c002520 /* 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; }; + FFFD0c0025887fa90c002588 /* 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; }; + FFFD0c0025f07fa90c0025f0 /* src/sweep/GuSweepCapsuleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0026587fa90c002658 /* src/sweep/GuSweepCapsuleCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0026c07fa90c0026c0 /* src/sweep/GuSweepCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0027287fa90c002728 /* src/sweep/GuSweepSphereCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0027907fa90c002790 /* src/sweep/GuSweepSphereSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0027f87fa90c0027f8 /* src/sweep/GuSweepSphereTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0028607fa90c002860 /* src/sweep/GuSweepTriangleUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.h"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0028c87fa90c0028c8 /* src/gjk/GuEPA.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.h"; path = "../../GeomUtils/src/gjk/GuEPA.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0029307fa90c002930 /* src/gjk/GuEPAFacet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPAFacet.h"; path = "../../GeomUtils/src/gjk/GuEPAFacet.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0029987fa90c002998 /* src/gjk/GuGJK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJK.h"; path = "../../GeomUtils/src/gjk/GuGJK.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c002a007fa90c002a00 /* src/gjk/GuGJKPenetration.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKPenetration.h"; path = "../../GeomUtils/src/gjk/GuGJKPenetration.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c002a687fa90c002a68 /* src/gjk/GuGJKRaycast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKRaycast.h"; path = "../../GeomUtils/src/gjk/GuGJKRaycast.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c002ad07fa90c002ad0 /* src/gjk/GuGJKSimplex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.h"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c002b387fa90c002b38 /* src/gjk/GuGJKTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.h"; path = "../../GeomUtils/src/gjk/GuGJKTest.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c002ba07fa90c002ba0 /* src/gjk/GuGJKType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKType.h"; path = "../../GeomUtils/src/gjk/GuGJKType.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c002c087fa90c002c08 /* src/gjk/GuGJKUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKUtil.h"; path = "../../GeomUtils/src/gjk/GuGJKUtil.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c002c707fa90c002c70 /* src/gjk/GuVecBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecBox.h"; path = "../../GeomUtils/src/gjk/GuVecBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c002cd87fa90c002cd8 /* src/gjk/GuVecCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecCapsule.h"; path = "../../GeomUtils/src/gjk/GuVecCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c002d407fa90c002d40 /* src/gjk/GuVecConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvex.h"; path = "../../GeomUtils/src/gjk/GuVecConvex.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c002da87fa90c002da8 /* src/gjk/GuVecConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHull.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c002e107fa90c002e10 /* src/gjk/GuVecConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c002e787fa90c002e78 /* src/gjk/GuVecPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecPlane.h"; path = "../../GeomUtils/src/gjk/GuVecPlane.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c002ee07fa90c002ee0 /* src/gjk/GuVecShrunkBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkBox.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c002f487fa90c002f48 /* src/gjk/GuVecShrunkConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHull.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c002fb07fa90c002fb0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0030187fa90c003018 /* src/gjk/GuVecSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecSphere.h"; path = "../../GeomUtils/src/gjk/GuVecSphere.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0030807fa90c003080 /* src/gjk/GuVecTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecTriangle.h"; path = "../../GeomUtils/src/gjk/GuVecTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0030e87fa90c0030e8 /* src/intersection/GuIntersectionCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0031507fa90c003150 /* src/intersection/GuIntersectionEdgeEdge.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.h"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0031b87fa90c0031b8 /* src/intersection/GuIntersectionRay.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRay.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRay.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0032207fa90c003220 /* src/intersection/GuIntersectionRayBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0032887fa90c003288 /* src/intersection/GuIntersectionRayBoxSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBoxSIMD.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBoxSIMD.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0032f07fa90c0032f0 /* src/intersection/GuIntersectionRayCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0033587fa90c003358 /* src/intersection/GuIntersectionRayPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayPlane.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayPlane.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0033c07fa90c0033c0 /* src/intersection/GuIntersectionRaySphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0034287fa90c003428 /* src/intersection/GuIntersectionRayTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0034907fa90c003490 /* src/intersection/GuIntersectionSphereBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0034f87fa90c0034f8 /* src/mesh/GuBV32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.h"; path = "../../GeomUtils/src/mesh/GuBV32.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0035607fa90c003560 /* src/mesh/GuBV32Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.h"; path = "../../GeomUtils/src/mesh/GuBV32Build.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0035c87fa90c0035c8 /* src/mesh/GuBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.h"; path = "../../GeomUtils/src/mesh/GuBV4.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0036307fa90c003630 /* src/mesh/GuBV4Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.h"; path = "../../GeomUtils/src/mesh/GuBV4Build.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0036987fa90c003698 /* src/mesh/GuBV4Settings.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Settings.h"; path = "../../GeomUtils/src/mesh/GuBV4Settings.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0037007fa90c003700 /* 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; }; + FFFD0c0037687fa90c003768 /* 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; }; + FFFD0c0037d07fa90c0037d0 /* 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; }; + FFFD0c0038387fa90c003838 /* 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; }; + FFFD0c0038a07fa90c0038a0 /* 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; }; + FFFD0c0039087fa90c003908 /* 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; }; + FFFD0c0039707fa90c003970 /* 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; }; + FFFD0c0039d87fa90c0039d8 /* 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; }; + FFFD0c003a407fa90c003a40 /* 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; }; + FFFD0c003aa87fa90c003aa8 /* 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; }; + FFFD0c003b107fa90c003b10 /* 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; }; + FFFD0c003b787fa90c003b78 /* 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; }; + FFFD0c003be07fa90c003be0 /* 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; }; + FFFD0c003c487fa90c003c48 /* 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; }; + FFFD0c003cb07fa90c003cb0 /* 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; }; + FFFD0c003d187fa90c003d18 /* 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; }; + FFFD0c003d807fa90c003d80 /* 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; }; + FFFD0c003de87fa90c003de8 /* 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; }; + FFFD0c003e507fa90c003e50 /* 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; }; + FFFD0c003eb87fa90c003eb8 /* 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; }; + FFFD0c003f207fa90c003f20 /* src/mesh/GuBVConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBVConstants.h"; path = "../../GeomUtils/src/mesh/GuBVConstants.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c003f887fa90c003f88 /* src/mesh/GuMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshData.h"; path = "../../GeomUtils/src/mesh/GuMeshData.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c003ff07fa90c003ff0 /* src/mesh/GuMidphaseInterface.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseInterface.h"; path = "../../GeomUtils/src/mesh/GuMidphaseInterface.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0040587fa90c004058 /* src/mesh/GuRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.h"; path = "../../GeomUtils/src/mesh/GuRTree.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0040c07fa90c0040c0 /* src/mesh/GuSweepConvexTri.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepConvexTri.h"; path = "../../GeomUtils/src/mesh/GuSweepConvexTri.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0041287fa90c004128 /* src/mesh/GuSweepMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepMesh.h"; path = "../../GeomUtils/src/mesh/GuSweepMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0041907fa90c004190 /* src/mesh/GuTriangle32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangle32.h"; path = "../../GeomUtils/src/mesh/GuTriangle32.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0041f87fa90c0041f8 /* src/mesh/GuTriangleCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleCache.h"; path = "../../GeomUtils/src/mesh/GuTriangleCache.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0042607fa90c004260 /* src/mesh/GuTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.h"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0042c87fa90c0042c8 /* src/mesh/GuTriangleMeshBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0043307fa90c004330 /* src/mesh/GuTriangleMeshRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0043987fa90c004398 /* src/mesh/GuTriangleVertexPointers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleVertexPointers.h"; path = "../../GeomUtils/src/mesh/GuTriangleVertexPointers.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0044007fa90c004400 /* src/hf/GuEntityReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuEntityReport.h"; path = "../../GeomUtils/src/hf/GuEntityReport.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0044687fa90c004468 /* src/hf/GuHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.h"; path = "../../GeomUtils/src/hf/GuHeightField.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0044d07fa90c0044d0 /* src/hf/GuHeightFieldData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldData.h"; path = "../../GeomUtils/src/hf/GuHeightFieldData.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0045387fa90c004538 /* src/hf/GuHeightFieldUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.h"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0045a07fa90c0045a0 /* src/pcm/GuPCMContactConvexCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.h"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0046087fa90c004608 /* src/pcm/GuPCMContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGen.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0046707fa90c004670 /* src/pcm/GuPCMContactGenUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenUtil.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGenUtil.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0046d87fa90c0046d8 /* src/pcm/GuPCMContactMeshCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactMeshCallback.h"; path = "../../GeomUtils/src/pcm/GuPCMContactMeshCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0047407fa90c004740 /* src/pcm/GuPCMShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.h"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0047a87fa90c0047a8 /* src/pcm/GuPCMTriangleContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0048107fa90c004810 /* src/pcm/GuPersistentContactManifold.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.h"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0048787fa90c004878 /* src/ccd/GuCCDSweepConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.h"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0048e07fa90c0048e0 /* src/GuBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.cpp"; path = "../../GeomUtils/src/GuBounds.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0049487fa90c004948 /* src/GuBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBox.cpp"; path = "../../GeomUtils/src/GuBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0049b07fa90c0049b0 /* src/GuCCTSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCCTSweepTests.cpp"; path = "../../GeomUtils/src/GuCCTSweepTests.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c004a187fa90c004a18 /* src/GuCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.cpp"; path = "../../GeomUtils/src/GuCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c004a807fa90c004a80 /* src/GuGeometryQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryQuery.cpp"; path = "../../GeomUtils/src/GuGeometryQuery.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c004ae87fa90c004ae8 /* src/GuGeometryUnion.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.cpp"; path = "../../GeomUtils/src/GuGeometryUnion.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c004b507fa90c004b50 /* src/GuInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.cpp"; path = "../../GeomUtils/src/GuInternal.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c004bb87fa90c004bb8 /* src/GuMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.cpp"; path = "../../GeomUtils/src/GuMTD.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c004c207fa90c004c20 /* src/GuMeshFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.cpp"; path = "../../GeomUtils/src/GuMeshFactory.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c004c887fa90c004c88 /* src/GuMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMetaData.cpp"; path = "../../GeomUtils/src/GuMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c004cf07fa90c004cf0 /* src/GuOverlapTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.cpp"; path = "../../GeomUtils/src/GuOverlapTests.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c004d587fa90c004d58 /* src/GuRaycastTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuRaycastTests.cpp"; path = "../../GeomUtils/src/GuRaycastTests.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c004dc07fa90c004dc0 /* src/GuSerialize.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.cpp"; path = "../../GeomUtils/src/GuSerialize.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c004e287fa90c004e28 /* src/GuSweepMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.cpp"; path = "../../GeomUtils/src/GuSweepMTD.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c004e907fa90c004e90 /* src/GuSweepSharedTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.cpp"; path = "../../GeomUtils/src/GuSweepSharedTests.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c004ef87fa90c004ef8 /* src/GuSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.cpp"; path = "../../GeomUtils/src/GuSweepTests.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c004f607fa90c004f60 /* src/contact/GuContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactBoxBox.cpp"; path = "../../GeomUtils/src/contact/GuContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c004fc87fa90c004fc8 /* src/contact/GuContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleBox.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0050307fa90c005030 /* src/contact/GuContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0050987fa90c005098 /* src/contact/GuContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0051007fa90c005100 /* src/contact/GuContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0051687fa90c005168 /* src/contact/GuContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0051d07fa90c0051d0 /* src/contact/GuContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0052387fa90c005238 /* src/contact/GuContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneBox.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0052a07fa90c0052a0 /* src/contact/GuContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0053087fa90c005308 /* src/contact/GuContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0053707fa90c005370 /* src/contact/GuContactPolygonPolygon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.cpp"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0053d87fa90c0053d8 /* src/contact/GuContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereBox.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0054407fa90c005440 /* src/contact/GuContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0054a87fa90c0054a8 /* src/contact/GuContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0055107fa90c005510 /* src/contact/GuContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSpherePlane.cpp"; path = "../../GeomUtils/src/contact/GuContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0055787fa90c005578 /* src/contact/GuContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereSphere.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0055e07fa90c0055e0 /* src/contact/GuFeatureCode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.cpp"; path = "../../GeomUtils/src/contact/GuFeatureCode.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0056487fa90c005648 /* src/contact/GuLegacyContactBoxHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactBoxHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactBoxHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0056b07fa90c0056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0057187fa90c005718 /* src/contact/GuLegacyContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactConvexHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0057807fa90c005780 /* src/contact/GuLegacyContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactSphereHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0057e87fa90c0057e8 /* src/common/GuBarycentricCoordinates.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.cpp"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0058507fa90c005850 /* src/common/GuSeparatingAxes.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.cpp"; path = "../../GeomUtils/src/common/GuSeparatingAxes.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0058b87fa90c0058b8 /* src/convex/GuBigConvexData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.cpp"; path = "../../GeomUtils/src/convex/GuBigConvexData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0059207fa90c005920 /* src/convex/GuConvexHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.cpp"; path = "../../GeomUtils/src/convex/GuConvexHelper.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0059887fa90c005988 /* src/convex/GuConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.cpp"; path = "../../GeomUtils/src/convex/GuConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0059f07fa90c0059f0 /* src/convex/GuConvexSupportTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.cpp"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c005a587fa90c005a58 /* src/convex/GuConvexUtilsInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.cpp"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c005ac07fa90c005ac0 /* src/convex/GuHillClimbing.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.cpp"; path = "../../GeomUtils/src/convex/GuHillClimbing.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c005b287fa90c005b28 /* src/convex/GuShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.cpp"; path = "../../GeomUtils/src/convex/GuShapeConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c005b907fa90c005b90 /* src/distance/GuDistancePointBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c005bf87fa90c005bf8 /* src/distance/GuDistancePointTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c005c607fa90c005c60 /* src/distance/GuDistanceSegmentBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentBox.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c005cc87fa90c005cc8 /* src/distance/GuDistanceSegmentSegment.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegment.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegment.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c005d307fa90c005d30 /* src/distance/GuDistanceSegmentTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c005d987fa90c005d98 /* src/sweep/GuSweepBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c005e007fa90c005e00 /* src/sweep/GuSweepBoxSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c005e687fa90c005e68 /* 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; }; + FFFD0c005ed07fa90c005ed0 /* 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; }; + FFFD0c005f387fa90c005f38 /* src/sweep/GuSweepCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c005fa07fa90c005fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0060087fa90c006008 /* src/sweep/GuSweepCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0060707fa90c006070 /* src/sweep/GuSweepSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0060d87fa90c0060d8 /* src/sweep/GuSweepSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0061407fa90c006140 /* src/sweep/GuSweepSphereTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0061a87fa90c0061a8 /* src/sweep/GuSweepTriangleUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.cpp"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0062107fa90c006210 /* src/gjk/GuEPA.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.cpp"; path = "../../GeomUtils/src/gjk/GuEPA.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0062787fa90c006278 /* src/gjk/GuGJKSimplex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.cpp"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0062e07fa90c0062e0 /* src/gjk/GuGJKTest.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.cpp"; path = "../../GeomUtils/src/gjk/GuGJKTest.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0063487fa90c006348 /* src/intersection/GuIntersectionBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionBoxBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0063b07fa90c0063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0064187fa90c006418 /* src/intersection/GuIntersectionEdgeEdge.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0064807fa90c006480 /* src/intersection/GuIntersectionRayBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0064e87fa90c0064e8 /* src/intersection/GuIntersectionRayCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0065507fa90c006550 /* src/intersection/GuIntersectionRaySphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0065b87fa90c0065b8 /* src/intersection/GuIntersectionSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0066207fa90c006620 /* src/intersection/GuIntersectionTriangleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionTriangleBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionTriangleBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0066887fa90c006688 /* src/mesh/GuBV32.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.cpp"; path = "../../GeomUtils/src/mesh/GuBV32.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0066f07fa90c0066f0 /* src/mesh/GuBV32Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV32Build.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0067587fa90c006758 /* src/mesh/GuBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.cpp"; path = "../../GeomUtils/src/mesh/GuBV4.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0067c07fa90c0067c0 /* src/mesh/GuBV4Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV4Build.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0068287fa90c006828 /* 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; }; + FFFD0c0068907fa90c006890 /* 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; }; + FFFD0c0068f87fa90c0068f8 /* 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; }; + FFFD0c0069607fa90c006960 /* 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; }; + FFFD0c0069c87fa90c0069c8 /* 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; }; + FFFD0c006a307fa90c006a30 /* 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; }; + FFFD0c006a987fa90c006a98 /* 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; }; + FFFD0c006b007fa90c006b00 /* 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; }; + FFFD0c006b687fa90c006b68 /* src/mesh/GuMeshQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshQuery.cpp"; path = "../../GeomUtils/src/mesh/GuMeshQuery.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c006bd07fa90c006bd0 /* src/mesh/GuMidphaseBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseBV4.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseBV4.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c006c387fa90c006c38 /* src/mesh/GuMidphaseRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseRTree.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseRTree.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c006ca07fa90c006ca0 /* src/mesh/GuOverlapTestsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuOverlapTestsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuOverlapTestsMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c006d087fa90c006d08 /* src/mesh/GuRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.cpp"; path = "../../GeomUtils/src/mesh/GuRTree.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c006d707fa90c006d70 /* src/mesh/GuRTreeQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTreeQueries.cpp"; path = "../../GeomUtils/src/mesh/GuRTreeQueries.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c006dd87fa90c006dd8 /* src/mesh/GuSweepsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuSweepsMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c006e407fa90c006e40 /* src/mesh/GuTriangleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c006ea87fa90c006ea8 /* src/mesh/GuTriangleMeshBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c006f107fa90c006f10 /* src/mesh/GuTriangleMeshRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c006f787fa90c006f78 /* src/hf/GuHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.cpp"; path = "../../GeomUtils/src/hf/GuHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c006fe07fa90c006fe0 /* src/hf/GuHeightFieldUtil.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.cpp"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0070487fa90c007048 /* src/hf/GuOverlapTestsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuOverlapTestsHF.cpp"; path = "../../GeomUtils/src/hf/GuOverlapTestsHF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0070b07fa90c0070b0 /* src/hf/GuSweepsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuSweepsHF.cpp"; path = "../../GeomUtils/src/hf/GuSweepsHF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0071187fa90c007118 /* src/pcm/GuPCMContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0071807fa90c007180 /* src/pcm/GuPCMContactBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0071e87fa90c0071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0072507fa90c007250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0072b87fa90c0072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0073207fa90c007320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0073887fa90c007388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0073f07fa90c0073f0 /* src/pcm/GuPCMContactConvexCommon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0074587fa90c007458 /* src/pcm/GuPCMContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0074c07fa90c0074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0075287fa90c007528 /* src/pcm/GuPCMContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0075907fa90c007590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenBoxConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0075f87fa90c0075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0076607fa90c007660 /* src/pcm/GuPCMContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0076c87fa90c0076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0077307fa90c007730 /* src/pcm/GuPCMContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0077987fa90c007798 /* src/pcm/GuPCMContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0078007fa90c007800 /* src/pcm/GuPCMContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0078687fa90c007868 /* src/pcm/GuPCMContactSphereConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0078d07fa90c0078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0079387fa90c007938 /* src/pcm/GuPCMContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0079a07fa90c0079a0 /* src/pcm/GuPCMContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSpherePlane.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c007a087fa90c007a08 /* src/pcm/GuPCMContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereSphere.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c007a707fa90c007a70 /* src/pcm/GuPCMShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c007ad87fa90c007ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.cpp"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c007b407fa90c007b40 /* src/pcm/GuPersistentContactManifold.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.cpp"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c007ba87fa90c007ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.cpp"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c007c107fa90c007c10 /* 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 */ - FFF2e2c17a107ffde2c17a10 /* Resources */ = { + FFF20b897c207fa90b897c20 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFe38013a87ffde38013a8, + FFFF0c0013a87fa90c0013a8, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCe2c17a107ffde2c17a10 /* Frameworks */ = { + FFFC0b897c207fa90b897c20 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -1841,145 +1841,145 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8e2c17a107ffde2c17a10 /* Sources */ = { + FFF80b897c207fa90b897c20 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFe30290007ffde3029000, - FFFFe30290687ffde3029068, - FFFFe30290d07ffde30290d0, - FFFFe30291387ffde3029138, - FFFFe30291a07ffde30291a0, - FFFFe30292087ffde3029208, - FFFFe30292707ffde3029270, - FFFFe30292d87ffde30292d8, - FFFFe38048e07ffde38048e0, - FFFFe38049487ffde3804948, - FFFFe38049b07ffde38049b0, - FFFFe3804a187ffde3804a18, - FFFFe3804a807ffde3804a80, - FFFFe3804ae87ffde3804ae8, - FFFFe3804b507ffde3804b50, - FFFFe3804bb87ffde3804bb8, - FFFFe3804c207ffde3804c20, - FFFFe3804c887ffde3804c88, - FFFFe3804cf07ffde3804cf0, - FFFFe3804d587ffde3804d58, - FFFFe3804dc07ffde3804dc0, - FFFFe3804e287ffde3804e28, - FFFFe3804e907ffde3804e90, - FFFFe3804ef87ffde3804ef8, - FFFFe3804f607ffde3804f60, - FFFFe3804fc87ffde3804fc8, - FFFFe38050307ffde3805030, - FFFFe38050987ffde3805098, - FFFFe38051007ffde3805100, - FFFFe38051687ffde3805168, - FFFFe38051d07ffde38051d0, - FFFFe38052387ffde3805238, - FFFFe38052a07ffde38052a0, - FFFFe38053087ffde3805308, - FFFFe38053707ffde3805370, - FFFFe38053d87ffde38053d8, - FFFFe38054407ffde3805440, - FFFFe38054a87ffde38054a8, - FFFFe38055107ffde3805510, - FFFFe38055787ffde3805578, - FFFFe38055e07ffde38055e0, - FFFFe38056487ffde3805648, - FFFFe38056b07ffde38056b0, - FFFFe38057187ffde3805718, - FFFFe38057807ffde3805780, - FFFFe38057e87ffde38057e8, - FFFFe38058507ffde3805850, - FFFFe38058b87ffde38058b8, - FFFFe38059207ffde3805920, - FFFFe38059887ffde3805988, - FFFFe38059f07ffde38059f0, - FFFFe3805a587ffde3805a58, - FFFFe3805ac07ffde3805ac0, - FFFFe3805b287ffde3805b28, - FFFFe3805b907ffde3805b90, - FFFFe3805bf87ffde3805bf8, - FFFFe3805c607ffde3805c60, - FFFFe3805cc87ffde3805cc8, - FFFFe3805d307ffde3805d30, - FFFFe3805d987ffde3805d98, - FFFFe3805e007ffde3805e00, - FFFFe3805e687ffde3805e68, - FFFFe3805ed07ffde3805ed0, - FFFFe3805f387ffde3805f38, - FFFFe3805fa07ffde3805fa0, - FFFFe38060087ffde3806008, - FFFFe38060707ffde3806070, - FFFFe38060d87ffde38060d8, - FFFFe38061407ffde3806140, - FFFFe38061a87ffde38061a8, - FFFFe38062107ffde3806210, - FFFFe38062787ffde3806278, - FFFFe38062e07ffde38062e0, - FFFFe38063487ffde3806348, - FFFFe38063b07ffde38063b0, - FFFFe38064187ffde3806418, - FFFFe38064807ffde3806480, - FFFFe38064e87ffde38064e8, - FFFFe38065507ffde3806550, - FFFFe38065b87ffde38065b8, - FFFFe38066207ffde3806620, - FFFFe38066887ffde3806688, - FFFFe38066f07ffde38066f0, - FFFFe38067587ffde3806758, - FFFFe38067c07ffde38067c0, - FFFFe38068287ffde3806828, - FFFFe38068907ffde3806890, - FFFFe38068f87ffde38068f8, - FFFFe38069607ffde3806960, - FFFFe38069c87ffde38069c8, - FFFFe3806a307ffde3806a30, - FFFFe3806a987ffde3806a98, - FFFFe3806b007ffde3806b00, - FFFFe3806b687ffde3806b68, - FFFFe3806bd07ffde3806bd0, - FFFFe3806c387ffde3806c38, - FFFFe3806ca07ffde3806ca0, - FFFFe3806d087ffde3806d08, - FFFFe3806d707ffde3806d70, - FFFFe3806dd87ffde3806dd8, - FFFFe3806e407ffde3806e40, - FFFFe3806ea87ffde3806ea8, - FFFFe3806f107ffde3806f10, - FFFFe3806f787ffde3806f78, - FFFFe3806fe07ffde3806fe0, - FFFFe38070487ffde3807048, - FFFFe38070b07ffde38070b0, - FFFFe38071187ffde3807118, - FFFFe38071807ffde3807180, - FFFFe38071e87ffde38071e8, - FFFFe38072507ffde3807250, - FFFFe38072b87ffde38072b8, - FFFFe38073207ffde3807320, - FFFFe38073887ffde3807388, - FFFFe38073f07ffde38073f0, - FFFFe38074587ffde3807458, - FFFFe38074c07ffde38074c0, - FFFFe38075287ffde3807528, - FFFFe38075907ffde3807590, - FFFFe38075f87ffde38075f8, - FFFFe38076607ffde3807660, - FFFFe38076c87ffde38076c8, - FFFFe38077307ffde3807730, - FFFFe38077987ffde3807798, - FFFFe38078007ffde3807800, - FFFFe38078687ffde3807868, - FFFFe38078d07ffde38078d0, - FFFFe38079387ffde3807938, - FFFFe38079a07ffde38079a0, - FFFFe3807a087ffde3807a08, - FFFFe3807a707ffde3807a70, - FFFFe3807ad87ffde3807ad8, - FFFFe3807b407ffde3807b40, - FFFFe3807ba87ffde3807ba8, - FFFFe3807c107ffde3807c10, + FFFF0b1a48007fa90b1a4800, + FFFF0b1a48687fa90b1a4868, + FFFF0b1a48d07fa90b1a48d0, + FFFF0b1a49387fa90b1a4938, + FFFF0b1a49a07fa90b1a49a0, + FFFF0b1a4a087fa90b1a4a08, + FFFF0b1a4a707fa90b1a4a70, + FFFF0b1a4ad87fa90b1a4ad8, + FFFF0c0048e07fa90c0048e0, + FFFF0c0049487fa90c004948, + FFFF0c0049b07fa90c0049b0, + FFFF0c004a187fa90c004a18, + FFFF0c004a807fa90c004a80, + FFFF0c004ae87fa90c004ae8, + FFFF0c004b507fa90c004b50, + FFFF0c004bb87fa90c004bb8, + FFFF0c004c207fa90c004c20, + FFFF0c004c887fa90c004c88, + FFFF0c004cf07fa90c004cf0, + FFFF0c004d587fa90c004d58, + FFFF0c004dc07fa90c004dc0, + FFFF0c004e287fa90c004e28, + FFFF0c004e907fa90c004e90, + FFFF0c004ef87fa90c004ef8, + FFFF0c004f607fa90c004f60, + FFFF0c004fc87fa90c004fc8, + FFFF0c0050307fa90c005030, + FFFF0c0050987fa90c005098, + FFFF0c0051007fa90c005100, + FFFF0c0051687fa90c005168, + FFFF0c0051d07fa90c0051d0, + FFFF0c0052387fa90c005238, + FFFF0c0052a07fa90c0052a0, + FFFF0c0053087fa90c005308, + FFFF0c0053707fa90c005370, + FFFF0c0053d87fa90c0053d8, + FFFF0c0054407fa90c005440, + FFFF0c0054a87fa90c0054a8, + FFFF0c0055107fa90c005510, + FFFF0c0055787fa90c005578, + FFFF0c0055e07fa90c0055e0, + FFFF0c0056487fa90c005648, + FFFF0c0056b07fa90c0056b0, + FFFF0c0057187fa90c005718, + FFFF0c0057807fa90c005780, + FFFF0c0057e87fa90c0057e8, + FFFF0c0058507fa90c005850, + FFFF0c0058b87fa90c0058b8, + FFFF0c0059207fa90c005920, + FFFF0c0059887fa90c005988, + FFFF0c0059f07fa90c0059f0, + FFFF0c005a587fa90c005a58, + FFFF0c005ac07fa90c005ac0, + FFFF0c005b287fa90c005b28, + FFFF0c005b907fa90c005b90, + FFFF0c005bf87fa90c005bf8, + FFFF0c005c607fa90c005c60, + FFFF0c005cc87fa90c005cc8, + FFFF0c005d307fa90c005d30, + FFFF0c005d987fa90c005d98, + FFFF0c005e007fa90c005e00, + FFFF0c005e687fa90c005e68, + FFFF0c005ed07fa90c005ed0, + FFFF0c005f387fa90c005f38, + FFFF0c005fa07fa90c005fa0, + FFFF0c0060087fa90c006008, + FFFF0c0060707fa90c006070, + FFFF0c0060d87fa90c0060d8, + FFFF0c0061407fa90c006140, + FFFF0c0061a87fa90c0061a8, + FFFF0c0062107fa90c006210, + FFFF0c0062787fa90c006278, + FFFF0c0062e07fa90c0062e0, + FFFF0c0063487fa90c006348, + FFFF0c0063b07fa90c0063b0, + FFFF0c0064187fa90c006418, + FFFF0c0064807fa90c006480, + FFFF0c0064e87fa90c0064e8, + FFFF0c0065507fa90c006550, + FFFF0c0065b87fa90c0065b8, + FFFF0c0066207fa90c006620, + FFFF0c0066887fa90c006688, + FFFF0c0066f07fa90c0066f0, + FFFF0c0067587fa90c006758, + FFFF0c0067c07fa90c0067c0, + FFFF0c0068287fa90c006828, + FFFF0c0068907fa90c006890, + FFFF0c0068f87fa90c0068f8, + FFFF0c0069607fa90c006960, + FFFF0c0069c87fa90c0069c8, + FFFF0c006a307fa90c006a30, + FFFF0c006a987fa90c006a98, + FFFF0c006b007fa90c006b00, + FFFF0c006b687fa90c006b68, + FFFF0c006bd07fa90c006bd0, + FFFF0c006c387fa90c006c38, + FFFF0c006ca07fa90c006ca0, + FFFF0c006d087fa90c006d08, + FFFF0c006d707fa90c006d70, + FFFF0c006dd87fa90c006dd8, + FFFF0c006e407fa90c006e40, + FFFF0c006ea87fa90c006ea8, + FFFF0c006f107fa90c006f10, + FFFF0c006f787fa90c006f78, + FFFF0c006fe07fa90c006fe0, + FFFF0c0070487fa90c007048, + FFFF0c0070b07fa90c0070b0, + FFFF0c0071187fa90c007118, + FFFF0c0071807fa90c007180, + FFFF0c0071e87fa90c0071e8, + FFFF0c0072507fa90c007250, + FFFF0c0072b87fa90c0072b8, + FFFF0c0073207fa90c007320, + FFFF0c0073887fa90c007388, + FFFF0c0073f07fa90c0073f0, + FFFF0c0074587fa90c007458, + FFFF0c0074c07fa90c0074c0, + FFFF0c0075287fa90c007528, + FFFF0c0075907fa90c007590, + FFFF0c0075f87fa90c0075f8, + FFFF0c0076607fa90c007660, + FFFF0c0076c87fa90c0076c8, + FFFF0c0077307fa90c007730, + FFFF0c0077987fa90c007798, + FFFF0c0078007fa90c007800, + FFFF0c0078687fa90c007868, + FFFF0c0078d07fa90c0078d0, + FFFF0c0079387fa90c007938, + FFFF0c0079a07fa90c0079a0, + FFFF0c007a087fa90c007a08, + FFFF0c007a707fa90c007a70, + FFFF0c007ad87fa90c007ad8, + FFFF0c007b407fa90c007b40, + FFFF0c007ba87fa90c007ba8, + FFFF0c007c107fa90c007c10, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1988,132 +1988,132 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF4e2c08f307ffde2c08f30 /* PBXTargetDependency */ = { + FFF40b8902307fa90b890230 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAe2c0b7d07ffde2c0b7d0 /* PxFoundation */; - targetProxy = FFF5e2c0b7d07ffde2c0b7d0 /* PBXContainerItemProxy */; + target = FFFA0b8818007fa90b881800 /* PxFoundation */; + targetProxy = FFF50b8818007fa90b881800 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PxFoundation */ - FFFFe3005b187ffde3005b18 /* src/PsAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe3005b187ffde3005b18 /* src/PsAllocator.cpp */; }; - FFFFe3005b807ffde3005b80 /* src/PsAssert.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe3005b807ffde3005b80 /* src/PsAssert.cpp */; }; - FFFFe3005be87ffde3005be8 /* src/PsFoundation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe3005be87ffde3005be8 /* src/PsFoundation.cpp */; }; - FFFFe3005c507ffde3005c50 /* src/PsMathUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe3005c507ffde3005c50 /* src/PsMathUtils.cpp */; }; - FFFFe3005cb87ffde3005cb8 /* src/PsString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe3005cb87ffde3005cb8 /* src/PsString.cpp */; }; - FFFFe3005d207ffde3005d20 /* src/PsTempAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe3005d207ffde3005d20 /* src/PsTempAllocator.cpp */; }; - FFFFe3005d887ffde3005d88 /* src/PsUtilities.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe3005d887ffde3005d88 /* src/PsUtilities.cpp */; }; - FFFFe3005df07ffde3005df0 /* src/unix/PsUnixAtomic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe3005df07ffde3005df0 /* src/unix/PsUnixAtomic.cpp */; }; - FFFFe3005e587ffde3005e58 /* src/unix/PsUnixCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe3005e587ffde3005e58 /* src/unix/PsUnixCpu.cpp */; }; - FFFFe3005ec07ffde3005ec0 /* src/unix/PsUnixFPU.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe3005ec07ffde3005ec0 /* src/unix/PsUnixFPU.cpp */; }; - FFFFe3005f287ffde3005f28 /* src/unix/PsUnixMutex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe3005f287ffde3005f28 /* src/unix/PsUnixMutex.cpp */; }; - FFFFe3005f907ffde3005f90 /* src/unix/PsUnixPrintString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe3005f907ffde3005f90 /* src/unix/PsUnixPrintString.cpp */; }; - FFFFe3005ff87ffde3005ff8 /* src/unix/PsUnixSList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe3005ff87ffde3005ff8 /* src/unix/PsUnixSList.cpp */; }; - FFFFe30060607ffde3006060 /* src/unix/PsUnixSocket.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe30060607ffde3006060 /* src/unix/PsUnixSocket.cpp */; }; - FFFFe30060c87ffde30060c8 /* src/unix/PsUnixSync.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe30060c87ffde30060c8 /* src/unix/PsUnixSync.cpp */; }; - FFFFe30061307ffde3006130 /* src/unix/PsUnixThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe30061307ffde3006130 /* src/unix/PsUnixThread.cpp */; }; - FFFFe30061987ffde3006198 /* src/unix/PsUnixTime.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe30061987ffde3006198 /* src/unix/PsUnixTime.cpp */; }; + FFFF0b19ff187fa90b19ff18 /* src/PsAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0b19ff187fa90b19ff18 /* src/PsAllocator.cpp */; }; + FFFF0b19ff807fa90b19ff80 /* src/PsAssert.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0b19ff807fa90b19ff80 /* src/PsAssert.cpp */; }; + FFFF0b19ffe87fa90b19ffe8 /* src/PsFoundation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0b19ffe87fa90b19ffe8 /* src/PsFoundation.cpp */; }; + FFFF0b1a00507fa90b1a0050 /* src/PsMathUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0b1a00507fa90b1a0050 /* src/PsMathUtils.cpp */; }; + FFFF0b1a00b87fa90b1a00b8 /* src/PsString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0b1a00b87fa90b1a00b8 /* src/PsString.cpp */; }; + FFFF0b1a01207fa90b1a0120 /* src/PsTempAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0b1a01207fa90b1a0120 /* src/PsTempAllocator.cpp */; }; + FFFF0b1a01887fa90b1a0188 /* src/PsUtilities.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0b1a01887fa90b1a0188 /* src/PsUtilities.cpp */; }; + FFFF0b1a01f07fa90b1a01f0 /* src/unix/PsUnixAtomic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0b1a01f07fa90b1a01f0 /* src/unix/PsUnixAtomic.cpp */; }; + FFFF0b1a02587fa90b1a0258 /* src/unix/PsUnixCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0b1a02587fa90b1a0258 /* src/unix/PsUnixCpu.cpp */; }; + FFFF0b1a02c07fa90b1a02c0 /* src/unix/PsUnixFPU.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0b1a02c07fa90b1a02c0 /* src/unix/PsUnixFPU.cpp */; }; + FFFF0b1a03287fa90b1a0328 /* src/unix/PsUnixMutex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0b1a03287fa90b1a0328 /* src/unix/PsUnixMutex.cpp */; }; + FFFF0b1a03907fa90b1a0390 /* src/unix/PsUnixPrintString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0b1a03907fa90b1a0390 /* src/unix/PsUnixPrintString.cpp */; }; + FFFF0b1a03f87fa90b1a03f8 /* src/unix/PsUnixSList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0b1a03f87fa90b1a03f8 /* src/unix/PsUnixSList.cpp */; }; + FFFF0b1a04607fa90b1a0460 /* src/unix/PsUnixSocket.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0b1a04607fa90b1a0460 /* src/unix/PsUnixSocket.cpp */; }; + FFFF0b1a04c87fa90b1a04c8 /* src/unix/PsUnixSync.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0b1a04c87fa90b1a04c8 /* src/unix/PsUnixSync.cpp */; }; + FFFF0b1a05307fa90b1a0530 /* src/unix/PsUnixThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0b1a05307fa90b1a0530 /* src/unix/PsUnixThread.cpp */; }; + FFFF0b1a05987fa90b1a0598 /* src/unix/PsUnixTime.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0b1a05987fa90b1a0598 /* src/unix/PsUnixTime.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDe2c0b7d07ffde2c0b7d0 /* PxFoundation */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxFoundation"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDe3003c007ffde3003c00 /* Px.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Px.h"; path = "../../../../PxShared/include/foundation/Px.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3003c687ffde3003c68 /* PxAllocatorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAllocatorCallback.h"; path = "../../../../PxShared/include/foundation/PxAllocatorCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3003cd07ffde3003cd0 /* PxAssert.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAssert.h"; path = "../../../../PxShared/include/foundation/PxAssert.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3003d387ffde3003d38 /* PxBitAndData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBitAndData.h"; path = "../../../../PxShared/include/foundation/PxBitAndData.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3003da07ffde3003da0 /* PxBounds3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBounds3.h"; path = "../../../../PxShared/include/foundation/PxBounds3.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3003e087ffde3003e08 /* PxErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrorCallback.h"; path = "../../../../PxShared/include/foundation/PxErrorCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3003e707ffde3003e70 /* PxErrors.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrors.h"; path = "../../../../PxShared/include/foundation/PxErrors.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3003ed87ffde3003ed8 /* PxFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFlags.h"; path = "../../../../PxShared/include/foundation/PxFlags.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3003f407ffde3003f40 /* PxFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundation.h"; path = "../../../../PxShared/include/foundation/PxFoundation.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3003fa87ffde3003fa8 /* PxFoundationVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundationVersion.h"; path = "../../../../PxShared/include/foundation/PxFoundationVersion.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30040107ffde3004010 /* PxIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIO.h"; path = "../../../../PxShared/include/foundation/PxIO.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30040787ffde3004078 /* PxIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIntrinsics.h"; path = "../../../../PxShared/include/foundation/PxIntrinsics.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30040e07ffde30040e0 /* PxMat33.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat33.h"; path = "../../../../PxShared/include/foundation/PxMat33.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30041487ffde3004148 /* PxMat44.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat44.h"; path = "../../../../PxShared/include/foundation/PxMat44.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30041b07ffde30041b0 /* PxMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMath.h"; path = "../../../../PxShared/include/foundation/PxMath.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30042187ffde3004218 /* PxMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMathUtils.h"; path = "../../../../PxShared/include/foundation/PxMathUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30042807ffde3004280 /* PxMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMemory.h"; path = "../../../../PxShared/include/foundation/PxMemory.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30042e87ffde30042e8 /* PxPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPlane.h"; path = "../../../../PxShared/include/foundation/PxPlane.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30043507ffde3004350 /* PxPreprocessor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPreprocessor.h"; path = "../../../../PxShared/include/foundation/PxPreprocessor.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30043b87ffde30043b8 /* PxProfiler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxProfiler.h"; path = "../../../../PxShared/include/foundation/PxProfiler.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30044207ffde3004420 /* PxQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQuat.h"; path = "../../../../PxShared/include/foundation/PxQuat.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30044887ffde3004488 /* PxSimpleTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleTypes.h"; path = "../../../../PxShared/include/foundation/PxSimpleTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30044f07ffde30044f0 /* PxStrideIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStrideIterator.h"; path = "../../../../PxShared/include/foundation/PxStrideIterator.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30045587ffde3004558 /* PxTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTransform.h"; path = "../../../../PxShared/include/foundation/PxTransform.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30045c07ffde30045c0 /* PxUnionCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxUnionCast.h"; path = "../../../../PxShared/include/foundation/PxUnionCast.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30046287ffde3004628 /* PxVec2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec2.h"; path = "../../../../PxShared/include/foundation/PxVec2.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30046907ffde3004690 /* PxVec3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec3.h"; path = "../../../../PxShared/include/foundation/PxVec3.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30046f87ffde30046f8 /* PxVec4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec4.h"; path = "../../../../PxShared/include/foundation/PxVec4.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30047607ffde3004760 /* unix/PxUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "unix/PxUnixIntrinsics.h"; path = "../../../../PxShared/include/foundation/unix/PxUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30048007ffde3004800 /* include/Ps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/Ps.h"; path = "../../../../PxShared/src/foundation/include/Ps.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30048687ffde3004868 /* include/PsAlignedMalloc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlignedMalloc.h"; path = "../../../../PxShared/src/foundation/include/PsAlignedMalloc.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30048d07ffde30048d0 /* include/PsAlloca.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlloca.h"; path = "../../../../PxShared/src/foundation/include/PsAlloca.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30049387ffde3004938 /* include/PsAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30049a07ffde30049a0 /* include/PsAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAoS.h"; path = "../../../../PxShared/src/foundation/include/PsAoS.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3004a087ffde3004a08 /* include/PsArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsArray.h"; path = "../../../../PxShared/src/foundation/include/PsArray.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3004a707ffde3004a70 /* include/PsAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAtomic.h"; path = "../../../../PxShared/src/foundation/include/PsAtomic.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3004ad87ffde3004ad8 /* include/PsBasicTemplates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBasicTemplates.h"; path = "../../../../PxShared/src/foundation/include/PsBasicTemplates.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3004b407ffde3004b40 /* include/PsBitUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBitUtils.h"; path = "../../../../PxShared/src/foundation/include/PsBitUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3004ba87ffde3004ba8 /* include/PsBroadcast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBroadcast.h"; path = "../../../../PxShared/src/foundation/include/PsBroadcast.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3004c107ffde3004c10 /* include/PsCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsCpu.h"; path = "../../../../PxShared/src/foundation/include/PsCpu.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3004c787ffde3004c78 /* include/PsFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFPU.h"; path = "../../../../PxShared/src/foundation/include/PsFPU.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3004ce07ffde3004ce0 /* include/PsFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFoundation.h"; path = "../../../../PxShared/src/foundation/include/PsFoundation.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3004d487ffde3004d48 /* include/PsHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHash.h"; path = "../../../../PxShared/src/foundation/include/PsHash.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3004db07ffde3004db0 /* include/PsHashInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashInternals.h"; path = "../../../../PxShared/src/foundation/include/PsHashInternals.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3004e187ffde3004e18 /* include/PsHashMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashMap.h"; path = "../../../../PxShared/src/foundation/include/PsHashMap.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3004e807ffde3004e80 /* include/PsHashSet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashSet.h"; path = "../../../../PxShared/src/foundation/include/PsHashSet.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3004ee87ffde3004ee8 /* include/PsInlineAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3004f507ffde3004f50 /* include/PsInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAoS.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3004fb87ffde3004fb8 /* include/PsInlineArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineArray.h"; path = "../../../../PxShared/src/foundation/include/PsInlineArray.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30050207ffde3005020 /* include/PsIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/PsIntrinsics.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30050887ffde3005088 /* include/PsMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMathUtils.h"; path = "../../../../PxShared/src/foundation/include/PsMathUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30050f07ffde30050f0 /* include/PsMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMutex.h"; path = "../../../../PxShared/src/foundation/include/PsMutex.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30051587ffde3005158 /* include/PsPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPool.h"; path = "../../../../PxShared/src/foundation/include/PsPool.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30051c07ffde30051c0 /* include/PsSList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSList.h"; path = "../../../../PxShared/src/foundation/include/PsSList.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30052287ffde3005228 /* include/PsSocket.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSocket.h"; path = "../../../../PxShared/src/foundation/include/PsSocket.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30052907ffde3005290 /* include/PsSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSort.h"; path = "../../../../PxShared/src/foundation/include/PsSort.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30052f87ffde30052f8 /* include/PsSortInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSortInternals.h"; path = "../../../../PxShared/src/foundation/include/PsSortInternals.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30053607ffde3005360 /* include/PsString.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsString.h"; path = "../../../../PxShared/src/foundation/include/PsString.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30053c87ffde30053c8 /* include/PsSync.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSync.h"; path = "../../../../PxShared/src/foundation/include/PsSync.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30054307ffde3005430 /* include/PsTempAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTempAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsTempAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30054987ffde3005498 /* include/PsThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsThread.h"; path = "../../../../PxShared/src/foundation/include/PsThread.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30055007ffde3005500 /* include/PsTime.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTime.h"; path = "../../../../PxShared/src/foundation/include/PsTime.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30055687ffde3005568 /* include/PsUserAllocated.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUserAllocated.h"; path = "../../../../PxShared/src/foundation/include/PsUserAllocated.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30055d07ffde30055d0 /* include/PsUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsUtilities.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30056387ffde3005638 /* include/PsVecMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMath.h"; path = "../../../../PxShared/src/foundation/include/PsVecMath.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30056a07ffde30056a0 /* include/PsVecMathAoSScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalar.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalar.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30057087ffde3005708 /* include/PsVecMathAoSScalarInline.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalarInline.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalarInline.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30057707ffde3005770 /* include/PsVecMathSSE.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathSSE.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathSSE.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30057d87ffde30057d8 /* include/PsVecMathUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathUtilities.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30058407ffde3005840 /* include/PsVecQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecQuat.h"; path = "../../../../PxShared/src/foundation/include/PsVecQuat.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30058a87ffde30058a8 /* include/PsVecTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecTransform.h"; path = "../../../../PxShared/src/foundation/include/PsVecTransform.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30059107ffde3005910 /* include/unix/PsUnixAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixAoS.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30059787ffde3005978 /* include/unix/PsUnixFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixFPU.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixFPU.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30059e07ffde30059e0 /* include/unix/PsUnixInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixInlineAoS.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3005a487ffde3005a48 /* include/unix/PsUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3005ab07ffde3005ab0 /* include/unix/PsUnixTrigConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixTrigConstants.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixTrigConstants.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3005b187ffde3005b18 /* src/PsAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsAllocator.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3005b807ffde3005b80 /* src/PsAssert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAssert.cpp"; path = "../../../../PxShared/src/foundation/src/PsAssert.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3005be87ffde3005be8 /* src/PsFoundation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsFoundation.cpp"; path = "../../../../PxShared/src/foundation/src/PsFoundation.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3005c507ffde3005c50 /* src/PsMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsMathUtils.cpp"; path = "../../../../PxShared/src/foundation/src/PsMathUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3005cb87ffde3005cb8 /* src/PsString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsString.cpp"; path = "../../../../PxShared/src/foundation/src/PsString.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3005d207ffde3005d20 /* src/PsTempAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsTempAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsTempAllocator.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3005d887ffde3005d88 /* src/PsUtilities.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsUtilities.cpp"; path = "../../../../PxShared/src/foundation/src/PsUtilities.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3005df07ffde3005df0 /* src/unix/PsUnixAtomic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixAtomic.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixAtomic.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3005e587ffde3005e58 /* src/unix/PsUnixCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixCpu.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixCpu.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3005ec07ffde3005ec0 /* src/unix/PsUnixFPU.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixFPU.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixFPU.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3005f287ffde3005f28 /* src/unix/PsUnixMutex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixMutex.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixMutex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3005f907ffde3005f90 /* src/unix/PsUnixPrintString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixPrintString.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixPrintString.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3005ff87ffde3005ff8 /* src/unix/PsUnixSList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSList.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSList.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe30060607ffde3006060 /* src/unix/PsUnixSocket.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSocket.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSocket.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe30060c87ffde30060c8 /* src/unix/PsUnixSync.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSync.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSync.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe30061307ffde3006130 /* src/unix/PsUnixThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixThread.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixThread.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe30061987ffde3006198 /* src/unix/PsUnixTime.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixTime.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixTime.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0b8818007fa90b881800 /* PxFoundation */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxFoundation"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD0b1930007fa90b193000 /* Px.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Px.h"; path = "../../../../PxShared/include/foundation/Px.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1930687fa90b193068 /* PxAllocatorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAllocatorCallback.h"; path = "../../../../PxShared/include/foundation/PxAllocatorCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1930d07fa90b1930d0 /* PxAssert.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAssert.h"; path = "../../../../PxShared/include/foundation/PxAssert.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1931387fa90b193138 /* PxBitAndData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBitAndData.h"; path = "../../../../PxShared/include/foundation/PxBitAndData.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1931a07fa90b1931a0 /* PxBounds3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBounds3.h"; path = "../../../../PxShared/include/foundation/PxBounds3.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1932087fa90b193208 /* PxErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrorCallback.h"; path = "../../../../PxShared/include/foundation/PxErrorCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1932707fa90b193270 /* PxErrors.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrors.h"; path = "../../../../PxShared/include/foundation/PxErrors.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1932d87fa90b1932d8 /* PxFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFlags.h"; path = "../../../../PxShared/include/foundation/PxFlags.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1933407fa90b193340 /* PxFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundation.h"; path = "../../../../PxShared/include/foundation/PxFoundation.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1933a87fa90b1933a8 /* PxFoundationVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundationVersion.h"; path = "../../../../PxShared/include/foundation/PxFoundationVersion.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1934107fa90b193410 /* PxIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIO.h"; path = "../../../../PxShared/include/foundation/PxIO.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1934787fa90b193478 /* PxIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIntrinsics.h"; path = "../../../../PxShared/include/foundation/PxIntrinsics.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1934e07fa90b1934e0 /* PxMat33.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat33.h"; path = "../../../../PxShared/include/foundation/PxMat33.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1935487fa90b193548 /* PxMat44.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat44.h"; path = "../../../../PxShared/include/foundation/PxMat44.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1935b07fa90b1935b0 /* PxMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMath.h"; path = "../../../../PxShared/include/foundation/PxMath.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1936187fa90b193618 /* PxMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMathUtils.h"; path = "../../../../PxShared/include/foundation/PxMathUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1936807fa90b193680 /* PxMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMemory.h"; path = "../../../../PxShared/include/foundation/PxMemory.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1936e87fa90b1936e8 /* PxPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPlane.h"; path = "../../../../PxShared/include/foundation/PxPlane.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1937507fa90b193750 /* PxPreprocessor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPreprocessor.h"; path = "../../../../PxShared/include/foundation/PxPreprocessor.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1937b87fa90b1937b8 /* PxProfiler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxProfiler.h"; path = "../../../../PxShared/include/foundation/PxProfiler.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1938207fa90b193820 /* PxQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQuat.h"; path = "../../../../PxShared/include/foundation/PxQuat.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1938887fa90b193888 /* PxSimpleTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleTypes.h"; path = "../../../../PxShared/include/foundation/PxSimpleTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1938f07fa90b1938f0 /* PxStrideIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStrideIterator.h"; path = "../../../../PxShared/include/foundation/PxStrideIterator.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1939587fa90b193958 /* PxTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTransform.h"; path = "../../../../PxShared/include/foundation/PxTransform.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1939c07fa90b1939c0 /* PxUnionCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxUnionCast.h"; path = "../../../../PxShared/include/foundation/PxUnionCast.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b193a287fa90b193a28 /* PxVec2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec2.h"; path = "../../../../PxShared/include/foundation/PxVec2.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b193a907fa90b193a90 /* PxVec3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec3.h"; path = "../../../../PxShared/include/foundation/PxVec3.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b193af87fa90b193af8 /* PxVec4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec4.h"; path = "../../../../PxShared/include/foundation/PxVec4.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b193b607fa90b193b60 /* unix/PxUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "unix/PxUnixIntrinsics.h"; path = "../../../../PxShared/include/foundation/unix/PxUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b19ec007fa90b19ec00 /* include/Ps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/Ps.h"; path = "../../../../PxShared/src/foundation/include/Ps.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b19ec687fa90b19ec68 /* include/PsAlignedMalloc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlignedMalloc.h"; path = "../../../../PxShared/src/foundation/include/PsAlignedMalloc.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b19ecd07fa90b19ecd0 /* include/PsAlloca.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlloca.h"; path = "../../../../PxShared/src/foundation/include/PsAlloca.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b19ed387fa90b19ed38 /* include/PsAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b19eda07fa90b19eda0 /* include/PsAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAoS.h"; path = "../../../../PxShared/src/foundation/include/PsAoS.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b19ee087fa90b19ee08 /* include/PsArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsArray.h"; path = "../../../../PxShared/src/foundation/include/PsArray.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b19ee707fa90b19ee70 /* include/PsAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAtomic.h"; path = "../../../../PxShared/src/foundation/include/PsAtomic.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b19eed87fa90b19eed8 /* include/PsBasicTemplates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBasicTemplates.h"; path = "../../../../PxShared/src/foundation/include/PsBasicTemplates.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b19ef407fa90b19ef40 /* include/PsBitUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBitUtils.h"; path = "../../../../PxShared/src/foundation/include/PsBitUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b19efa87fa90b19efa8 /* include/PsBroadcast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBroadcast.h"; path = "../../../../PxShared/src/foundation/include/PsBroadcast.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b19f0107fa90b19f010 /* include/PsCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsCpu.h"; path = "../../../../PxShared/src/foundation/include/PsCpu.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b19f0787fa90b19f078 /* include/PsFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFPU.h"; path = "../../../../PxShared/src/foundation/include/PsFPU.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b19f0e07fa90b19f0e0 /* include/PsFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFoundation.h"; path = "../../../../PxShared/src/foundation/include/PsFoundation.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b19f1487fa90b19f148 /* include/PsHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHash.h"; path = "../../../../PxShared/src/foundation/include/PsHash.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b19f1b07fa90b19f1b0 /* include/PsHashInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashInternals.h"; path = "../../../../PxShared/src/foundation/include/PsHashInternals.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b19f2187fa90b19f218 /* include/PsHashMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashMap.h"; path = "../../../../PxShared/src/foundation/include/PsHashMap.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b19f2807fa90b19f280 /* include/PsHashSet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashSet.h"; path = "../../../../PxShared/src/foundation/include/PsHashSet.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b19f2e87fa90b19f2e8 /* include/PsInlineAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b19f3507fa90b19f350 /* include/PsInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAoS.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b19f3b87fa90b19f3b8 /* include/PsInlineArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineArray.h"; path = "../../../../PxShared/src/foundation/include/PsInlineArray.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b19f4207fa90b19f420 /* include/PsIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/PsIntrinsics.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b19f4887fa90b19f488 /* include/PsMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMathUtils.h"; path = "../../../../PxShared/src/foundation/include/PsMathUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b19f4f07fa90b19f4f0 /* include/PsMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMutex.h"; path = "../../../../PxShared/src/foundation/include/PsMutex.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b19f5587fa90b19f558 /* include/PsPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPool.h"; path = "../../../../PxShared/src/foundation/include/PsPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b19f5c07fa90b19f5c0 /* include/PsSList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSList.h"; path = "../../../../PxShared/src/foundation/include/PsSList.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b19f6287fa90b19f628 /* include/PsSocket.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSocket.h"; path = "../../../../PxShared/src/foundation/include/PsSocket.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b19f6907fa90b19f690 /* include/PsSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSort.h"; path = "../../../../PxShared/src/foundation/include/PsSort.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b19f6f87fa90b19f6f8 /* include/PsSortInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSortInternals.h"; path = "../../../../PxShared/src/foundation/include/PsSortInternals.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b19f7607fa90b19f760 /* include/PsString.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsString.h"; path = "../../../../PxShared/src/foundation/include/PsString.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b19f7c87fa90b19f7c8 /* include/PsSync.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSync.h"; path = "../../../../PxShared/src/foundation/include/PsSync.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b19f8307fa90b19f830 /* include/PsTempAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTempAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsTempAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b19f8987fa90b19f898 /* include/PsThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsThread.h"; path = "../../../../PxShared/src/foundation/include/PsThread.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b19f9007fa90b19f900 /* include/PsTime.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTime.h"; path = "../../../../PxShared/src/foundation/include/PsTime.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b19f9687fa90b19f968 /* include/PsUserAllocated.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUserAllocated.h"; path = "../../../../PxShared/src/foundation/include/PsUserAllocated.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b19f9d07fa90b19f9d0 /* include/PsUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsUtilities.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b19fa387fa90b19fa38 /* include/PsVecMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMath.h"; path = "../../../../PxShared/src/foundation/include/PsVecMath.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b19faa07fa90b19faa0 /* include/PsVecMathAoSScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalar.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalar.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b19fb087fa90b19fb08 /* include/PsVecMathAoSScalarInline.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalarInline.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalarInline.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b19fb707fa90b19fb70 /* include/PsVecMathSSE.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathSSE.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathSSE.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b19fbd87fa90b19fbd8 /* include/PsVecMathUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathUtilities.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b19fc407fa90b19fc40 /* include/PsVecQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecQuat.h"; path = "../../../../PxShared/src/foundation/include/PsVecQuat.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b19fca87fa90b19fca8 /* include/PsVecTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecTransform.h"; path = "../../../../PxShared/src/foundation/include/PsVecTransform.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b19fd107fa90b19fd10 /* include/unix/PsUnixAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixAoS.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b19fd787fa90b19fd78 /* include/unix/PsUnixFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixFPU.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixFPU.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b19fde07fa90b19fde0 /* include/unix/PsUnixInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixInlineAoS.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b19fe487fa90b19fe48 /* include/unix/PsUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b19feb07fa90b19feb0 /* include/unix/PsUnixTrigConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixTrigConstants.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixTrigConstants.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b19ff187fa90b19ff18 /* src/PsAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsAllocator.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0b19ff807fa90b19ff80 /* src/PsAssert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAssert.cpp"; path = "../../../../PxShared/src/foundation/src/PsAssert.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0b19ffe87fa90b19ffe8 /* src/PsFoundation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsFoundation.cpp"; path = "../../../../PxShared/src/foundation/src/PsFoundation.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0b1a00507fa90b1a0050 /* src/PsMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsMathUtils.cpp"; path = "../../../../PxShared/src/foundation/src/PsMathUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0b1a00b87fa90b1a00b8 /* src/PsString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsString.cpp"; path = "../../../../PxShared/src/foundation/src/PsString.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0b1a01207fa90b1a0120 /* src/PsTempAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsTempAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsTempAllocator.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0b1a01887fa90b1a0188 /* src/PsUtilities.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsUtilities.cpp"; path = "../../../../PxShared/src/foundation/src/PsUtilities.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0b1a01f07fa90b1a01f0 /* src/unix/PsUnixAtomic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixAtomic.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixAtomic.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0b1a02587fa90b1a0258 /* src/unix/PsUnixCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixCpu.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixCpu.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0b1a02c07fa90b1a02c0 /* src/unix/PsUnixFPU.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixFPU.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixFPU.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0b1a03287fa90b1a0328 /* src/unix/PsUnixMutex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixMutex.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixMutex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0b1a03907fa90b1a0390 /* src/unix/PsUnixPrintString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixPrintString.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixPrintString.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0b1a03f87fa90b1a03f8 /* src/unix/PsUnixSList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSList.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSList.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0b1a04607fa90b1a0460 /* src/unix/PsUnixSocket.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSocket.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSocket.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0b1a04c87fa90b1a04c8 /* src/unix/PsUnixSync.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSync.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSync.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0b1a05307fa90b1a0530 /* src/unix/PsUnixThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixThread.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixThread.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0b1a05987fa90b1a0598 /* 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 */ - FFF2e2c0b7d07ffde2c0b7d0 /* Resources */ = { + FFF20b8818007fa90b881800 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2123,7 +2123,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCe2c0b7d07ffde2c0b7d0 /* Frameworks */ = { + FFFC0b8818007fa90b881800 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2133,27 +2133,27 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8e2c0b7d07ffde2c0b7d0 /* Sources */ = { + FFF80b8818007fa90b881800 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFe3005b187ffde3005b18, - FFFFe3005b807ffde3005b80, - FFFFe3005be87ffde3005be8, - FFFFe3005c507ffde3005c50, - FFFFe3005cb87ffde3005cb8, - FFFFe3005d207ffde3005d20, - FFFFe3005d887ffde3005d88, - FFFFe3005df07ffde3005df0, - FFFFe3005e587ffde3005e58, - FFFFe3005ec07ffde3005ec0, - FFFFe3005f287ffde3005f28, - FFFFe3005f907ffde3005f90, - FFFFe3005ff87ffde3005ff8, - FFFFe30060607ffde3006060, - FFFFe30060c87ffde30060c8, - FFFFe30061307ffde3006130, - FFFFe30061987ffde3006198, + FFFF0b19ff187fa90b19ff18, + FFFF0b19ff807fa90b19ff80, + FFFF0b19ffe87fa90b19ffe8, + FFFF0b1a00507fa90b1a0050, + FFFF0b1a00b87fa90b1a00b8, + FFFF0b1a01207fa90b1a0120, + FFFF0b1a01887fa90b1a0188, + FFFF0b1a01f07fa90b1a01f0, + FFFF0b1a02587fa90b1a0258, + FFFF0b1a02c07fa90b1a02c0, + FFFF0b1a03287fa90b1a0328, + FFFF0b1a03907fa90b1a0390, + FFFF0b1a03f87fa90b1a03f8, + FFFF0b1a04607fa90b1a0460, + FFFF0b1a04c87fa90b1a04c8, + FFFF0b1a05307fa90b1a0530, + FFFF0b1a05987fa90b1a0598, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2165,103 +2165,103 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PxPvdSDK */ - FFFFe217b1a87ffde217b1a8 /* src/PxProfileEventImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe217b1a87ffde217b1a8 /* src/PxProfileEventImpl.cpp */; }; - FFFFe217b2107ffde217b210 /* src/PxPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe217b2107ffde217b210 /* src/PxPvd.cpp */; }; - FFFFe217b2787ffde217b278 /* src/PxPvdDataStream.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe217b2787ffde217b278 /* src/PxPvdDataStream.cpp */; }; - FFFFe217b2e07ffde217b2e0 /* src/PxPvdDefaultFileTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe217b2e07ffde217b2e0 /* src/PxPvdDefaultFileTransport.cpp */; }; - FFFFe217b3487ffde217b348 /* src/PxPvdDefaultSocketTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe217b3487ffde217b348 /* src/PxPvdDefaultSocketTransport.cpp */; }; - FFFFe217b3b07ffde217b3b0 /* src/PxPvdImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe217b3b07ffde217b3b0 /* src/PxPvdImpl.cpp */; }; - FFFFe217b4187ffde217b418 /* src/PxPvdMemClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe217b4187ffde217b418 /* src/PxPvdMemClient.cpp */; }; - FFFFe217b4807ffde217b480 /* src/PxPvdObjectModelMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe217b4807ffde217b480 /* src/PxPvdObjectModelMetaData.cpp */; }; - FFFFe217b4e87ffde217b4e8 /* src/PxPvdObjectRegistrar.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe217b4e87ffde217b4e8 /* src/PxPvdObjectRegistrar.cpp */; }; - FFFFe217b5507ffde217b550 /* src/PxPvdProfileZoneClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe217b5507ffde217b550 /* src/PxPvdProfileZoneClient.cpp */; }; - FFFFe217b5b87ffde217b5b8 /* src/PxPvdUserRenderer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe217b5b87ffde217b5b8 /* src/PxPvdUserRenderer.cpp */; }; + FFFF0c0227a87fa90c0227a8 /* src/PxProfileEventImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0227a87fa90c0227a8 /* src/PxProfileEventImpl.cpp */; }; + FFFF0c0228107fa90c022810 /* src/PxPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0228107fa90c022810 /* src/PxPvd.cpp */; }; + FFFF0c0228787fa90c022878 /* src/PxPvdDataStream.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0228787fa90c022878 /* src/PxPvdDataStream.cpp */; }; + FFFF0c0228e07fa90c0228e0 /* src/PxPvdDefaultFileTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0228e07fa90c0228e0 /* src/PxPvdDefaultFileTransport.cpp */; }; + FFFF0c0229487fa90c022948 /* src/PxPvdDefaultSocketTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0229487fa90c022948 /* src/PxPvdDefaultSocketTransport.cpp */; }; + FFFF0c0229b07fa90c0229b0 /* src/PxPvdImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0229b07fa90c0229b0 /* src/PxPvdImpl.cpp */; }; + FFFF0c022a187fa90c022a18 /* src/PxPvdMemClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c022a187fa90c022a18 /* src/PxPvdMemClient.cpp */; }; + FFFF0c022a807fa90c022a80 /* src/PxPvdObjectModelMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c022a807fa90c022a80 /* src/PxPvdObjectModelMetaData.cpp */; }; + FFFF0c022ae87fa90c022ae8 /* src/PxPvdObjectRegistrar.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c022ae87fa90c022ae8 /* src/PxPvdObjectRegistrar.cpp */; }; + FFFF0c022b507fa90c022b50 /* src/PxPvdProfileZoneClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c022b507fa90c022b50 /* src/PxPvdProfileZoneClient.cpp */; }; + FFFF0c022bb87fa90c022bb8 /* src/PxPvdUserRenderer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c022bb87fa90c022bb8 /* src/PxPvdUserRenderer.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDe29691807ffde2969180 /* PxPvdSDK */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxPvdSDK"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDe2915fb07ffde2915fb0 /* PxPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvd.h"; path = "../../../../PxShared/include/pvd/PxPvd.h"; sourceTree = SOURCE_ROOT; }; - FFFDe29160187ffde2916018 /* PxPvdTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvdTransport.h"; path = "../../../../PxShared/include/pvd/PxPvdTransport.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217ae007ffde217ae00 /* include/PsPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPvd.h"; path = "../../../../PxShared/src/pvd/include/PsPvd.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217ae687ffde217ae68 /* include/PxProfileAllocatorWrapper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxProfileAllocatorWrapper.h"; path = "../../../../PxShared/src/pvd/include/PxProfileAllocatorWrapper.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217aed07ffde217aed0 /* include/PxPvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdClient.h"; path = "../../../../PxShared/src/pvd/include/PxPvdClient.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217af387ffde217af38 /* include/PxPvdDataStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStream.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStream.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217afa07ffde217afa0 /* include/PxPvdDataStreamHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStreamHelpers.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStreamHelpers.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217b0087ffde217b008 /* include/PxPvdErrorCodes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdErrorCodes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdErrorCodes.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217b0707ffde217b070 /* include/PxPvdObjectModelBaseTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdObjectModelBaseTypes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdObjectModelBaseTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217b0d87ffde217b0d8 /* include/PxPvdRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdRenderBuffer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217b1407ffde217b140 /* include/PxPvdUserRenderer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdUserRenderer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdUserRenderer.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217b1a87ffde217b1a8 /* src/PxProfileEventImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxProfileEventImpl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe217b2107ffde217b210 /* src/PxPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvd.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvd.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe217b2787ffde217b278 /* src/PxPvdDataStream.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDataStream.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDataStream.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe217b2e07ffde217b2e0 /* src/PxPvdDefaultFileTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe217b3487ffde217b348 /* src/PxPvdDefaultSocketTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe217b3b07ffde217b3b0 /* src/PxPvdImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe217b4187ffde217b418 /* src/PxPvdMemClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe217b4807ffde217b480 /* src/PxPvdObjectModelMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe217b4e87ffde217b4e8 /* src/PxPvdObjectRegistrar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe217b5507ffde217b550 /* src/PxPvdProfileZoneClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe217b5b87ffde217b5b8 /* src/PxPvdUserRenderer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderer.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderer.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe217b6207ffde217b620 /* src/PxProfileBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileBase.h"; path = "../../../../PxShared/src/pvd/src/PxProfileBase.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217b6887ffde217b688 /* src/PxProfileCompileTimeEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileCompileTimeEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileCompileTimeEventFilter.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217b6f07ffde217b6f0 /* src/PxProfileContextProvider.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProvider.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProvider.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217b7587ffde217b758 /* src/PxProfileContextProviderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProviderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProviderImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217b7c07ffde217b7c0 /* src/PxProfileDataBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217b8287ffde217b828 /* src/PxProfileDataParsing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataParsing.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataParsing.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217b8907ffde217b890 /* src/PxProfileEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217b8f87ffde217b8f8 /* src/PxProfileEventBufferAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferAtomic.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferAtomic.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217b9607ffde217b960 /* src/PxProfileEventBufferClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClient.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClient.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217b9c87ffde217b9c8 /* src/PxProfileEventBufferClientManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClientManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClientManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217ba307ffde217ba30 /* src/PxProfileEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventFilter.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217ba987ffde217ba98 /* src/PxProfileEventHandler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventHandler.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventHandler.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217bb007ffde217bb00 /* src/PxProfileEventId.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventId.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventId.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217bb687ffde217bb68 /* src/PxProfileEventMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventMutex.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventMutex.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217bbd07ffde217bbd0 /* src/PxProfileEventNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventNames.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventNames.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217bc387ffde217bc38 /* src/PxProfileEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventParser.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217bca07ffde217bca0 /* src/PxProfileEventSender.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSender.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSender.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217bd087ffde217bd08 /* src/PxProfileEventSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSerialization.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSerialization.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217bd707ffde217bd70 /* src/PxProfileEventSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSystem.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSystem.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217bdd87ffde217bdd8 /* src/PxProfileEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEvents.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217be407ffde217be40 /* src/PxProfileMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemory.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemory.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217bea87ffde217bea8 /* src/PxProfileMemoryBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217bf107ffde217bf10 /* src/PxProfileMemoryEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217bf787ffde217bf78 /* src/PxProfileMemoryEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventParser.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217bfe07ffde217bfe0 /* src/PxProfileMemoryEventRecorder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventRecorder.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventRecorder.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217c0487ffde217c048 /* src/PxProfileMemoryEventReflexiveWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventReflexiveWriter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventReflexiveWriter.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217c0b07ffde217c0b0 /* src/PxProfileMemoryEventSummarizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventSummarizer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventSummarizer.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217c1187ffde217c118 /* src/PxProfileMemoryEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217c1807ffde217c180 /* src/PxProfileMemoryEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEvents.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217c1e87ffde217c1e8 /* src/PxProfileScopedEvent.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedEvent.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedEvent.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217c2507ffde217c250 /* src/PxProfileScopedMutexLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedMutexLock.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedMutexLock.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217c2b87ffde217c2b8 /* src/PxProfileZone.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZone.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZone.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217c3207ffde217c320 /* src/PxProfileZoneImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217c3887ffde217c388 /* src/PxProfileZoneManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217c3f07ffde217c3f0 /* src/PxProfileZoneManagerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManagerImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManagerImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217c4587ffde217c458 /* src/PxPvdBits.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdBits.h"; path = "../../../../PxShared/src/pvd/src/PxPvdBits.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217c4c07ffde217c4c0 /* src/PxPvdByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdByteStreams.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217c5287ffde217c528 /* src/PxPvdCommStreamEventSink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEventSink.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEventSink.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217c5907ffde217c590 /* src/PxPvdCommStreamEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEvents.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEvents.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217c5f87ffde217c5f8 /* src/PxPvdCommStreamSDKEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamSDKEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamSDKEventTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217c6607ffde217c660 /* src/PxPvdCommStreamTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217c6c87ffde217c6c8 /* src/PxPvdDefaultFileTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217c7307ffde217c730 /* src/PxPvdDefaultSocketTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217c7987ffde217c798 /* src/PxPvdFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdFoundation.h"; path = "../../../../PxShared/src/pvd/src/PxPvdFoundation.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217c8007ffde217c800 /* src/PxPvdImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217c8687ffde217c868 /* src/PxPvdInternalByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdInternalByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdInternalByteStreams.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217c8d07ffde217c8d0 /* src/PxPvdMarshalling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMarshalling.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMarshalling.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217c9387ffde217c938 /* src/PxPvdMemClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217c9a07ffde217c9a0 /* src/PxPvdObjectModel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModel.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModel.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217ca087ffde217ca08 /* src/PxPvdObjectModelInternalTypeDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypeDefs.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypeDefs.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217ca707ffde217ca70 /* src/PxPvdObjectModelInternalTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217cad87ffde217cad8 /* src/PxPvdObjectModelMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217cb407ffde217cb40 /* src/PxPvdObjectRegistrar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217cba87ffde217cba8 /* src/PxPvdProfileZoneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217cc107ffde217cc10 /* src/PxPvdUserRenderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFDe217cc787ffde217cc78 /* src/PxPvdUserRenderTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD0bc33a807fa90bc33a80 /* PxPvdSDK */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxPvdSDK"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD0bc367207fa90bc36720 /* PxPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvd.h"; path = "../../../../PxShared/include/pvd/PxPvd.h"; sourceTree = SOURCE_ROOT; }; + FFFD0bc367887fa90bc36788 /* PxPvdTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvdTransport.h"; path = "../../../../PxShared/include/pvd/PxPvdTransport.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0224007fa90c022400 /* include/PsPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPvd.h"; path = "../../../../PxShared/src/pvd/include/PsPvd.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0224687fa90c022468 /* include/PxProfileAllocatorWrapper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxProfileAllocatorWrapper.h"; path = "../../../../PxShared/src/pvd/include/PxProfileAllocatorWrapper.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0224d07fa90c0224d0 /* include/PxPvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdClient.h"; path = "../../../../PxShared/src/pvd/include/PxPvdClient.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0225387fa90c022538 /* include/PxPvdDataStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStream.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStream.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0225a07fa90c0225a0 /* include/PxPvdDataStreamHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStreamHelpers.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStreamHelpers.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0226087fa90c022608 /* include/PxPvdErrorCodes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdErrorCodes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdErrorCodes.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0226707fa90c022670 /* include/PxPvdObjectModelBaseTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdObjectModelBaseTypes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdObjectModelBaseTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0226d87fa90c0226d8 /* include/PxPvdRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdRenderBuffer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0227407fa90c022740 /* include/PxPvdUserRenderer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdUserRenderer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdUserRenderer.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0227a87fa90c0227a8 /* src/PxProfileEventImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxProfileEventImpl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0228107fa90c022810 /* src/PxPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvd.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvd.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0228787fa90c022878 /* src/PxPvdDataStream.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDataStream.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDataStream.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0228e07fa90c0228e0 /* src/PxPvdDefaultFileTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0229487fa90c022948 /* src/PxPvdDefaultSocketTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0229b07fa90c0229b0 /* src/PxPvdImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c022a187fa90c022a18 /* src/PxPvdMemClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c022a807fa90c022a80 /* src/PxPvdObjectModelMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c022ae87fa90c022ae8 /* src/PxPvdObjectRegistrar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c022b507fa90c022b50 /* src/PxPvdProfileZoneClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c022bb87fa90c022bb8 /* src/PxPvdUserRenderer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderer.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderer.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c022c207fa90c022c20 /* src/PxProfileBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileBase.h"; path = "../../../../PxShared/src/pvd/src/PxProfileBase.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c022c887fa90c022c88 /* src/PxProfileCompileTimeEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileCompileTimeEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileCompileTimeEventFilter.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c022cf07fa90c022cf0 /* src/PxProfileContextProvider.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProvider.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProvider.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c022d587fa90c022d58 /* src/PxProfileContextProviderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProviderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProviderImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c022dc07fa90c022dc0 /* src/PxProfileDataBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c022e287fa90c022e28 /* src/PxProfileDataParsing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataParsing.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataParsing.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c022e907fa90c022e90 /* src/PxProfileEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c022ef87fa90c022ef8 /* src/PxProfileEventBufferAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferAtomic.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferAtomic.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c022f607fa90c022f60 /* src/PxProfileEventBufferClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClient.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClient.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c022fc87fa90c022fc8 /* src/PxProfileEventBufferClientManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClientManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClientManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0230307fa90c023030 /* src/PxProfileEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventFilter.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0230987fa90c023098 /* src/PxProfileEventHandler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventHandler.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventHandler.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0231007fa90c023100 /* src/PxProfileEventId.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventId.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventId.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0231687fa90c023168 /* src/PxProfileEventMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventMutex.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventMutex.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0231d07fa90c0231d0 /* src/PxProfileEventNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventNames.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventNames.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0232387fa90c023238 /* src/PxProfileEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventParser.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0232a07fa90c0232a0 /* src/PxProfileEventSender.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSender.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSender.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0233087fa90c023308 /* src/PxProfileEventSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSerialization.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSerialization.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0233707fa90c023370 /* src/PxProfileEventSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSystem.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSystem.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0233d87fa90c0233d8 /* src/PxProfileEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEvents.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0234407fa90c023440 /* src/PxProfileMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemory.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemory.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0234a87fa90c0234a8 /* src/PxProfileMemoryBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0235107fa90c023510 /* src/PxProfileMemoryEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0235787fa90c023578 /* src/PxProfileMemoryEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventParser.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0235e07fa90c0235e0 /* src/PxProfileMemoryEventRecorder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventRecorder.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventRecorder.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0236487fa90c023648 /* src/PxProfileMemoryEventReflexiveWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventReflexiveWriter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventReflexiveWriter.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0236b07fa90c0236b0 /* src/PxProfileMemoryEventSummarizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventSummarizer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventSummarizer.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0237187fa90c023718 /* src/PxProfileMemoryEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0237807fa90c023780 /* src/PxProfileMemoryEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEvents.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0237e87fa90c0237e8 /* src/PxProfileScopedEvent.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedEvent.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedEvent.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0238507fa90c023850 /* src/PxProfileScopedMutexLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedMutexLock.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedMutexLock.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0238b87fa90c0238b8 /* src/PxProfileZone.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZone.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZone.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0239207fa90c023920 /* src/PxProfileZoneImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0239887fa90c023988 /* src/PxProfileZoneManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0239f07fa90c0239f0 /* src/PxProfileZoneManagerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManagerImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManagerImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c023a587fa90c023a58 /* src/PxPvdBits.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdBits.h"; path = "../../../../PxShared/src/pvd/src/PxPvdBits.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c023ac07fa90c023ac0 /* src/PxPvdByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdByteStreams.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c023b287fa90c023b28 /* src/PxPvdCommStreamEventSink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEventSink.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEventSink.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c023b907fa90c023b90 /* src/PxPvdCommStreamEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEvents.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEvents.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c023bf87fa90c023bf8 /* src/PxPvdCommStreamSDKEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamSDKEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamSDKEventTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c023c607fa90c023c60 /* src/PxPvdCommStreamTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c023cc87fa90c023cc8 /* src/PxPvdDefaultFileTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c023d307fa90c023d30 /* src/PxPvdDefaultSocketTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c023d987fa90c023d98 /* src/PxPvdFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdFoundation.h"; path = "../../../../PxShared/src/pvd/src/PxPvdFoundation.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c023e007fa90c023e00 /* src/PxPvdImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c023e687fa90c023e68 /* src/PxPvdInternalByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdInternalByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdInternalByteStreams.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c023ed07fa90c023ed0 /* src/PxPvdMarshalling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMarshalling.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMarshalling.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c023f387fa90c023f38 /* src/PxPvdMemClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c023fa07fa90c023fa0 /* src/PxPvdObjectModel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModel.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModel.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0240087fa90c024008 /* src/PxPvdObjectModelInternalTypeDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypeDefs.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypeDefs.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0240707fa90c024070 /* src/PxPvdObjectModelInternalTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0240d87fa90c0240d8 /* src/PxPvdObjectModelMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0241407fa90c024140 /* src/PxPvdObjectRegistrar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0241a87fa90c0241a8 /* src/PxPvdProfileZoneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0242107fa90c024210 /* src/PxPvdUserRenderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0242787fa90c024278 /* 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 */ - FFF2e29691807ffde2969180 /* Resources */ = { + FFF20bc33a807fa90bc33a80 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2271,7 +2271,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCe29691807ffde2969180 /* Frameworks */ = { + FFFC0bc33a807fa90bc33a80 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2281,21 +2281,21 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8e29691807ffde2969180 /* Sources */ = { + FFF80bc33a807fa90bc33a80 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFe217b1a87ffde217b1a8, - FFFFe217b2107ffde217b210, - FFFFe217b2787ffde217b278, - FFFFe217b2e07ffde217b2e0, - FFFFe217b3487ffde217b348, - FFFFe217b3b07ffde217b3b0, - FFFFe217b4187ffde217b418, - FFFFe217b4807ffde217b480, - FFFFe217b4e87ffde217b4e8, - FFFFe217b5507ffde217b550, - FFFFe217b5b87ffde217b5b8, + FFFF0c0227a87fa90c0227a8, + FFFF0c0228107fa90c022810, + FFFF0c0228787fa90c022878, + FFFF0c0228e07fa90c0228e0, + FFFF0c0229487fa90c022948, + FFFF0c0229b07fa90c0229b0, + FFFF0c022a187fa90c022a18, + FFFF0c022a807fa90c022a80, + FFFF0c022ae87fa90c022ae8, + FFFF0c022b507fa90c022b50, + FFFF0c022bb87fa90c022bb8, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2304,108 +2304,108 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF4e29150b07ffde29150b0 /* PBXTargetDependency */ = { + FFF40bc357f07fa90bc357f0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAe2c0b7d07ffde2c0b7d0 /* PxFoundation */; - targetProxy = FFF5e2c0b7d07ffde2c0b7d0 /* PBXContainerItemProxy */; + target = FFFA0b8818007fa90b881800 /* PxFoundation */; + targetProxy = FFF50b8818007fa90b881800 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of LowLevel */ - FFFFe2f26aa07ffde2f26aa0 /* px_globals.cpp in API Source */= { isa = PBXBuildFile; fileRef = FFFDe2f26aa07ffde2f26aa0 /* px_globals.cpp */; }; - FFFFe2f2c1007ffde2f2c100 /* PxsCCD.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDe2f2c1007ffde2f2c100 /* PxsCCD.cpp */; }; - FFFFe2f2c1687ffde2f2c168 /* PxsContactManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDe2f2c1687ffde2f2c168 /* PxsContactManager.cpp */; }; - FFFFe2f2c1d07ffde2f2c1d0 /* PxsContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDe2f2c1d07ffde2f2c1d0 /* PxsContext.cpp */; }; - FFFFe2f2c2387ffde2f2c238 /* PxsDefaultMemoryManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDe2f2c2387ffde2f2c238 /* PxsDefaultMemoryManager.cpp */; }; - FFFFe2f2c2a07ffde2f2c2a0 /* PxsIslandSim.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDe2f2c2a07ffde2f2c2a0 /* PxsIslandSim.cpp */; }; - FFFFe2f2c3087ffde2f2c308 /* PxsMaterialCombiner.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDe2f2c3087ffde2f2c308 /* PxsMaterialCombiner.cpp */; }; - FFFFe2f2c3707ffde2f2c370 /* PxsNphaseImplementationContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDe2f2c3707ffde2f2c370 /* PxsNphaseImplementationContext.cpp */; }; - FFFFe2f2c3d87ffde2f2c3d8 /* PxsSimpleIslandManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDe2f2c3d87ffde2f2c3d8 /* PxsSimpleIslandManager.cpp */; }; - FFFFe3045e007ffde3045e00 /* collision/PxcContact.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDe3045e007ffde3045e00 /* collision/PxcContact.cpp */; }; - FFFFe3045e687ffde3045e68 /* pipeline/PxcContactCache.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDe3045e687ffde3045e68 /* pipeline/PxcContactCache.cpp */; }; - FFFFe3045ed07ffde3045ed0 /* pipeline/PxcContactMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDe3045ed07ffde3045ed0 /* pipeline/PxcContactMethodImpl.cpp */; }; - FFFFe3045f387ffde3045f38 /* pipeline/PxcMaterialHeightField.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDe3045f387ffde3045f38 /* pipeline/PxcMaterialHeightField.cpp */; }; - FFFFe3045fa07ffde3045fa0 /* pipeline/PxcMaterialMesh.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDe3045fa07ffde3045fa0 /* pipeline/PxcMaterialMesh.cpp */; }; - FFFFe30460087ffde3046008 /* pipeline/PxcMaterialMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDe30460087ffde3046008 /* pipeline/PxcMaterialMethodImpl.cpp */; }; - FFFFe30460707ffde3046070 /* pipeline/PxcMaterialShape.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDe30460707ffde3046070 /* pipeline/PxcMaterialShape.cpp */; }; - FFFFe30460d87ffde30460d8 /* pipeline/PxcNpBatch.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDe30460d87ffde30460d8 /* pipeline/PxcNpBatch.cpp */; }; - FFFFe30461407ffde3046140 /* pipeline/PxcNpCacheStreamPair.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDe30461407ffde3046140 /* pipeline/PxcNpCacheStreamPair.cpp */; }; - FFFFe30461a87ffde30461a8 /* pipeline/PxcNpContactPrepShared.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDe30461a87ffde30461a8 /* pipeline/PxcNpContactPrepShared.cpp */; }; - FFFFe30462107ffde3046210 /* pipeline/PxcNpMemBlockPool.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDe30462107ffde3046210 /* pipeline/PxcNpMemBlockPool.cpp */; }; - FFFFe30462787ffde3046278 /* pipeline/PxcNpThreadContext.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDe30462787ffde3046278 /* pipeline/PxcNpThreadContext.cpp */; }; + FFFF0bc529d07fa90bc529d0 /* px_globals.cpp in API Source */= { isa = PBXBuildFile; fileRef = FFFD0bc529d07fa90bc529d0 /* px_globals.cpp */; }; + FFFF0bc57ff07fa90bc57ff0 /* PxsCCD.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD0bc57ff07fa90bc57ff0 /* PxsCCD.cpp */; }; + FFFF0bc580587fa90bc58058 /* PxsContactManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD0bc580587fa90bc58058 /* PxsContactManager.cpp */; }; + FFFF0bc580c07fa90bc580c0 /* PxsContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD0bc580c07fa90bc580c0 /* PxsContext.cpp */; }; + FFFF0bc581287fa90bc58128 /* PxsDefaultMemoryManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD0bc581287fa90bc58128 /* PxsDefaultMemoryManager.cpp */; }; + FFFF0bc581907fa90bc58190 /* PxsIslandSim.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD0bc581907fa90bc58190 /* PxsIslandSim.cpp */; }; + FFFF0bc581f87fa90bc581f8 /* PxsMaterialCombiner.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD0bc581f87fa90bc581f8 /* PxsMaterialCombiner.cpp */; }; + FFFF0bc582607fa90bc58260 /* PxsNphaseImplementationContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD0bc582607fa90bc58260 /* PxsNphaseImplementationContext.cpp */; }; + FFFF0bc582c87fa90bc582c8 /* PxsSimpleIslandManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD0bc582c87fa90bc582c8 /* PxsSimpleIslandManager.cpp */; }; + FFFF0c0294007fa90c029400 /* collision/PxcContact.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD0c0294007fa90c029400 /* collision/PxcContact.cpp */; }; + FFFF0c0294687fa90c029468 /* pipeline/PxcContactCache.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD0c0294687fa90c029468 /* pipeline/PxcContactCache.cpp */; }; + FFFF0c0294d07fa90c0294d0 /* pipeline/PxcContactMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD0c0294d07fa90c0294d0 /* pipeline/PxcContactMethodImpl.cpp */; }; + FFFF0c0295387fa90c029538 /* pipeline/PxcMaterialHeightField.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD0c0295387fa90c029538 /* pipeline/PxcMaterialHeightField.cpp */; }; + FFFF0c0295a07fa90c0295a0 /* pipeline/PxcMaterialMesh.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD0c0295a07fa90c0295a0 /* pipeline/PxcMaterialMesh.cpp */; }; + FFFF0c0296087fa90c029608 /* pipeline/PxcMaterialMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD0c0296087fa90c029608 /* pipeline/PxcMaterialMethodImpl.cpp */; }; + FFFF0c0296707fa90c029670 /* pipeline/PxcMaterialShape.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD0c0296707fa90c029670 /* pipeline/PxcMaterialShape.cpp */; }; + FFFF0c0296d87fa90c0296d8 /* pipeline/PxcNpBatch.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD0c0296d87fa90c0296d8 /* pipeline/PxcNpBatch.cpp */; }; + FFFF0c0297407fa90c029740 /* pipeline/PxcNpCacheStreamPair.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD0c0297407fa90c029740 /* pipeline/PxcNpCacheStreamPair.cpp */; }; + FFFF0c0297a87fa90c0297a8 /* pipeline/PxcNpContactPrepShared.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD0c0297a87fa90c0297a8 /* pipeline/PxcNpContactPrepShared.cpp */; }; + FFFF0c0298107fa90c029810 /* pipeline/PxcNpMemBlockPool.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD0c0298107fa90c029810 /* pipeline/PxcNpMemBlockPool.cpp */; }; + FFFF0c0298787fa90c029878 /* pipeline/PxcNpThreadContext.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD0c0298787fa90c029878 /* pipeline/PxcNpThreadContext.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDe2f1a6b07ffde2f1a6b0 /* LowLevel */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevel"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDe2f26aa07ffde2f26aa0 /* px_globals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "px_globals.cpp"; path = "../../LowLevel/API/src/px_globals.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe2f2af807ffde2f2af80 /* PxsMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCore.h"; path = "../../LowLevel/API/include/PxsMaterialCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2f2afe87ffde2f2afe8 /* PxsMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialManager.h"; path = "../../LowLevel/API/include/PxsMaterialManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2f2b0507ffde2f2b050 /* PxvConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvConfig.h"; path = "../../LowLevel/API/include/PxvConfig.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2f2b0b87ffde2f2b0b8 /* PxvContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvContext.h"; path = "../../LowLevel/API/include/PxvContext.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2f2b1207ffde2f2b120 /* PxvDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvDynamics.h"; path = "../../LowLevel/API/include/PxvDynamics.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2f2b1887ffde2f2b188 /* PxvGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGeometry.h"; path = "../../LowLevel/API/include/PxvGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2f2b1f07ffde2f2b1f0 /* PxvGlobals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGlobals.h"; path = "../../LowLevel/API/include/PxvGlobals.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2f2b2587ffde2f2b258 /* PxvManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvManager.h"; path = "../../LowLevel/API/include/PxvManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2f2b2c07ffde2f2b2c0 /* PxvSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvSimStats.h"; path = "../../LowLevel/API/include/PxvSimStats.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2f2c1007ffde2f2c100 /* PxsCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.cpp"; path = "../../LowLevel/software/src/PxsCCD.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe2f2c1687ffde2f2c168 /* PxsContactManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.cpp"; path = "../../LowLevel/software/src/PxsContactManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe2f2c1d07ffde2f2c1d0 /* PxsContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.cpp"; path = "../../LowLevel/software/src/PxsContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe2f2c2387ffde2f2c238 /* PxsDefaultMemoryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.cpp"; path = "../../LowLevel/software/src/PxsDefaultMemoryManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe2f2c2a07ffde2f2c2a0 /* PxsIslandSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.cpp"; path = "../../LowLevel/software/src/PxsIslandSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe2f2c3087ffde2f2c308 /* PxsMaterialCombiner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.cpp"; path = "../../LowLevel/software/src/PxsMaterialCombiner.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe2f2c3707ffde2f2c370 /* PxsNphaseImplementationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.cpp"; path = "../../LowLevel/software/src/PxsNphaseImplementationContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe2f2c3d87ffde2f2c3d8 /* PxsSimpleIslandManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.cpp"; path = "../../LowLevel/software/src/PxsSimpleIslandManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe30454007ffde3045400 /* PxsBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsBodySim.h"; path = "../../LowLevel/software/include/PxsBodySim.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30454687ffde3045468 /* PxsCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.h"; path = "../../LowLevel/software/include/PxsCCD.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30454d07ffde30454d0 /* PxsContactManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.h"; path = "../../LowLevel/software/include/PxsContactManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30455387ffde3045538 /* PxsContactManagerState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManagerState.h"; path = "../../LowLevel/software/include/PxsContactManagerState.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30455a07ffde30455a0 /* PxsContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.h"; path = "../../LowLevel/software/include/PxsContext.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30456087ffde3045608 /* PxsDefaultMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.h"; path = "../../LowLevel/software/include/PxsDefaultMemoryManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30456707ffde3045670 /* PxsHeapMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsHeapMemoryAllocator.h"; path = "../../LowLevel/software/include/PxsHeapMemoryAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30456d87ffde30456d8 /* PxsIncrementalConstraintPartitioning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIncrementalConstraintPartitioning.h"; path = "../../LowLevel/software/include/PxsIncrementalConstraintPartitioning.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30457407ffde3045740 /* PxsIslandManagerTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandManagerTypes.h"; path = "../../LowLevel/software/include/PxsIslandManagerTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30457a87ffde30457a8 /* PxsIslandSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.h"; path = "../../LowLevel/software/include/PxsIslandSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30458107ffde3045810 /* PxsKernelWrangler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsKernelWrangler.h"; path = "../../LowLevel/software/include/PxsKernelWrangler.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30458787ffde3045878 /* PxsMaterialCombiner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.h"; path = "../../LowLevel/software/include/PxsMaterialCombiner.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30458e07ffde30458e0 /* PxsMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMemoryManager.h"; path = "../../LowLevel/software/include/PxsMemoryManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30459487ffde3045948 /* PxsNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxsNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; }; - FFFDe30459b07ffde30459b0 /* PxsRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsRigidBody.h"; path = "../../LowLevel/software/include/PxsRigidBody.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3045a187ffde3045a18 /* PxsShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsShapeSim.h"; path = "../../LowLevel/software/include/PxsShapeSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3045a807ffde3045a80 /* PxsSimpleIslandManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.h"; path = "../../LowLevel/software/include/PxsSimpleIslandManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3045ae87ffde3045ae8 /* PxsSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimulationController.h"; path = "../../LowLevel/software/include/PxsSimulationController.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3045b507ffde3045b50 /* PxsTransformCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsTransformCache.h"; path = "../../LowLevel/software/include/PxsTransformCache.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3045bb87ffde3045bb8 /* PxvNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxvNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3045e007ffde3045e00 /* collision/PxcContact.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContact.cpp"; path = "../../LowLevel/common/src/collision/PxcContact.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3045e687ffde3045e68 /* pipeline/PxcContactCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactCache.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3045ed07ffde3045ed0 /* pipeline/PxcContactMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactMethodImpl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3045f387ffde3045f38 /* pipeline/PxcMaterialHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialHeightField.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3045fa07ffde3045fa0 /* pipeline/PxcMaterialMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMesh.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe30460087ffde3046008 /* pipeline/PxcMaterialMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMethodImpl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe30460707ffde3046070 /* pipeline/PxcMaterialShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialShape.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialShape.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe30460d87ffde30460d8 /* pipeline/PxcNpBatch.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpBatch.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe30461407ffde3046140 /* pipeline/PxcNpCacheStreamPair.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpCacheStreamPair.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe30461a87ffde30461a8 /* pipeline/PxcNpContactPrepShared.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpContactPrepShared.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe30462107ffde3046210 /* pipeline/PxcNpMemBlockPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpMemBlockPool.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe30462787ffde3046278 /* pipeline/PxcNpThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpThreadContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe304d2007ffde304d200 /* collision/PxcContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContactMethodImpl.h"; path = "../../LowLevel/common/include/collision/PxcContactMethodImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFDe304d2687ffde304d268 /* pipeline/PxcCCDStateStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcCCDStateStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcCCDStateStreamPair.h"; sourceTree = SOURCE_ROOT; }; - FFFDe304d2d07ffde304d2d0 /* pipeline/PxcConstraintBlockStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcConstraintBlockStream.h"; path = "../../LowLevel/common/include/pipeline/PxcConstraintBlockStream.h"; sourceTree = SOURCE_ROOT; }; - FFFDe304d3387ffde304d338 /* pipeline/PxcContactCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.h"; path = "../../LowLevel/common/include/pipeline/PxcContactCache.h"; sourceTree = SOURCE_ROOT; }; - FFFDe304d3a07ffde304d3a0 /* pipeline/PxcMaterialMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.h"; path = "../../LowLevel/common/include/pipeline/PxcMaterialMethodImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFDe304d4087ffde304d408 /* pipeline/PxcNpBatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.h"; path = "../../LowLevel/common/include/pipeline/PxcNpBatch.h"; sourceTree = SOURCE_ROOT; }; - FFFDe304d4707ffde304d470 /* pipeline/PxcNpCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCache.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCache.h"; sourceTree = SOURCE_ROOT; }; - FFFDe304d4d87ffde304d4d8 /* pipeline/PxcNpCacheStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCacheStreamPair.h"; sourceTree = SOURCE_ROOT; }; - FFFDe304d5407ffde304d540 /* pipeline/PxcNpContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.h"; path = "../../LowLevel/common/include/pipeline/PxcNpContactPrepShared.h"; sourceTree = SOURCE_ROOT; }; - FFFDe304d5a87ffde304d5a8 /* pipeline/PxcNpMemBlockPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.h"; path = "../../LowLevel/common/include/pipeline/PxcNpMemBlockPool.h"; sourceTree = SOURCE_ROOT; }; - FFFDe304d6107ffde304d610 /* pipeline/PxcNpThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.h"; path = "../../LowLevel/common/include/pipeline/PxcNpThreadContext.h"; sourceTree = SOURCE_ROOT; }; - FFFDe304d6787ffde304d678 /* pipeline/PxcNpWorkUnit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpWorkUnit.h"; path = "../../LowLevel/common/include/pipeline/PxcNpWorkUnit.h"; sourceTree = SOURCE_ROOT; }; - FFFDe304d6e07ffde304d6e0 /* pipeline/PxcRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcRigidBody.h"; path = "../../LowLevel/common/include/pipeline/PxcRigidBody.h"; sourceTree = SOURCE_ROOT; }; - FFFDe304d7487ffde304d748 /* utils/PxcScratchAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "utils/PxcScratchAllocator.h"; path = "../../LowLevel/common/include/utils/PxcScratchAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFDe304d7b07ffde304d7b0 /* utils/PxcThreadCoherentCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "utils/PxcThreadCoherentCache.h"; path = "../../LowLevel/common/include/utils/PxcThreadCoherentCache.h"; sourceTree = SOURCE_ROOT; }; + FFFD0bc50de07fa90bc50de0 /* LowLevel */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevel"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD0bc529d07fa90bc529d0 /* px_globals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "px_globals.cpp"; path = "../../LowLevel/API/src/px_globals.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0bc556407fa90bc55640 /* PxsMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCore.h"; path = "../../LowLevel/API/include/PxsMaterialCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD0bc556a87fa90bc556a8 /* PxsMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialManager.h"; path = "../../LowLevel/API/include/PxsMaterialManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD0bc557107fa90bc55710 /* PxvConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvConfig.h"; path = "../../LowLevel/API/include/PxvConfig.h"; sourceTree = SOURCE_ROOT; }; + FFFD0bc557787fa90bc55778 /* PxvContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvContext.h"; path = "../../LowLevel/API/include/PxvContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD0bc557e07fa90bc557e0 /* PxvDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvDynamics.h"; path = "../../LowLevel/API/include/PxvDynamics.h"; sourceTree = SOURCE_ROOT; }; + FFFD0bc558487fa90bc55848 /* PxvGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGeometry.h"; path = "../../LowLevel/API/include/PxvGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFD0bc558b07fa90bc558b0 /* PxvGlobals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGlobals.h"; path = "../../LowLevel/API/include/PxvGlobals.h"; sourceTree = SOURCE_ROOT; }; + FFFD0bc559187fa90bc55918 /* PxvManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvManager.h"; path = "../../LowLevel/API/include/PxvManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD0bc559807fa90bc55980 /* PxvSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvSimStats.h"; path = "../../LowLevel/API/include/PxvSimStats.h"; sourceTree = SOURCE_ROOT; }; + FFFD0bc57ff07fa90bc57ff0 /* PxsCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.cpp"; path = "../../LowLevel/software/src/PxsCCD.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0bc580587fa90bc58058 /* PxsContactManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.cpp"; path = "../../LowLevel/software/src/PxsContactManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0bc580c07fa90bc580c0 /* PxsContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.cpp"; path = "../../LowLevel/software/src/PxsContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0bc581287fa90bc58128 /* PxsDefaultMemoryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.cpp"; path = "../../LowLevel/software/src/PxsDefaultMemoryManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0bc581907fa90bc58190 /* PxsIslandSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.cpp"; path = "../../LowLevel/software/src/PxsIslandSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0bc581f87fa90bc581f8 /* PxsMaterialCombiner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.cpp"; path = "../../LowLevel/software/src/PxsMaterialCombiner.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0bc582607fa90bc58260 /* PxsNphaseImplementationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.cpp"; path = "../../LowLevel/software/src/PxsNphaseImplementationContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0bc582c87fa90bc582c8 /* PxsSimpleIslandManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.cpp"; path = "../../LowLevel/software/src/PxsSimpleIslandManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c02aa007fa90c02aa00 /* PxsBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsBodySim.h"; path = "../../LowLevel/software/include/PxsBodySim.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c02aa687fa90c02aa68 /* PxsCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.h"; path = "../../LowLevel/software/include/PxsCCD.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c02aad07fa90c02aad0 /* PxsContactManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.h"; path = "../../LowLevel/software/include/PxsContactManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c02ab387fa90c02ab38 /* PxsContactManagerState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManagerState.h"; path = "../../LowLevel/software/include/PxsContactManagerState.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c02aba07fa90c02aba0 /* PxsContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.h"; path = "../../LowLevel/software/include/PxsContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c02ac087fa90c02ac08 /* PxsDefaultMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.h"; path = "../../LowLevel/software/include/PxsDefaultMemoryManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c02ac707fa90c02ac70 /* PxsHeapMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsHeapMemoryAllocator.h"; path = "../../LowLevel/software/include/PxsHeapMemoryAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c02acd87fa90c02acd8 /* PxsIncrementalConstraintPartitioning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIncrementalConstraintPartitioning.h"; path = "../../LowLevel/software/include/PxsIncrementalConstraintPartitioning.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c02ad407fa90c02ad40 /* PxsIslandManagerTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandManagerTypes.h"; path = "../../LowLevel/software/include/PxsIslandManagerTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c02ada87fa90c02ada8 /* PxsIslandSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.h"; path = "../../LowLevel/software/include/PxsIslandSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c02ae107fa90c02ae10 /* PxsKernelWrangler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsKernelWrangler.h"; path = "../../LowLevel/software/include/PxsKernelWrangler.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c02ae787fa90c02ae78 /* PxsMaterialCombiner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.h"; path = "../../LowLevel/software/include/PxsMaterialCombiner.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c02aee07fa90c02aee0 /* PxsMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMemoryManager.h"; path = "../../LowLevel/software/include/PxsMemoryManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c02af487fa90c02af48 /* PxsNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxsNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c02afb07fa90c02afb0 /* PxsRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsRigidBody.h"; path = "../../LowLevel/software/include/PxsRigidBody.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c02b0187fa90c02b018 /* PxsShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsShapeSim.h"; path = "../../LowLevel/software/include/PxsShapeSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c02b0807fa90c02b080 /* PxsSimpleIslandManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.h"; path = "../../LowLevel/software/include/PxsSimpleIslandManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c02b0e87fa90c02b0e8 /* PxsSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimulationController.h"; path = "../../LowLevel/software/include/PxsSimulationController.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c02b1507fa90c02b150 /* PxsTransformCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsTransformCache.h"; path = "../../LowLevel/software/include/PxsTransformCache.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c02b1b87fa90c02b1b8 /* PxvNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxvNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0294007fa90c029400 /* collision/PxcContact.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContact.cpp"; path = "../../LowLevel/common/src/collision/PxcContact.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0294687fa90c029468 /* pipeline/PxcContactCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactCache.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0294d07fa90c0294d0 /* pipeline/PxcContactMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactMethodImpl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0295387fa90c029538 /* pipeline/PxcMaterialHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialHeightField.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0295a07fa90c0295a0 /* pipeline/PxcMaterialMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMesh.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0296087fa90c029608 /* pipeline/PxcMaterialMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMethodImpl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0296707fa90c029670 /* pipeline/PxcMaterialShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialShape.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialShape.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0296d87fa90c0296d8 /* pipeline/PxcNpBatch.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpBatch.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0297407fa90c029740 /* pipeline/PxcNpCacheStreamPair.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpCacheStreamPair.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0297a87fa90c0297a8 /* pipeline/PxcNpContactPrepShared.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpContactPrepShared.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0298107fa90c029810 /* pipeline/PxcNpMemBlockPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpMemBlockPool.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0298787fa90c029878 /* pipeline/PxcNpThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpThreadContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c029c007fa90c029c00 /* collision/PxcContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContactMethodImpl.h"; path = "../../LowLevel/common/include/collision/PxcContactMethodImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c029c687fa90c029c68 /* pipeline/PxcCCDStateStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcCCDStateStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcCCDStateStreamPair.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c029cd07fa90c029cd0 /* pipeline/PxcConstraintBlockStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcConstraintBlockStream.h"; path = "../../LowLevel/common/include/pipeline/PxcConstraintBlockStream.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c029d387fa90c029d38 /* pipeline/PxcContactCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.h"; path = "../../LowLevel/common/include/pipeline/PxcContactCache.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c029da07fa90c029da0 /* pipeline/PxcMaterialMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.h"; path = "../../LowLevel/common/include/pipeline/PxcMaterialMethodImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c029e087fa90c029e08 /* pipeline/PxcNpBatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.h"; path = "../../LowLevel/common/include/pipeline/PxcNpBatch.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c029e707fa90c029e70 /* pipeline/PxcNpCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCache.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCache.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c029ed87fa90c029ed8 /* pipeline/PxcNpCacheStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCacheStreamPair.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c029f407fa90c029f40 /* pipeline/PxcNpContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.h"; path = "../../LowLevel/common/include/pipeline/PxcNpContactPrepShared.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c029fa87fa90c029fa8 /* pipeline/PxcNpMemBlockPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.h"; path = "../../LowLevel/common/include/pipeline/PxcNpMemBlockPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c02a0107fa90c02a010 /* pipeline/PxcNpThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.h"; path = "../../LowLevel/common/include/pipeline/PxcNpThreadContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c02a0787fa90c02a078 /* pipeline/PxcNpWorkUnit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpWorkUnit.h"; path = "../../LowLevel/common/include/pipeline/PxcNpWorkUnit.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c02a0e07fa90c02a0e0 /* pipeline/PxcRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcRigidBody.h"; path = "../../LowLevel/common/include/pipeline/PxcRigidBody.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c02a1487fa90c02a148 /* utils/PxcScratchAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "utils/PxcScratchAllocator.h"; path = "../../LowLevel/common/include/utils/PxcScratchAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c02a1b07fa90c02a1b0 /* 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 */ - FFF2e2f1a6b07ffde2f1a6b0 /* Resources */ = { + FFF20bc50de07fa90bc50de0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2415,7 +2415,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCe2f1a6b07ffde2f1a6b0 /* Frameworks */ = { + FFFC0bc50de07fa90bc50de0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2425,31 +2425,31 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8e2f1a6b07ffde2f1a6b0 /* Sources */ = { + FFF80bc50de07fa90bc50de0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFe2f26aa07ffde2f26aa0, - FFFFe2f2c1007ffde2f2c100, - FFFFe2f2c1687ffde2f2c168, - FFFFe2f2c1d07ffde2f2c1d0, - FFFFe2f2c2387ffde2f2c238, - FFFFe2f2c2a07ffde2f2c2a0, - FFFFe2f2c3087ffde2f2c308, - FFFFe2f2c3707ffde2f2c370, - FFFFe2f2c3d87ffde2f2c3d8, - FFFFe3045e007ffde3045e00, - FFFFe3045e687ffde3045e68, - FFFFe3045ed07ffde3045ed0, - FFFFe3045f387ffde3045f38, - FFFFe3045fa07ffde3045fa0, - FFFFe30460087ffde3046008, - FFFFe30460707ffde3046070, - FFFFe30460d87ffde30460d8, - FFFFe30461407ffde3046140, - FFFFe30461a87ffde30461a8, - FFFFe30462107ffde3046210, - FFFFe30462787ffde3046278, + FFFF0bc529d07fa90bc529d0, + FFFF0bc57ff07fa90bc57ff0, + FFFF0bc580587fa90bc58058, + FFFF0bc580c07fa90bc580c0, + FFFF0bc581287fa90bc58128, + FFFF0bc581907fa90bc58190, + FFFF0bc581f87fa90bc581f8, + FFFF0bc582607fa90bc58260, + FFFF0bc582c87fa90bc582c8, + FFFF0c0294007fa90c029400, + FFFF0c0294687fa90c029468, + FFFF0c0294d07fa90c0294d0, + FFFF0c0295387fa90c029538, + FFFF0c0295a07fa90c0295a0, + FFFF0c0296087fa90c029608, + FFFF0c0296707fa90c029670, + FFFF0c0296d87fa90c0296d8, + FFFF0c0297407fa90c029740, + FFFF0c0297a87fa90c0297a8, + FFFF0c0298107fa90c029810, + FFFF0c0298787fa90c029878, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2461,38 +2461,38 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of LowLevelAABB */ - FFFFe3815c707ffde3815c70 /* BpBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe3815c707ffde3815c70 /* BpBroadPhase.cpp */; }; - FFFFe3815cd87ffde3815cd8 /* BpBroadPhaseMBP.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe3815cd87ffde3815cd8 /* BpBroadPhaseMBP.cpp */; }; - FFFFe3815d407ffde3815d40 /* BpBroadPhaseSap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe3815d407ffde3815d40 /* BpBroadPhaseSap.cpp */; }; - FFFFe3815da87ffde3815da8 /* BpBroadPhaseSapAux.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe3815da87ffde3815da8 /* BpBroadPhaseSapAux.cpp */; }; - FFFFe3815e107ffde3815e10 /* BpMBPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe3815e107ffde3815e10 /* BpMBPTasks.cpp */; }; - FFFFe3815e787ffde3815e78 /* BpSAPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe3815e787ffde3815e78 /* BpSAPTasks.cpp */; }; - FFFFe3815ee07ffde3815ee0 /* BpSimpleAABBManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe3815ee07ffde3815ee0 /* BpSimpleAABBManager.cpp */; }; + FFFF0b1c8e707fa90b1c8e70 /* BpBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0b1c8e707fa90b1c8e70 /* BpBroadPhase.cpp */; }; + FFFF0b1c8ed87fa90b1c8ed8 /* BpBroadPhaseMBP.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0b1c8ed87fa90b1c8ed8 /* BpBroadPhaseMBP.cpp */; }; + FFFF0b1c8f407fa90b1c8f40 /* BpBroadPhaseSap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0b1c8f407fa90b1c8f40 /* BpBroadPhaseSap.cpp */; }; + FFFF0b1c8fa87fa90b1c8fa8 /* BpBroadPhaseSapAux.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0b1c8fa87fa90b1c8fa8 /* BpBroadPhaseSapAux.cpp */; }; + FFFF0b1c90107fa90b1c9010 /* BpMBPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0b1c90107fa90b1c9010 /* BpMBPTasks.cpp */; }; + FFFF0b1c90787fa90b1c9078 /* BpSAPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0b1c90787fa90b1c9078 /* BpSAPTasks.cpp */; }; + FFFF0b1c90e07fa90b1c90e0 /* BpSimpleAABBManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0b1c90e07fa90b1c90e0 /* BpSimpleAABBManager.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDe2d334507ffde2d33450 /* LowLevelAABB */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelAABB"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDe2d365f07ffde2d365f0 /* BpAABBManagerTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpAABBManagerTasks.h"; path = "../../LowLevelAABB/include/BpAABBManagerTasks.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2d366587ffde2d36658 /* BpBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.h"; path = "../../LowLevelAABB/include/BpBroadPhase.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2d366c07ffde2d366c0 /* BpBroadPhaseUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseUpdate.h"; path = "../../LowLevelAABB/include/BpBroadPhaseUpdate.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2d367287ffde2d36728 /* BpSimpleAABBManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.h"; path = "../../LowLevelAABB/include/BpSimpleAABBManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3815a007ffde3815a00 /* BpBroadPhaseMBP.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3815a687ffde3815a68 /* BpBroadPhaseMBPCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBPCommon.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBPCommon.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3815ad07ffde3815ad0 /* BpBroadPhaseSap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3815b387ffde3815b38 /* BpBroadPhaseSapAux.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3815ba07ffde3815ba0 /* BpMBPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.h"; path = "../../LowLevelAABB/src/BpMBPTasks.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3815c087ffde3815c08 /* BpSAPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.h"; path = "../../LowLevelAABB/src/BpSAPTasks.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3815c707ffde3815c70 /* BpBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.cpp"; path = "../../LowLevelAABB/src/BpBroadPhase.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3815cd87ffde3815cd8 /* BpBroadPhaseMBP.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3815d407ffde3815d40 /* BpBroadPhaseSap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3815da87ffde3815da8 /* BpBroadPhaseSapAux.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3815e107ffde3815e10 /* BpMBPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.cpp"; path = "../../LowLevelAABB/src/BpMBPTasks.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3815e787ffde3815e78 /* BpSAPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.cpp"; path = "../../LowLevelAABB/src/BpSAPTasks.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe3815ee07ffde3815ee0 /* BpSimpleAABBManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.cpp"; path = "../../LowLevelAABB/src/BpSimpleAABBManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0bb097007fa90bb09700 /* LowLevelAABB */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelAABB"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD0be044507fa90be04450 /* BpAABBManagerTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpAABBManagerTasks.h"; path = "../../LowLevelAABB/include/BpAABBManagerTasks.h"; sourceTree = SOURCE_ROOT; }; + FFFD0be044b87fa90be044b8 /* BpBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.h"; path = "../../LowLevelAABB/include/BpBroadPhase.h"; sourceTree = SOURCE_ROOT; }; + FFFD0be045207fa90be04520 /* BpBroadPhaseUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseUpdate.h"; path = "../../LowLevelAABB/include/BpBroadPhaseUpdate.h"; sourceTree = SOURCE_ROOT; }; + FFFD0be045887fa90be04588 /* BpSimpleAABBManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.h"; path = "../../LowLevelAABB/include/BpSimpleAABBManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1c8c007fa90b1c8c00 /* BpBroadPhaseMBP.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1c8c687fa90b1c8c68 /* BpBroadPhaseMBPCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBPCommon.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBPCommon.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1c8cd07fa90b1c8cd0 /* BpBroadPhaseSap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1c8d387fa90b1c8d38 /* BpBroadPhaseSapAux.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1c8da07fa90b1c8da0 /* BpMBPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.h"; path = "../../LowLevelAABB/src/BpMBPTasks.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1c8e087fa90b1c8e08 /* BpSAPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.h"; path = "../../LowLevelAABB/src/BpSAPTasks.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1c8e707fa90b1c8e70 /* BpBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.cpp"; path = "../../LowLevelAABB/src/BpBroadPhase.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0b1c8ed87fa90b1c8ed8 /* BpBroadPhaseMBP.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0b1c8f407fa90b1c8f40 /* BpBroadPhaseSap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0b1c8fa87fa90b1c8fa8 /* BpBroadPhaseSapAux.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0b1c90107fa90b1c9010 /* BpMBPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.cpp"; path = "../../LowLevelAABB/src/BpMBPTasks.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0b1c90787fa90b1c9078 /* BpSAPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.cpp"; path = "../../LowLevelAABB/src/BpSAPTasks.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0b1c90e07fa90b1c90e0 /* BpSimpleAABBManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.cpp"; path = "../../LowLevelAABB/src/BpSimpleAABBManager.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2e2d334507ffde2d33450 /* Resources */ = { + FFF20bb097007fa90bb09700 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2502,7 +2502,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCe2d334507ffde2d33450 /* Frameworks */ = { + FFFC0bb097007fa90bb09700 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2512,17 +2512,17 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8e2d334507ffde2d33450 /* Sources */ = { + FFF80bb097007fa90bb09700 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFe3815c707ffde3815c70, - FFFFe3815cd87ffde3815cd8, - FFFFe3815d407ffde3815d40, - FFFFe3815da87ffde3815da8, - FFFFe3815e107ffde3815e10, - FFFFe3815e787ffde3815e78, - FFFFe3815ee07ffde3815ee0, + FFFF0b1c8e707fa90b1c8e70, + FFFF0b1c8ed87fa90b1c8ed8, + FFFF0b1c8f407fa90b1c8f40, + FFFF0b1c8fa87fa90b1c8fa8, + FFFF0b1c90107fa90b1c9010, + FFFF0b1c90787fa90b1c9078, + FFFF0b1c90e07fa90b1c90e0, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2534,106 +2534,106 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of LowLevelDynamics */ - FFFFe38220007ffde3822000 /* DyArticulation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDe38220007ffde3822000 /* DyArticulation.cpp */; }; - FFFFe38220687ffde3822068 /* DyArticulationContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDe38220687ffde3822068 /* DyArticulationContactPrep.cpp */; }; - FFFFe38220d07ffde38220d0 /* DyArticulationContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDe38220d07ffde38220d0 /* DyArticulationContactPrepPF.cpp */; }; - FFFFe38221387ffde3822138 /* DyArticulationHelper.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDe38221387ffde3822138 /* DyArticulationHelper.cpp */; }; - FFFFe38221a07ffde38221a0 /* DyArticulationSIMD.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDe38221a07ffde38221a0 /* DyArticulationSIMD.cpp */; }; - FFFFe38222087ffde3822208 /* DyArticulationScalar.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDe38222087ffde3822208 /* DyArticulationScalar.cpp */; }; - FFFFe38222707ffde3822270 /* DyConstraintPartition.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDe38222707ffde3822270 /* DyConstraintPartition.cpp */; }; - FFFFe38222d87ffde38222d8 /* DyConstraintSetup.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDe38222d87ffde38222d8 /* DyConstraintSetup.cpp */; }; - FFFFe38223407ffde3822340 /* DyConstraintSetupBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDe38223407ffde3822340 /* DyConstraintSetupBlock.cpp */; }; - FFFFe38223a87ffde38223a8 /* DyContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDe38223a87ffde38223a8 /* DyContactPrep.cpp */; }; - FFFFe38224107ffde3822410 /* DyContactPrep4.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDe38224107ffde3822410 /* DyContactPrep4.cpp */; }; - FFFFe38224787ffde3822478 /* DyContactPrep4PF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDe38224787ffde3822478 /* DyContactPrep4PF.cpp */; }; - FFFFe38224e07ffde38224e0 /* DyContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDe38224e07ffde38224e0 /* DyContactPrepPF.cpp */; }; - FFFFe38225487ffde3822548 /* DyDynamics.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDe38225487ffde3822548 /* DyDynamics.cpp */; }; - FFFFe38225b07ffde38225b0 /* DyFrictionCorrelation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDe38225b07ffde38225b0 /* DyFrictionCorrelation.cpp */; }; - FFFFe38226187ffde3822618 /* DyRigidBodyToSolverBody.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDe38226187ffde3822618 /* DyRigidBodyToSolverBody.cpp */; }; - FFFFe38226807ffde3822680 /* DySolverConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDe38226807ffde3822680 /* DySolverConstraints.cpp */; }; - FFFFe38226e87ffde38226e8 /* DySolverConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDe38226e87ffde38226e8 /* DySolverConstraintsBlock.cpp */; }; - FFFFe38227507ffde3822750 /* DySolverControl.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDe38227507ffde3822750 /* DySolverControl.cpp */; }; - FFFFe38227b87ffde38227b8 /* DySolverControlPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDe38227b87ffde38227b8 /* DySolverControlPF.cpp */; }; - FFFFe38228207ffde3822820 /* DySolverPFConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDe38228207ffde3822820 /* DySolverPFConstraints.cpp */; }; - FFFFe38228887ffde3822888 /* DySolverPFConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDe38228887ffde3822888 /* DySolverPFConstraintsBlock.cpp */; }; - FFFFe38228f07ffde38228f0 /* DyThreadContext.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDe38228f07ffde38228f0 /* DyThreadContext.cpp */; }; - FFFFe38229587ffde3822958 /* DyThresholdTable.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDe38229587ffde3822958 /* DyThresholdTable.cpp */; }; + FFFF0c0334007fa90c033400 /* DyArticulation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD0c0334007fa90c033400 /* DyArticulation.cpp */; }; + FFFF0c0334687fa90c033468 /* DyArticulationContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD0c0334687fa90c033468 /* DyArticulationContactPrep.cpp */; }; + FFFF0c0334d07fa90c0334d0 /* DyArticulationContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD0c0334d07fa90c0334d0 /* DyArticulationContactPrepPF.cpp */; }; + FFFF0c0335387fa90c033538 /* DyArticulationHelper.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD0c0335387fa90c033538 /* DyArticulationHelper.cpp */; }; + FFFF0c0335a07fa90c0335a0 /* DyArticulationSIMD.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD0c0335a07fa90c0335a0 /* DyArticulationSIMD.cpp */; }; + FFFF0c0336087fa90c033608 /* DyArticulationScalar.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD0c0336087fa90c033608 /* DyArticulationScalar.cpp */; }; + FFFF0c0336707fa90c033670 /* DyConstraintPartition.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD0c0336707fa90c033670 /* DyConstraintPartition.cpp */; }; + FFFF0c0336d87fa90c0336d8 /* DyConstraintSetup.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD0c0336d87fa90c0336d8 /* DyConstraintSetup.cpp */; }; + FFFF0c0337407fa90c033740 /* DyConstraintSetupBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD0c0337407fa90c033740 /* DyConstraintSetupBlock.cpp */; }; + FFFF0c0337a87fa90c0337a8 /* DyContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD0c0337a87fa90c0337a8 /* DyContactPrep.cpp */; }; + FFFF0c0338107fa90c033810 /* DyContactPrep4.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD0c0338107fa90c033810 /* DyContactPrep4.cpp */; }; + FFFF0c0338787fa90c033878 /* DyContactPrep4PF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD0c0338787fa90c033878 /* DyContactPrep4PF.cpp */; }; + FFFF0c0338e07fa90c0338e0 /* DyContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD0c0338e07fa90c0338e0 /* DyContactPrepPF.cpp */; }; + FFFF0c0339487fa90c033948 /* DyDynamics.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD0c0339487fa90c033948 /* DyDynamics.cpp */; }; + FFFF0c0339b07fa90c0339b0 /* DyFrictionCorrelation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD0c0339b07fa90c0339b0 /* DyFrictionCorrelation.cpp */; }; + FFFF0c033a187fa90c033a18 /* DyRigidBodyToSolverBody.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD0c033a187fa90c033a18 /* DyRigidBodyToSolverBody.cpp */; }; + FFFF0c033a807fa90c033a80 /* DySolverConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD0c033a807fa90c033a80 /* DySolverConstraints.cpp */; }; + FFFF0c033ae87fa90c033ae8 /* DySolverConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD0c033ae87fa90c033ae8 /* DySolverConstraintsBlock.cpp */; }; + FFFF0c033b507fa90c033b50 /* DySolverControl.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD0c033b507fa90c033b50 /* DySolverControl.cpp */; }; + FFFF0c033bb87fa90c033bb8 /* DySolverControlPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD0c033bb87fa90c033bb8 /* DySolverControlPF.cpp */; }; + FFFF0c033c207fa90c033c20 /* DySolverPFConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD0c033c207fa90c033c20 /* DySolverPFConstraints.cpp */; }; + FFFF0c033c887fa90c033c88 /* DySolverPFConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD0c033c887fa90c033c88 /* DySolverPFConstraintsBlock.cpp */; }; + FFFF0c033cf07fa90c033cf0 /* DyThreadContext.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD0c033cf07fa90c033cf0 /* DyThreadContext.cpp */; }; + FFFF0c033d587fa90c033d58 /* DyThresholdTable.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD0c033d587fa90c033d58 /* DyThresholdTable.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDe2d544f07ffde2d544f0 /* LowLevelDynamics */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelDynamics"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDe38220007ffde3822000 /* DyArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.cpp"; path = "../../LowLevelDynamics/src/DyArticulation.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38220687ffde3822068 /* DyArticulationContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38220d07ffde38220d0 /* DyArticulationContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38221387ffde3822138 /* DyArticulationHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.cpp"; path = "../../LowLevelDynamics/src/DyArticulationHelper.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38221a07ffde38221a0 /* DyArticulationSIMD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationSIMD.cpp"; path = "../../LowLevelDynamics/src/DyArticulationSIMD.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38222087ffde3822208 /* DyArticulationScalar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.cpp"; path = "../../LowLevelDynamics/src/DyArticulationScalar.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38222707ffde3822270 /* DyConstraintPartition.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.cpp"; path = "../../LowLevelDynamics/src/DyConstraintPartition.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38222d87ffde38222d8 /* DyConstraintSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetup.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetup.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38223407ffde3822340 /* DyConstraintSetupBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetupBlock.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetupBlock.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38223a87ffde38223a8 /* DyContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38224107ffde3822410 /* DyContactPrep4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38224787ffde3822478 /* DyContactPrep4PF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4PF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4PF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38224e07ffde38224e0 /* DyContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38225487ffde3822548 /* DyDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.cpp"; path = "../../LowLevelDynamics/src/DyDynamics.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38225b07ffde38225b0 /* DyFrictionCorrelation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionCorrelation.cpp"; path = "../../LowLevelDynamics/src/DyFrictionCorrelation.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38226187ffde3822618 /* DyRigidBodyToSolverBody.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyRigidBodyToSolverBody.cpp"; path = "../../LowLevelDynamics/src/DyRigidBodyToSolverBody.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38226807ffde3822680 /* DySolverConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraints.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38226e87ffde38226e8 /* DySolverConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38227507ffde3822750 /* DySolverControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.cpp"; path = "../../LowLevelDynamics/src/DySolverControl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38227b87ffde38227b8 /* DySolverControlPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.cpp"; path = "../../LowLevelDynamics/src/DySolverControlPF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38228207ffde3822820 /* DySolverPFConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraints.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38228887ffde3822888 /* DySolverPFConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38228f07ffde38228f0 /* DyThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.cpp"; path = "../../LowLevelDynamics/src/DyThreadContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe38229587ffde3822958 /* DyThresholdTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.cpp"; path = "../../LowLevelDynamics/src/DyThresholdTable.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe2d51ff07ffde2d51ff0 /* DyArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.h"; path = "../../LowLevelDynamics/include/DyArticulation.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2d520587ffde2d52058 /* DyConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraint.h"; path = "../../LowLevelDynamics/include/DyConstraint.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2d520c07ffde2d520c0 /* DyConstraintWriteBack.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintWriteBack.h"; path = "../../LowLevelDynamics/include/DyConstraintWriteBack.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2d521287ffde2d52128 /* DyContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContext.h"; path = "../../LowLevelDynamics/include/DyContext.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2d521907ffde2d52190 /* DyGpuAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyGpuAPI.h"; path = "../../LowLevelDynamics/include/DyGpuAPI.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2d521f87ffde2d521f8 /* DySleepingConfigulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySleepingConfigulation.h"; path = "../../LowLevelDynamics/include/DySleepingConfigulation.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2d522607ffde2d52260 /* DyThresholdTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.h"; path = "../../LowLevelDynamics/include/DyThresholdTable.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38238007ffde3823800 /* DyArticulationContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.h"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38238687ffde3823868 /* DyArticulationFnsDebug.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsDebug.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsDebug.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38238d07ffde38238d0 /* DyArticulationFnsScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsScalar.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38239387ffde3823938 /* DyArticulationFnsSimd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsSimd.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsSimd.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38239a07ffde38239a0 /* DyArticulationHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.h"; path = "../../LowLevelDynamics/src/DyArticulationHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3823a087ffde3823a08 /* DyArticulationPImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationPImpl.h"; path = "../../LowLevelDynamics/src/DyArticulationPImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3823a707ffde3823a70 /* DyArticulationReference.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationReference.h"; path = "../../LowLevelDynamics/src/DyArticulationReference.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3823ad87ffde3823ad8 /* DyArticulationScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationScalar.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3823b407ffde3823b40 /* DyArticulationUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationUtils.h"; path = "../../LowLevelDynamics/src/DyArticulationUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3823ba87ffde3823ba8 /* DyBodyCoreIntegrator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyBodyCoreIntegrator.h"; path = "../../LowLevelDynamics/src/DyBodyCoreIntegrator.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3823c107ffde3823c10 /* DyConstraintPartition.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.h"; path = "../../LowLevelDynamics/src/DyConstraintPartition.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3823c787ffde3823c78 /* DyConstraintPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPrep.h"; path = "../../LowLevelDynamics/src/DyConstraintPrep.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3823ce07ffde3823ce0 /* DyContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.h"; path = "../../LowLevelDynamics/src/DyContactPrep.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3823d487ffde3823d48 /* DyContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepShared.h"; path = "../../LowLevelDynamics/src/DyContactPrepShared.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3823db07ffde3823db0 /* DyContactReduction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactReduction.h"; path = "../../LowLevelDynamics/src/DyContactReduction.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3823e187ffde3823e18 /* DyCorrelationBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyCorrelationBuffer.h"; path = "../../LowLevelDynamics/src/DyCorrelationBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3823e807ffde3823e80 /* DyDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.h"; path = "../../LowLevelDynamics/src/DyDynamics.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3823ee87ffde3823ee8 /* DyFrictionPatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatch.h"; path = "../../LowLevelDynamics/src/DyFrictionPatch.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3823f507ffde3823f50 /* DyFrictionPatchStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatchStreamPair.h"; path = "../../LowLevelDynamics/src/DyFrictionPatchStreamPair.h"; sourceTree = SOURCE_ROOT; }; - FFFDe3823fb87ffde3823fb8 /* DySolverBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverBody.h"; path = "../../LowLevelDynamics/src/DySolverBody.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38240207ffde3824020 /* DySolverConstraint1D.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38240887ffde3824088 /* DySolverConstraint1D4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D4.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D4.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38240f07ffde38240f0 /* DySolverConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintDesc.h"; path = "../../LowLevelDynamics/src/DySolverConstraintDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38241587ffde3824158 /* DySolverConstraintExtShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintExtShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintExtShared.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38241c07ffde38241c0 /* DySolverConstraintTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintTypes.h"; path = "../../LowLevelDynamics/src/DySolverConstraintTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38242287ffde3824228 /* DySolverConstraintsShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintsShared.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38242907ffde3824290 /* DySolverContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact.h"; path = "../../LowLevelDynamics/src/DySolverContact.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38242f87ffde38242f8 /* DySolverContact4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact4.h"; path = "../../LowLevelDynamics/src/DySolverContact4.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38243607ffde3824360 /* DySolverContactPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF.h"; path = "../../LowLevelDynamics/src/DySolverContactPF.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38243c87ffde38243c8 /* DySolverContactPF4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF4.h"; path = "../../LowLevelDynamics/src/DySolverContactPF4.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38244307ffde3824430 /* DySolverContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContext.h"; path = "../../LowLevelDynamics/src/DySolverContext.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38244987ffde3824498 /* DySolverControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.h"; path = "../../LowLevelDynamics/src/DySolverControl.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38245007ffde3824500 /* DySolverControlPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.h"; path = "../../LowLevelDynamics/src/DySolverControlPF.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38245687ffde3824568 /* DySolverCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverCore.h"; path = "../../LowLevelDynamics/src/DySolverCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38245d07ffde38245d0 /* DySolverExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverExt.h"; path = "../../LowLevelDynamics/src/DySolverExt.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38246387ffde3824638 /* DySpatial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySpatial.h"; path = "../../LowLevelDynamics/src/DySpatial.h"; sourceTree = SOURCE_ROOT; }; - FFFDe38246a07ffde38246a0 /* DyThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.h"; path = "../../LowLevelDynamics/src/DyThreadContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD0bc6a7707fa90bc6a770 /* LowLevelDynamics */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelDynamics"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD0c0334007fa90c033400 /* DyArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.cpp"; path = "../../LowLevelDynamics/src/DyArticulation.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0334687fa90c033468 /* DyArticulationContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0334d07fa90c0334d0 /* DyArticulationContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0335387fa90c033538 /* DyArticulationHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.cpp"; path = "../../LowLevelDynamics/src/DyArticulationHelper.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0335a07fa90c0335a0 /* DyArticulationSIMD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationSIMD.cpp"; path = "../../LowLevelDynamics/src/DyArticulationSIMD.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0336087fa90c033608 /* DyArticulationScalar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.cpp"; path = "../../LowLevelDynamics/src/DyArticulationScalar.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0336707fa90c033670 /* DyConstraintPartition.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.cpp"; path = "../../LowLevelDynamics/src/DyConstraintPartition.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0336d87fa90c0336d8 /* DyConstraintSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetup.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetup.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0337407fa90c033740 /* DyConstraintSetupBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetupBlock.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetupBlock.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0337a87fa90c0337a8 /* DyContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0338107fa90c033810 /* DyContactPrep4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0338787fa90c033878 /* DyContactPrep4PF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4PF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4PF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0338e07fa90c0338e0 /* DyContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0339487fa90c033948 /* DyDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.cpp"; path = "../../LowLevelDynamics/src/DyDynamics.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0339b07fa90c0339b0 /* DyFrictionCorrelation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionCorrelation.cpp"; path = "../../LowLevelDynamics/src/DyFrictionCorrelation.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c033a187fa90c033a18 /* DyRigidBodyToSolverBody.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyRigidBodyToSolverBody.cpp"; path = "../../LowLevelDynamics/src/DyRigidBodyToSolverBody.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c033a807fa90c033a80 /* DySolverConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraints.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c033ae87fa90c033ae8 /* DySolverConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c033b507fa90c033b50 /* DySolverControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.cpp"; path = "../../LowLevelDynamics/src/DySolverControl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c033bb87fa90c033bb8 /* DySolverControlPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.cpp"; path = "../../LowLevelDynamics/src/DySolverControlPF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c033c207fa90c033c20 /* DySolverPFConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraints.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c033c887fa90c033c88 /* DySolverPFConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c033cf07fa90c033cf0 /* DyThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.cpp"; path = "../../LowLevelDynamics/src/DyThreadContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c033d587fa90c033d58 /* DyThresholdTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.cpp"; path = "../../LowLevelDynamics/src/DyThresholdTable.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0bc80b607fa90bc80b60 /* DyArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.h"; path = "../../LowLevelDynamics/include/DyArticulation.h"; sourceTree = SOURCE_ROOT; }; + FFFD0bc80bc87fa90bc80bc8 /* DyConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraint.h"; path = "../../LowLevelDynamics/include/DyConstraint.h"; sourceTree = SOURCE_ROOT; }; + FFFD0bc80c307fa90bc80c30 /* DyConstraintWriteBack.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintWriteBack.h"; path = "../../LowLevelDynamics/include/DyConstraintWriteBack.h"; sourceTree = SOURCE_ROOT; }; + FFFD0bc80c987fa90bc80c98 /* DyContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContext.h"; path = "../../LowLevelDynamics/include/DyContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD0bc80d007fa90bc80d00 /* DyGpuAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyGpuAPI.h"; path = "../../LowLevelDynamics/include/DyGpuAPI.h"; sourceTree = SOURCE_ROOT; }; + FFFD0bc80d687fa90bc80d68 /* DySleepingConfigulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySleepingConfigulation.h"; path = "../../LowLevelDynamics/include/DySleepingConfigulation.h"; sourceTree = SOURCE_ROOT; }; + FFFD0bc80dd07fa90bc80dd0 /* DyThresholdTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.h"; path = "../../LowLevelDynamics/include/DyThresholdTable.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c034c007fa90c034c00 /* DyArticulationContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.h"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c034c687fa90c034c68 /* DyArticulationFnsDebug.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsDebug.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsDebug.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c034cd07fa90c034cd0 /* DyArticulationFnsScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsScalar.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c034d387fa90c034d38 /* DyArticulationFnsSimd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsSimd.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsSimd.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c034da07fa90c034da0 /* DyArticulationHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.h"; path = "../../LowLevelDynamics/src/DyArticulationHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c034e087fa90c034e08 /* DyArticulationPImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationPImpl.h"; path = "../../LowLevelDynamics/src/DyArticulationPImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c034e707fa90c034e70 /* DyArticulationReference.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationReference.h"; path = "../../LowLevelDynamics/src/DyArticulationReference.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c034ed87fa90c034ed8 /* DyArticulationScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationScalar.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c034f407fa90c034f40 /* DyArticulationUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationUtils.h"; path = "../../LowLevelDynamics/src/DyArticulationUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c034fa87fa90c034fa8 /* DyBodyCoreIntegrator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyBodyCoreIntegrator.h"; path = "../../LowLevelDynamics/src/DyBodyCoreIntegrator.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0350107fa90c035010 /* DyConstraintPartition.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.h"; path = "../../LowLevelDynamics/src/DyConstraintPartition.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0350787fa90c035078 /* DyConstraintPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPrep.h"; path = "../../LowLevelDynamics/src/DyConstraintPrep.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0350e07fa90c0350e0 /* DyContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.h"; path = "../../LowLevelDynamics/src/DyContactPrep.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0351487fa90c035148 /* DyContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepShared.h"; path = "../../LowLevelDynamics/src/DyContactPrepShared.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0351b07fa90c0351b0 /* DyContactReduction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactReduction.h"; path = "../../LowLevelDynamics/src/DyContactReduction.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0352187fa90c035218 /* DyCorrelationBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyCorrelationBuffer.h"; path = "../../LowLevelDynamics/src/DyCorrelationBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0352807fa90c035280 /* DyDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.h"; path = "../../LowLevelDynamics/src/DyDynamics.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0352e87fa90c0352e8 /* DyFrictionPatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatch.h"; path = "../../LowLevelDynamics/src/DyFrictionPatch.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0353507fa90c035350 /* DyFrictionPatchStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatchStreamPair.h"; path = "../../LowLevelDynamics/src/DyFrictionPatchStreamPair.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0353b87fa90c0353b8 /* DySolverBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverBody.h"; path = "../../LowLevelDynamics/src/DySolverBody.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0354207fa90c035420 /* DySolverConstraint1D.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0354887fa90c035488 /* DySolverConstraint1D4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D4.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D4.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0354f07fa90c0354f0 /* DySolverConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintDesc.h"; path = "../../LowLevelDynamics/src/DySolverConstraintDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0355587fa90c035558 /* DySolverConstraintExtShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintExtShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintExtShared.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0355c07fa90c0355c0 /* DySolverConstraintTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintTypes.h"; path = "../../LowLevelDynamics/src/DySolverConstraintTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0356287fa90c035628 /* DySolverConstraintsShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintsShared.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0356907fa90c035690 /* DySolverContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact.h"; path = "../../LowLevelDynamics/src/DySolverContact.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0356f87fa90c0356f8 /* DySolverContact4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact4.h"; path = "../../LowLevelDynamics/src/DySolverContact4.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0357607fa90c035760 /* DySolverContactPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF.h"; path = "../../LowLevelDynamics/src/DySolverContactPF.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0357c87fa90c0357c8 /* DySolverContactPF4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF4.h"; path = "../../LowLevelDynamics/src/DySolverContactPF4.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0358307fa90c035830 /* DySolverContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContext.h"; path = "../../LowLevelDynamics/src/DySolverContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0358987fa90c035898 /* DySolverControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.h"; path = "../../LowLevelDynamics/src/DySolverControl.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0359007fa90c035900 /* DySolverControlPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.h"; path = "../../LowLevelDynamics/src/DySolverControlPF.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0359687fa90c035968 /* DySolverCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverCore.h"; path = "../../LowLevelDynamics/src/DySolverCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c0359d07fa90c0359d0 /* DySolverExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverExt.h"; path = "../../LowLevelDynamics/src/DySolverExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c035a387fa90c035a38 /* DySpatial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySpatial.h"; path = "../../LowLevelDynamics/src/DySpatial.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c035aa07fa90c035aa0 /* DyThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.h"; path = "../../LowLevelDynamics/src/DyThreadContext.h"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2e2d544f07ffde2d544f0 /* Resources */ = { + FFF20bc6a7707fa90bc6a770 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2643,7 +2643,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCe2d544f07ffde2d544f0 /* Frameworks */ = { + FFFC0bc6a7707fa90bc6a770 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2653,34 +2653,34 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8e2d544f07ffde2d544f0 /* Sources */ = { + FFF80bc6a7707fa90bc6a770 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFe38220007ffde3822000, - FFFFe38220687ffde3822068, - FFFFe38220d07ffde38220d0, - FFFFe38221387ffde3822138, - FFFFe38221a07ffde38221a0, - FFFFe38222087ffde3822208, - FFFFe38222707ffde3822270, - FFFFe38222d87ffde38222d8, - FFFFe38223407ffde3822340, - FFFFe38223a87ffde38223a8, - FFFFe38224107ffde3822410, - FFFFe38224787ffde3822478, - FFFFe38224e07ffde38224e0, - FFFFe38225487ffde3822548, - FFFFe38225b07ffde38225b0, - FFFFe38226187ffde3822618, - FFFFe38226807ffde3822680, - FFFFe38226e87ffde38226e8, - FFFFe38227507ffde3822750, - FFFFe38227b87ffde38227b8, - FFFFe38228207ffde3822820, - FFFFe38228887ffde3822888, - FFFFe38228f07ffde38228f0, - FFFFe38229587ffde3822958, + FFFF0c0334007fa90c033400, + FFFF0c0334687fa90c033468, + FFFF0c0334d07fa90c0334d0, + FFFF0c0335387fa90c033538, + FFFF0c0335a07fa90c0335a0, + FFFF0c0336087fa90c033608, + FFFF0c0336707fa90c033670, + FFFF0c0336d87fa90c0336d8, + FFFF0c0337407fa90c033740, + FFFF0c0337a87fa90c0337a8, + FFFF0c0338107fa90c033810, + FFFF0c0338787fa90c033878, + FFFF0c0338e07fa90c0338e0, + FFFF0c0339487fa90c033948, + FFFF0c0339b07fa90c0339b0, + FFFF0c033a187fa90c033a18, + FFFF0c033a807fa90c033a80, + FFFF0c033ae87fa90c033ae8, + FFFF0c033b507fa90c033b50, + FFFF0c033bb87fa90c033bb8, + FFFF0c033c207fa90c033c20, + FFFF0c033c887fa90c033c88, + FFFF0c033cf07fa90c033cf0, + FFFF0c033d587fa90c033d58, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2692,70 +2692,70 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of LowLevelCloth */ - FFFFe21853587ffde2185358 /* Allocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21853587ffde2185358 /* Allocator.cpp */; }; - FFFFe21853c07ffde21853c0 /* Factory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21853c07ffde21853c0 /* Factory.cpp */; }; - FFFFe21854287ffde2185428 /* PhaseConfig.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21854287ffde2185428 /* PhaseConfig.cpp */; }; - FFFFe21854907ffde2185490 /* SwCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21854907ffde2185490 /* SwCloth.cpp */; }; - FFFFe21854f87ffde21854f8 /* SwClothData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21854f87ffde21854f8 /* SwClothData.cpp */; }; - FFFFe21855607ffde2185560 /* SwCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21855607ffde2185560 /* SwCollision.cpp */; }; - FFFFe21855c87ffde21855c8 /* SwFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21855c87ffde21855c8 /* SwFabric.cpp */; }; - FFFFe21856307ffde2185630 /* SwFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21856307ffde2185630 /* SwFactory.cpp */; }; - FFFFe21856987ffde2185698 /* SwInterCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21856987ffde2185698 /* SwInterCollision.cpp */; }; - FFFFe21857007ffde2185700 /* SwSelfCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21857007ffde2185700 /* SwSelfCollision.cpp */; }; - FFFFe21857687ffde2185768 /* SwSolver.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21857687ffde2185768 /* SwSolver.cpp */; }; - FFFFe21857d07ffde21857d0 /* SwSolverKernel.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21857d07ffde21857d0 /* SwSolverKernel.cpp */; }; - FFFFe21858387ffde2185838 /* TripletScheduler.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe21858387ffde2185838 /* TripletScheduler.cpp */; }; + FFFF0b1da7587fa90b1da758 /* Allocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0b1da7587fa90b1da758 /* Allocator.cpp */; }; + FFFF0b1da7c07fa90b1da7c0 /* Factory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0b1da7c07fa90b1da7c0 /* Factory.cpp */; }; + FFFF0b1da8287fa90b1da828 /* PhaseConfig.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0b1da8287fa90b1da828 /* PhaseConfig.cpp */; }; + FFFF0b1da8907fa90b1da890 /* SwCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0b1da8907fa90b1da890 /* SwCloth.cpp */; }; + FFFF0b1da8f87fa90b1da8f8 /* SwClothData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0b1da8f87fa90b1da8f8 /* SwClothData.cpp */; }; + FFFF0b1da9607fa90b1da960 /* SwCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0b1da9607fa90b1da960 /* SwCollision.cpp */; }; + FFFF0b1da9c87fa90b1da9c8 /* SwFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0b1da9c87fa90b1da9c8 /* SwFabric.cpp */; }; + FFFF0b1daa307fa90b1daa30 /* SwFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0b1daa307fa90b1daa30 /* SwFactory.cpp */; }; + FFFF0b1daa987fa90b1daa98 /* SwInterCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0b1daa987fa90b1daa98 /* SwInterCollision.cpp */; }; + FFFF0b1dab007fa90b1dab00 /* SwSelfCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0b1dab007fa90b1dab00 /* SwSelfCollision.cpp */; }; + FFFF0b1dab687fa90b1dab68 /* SwSolver.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0b1dab687fa90b1dab68 /* SwSolver.cpp */; }; + FFFF0b1dabd07fa90b1dabd0 /* SwSolverKernel.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0b1dabd07fa90b1dabd0 /* SwSolverKernel.cpp */; }; + FFFF0b1dac387fa90b1dac38 /* TripletScheduler.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0b1dac387fa90b1dac38 /* TripletScheduler.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDe292cb407ffde292cb40 /* LowLevelCloth */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelCloth"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDe292a0807ffde292a080 /* Cloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cloth.h"; path = "../../LowLevelCloth/include/Cloth.h"; sourceTree = SOURCE_ROOT; }; - FFFDe292a0e87ffde292a0e8 /* Fabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Fabric.h"; path = "../../LowLevelCloth/include/Fabric.h"; sourceTree = SOURCE_ROOT; }; - FFFDe292a1507ffde292a150 /* Factory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.h"; path = "../../LowLevelCloth/include/Factory.h"; sourceTree = SOURCE_ROOT; }; - FFFDe292a1b87ffde292a1b8 /* PhaseConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.h"; path = "../../LowLevelCloth/include/PhaseConfig.h"; sourceTree = SOURCE_ROOT; }; - FFFDe292a2207ffde292a220 /* Range.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Range.h"; path = "../../LowLevelCloth/include/Range.h"; sourceTree = SOURCE_ROOT; }; - FFFDe292a2887ffde292a288 /* Solver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Solver.h"; path = "../../LowLevelCloth/include/Solver.h"; sourceTree = SOURCE_ROOT; }; - FFFDe292a2f07ffde292a2f0 /* Types.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Types.h"; path = "../../LowLevelCloth/include/Types.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2184a007ffde2184a00 /* Allocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.h"; path = "../../LowLevelCloth/src/Allocator.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2184a687ffde2184a68 /* Array.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Array.h"; path = "../../LowLevelCloth/src/Array.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2184ad07ffde2184ad0 /* BoundingBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BoundingBox.h"; path = "../../LowLevelCloth/src/BoundingBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2184b387ffde2184b38 /* ClothBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothBase.h"; path = "../../LowLevelCloth/src/ClothBase.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2184ba07ffde2184ba0 /* ClothImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothImpl.h"; path = "../../LowLevelCloth/src/ClothImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2184c087ffde2184c08 /* IndexPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IndexPair.h"; path = "../../LowLevelCloth/src/IndexPair.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2184c707ffde2184c70 /* IterationState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IterationState.h"; path = "../../LowLevelCloth/src/IterationState.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2184cd87ffde2184cd8 /* MovingAverage.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MovingAverage.h"; path = "../../LowLevelCloth/src/MovingAverage.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2184d407ffde2184d40 /* PointInterpolator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PointInterpolator.h"; path = "../../LowLevelCloth/src/PointInterpolator.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2184da87ffde2184da8 /* Simd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd.h"; path = "../../LowLevelCloth/src/Simd.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2184e107ffde2184e10 /* StackAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "StackAllocator.h"; path = "../../LowLevelCloth/src/StackAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2184e787ffde2184e78 /* SwCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.h"; path = "../../LowLevelCloth/src/SwCloth.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2184ee07ffde2184ee0 /* SwClothData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.h"; path = "../../LowLevelCloth/src/SwClothData.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2184f487ffde2184f48 /* SwCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.h"; path = "../../LowLevelCloth/src/SwCollision.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2184fb07ffde2184fb0 /* SwCollisionHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollisionHelpers.h"; path = "../../LowLevelCloth/src/SwCollisionHelpers.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21850187ffde2185018 /* SwFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.h"; path = "../../LowLevelCloth/src/SwFabric.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21850807ffde2185080 /* SwFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.h"; path = "../../LowLevelCloth/src/SwFactory.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21850e87ffde21850e8 /* SwInterCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.h"; path = "../../LowLevelCloth/src/SwInterCollision.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21851507ffde2185150 /* SwSelfCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.h"; path = "../../LowLevelCloth/src/SwSelfCollision.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21851b87ffde21851b8 /* SwSolver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.h"; path = "../../LowLevelCloth/src/SwSolver.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21852207ffde2185220 /* SwSolverKernel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.h"; path = "../../LowLevelCloth/src/SwSolverKernel.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21852887ffde2185288 /* TripletScheduler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.h"; path = "../../LowLevelCloth/src/TripletScheduler.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21852f07ffde21852f0 /* Vec4T.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Vec4T.h"; path = "../../LowLevelCloth/src/Vec4T.h"; sourceTree = SOURCE_ROOT; }; - FFFDe21853587ffde2185358 /* Allocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.cpp"; path = "../../LowLevelCloth/src/Allocator.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21853c07ffde21853c0 /* Factory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.cpp"; path = "../../LowLevelCloth/src/Factory.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21854287ffde2185428 /* PhaseConfig.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.cpp"; path = "../../LowLevelCloth/src/PhaseConfig.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21854907ffde2185490 /* SwCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.cpp"; path = "../../LowLevelCloth/src/SwCloth.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21854f87ffde21854f8 /* SwClothData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.cpp"; path = "../../LowLevelCloth/src/SwClothData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21855607ffde2185560 /* SwCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.cpp"; path = "../../LowLevelCloth/src/SwCollision.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21855c87ffde21855c8 /* SwFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.cpp"; path = "../../LowLevelCloth/src/SwFabric.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21856307ffde2185630 /* SwFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.cpp"; path = "../../LowLevelCloth/src/SwFactory.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21856987ffde2185698 /* SwInterCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.cpp"; path = "../../LowLevelCloth/src/SwInterCollision.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21857007ffde2185700 /* SwSelfCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.cpp"; path = "../../LowLevelCloth/src/SwSelfCollision.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21857687ffde2185768 /* SwSolver.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.cpp"; path = "../../LowLevelCloth/src/SwSolver.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21857d07ffde21857d0 /* SwSolverKernel.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.cpp"; path = "../../LowLevelCloth/src/SwSolverKernel.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe21858387ffde2185838 /* TripletScheduler.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.cpp"; path = "../../LowLevelCloth/src/TripletScheduler.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0be0eb007fa90be0eb00 /* LowLevelCloth */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelCloth"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD0be248707fa90be24870 /* Cloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cloth.h"; path = "../../LowLevelCloth/include/Cloth.h"; sourceTree = SOURCE_ROOT; }; + FFFD0be248d87fa90be248d8 /* Fabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Fabric.h"; path = "../../LowLevelCloth/include/Fabric.h"; sourceTree = SOURCE_ROOT; }; + FFFD0be249407fa90be24940 /* Factory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.h"; path = "../../LowLevelCloth/include/Factory.h"; sourceTree = SOURCE_ROOT; }; + FFFD0be249a87fa90be249a8 /* PhaseConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.h"; path = "../../LowLevelCloth/include/PhaseConfig.h"; sourceTree = SOURCE_ROOT; }; + FFFD0be24a107fa90be24a10 /* Range.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Range.h"; path = "../../LowLevelCloth/include/Range.h"; sourceTree = SOURCE_ROOT; }; + FFFD0be24a787fa90be24a78 /* Solver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Solver.h"; path = "../../LowLevelCloth/include/Solver.h"; sourceTree = SOURCE_ROOT; }; + FFFD0be24ae07fa90be24ae0 /* Types.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Types.h"; path = "../../LowLevelCloth/include/Types.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1d9e007fa90b1d9e00 /* Allocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.h"; path = "../../LowLevelCloth/src/Allocator.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1d9e687fa90b1d9e68 /* Array.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Array.h"; path = "../../LowLevelCloth/src/Array.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1d9ed07fa90b1d9ed0 /* BoundingBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BoundingBox.h"; path = "../../LowLevelCloth/src/BoundingBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1d9f387fa90b1d9f38 /* ClothBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothBase.h"; path = "../../LowLevelCloth/src/ClothBase.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1d9fa07fa90b1d9fa0 /* ClothImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothImpl.h"; path = "../../LowLevelCloth/src/ClothImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1da0087fa90b1da008 /* IndexPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IndexPair.h"; path = "../../LowLevelCloth/src/IndexPair.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1da0707fa90b1da070 /* IterationState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IterationState.h"; path = "../../LowLevelCloth/src/IterationState.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1da0d87fa90b1da0d8 /* MovingAverage.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MovingAverage.h"; path = "../../LowLevelCloth/src/MovingAverage.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1da1407fa90b1da140 /* PointInterpolator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PointInterpolator.h"; path = "../../LowLevelCloth/src/PointInterpolator.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1da1a87fa90b1da1a8 /* Simd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd.h"; path = "../../LowLevelCloth/src/Simd.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1da2107fa90b1da210 /* StackAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "StackAllocator.h"; path = "../../LowLevelCloth/src/StackAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1da2787fa90b1da278 /* SwCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.h"; path = "../../LowLevelCloth/src/SwCloth.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1da2e07fa90b1da2e0 /* SwClothData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.h"; path = "../../LowLevelCloth/src/SwClothData.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1da3487fa90b1da348 /* SwCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.h"; path = "../../LowLevelCloth/src/SwCollision.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1da3b07fa90b1da3b0 /* SwCollisionHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollisionHelpers.h"; path = "../../LowLevelCloth/src/SwCollisionHelpers.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1da4187fa90b1da418 /* SwFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.h"; path = "../../LowLevelCloth/src/SwFabric.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1da4807fa90b1da480 /* SwFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.h"; path = "../../LowLevelCloth/src/SwFactory.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1da4e87fa90b1da4e8 /* SwInterCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.h"; path = "../../LowLevelCloth/src/SwInterCollision.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1da5507fa90b1da550 /* SwSelfCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.h"; path = "../../LowLevelCloth/src/SwSelfCollision.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1da5b87fa90b1da5b8 /* SwSolver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.h"; path = "../../LowLevelCloth/src/SwSolver.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1da6207fa90b1da620 /* SwSolverKernel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.h"; path = "../../LowLevelCloth/src/SwSolverKernel.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1da6887fa90b1da688 /* TripletScheduler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.h"; path = "../../LowLevelCloth/src/TripletScheduler.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1da6f07fa90b1da6f0 /* Vec4T.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Vec4T.h"; path = "../../LowLevelCloth/src/Vec4T.h"; sourceTree = SOURCE_ROOT; }; + FFFD0b1da7587fa90b1da758 /* Allocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.cpp"; path = "../../LowLevelCloth/src/Allocator.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0b1da7c07fa90b1da7c0 /* Factory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.cpp"; path = "../../LowLevelCloth/src/Factory.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0b1da8287fa90b1da828 /* PhaseConfig.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.cpp"; path = "../../LowLevelCloth/src/PhaseConfig.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0b1da8907fa90b1da890 /* SwCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.cpp"; path = "../../LowLevelCloth/src/SwCloth.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0b1da8f87fa90b1da8f8 /* SwClothData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.cpp"; path = "../../LowLevelCloth/src/SwClothData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0b1da9607fa90b1da960 /* SwCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.cpp"; path = "../../LowLevelCloth/src/SwCollision.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0b1da9c87fa90b1da9c8 /* SwFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.cpp"; path = "../../LowLevelCloth/src/SwFabric.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0b1daa307fa90b1daa30 /* SwFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.cpp"; path = "../../LowLevelCloth/src/SwFactory.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0b1daa987fa90b1daa98 /* SwInterCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.cpp"; path = "../../LowLevelCloth/src/SwInterCollision.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0b1dab007fa90b1dab00 /* SwSelfCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.cpp"; path = "../../LowLevelCloth/src/SwSelfCollision.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0b1dab687fa90b1dab68 /* SwSolver.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.cpp"; path = "../../LowLevelCloth/src/SwSolver.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0b1dabd07fa90b1dabd0 /* SwSolverKernel.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.cpp"; path = "../../LowLevelCloth/src/SwSolverKernel.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0b1dac387fa90b1dac38 /* TripletScheduler.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.cpp"; path = "../../LowLevelCloth/src/TripletScheduler.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2e292cb407ffde292cb40 /* Resources */ = { + FFF20be0eb007fa90be0eb00 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2765,7 +2765,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCe292cb407ffde292cb40 /* Frameworks */ = { + FFFC0be0eb007fa90be0eb00 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2775,23 +2775,23 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8e292cb407ffde292cb40 /* Sources */ = { + FFF80be0eb007fa90be0eb00 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFe21853587ffde2185358, - FFFFe21853c07ffde21853c0, - FFFFe21854287ffde2185428, - FFFFe21854907ffde2185490, - FFFFe21854f87ffde21854f8, - FFFFe21855607ffde2185560, - FFFFe21855c87ffde21855c8, - FFFFe21856307ffde2185630, - FFFFe21856987ffde2185698, - FFFFe21857007ffde2185700, - FFFFe21857687ffde2185768, - FFFFe21857d07ffde21857d0, - FFFFe21858387ffde2185838, + FFFF0b1da7587fa90b1da758, + FFFF0b1da7c07fa90b1da7c0, + FFFF0b1da8287fa90b1da828, + FFFF0b1da8907fa90b1da890, + FFFF0b1da8f87fa90b1da8f8, + FFFF0b1da9607fa90b1da960, + FFFF0b1da9c87fa90b1da9c8, + FFFF0b1daa307fa90b1daa30, + FFFF0b1daa987fa90b1daa98, + FFFF0b1dab007fa90b1dab00, + FFFF0b1dab687fa90b1dab68, + FFFF0b1dabd07fa90b1dabd0, + FFFF0b1dac387fa90b1dac38, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2803,79 +2803,79 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of LowLevelParticles */ - FFFFe1822d587ffde1822d58 /* PtBatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe1822d587ffde1822d58 /* PtBatcher.cpp */; }; - FFFFe1822dc07ffde1822dc0 /* PtBodyTransformVault.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe1822dc07ffde1822dc0 /* PtBodyTransformVault.cpp */; }; - FFFFe1822e287ffde1822e28 /* PtCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe1822e287ffde1822e28 /* PtCollision.cpp */; }; - FFFFe1822e907ffde1822e90 /* PtCollisionBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe1822e907ffde1822e90 /* PtCollisionBox.cpp */; }; - FFFFe1822ef87ffde1822ef8 /* PtCollisionCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe1822ef87ffde1822ef8 /* PtCollisionCapsule.cpp */; }; - FFFFe1822f607ffde1822f60 /* PtCollisionConvex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe1822f607ffde1822f60 /* PtCollisionConvex.cpp */; }; - FFFFe1822fc87ffde1822fc8 /* PtCollisionMesh.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe1822fc87ffde1822fc8 /* PtCollisionMesh.cpp */; }; - FFFFe18230307ffde1823030 /* PtCollisionPlane.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe18230307ffde1823030 /* PtCollisionPlane.cpp */; }; - FFFFe18230987ffde1823098 /* PtCollisionSphere.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe18230987ffde1823098 /* PtCollisionSphere.cpp */; }; - FFFFe18231007ffde1823100 /* PtContextCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe18231007ffde1823100 /* PtContextCpu.cpp */; }; - FFFFe18231687ffde1823168 /* PtDynamics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe18231687ffde1823168 /* PtDynamics.cpp */; }; - FFFFe18231d07ffde18231d0 /* PtParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe18231d07ffde18231d0 /* PtParticleData.cpp */; }; - FFFFe18232387ffde1823238 /* PtParticleShapeCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe18232387ffde1823238 /* PtParticleShapeCpu.cpp */; }; - FFFFe18232a07ffde18232a0 /* PtParticleSystemSimCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe18232a07ffde18232a0 /* PtParticleSystemSimCpu.cpp */; }; - FFFFe18233087ffde1823308 /* PtSpatialHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe18233087ffde1823308 /* PtSpatialHash.cpp */; }; - FFFFe18233707ffde1823370 /* PtSpatialLocalHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe18233707ffde1823370 /* PtSpatialLocalHash.cpp */; }; + FFFF0c03fb587fa90c03fb58 /* PtBatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c03fb587fa90c03fb58 /* PtBatcher.cpp */; }; + FFFF0c03fbc07fa90c03fbc0 /* PtBodyTransformVault.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c03fbc07fa90c03fbc0 /* PtBodyTransformVault.cpp */; }; + FFFF0c03fc287fa90c03fc28 /* PtCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c03fc287fa90c03fc28 /* PtCollision.cpp */; }; + FFFF0c03fc907fa90c03fc90 /* PtCollisionBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c03fc907fa90c03fc90 /* PtCollisionBox.cpp */; }; + FFFF0c03fcf87fa90c03fcf8 /* PtCollisionCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c03fcf87fa90c03fcf8 /* PtCollisionCapsule.cpp */; }; + FFFF0c03fd607fa90c03fd60 /* PtCollisionConvex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c03fd607fa90c03fd60 /* PtCollisionConvex.cpp */; }; + FFFF0c03fdc87fa90c03fdc8 /* PtCollisionMesh.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c03fdc87fa90c03fdc8 /* PtCollisionMesh.cpp */; }; + FFFF0c03fe307fa90c03fe30 /* PtCollisionPlane.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c03fe307fa90c03fe30 /* PtCollisionPlane.cpp */; }; + FFFF0c03fe987fa90c03fe98 /* PtCollisionSphere.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c03fe987fa90c03fe98 /* PtCollisionSphere.cpp */; }; + FFFF0c03ff007fa90c03ff00 /* PtContextCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c03ff007fa90c03ff00 /* PtContextCpu.cpp */; }; + FFFF0c03ff687fa90c03ff68 /* PtDynamics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c03ff687fa90c03ff68 /* PtDynamics.cpp */; }; + FFFF0c03ffd07fa90c03ffd0 /* PtParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c03ffd07fa90c03ffd0 /* PtParticleData.cpp */; }; + FFFF0c0400387fa90c040038 /* PtParticleShapeCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0400387fa90c040038 /* PtParticleShapeCpu.cpp */; }; + FFFF0c0400a07fa90c0400a0 /* PtParticleSystemSimCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0400a07fa90c0400a0 /* PtParticleSystemSimCpu.cpp */; }; + FFFF0c0401087fa90c040108 /* PtSpatialHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0401087fa90c040108 /* PtSpatialHash.cpp */; }; + FFFF0c0401707fa90c040170 /* PtSpatialLocalHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c0401707fa90c040170 /* PtSpatialLocalHash.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDe1484d707ffde1484d70 /* LowLevelParticles */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelParticles"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDe18178007ffde1817800 /* PtBodyTransformVault.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.h"; path = "../../LowLevelParticles/include/PtBodyTransformVault.h"; sourceTree = SOURCE_ROOT; }; - FFFDe18178687ffde1817868 /* PtContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContext.h"; path = "../../LowLevelParticles/include/PtContext.h"; sourceTree = SOURCE_ROOT; }; - FFFDe18178d07ffde18178d0 /* PtGridCellVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtGridCellVector.h"; path = "../../LowLevelParticles/include/PtGridCellVector.h"; sourceTree = SOURCE_ROOT; }; - FFFDe18179387ffde1817938 /* PtParticle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticle.h"; path = "../../LowLevelParticles/include/PtParticle.h"; sourceTree = SOURCE_ROOT; }; - FFFDe18179a07ffde18179a0 /* PtParticleContactManagerStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleContactManagerStream.h"; path = "../../LowLevelParticles/include/PtParticleContactManagerStream.h"; sourceTree = SOURCE_ROOT; }; - FFFDe1817a087ffde1817a08 /* PtParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.h"; path = "../../LowLevelParticles/include/PtParticleData.h"; sourceTree = SOURCE_ROOT; }; - FFFDe1817a707ffde1817a70 /* PtParticleShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShape.h"; path = "../../LowLevelParticles/include/PtParticleShape.h"; sourceTree = SOURCE_ROOT; }; - FFFDe1817ad87ffde1817ad8 /* PtParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemCore.h"; path = "../../LowLevelParticles/include/PtParticleSystemCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDe1817b407ffde1817b40 /* PtParticleSystemFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemFlags.h"; path = "../../LowLevelParticles/include/PtParticleSystemFlags.h"; sourceTree = SOURCE_ROOT; }; - FFFDe1817ba87ffde1817ba8 /* PtParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSim.h"; path = "../../LowLevelParticles/include/PtParticleSystemSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDe18224007ffde1822400 /* PtBatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.h"; path = "../../LowLevelParticles/src/PtBatcher.h"; sourceTree = SOURCE_ROOT; }; - FFFDe18224687ffde1822468 /* PtCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.h"; path = "../../LowLevelParticles/src/PtCollision.h"; sourceTree = SOURCE_ROOT; }; - FFFDe18224d07ffde18224d0 /* PtCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionData.h"; path = "../../LowLevelParticles/src/PtCollisionData.h"; sourceTree = SOURCE_ROOT; }; - FFFDe18225387ffde1822538 /* PtCollisionHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionHelper.h"; path = "../../LowLevelParticles/src/PtCollisionHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFDe18225a07ffde18225a0 /* PtCollisionMethods.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMethods.h"; path = "../../LowLevelParticles/src/PtCollisionMethods.h"; sourceTree = SOURCE_ROOT; }; - FFFDe18226087ffde1822608 /* PtCollisionParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionParameters.h"; path = "../../LowLevelParticles/src/PtCollisionParameters.h"; sourceTree = SOURCE_ROOT; }; - FFFDe18226707ffde1822670 /* PtConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConfig.h"; path = "../../LowLevelParticles/src/PtConfig.h"; sourceTree = SOURCE_ROOT; }; - FFFDe18226d87ffde18226d8 /* PtConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConstants.h"; path = "../../LowLevelParticles/src/PtConstants.h"; sourceTree = SOURCE_ROOT; }; - FFFDe18227407ffde1822740 /* PtContextCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.h"; path = "../../LowLevelParticles/src/PtContextCpu.h"; sourceTree = SOURCE_ROOT; }; - FFFDe18227a87ffde18227a8 /* PtDynamicHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicHelper.h"; path = "../../LowLevelParticles/src/PtDynamicHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFDe18228107ffde1822810 /* PtDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.h"; path = "../../LowLevelParticles/src/PtDynamics.h"; sourceTree = SOURCE_ROOT; }; - FFFDe18228787ffde1822878 /* PtDynamicsKernels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsKernels.h"; path = "../../LowLevelParticles/src/PtDynamicsKernels.h"; sourceTree = SOURCE_ROOT; }; - FFFDe18228e07ffde18228e0 /* PtDynamicsParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsParameters.h"; path = "../../LowLevelParticles/src/PtDynamicsParameters.h"; sourceTree = SOURCE_ROOT; }; - FFFDe18229487ffde1822948 /* PtDynamicsTempBuffers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsTempBuffers.h"; path = "../../LowLevelParticles/src/PtDynamicsTempBuffers.h"; sourceTree = SOURCE_ROOT; }; - FFFDe18229b07ffde18229b0 /* PtHeightFieldAabbTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtHeightFieldAabbTest.h"; path = "../../LowLevelParticles/src/PtHeightFieldAabbTest.h"; sourceTree = SOURCE_ROOT; }; - FFFDe1822a187ffde1822a18 /* PtPacketSections.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtPacketSections.h"; path = "../../LowLevelParticles/src/PtPacketSections.h"; sourceTree = SOURCE_ROOT; }; - FFFDe1822a807ffde1822a80 /* PtParticleCell.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleCell.h"; path = "../../LowLevelParticles/src/PtParticleCell.h"; sourceTree = SOURCE_ROOT; }; - FFFDe1822ae87ffde1822ae8 /* PtParticleOpcodeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleOpcodeCache.h"; path = "../../LowLevelParticles/src/PtParticleOpcodeCache.h"; sourceTree = SOURCE_ROOT; }; - FFFDe1822b507ffde1822b50 /* PtParticleShapeCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.h"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.h"; sourceTree = SOURCE_ROOT; }; - FFFDe1822bb87ffde1822bb8 /* PtParticleSystemSimCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.h"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.h"; sourceTree = SOURCE_ROOT; }; - FFFDe1822c207ffde1822c20 /* PtSpatialHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.h"; path = "../../LowLevelParticles/src/PtSpatialHash.h"; sourceTree = SOURCE_ROOT; }; - FFFDe1822c887ffde1822c88 /* PtSpatialHashHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHashHelper.h"; path = "../../LowLevelParticles/src/PtSpatialHashHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFDe1822cf07ffde1822cf0 /* PtTwoWayData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtTwoWayData.h"; path = "../../LowLevelParticles/src/PtTwoWayData.h"; sourceTree = SOURCE_ROOT; }; - FFFDe1822d587ffde1822d58 /* PtBatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.cpp"; path = "../../LowLevelParticles/src/PtBatcher.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe1822dc07ffde1822dc0 /* PtBodyTransformVault.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.cpp"; path = "../../LowLevelParticles/src/PtBodyTransformVault.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe1822e287ffde1822e28 /* PtCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.cpp"; path = "../../LowLevelParticles/src/PtCollision.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe1822e907ffde1822e90 /* PtCollisionBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionBox.cpp"; path = "../../LowLevelParticles/src/PtCollisionBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe1822ef87ffde1822ef8 /* PtCollisionCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionCapsule.cpp"; path = "../../LowLevelParticles/src/PtCollisionCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe1822f607ffde1822f60 /* PtCollisionConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionConvex.cpp"; path = "../../LowLevelParticles/src/PtCollisionConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe1822fc87ffde1822fc8 /* PtCollisionMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMesh.cpp"; path = "../../LowLevelParticles/src/PtCollisionMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe18230307ffde1823030 /* PtCollisionPlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionPlane.cpp"; path = "../../LowLevelParticles/src/PtCollisionPlane.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe18230987ffde1823098 /* PtCollisionSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionSphere.cpp"; path = "../../LowLevelParticles/src/PtCollisionSphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe18231007ffde1823100 /* PtContextCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.cpp"; path = "../../LowLevelParticles/src/PtContextCpu.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe18231687ffde1823168 /* PtDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.cpp"; path = "../../LowLevelParticles/src/PtDynamics.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe18231d07ffde18231d0 /* PtParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.cpp"; path = "../../LowLevelParticles/src/PtParticleData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe18232387ffde1823238 /* PtParticleShapeCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe18232a07ffde18232a0 /* PtParticleSystemSimCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe18233087ffde1823308 /* PtSpatialHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialHash.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDe18233707ffde1823370 /* PtSpatialLocalHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialLocalHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialLocalHash.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0bc8f2607fa90bc8f260 /* LowLevelParticles */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelParticles"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD0c03aa007fa90c03aa00 /* PtBodyTransformVault.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.h"; path = "../../LowLevelParticles/include/PtBodyTransformVault.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c03aa687fa90c03aa68 /* PtContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContext.h"; path = "../../LowLevelParticles/include/PtContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c03aad07fa90c03aad0 /* PtGridCellVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtGridCellVector.h"; path = "../../LowLevelParticles/include/PtGridCellVector.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c03ab387fa90c03ab38 /* PtParticle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticle.h"; path = "../../LowLevelParticles/include/PtParticle.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c03aba07fa90c03aba0 /* PtParticleContactManagerStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleContactManagerStream.h"; path = "../../LowLevelParticles/include/PtParticleContactManagerStream.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c03ac087fa90c03ac08 /* PtParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.h"; path = "../../LowLevelParticles/include/PtParticleData.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c03ac707fa90c03ac70 /* PtParticleShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShape.h"; path = "../../LowLevelParticles/include/PtParticleShape.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c03acd87fa90c03acd8 /* PtParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemCore.h"; path = "../../LowLevelParticles/include/PtParticleSystemCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c03ad407fa90c03ad40 /* PtParticleSystemFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemFlags.h"; path = "../../LowLevelParticles/include/PtParticleSystemFlags.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c03ada87fa90c03ada8 /* PtParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSim.h"; path = "../../LowLevelParticles/include/PtParticleSystemSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c03f2007fa90c03f200 /* PtBatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.h"; path = "../../LowLevelParticles/src/PtBatcher.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c03f2687fa90c03f268 /* PtCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.h"; path = "../../LowLevelParticles/src/PtCollision.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c03f2d07fa90c03f2d0 /* PtCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionData.h"; path = "../../LowLevelParticles/src/PtCollisionData.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c03f3387fa90c03f338 /* PtCollisionHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionHelper.h"; path = "../../LowLevelParticles/src/PtCollisionHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c03f3a07fa90c03f3a0 /* PtCollisionMethods.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMethods.h"; path = "../../LowLevelParticles/src/PtCollisionMethods.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c03f4087fa90c03f408 /* PtCollisionParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionParameters.h"; path = "../../LowLevelParticles/src/PtCollisionParameters.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c03f4707fa90c03f470 /* PtConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConfig.h"; path = "../../LowLevelParticles/src/PtConfig.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c03f4d87fa90c03f4d8 /* PtConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConstants.h"; path = "../../LowLevelParticles/src/PtConstants.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c03f5407fa90c03f540 /* PtContextCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.h"; path = "../../LowLevelParticles/src/PtContextCpu.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c03f5a87fa90c03f5a8 /* PtDynamicHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicHelper.h"; path = "../../LowLevelParticles/src/PtDynamicHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c03f6107fa90c03f610 /* PtDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.h"; path = "../../LowLevelParticles/src/PtDynamics.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c03f6787fa90c03f678 /* PtDynamicsKernels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsKernels.h"; path = "../../LowLevelParticles/src/PtDynamicsKernels.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c03f6e07fa90c03f6e0 /* PtDynamicsParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsParameters.h"; path = "../../LowLevelParticles/src/PtDynamicsParameters.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c03f7487fa90c03f748 /* PtDynamicsTempBuffers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsTempBuffers.h"; path = "../../LowLevelParticles/src/PtDynamicsTempBuffers.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c03f7b07fa90c03f7b0 /* PtHeightFieldAabbTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtHeightFieldAabbTest.h"; path = "../../LowLevelParticles/src/PtHeightFieldAabbTest.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c03f8187fa90c03f818 /* PtPacketSections.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtPacketSections.h"; path = "../../LowLevelParticles/src/PtPacketSections.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c03f8807fa90c03f880 /* PtParticleCell.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleCell.h"; path = "../../LowLevelParticles/src/PtParticleCell.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c03f8e87fa90c03f8e8 /* PtParticleOpcodeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleOpcodeCache.h"; path = "../../LowLevelParticles/src/PtParticleOpcodeCache.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c03f9507fa90c03f950 /* PtParticleShapeCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.h"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c03f9b87fa90c03f9b8 /* PtParticleSystemSimCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.h"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c03fa207fa90c03fa20 /* PtSpatialHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.h"; path = "../../LowLevelParticles/src/PtSpatialHash.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c03fa887fa90c03fa88 /* PtSpatialHashHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHashHelper.h"; path = "../../LowLevelParticles/src/PtSpatialHashHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c03faf07fa90c03faf0 /* PtTwoWayData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtTwoWayData.h"; path = "../../LowLevelParticles/src/PtTwoWayData.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c03fb587fa90c03fb58 /* PtBatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.cpp"; path = "../../LowLevelParticles/src/PtBatcher.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c03fbc07fa90c03fbc0 /* PtBodyTransformVault.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.cpp"; path = "../../LowLevelParticles/src/PtBodyTransformVault.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c03fc287fa90c03fc28 /* PtCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.cpp"; path = "../../LowLevelParticles/src/PtCollision.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c03fc907fa90c03fc90 /* PtCollisionBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionBox.cpp"; path = "../../LowLevelParticles/src/PtCollisionBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c03fcf87fa90c03fcf8 /* PtCollisionCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionCapsule.cpp"; path = "../../LowLevelParticles/src/PtCollisionCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c03fd607fa90c03fd60 /* PtCollisionConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionConvex.cpp"; path = "../../LowLevelParticles/src/PtCollisionConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c03fdc87fa90c03fdc8 /* PtCollisionMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMesh.cpp"; path = "../../LowLevelParticles/src/PtCollisionMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c03fe307fa90c03fe30 /* PtCollisionPlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionPlane.cpp"; path = "../../LowLevelParticles/src/PtCollisionPlane.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c03fe987fa90c03fe98 /* PtCollisionSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionSphere.cpp"; path = "../../LowLevelParticles/src/PtCollisionSphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c03ff007fa90c03ff00 /* PtContextCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.cpp"; path = "../../LowLevelParticles/src/PtContextCpu.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c03ff687fa90c03ff68 /* PtDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.cpp"; path = "../../LowLevelParticles/src/PtDynamics.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c03ffd07fa90c03ffd0 /* PtParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.cpp"; path = "../../LowLevelParticles/src/PtParticleData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0400387fa90c040038 /* PtParticleShapeCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0400a07fa90c0400a0 /* PtParticleSystemSimCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0401087fa90c040108 /* PtSpatialHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialHash.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c0401707fa90c040170 /* PtSpatialLocalHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialLocalHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialLocalHash.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2e1484d707ffde1484d70 /* Resources */ = { + FFF20bc8f2607fa90bc8f260 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2885,7 +2885,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCe1484d707ffde1484d70 /* Frameworks */ = { + FFFC0bc8f2607fa90bc8f260 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2895,26 +2895,26 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8e1484d707ffde1484d70 /* Sources */ = { + FFF80bc8f2607fa90bc8f260 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFe1822d587ffde1822d58, - FFFFe1822dc07ffde1822dc0, - FFFFe1822e287ffde1822e28, - FFFFe1822e907ffde1822e90, - FFFFe1822ef87ffde1822ef8, - FFFFe1822f607ffde1822f60, - FFFFe1822fc87ffde1822fc8, - FFFFe18230307ffde1823030, - FFFFe18230987ffde1823098, - FFFFe18231007ffde1823100, - FFFFe18231687ffde1823168, - FFFFe18231d07ffde18231d0, - FFFFe18232387ffde1823238, - FFFFe18232a07ffde18232a0, - FFFFe18233087ffde1823308, - FFFFe18233707ffde1823370, + FFFF0c03fb587fa90c03fb58, + FFFF0c03fbc07fa90c03fbc0, + FFFF0c03fc287fa90c03fc28, + FFFF0c03fc907fa90c03fc90, + FFFF0c03fcf87fa90c03fcf8, + FFFF0c03fd607fa90c03fd60, + FFFF0c03fdc87fa90c03fdc8, + FFFF0c03fe307fa90c03fe30, + FFFF0c03fe987fa90c03fe98, + FFFF0c03ff007fa90c03ff00, + FFFF0c03ff687fa90c03ff68, + FFFF0c03ffd07fa90c03ffd0, + FFFF0c0400387fa90c040038, + FFFF0c0400a07fa90c0400a0, + FFFF0c0401087fa90c040108, + FFFF0c0401707fa90c040170, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2926,22 +2926,22 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PxTask */ - FFFFe2f4e2807ffde2f4e280 /* src/TaskManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe2f4e2807ffde2f4e280 /* src/TaskManager.cpp */; }; + FFFF0c8f52b07fa90c8f52b0 /* src/TaskManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0c8f52b07fa90c8f52b0 /* src/TaskManager.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDe2f4cec07ffde2f4cec0 /* PxTask */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxTask"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDe2f4e0107ffde2f4e010 /* PxCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCpuDispatcher.h"; path = "../../../../PxShared/include/task/PxCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2f4e0787ffde2f4e078 /* PxGpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuDispatcher.h"; path = "../../../../PxShared/include/task/PxGpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2f4e0e07ffde2f4e0e0 /* PxGpuTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuTask.h"; path = "../../../../PxShared/include/task/PxGpuTask.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2f4e1487ffde2f4e148 /* PxTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTask.h"; path = "../../../../PxShared/include/task/PxTask.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2f4e1b07ffde2f4e1b0 /* PxTaskDefine.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskDefine.h"; path = "../../../../PxShared/include/task/PxTaskDefine.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2f4e2187ffde2f4e218 /* PxTaskManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskManager.h"; path = "../../../../PxShared/include/task/PxTaskManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDe2f4e2807ffde2f4e280 /* src/TaskManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/TaskManager.cpp"; path = "../../../../PxShared/src/task/src/TaskManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0c8f73507fa90c8f7350 /* PxTask */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxTask"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD0c8f4fb07fa90c8f4fb0 /* PxCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCpuDispatcher.h"; path = "../../../../PxShared/include/task/PxCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c8f50187fa90c8f5018 /* PxGpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuDispatcher.h"; path = "../../../../PxShared/include/task/PxGpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c8f50807fa90c8f5080 /* PxGpuTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuTask.h"; path = "../../../../PxShared/include/task/PxGpuTask.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c8f50e87fa90c8f50e8 /* PxTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTask.h"; path = "../../../../PxShared/include/task/PxTask.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c8f51507fa90c8f5150 /* PxTaskDefine.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskDefine.h"; path = "../../../../PxShared/include/task/PxTaskDefine.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c8f51b87fa90c8f51b8 /* PxTaskManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskManager.h"; path = "../../../../PxShared/include/task/PxTaskManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD0c8f52b07fa90c8f52b0 /* 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 */ - FFF2e2f4cec07ffde2f4cec0 /* Resources */ = { + FFF20c8f73507fa90c8f7350 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2951,7 +2951,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCe2f4cec07ffde2f4cec0 /* Frameworks */ = { + FFFC0c8f73507fa90c8f7350 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2961,11 +2961,11 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8e2f4cec07ffde2f4cec0 /* Sources */ = { + FFF80c8f73507fa90c8f7350 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFe2f4e2807ffde2f4e280, + FFFF0c8f52b07fa90c8f52b0, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2977,17 +2977,17 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PsFastXml */ - FFFFe29434907ffde2943490 /* PsFastXml.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDe29434907ffde2943490 /* PsFastXml.cpp */; }; + FFFF0cac71a07fa90cac71a0 /* PsFastXml.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0cac71a07fa90cac71a0 /* PsFastXml.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDe2942d107ffde2942d10 /* PsFastXml */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PsFastXml"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDe29433907ffde2943390 /* PsFastXml.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PsFastXml.h"; path = "../../../../PxShared/src/fastxml/include/PsFastXml.h"; sourceTree = SOURCE_ROOT; }; - FFFDe29434907ffde2943490 /* PsFastXml.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PsFastXml.cpp"; path = "../../../../PxShared/src/fastxml/src/PsFastXml.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD0cac6a007fa90cac6a00 /* PsFastXml */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PsFastXml"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD0cac70a07fa90cac70a0 /* PsFastXml.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PsFastXml.h"; path = "../../../../PxShared/src/fastxml/include/PsFastXml.h"; sourceTree = SOURCE_ROOT; }; + FFFD0cac71a07fa90cac71a0 /* 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 */ - FFF2e2942d107ffde2942d10 /* Resources */ = { + FFF20cac6a007fa90cac6a00 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2997,7 +2997,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCe2942d107ffde2942d10 /* Frameworks */ = { + FFFC0cac6a007fa90cac6a00 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -3007,11 +3007,11 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8e2942d107ffde2942d10 /* Sources */ = { + FFF80cac6a007fa90cac6a00 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFe29434907ffde2943490, + FFFF0cac71a07fa90cac71a0, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -3023,1967 +3023,1967 @@ /* End PBXTargetDependency section */ /* Begin PBXContainerItemProxy section */ - FFF5e29464b07ffde29464b0 /* PBXContainerItemProxy */ = { - containerPortal = FFF9e170df007ffde170df00 /* Project object */; + FFF50cae9cd07fa90cae9cd0 /* PBXContainerItemProxy */ = { + containerPortal = FFF90ac82b107fa90ac82b10 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAe29464b07ffde29464b0 /* PhysX */; + remoteGlobalIDString = FFFA0cae9cd07fa90cae9cd0 /* PhysX */; remoteInfo = "PhysX"; }; - FFF5e294ef707ffde294ef70 /* PBXContainerItemProxy */ = { - containerPortal = FFF9e170df007ffde170df00 /* Project object */; + FFF50caf3c407fa90caf3c40 /* PBXContainerItemProxy */ = { + containerPortal = FFF90ac82b107fa90ac82b10 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAe294ef707ffde294ef70 /* PhysXCharacterKinematic */; + remoteGlobalIDString = FFFA0caf3c407fa90caf3c40 /* PhysXCharacterKinematic */; remoteInfo = "PhysXCharacterKinematic"; }; - FFF5e29504707ffde2950470 /* PBXContainerItemProxy */ = { - containerPortal = FFF9e170df007ffde170df00 /* Project object */; + FFF50caf0ea07fa90caf0ea0 /* PBXContainerItemProxy */ = { + containerPortal = FFF90ac82b107fa90ac82b10 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAe29504707ffde2950470 /* PhysXVehicle */; + remoteGlobalIDString = FFFA0caf0ea07fa90caf0ea0 /* PhysXVehicle */; remoteInfo = "PhysXVehicle"; }; - FFF5e29617f07ffde29617f0 /* PBXContainerItemProxy */ = { - containerPortal = FFF9e170df007ffde170df00 /* Project object */; + FFF50cb04a207fa90cb04a20 /* PBXContainerItemProxy */ = { + containerPortal = FFF90ac82b107fa90ac82b10 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAe29617f07ffde29617f0 /* PhysXExtensions */; + remoteGlobalIDString = FFFA0cb04a207fa90cb04a20 /* PhysXExtensions */; remoteInfo = "PhysXExtensions"; }; - FFF5e450b7207ffde450b720 /* PBXContainerItemProxy */ = { - containerPortal = FFF9e170df007ffde170df00 /* Project object */; + FFF50cb173f07fa90cb173f0 /* PBXContainerItemProxy */ = { + containerPortal = FFF90ac82b107fa90ac82b10 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAe450b7207ffde450b720 /* SceneQuery */; + remoteGlobalIDString = FFFA0cb173f07fa90cb173f0 /* SceneQuery */; remoteInfo = "SceneQuery"; }; - FFF5e450fbf07ffde450fbf0 /* PBXContainerItemProxy */ = { - containerPortal = FFF9e170df007ffde170df00 /* Project object */; + FFF50cb1ba307fa90cb1ba30 /* PBXContainerItemProxy */ = { + containerPortal = FFF90ac82b107fa90ac82b10 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAe450fbf07ffde450fbf0 /* SimulationController */; + remoteGlobalIDString = FFFA0cb1ba307fa90cb1ba30 /* SimulationController */; remoteInfo = "SimulationController"; }; - FFF5e2d74eb07ffde2d74eb0 /* PBXContainerItemProxy */ = { - containerPortal = FFF9e170df007ffde170df00 /* Project object */; + FFF50cb201d07fa90cb201d0 /* PBXContainerItemProxy */ = { + containerPortal = FFF90ac82b107fa90ac82b10 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAe2d74eb07ffde2d74eb0 /* PhysXCooking */; + remoteGlobalIDString = FFFA0cb201d07fa90cb201d0 /* PhysXCooking */; remoteInfo = "PhysXCooking"; }; - FFF5e2c17a107ffde2c17a10 /* PBXContainerItemProxy */ = { - containerPortal = FFF9e170df007ffde170df00 /* Project object */; + FFF50b897c207fa90b897c20 /* PBXContainerItemProxy */ = { + containerPortal = FFF90ac82b107fa90ac82b10 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAe2c17a107ffde2c17a10 /* PhysXCommon */; + remoteGlobalIDString = FFFA0b897c207fa90b897c20 /* PhysXCommon */; remoteInfo = "PhysXCommon"; }; - FFF5e2c0b7d07ffde2c0b7d0 /* PBXContainerItemProxy */ = { - containerPortal = FFF9e170df007ffde170df00 /* Project object */; + FFF50b8818007fa90b881800 /* PBXContainerItemProxy */ = { + containerPortal = FFF90ac82b107fa90ac82b10 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAe2c0b7d07ffde2c0b7d0 /* PxFoundation */; + remoteGlobalIDString = FFFA0b8818007fa90b881800 /* PxFoundation */; remoteInfo = "PxFoundation"; }; - FFF5e29691807ffde2969180 /* PBXContainerItemProxy */ = { - containerPortal = FFF9e170df007ffde170df00 /* Project object */; + FFF50bc33a807fa90bc33a80 /* PBXContainerItemProxy */ = { + containerPortal = FFF90ac82b107fa90ac82b10 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAe29691807ffde2969180 /* PxPvdSDK */; + remoteGlobalIDString = FFFA0bc33a807fa90bc33a80 /* PxPvdSDK */; remoteInfo = "PxPvdSDK"; }; - FFF5e2f1a6b07ffde2f1a6b0 /* PBXContainerItemProxy */ = { - containerPortal = FFF9e170df007ffde170df00 /* Project object */; + FFF50bc50de07fa90bc50de0 /* PBXContainerItemProxy */ = { + containerPortal = FFF90ac82b107fa90ac82b10 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAe2f1a6b07ffde2f1a6b0 /* LowLevel */; + remoteGlobalIDString = FFFA0bc50de07fa90bc50de0 /* LowLevel */; remoteInfo = "LowLevel"; }; - FFF5e2d334507ffde2d33450 /* PBXContainerItemProxy */ = { - containerPortal = FFF9e170df007ffde170df00 /* Project object */; + FFF50bb097007fa90bb09700 /* PBXContainerItemProxy */ = { + containerPortal = FFF90ac82b107fa90ac82b10 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAe2d334507ffde2d33450 /* LowLevelAABB */; + remoteGlobalIDString = FFFA0bb097007fa90bb09700 /* LowLevelAABB */; remoteInfo = "LowLevelAABB"; }; - FFF5e2d544f07ffde2d544f0 /* PBXContainerItemProxy */ = { - containerPortal = FFF9e170df007ffde170df00 /* Project object */; + FFF50bc6a7707fa90bc6a770 /* PBXContainerItemProxy */ = { + containerPortal = FFF90ac82b107fa90ac82b10 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAe2d544f07ffde2d544f0 /* LowLevelDynamics */; + remoteGlobalIDString = FFFA0bc6a7707fa90bc6a770 /* LowLevelDynamics */; remoteInfo = "LowLevelDynamics"; }; - FFF5e292cb407ffde292cb40 /* PBXContainerItemProxy */ = { - containerPortal = FFF9e170df007ffde170df00 /* Project object */; + FFF50be0eb007fa90be0eb00 /* PBXContainerItemProxy */ = { + containerPortal = FFF90ac82b107fa90ac82b10 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAe292cb407ffde292cb40 /* LowLevelCloth */; + remoteGlobalIDString = FFFA0be0eb007fa90be0eb00 /* LowLevelCloth */; remoteInfo = "LowLevelCloth"; }; - FFF5e1484d707ffde1484d70 /* PBXContainerItemProxy */ = { - containerPortal = FFF9e170df007ffde170df00 /* Project object */; + FFF50bc8f2607fa90bc8f260 /* PBXContainerItemProxy */ = { + containerPortal = FFF90ac82b107fa90ac82b10 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAe1484d707ffde1484d70 /* LowLevelParticles */; + remoteGlobalIDString = FFFA0bc8f2607fa90bc8f260 /* LowLevelParticles */; remoteInfo = "LowLevelParticles"; }; - FFF5e2f4cec07ffde2f4cec0 /* PBXContainerItemProxy */ = { - containerPortal = FFF9e170df007ffde170df00 /* Project object */; + FFF50c8f73507fa90c8f7350 /* PBXContainerItemProxy */ = { + containerPortal = FFF90ac82b107fa90ac82b10 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAe2f4cec07ffde2f4cec0 /* PxTask */; + remoteGlobalIDString = FFFA0c8f73507fa90c8f7350 /* PxTask */; remoteInfo = "PxTask"; }; - FFF5e2942d107ffde2942d10 /* PBXContainerItemProxy */ = { - containerPortal = FFF9e170df007ffde170df00 /* Project object */; + FFF50cac6a007fa90cac6a00 /* PBXContainerItemProxy */ = { + containerPortal = FFF90ac82b107fa90ac82b10 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAe2942d107ffde2942d10 /* PsFastXml */; + remoteGlobalIDString = FFFA0cac6a007fa90cac6a00 /* PsFastXml */; remoteInfo = "PsFastXml"; }; /* End PBXContainerItemProxy section */ /* Begin PBXGroup section */ - FFFBe170df687ffde170df68 /* PhysX */ = { + FFFB0ac82b787fa90ac82b78 /* PhysX */ = { isa = PBXGroup; children = ( - FFF0e170df007ffde170df00 /* Source */, - FFEEe170df007ffde170df00 /* Products */, + FFF00ac82b107fa90ac82b10 /* Source */, + FFEE0ac82b107fa90ac82b10 /* Products */, ); name = "PhysX"; sourceTree = "<group>"; }; - FFF0e170df007ffde170df00 /* Source */ = { + FFF00ac82b107fa90ac82b10 /* Source */ = { isa = PBXGroup; children = ( - FFFBe29464b07ffde29464b0, - FFFBe294ef707ffde294ef70, - FFFBe29504707ffde2950470, - FFFBe29617f07ffde29617f0, - FFFBe450b7207ffde450b720, - FFFBe450fbf07ffde450fbf0, - FFFBe2d74eb07ffde2d74eb0, - FFFBe2c17a107ffde2c17a10, - FFFBe2c0b7d07ffde2c0b7d0, - FFFBe29691807ffde2969180, - FFFBe2f1a6b07ffde2f1a6b0, - FFFBe2d334507ffde2d33450, - FFFBe2d544f07ffde2d544f0, - FFFBe292cb407ffde292cb40, - FFFBe1484d707ffde1484d70, - FFFBe2f4cec07ffde2f4cec0, - FFFBe2942d107ffde2942d10, + FFFB0cae9cd07fa90cae9cd0, + FFFB0caf3c407fa90caf3c40, + FFFB0caf0ea07fa90caf0ea0, + FFFB0cb04a207fa90cb04a20, + FFFB0cb173f07fa90cb173f0, + FFFB0cb1ba307fa90cb1ba30, + FFFB0cb201d07fa90cb201d0, + FFFB0b897c207fa90b897c20, + FFFB0b8818007fa90b881800, + FFFB0bc33a807fa90bc33a80, + FFFB0bc50de07fa90bc50de0, + FFFB0bb097007fa90bb09700, + FFFB0bc6a7707fa90bc6a770, + FFFB0be0eb007fa90be0eb00, + FFFB0bc8f2607fa90bc8f260, + FFFB0c8f73507fa90c8f7350, + FFFB0cac6a007fa90cac6a00, ); name = Source; sourceTree = "<group>"; }; - FFEEe170df007ffde170df00 /* Products */ = { + FFEE0ac82b107fa90ac82b10 /* Products */ = { isa = PBXGroup; children = ( - FFFDe29464b07ffde29464b0, - FFFDe294ef707ffde294ef70, - FFFDe29504707ffde2950470, - FFFDe29617f07ffde29617f0, - FFFDe450b7207ffde450b720, - FFFDe450fbf07ffde450fbf0, - FFFDe2d74eb07ffde2d74eb0, - FFFDe2c17a107ffde2c17a10, - FFFDe2c0b7d07ffde2c0b7d0, - FFFDe29691807ffde2969180, - FFFDe2f1a6b07ffde2f1a6b0, - FFFDe2d334507ffde2d33450, - FFFDe2d544f07ffde2d544f0, - FFFDe292cb407ffde292cb40, - FFFDe1484d707ffde1484d70, - FFFDe2f4cec07ffde2f4cec0, - FFFDe2942d107ffde2942d10, + FFFD0cae9cd07fa90cae9cd0, + FFFD0caf3c407fa90caf3c40, + FFFD0caf0ea07fa90caf0ea0, + FFFD0cb04a207fa90cb04a20, + FFFD0cb173f07fa90cb173f0, + FFFD0cb1ba307fa90cb1ba30, + FFFD0cb201d07fa90cb201d0, + FFFD0b897c207fa90b897c20, + FFFD0b8818007fa90b881800, + FFFD0bc33a807fa90bc33a80, + FFFD0bc50de07fa90bc50de0, + FFFD0bb097007fa90bb09700, + FFFD0bc6a7707fa90bc6a770, + FFFD0be0eb007fa90be0eb00, + FFFD0bc8f2607fa90bc8f260, + FFFD0c8f73507fa90c8f7350, + FFFD0cac6a007fa90cac6a00, ); name = Products; sourceTree = "<group>"; }; - FFFBe29464b07ffde29464b0 /* PhysX */ = { + FFFB0cae9cd07fa90cae9cd0 /* PhysX */ = { isa = PBXGroup; children = ( - FFFBe2956d507ffde2956d50 /* src */, - FFFBe2956d787ffde2956d78 /* include */, - FFFBe2956da07ffde2956da0 /* metadata */, + FFFB0caf77707fa90caf7770 /* src */, + FFFB0caf77987fa90caf7798 /* include */, + FFFB0caf77c07fa90caf77c0 /* metadata */, ); name = "PhysX"; sourceTree = "<group>"; }; - FFFBe2956d507ffde2956d50 /* src */ = { + FFFB0caf77707fa90caf7770 /* src */ = { isa = PBXGroup; children = ( - FFFDe2193e007ffde2193e00 /* NpActor.h */, - FFFDe2193e687ffde2193e68 /* NpActorTemplate.h */, - FFFDe2193ed07ffde2193ed0 /* NpAggregate.h */, - FFFDe2193f387ffde2193f38 /* NpArticulation.h */, - FFFDe2193fa07ffde2193fa0 /* NpArticulationJoint.h */, - FFFDe21940087ffde2194008 /* NpArticulationLink.h */, - FFFDe21940707ffde2194070 /* NpBatchQuery.h */, - FFFDe21940d87ffde21940d8 /* NpCast.h */, - FFFDe21941407ffde2194140 /* NpConnector.h */, - FFFDe21941a87ffde21941a8 /* NpConstraint.h */, - FFFDe21942107ffde2194210 /* NpFactory.h */, - FFFDe21942787ffde2194278 /* NpMaterial.h */, - FFFDe21942e07ffde21942e0 /* NpMaterialManager.h */, - FFFDe21943487ffde2194348 /* NpPhysics.h */, - FFFDe21943b07ffde21943b0 /* NpPhysicsInsertionCallback.h */, - FFFDe21944187ffde2194418 /* NpPtrTableStorageManager.h */, - FFFDe21944807ffde2194480 /* NpPvdSceneQueryCollector.h */, - FFFDe21944e87ffde21944e8 /* NpQueryShared.h */, - FFFDe21945507ffde2194550 /* NpReadCheck.h */, - FFFDe21945b87ffde21945b8 /* NpRigidActorTemplate.h */, - FFFDe21946207ffde2194620 /* NpRigidActorTemplateInternal.h */, - FFFDe21946887ffde2194688 /* NpRigidBodyTemplate.h */, - FFFDe21946f07ffde21946f0 /* NpRigidDynamic.h */, - FFFDe21947587ffde2194758 /* NpRigidStatic.h */, - FFFDe21947c07ffde21947c0 /* NpScene.h */, - FFFDe21948287ffde2194828 /* NpSceneQueries.h */, - FFFDe21948907ffde2194890 /* NpShape.h */, - FFFDe21948f87ffde21948f8 /* NpShapeManager.h */, - FFFDe21949607ffde2194960 /* NpSpatialIndex.h */, - FFFDe21949c87ffde21949c8 /* NpVolumeCache.h */, - FFFDe2194a307ffde2194a30 /* NpWriteCheck.h */, - FFFDe2194a987ffde2194a98 /* PvdMetaDataBindingData.h */, - FFFDe2194b007ffde2194b00 /* PvdMetaDataPvdBinding.h */, - FFFDe2194b687ffde2194b68 /* PvdPhysicsClient.h */, - FFFDe2194bd07ffde2194bd0 /* PvdTypeNames.h */, - FFFDe2194c387ffde2194c38 /* NpActor.cpp */, - FFFDe2194ca07ffde2194ca0 /* NpAggregate.cpp */, - FFFDe2194d087ffde2194d08 /* NpArticulation.cpp */, - FFFDe2194d707ffde2194d70 /* NpArticulationJoint.cpp */, - FFFDe2194dd87ffde2194dd8 /* NpArticulationLink.cpp */, - FFFDe2194e407ffde2194e40 /* NpBatchQuery.cpp */, - FFFDe2194ea87ffde2194ea8 /* NpConstraint.cpp */, - FFFDe2194f107ffde2194f10 /* NpFactory.cpp */, - FFFDe2194f787ffde2194f78 /* NpMaterial.cpp */, - FFFDe2194fe07ffde2194fe0 /* NpMetaData.cpp */, - FFFDe21950487ffde2195048 /* NpPhysics.cpp */, - FFFDe21950b07ffde21950b0 /* NpPvdSceneQueryCollector.cpp */, - FFFDe21951187ffde2195118 /* NpReadCheck.cpp */, - FFFDe21951807ffde2195180 /* NpRigidDynamic.cpp */, - FFFDe21951e87ffde21951e8 /* NpRigidStatic.cpp */, - FFFDe21952507ffde2195250 /* NpScene.cpp */, - FFFDe21952b87ffde21952b8 /* NpSceneQueries.cpp */, - FFFDe21953207ffde2195320 /* NpSerializerAdapter.cpp */, - FFFDe21953887ffde2195388 /* NpShape.cpp */, - FFFDe21953f07ffde21953f0 /* NpShapeManager.cpp */, - FFFDe21954587ffde2195458 /* NpSpatialIndex.cpp */, - FFFDe21954c07ffde21954c0 /* NpVolumeCache.cpp */, - FFFDe21955287ffde2195528 /* NpWriteCheck.cpp */, - FFFDe21955907ffde2195590 /* PvdMetaDataPvdBinding.cpp */, - FFFDe21955f87ffde21955f8 /* PvdPhysicsClient.cpp */, - FFFDe21956607ffde2195660 /* particles/NpParticleBaseTemplate.h */, - FFFDe21956c87ffde21956c8 /* particles/NpParticleFluid.h */, - FFFDe21957307ffde2195730 /* particles/NpParticleFluidReadData.h */, - FFFDe21957987ffde2195798 /* particles/NpParticleSystem.h */, - FFFDe21958007ffde2195800 /* particles/NpParticleFluid.cpp */, - FFFDe21958687ffde2195868 /* particles/NpParticleSystem.cpp */, - FFFDe21958d07ffde21958d0 /* buffering/ScbActor.h */, - FFFDe21959387ffde2195938 /* buffering/ScbAggregate.h */, - FFFDe21959a07ffde21959a0 /* buffering/ScbArticulation.h */, - FFFDe2195a087ffde2195a08 /* buffering/ScbArticulationJoint.h */, - FFFDe2195a707ffde2195a70 /* buffering/ScbBase.h */, - FFFDe2195ad87ffde2195ad8 /* buffering/ScbBody.h */, - FFFDe2195b407ffde2195b40 /* buffering/ScbCloth.h */, - FFFDe2195ba87ffde2195ba8 /* buffering/ScbConstraint.h */, - FFFDe2195c107ffde2195c10 /* buffering/ScbDefs.h */, - FFFDe2195c787ffde2195c78 /* buffering/ScbNpDeps.h */, - FFFDe2195ce07ffde2195ce0 /* buffering/ScbParticleSystem.h */, - FFFDe2195d487ffde2195d48 /* buffering/ScbRigidObject.h */, - FFFDe2195db07ffde2195db0 /* buffering/ScbRigidStatic.h */, - FFFDe2195e187ffde2195e18 /* buffering/ScbScene.h */, - FFFDe2195e807ffde2195e80 /* buffering/ScbSceneBuffer.h */, - FFFDe2195ee87ffde2195ee8 /* buffering/ScbScenePvdClient.h */, - FFFDe2195f507ffde2195f50 /* buffering/ScbShape.h */, - FFFDe2195fb87ffde2195fb8 /* buffering/ScbType.h */, - FFFDe21960207ffde2196020 /* buffering/ScbActor.cpp */, - FFFDe21960887ffde2196088 /* buffering/ScbAggregate.cpp */, - FFFDe21960f07ffde21960f0 /* buffering/ScbBase.cpp */, - FFFDe21961587ffde2196158 /* buffering/ScbCloth.cpp */, - FFFDe21961c07ffde21961c0 /* buffering/ScbMetaData.cpp */, - FFFDe21962287ffde2196228 /* buffering/ScbParticleSystem.cpp */, - FFFDe21962907ffde2196290 /* buffering/ScbScene.cpp */, - FFFDe21962f87ffde21962f8 /* buffering/ScbScenePvdClient.cpp */, - FFFDe21963607ffde2196360 /* buffering/ScbShape.cpp */, - FFFDe21963c87ffde21963c8 /* cloth/NpCloth.h */, - FFFDe21964307ffde2196430 /* cloth/NpClothFabric.h */, - FFFDe21964987ffde2196498 /* cloth/NpClothParticleData.h */, - FFFDe21965007ffde2196500 /* cloth/NpCloth.cpp */, - FFFDe21965687ffde2196568 /* cloth/NpClothFabric.cpp */, - FFFDe21965d07ffde21965d0 /* cloth/NpClothParticleData.cpp */, - FFFDe21966387ffde2196638 /* ../../ImmediateMode/src/NpImmediateMode.cpp */, + FFFD0c0910007fa90c091000 /* NpActor.h */, + FFFD0c0910687fa90c091068 /* NpActorTemplate.h */, + FFFD0c0910d07fa90c0910d0 /* NpAggregate.h */, + FFFD0c0911387fa90c091138 /* NpArticulation.h */, + FFFD0c0911a07fa90c0911a0 /* NpArticulationJoint.h */, + FFFD0c0912087fa90c091208 /* NpArticulationLink.h */, + FFFD0c0912707fa90c091270 /* NpBatchQuery.h */, + FFFD0c0912d87fa90c0912d8 /* NpCast.h */, + FFFD0c0913407fa90c091340 /* NpConnector.h */, + FFFD0c0913a87fa90c0913a8 /* NpConstraint.h */, + FFFD0c0914107fa90c091410 /* NpFactory.h */, + FFFD0c0914787fa90c091478 /* NpMaterial.h */, + FFFD0c0914e07fa90c0914e0 /* NpMaterialManager.h */, + FFFD0c0915487fa90c091548 /* NpPhysics.h */, + FFFD0c0915b07fa90c0915b0 /* NpPhysicsInsertionCallback.h */, + FFFD0c0916187fa90c091618 /* NpPtrTableStorageManager.h */, + FFFD0c0916807fa90c091680 /* NpPvdSceneQueryCollector.h */, + FFFD0c0916e87fa90c0916e8 /* NpQueryShared.h */, + FFFD0c0917507fa90c091750 /* NpReadCheck.h */, + FFFD0c0917b87fa90c0917b8 /* NpRigidActorTemplate.h */, + FFFD0c0918207fa90c091820 /* NpRigidActorTemplateInternal.h */, + FFFD0c0918887fa90c091888 /* NpRigidBodyTemplate.h */, + FFFD0c0918f07fa90c0918f0 /* NpRigidDynamic.h */, + FFFD0c0919587fa90c091958 /* NpRigidStatic.h */, + FFFD0c0919c07fa90c0919c0 /* NpScene.h */, + FFFD0c091a287fa90c091a28 /* NpSceneQueries.h */, + FFFD0c091a907fa90c091a90 /* NpShape.h */, + FFFD0c091af87fa90c091af8 /* NpShapeManager.h */, + FFFD0c091b607fa90c091b60 /* NpSpatialIndex.h */, + FFFD0c091bc87fa90c091bc8 /* NpVolumeCache.h */, + FFFD0c091c307fa90c091c30 /* NpWriteCheck.h */, + FFFD0c091c987fa90c091c98 /* PvdMetaDataBindingData.h */, + FFFD0c091d007fa90c091d00 /* PvdMetaDataPvdBinding.h */, + FFFD0c091d687fa90c091d68 /* PvdPhysicsClient.h */, + FFFD0c091dd07fa90c091dd0 /* PvdTypeNames.h */, + FFFD0c091e387fa90c091e38 /* NpActor.cpp */, + FFFD0c091ea07fa90c091ea0 /* NpAggregate.cpp */, + FFFD0c091f087fa90c091f08 /* NpArticulation.cpp */, + FFFD0c091f707fa90c091f70 /* NpArticulationJoint.cpp */, + FFFD0c091fd87fa90c091fd8 /* NpArticulationLink.cpp */, + FFFD0c0920407fa90c092040 /* NpBatchQuery.cpp */, + FFFD0c0920a87fa90c0920a8 /* NpConstraint.cpp */, + FFFD0c0921107fa90c092110 /* NpFactory.cpp */, + FFFD0c0921787fa90c092178 /* NpMaterial.cpp */, + FFFD0c0921e07fa90c0921e0 /* NpMetaData.cpp */, + FFFD0c0922487fa90c092248 /* NpPhysics.cpp */, + FFFD0c0922b07fa90c0922b0 /* NpPvdSceneQueryCollector.cpp */, + FFFD0c0923187fa90c092318 /* NpReadCheck.cpp */, + FFFD0c0923807fa90c092380 /* NpRigidDynamic.cpp */, + FFFD0c0923e87fa90c0923e8 /* NpRigidStatic.cpp */, + FFFD0c0924507fa90c092450 /* NpScene.cpp */, + FFFD0c0924b87fa90c0924b8 /* NpSceneQueries.cpp */, + FFFD0c0925207fa90c092520 /* NpSerializerAdapter.cpp */, + FFFD0c0925887fa90c092588 /* NpShape.cpp */, + FFFD0c0925f07fa90c0925f0 /* NpShapeManager.cpp */, + FFFD0c0926587fa90c092658 /* NpSpatialIndex.cpp */, + FFFD0c0926c07fa90c0926c0 /* NpVolumeCache.cpp */, + FFFD0c0927287fa90c092728 /* NpWriteCheck.cpp */, + FFFD0c0927907fa90c092790 /* PvdMetaDataPvdBinding.cpp */, + FFFD0c0927f87fa90c0927f8 /* PvdPhysicsClient.cpp */, + FFFD0c0928607fa90c092860 /* particles/NpParticleBaseTemplate.h */, + FFFD0c0928c87fa90c0928c8 /* particles/NpParticleFluid.h */, + FFFD0c0929307fa90c092930 /* particles/NpParticleFluidReadData.h */, + FFFD0c0929987fa90c092998 /* particles/NpParticleSystem.h */, + FFFD0c092a007fa90c092a00 /* particles/NpParticleFluid.cpp */, + FFFD0c092a687fa90c092a68 /* particles/NpParticleSystem.cpp */, + FFFD0c092ad07fa90c092ad0 /* buffering/ScbActor.h */, + FFFD0c092b387fa90c092b38 /* buffering/ScbAggregate.h */, + FFFD0c092ba07fa90c092ba0 /* buffering/ScbArticulation.h */, + FFFD0c092c087fa90c092c08 /* buffering/ScbArticulationJoint.h */, + FFFD0c092c707fa90c092c70 /* buffering/ScbBase.h */, + FFFD0c092cd87fa90c092cd8 /* buffering/ScbBody.h */, + FFFD0c092d407fa90c092d40 /* buffering/ScbCloth.h */, + FFFD0c092da87fa90c092da8 /* buffering/ScbConstraint.h */, + FFFD0c092e107fa90c092e10 /* buffering/ScbDefs.h */, + FFFD0c092e787fa90c092e78 /* buffering/ScbNpDeps.h */, + FFFD0c092ee07fa90c092ee0 /* buffering/ScbParticleSystem.h */, + FFFD0c092f487fa90c092f48 /* buffering/ScbRigidObject.h */, + FFFD0c092fb07fa90c092fb0 /* buffering/ScbRigidStatic.h */, + FFFD0c0930187fa90c093018 /* buffering/ScbScene.h */, + FFFD0c0930807fa90c093080 /* buffering/ScbSceneBuffer.h */, + FFFD0c0930e87fa90c0930e8 /* buffering/ScbScenePvdClient.h */, + FFFD0c0931507fa90c093150 /* buffering/ScbShape.h */, + FFFD0c0931b87fa90c0931b8 /* buffering/ScbType.h */, + FFFD0c0932207fa90c093220 /* buffering/ScbActor.cpp */, + FFFD0c0932887fa90c093288 /* buffering/ScbAggregate.cpp */, + FFFD0c0932f07fa90c0932f0 /* buffering/ScbBase.cpp */, + FFFD0c0933587fa90c093358 /* buffering/ScbCloth.cpp */, + FFFD0c0933c07fa90c0933c0 /* buffering/ScbMetaData.cpp */, + FFFD0c0934287fa90c093428 /* buffering/ScbParticleSystem.cpp */, + FFFD0c0934907fa90c093490 /* buffering/ScbScene.cpp */, + FFFD0c0934f87fa90c0934f8 /* buffering/ScbScenePvdClient.cpp */, + FFFD0c0935607fa90c093560 /* buffering/ScbShape.cpp */, + FFFD0c0935c87fa90c0935c8 /* cloth/NpCloth.h */, + FFFD0c0936307fa90c093630 /* cloth/NpClothFabric.h */, + FFFD0c0936987fa90c093698 /* cloth/NpClothParticleData.h */, + FFFD0c0937007fa90c093700 /* cloth/NpCloth.cpp */, + FFFD0c0937687fa90c093768 /* cloth/NpClothFabric.cpp */, + FFFD0c0937d07fa90c0937d0 /* cloth/NpClothParticleData.cpp */, + FFFD0c0938387fa90c093838 /* ../../ImmediateMode/src/NpImmediateMode.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBe2956d787ffde2956d78 /* include */ = { + FFFB0caf77987fa90caf7798 /* include */ = { isa = PBXGroup; children = ( - FFFDe21968007ffde2196800 /* PxActor.h */, - FFFDe21968687ffde2196868 /* PxAggregate.h */, - FFFDe21968d07ffde21968d0 /* PxArticulation.h */, - FFFDe21969387ffde2196938 /* PxArticulationJoint.h */, - FFFDe21969a07ffde21969a0 /* PxArticulationLink.h */, - FFFDe2196a087ffde2196a08 /* PxBatchQuery.h */, - FFFDe2196a707ffde2196a70 /* PxBatchQueryDesc.h */, - FFFDe2196ad87ffde2196ad8 /* PxBroadPhase.h */, - FFFDe2196b407ffde2196b40 /* PxClient.h */, - FFFDe2196ba87ffde2196ba8 /* PxConstraint.h */, - FFFDe2196c107ffde2196c10 /* PxConstraintDesc.h */, - FFFDe2196c787ffde2196c78 /* PxContact.h */, - FFFDe2196ce07ffde2196ce0 /* PxContactModifyCallback.h */, - FFFDe2196d487ffde2196d48 /* PxDeletionListener.h */, - FFFDe2196db07ffde2196db0 /* PxFiltering.h */, - FFFDe2196e187ffde2196e18 /* PxForceMode.h */, - FFFDe2196e807ffde2196e80 /* PxImmediateMode.h */, - FFFDe2196ee87ffde2196ee8 /* PxLockedData.h */, - FFFDe2196f507ffde2196f50 /* PxMaterial.h */, - FFFDe2196fb87ffde2196fb8 /* PxPhysXConfig.h */, - FFFDe21970207ffde2197020 /* PxPhysics.h */, - FFFDe21970887ffde2197088 /* PxPhysicsAPI.h */, - FFFDe21970f07ffde21970f0 /* PxPhysicsSerialization.h */, - FFFDe21971587ffde2197158 /* PxPhysicsVersion.h */, - FFFDe21971c07ffde21971c0 /* PxPruningStructure.h */, - FFFDe21972287ffde2197228 /* PxQueryFiltering.h */, - FFFDe21972907ffde2197290 /* PxQueryReport.h */, - FFFDe21972f87ffde21972f8 /* PxRigidActor.h */, - FFFDe21973607ffde2197360 /* PxRigidBody.h */, - FFFDe21973c87ffde21973c8 /* PxRigidDynamic.h */, - FFFDe21974307ffde2197430 /* PxRigidStatic.h */, - FFFDe21974987ffde2197498 /* PxScene.h */, - FFFDe21975007ffde2197500 /* PxSceneDesc.h */, - FFFDe21975687ffde2197568 /* PxSceneLock.h */, - FFFDe21975d07ffde21975d0 /* PxShape.h */, - FFFDe21976387ffde2197638 /* PxSimulationEventCallback.h */, - FFFDe21976a07ffde21976a0 /* PxSimulationStatistics.h */, - FFFDe21977087ffde2197708 /* PxSpatialIndex.h */, - FFFDe21977707ffde2197770 /* PxVisualizationParameter.h */, - FFFDe21977d87ffde21977d8 /* PxVolumeCache.h */, - FFFDe21978407ffde2197840 /* particles/PxParticleBase.h */, - FFFDe21978a87ffde21978a8 /* particles/PxParticleBaseFlag.h */, - FFFDe21979107ffde2197910 /* particles/PxParticleCreationData.h */, - FFFDe21979787ffde2197978 /* particles/PxParticleFlag.h */, - FFFDe21979e07ffde21979e0 /* particles/PxParticleFluid.h */, - FFFDe2197a487ffde2197a48 /* particles/PxParticleFluidReadData.h */, - FFFDe2197ab07ffde2197ab0 /* particles/PxParticleReadData.h */, - FFFDe2197b187ffde2197b18 /* particles/PxParticleSystem.h */, - FFFDe2197b807ffde2197b80 /* pvd/PxPvdSceneClient.h */, - FFFDe2197be87ffde2197be8 /* cloth/PxCloth.h */, - FFFDe2197c507ffde2197c50 /* cloth/PxClothCollisionData.h */, - FFFDe2197cb87ffde2197cb8 /* cloth/PxClothFabric.h */, - FFFDe2197d207ffde2197d20 /* cloth/PxClothParticleData.h */, - FFFDe2197d887ffde2197d88 /* cloth/PxClothTypes.h */, + FFFD0c08ea007fa90c08ea00 /* PxActor.h */, + FFFD0c08ea687fa90c08ea68 /* PxAggregate.h */, + FFFD0c08ead07fa90c08ead0 /* PxArticulation.h */, + FFFD0c08eb387fa90c08eb38 /* PxArticulationJoint.h */, + FFFD0c08eba07fa90c08eba0 /* PxArticulationLink.h */, + FFFD0c08ec087fa90c08ec08 /* PxBatchQuery.h */, + FFFD0c08ec707fa90c08ec70 /* PxBatchQueryDesc.h */, + FFFD0c08ecd87fa90c08ecd8 /* PxBroadPhase.h */, + FFFD0c08ed407fa90c08ed40 /* PxClient.h */, + FFFD0c08eda87fa90c08eda8 /* PxConstraint.h */, + FFFD0c08ee107fa90c08ee10 /* PxConstraintDesc.h */, + FFFD0c08ee787fa90c08ee78 /* PxContact.h */, + FFFD0c08eee07fa90c08eee0 /* PxContactModifyCallback.h */, + FFFD0c08ef487fa90c08ef48 /* PxDeletionListener.h */, + FFFD0c08efb07fa90c08efb0 /* PxFiltering.h */, + FFFD0c08f0187fa90c08f018 /* PxForceMode.h */, + FFFD0c08f0807fa90c08f080 /* PxImmediateMode.h */, + FFFD0c08f0e87fa90c08f0e8 /* PxLockedData.h */, + FFFD0c08f1507fa90c08f150 /* PxMaterial.h */, + FFFD0c08f1b87fa90c08f1b8 /* PxPhysXConfig.h */, + FFFD0c08f2207fa90c08f220 /* PxPhysics.h */, + FFFD0c08f2887fa90c08f288 /* PxPhysicsAPI.h */, + FFFD0c08f2f07fa90c08f2f0 /* PxPhysicsSerialization.h */, + FFFD0c08f3587fa90c08f358 /* PxPhysicsVersion.h */, + FFFD0c08f3c07fa90c08f3c0 /* PxPruningStructure.h */, + FFFD0c08f4287fa90c08f428 /* PxQueryFiltering.h */, + FFFD0c08f4907fa90c08f490 /* PxQueryReport.h */, + FFFD0c08f4f87fa90c08f4f8 /* PxRigidActor.h */, + FFFD0c08f5607fa90c08f560 /* PxRigidBody.h */, + FFFD0c08f5c87fa90c08f5c8 /* PxRigidDynamic.h */, + FFFD0c08f6307fa90c08f630 /* PxRigidStatic.h */, + FFFD0c08f6987fa90c08f698 /* PxScene.h */, + FFFD0c08f7007fa90c08f700 /* PxSceneDesc.h */, + FFFD0c08f7687fa90c08f768 /* PxSceneLock.h */, + FFFD0c08f7d07fa90c08f7d0 /* PxShape.h */, + FFFD0c08f8387fa90c08f838 /* PxSimulationEventCallback.h */, + FFFD0c08f8a07fa90c08f8a0 /* PxSimulationStatistics.h */, + FFFD0c08f9087fa90c08f908 /* PxSpatialIndex.h */, + FFFD0c08f9707fa90c08f970 /* PxVisualizationParameter.h */, + FFFD0c08f9d87fa90c08f9d8 /* PxVolumeCache.h */, + FFFD0c08fa407fa90c08fa40 /* particles/PxParticleBase.h */, + FFFD0c08faa87fa90c08faa8 /* particles/PxParticleBaseFlag.h */, + FFFD0c08fb107fa90c08fb10 /* particles/PxParticleCreationData.h */, + FFFD0c08fb787fa90c08fb78 /* particles/PxParticleFlag.h */, + FFFD0c08fbe07fa90c08fbe0 /* particles/PxParticleFluid.h */, + FFFD0c08fc487fa90c08fc48 /* particles/PxParticleFluidReadData.h */, + FFFD0c08fcb07fa90c08fcb0 /* particles/PxParticleReadData.h */, + FFFD0c08fd187fa90c08fd18 /* particles/PxParticleSystem.h */, + FFFD0c08fd807fa90c08fd80 /* pvd/PxPvdSceneClient.h */, + FFFD0c08fde87fa90c08fde8 /* cloth/PxCloth.h */, + FFFD0c08fe507fa90c08fe50 /* cloth/PxClothCollisionData.h */, + FFFD0c08feb87fa90c08feb8 /* cloth/PxClothFabric.h */, + FFFD0c08ff207fa90c08ff20 /* cloth/PxClothParticleData.h */, + FFFD0c08ff887fa90c08ff88 /* cloth/PxClothTypes.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBe2956da07ffde2956da0 /* metadata */ = { + FFFB0caf77c07fa90caf77c0 /* metadata */ = { isa = PBXGroup; children = ( - FFFDe218ea007ffde218ea00 /* core/include/PvdMetaDataDefineProperties.h */, - FFFDe218ea687ffde218ea68 /* core/include/PvdMetaDataExtensions.h */, - FFFDe218ead07ffde218ead0 /* core/include/PvdMetaDataPropertyVisitor.h */, - FFFDe218eb387ffde218eb38 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */, - FFFDe218eba07ffde218eba0 /* core/include/PxAutoGeneratedMetaDataObjects.h */, - FFFDe218ec087ffde218ec08 /* core/include/PxMetaDataCompare.h */, - FFFDe218ec707ffde218ec70 /* core/include/PxMetaDataCppPrefix.h */, - FFFDe218ecd87ffde218ecd8 /* core/include/PxMetaDataObjects.h */, - FFFDe218ed407ffde218ed40 /* core/include/RepXMetaDataPropertyVisitor.h */, - FFFDe218eda87ffde218eda8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */, - FFFDe218ee107ffde218ee10 /* core/src/PxMetaDataObjects.cpp */, + FFFD0c0900007fa90c090000 /* core/include/PvdMetaDataDefineProperties.h */, + FFFD0c0900687fa90c090068 /* core/include/PvdMetaDataExtensions.h */, + FFFD0c0900d07fa90c0900d0 /* core/include/PvdMetaDataPropertyVisitor.h */, + FFFD0c0901387fa90c090138 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */, + FFFD0c0901a07fa90c0901a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */, + FFFD0c0902087fa90c090208 /* core/include/PxMetaDataCompare.h */, + FFFD0c0902707fa90c090270 /* core/include/PxMetaDataCppPrefix.h */, + FFFD0c0902d87fa90c0902d8 /* core/include/PxMetaDataObjects.h */, + FFFD0c0903407fa90c090340 /* core/include/RepXMetaDataPropertyVisitor.h */, + FFFD0c0903a87fa90c0903a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */, + FFFD0c0904107fa90c090410 /* core/src/PxMetaDataObjects.cpp */, ); name = "metadata"; sourceTree = SOURCE_ROOT; }; - FFFBe294ef707ffde294ef70 /* PhysXCharacterKinematic */ = { + FFFB0caf3c407fa90caf3c40 /* PhysXCharacterKinematic */ = { isa = PBXGroup; children = ( - FFFBe29556107ffde2955610 /* include */, - FFFBe29556387ffde2955638 /* src */, + FFFB0caf6aa07fa90caf6aa0 /* include */, + FFFB0caf6ac87fa90caf6ac8 /* src */, ); name = "PhysXCharacterKinematic"; sourceTree = "<group>"; }; - FFFBe29556107ffde2955610 /* include */ = { + FFFB0caf6aa07fa90caf6aa0 /* include */ = { isa = PBXGroup; children = ( - FFFDe29560807ffde2956080 /* PxBoxController.h */, - FFFDe29560e87ffde29560e8 /* PxCapsuleController.h */, - FFFDe29561507ffde2956150 /* PxCharacter.h */, - FFFDe29561b87ffde29561b8 /* PxController.h */, - FFFDe29562207ffde2956220 /* PxControllerBehavior.h */, - FFFDe29562887ffde2956288 /* PxControllerManager.h */, - FFFDe29562f07ffde29562f0 /* PxControllerObstacles.h */, - FFFDe29563587ffde2956358 /* PxExtended.h */, + FFFD0caf6af07fa90caf6af0 /* PxBoxController.h */, + FFFD0caf6b587fa90caf6b58 /* PxCapsuleController.h */, + FFFD0caf6bc07fa90caf6bc0 /* PxCharacter.h */, + FFFD0caf6c287fa90caf6c28 /* PxController.h */, + FFFD0caf6c907fa90caf6c90 /* PxControllerBehavior.h */, + FFFD0caf6cf87fa90caf6cf8 /* PxControllerManager.h */, + FFFD0caf6d607fa90caf6d60 /* PxControllerObstacles.h */, + FFFD0caf6dc87fa90caf6dc8 /* PxExtended.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBe29556387ffde2955638 /* src */ = { + FFFB0caf6ac87fa90caf6ac8 /* src */ = { isa = PBXGroup; children = ( - FFFDe2197e007ffde2197e00 /* CctBoxController.h */, - FFFDe2197e687ffde2197e68 /* CctCapsuleController.h */, - FFFDe2197ed07ffde2197ed0 /* CctCharacterController.h */, - FFFDe2197f387ffde2197f38 /* CctCharacterControllerManager.h */, - FFFDe2197fa07ffde2197fa0 /* CctController.h */, - FFFDe21980087ffde2198008 /* CctInternalStructs.h */, - FFFDe21980707ffde2198070 /* CctObstacleContext.h */, - FFFDe21980d87ffde21980d8 /* CctSweptBox.h */, - FFFDe21981407ffde2198140 /* CctSweptCapsule.h */, - FFFDe21981a87ffde21981a8 /* CctSweptVolume.h */, - FFFDe21982107ffde2198210 /* CctUtils.h */, - FFFDe21982787ffde2198278 /* CctBoxController.cpp */, - FFFDe21982e07ffde21982e0 /* CctCapsuleController.cpp */, - FFFDe21983487ffde2198348 /* CctCharacterController.cpp */, - FFFDe21983b07ffde21983b0 /* CctCharacterControllerCallbacks.cpp */, - FFFDe21984187ffde2198418 /* CctCharacterControllerManager.cpp */, - FFFDe21984807ffde2198480 /* CctController.cpp */, - FFFDe21984e87ffde21984e8 /* CctObstacleContext.cpp */, - FFFDe21985507ffde2198550 /* CctSweptBox.cpp */, - FFFDe21985b87ffde21985b8 /* CctSweptCapsule.cpp */, - FFFDe21986207ffde2198620 /* CctSweptVolume.cpp */, + FFFD0c097c007fa90c097c00 /* CctBoxController.h */, + FFFD0c097c687fa90c097c68 /* CctCapsuleController.h */, + FFFD0c097cd07fa90c097cd0 /* CctCharacterController.h */, + FFFD0c097d387fa90c097d38 /* CctCharacterControllerManager.h */, + FFFD0c097da07fa90c097da0 /* CctController.h */, + FFFD0c097e087fa90c097e08 /* CctInternalStructs.h */, + FFFD0c097e707fa90c097e70 /* CctObstacleContext.h */, + FFFD0c097ed87fa90c097ed8 /* CctSweptBox.h */, + FFFD0c097f407fa90c097f40 /* CctSweptCapsule.h */, + FFFD0c097fa87fa90c097fa8 /* CctSweptVolume.h */, + FFFD0c0980107fa90c098010 /* CctUtils.h */, + FFFD0c0980787fa90c098078 /* CctBoxController.cpp */, + FFFD0c0980e07fa90c0980e0 /* CctCapsuleController.cpp */, + FFFD0c0981487fa90c098148 /* CctCharacterController.cpp */, + FFFD0c0981b07fa90c0981b0 /* CctCharacterControllerCallbacks.cpp */, + FFFD0c0982187fa90c098218 /* CctCharacterControllerManager.cpp */, + FFFD0c0982807fa90c098280 /* CctController.cpp */, + FFFD0c0982e87fa90c0982e8 /* CctObstacleContext.cpp */, + FFFD0c0983507fa90c098350 /* CctSweptBox.cpp */, + FFFD0c0983b87fa90c0983b8 /* CctSweptCapsule.cpp */, + FFFD0c0984207fa90c098420 /* CctSweptVolume.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBe29504707ffde2950470 /* PhysXVehicle */ = { + FFFB0caf0ea07fa90caf0ea0 /* PhysXVehicle */ = { isa = PBXGroup; children = ( - FFFBe29609a07ffde29609a0 /* include */, - FFFBe29609c87ffde29609c8 /* src */, - FFFBe29609f07ffde29609f0 /* metadata */, + FFFB0cb05a707fa90cb05a70 /* include */, + FFFB0cb05a987fa90cb05a98 /* src */, + FFFB0cb05ac07fa90cb05ac0 /* metadata */, ); name = "PhysXVehicle"; sourceTree = "<group>"; }; - FFFBe29609a07ffde29609a0 /* include */ = { + FFFB0cb05a707fa90cb05a70 /* include */ = { isa = PBXGroup; children = ( - FFFDe219a4007ffde219a400 /* PxVehicleComponents.h */, - FFFDe219a4687ffde219a468 /* PxVehicleDrive.h */, - FFFDe219a4d07ffde219a4d0 /* PxVehicleDrive4W.h */, - FFFDe219a5387ffde219a538 /* PxVehicleDriveNW.h */, - FFFDe219a5a07ffde219a5a0 /* PxVehicleDriveTank.h */, - FFFDe219a6087ffde219a608 /* PxVehicleNoDrive.h */, - FFFDe219a6707ffde219a670 /* PxVehicleSDK.h */, - FFFDe219a6d87ffde219a6d8 /* PxVehicleShaders.h */, - FFFDe219a7407ffde219a740 /* PxVehicleTireFriction.h */, - FFFDe219a7a87ffde219a7a8 /* PxVehicleUpdate.h */, - FFFDe219a8107ffde219a810 /* PxVehicleUtil.h */, - FFFDe219a8787ffde219a878 /* PxVehicleUtilControl.h */, - FFFDe219a8e07ffde219a8e0 /* PxVehicleUtilSetup.h */, - FFFDe219a9487ffde219a948 /* PxVehicleUtilTelemetry.h */, - FFFDe219a9b07ffde219a9b0 /* PxVehicleWheels.h */, + FFFD0c09aa007fa90c09aa00 /* PxVehicleComponents.h */, + FFFD0c09aa687fa90c09aa68 /* PxVehicleDrive.h */, + FFFD0c09aad07fa90c09aad0 /* PxVehicleDrive4W.h */, + FFFD0c09ab387fa90c09ab38 /* PxVehicleDriveNW.h */, + FFFD0c09aba07fa90c09aba0 /* PxVehicleDriveTank.h */, + FFFD0c09ac087fa90c09ac08 /* PxVehicleNoDrive.h */, + FFFD0c09ac707fa90c09ac70 /* PxVehicleSDK.h */, + FFFD0c09acd87fa90c09acd8 /* PxVehicleShaders.h */, + FFFD0c09ad407fa90c09ad40 /* PxVehicleTireFriction.h */, + FFFD0c09ada87fa90c09ada8 /* PxVehicleUpdate.h */, + FFFD0c09ae107fa90c09ae10 /* PxVehicleUtil.h */, + FFFD0c09ae787fa90c09ae78 /* PxVehicleUtilControl.h */, + FFFD0c09aee07fa90c09aee0 /* PxVehicleUtilSetup.h */, + FFFD0c09af487fa90c09af48 /* PxVehicleUtilTelemetry.h */, + FFFD0c09afb07fa90c09afb0 /* PxVehicleWheels.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBe29609c87ffde29609c8 /* src */ = { + FFFB0cb05a987fa90cb05a98 /* src */ = { isa = PBXGroup; children = ( - FFFDe219c2007ffde219c200 /* PxVehicleDefaults.h */, - FFFDe219c2687ffde219c268 /* PxVehicleLinearMath.h */, - FFFDe219c2d07ffde219c2d0 /* PxVehicleSerialization.h */, - FFFDe219c3387ffde219c338 /* PxVehicleSuspLimitConstraintShader.h */, - FFFDe219c3a07ffde219c3a0 /* PxVehicleSuspWheelTire4.h */, - FFFDe219c4087ffde219c408 /* PxVehicleComponents.cpp */, - FFFDe219c4707ffde219c470 /* PxVehicleDrive.cpp */, - FFFDe219c4d87ffde219c4d8 /* PxVehicleDrive4W.cpp */, - FFFDe219c5407ffde219c540 /* PxVehicleDriveNW.cpp */, - FFFDe219c5a87ffde219c5a8 /* PxVehicleDriveTank.cpp */, - FFFDe219c6107ffde219c610 /* PxVehicleMetaData.cpp */, - FFFDe219c6787ffde219c678 /* PxVehicleNoDrive.cpp */, - FFFDe219c6e07ffde219c6e0 /* PxVehicleSDK.cpp */, - FFFDe219c7487ffde219c748 /* PxVehicleSerialization.cpp */, - FFFDe219c7b07ffde219c7b0 /* PxVehicleSuspWheelTire4.cpp */, - FFFDe219c8187ffde219c818 /* PxVehicleTireFriction.cpp */, - FFFDe219c8807ffde219c880 /* PxVehicleUpdate.cpp */, - FFFDe219c8e87ffde219c8e8 /* PxVehicleWheels.cpp */, - FFFDe219c9507ffde219c950 /* VehicleUtilControl.cpp */, - FFFDe219c9b87ffde219c9b8 /* VehicleUtilSetup.cpp */, - FFFDe219ca207ffde219ca20 /* VehicleUtilTelemetry.cpp */, + FFFD0c09cc007fa90c09cc00 /* PxVehicleDefaults.h */, + FFFD0c09cc687fa90c09cc68 /* PxVehicleLinearMath.h */, + FFFD0c09ccd07fa90c09ccd0 /* PxVehicleSerialization.h */, + FFFD0c09cd387fa90c09cd38 /* PxVehicleSuspLimitConstraintShader.h */, + FFFD0c09cda07fa90c09cda0 /* PxVehicleSuspWheelTire4.h */, + FFFD0c09ce087fa90c09ce08 /* PxVehicleComponents.cpp */, + FFFD0c09ce707fa90c09ce70 /* PxVehicleDrive.cpp */, + FFFD0c09ced87fa90c09ced8 /* PxVehicleDrive4W.cpp */, + FFFD0c09cf407fa90c09cf40 /* PxVehicleDriveNW.cpp */, + FFFD0c09cfa87fa90c09cfa8 /* PxVehicleDriveTank.cpp */, + FFFD0c09d0107fa90c09d010 /* PxVehicleMetaData.cpp */, + FFFD0c09d0787fa90c09d078 /* PxVehicleNoDrive.cpp */, + FFFD0c09d0e07fa90c09d0e0 /* PxVehicleSDK.cpp */, + FFFD0c09d1487fa90c09d148 /* PxVehicleSerialization.cpp */, + FFFD0c09d1b07fa90c09d1b0 /* PxVehicleSuspWheelTire4.cpp */, + FFFD0c09d2187fa90c09d218 /* PxVehicleTireFriction.cpp */, + FFFD0c09d2807fa90c09d280 /* PxVehicleUpdate.cpp */, + FFFD0c09d2e87fa90c09d2e8 /* PxVehicleWheels.cpp */, + FFFD0c09d3507fa90c09d350 /* VehicleUtilControl.cpp */, + FFFD0c09d3b87fa90c09d3b8 /* VehicleUtilSetup.cpp */, + FFFD0c09d4207fa90c09d420 /* VehicleUtilTelemetry.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBe29609f07ffde29609f0 /* metadata */ = { + FFFB0cb05ac07fa90cb05ac0 /* metadata */ = { isa = PBXGroup; children = ( - FFFDe2961ab07ffde2961ab0 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */, - FFFDe2961b187ffde2961b18 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */, - FFFDe2961b807ffde2961b80 /* include/PxVehicleMetaDataObjects.h */, - FFFDe2961be87ffde2961be8 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */, - FFFDe2961c507ffde2961c50 /* src/PxVehicleMetaDataObjects.cpp */, + FFFD0cb067c07fa90cb067c0 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */, + FFFD0cb068287fa90cb06828 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */, + FFFD0cb068907fa90cb06890 /* include/PxVehicleMetaDataObjects.h */, + FFFD0cb068f87fa90cb068f8 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */, + FFFD0cb069607fa90cb06960 /* src/PxVehicleMetaDataObjects.cpp */, ); name = "metadata"; sourceTree = SOURCE_ROOT; }; - FFFBe29617f07ffde29617f0 /* PhysXExtensions */ = { + FFFB0cb04a207fa90cb04a20 /* PhysXExtensions */ = { isa = PBXGroup; children = ( - FFFBe29655407ffde2965540 /* include */, - FFFBe29655687ffde2965568 /* src */, - FFFBe29655907ffde2965590 /* serialization */, - FFFBe29655b87ffde29655b8 /* metadata */, + FFFB0cb0d8c07fa90cb0d8c0 /* include */, + FFFB0cb0d8e87fa90cb0d8e8 /* src */, + FFFB0cb0d9107fa90cb0d910 /* serialization */, + FFFB0cb0d9387fa90cb0d938 /* metadata */, ); name = "PhysXExtensions"; sourceTree = "<group>"; }; - FFFBe29655407ffde2965540 /* include */ = { + FFFB0cb0d8c07fa90cb0d8c0 /* include */ = { isa = PBXGroup; children = ( - FFFDe219fa007ffde219fa00 /* PxBinaryConverter.h */, - FFFDe219fa687ffde219fa68 /* PxBroadPhaseExt.h */, - FFFDe219fad07ffde219fad0 /* PxClothFabricCooker.h */, - FFFDe219fb387ffde219fb38 /* PxClothMeshDesc.h */, - FFFDe219fba07ffde219fba0 /* PxClothMeshQuadifier.h */, - FFFDe219fc087ffde219fc08 /* PxClothTetherCooker.h */, - FFFDe219fc707ffde219fc70 /* PxCollectionExt.h */, - FFFDe219fcd87ffde219fcd8 /* PxConstraintExt.h */, - FFFDe219fd407ffde219fd40 /* PxConvexMeshExt.h */, - FFFDe219fda87ffde219fda8 /* PxD6Joint.h */, - FFFDe219fe107ffde219fe10 /* PxDefaultAllocator.h */, - FFFDe219fe787ffde219fe78 /* PxDefaultCpuDispatcher.h */, - FFFDe219fee07ffde219fee0 /* PxDefaultErrorCallback.h */, - FFFDe219ff487ffde219ff48 /* PxDefaultSimulationFilterShader.h */, - FFFDe219ffb07ffde219ffb0 /* PxDefaultStreams.h */, - FFFDe21a00187ffde21a0018 /* PxDistanceJoint.h */, - FFFDe21a00807ffde21a0080 /* PxExtensionsAPI.h */, - FFFDe21a00e87ffde21a00e8 /* PxFixedJoint.h */, - FFFDe21a01507ffde21a0150 /* PxJoint.h */, - FFFDe21a01b87ffde21a01b8 /* PxJointLimit.h */, - FFFDe21a02207ffde21a0220 /* PxJointRepXSerializer.h */, - FFFDe21a02887ffde21a0288 /* PxMassProperties.h */, - FFFDe21a02f07ffde21a02f0 /* PxParticleExt.h */, - FFFDe21a03587ffde21a0358 /* PxPrismaticJoint.h */, - FFFDe21a03c07ffde21a03c0 /* PxRaycastCCD.h */, - FFFDe21a04287ffde21a0428 /* PxRepXSerializer.h */, - FFFDe21a04907ffde21a0490 /* PxRepXSimpleType.h */, - FFFDe21a04f87ffde21a04f8 /* PxRevoluteJoint.h */, - FFFDe21a05607ffde21a0560 /* PxRigidActorExt.h */, - FFFDe21a05c87ffde21a05c8 /* PxRigidBodyExt.h */, - FFFDe21a06307ffde21a0630 /* PxSceneQueryExt.h */, - FFFDe21a06987ffde21a0698 /* PxSerialization.h */, - FFFDe21a07007ffde21a0700 /* PxShapeExt.h */, - FFFDe21a07687ffde21a0768 /* PxSimpleFactory.h */, - FFFDe21a07d07ffde21a07d0 /* PxSmoothNormals.h */, - FFFDe21a08387ffde21a0838 /* PxSphericalJoint.h */, - FFFDe21a08a07ffde21a08a0 /* PxStringTableExt.h */, - FFFDe21a09087ffde21a0908 /* PxTriangleMeshExt.h */, + FFFD0c09fc007fa90c09fc00 /* PxBinaryConverter.h */, + FFFD0c09fc687fa90c09fc68 /* PxBroadPhaseExt.h */, + FFFD0c09fcd07fa90c09fcd0 /* PxClothFabricCooker.h */, + FFFD0c09fd387fa90c09fd38 /* PxClothMeshDesc.h */, + FFFD0c09fda07fa90c09fda0 /* PxClothMeshQuadifier.h */, + FFFD0c09fe087fa90c09fe08 /* PxClothTetherCooker.h */, + FFFD0c09fe707fa90c09fe70 /* PxCollectionExt.h */, + FFFD0c09fed87fa90c09fed8 /* PxConstraintExt.h */, + FFFD0c09ff407fa90c09ff40 /* PxConvexMeshExt.h */, + FFFD0c09ffa87fa90c09ffa8 /* PxD6Joint.h */, + FFFD0c0a00107fa90c0a0010 /* PxDefaultAllocator.h */, + FFFD0c0a00787fa90c0a0078 /* PxDefaultCpuDispatcher.h */, + FFFD0c0a00e07fa90c0a00e0 /* PxDefaultErrorCallback.h */, + FFFD0c0a01487fa90c0a0148 /* PxDefaultSimulationFilterShader.h */, + FFFD0c0a01b07fa90c0a01b0 /* PxDefaultStreams.h */, + FFFD0c0a02187fa90c0a0218 /* PxDistanceJoint.h */, + FFFD0c0a02807fa90c0a0280 /* PxExtensionsAPI.h */, + FFFD0c0a02e87fa90c0a02e8 /* PxFixedJoint.h */, + FFFD0c0a03507fa90c0a0350 /* PxJoint.h */, + FFFD0c0a03b87fa90c0a03b8 /* PxJointLimit.h */, + FFFD0c0a04207fa90c0a0420 /* PxMassProperties.h */, + FFFD0c0a04887fa90c0a0488 /* PxParticleExt.h */, + FFFD0c0a04f07fa90c0a04f0 /* PxPrismaticJoint.h */, + FFFD0c0a05587fa90c0a0558 /* PxRaycastCCD.h */, + FFFD0c0a05c07fa90c0a05c0 /* PxRepXSerializer.h */, + FFFD0c0a06287fa90c0a0628 /* PxRepXSimpleType.h */, + FFFD0c0a06907fa90c0a0690 /* PxRevoluteJoint.h */, + FFFD0c0a06f87fa90c0a06f8 /* PxRigidActorExt.h */, + FFFD0c0a07607fa90c0a0760 /* PxRigidBodyExt.h */, + FFFD0c0a07c87fa90c0a07c8 /* PxSceneQueryExt.h */, + FFFD0c0a08307fa90c0a0830 /* PxSerialization.h */, + FFFD0c0a08987fa90c0a0898 /* PxShapeExt.h */, + FFFD0c0a09007fa90c0a0900 /* PxSimpleFactory.h */, + FFFD0c0a09687fa90c0a0968 /* PxSmoothNormals.h */, + FFFD0c0a09d07fa90c0a09d0 /* PxSphericalJoint.h */, + FFFD0c0a0a387fa90c0a0a38 /* PxStringTableExt.h */, + FFFD0c0a0aa07fa90c0a0aa0 /* PxTriangleMeshExt.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBe29655687ffde2965568 /* src */ = { + FFFB0cb0d8e87fa90cb0d8e8 /* src */ = { isa = PBXGroup; children = ( - FFFDe219e4007ffde219e400 /* ExtConstraintHelper.h */, - FFFDe219e4687ffde219e468 /* ExtCpuWorkerThread.h */, - FFFDe219e4d07ffde219e4d0 /* ExtD6Joint.h */, - FFFDe219e5387ffde219e538 /* ExtDefaultCpuDispatcher.h */, - FFFDe219e5a07ffde219e5a0 /* ExtDistanceJoint.h */, - FFFDe219e6087ffde219e608 /* ExtFixedJoint.h */, - FFFDe219e6707ffde219e670 /* ExtInertiaTensor.h */, - FFFDe219e6d87ffde219e6d8 /* ExtJoint.h */, - FFFDe219e7407ffde219e740 /* ExtJointMetaDataExtensions.h */, - FFFDe219e7a87ffde219e7a8 /* ExtPlatform.h */, - FFFDe219e8107ffde219e810 /* ExtPrismaticJoint.h */, - FFFDe219e8787ffde219e878 /* ExtPvd.h */, - FFFDe219e8e07ffde219e8e0 /* ExtRevoluteJoint.h */, - FFFDe219e9487ffde219e948 /* ExtSerialization.h */, - FFFDe219e9b07ffde219e9b0 /* ExtSharedQueueEntryPool.h */, - FFFDe219ea187ffde219ea18 /* ExtSphericalJoint.h */, - FFFDe219ea807ffde219ea80 /* ExtTaskQueueHelper.h */, - FFFDe219eae87ffde219eae8 /* ExtBroadPhase.cpp */, - FFFDe219eb507ffde219eb50 /* ExtClothFabricCooker.cpp */, - FFFDe219ebb87ffde219ebb8 /* ExtClothGeodesicTetherCooker.cpp */, - FFFDe219ec207ffde219ec20 /* ExtClothMeshQuadifier.cpp */, - FFFDe219ec887ffde219ec88 /* ExtClothSimpleTetherCooker.cpp */, - FFFDe219ecf07ffde219ecf0 /* ExtCollection.cpp */, - FFFDe219ed587ffde219ed58 /* ExtConvexMeshExt.cpp */, - FFFDe219edc07ffde219edc0 /* ExtCpuWorkerThread.cpp */, - FFFDe219ee287ffde219ee28 /* ExtD6Joint.cpp */, - FFFDe219ee907ffde219ee90 /* ExtD6JointSolverPrep.cpp */, - FFFDe219eef87ffde219eef8 /* ExtDefaultCpuDispatcher.cpp */, - FFFDe219ef607ffde219ef60 /* ExtDefaultErrorCallback.cpp */, - FFFDe219efc87ffde219efc8 /* ExtDefaultSimulationFilterShader.cpp */, - FFFDe219f0307ffde219f030 /* ExtDefaultStreams.cpp */, - FFFDe219f0987ffde219f098 /* ExtDistanceJoint.cpp */, - FFFDe219f1007ffde219f100 /* ExtDistanceJointSolverPrep.cpp */, - FFFDe219f1687ffde219f168 /* ExtExtensions.cpp */, - FFFDe219f1d07ffde219f1d0 /* ExtFixedJoint.cpp */, - FFFDe219f2387ffde219f238 /* ExtFixedJointSolverPrep.cpp */, - FFFDe219f2a07ffde219f2a0 /* ExtJoint.cpp */, - FFFDe219f3087ffde219f308 /* ExtMetaData.cpp */, - FFFDe219f3707ffde219f370 /* ExtParticleExt.cpp */, - FFFDe219f3d87ffde219f3d8 /* ExtPrismaticJoint.cpp */, - FFFDe219f4407ffde219f440 /* ExtPrismaticJointSolverPrep.cpp */, - FFFDe219f4a87ffde219f4a8 /* ExtPvd.cpp */, - FFFDe219f5107ffde219f510 /* ExtPxStringTable.cpp */, - FFFDe219f5787ffde219f578 /* ExtRaycastCCD.cpp */, - FFFDe219f5e07ffde219f5e0 /* ExtRevoluteJoint.cpp */, - FFFDe219f6487ffde219f648 /* ExtRevoluteJointSolverPrep.cpp */, - FFFDe219f6b07ffde219f6b0 /* ExtRigidBodyExt.cpp */, - FFFDe219f7187ffde219f718 /* ExtSceneQueryExt.cpp */, - FFFDe219f7807ffde219f780 /* ExtSimpleFactory.cpp */, - FFFDe219f7e87ffde219f7e8 /* ExtSmoothNormals.cpp */, - FFFDe219f8507ffde219f850 /* ExtSphericalJoint.cpp */, - FFFDe219f8b87ffde219f8b8 /* ExtSphericalJointSolverPrep.cpp */, - FFFDe219f9207ffde219f920 /* ExtTriangleMeshExt.cpp */, + FFFD0c09e6007fa90c09e600 /* ExtConstraintHelper.h */, + FFFD0c09e6687fa90c09e668 /* ExtCpuWorkerThread.h */, + FFFD0c09e6d07fa90c09e6d0 /* ExtD6Joint.h */, + FFFD0c09e7387fa90c09e738 /* ExtDefaultCpuDispatcher.h */, + FFFD0c09e7a07fa90c09e7a0 /* ExtDistanceJoint.h */, + FFFD0c09e8087fa90c09e808 /* ExtFixedJoint.h */, + FFFD0c09e8707fa90c09e870 /* ExtInertiaTensor.h */, + FFFD0c09e8d87fa90c09e8d8 /* ExtJoint.h */, + FFFD0c09e9407fa90c09e940 /* ExtJointMetaDataExtensions.h */, + FFFD0c09e9a87fa90c09e9a8 /* ExtPlatform.h */, + FFFD0c09ea107fa90c09ea10 /* ExtPrismaticJoint.h */, + FFFD0c09ea787fa90c09ea78 /* ExtPvd.h */, + FFFD0c09eae07fa90c09eae0 /* ExtRevoluteJoint.h */, + FFFD0c09eb487fa90c09eb48 /* ExtSerialization.h */, + FFFD0c09ebb07fa90c09ebb0 /* ExtSharedQueueEntryPool.h */, + FFFD0c09ec187fa90c09ec18 /* ExtSphericalJoint.h */, + FFFD0c09ec807fa90c09ec80 /* ExtTaskQueueHelper.h */, + FFFD0c09ece87fa90c09ece8 /* ExtBroadPhase.cpp */, + FFFD0c09ed507fa90c09ed50 /* ExtClothFabricCooker.cpp */, + FFFD0c09edb87fa90c09edb8 /* ExtClothGeodesicTetherCooker.cpp */, + FFFD0c09ee207fa90c09ee20 /* ExtClothMeshQuadifier.cpp */, + FFFD0c09ee887fa90c09ee88 /* ExtClothSimpleTetherCooker.cpp */, + FFFD0c09eef07fa90c09eef0 /* ExtCollection.cpp */, + FFFD0c09ef587fa90c09ef58 /* ExtConvexMeshExt.cpp */, + FFFD0c09efc07fa90c09efc0 /* ExtCpuWorkerThread.cpp */, + FFFD0c09f0287fa90c09f028 /* ExtD6Joint.cpp */, + FFFD0c09f0907fa90c09f090 /* ExtD6JointSolverPrep.cpp */, + FFFD0c09f0f87fa90c09f0f8 /* ExtDefaultCpuDispatcher.cpp */, + FFFD0c09f1607fa90c09f160 /* ExtDefaultErrorCallback.cpp */, + FFFD0c09f1c87fa90c09f1c8 /* ExtDefaultSimulationFilterShader.cpp */, + FFFD0c09f2307fa90c09f230 /* ExtDefaultStreams.cpp */, + FFFD0c09f2987fa90c09f298 /* ExtDistanceJoint.cpp */, + FFFD0c09f3007fa90c09f300 /* ExtDistanceJointSolverPrep.cpp */, + FFFD0c09f3687fa90c09f368 /* ExtExtensions.cpp */, + FFFD0c09f3d07fa90c09f3d0 /* ExtFixedJoint.cpp */, + FFFD0c09f4387fa90c09f438 /* ExtFixedJointSolverPrep.cpp */, + FFFD0c09f4a07fa90c09f4a0 /* ExtJoint.cpp */, + FFFD0c09f5087fa90c09f508 /* ExtMetaData.cpp */, + FFFD0c09f5707fa90c09f570 /* ExtParticleExt.cpp */, + FFFD0c09f5d87fa90c09f5d8 /* ExtPrismaticJoint.cpp */, + FFFD0c09f6407fa90c09f640 /* ExtPrismaticJointSolverPrep.cpp */, + FFFD0c09f6a87fa90c09f6a8 /* ExtPvd.cpp */, + FFFD0c09f7107fa90c09f710 /* ExtPxStringTable.cpp */, + FFFD0c09f7787fa90c09f778 /* ExtRaycastCCD.cpp */, + FFFD0c09f7e07fa90c09f7e0 /* ExtRevoluteJoint.cpp */, + FFFD0c09f8487fa90c09f848 /* ExtRevoluteJointSolverPrep.cpp */, + FFFD0c09f8b07fa90c09f8b0 /* ExtRigidBodyExt.cpp */, + FFFD0c09f9187fa90c09f918 /* ExtSceneQueryExt.cpp */, + FFFD0c09f9807fa90c09f980 /* ExtSimpleFactory.cpp */, + FFFD0c09f9e87fa90c09f9e8 /* ExtSmoothNormals.cpp */, + FFFD0c09fa507fa90c09fa50 /* ExtSphericalJoint.cpp */, + FFFD0c09fab87fa90c09fab8 /* ExtSphericalJointSolverPrep.cpp */, + FFFD0c09fb207fa90c09fb20 /* ExtTriangleMeshExt.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBe29655907ffde2965590 /* serialization */ = { + FFFB0cb0d9107fa90cb0d910 /* serialization */ = { isa = PBXGroup; children = ( - FFFDe21a20007ffde21a2000 /* SnSerialUtils.h */, - FFFDe21a20687ffde21a2068 /* SnSerializationRegistry.h */, - FFFDe21a20d07ffde21a20d0 /* SnSerialUtils.cpp */, - FFFDe21a21387ffde21a2138 /* SnSerialization.cpp */, - FFFDe21a21a07ffde21a21a0 /* SnSerializationRegistry.cpp */, - FFFDe21a22087ffde21a2208 /* Binary/SnConvX.h */, - FFFDe21a22707ffde21a2270 /* Binary/SnConvX_Align.h */, - FFFDe21a22d87ffde21a22d8 /* Binary/SnConvX_Common.h */, - FFFDe21a23407ffde21a2340 /* Binary/SnConvX_MetaData.h */, - FFFDe21a23a87ffde21a23a8 /* Binary/SnConvX_Output.h */, - FFFDe21a24107ffde21a2410 /* Binary/SnConvX_Union.h */, - FFFDe21a24787ffde21a2478 /* Binary/SnSerializationContext.h */, - FFFDe21a24e07ffde21a24e0 /* Binary/SnBinaryDeserialization.cpp */, - FFFDe21a25487ffde21a2548 /* Binary/SnBinarySerialization.cpp */, - FFFDe21a25b07ffde21a25b0 /* Binary/SnConvX.cpp */, - FFFDe21a26187ffde21a2618 /* Binary/SnConvX_Align.cpp */, - FFFDe21a26807ffde21a2680 /* Binary/SnConvX_Convert.cpp */, - FFFDe21a26e87ffde21a26e8 /* Binary/SnConvX_Error.cpp */, - FFFDe21a27507ffde21a2750 /* Binary/SnConvX_MetaData.cpp */, - FFFDe21a27b87ffde21a27b8 /* Binary/SnConvX_Output.cpp */, - FFFDe21a28207ffde21a2820 /* Binary/SnConvX_Union.cpp */, - FFFDe21a28887ffde21a2888 /* Binary/SnSerializationContext.cpp */, - FFFDe21a28f07ffde21a28f0 /* Xml/SnPxStreamOperators.h */, - FFFDe21a29587ffde21a2958 /* Xml/SnRepX1_0Defaults.h */, - FFFDe21a29c07ffde21a29c0 /* Xml/SnRepX3_1Defaults.h */, - FFFDe21a2a287ffde21a2a28 /* Xml/SnRepX3_2Defaults.h */, - FFFDe21a2a907ffde21a2a90 /* Xml/SnRepXCollection.h */, - FFFDe21a2af87ffde21a2af8 /* Xml/SnRepXCoreSerializer.h */, - FFFDe21a2b607ffde21a2b60 /* Xml/SnRepXSerializerImpl.h */, - FFFDe21a2bc87ffde21a2bc8 /* Xml/SnRepXUpgrader.h */, - FFFDe21a2c307ffde21a2c30 /* Xml/SnSimpleXmlWriter.h */, - FFFDe21a2c987ffde21a2c98 /* Xml/SnXmlDeserializer.h */, - FFFDe21a2d007ffde21a2d00 /* Xml/SnXmlImpl.h */, - FFFDe21a2d687ffde21a2d68 /* Xml/SnXmlMemoryAllocator.h */, - FFFDe21a2dd07ffde21a2dd0 /* Xml/SnXmlMemoryPool.h */, - FFFDe21a2e387ffde21a2e38 /* Xml/SnXmlMemoryPoolStreams.h */, - FFFDe21a2ea07ffde21a2ea0 /* Xml/SnXmlReader.h */, - FFFDe21a2f087ffde21a2f08 /* Xml/SnXmlSerializer.h */, - FFFDe21a2f707ffde21a2f70 /* Xml/SnXmlSimpleXmlWriter.h */, - FFFDe21a2fd87ffde21a2fd8 /* Xml/SnXmlStringToType.h */, - FFFDe21a30407ffde21a3040 /* Xml/SnXmlVisitorReader.h */, - FFFDe21a30a87ffde21a30a8 /* Xml/SnXmlVisitorWriter.h */, - FFFDe21a31107ffde21a3110 /* Xml/SnXmlWriter.h */, - FFFDe21a31787ffde21a3178 /* Xml/SnJointRepXSerializer.cpp */, - FFFDe21a31e07ffde21a31e0 /* Xml/SnRepXCoreSerializer.cpp */, - FFFDe21a32487ffde21a3248 /* Xml/SnRepXUpgrader.cpp */, - FFFDe21a32b07ffde21a32b0 /* Xml/SnXmlSerialization.cpp */, - FFFDe21a33187ffde21a3318 /* File/SnFile.h */, + FFFD0c0a30007fa90c0a3000 /* SnSerialUtils.h */, + FFFD0c0a30687fa90c0a3068 /* SnSerializationRegistry.h */, + FFFD0c0a30d07fa90c0a30d0 /* SnSerialUtils.cpp */, + FFFD0c0a31387fa90c0a3138 /* SnSerialization.cpp */, + FFFD0c0a31a07fa90c0a31a0 /* SnSerializationRegistry.cpp */, + FFFD0c0a32087fa90c0a3208 /* Binary/SnConvX.h */, + FFFD0c0a32707fa90c0a3270 /* Binary/SnConvX_Align.h */, + FFFD0c0a32d87fa90c0a32d8 /* Binary/SnConvX_Common.h */, + FFFD0c0a33407fa90c0a3340 /* Binary/SnConvX_MetaData.h */, + FFFD0c0a33a87fa90c0a33a8 /* Binary/SnConvX_Output.h */, + FFFD0c0a34107fa90c0a3410 /* Binary/SnConvX_Union.h */, + FFFD0c0a34787fa90c0a3478 /* Binary/SnSerializationContext.h */, + FFFD0c0a34e07fa90c0a34e0 /* Binary/SnBinaryDeserialization.cpp */, + FFFD0c0a35487fa90c0a3548 /* Binary/SnBinarySerialization.cpp */, + FFFD0c0a35b07fa90c0a35b0 /* Binary/SnConvX.cpp */, + FFFD0c0a36187fa90c0a3618 /* Binary/SnConvX_Align.cpp */, + FFFD0c0a36807fa90c0a3680 /* Binary/SnConvX_Convert.cpp */, + FFFD0c0a36e87fa90c0a36e8 /* Binary/SnConvX_Error.cpp */, + FFFD0c0a37507fa90c0a3750 /* Binary/SnConvX_MetaData.cpp */, + FFFD0c0a37b87fa90c0a37b8 /* Binary/SnConvX_Output.cpp */, + FFFD0c0a38207fa90c0a3820 /* Binary/SnConvX_Union.cpp */, + FFFD0c0a38887fa90c0a3888 /* Binary/SnSerializationContext.cpp */, + FFFD0c0a38f07fa90c0a38f0 /* Xml/SnJointRepXSerializer.h */, + FFFD0c0a39587fa90c0a3958 /* Xml/SnPxStreamOperators.h */, + FFFD0c0a39c07fa90c0a39c0 /* Xml/SnRepX1_0Defaults.h */, + FFFD0c0a3a287fa90c0a3a28 /* Xml/SnRepX3_1Defaults.h */, + FFFD0c0a3a907fa90c0a3a90 /* Xml/SnRepX3_2Defaults.h */, + FFFD0c0a3af87fa90c0a3af8 /* Xml/SnRepXCollection.h */, + FFFD0c0a3b607fa90c0a3b60 /* Xml/SnRepXCoreSerializer.h */, + FFFD0c0a3bc87fa90c0a3bc8 /* Xml/SnRepXSerializerImpl.h */, + FFFD0c0a3c307fa90c0a3c30 /* Xml/SnRepXUpgrader.h */, + FFFD0c0a3c987fa90c0a3c98 /* Xml/SnSimpleXmlWriter.h */, + FFFD0c0a3d007fa90c0a3d00 /* Xml/SnXmlDeserializer.h */, + FFFD0c0a3d687fa90c0a3d68 /* Xml/SnXmlImpl.h */, + FFFD0c0a3dd07fa90c0a3dd0 /* Xml/SnXmlMemoryAllocator.h */, + FFFD0c0a3e387fa90c0a3e38 /* Xml/SnXmlMemoryPool.h */, + FFFD0c0a3ea07fa90c0a3ea0 /* Xml/SnXmlMemoryPoolStreams.h */, + FFFD0c0a3f087fa90c0a3f08 /* Xml/SnXmlReader.h */, + FFFD0c0a3f707fa90c0a3f70 /* Xml/SnXmlSerializer.h */, + FFFD0c0a3fd87fa90c0a3fd8 /* Xml/SnXmlSimpleXmlWriter.h */, + FFFD0c0a40407fa90c0a4040 /* Xml/SnXmlStringToType.h */, + FFFD0c0a40a87fa90c0a40a8 /* Xml/SnXmlVisitorReader.h */, + FFFD0c0a41107fa90c0a4110 /* Xml/SnXmlVisitorWriter.h */, + FFFD0c0a41787fa90c0a4178 /* Xml/SnXmlWriter.h */, + FFFD0c0a41e07fa90c0a41e0 /* Xml/SnJointRepXSerializer.cpp */, + FFFD0c0a42487fa90c0a4248 /* Xml/SnRepXCoreSerializer.cpp */, + FFFD0c0a42b07fa90c0a42b0 /* Xml/SnRepXUpgrader.cpp */, + FFFD0c0a43187fa90c0a4318 /* Xml/SnXmlSerialization.cpp */, + FFFD0c0a43807fa90c0a4380 /* File/SnFile.h */, ); name = "serialization"; sourceTree = SOURCE_ROOT; }; - FFFBe29655b87ffde29655b8 /* metadata */ = { + FFFB0cb0d9387fa90cb0d938 /* metadata */ = { isa = PBXGroup; children = ( - FFFDe21a0a007ffde21a0a00 /* core/include/PvdMetaDataDefineProperties.h */, - FFFDe21a0a687ffde21a0a68 /* core/include/PvdMetaDataExtensions.h */, - FFFDe21a0ad07ffde21a0ad0 /* core/include/PvdMetaDataPropertyVisitor.h */, - FFFDe21a0b387ffde21a0b38 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */, - FFFDe21a0ba07ffde21a0ba0 /* core/include/PxAutoGeneratedMetaDataObjects.h */, - FFFDe21a0c087ffde21a0c08 /* core/include/PxMetaDataCompare.h */, - FFFDe21a0c707ffde21a0c70 /* core/include/PxMetaDataCppPrefix.h */, - FFFDe21a0cd87ffde21a0cd8 /* core/include/PxMetaDataObjects.h */, - FFFDe21a0d407ffde21a0d40 /* core/include/RepXMetaDataPropertyVisitor.h */, - FFFDe21a0da87ffde21a0da8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */, - FFFDe21a0e107ffde21a0e10 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */, - FFFDe21a0e787ffde21a0e78 /* extensions/include/PxExtensionMetaDataObjects.h */, - FFFDe21a0ee07ffde21a0ee0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */, + FFFD0c0a0c007fa90c0a0c00 /* core/include/PvdMetaDataDefineProperties.h */, + FFFD0c0a0c687fa90c0a0c68 /* core/include/PvdMetaDataExtensions.h */, + FFFD0c0a0cd07fa90c0a0cd0 /* core/include/PvdMetaDataPropertyVisitor.h */, + FFFD0c0a0d387fa90c0a0d38 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */, + FFFD0c0a0da07fa90c0a0da0 /* core/include/PxAutoGeneratedMetaDataObjects.h */, + FFFD0c0a0e087fa90c0a0e08 /* core/include/PxMetaDataCompare.h */, + FFFD0c0a0e707fa90c0a0e70 /* core/include/PxMetaDataCppPrefix.h */, + FFFD0c0a0ed87fa90c0a0ed8 /* core/include/PxMetaDataObjects.h */, + FFFD0c0a0f407fa90c0a0f40 /* core/include/RepXMetaDataPropertyVisitor.h */, + FFFD0c0a0fa87fa90c0a0fa8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */, + FFFD0c0a10107fa90c0a1010 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */, + FFFD0c0a10787fa90c0a1078 /* extensions/include/PxExtensionMetaDataObjects.h */, + FFFD0c0a10e07fa90c0a10e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */, ); name = "metadata"; sourceTree = SOURCE_ROOT; }; - FFFBe450b7207ffde450b720 /* SceneQuery */ = { + FFFB0cb173f07fa90cb173f0 /* SceneQuery */ = { isa = PBXGroup; children = ( - FFFBe450e8007ffde450e800 /* src */, - FFFBe450e8287ffde450e828 /* include */, + FFFB0cb195307fa90cb19530 /* src */, + FFFB0cb195587fa90cb19558 /* include */, ); name = "SceneQuery"; sourceTree = "<group>"; }; - FFFBe450e8007ffde450e800 /* src */ = { + FFFB0cb195307fa90cb19530 /* src */ = { isa = PBXGroup; children = ( - FFFDe21a70007ffde21a7000 /* SqAABBPruner.cpp */, - FFFDe21a70687ffde21a7068 /* SqAABBTree.cpp */, - FFFDe21a70d07ffde21a70d0 /* SqAABBTreeUpdateMap.cpp */, - FFFDe21a71387ffde21a7138 /* SqBounds.cpp */, - FFFDe21a71a07ffde21a71a0 /* SqBucketPruner.cpp */, - FFFDe21a72087ffde21a7208 /* SqExtendedBucketPruner.cpp */, - FFFDe21a72707ffde21a7270 /* SqMetaData.cpp */, - FFFDe21a72d87ffde21a72d8 /* SqPruningPool.cpp */, - FFFDe21a73407ffde21a7340 /* SqPruningStructure.cpp */, - FFFDe21a73a87ffde21a73a8 /* SqSceneQueryManager.cpp */, - FFFDe21a74107ffde21a7410 /* SqAABBPruner.h */, - FFFDe21a74787ffde21a7478 /* SqAABBTree.h */, - FFFDe21a74e07ffde21a74e0 /* SqAABBTreeQuery.h */, - FFFDe21a75487ffde21a7548 /* SqAABBTreeUpdateMap.h */, - FFFDe21a75b07ffde21a75b0 /* SqBounds.h */, - FFFDe21a76187ffde21a7618 /* SqBucketPruner.h */, - FFFDe21a76807ffde21a7680 /* SqExtendedBucketPruner.h */, - FFFDe21a76e87ffde21a76e8 /* SqPrunerTestsSIMD.h */, - FFFDe21a77507ffde21a7750 /* SqPruningPool.h */, - FFFDe21a77b87ffde21a77b8 /* SqTypedef.h */, + FFFD0c0a70007fa90c0a7000 /* SqAABBPruner.cpp */, + FFFD0c0a70687fa90c0a7068 /* SqAABBTree.cpp */, + FFFD0c0a70d07fa90c0a70d0 /* SqAABBTreeUpdateMap.cpp */, + FFFD0c0a71387fa90c0a7138 /* SqBounds.cpp */, + FFFD0c0a71a07fa90c0a71a0 /* SqBucketPruner.cpp */, + FFFD0c0a72087fa90c0a7208 /* SqExtendedBucketPruner.cpp */, + FFFD0c0a72707fa90c0a7270 /* SqMetaData.cpp */, + FFFD0c0a72d87fa90c0a72d8 /* SqPruningPool.cpp */, + FFFD0c0a73407fa90c0a7340 /* SqPruningStructure.cpp */, + FFFD0c0a73a87fa90c0a73a8 /* SqSceneQueryManager.cpp */, + FFFD0c0a74107fa90c0a7410 /* SqAABBPruner.h */, + FFFD0c0a74787fa90c0a7478 /* SqAABBTree.h */, + FFFD0c0a74e07fa90c0a74e0 /* SqAABBTreeQuery.h */, + FFFD0c0a75487fa90c0a7548 /* SqAABBTreeUpdateMap.h */, + FFFD0c0a75b07fa90c0a75b0 /* SqBounds.h */, + FFFD0c0a76187fa90c0a7618 /* SqBucketPruner.h */, + FFFD0c0a76807fa90c0a7680 /* SqExtendedBucketPruner.h */, + FFFD0c0a76e87fa90c0a76e8 /* SqPrunerTestsSIMD.h */, + FFFD0c0a77507fa90c0a7750 /* SqPruningPool.h */, + FFFD0c0a77b87fa90c0a77b8 /* SqTypedef.h */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBe450e8287ffde450e828 /* include */ = { + FFFB0cb195587fa90cb19558 /* include */ = { isa = PBXGroup; children = ( - FFFDe450f9307ffde450f930 /* SqPruner.h */, - FFFDe450f9987ffde450f998 /* SqPrunerMergeData.h */, - FFFDe450fa007ffde450fa00 /* SqPruningStructure.h */, - FFFDe450fa687ffde450fa68 /* SqSceneQueryManager.h */, + FFFD0cb1b7707fa90cb1b770 /* SqPruner.h */, + FFFD0cb1b7d87fa90cb1b7d8 /* SqPrunerMergeData.h */, + FFFD0cb1b8407fa90cb1b840 /* SqPruningStructure.h */, + FFFD0cb1b8a87fa90cb1b8a8 /* SqSceneQueryManager.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBe450fbf07ffde450fbf0 /* SimulationController */ = { + FFFB0cb1ba307fa90cb1ba30 /* SimulationController */ = { isa = PBXGroup; children = ( - FFFBe4513de07ffde4513de0 /* include */, - FFFBe4513e087ffde4513e08 /* src */, + FFFB0cb1d9607fa90cb1d960 /* include */, + FFFB0cb1d9887fa90cb1d988 /* src */, ); name = "SimulationController"; sourceTree = "<group>"; }; - FFFBe4513de07ffde4513de0 /* include */ = { + FFFB0cb1d9607fa90cb1d960 /* include */ = { isa = PBXGroup; children = ( - FFFDe21a9a007ffde21a9a00 /* ScActorCore.h */, - FFFDe21a9a687ffde21a9a68 /* ScArticulationCore.h */, - FFFDe21a9ad07ffde21a9ad0 /* ScArticulationJointCore.h */, - FFFDe21a9b387ffde21a9b38 /* ScBodyCore.h */, - FFFDe21a9ba07ffde21a9ba0 /* ScClothCore.h */, - FFFDe21a9c087ffde21a9c08 /* ScClothFabricCore.h */, - FFFDe21a9c707ffde21a9c70 /* ScConstraintCore.h */, - FFFDe21a9cd87ffde21a9cd8 /* ScIterators.h */, - FFFDe21a9d407ffde21a9d40 /* ScMaterialCore.h */, - FFFDe21a9da87ffde21a9da8 /* ScParticleSystemCore.h */, - FFFDe21a9e107ffde21a9e10 /* ScPhysics.h */, - FFFDe21a9e787ffde21a9e78 /* ScRigidCore.h */, - FFFDe21a9ee07ffde21a9ee0 /* ScScene.h */, - FFFDe21a9f487ffde21a9f48 /* ScShapeCore.h */, - FFFDe21a9fb07ffde21a9fb0 /* ScStaticCore.h */, + FFFD0c0a9a007fa90c0a9a00 /* ScActorCore.h */, + FFFD0c0a9a687fa90c0a9a68 /* ScArticulationCore.h */, + FFFD0c0a9ad07fa90c0a9ad0 /* ScArticulationJointCore.h */, + FFFD0c0a9b387fa90c0a9b38 /* ScBodyCore.h */, + FFFD0c0a9ba07fa90c0a9ba0 /* ScClothCore.h */, + FFFD0c0a9c087fa90c0a9c08 /* ScClothFabricCore.h */, + FFFD0c0a9c707fa90c0a9c70 /* ScConstraintCore.h */, + FFFD0c0a9cd87fa90c0a9cd8 /* ScIterators.h */, + FFFD0c0a9d407fa90c0a9d40 /* ScMaterialCore.h */, + FFFD0c0a9da87fa90c0a9da8 /* ScParticleSystemCore.h */, + FFFD0c0a9e107fa90c0a9e10 /* ScPhysics.h */, + FFFD0c0a9e787fa90c0a9e78 /* ScRigidCore.h */, + FFFD0c0a9ee07fa90c0a9ee0 /* ScScene.h */, + FFFD0c0a9f487fa90c0a9f48 /* ScShapeCore.h */, + FFFD0c0a9fb07fa90c0a9fb0 /* ScStaticCore.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBe4513e087ffde4513e08 /* src */ = { + FFFB0cb1d9887fa90cb1d988 /* src */ = { isa = PBXGroup; children = ( - FFFDe21afe007ffde21afe00 /* ScActorElementPair.h */, - FFFDe21afe687ffde21afe68 /* ScActorInteraction.h */, - FFFDe21afed07ffde21afed0 /* ScActorPair.h */, - FFFDe21aff387ffde21aff38 /* ScActorSim.h */, - FFFDe21affa07ffde21affa0 /* ScArticulationJointSim.h */, - FFFDe21b00087ffde21b0008 /* ScArticulationSim.h */, - FFFDe21b00707ffde21b0070 /* ScBodySim.h */, - FFFDe21b00d87ffde21b00d8 /* ScClient.h */, - FFFDe21b01407ffde21b0140 /* ScConstraintGroupNode.h */, - FFFDe21b01a87ffde21b01a8 /* ScConstraintInteraction.h */, - FFFDe21b02107ffde21b0210 /* ScConstraintProjectionManager.h */, - FFFDe21b02787ffde21b0278 /* ScConstraintProjectionTree.h */, - FFFDe21b02e07ffde21b02e0 /* ScConstraintSim.h */, - FFFDe21b03487ffde21b0348 /* ScContactReportBuffer.h */, - FFFDe21b03b07ffde21b03b0 /* ScContactStream.h */, - FFFDe21b04187ffde21b0418 /* ScElementInteractionMarker.h */, - FFFDe21b04807ffde21b0480 /* ScElementSim.h */, - FFFDe21b04e87ffde21b04e8 /* ScElementSimInteraction.h */, - FFFDe21b05507ffde21b0550 /* ScInteraction.h */, - FFFDe21b05b87ffde21b05b8 /* ScInteractionFlags.h */, - FFFDe21b06207ffde21b0620 /* ScNPhaseCore.h */, - FFFDe21b06887ffde21b0688 /* ScObjectIDTracker.h */, - FFFDe21b06f07ffde21b06f0 /* ScRbElementInteraction.h */, - FFFDe21b07587ffde21b0758 /* ScRigidSim.h */, - FFFDe21b07c07ffde21b07c0 /* ScShapeInteraction.h */, - FFFDe21b08287ffde21b0828 /* ScShapeIterator.h */, - FFFDe21b08907ffde21b0890 /* ScShapeSim.h */, - FFFDe21b08f87ffde21b08f8 /* ScSimStateData.h */, - FFFDe21b09607ffde21b0960 /* ScSimStats.h */, - FFFDe21b09c87ffde21b09c8 /* ScSimulationController.h */, - FFFDe21b0a307ffde21b0a30 /* ScSqBoundsManager.h */, - FFFDe21b0a987ffde21b0a98 /* ScStaticSim.h */, - FFFDe21b0b007ffde21b0b00 /* ScTriggerInteraction.h */, - FFFDe21b0b687ffde21b0b68 /* ScTriggerPairs.h */, - FFFDe21b0bd07ffde21b0bd0 /* ScActorCore.cpp */, - FFFDe21b0c387ffde21b0c38 /* ScActorSim.cpp */, - FFFDe21b0ca07ffde21b0ca0 /* ScArticulationCore.cpp */, - FFFDe21b0d087ffde21b0d08 /* ScArticulationJointCore.cpp */, - FFFDe21b0d707ffde21b0d70 /* ScArticulationJointSim.cpp */, - FFFDe21b0dd87ffde21b0dd8 /* ScArticulationSim.cpp */, - FFFDe21b0e407ffde21b0e40 /* ScBodyCore.cpp */, - FFFDe21b0ea87ffde21b0ea8 /* ScBodyCoreKinematic.cpp */, - FFFDe21b0f107ffde21b0f10 /* ScBodySim.cpp */, - FFFDe21b0f787ffde21b0f78 /* ScConstraintCore.cpp */, - FFFDe21b0fe07ffde21b0fe0 /* ScConstraintGroupNode.cpp */, - FFFDe21b10487ffde21b1048 /* ScConstraintInteraction.cpp */, - FFFDe21b10b07ffde21b10b0 /* ScConstraintProjectionManager.cpp */, - FFFDe21b11187ffde21b1118 /* ScConstraintProjectionTree.cpp */, - FFFDe21b11807ffde21b1180 /* ScConstraintSim.cpp */, - FFFDe21b11e87ffde21b11e8 /* ScElementInteractionMarker.cpp */, - FFFDe21b12507ffde21b1250 /* ScElementSim.cpp */, - FFFDe21b12b87ffde21b12b8 /* ScInteraction.cpp */, - FFFDe21b13207ffde21b1320 /* ScIterators.cpp */, - FFFDe21b13887ffde21b1388 /* ScMaterialCore.cpp */, - FFFDe21b13f07ffde21b13f0 /* ScMetaData.cpp */, - FFFDe21b14587ffde21b1458 /* ScNPhaseCore.cpp */, - FFFDe21b14c07ffde21b14c0 /* ScPhysics.cpp */, - FFFDe21b15287ffde21b1528 /* ScRigidCore.cpp */, - FFFDe21b15907ffde21b1590 /* ScRigidSim.cpp */, - FFFDe21b15f87ffde21b15f8 /* ScScene.cpp */, - FFFDe21b16607ffde21b1660 /* ScShapeCore.cpp */, - FFFDe21b16c87ffde21b16c8 /* ScShapeInteraction.cpp */, - FFFDe21b17307ffde21b1730 /* ScShapeSim.cpp */, - FFFDe21b17987ffde21b1798 /* ScSimStats.cpp */, - FFFDe21b18007ffde21b1800 /* ScSimulationController.cpp */, - FFFDe21b18687ffde21b1868 /* ScSqBoundsManager.cpp */, - FFFDe21b18d07ffde21b18d0 /* ScStaticCore.cpp */, - FFFDe21b19387ffde21b1938 /* ScStaticSim.cpp */, - FFFDe21b19a07ffde21b19a0 /* ScTriggerInteraction.cpp */, - FFFDe21b1a087ffde21b1a08 /* particles/ScParticleBodyInteraction.h */, - FFFDe21b1a707ffde21b1a70 /* particles/ScParticlePacketShape.h */, - FFFDe21b1ad87ffde21b1ad8 /* particles/ScParticleSystemSim.h */, - FFFDe21b1b407ffde21b1b40 /* particles/ScParticleBodyInteraction.cpp */, - FFFDe21b1ba87ffde21b1ba8 /* particles/ScParticlePacketShape.cpp */, - FFFDe21b1c107ffde21b1c10 /* particles/ScParticleSystemCore.cpp */, - FFFDe21b1c787ffde21b1c78 /* particles/ScParticleSystemSim.cpp */, - FFFDe21b1ce07ffde21b1ce0 /* cloth/ScClothShape.h */, - FFFDe21b1d487ffde21b1d48 /* cloth/ScClothSim.h */, - FFFDe21b1db07ffde21b1db0 /* cloth/ScClothCore.cpp */, - FFFDe21b1e187ffde21b1e18 /* cloth/ScClothFabricCore.cpp */, - FFFDe21b1e807ffde21b1e80 /* cloth/ScClothShape.cpp */, - FFFDe21b1ee87ffde21b1ee8 /* cloth/ScClothSim.cpp */, + FFFD0c0acc007fa90c0acc00 /* ScActorElementPair.h */, + FFFD0c0acc687fa90c0acc68 /* ScActorInteraction.h */, + FFFD0c0accd07fa90c0accd0 /* ScActorPair.h */, + FFFD0c0acd387fa90c0acd38 /* ScActorSim.h */, + FFFD0c0acda07fa90c0acda0 /* ScArticulationJointSim.h */, + FFFD0c0ace087fa90c0ace08 /* ScArticulationSim.h */, + FFFD0c0ace707fa90c0ace70 /* ScBodySim.h */, + FFFD0c0aced87fa90c0aced8 /* ScClient.h */, + FFFD0c0acf407fa90c0acf40 /* ScConstraintGroupNode.h */, + FFFD0c0acfa87fa90c0acfa8 /* ScConstraintInteraction.h */, + FFFD0c0ad0107fa90c0ad010 /* ScConstraintProjectionManager.h */, + FFFD0c0ad0787fa90c0ad078 /* ScConstraintProjectionTree.h */, + FFFD0c0ad0e07fa90c0ad0e0 /* ScConstraintSim.h */, + FFFD0c0ad1487fa90c0ad148 /* ScContactReportBuffer.h */, + FFFD0c0ad1b07fa90c0ad1b0 /* ScContactStream.h */, + FFFD0c0ad2187fa90c0ad218 /* ScElementInteractionMarker.h */, + FFFD0c0ad2807fa90c0ad280 /* ScElementSim.h */, + FFFD0c0ad2e87fa90c0ad2e8 /* ScElementSimInteraction.h */, + FFFD0c0ad3507fa90c0ad350 /* ScInteraction.h */, + FFFD0c0ad3b87fa90c0ad3b8 /* ScInteractionFlags.h */, + FFFD0c0ad4207fa90c0ad420 /* ScNPhaseCore.h */, + FFFD0c0ad4887fa90c0ad488 /* ScObjectIDTracker.h */, + FFFD0c0ad4f07fa90c0ad4f0 /* ScRbElementInteraction.h */, + FFFD0c0ad5587fa90c0ad558 /* ScRigidSim.h */, + FFFD0c0ad5c07fa90c0ad5c0 /* ScShapeInteraction.h */, + FFFD0c0ad6287fa90c0ad628 /* ScShapeIterator.h */, + FFFD0c0ad6907fa90c0ad690 /* ScShapeSim.h */, + FFFD0c0ad6f87fa90c0ad6f8 /* ScSimStateData.h */, + FFFD0c0ad7607fa90c0ad760 /* ScSimStats.h */, + FFFD0c0ad7c87fa90c0ad7c8 /* ScSimulationController.h */, + FFFD0c0ad8307fa90c0ad830 /* ScSqBoundsManager.h */, + FFFD0c0ad8987fa90c0ad898 /* ScStaticSim.h */, + FFFD0c0ad9007fa90c0ad900 /* ScTriggerInteraction.h */, + FFFD0c0ad9687fa90c0ad968 /* ScTriggerPairs.h */, + FFFD0c0ad9d07fa90c0ad9d0 /* ScActorCore.cpp */, + FFFD0c0ada387fa90c0ada38 /* ScActorSim.cpp */, + FFFD0c0adaa07fa90c0adaa0 /* ScArticulationCore.cpp */, + FFFD0c0adb087fa90c0adb08 /* ScArticulationJointCore.cpp */, + FFFD0c0adb707fa90c0adb70 /* ScArticulationJointSim.cpp */, + FFFD0c0adbd87fa90c0adbd8 /* ScArticulationSim.cpp */, + FFFD0c0adc407fa90c0adc40 /* ScBodyCore.cpp */, + FFFD0c0adca87fa90c0adca8 /* ScBodyCoreKinematic.cpp */, + FFFD0c0add107fa90c0add10 /* ScBodySim.cpp */, + FFFD0c0add787fa90c0add78 /* ScConstraintCore.cpp */, + FFFD0c0adde07fa90c0adde0 /* ScConstraintGroupNode.cpp */, + FFFD0c0ade487fa90c0ade48 /* ScConstraintInteraction.cpp */, + FFFD0c0adeb07fa90c0adeb0 /* ScConstraintProjectionManager.cpp */, + FFFD0c0adf187fa90c0adf18 /* ScConstraintProjectionTree.cpp */, + FFFD0c0adf807fa90c0adf80 /* ScConstraintSim.cpp */, + FFFD0c0adfe87fa90c0adfe8 /* ScElementInteractionMarker.cpp */, + FFFD0c0ae0507fa90c0ae050 /* ScElementSim.cpp */, + FFFD0c0ae0b87fa90c0ae0b8 /* ScInteraction.cpp */, + FFFD0c0ae1207fa90c0ae120 /* ScIterators.cpp */, + FFFD0c0ae1887fa90c0ae188 /* ScMaterialCore.cpp */, + FFFD0c0ae1f07fa90c0ae1f0 /* ScMetaData.cpp */, + FFFD0c0ae2587fa90c0ae258 /* ScNPhaseCore.cpp */, + FFFD0c0ae2c07fa90c0ae2c0 /* ScPhysics.cpp */, + FFFD0c0ae3287fa90c0ae328 /* ScRigidCore.cpp */, + FFFD0c0ae3907fa90c0ae390 /* ScRigidSim.cpp */, + FFFD0c0ae3f87fa90c0ae3f8 /* ScScene.cpp */, + FFFD0c0ae4607fa90c0ae460 /* ScShapeCore.cpp */, + FFFD0c0ae4c87fa90c0ae4c8 /* ScShapeInteraction.cpp */, + FFFD0c0ae5307fa90c0ae530 /* ScShapeSim.cpp */, + FFFD0c0ae5987fa90c0ae598 /* ScSimStats.cpp */, + FFFD0c0ae6007fa90c0ae600 /* ScSimulationController.cpp */, + FFFD0c0ae6687fa90c0ae668 /* ScSqBoundsManager.cpp */, + FFFD0c0ae6d07fa90c0ae6d0 /* ScStaticCore.cpp */, + FFFD0c0ae7387fa90c0ae738 /* ScStaticSim.cpp */, + FFFD0c0ae7a07fa90c0ae7a0 /* ScTriggerInteraction.cpp */, + FFFD0c0ae8087fa90c0ae808 /* particles/ScParticleBodyInteraction.h */, + FFFD0c0ae8707fa90c0ae870 /* particles/ScParticlePacketShape.h */, + FFFD0c0ae8d87fa90c0ae8d8 /* particles/ScParticleSystemSim.h */, + FFFD0c0ae9407fa90c0ae940 /* particles/ScParticleBodyInteraction.cpp */, + FFFD0c0ae9a87fa90c0ae9a8 /* particles/ScParticlePacketShape.cpp */, + FFFD0c0aea107fa90c0aea10 /* particles/ScParticleSystemCore.cpp */, + FFFD0c0aea787fa90c0aea78 /* particles/ScParticleSystemSim.cpp */, + FFFD0c0aeae07fa90c0aeae0 /* cloth/ScClothShape.h */, + FFFD0c0aeb487fa90c0aeb48 /* cloth/ScClothSim.h */, + FFFD0c0aebb07fa90c0aebb0 /* cloth/ScClothCore.cpp */, + FFFD0c0aec187fa90c0aec18 /* cloth/ScClothFabricCore.cpp */, + FFFD0c0aec807fa90c0aec80 /* cloth/ScClothShape.cpp */, + FFFD0c0aece87fa90c0aece8 /* cloth/ScClothSim.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBe2d74eb07ffde2d74eb0 /* PhysXCooking */ = { + FFFB0cb201d07fa90cb201d0 /* PhysXCooking */ = { isa = PBXGroup; children = ( - FFFBe2d775607ffde2d77560 /* include */, - FFFBe2d775887ffde2d77588 /* src */, + FFFB0cb244607fa90cb24460 /* include */, + FFFB0cb244887fa90cb24488 /* src */, ); name = "PhysXCooking"; sourceTree = "<group>"; }; - FFFBe2d775607ffde2d77560 /* include */ = { + FFFB0cb244607fa90cb24460 /* include */ = { isa = PBXGroup; children = ( - FFFDe2d68c307ffde2d68c30 /* PxBVH33MidphaseDesc.h */, - FFFDe2d68c987ffde2d68c98 /* PxBVH34MidphaseDesc.h */, - FFFDe2d68d007ffde2d68d00 /* PxConvexMeshDesc.h */, - FFFDe2d68d687ffde2d68d68 /* PxCooking.h */, - FFFDe2d68dd07ffde2d68dd0 /* PxMidphaseDesc.h */, - FFFDe2d68e387ffde2d68e38 /* PxTriangleMeshDesc.h */, - FFFDe2d68ea07ffde2d68ea0 /* Pxc.h */, + FFFD0cb2a2d07fa90cb2a2d0 /* PxBVH33MidphaseDesc.h */, + FFFD0cb2a3387fa90cb2a338 /* PxBVH34MidphaseDesc.h */, + FFFD0cb2a3a07fa90cb2a3a0 /* PxConvexMeshDesc.h */, + FFFD0cb2a4087fa90cb2a408 /* PxCooking.h */, + FFFD0cb2a4707fa90cb2a470 /* PxMidphaseDesc.h */, + FFFD0cb2a4d87fa90cb2a4d8 /* PxTriangleMeshDesc.h */, + FFFD0cb2a5407fa90cb2a540 /* Pxc.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBe2d775887ffde2d77588 /* src */ = { + FFFB0cb244887fa90cb24488 /* src */ = { isa = PBXGroup; children = ( - FFFDe3829c007ffde3829c00 /* Adjacencies.cpp */, - FFFDe3829c687ffde3829c68 /* Cooking.cpp */, - FFFDe3829cd07ffde3829cd0 /* CookingUtils.cpp */, - FFFDe3829d387ffde3829d38 /* EdgeList.cpp */, - FFFDe3829da07ffde3829da0 /* MeshCleaner.cpp */, - FFFDe3829e087ffde3829e08 /* Quantizer.cpp */, - FFFDe3829e707ffde3829e70 /* Adjacencies.h */, - FFFDe3829ed87ffde3829ed8 /* Cooking.h */, - FFFDe3829f407ffde3829f40 /* CookingUtils.h */, - FFFDe3829fa87ffde3829fa8 /* EdgeList.h */, - FFFDe382a0107ffde382a010 /* MeshCleaner.h */, - FFFDe382a0787ffde382a078 /* Quantizer.h */, - FFFDe382a0e07ffde382a0e0 /* mesh/GrbTriangleMeshCooking.cpp */, - FFFDe382a1487ffde382a148 /* mesh/HeightFieldCooking.cpp */, - FFFDe382a1b07ffde382a1b0 /* mesh/RTreeCooking.cpp */, - FFFDe382a2187ffde382a218 /* mesh/TriangleMeshBuilder.cpp */, - FFFDe382a2807ffde382a280 /* mesh/GrbTriangleMeshCooking.h */, - FFFDe382a2e87ffde382a2e8 /* mesh/HeightFieldCooking.h */, - FFFDe382a3507ffde382a350 /* mesh/QuickSelect.h */, - FFFDe382a3b87ffde382a3b8 /* mesh/RTreeCooking.h */, - FFFDe382a4207ffde382a420 /* mesh/TriangleMeshBuilder.h */, - FFFDe382a4887ffde382a488 /* convex/BigConvexDataBuilder.cpp */, - FFFDe382a4f07ffde382a4f0 /* convex/ConvexHullBuilder.cpp */, - FFFDe382a5587ffde382a558 /* convex/ConvexHullLib.cpp */, - FFFDe382a5c07ffde382a5c0 /* convex/ConvexHullUtils.cpp */, - FFFDe382a6287ffde382a628 /* convex/ConvexMeshBuilder.cpp */, - FFFDe382a6907ffde382a690 /* convex/ConvexPolygonsBuilder.cpp */, - FFFDe382a6f87ffde382a6f8 /* convex/InflationConvexHullLib.cpp */, - FFFDe382a7607ffde382a760 /* convex/QuickHullConvexHullLib.cpp */, - FFFDe382a7c87ffde382a7c8 /* convex/VolumeIntegration.cpp */, - FFFDe382a8307ffde382a830 /* convex/BigConvexDataBuilder.h */, - FFFDe382a8987ffde382a898 /* convex/ConvexHullBuilder.h */, - FFFDe382a9007ffde382a900 /* convex/ConvexHullLib.h */, - FFFDe382a9687ffde382a968 /* convex/ConvexHullUtils.h */, - FFFDe382a9d07ffde382a9d0 /* convex/ConvexMeshBuilder.h */, - FFFDe382aa387ffde382aa38 /* convex/ConvexPolygonsBuilder.h */, - FFFDe382aaa07ffde382aaa0 /* convex/InflationConvexHullLib.h */, - FFFDe382ab087ffde382ab08 /* convex/QuickHullConvexHullLib.h */, - FFFDe382ab707ffde382ab70 /* convex/VolumeIntegration.h */, + FFFD0c0b0e007fa90c0b0e00 /* Adjacencies.cpp */, + FFFD0c0b0e687fa90c0b0e68 /* Cooking.cpp */, + FFFD0c0b0ed07fa90c0b0ed0 /* CookingUtils.cpp */, + FFFD0c0b0f387fa90c0b0f38 /* EdgeList.cpp */, + FFFD0c0b0fa07fa90c0b0fa0 /* MeshCleaner.cpp */, + FFFD0c0b10087fa90c0b1008 /* Quantizer.cpp */, + FFFD0c0b10707fa90c0b1070 /* Adjacencies.h */, + FFFD0c0b10d87fa90c0b10d8 /* Cooking.h */, + FFFD0c0b11407fa90c0b1140 /* CookingUtils.h */, + FFFD0c0b11a87fa90c0b11a8 /* EdgeList.h */, + FFFD0c0b12107fa90c0b1210 /* MeshCleaner.h */, + FFFD0c0b12787fa90c0b1278 /* Quantizer.h */, + FFFD0c0b12e07fa90c0b12e0 /* mesh/GrbTriangleMeshCooking.cpp */, + FFFD0c0b13487fa90c0b1348 /* mesh/HeightFieldCooking.cpp */, + FFFD0c0b13b07fa90c0b13b0 /* mesh/RTreeCooking.cpp */, + FFFD0c0b14187fa90c0b1418 /* mesh/TriangleMeshBuilder.cpp */, + FFFD0c0b14807fa90c0b1480 /* mesh/GrbTriangleMeshCooking.h */, + FFFD0c0b14e87fa90c0b14e8 /* mesh/HeightFieldCooking.h */, + FFFD0c0b15507fa90c0b1550 /* mesh/QuickSelect.h */, + FFFD0c0b15b87fa90c0b15b8 /* mesh/RTreeCooking.h */, + FFFD0c0b16207fa90c0b1620 /* mesh/TriangleMeshBuilder.h */, + FFFD0c0b16887fa90c0b1688 /* convex/BigConvexDataBuilder.cpp */, + FFFD0c0b16f07fa90c0b16f0 /* convex/ConvexHullBuilder.cpp */, + FFFD0c0b17587fa90c0b1758 /* convex/ConvexHullLib.cpp */, + FFFD0c0b17c07fa90c0b17c0 /* convex/ConvexHullUtils.cpp */, + FFFD0c0b18287fa90c0b1828 /* convex/ConvexMeshBuilder.cpp */, + FFFD0c0b18907fa90c0b1890 /* convex/ConvexPolygonsBuilder.cpp */, + FFFD0c0b18f87fa90c0b18f8 /* convex/InflationConvexHullLib.cpp */, + FFFD0c0b19607fa90c0b1960 /* convex/QuickHullConvexHullLib.cpp */, + FFFD0c0b19c87fa90c0b19c8 /* convex/VolumeIntegration.cpp */, + FFFD0c0b1a307fa90c0b1a30 /* convex/BigConvexDataBuilder.h */, + FFFD0c0b1a987fa90c0b1a98 /* convex/ConvexHullBuilder.h */, + FFFD0c0b1b007fa90c0b1b00 /* convex/ConvexHullLib.h */, + FFFD0c0b1b687fa90c0b1b68 /* convex/ConvexHullUtils.h */, + FFFD0c0b1bd07fa90c0b1bd0 /* convex/ConvexMeshBuilder.h */, + FFFD0c0b1c387fa90c0b1c38 /* convex/ConvexPolygonsBuilder.h */, + FFFD0c0b1ca07fa90c0b1ca0 /* convex/InflationConvexHullLib.h */, + FFFD0c0b1d087fa90c0b1d08 /* convex/QuickHullConvexHullLib.h */, + FFFD0c0b1d707fa90c0b1d70 /* convex/VolumeIntegration.h */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBe2c17a107ffde2c17a10 /* PhysXCommon */ = { + FFFB0b897c207fa90b897c20 /* PhysXCommon */ = { isa = PBXGroup; children = ( - FFFBe2c1a5207ffde2c1a520 /* include */, - FFFBe2c1a5487ffde2c1a548 /* common */, - FFFBe2c1a5707ffde2c1a570 /* geomutils */, + FFFB0b89a3307fa90b89a330 /* include */, + FFFB0b89a3587fa90b89a358 /* common */, + FFFB0b89a3807fa90b89a380 /* geomutils */, ); name = "PhysXCommon"; sourceTree = "<group>"; }; - FFFBe2c1a5207ffde2c1a520 /* include */ = { + FFFB0b89a3307fa90b89a330 /* include */ = { isa = PBXGroup; children = ( - FFFDe380ec007ffde380ec00 /* common/PxBase.h */, - FFFDe380ec687ffde380ec68 /* common/PxCollection.h */, - FFFDe380ecd07ffde380ecd0 /* common/PxCoreUtilityTypes.h */, - FFFDe380ed387ffde380ed38 /* common/PxMetaData.h */, - FFFDe380eda07ffde380eda0 /* common/PxMetaDataFlags.h */, - FFFDe380ee087ffde380ee08 /* common/PxPhysXCommonConfig.h */, - FFFDe380ee707ffde380ee70 /* common/PxPhysicsInsertionCallback.h */, - FFFDe380eed87ffde380eed8 /* common/PxRenderBuffer.h */, - FFFDe380ef407ffde380ef40 /* common/PxSerialFramework.h */, - FFFDe380efa87ffde380efa8 /* common/PxSerializer.h */, - FFFDe380f0107ffde380f010 /* common/PxStringTable.h */, - FFFDe380f0787ffde380f078 /* common/PxTolerancesScale.h */, - FFFDe380f0e07ffde380f0e0 /* common/PxTypeInfo.h */, - FFFDe380f1487ffde380f148 /* geometry/PxBoxGeometry.h */, - FFFDe380f1b07ffde380f1b0 /* geometry/PxCapsuleGeometry.h */, - FFFDe380f2187ffde380f218 /* geometry/PxConvexMesh.h */, - FFFDe380f2807ffde380f280 /* geometry/PxConvexMeshGeometry.h */, - FFFDe380f2e87ffde380f2e8 /* geometry/PxGeometry.h */, - FFFDe380f3507ffde380f350 /* geometry/PxGeometryHelpers.h */, - FFFDe380f3b87ffde380f3b8 /* geometry/PxGeometryQuery.h */, - FFFDe380f4207ffde380f420 /* geometry/PxHeightField.h */, - FFFDe380f4887ffde380f488 /* geometry/PxHeightFieldDesc.h */, - FFFDe380f4f07ffde380f4f0 /* geometry/PxHeightFieldFlag.h */, - FFFDe380f5587ffde380f558 /* geometry/PxHeightFieldGeometry.h */, - FFFDe380f5c07ffde380f5c0 /* geometry/PxHeightFieldSample.h */, - FFFDe380f6287ffde380f628 /* geometry/PxMeshQuery.h */, - FFFDe380f6907ffde380f690 /* geometry/PxMeshScale.h */, - FFFDe380f6f87ffde380f6f8 /* geometry/PxPlaneGeometry.h */, - FFFDe380f7607ffde380f760 /* geometry/PxSimpleTriangleMesh.h */, - FFFDe380f7c87ffde380f7c8 /* geometry/PxSphereGeometry.h */, - FFFDe380f8307ffde380f830 /* geometry/PxTriangle.h */, - FFFDe380f8987ffde380f898 /* geometry/PxTriangleMesh.h */, - FFFDe380f9007ffde380f900 /* geometry/PxTriangleMeshGeometry.h */, + FFFD0c00ec007fa90c00ec00 /* common/PxBase.h */, + FFFD0c00ec687fa90c00ec68 /* common/PxCollection.h */, + FFFD0c00ecd07fa90c00ecd0 /* common/PxCoreUtilityTypes.h */, + FFFD0c00ed387fa90c00ed38 /* common/PxMetaData.h */, + FFFD0c00eda07fa90c00eda0 /* common/PxMetaDataFlags.h */, + FFFD0c00ee087fa90c00ee08 /* common/PxPhysXCommonConfig.h */, + FFFD0c00ee707fa90c00ee70 /* common/PxPhysicsInsertionCallback.h */, + FFFD0c00eed87fa90c00eed8 /* common/PxRenderBuffer.h */, + FFFD0c00ef407fa90c00ef40 /* common/PxSerialFramework.h */, + FFFD0c00efa87fa90c00efa8 /* common/PxSerializer.h */, + FFFD0c00f0107fa90c00f010 /* common/PxStringTable.h */, + FFFD0c00f0787fa90c00f078 /* common/PxTolerancesScale.h */, + FFFD0c00f0e07fa90c00f0e0 /* common/PxTypeInfo.h */, + FFFD0c00f1487fa90c00f148 /* geometry/PxBoxGeometry.h */, + FFFD0c00f1b07fa90c00f1b0 /* geometry/PxCapsuleGeometry.h */, + FFFD0c00f2187fa90c00f218 /* geometry/PxConvexMesh.h */, + FFFD0c00f2807fa90c00f280 /* geometry/PxConvexMeshGeometry.h */, + FFFD0c00f2e87fa90c00f2e8 /* geometry/PxGeometry.h */, + FFFD0c00f3507fa90c00f350 /* geometry/PxGeometryHelpers.h */, + FFFD0c00f3b87fa90c00f3b8 /* geometry/PxGeometryQuery.h */, + FFFD0c00f4207fa90c00f420 /* geometry/PxHeightField.h */, + FFFD0c00f4887fa90c00f488 /* geometry/PxHeightFieldDesc.h */, + FFFD0c00f4f07fa90c00f4f0 /* geometry/PxHeightFieldFlag.h */, + FFFD0c00f5587fa90c00f558 /* geometry/PxHeightFieldGeometry.h */, + FFFD0c00f5c07fa90c00f5c0 /* geometry/PxHeightFieldSample.h */, + FFFD0c00f6287fa90c00f628 /* geometry/PxMeshQuery.h */, + FFFD0c00f6907fa90c00f690 /* geometry/PxMeshScale.h */, + FFFD0c00f6f87fa90c00f6f8 /* geometry/PxPlaneGeometry.h */, + FFFD0c00f7607fa90c00f760 /* geometry/PxSimpleTriangleMesh.h */, + FFFD0c00f7c87fa90c00f7c8 /* geometry/PxSphereGeometry.h */, + FFFD0c00f8307fa90c00f830 /* geometry/PxTriangle.h */, + FFFD0c00f8987fa90c00f898 /* geometry/PxTriangleMesh.h */, + FFFD0c00f9007fa90c00f900 /* geometry/PxTriangleMeshGeometry.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBe2c1a5487ffde2c1a548 /* common */ = { + FFFB0b89a3587fa90b89a358 /* common */ = { isa = PBXGroup; children = ( - FFFDe30290007ffde3029000 /* src/CmBoxPruning.cpp */, - FFFDe30290687ffde3029068 /* src/CmCollection.cpp */, - FFFDe30290d07ffde30290d0 /* src/CmMathUtils.cpp */, - FFFDe30291387ffde3029138 /* src/CmPtrTable.cpp */, - FFFDe30291a07ffde30291a0 /* src/CmRadixSort.cpp */, - FFFDe30292087ffde3029208 /* src/CmRadixSortBuffered.cpp */, - FFFDe30292707ffde3029270 /* src/CmRenderOutput.cpp */, - FFFDe30292d87ffde30292d8 /* src/CmVisualization.cpp */, - FFFDe30293407ffde3029340 /* src/CmBitMap.h */, - FFFDe30293a87ffde30293a8 /* src/CmBoxPruning.h */, - FFFDe30294107ffde3029410 /* src/CmCollection.h */, - FFFDe30294787ffde3029478 /* src/CmConeLimitHelper.h */, - FFFDe30294e07ffde30294e0 /* src/CmFlushPool.h */, - FFFDe30295487ffde3029548 /* src/CmIDPool.h */, - FFFDe30295b07ffde30295b0 /* src/CmIO.h */, - FFFDe30296187ffde3029618 /* src/CmMatrix34.h */, - FFFDe30296807ffde3029680 /* src/CmPhysXCommon.h */, - FFFDe30296e87ffde30296e8 /* src/CmPool.h */, - FFFDe30297507ffde3029750 /* src/CmPreallocatingPool.h */, - FFFDe30297b87ffde30297b8 /* src/CmPriorityQueue.h */, - FFFDe30298207ffde3029820 /* src/CmPtrTable.h */, - FFFDe30298887ffde3029888 /* src/CmQueue.h */, - FFFDe30298f07ffde30298f0 /* src/CmRadixSort.h */, - FFFDe30299587ffde3029958 /* src/CmRadixSortBuffered.h */, - FFFDe30299c07ffde30299c0 /* src/CmReaderWriterLock.h */, - FFFDe3029a287ffde3029a28 /* src/CmRefCountable.h */, - FFFDe3029a907ffde3029a90 /* src/CmRenderBuffer.h */, - FFFDe3029af87ffde3029af8 /* src/CmRenderOutput.h */, - FFFDe3029b607ffde3029b60 /* src/CmScaling.h */, - FFFDe3029bc87ffde3029bc8 /* src/CmSpatialVector.h */, - FFFDe3029c307ffde3029c30 /* src/CmTask.h */, - FFFDe3029c987ffde3029c98 /* src/CmTaskPool.h */, - FFFDe3029d007ffde3029d00 /* src/CmTmpMem.h */, - FFFDe3029d687ffde3029d68 /* src/CmTransformUtils.h */, - FFFDe3029dd07ffde3029dd0 /* src/CmUtils.h */, - FFFDe3029e387ffde3029e38 /* src/CmVisualization.h */, + FFFD0b1a48007fa90b1a4800 /* src/CmBoxPruning.cpp */, + FFFD0b1a48687fa90b1a4868 /* src/CmCollection.cpp */, + FFFD0b1a48d07fa90b1a48d0 /* src/CmMathUtils.cpp */, + FFFD0b1a49387fa90b1a4938 /* src/CmPtrTable.cpp */, + FFFD0b1a49a07fa90b1a49a0 /* src/CmRadixSort.cpp */, + FFFD0b1a4a087fa90b1a4a08 /* src/CmRadixSortBuffered.cpp */, + FFFD0b1a4a707fa90b1a4a70 /* src/CmRenderOutput.cpp */, + FFFD0b1a4ad87fa90b1a4ad8 /* src/CmVisualization.cpp */, + FFFD0b1a4b407fa90b1a4b40 /* src/CmBitMap.h */, + FFFD0b1a4ba87fa90b1a4ba8 /* src/CmBoxPruning.h */, + FFFD0b1a4c107fa90b1a4c10 /* src/CmCollection.h */, + FFFD0b1a4c787fa90b1a4c78 /* src/CmConeLimitHelper.h */, + FFFD0b1a4ce07fa90b1a4ce0 /* src/CmFlushPool.h */, + FFFD0b1a4d487fa90b1a4d48 /* src/CmIDPool.h */, + FFFD0b1a4db07fa90b1a4db0 /* src/CmIO.h */, + FFFD0b1a4e187fa90b1a4e18 /* src/CmMatrix34.h */, + FFFD0b1a4e807fa90b1a4e80 /* src/CmPhysXCommon.h */, + FFFD0b1a4ee87fa90b1a4ee8 /* src/CmPool.h */, + FFFD0b1a4f507fa90b1a4f50 /* src/CmPreallocatingPool.h */, + FFFD0b1a4fb87fa90b1a4fb8 /* src/CmPriorityQueue.h */, + FFFD0b1a50207fa90b1a5020 /* src/CmPtrTable.h */, + FFFD0b1a50887fa90b1a5088 /* src/CmQueue.h */, + FFFD0b1a50f07fa90b1a50f0 /* src/CmRadixSort.h */, + FFFD0b1a51587fa90b1a5158 /* src/CmRadixSortBuffered.h */, + FFFD0b1a51c07fa90b1a51c0 /* src/CmReaderWriterLock.h */, + FFFD0b1a52287fa90b1a5228 /* src/CmRefCountable.h */, + FFFD0b1a52907fa90b1a5290 /* src/CmRenderBuffer.h */, + FFFD0b1a52f87fa90b1a52f8 /* src/CmRenderOutput.h */, + FFFD0b1a53607fa90b1a5360 /* src/CmScaling.h */, + FFFD0b1a53c87fa90b1a53c8 /* src/CmSpatialVector.h */, + FFFD0b1a54307fa90b1a5430 /* src/CmTask.h */, + FFFD0b1a54987fa90b1a5498 /* src/CmTaskPool.h */, + FFFD0b1a55007fa90b1a5500 /* src/CmTmpMem.h */, + FFFD0b1a55687fa90b1a5568 /* src/CmTransformUtils.h */, + FFFD0b1a55d07fa90b1a55d0 /* src/CmUtils.h */, + FFFD0b1a56387fa90b1a5638 /* src/CmVisualization.h */, ); name = "common"; sourceTree = SOURCE_ROOT; }; - FFFBe2c1a5707ffde2c1a570 /* geomutils */ = { + FFFB0b89a3807fa90b89a380 /* geomutils */ = { isa = PBXGroup; children = ( - FFFDe38010007ffde3801000 /* headers/GuAxes.h */, - FFFDe38010687ffde3801068 /* headers/GuBox.h */, - FFFDe38010d07ffde38010d0 /* headers/GuDistanceSegmentBox.h */, - FFFDe38011387ffde3801138 /* headers/GuDistanceSegmentSegment.h */, - FFFDe38011a07ffde38011a0 /* headers/GuIntersectionBoxBox.h */, - FFFDe38012087ffde3801208 /* headers/GuIntersectionTriangleBox.h */, - FFFDe38012707ffde3801270 /* headers/GuRaycastTests.h */, - FFFDe38012d87ffde38012d8 /* headers/GuSIMDHelpers.h */, - FFFDe38013407ffde3801340 /* headers/GuSegment.h */, - FFFDe38013a87ffde38013a8 /* ../../Include/GeomUtils */, - FFFDe38014107ffde3801410 /* src/GuBounds.h */, - FFFDe38014787ffde3801478 /* src/GuCapsule.h */, - FFFDe38014e07ffde38014e0 /* src/GuCenterExtents.h */, - FFFDe38015487ffde3801548 /* src/GuGeometryUnion.h */, - FFFDe38015b07ffde38015b0 /* src/GuInternal.h */, - FFFDe38016187ffde3801618 /* src/GuMTD.h */, - FFFDe38016807ffde3801680 /* src/GuMeshFactory.h */, - FFFDe38016e87ffde38016e8 /* src/GuOverlapTests.h */, - FFFDe38017507ffde3801750 /* src/GuSerialize.h */, - FFFDe38017b87ffde38017b8 /* src/GuSphere.h */, - FFFDe38018207ffde3801820 /* src/GuSweepMTD.h */, - FFFDe38018887ffde3801888 /* src/GuSweepSharedTests.h */, - FFFDe38018f07ffde38018f0 /* src/GuSweepTests.h */, - FFFDe38019587ffde3801958 /* src/contact/GuContactMethodImpl.h */, - FFFDe38019c07ffde38019c0 /* src/contact/GuContactPolygonPolygon.h */, - FFFDe3801a287ffde3801a28 /* src/contact/GuFeatureCode.h */, - FFFDe3801a907ffde3801a90 /* src/contact/GuLegacyTraceLineCallback.h */, - FFFDe3801af87ffde3801af8 /* src/common/GuBarycentricCoordinates.h */, - FFFDe3801b607ffde3801b60 /* src/common/GuBoxConversion.h */, - FFFDe3801bc87ffde3801bc8 /* src/common/GuEdgeCache.h */, - FFFDe3801c307ffde3801c30 /* src/common/GuEdgeListData.h */, - FFFDe3801c987ffde3801c98 /* src/common/GuSeparatingAxes.h */, - FFFDe3801d007ffde3801d00 /* src/convex/GuBigConvexData.h */, - FFFDe3801d687ffde3801d68 /* src/convex/GuBigConvexData2.h */, - FFFDe3801dd07ffde3801dd0 /* src/convex/GuConvexEdgeFlags.h */, - FFFDe3801e387ffde3801e38 /* src/convex/GuConvexHelper.h */, - FFFDe3801ea07ffde3801ea0 /* src/convex/GuConvexMesh.h */, - FFFDe3801f087ffde3801f08 /* src/convex/GuConvexMeshData.h */, - FFFDe3801f707ffde3801f70 /* src/convex/GuConvexSupportTable.h */, - FFFDe3801fd87ffde3801fd8 /* src/convex/GuConvexUtilsInternal.h */, - FFFDe38020407ffde3802040 /* src/convex/GuCubeIndex.h */, - FFFDe38020a87ffde38020a8 /* src/convex/GuHillClimbing.h */, - FFFDe38021107ffde3802110 /* src/convex/GuShapeConvex.h */, - FFFDe38021787ffde3802178 /* src/distance/GuDistancePointBox.h */, - FFFDe38021e07ffde38021e0 /* src/distance/GuDistancePointSegment.h */, - FFFDe38022487ffde3802248 /* src/distance/GuDistancePointTriangle.h */, - FFFDe38022b07ffde38022b0 /* src/distance/GuDistancePointTriangleSIMD.h */, - FFFDe38023187ffde3802318 /* src/distance/GuDistanceSegmentSegmentSIMD.h */, - FFFDe38023807ffde3802380 /* src/distance/GuDistanceSegmentTriangle.h */, - FFFDe38023e87ffde38023e8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */, - FFFDe38024507ffde3802450 /* src/sweep/GuSweepBoxBox.h */, - FFFDe38024b87ffde38024b8 /* src/sweep/GuSweepBoxSphere.h */, - FFFDe38025207ffde3802520 /* src/sweep/GuSweepBoxTriangle_FeatureBased.h */, - FFFDe38025887ffde3802588 /* src/sweep/GuSweepBoxTriangle_SAT.h */, - FFFDe38025f07ffde38025f0 /* src/sweep/GuSweepCapsuleBox.h */, - FFFDe38026587ffde3802658 /* src/sweep/GuSweepCapsuleCapsule.h */, - FFFDe38026c07ffde38026c0 /* src/sweep/GuSweepCapsuleTriangle.h */, - FFFDe38027287ffde3802728 /* src/sweep/GuSweepSphereCapsule.h */, - FFFDe38027907ffde3802790 /* src/sweep/GuSweepSphereSphere.h */, - FFFDe38027f87ffde38027f8 /* src/sweep/GuSweepSphereTriangle.h */, - FFFDe38028607ffde3802860 /* src/sweep/GuSweepTriangleUtils.h */, - FFFDe38028c87ffde38028c8 /* src/gjk/GuEPA.h */, - FFFDe38029307ffde3802930 /* src/gjk/GuEPAFacet.h */, - FFFDe38029987ffde3802998 /* src/gjk/GuGJK.h */, - FFFDe3802a007ffde3802a00 /* src/gjk/GuGJKPenetration.h */, - FFFDe3802a687ffde3802a68 /* src/gjk/GuGJKRaycast.h */, - FFFDe3802ad07ffde3802ad0 /* src/gjk/GuGJKSimplex.h */, - FFFDe3802b387ffde3802b38 /* src/gjk/GuGJKTest.h */, - FFFDe3802ba07ffde3802ba0 /* src/gjk/GuGJKType.h */, - FFFDe3802c087ffde3802c08 /* src/gjk/GuGJKUtil.h */, - FFFDe3802c707ffde3802c70 /* src/gjk/GuVecBox.h */, - FFFDe3802cd87ffde3802cd8 /* src/gjk/GuVecCapsule.h */, - FFFDe3802d407ffde3802d40 /* src/gjk/GuVecConvex.h */, - FFFDe3802da87ffde3802da8 /* src/gjk/GuVecConvexHull.h */, - FFFDe3802e107ffde3802e10 /* src/gjk/GuVecConvexHullNoScale.h */, - FFFDe3802e787ffde3802e78 /* src/gjk/GuVecPlane.h */, - FFFDe3802ee07ffde3802ee0 /* src/gjk/GuVecShrunkBox.h */, - FFFDe3802f487ffde3802f48 /* src/gjk/GuVecShrunkConvexHull.h */, - FFFDe3802fb07ffde3802fb0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */, - FFFDe38030187ffde3803018 /* src/gjk/GuVecSphere.h */, - FFFDe38030807ffde3803080 /* src/gjk/GuVecTriangle.h */, - FFFDe38030e87ffde38030e8 /* src/intersection/GuIntersectionCapsuleTriangle.h */, - FFFDe38031507ffde3803150 /* src/intersection/GuIntersectionEdgeEdge.h */, - FFFDe38031b87ffde38031b8 /* src/intersection/GuIntersectionRay.h */, - FFFDe38032207ffde3803220 /* src/intersection/GuIntersectionRayBox.h */, - FFFDe38032887ffde3803288 /* src/intersection/GuIntersectionRayBoxSIMD.h */, - FFFDe38032f07ffde38032f0 /* src/intersection/GuIntersectionRayCapsule.h */, - FFFDe38033587ffde3803358 /* src/intersection/GuIntersectionRayPlane.h */, - FFFDe38033c07ffde38033c0 /* src/intersection/GuIntersectionRaySphere.h */, - FFFDe38034287ffde3803428 /* src/intersection/GuIntersectionRayTriangle.h */, - FFFDe38034907ffde3803490 /* src/intersection/GuIntersectionSphereBox.h */, - FFFDe38034f87ffde38034f8 /* src/mesh/GuBV32.h */, - FFFDe38035607ffde3803560 /* src/mesh/GuBV32Build.h */, - FFFDe38035c87ffde38035c8 /* src/mesh/GuBV4.h */, - FFFDe38036307ffde3803630 /* src/mesh/GuBV4Build.h */, - FFFDe38036987ffde3803698 /* src/mesh/GuBV4Settings.h */, - FFFDe38037007ffde3803700 /* src/mesh/GuBV4_AABBAABBSweepTest.h */, - FFFDe38037687ffde3803768 /* src/mesh/GuBV4_BoxBoxOverlapTest.h */, - FFFDe38037d07ffde38037d0 /* src/mesh/GuBV4_BoxOverlap_Internal.h */, - FFFDe38038387ffde3803838 /* src/mesh/GuBV4_BoxSweep_Internal.h */, - FFFDe38038a07ffde38038a0 /* src/mesh/GuBV4_BoxSweep_Params.h */, - FFFDe38039087ffde3803908 /* src/mesh/GuBV4_CapsuleSweep_Internal.h */, - FFFDe38039707ffde3803970 /* src/mesh/GuBV4_Common.h */, - FFFDe38039d87ffde38039d8 /* src/mesh/GuBV4_Internal.h */, - FFFDe3803a407ffde3803a40 /* src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h */, - FFFDe3803aa87ffde3803aa8 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h */, - FFFDe3803b107ffde3803b10 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h */, - FFFDe3803b787ffde3803b78 /* src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h */, - FFFDe3803be07ffde3803be0 /* src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h */, - FFFDe3803c487ffde3803c48 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h */, - FFFDe3803cb07ffde3803cb0 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h */, - FFFDe3803d187ffde3803d18 /* src/mesh/GuBV4_Slabs.h */, - FFFDe3803d807ffde3803d80 /* src/mesh/GuBV4_Slabs_KajiyaNoOrder.h */, - FFFDe3803de87ffde3803de8 /* src/mesh/GuBV4_Slabs_KajiyaOrdered.h */, - FFFDe3803e507ffde3803e50 /* src/mesh/GuBV4_Slabs_SwizzledNoOrder.h */, - FFFDe3803eb87ffde3803eb8 /* src/mesh/GuBV4_Slabs_SwizzledOrdered.h */, - FFFDe3803f207ffde3803f20 /* src/mesh/GuBVConstants.h */, - FFFDe3803f887ffde3803f88 /* src/mesh/GuMeshData.h */, - FFFDe3803ff07ffde3803ff0 /* src/mesh/GuMidphaseInterface.h */, - FFFDe38040587ffde3804058 /* src/mesh/GuRTree.h */, - FFFDe38040c07ffde38040c0 /* src/mesh/GuSweepConvexTri.h */, - FFFDe38041287ffde3804128 /* src/mesh/GuSweepMesh.h */, - FFFDe38041907ffde3804190 /* src/mesh/GuTriangle32.h */, - FFFDe38041f87ffde38041f8 /* src/mesh/GuTriangleCache.h */, - FFFDe38042607ffde3804260 /* src/mesh/GuTriangleMesh.h */, - FFFDe38042c87ffde38042c8 /* src/mesh/GuTriangleMeshBV4.h */, - FFFDe38043307ffde3804330 /* src/mesh/GuTriangleMeshRTree.h */, - FFFDe38043987ffde3804398 /* src/mesh/GuTriangleVertexPointers.h */, - FFFDe38044007ffde3804400 /* src/hf/GuEntityReport.h */, - FFFDe38044687ffde3804468 /* src/hf/GuHeightField.h */, - FFFDe38044d07ffde38044d0 /* src/hf/GuHeightFieldData.h */, - FFFDe38045387ffde3804538 /* src/hf/GuHeightFieldUtil.h */, - FFFDe38045a07ffde38045a0 /* src/pcm/GuPCMContactConvexCommon.h */, - FFFDe38046087ffde3804608 /* src/pcm/GuPCMContactGen.h */, - FFFDe38046707ffde3804670 /* src/pcm/GuPCMContactGenUtil.h */, - FFFDe38046d87ffde38046d8 /* src/pcm/GuPCMContactMeshCallback.h */, - FFFDe38047407ffde3804740 /* src/pcm/GuPCMShapeConvex.h */, - FFFDe38047a87ffde38047a8 /* src/pcm/GuPCMTriangleContactGen.h */, - FFFDe38048107ffde3804810 /* src/pcm/GuPersistentContactManifold.h */, - FFFDe38048787ffde3804878 /* src/ccd/GuCCDSweepConvexMesh.h */, - FFFDe38048e07ffde38048e0 /* src/GuBounds.cpp */, - FFFDe38049487ffde3804948 /* src/GuBox.cpp */, - FFFDe38049b07ffde38049b0 /* src/GuCCTSweepTests.cpp */, - FFFDe3804a187ffde3804a18 /* src/GuCapsule.cpp */, - FFFDe3804a807ffde3804a80 /* src/GuGeometryQuery.cpp */, - FFFDe3804ae87ffde3804ae8 /* src/GuGeometryUnion.cpp */, - FFFDe3804b507ffde3804b50 /* src/GuInternal.cpp */, - FFFDe3804bb87ffde3804bb8 /* src/GuMTD.cpp */, - FFFDe3804c207ffde3804c20 /* src/GuMeshFactory.cpp */, - FFFDe3804c887ffde3804c88 /* src/GuMetaData.cpp */, - FFFDe3804cf07ffde3804cf0 /* src/GuOverlapTests.cpp */, - FFFDe3804d587ffde3804d58 /* src/GuRaycastTests.cpp */, - FFFDe3804dc07ffde3804dc0 /* src/GuSerialize.cpp */, - FFFDe3804e287ffde3804e28 /* src/GuSweepMTD.cpp */, - FFFDe3804e907ffde3804e90 /* src/GuSweepSharedTests.cpp */, - FFFDe3804ef87ffde3804ef8 /* src/GuSweepTests.cpp */, - FFFDe3804f607ffde3804f60 /* src/contact/GuContactBoxBox.cpp */, - FFFDe3804fc87ffde3804fc8 /* src/contact/GuContactCapsuleBox.cpp */, - FFFDe38050307ffde3805030 /* src/contact/GuContactCapsuleCapsule.cpp */, - FFFDe38050987ffde3805098 /* src/contact/GuContactCapsuleConvex.cpp */, - FFFDe38051007ffde3805100 /* src/contact/GuContactCapsuleMesh.cpp */, - FFFDe38051687ffde3805168 /* src/contact/GuContactConvexConvex.cpp */, - FFFDe38051d07ffde38051d0 /* src/contact/GuContactConvexMesh.cpp */, - FFFDe38052387ffde3805238 /* src/contact/GuContactPlaneBox.cpp */, - FFFDe38052a07ffde38052a0 /* src/contact/GuContactPlaneCapsule.cpp */, - FFFDe38053087ffde3805308 /* src/contact/GuContactPlaneConvex.cpp */, - FFFDe38053707ffde3805370 /* src/contact/GuContactPolygonPolygon.cpp */, - FFFDe38053d87ffde38053d8 /* src/contact/GuContactSphereBox.cpp */, - FFFDe38054407ffde3805440 /* src/contact/GuContactSphereCapsule.cpp */, - FFFDe38054a87ffde38054a8 /* src/contact/GuContactSphereMesh.cpp */, - FFFDe38055107ffde3805510 /* src/contact/GuContactSpherePlane.cpp */, - FFFDe38055787ffde3805578 /* src/contact/GuContactSphereSphere.cpp */, - FFFDe38055e07ffde38055e0 /* src/contact/GuFeatureCode.cpp */, - FFFDe38056487ffde3805648 /* src/contact/GuLegacyContactBoxHeightField.cpp */, - FFFDe38056b07ffde38056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */, - FFFDe38057187ffde3805718 /* src/contact/GuLegacyContactConvexHeightField.cpp */, - FFFDe38057807ffde3805780 /* src/contact/GuLegacyContactSphereHeightField.cpp */, - FFFDe38057e87ffde38057e8 /* src/common/GuBarycentricCoordinates.cpp */, - FFFDe38058507ffde3805850 /* src/common/GuSeparatingAxes.cpp */, - FFFDe38058b87ffde38058b8 /* src/convex/GuBigConvexData.cpp */, - FFFDe38059207ffde3805920 /* src/convex/GuConvexHelper.cpp */, - FFFDe38059887ffde3805988 /* src/convex/GuConvexMesh.cpp */, - FFFDe38059f07ffde38059f0 /* src/convex/GuConvexSupportTable.cpp */, - FFFDe3805a587ffde3805a58 /* src/convex/GuConvexUtilsInternal.cpp */, - FFFDe3805ac07ffde3805ac0 /* src/convex/GuHillClimbing.cpp */, - FFFDe3805b287ffde3805b28 /* src/convex/GuShapeConvex.cpp */, - FFFDe3805b907ffde3805b90 /* src/distance/GuDistancePointBox.cpp */, - FFFDe3805bf87ffde3805bf8 /* src/distance/GuDistancePointTriangle.cpp */, - FFFDe3805c607ffde3805c60 /* src/distance/GuDistanceSegmentBox.cpp */, - FFFDe3805cc87ffde3805cc8 /* src/distance/GuDistanceSegmentSegment.cpp */, - FFFDe3805d307ffde3805d30 /* src/distance/GuDistanceSegmentTriangle.cpp */, - FFFDe3805d987ffde3805d98 /* src/sweep/GuSweepBoxBox.cpp */, - FFFDe3805e007ffde3805e00 /* src/sweep/GuSweepBoxSphere.cpp */, - FFFDe3805e687ffde3805e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */, - FFFDe3805ed07ffde3805ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */, - FFFDe3805f387ffde3805f38 /* src/sweep/GuSweepCapsuleBox.cpp */, - FFFDe3805fa07ffde3805fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */, - FFFDe38060087ffde3806008 /* src/sweep/GuSweepCapsuleTriangle.cpp */, - FFFDe38060707ffde3806070 /* src/sweep/GuSweepSphereCapsule.cpp */, - FFFDe38060d87ffde38060d8 /* src/sweep/GuSweepSphereSphere.cpp */, - FFFDe38061407ffde3806140 /* src/sweep/GuSweepSphereTriangle.cpp */, - FFFDe38061a87ffde38061a8 /* src/sweep/GuSweepTriangleUtils.cpp */, - FFFDe38062107ffde3806210 /* src/gjk/GuEPA.cpp */, - FFFDe38062787ffde3806278 /* src/gjk/GuGJKSimplex.cpp */, - FFFDe38062e07ffde38062e0 /* src/gjk/GuGJKTest.cpp */, - FFFDe38063487ffde3806348 /* src/intersection/GuIntersectionBoxBox.cpp */, - FFFDe38063b07ffde38063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */, - FFFDe38064187ffde3806418 /* src/intersection/GuIntersectionEdgeEdge.cpp */, - FFFDe38064807ffde3806480 /* src/intersection/GuIntersectionRayBox.cpp */, - FFFDe38064e87ffde38064e8 /* src/intersection/GuIntersectionRayCapsule.cpp */, - FFFDe38065507ffde3806550 /* src/intersection/GuIntersectionRaySphere.cpp */, - FFFDe38065b87ffde38065b8 /* src/intersection/GuIntersectionSphereBox.cpp */, - FFFDe38066207ffde3806620 /* src/intersection/GuIntersectionTriangleBox.cpp */, - FFFDe38066887ffde3806688 /* src/mesh/GuBV32.cpp */, - FFFDe38066f07ffde38066f0 /* src/mesh/GuBV32Build.cpp */, - FFFDe38067587ffde3806758 /* src/mesh/GuBV4.cpp */, - FFFDe38067c07ffde38067c0 /* src/mesh/GuBV4Build.cpp */, - FFFDe38068287ffde3806828 /* src/mesh/GuBV4_AABBSweep.cpp */, - FFFDe38068907ffde3806890 /* src/mesh/GuBV4_BoxOverlap.cpp */, - FFFDe38068f87ffde38068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */, - FFFDe38069607ffde3806960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */, - FFFDe38069c87ffde38069c8 /* src/mesh/GuBV4_OBBSweep.cpp */, - FFFDe3806a307ffde3806a30 /* src/mesh/GuBV4_Raycast.cpp */, - FFFDe3806a987ffde3806a98 /* src/mesh/GuBV4_SphereOverlap.cpp */, - FFFDe3806b007ffde3806b00 /* src/mesh/GuBV4_SphereSweep.cpp */, - FFFDe3806b687ffde3806b68 /* src/mesh/GuMeshQuery.cpp */, - FFFDe3806bd07ffde3806bd0 /* src/mesh/GuMidphaseBV4.cpp */, - FFFDe3806c387ffde3806c38 /* src/mesh/GuMidphaseRTree.cpp */, - FFFDe3806ca07ffde3806ca0 /* src/mesh/GuOverlapTestsMesh.cpp */, - FFFDe3806d087ffde3806d08 /* src/mesh/GuRTree.cpp */, - FFFDe3806d707ffde3806d70 /* src/mesh/GuRTreeQueries.cpp */, - FFFDe3806dd87ffde3806dd8 /* src/mesh/GuSweepsMesh.cpp */, - FFFDe3806e407ffde3806e40 /* src/mesh/GuTriangleMesh.cpp */, - FFFDe3806ea87ffde3806ea8 /* src/mesh/GuTriangleMeshBV4.cpp */, - FFFDe3806f107ffde3806f10 /* src/mesh/GuTriangleMeshRTree.cpp */, - FFFDe3806f787ffde3806f78 /* src/hf/GuHeightField.cpp */, - FFFDe3806fe07ffde3806fe0 /* src/hf/GuHeightFieldUtil.cpp */, - FFFDe38070487ffde3807048 /* src/hf/GuOverlapTestsHF.cpp */, - FFFDe38070b07ffde38070b0 /* src/hf/GuSweepsHF.cpp */, - FFFDe38071187ffde3807118 /* src/pcm/GuPCMContactBoxBox.cpp */, - FFFDe38071807ffde3807180 /* src/pcm/GuPCMContactBoxConvex.cpp */, - FFFDe38071e87ffde38071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */, - FFFDe38072507ffde3807250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */, - FFFDe38072b87ffde38072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */, - FFFDe38073207ffde3807320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */, - FFFDe38073887ffde3807388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */, - FFFDe38073f07ffde38073f0 /* src/pcm/GuPCMContactConvexCommon.cpp */, - FFFDe38074587ffde3807458 /* src/pcm/GuPCMContactConvexConvex.cpp */, - FFFDe38074c07ffde38074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */, - FFFDe38075287ffde3807528 /* src/pcm/GuPCMContactConvexMesh.cpp */, - FFFDe38075907ffde3807590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */, - FFFDe38075f87ffde38075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */, - FFFDe38076607ffde3807660 /* src/pcm/GuPCMContactPlaneBox.cpp */, - FFFDe38076c87ffde38076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */, - FFFDe38077307ffde3807730 /* src/pcm/GuPCMContactPlaneConvex.cpp */, - FFFDe38077987ffde3807798 /* src/pcm/GuPCMContactSphereBox.cpp */, - FFFDe38078007ffde3807800 /* src/pcm/GuPCMContactSphereCapsule.cpp */, - FFFDe38078687ffde3807868 /* src/pcm/GuPCMContactSphereConvex.cpp */, - FFFDe38078d07ffde38078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */, - FFFDe38079387ffde3807938 /* src/pcm/GuPCMContactSphereMesh.cpp */, - FFFDe38079a07ffde38079a0 /* src/pcm/GuPCMContactSpherePlane.cpp */, - FFFDe3807a087ffde3807a08 /* src/pcm/GuPCMContactSphereSphere.cpp */, - FFFDe3807a707ffde3807a70 /* src/pcm/GuPCMShapeConvex.cpp */, - FFFDe3807ad87ffde3807ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */, - FFFDe3807b407ffde3807b40 /* src/pcm/GuPersistentContactManifold.cpp */, - FFFDe3807ba87ffde3807ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */, - FFFDe3807c107ffde3807c10 /* src/ccd/GuCCDSweepPrimitives.cpp */, + FFFD0c0010007fa90c001000 /* headers/GuAxes.h */, + FFFD0c0010687fa90c001068 /* headers/GuBox.h */, + FFFD0c0010d07fa90c0010d0 /* headers/GuDistanceSegmentBox.h */, + FFFD0c0011387fa90c001138 /* headers/GuDistanceSegmentSegment.h */, + FFFD0c0011a07fa90c0011a0 /* headers/GuIntersectionBoxBox.h */, + FFFD0c0012087fa90c001208 /* headers/GuIntersectionTriangleBox.h */, + FFFD0c0012707fa90c001270 /* headers/GuRaycastTests.h */, + FFFD0c0012d87fa90c0012d8 /* headers/GuSIMDHelpers.h */, + FFFD0c0013407fa90c001340 /* headers/GuSegment.h */, + FFFD0c0013a87fa90c0013a8 /* ../../Include/GeomUtils */, + FFFD0c0014107fa90c001410 /* src/GuBounds.h */, + FFFD0c0014787fa90c001478 /* src/GuCapsule.h */, + FFFD0c0014e07fa90c0014e0 /* src/GuCenterExtents.h */, + FFFD0c0015487fa90c001548 /* src/GuGeometryUnion.h */, + FFFD0c0015b07fa90c0015b0 /* src/GuInternal.h */, + FFFD0c0016187fa90c001618 /* src/GuMTD.h */, + FFFD0c0016807fa90c001680 /* src/GuMeshFactory.h */, + FFFD0c0016e87fa90c0016e8 /* src/GuOverlapTests.h */, + FFFD0c0017507fa90c001750 /* src/GuSerialize.h */, + FFFD0c0017b87fa90c0017b8 /* src/GuSphere.h */, + FFFD0c0018207fa90c001820 /* src/GuSweepMTD.h */, + FFFD0c0018887fa90c001888 /* src/GuSweepSharedTests.h */, + FFFD0c0018f07fa90c0018f0 /* src/GuSweepTests.h */, + FFFD0c0019587fa90c001958 /* src/contact/GuContactMethodImpl.h */, + FFFD0c0019c07fa90c0019c0 /* src/contact/GuContactPolygonPolygon.h */, + FFFD0c001a287fa90c001a28 /* src/contact/GuFeatureCode.h */, + FFFD0c001a907fa90c001a90 /* src/contact/GuLegacyTraceLineCallback.h */, + FFFD0c001af87fa90c001af8 /* src/common/GuBarycentricCoordinates.h */, + FFFD0c001b607fa90c001b60 /* src/common/GuBoxConversion.h */, + FFFD0c001bc87fa90c001bc8 /* src/common/GuEdgeCache.h */, + FFFD0c001c307fa90c001c30 /* src/common/GuEdgeListData.h */, + FFFD0c001c987fa90c001c98 /* src/common/GuSeparatingAxes.h */, + FFFD0c001d007fa90c001d00 /* src/convex/GuBigConvexData.h */, + FFFD0c001d687fa90c001d68 /* src/convex/GuBigConvexData2.h */, + FFFD0c001dd07fa90c001dd0 /* src/convex/GuConvexEdgeFlags.h */, + FFFD0c001e387fa90c001e38 /* src/convex/GuConvexHelper.h */, + FFFD0c001ea07fa90c001ea0 /* src/convex/GuConvexMesh.h */, + FFFD0c001f087fa90c001f08 /* src/convex/GuConvexMeshData.h */, + FFFD0c001f707fa90c001f70 /* src/convex/GuConvexSupportTable.h */, + FFFD0c001fd87fa90c001fd8 /* src/convex/GuConvexUtilsInternal.h */, + FFFD0c0020407fa90c002040 /* src/convex/GuCubeIndex.h */, + FFFD0c0020a87fa90c0020a8 /* src/convex/GuHillClimbing.h */, + FFFD0c0021107fa90c002110 /* src/convex/GuShapeConvex.h */, + FFFD0c0021787fa90c002178 /* src/distance/GuDistancePointBox.h */, + FFFD0c0021e07fa90c0021e0 /* src/distance/GuDistancePointSegment.h */, + FFFD0c0022487fa90c002248 /* src/distance/GuDistancePointTriangle.h */, + FFFD0c0022b07fa90c0022b0 /* src/distance/GuDistancePointTriangleSIMD.h */, + FFFD0c0023187fa90c002318 /* src/distance/GuDistanceSegmentSegmentSIMD.h */, + FFFD0c0023807fa90c002380 /* src/distance/GuDistanceSegmentTriangle.h */, + FFFD0c0023e87fa90c0023e8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */, + FFFD0c0024507fa90c002450 /* src/sweep/GuSweepBoxBox.h */, + FFFD0c0024b87fa90c0024b8 /* src/sweep/GuSweepBoxSphere.h */, + FFFD0c0025207fa90c002520 /* src/sweep/GuSweepBoxTriangle_FeatureBased.h */, + FFFD0c0025887fa90c002588 /* src/sweep/GuSweepBoxTriangle_SAT.h */, + FFFD0c0025f07fa90c0025f0 /* src/sweep/GuSweepCapsuleBox.h */, + FFFD0c0026587fa90c002658 /* src/sweep/GuSweepCapsuleCapsule.h */, + FFFD0c0026c07fa90c0026c0 /* src/sweep/GuSweepCapsuleTriangle.h */, + FFFD0c0027287fa90c002728 /* src/sweep/GuSweepSphereCapsule.h */, + FFFD0c0027907fa90c002790 /* src/sweep/GuSweepSphereSphere.h */, + FFFD0c0027f87fa90c0027f8 /* src/sweep/GuSweepSphereTriangle.h */, + FFFD0c0028607fa90c002860 /* src/sweep/GuSweepTriangleUtils.h */, + FFFD0c0028c87fa90c0028c8 /* src/gjk/GuEPA.h */, + FFFD0c0029307fa90c002930 /* src/gjk/GuEPAFacet.h */, + FFFD0c0029987fa90c002998 /* src/gjk/GuGJK.h */, + FFFD0c002a007fa90c002a00 /* src/gjk/GuGJKPenetration.h */, + FFFD0c002a687fa90c002a68 /* src/gjk/GuGJKRaycast.h */, + FFFD0c002ad07fa90c002ad0 /* src/gjk/GuGJKSimplex.h */, + FFFD0c002b387fa90c002b38 /* src/gjk/GuGJKTest.h */, + FFFD0c002ba07fa90c002ba0 /* src/gjk/GuGJKType.h */, + FFFD0c002c087fa90c002c08 /* src/gjk/GuGJKUtil.h */, + FFFD0c002c707fa90c002c70 /* src/gjk/GuVecBox.h */, + FFFD0c002cd87fa90c002cd8 /* src/gjk/GuVecCapsule.h */, + FFFD0c002d407fa90c002d40 /* src/gjk/GuVecConvex.h */, + FFFD0c002da87fa90c002da8 /* src/gjk/GuVecConvexHull.h */, + FFFD0c002e107fa90c002e10 /* src/gjk/GuVecConvexHullNoScale.h */, + FFFD0c002e787fa90c002e78 /* src/gjk/GuVecPlane.h */, + FFFD0c002ee07fa90c002ee0 /* src/gjk/GuVecShrunkBox.h */, + FFFD0c002f487fa90c002f48 /* src/gjk/GuVecShrunkConvexHull.h */, + FFFD0c002fb07fa90c002fb0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */, + FFFD0c0030187fa90c003018 /* src/gjk/GuVecSphere.h */, + FFFD0c0030807fa90c003080 /* src/gjk/GuVecTriangle.h */, + FFFD0c0030e87fa90c0030e8 /* src/intersection/GuIntersectionCapsuleTriangle.h */, + FFFD0c0031507fa90c003150 /* src/intersection/GuIntersectionEdgeEdge.h */, + FFFD0c0031b87fa90c0031b8 /* src/intersection/GuIntersectionRay.h */, + FFFD0c0032207fa90c003220 /* src/intersection/GuIntersectionRayBox.h */, + FFFD0c0032887fa90c003288 /* src/intersection/GuIntersectionRayBoxSIMD.h */, + FFFD0c0032f07fa90c0032f0 /* src/intersection/GuIntersectionRayCapsule.h */, + FFFD0c0033587fa90c003358 /* src/intersection/GuIntersectionRayPlane.h */, + FFFD0c0033c07fa90c0033c0 /* src/intersection/GuIntersectionRaySphere.h */, + FFFD0c0034287fa90c003428 /* src/intersection/GuIntersectionRayTriangle.h */, + FFFD0c0034907fa90c003490 /* src/intersection/GuIntersectionSphereBox.h */, + FFFD0c0034f87fa90c0034f8 /* src/mesh/GuBV32.h */, + FFFD0c0035607fa90c003560 /* src/mesh/GuBV32Build.h */, + FFFD0c0035c87fa90c0035c8 /* src/mesh/GuBV4.h */, + FFFD0c0036307fa90c003630 /* src/mesh/GuBV4Build.h */, + FFFD0c0036987fa90c003698 /* src/mesh/GuBV4Settings.h */, + FFFD0c0037007fa90c003700 /* src/mesh/GuBV4_AABBAABBSweepTest.h */, + FFFD0c0037687fa90c003768 /* src/mesh/GuBV4_BoxBoxOverlapTest.h */, + FFFD0c0037d07fa90c0037d0 /* src/mesh/GuBV4_BoxOverlap_Internal.h */, + FFFD0c0038387fa90c003838 /* src/mesh/GuBV4_BoxSweep_Internal.h */, + FFFD0c0038a07fa90c0038a0 /* src/mesh/GuBV4_BoxSweep_Params.h */, + FFFD0c0039087fa90c003908 /* src/mesh/GuBV4_CapsuleSweep_Internal.h */, + FFFD0c0039707fa90c003970 /* src/mesh/GuBV4_Common.h */, + FFFD0c0039d87fa90c0039d8 /* src/mesh/GuBV4_Internal.h */, + FFFD0c003a407fa90c003a40 /* src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h */, + FFFD0c003aa87fa90c003aa8 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h */, + FFFD0c003b107fa90c003b10 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h */, + FFFD0c003b787fa90c003b78 /* src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h */, + FFFD0c003be07fa90c003be0 /* src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h */, + FFFD0c003c487fa90c003c48 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h */, + FFFD0c003cb07fa90c003cb0 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h */, + FFFD0c003d187fa90c003d18 /* src/mesh/GuBV4_Slabs.h */, + FFFD0c003d807fa90c003d80 /* src/mesh/GuBV4_Slabs_KajiyaNoOrder.h */, + FFFD0c003de87fa90c003de8 /* src/mesh/GuBV4_Slabs_KajiyaOrdered.h */, + FFFD0c003e507fa90c003e50 /* src/mesh/GuBV4_Slabs_SwizzledNoOrder.h */, + FFFD0c003eb87fa90c003eb8 /* src/mesh/GuBV4_Slabs_SwizzledOrdered.h */, + FFFD0c003f207fa90c003f20 /* src/mesh/GuBVConstants.h */, + FFFD0c003f887fa90c003f88 /* src/mesh/GuMeshData.h */, + FFFD0c003ff07fa90c003ff0 /* src/mesh/GuMidphaseInterface.h */, + FFFD0c0040587fa90c004058 /* src/mesh/GuRTree.h */, + FFFD0c0040c07fa90c0040c0 /* src/mesh/GuSweepConvexTri.h */, + FFFD0c0041287fa90c004128 /* src/mesh/GuSweepMesh.h */, + FFFD0c0041907fa90c004190 /* src/mesh/GuTriangle32.h */, + FFFD0c0041f87fa90c0041f8 /* src/mesh/GuTriangleCache.h */, + FFFD0c0042607fa90c004260 /* src/mesh/GuTriangleMesh.h */, + FFFD0c0042c87fa90c0042c8 /* src/mesh/GuTriangleMeshBV4.h */, + FFFD0c0043307fa90c004330 /* src/mesh/GuTriangleMeshRTree.h */, + FFFD0c0043987fa90c004398 /* src/mesh/GuTriangleVertexPointers.h */, + FFFD0c0044007fa90c004400 /* src/hf/GuEntityReport.h */, + FFFD0c0044687fa90c004468 /* src/hf/GuHeightField.h */, + FFFD0c0044d07fa90c0044d0 /* src/hf/GuHeightFieldData.h */, + FFFD0c0045387fa90c004538 /* src/hf/GuHeightFieldUtil.h */, + FFFD0c0045a07fa90c0045a0 /* src/pcm/GuPCMContactConvexCommon.h */, + FFFD0c0046087fa90c004608 /* src/pcm/GuPCMContactGen.h */, + FFFD0c0046707fa90c004670 /* src/pcm/GuPCMContactGenUtil.h */, + FFFD0c0046d87fa90c0046d8 /* src/pcm/GuPCMContactMeshCallback.h */, + FFFD0c0047407fa90c004740 /* src/pcm/GuPCMShapeConvex.h */, + FFFD0c0047a87fa90c0047a8 /* src/pcm/GuPCMTriangleContactGen.h */, + FFFD0c0048107fa90c004810 /* src/pcm/GuPersistentContactManifold.h */, + FFFD0c0048787fa90c004878 /* src/ccd/GuCCDSweepConvexMesh.h */, + FFFD0c0048e07fa90c0048e0 /* src/GuBounds.cpp */, + FFFD0c0049487fa90c004948 /* src/GuBox.cpp */, + FFFD0c0049b07fa90c0049b0 /* src/GuCCTSweepTests.cpp */, + FFFD0c004a187fa90c004a18 /* src/GuCapsule.cpp */, + FFFD0c004a807fa90c004a80 /* src/GuGeometryQuery.cpp */, + FFFD0c004ae87fa90c004ae8 /* src/GuGeometryUnion.cpp */, + FFFD0c004b507fa90c004b50 /* src/GuInternal.cpp */, + FFFD0c004bb87fa90c004bb8 /* src/GuMTD.cpp */, + FFFD0c004c207fa90c004c20 /* src/GuMeshFactory.cpp */, + FFFD0c004c887fa90c004c88 /* src/GuMetaData.cpp */, + FFFD0c004cf07fa90c004cf0 /* src/GuOverlapTests.cpp */, + FFFD0c004d587fa90c004d58 /* src/GuRaycastTests.cpp */, + FFFD0c004dc07fa90c004dc0 /* src/GuSerialize.cpp */, + FFFD0c004e287fa90c004e28 /* src/GuSweepMTD.cpp */, + FFFD0c004e907fa90c004e90 /* src/GuSweepSharedTests.cpp */, + FFFD0c004ef87fa90c004ef8 /* src/GuSweepTests.cpp */, + FFFD0c004f607fa90c004f60 /* src/contact/GuContactBoxBox.cpp */, + FFFD0c004fc87fa90c004fc8 /* src/contact/GuContactCapsuleBox.cpp */, + FFFD0c0050307fa90c005030 /* src/contact/GuContactCapsuleCapsule.cpp */, + FFFD0c0050987fa90c005098 /* src/contact/GuContactCapsuleConvex.cpp */, + FFFD0c0051007fa90c005100 /* src/contact/GuContactCapsuleMesh.cpp */, + FFFD0c0051687fa90c005168 /* src/contact/GuContactConvexConvex.cpp */, + FFFD0c0051d07fa90c0051d0 /* src/contact/GuContactConvexMesh.cpp */, + FFFD0c0052387fa90c005238 /* src/contact/GuContactPlaneBox.cpp */, + FFFD0c0052a07fa90c0052a0 /* src/contact/GuContactPlaneCapsule.cpp */, + FFFD0c0053087fa90c005308 /* src/contact/GuContactPlaneConvex.cpp */, + FFFD0c0053707fa90c005370 /* src/contact/GuContactPolygonPolygon.cpp */, + FFFD0c0053d87fa90c0053d8 /* src/contact/GuContactSphereBox.cpp */, + FFFD0c0054407fa90c005440 /* src/contact/GuContactSphereCapsule.cpp */, + FFFD0c0054a87fa90c0054a8 /* src/contact/GuContactSphereMesh.cpp */, + FFFD0c0055107fa90c005510 /* src/contact/GuContactSpherePlane.cpp */, + FFFD0c0055787fa90c005578 /* src/contact/GuContactSphereSphere.cpp */, + FFFD0c0055e07fa90c0055e0 /* src/contact/GuFeatureCode.cpp */, + FFFD0c0056487fa90c005648 /* src/contact/GuLegacyContactBoxHeightField.cpp */, + FFFD0c0056b07fa90c0056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */, + FFFD0c0057187fa90c005718 /* src/contact/GuLegacyContactConvexHeightField.cpp */, + FFFD0c0057807fa90c005780 /* src/contact/GuLegacyContactSphereHeightField.cpp */, + FFFD0c0057e87fa90c0057e8 /* src/common/GuBarycentricCoordinates.cpp */, + FFFD0c0058507fa90c005850 /* src/common/GuSeparatingAxes.cpp */, + FFFD0c0058b87fa90c0058b8 /* src/convex/GuBigConvexData.cpp */, + FFFD0c0059207fa90c005920 /* src/convex/GuConvexHelper.cpp */, + FFFD0c0059887fa90c005988 /* src/convex/GuConvexMesh.cpp */, + FFFD0c0059f07fa90c0059f0 /* src/convex/GuConvexSupportTable.cpp */, + FFFD0c005a587fa90c005a58 /* src/convex/GuConvexUtilsInternal.cpp */, + FFFD0c005ac07fa90c005ac0 /* src/convex/GuHillClimbing.cpp */, + FFFD0c005b287fa90c005b28 /* src/convex/GuShapeConvex.cpp */, + FFFD0c005b907fa90c005b90 /* src/distance/GuDistancePointBox.cpp */, + FFFD0c005bf87fa90c005bf8 /* src/distance/GuDistancePointTriangle.cpp */, + FFFD0c005c607fa90c005c60 /* src/distance/GuDistanceSegmentBox.cpp */, + FFFD0c005cc87fa90c005cc8 /* src/distance/GuDistanceSegmentSegment.cpp */, + FFFD0c005d307fa90c005d30 /* src/distance/GuDistanceSegmentTriangle.cpp */, + FFFD0c005d987fa90c005d98 /* src/sweep/GuSweepBoxBox.cpp */, + FFFD0c005e007fa90c005e00 /* src/sweep/GuSweepBoxSphere.cpp */, + FFFD0c005e687fa90c005e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */, + FFFD0c005ed07fa90c005ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */, + FFFD0c005f387fa90c005f38 /* src/sweep/GuSweepCapsuleBox.cpp */, + FFFD0c005fa07fa90c005fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */, + FFFD0c0060087fa90c006008 /* src/sweep/GuSweepCapsuleTriangle.cpp */, + FFFD0c0060707fa90c006070 /* src/sweep/GuSweepSphereCapsule.cpp */, + FFFD0c0060d87fa90c0060d8 /* src/sweep/GuSweepSphereSphere.cpp */, + FFFD0c0061407fa90c006140 /* src/sweep/GuSweepSphereTriangle.cpp */, + FFFD0c0061a87fa90c0061a8 /* src/sweep/GuSweepTriangleUtils.cpp */, + FFFD0c0062107fa90c006210 /* src/gjk/GuEPA.cpp */, + FFFD0c0062787fa90c006278 /* src/gjk/GuGJKSimplex.cpp */, + FFFD0c0062e07fa90c0062e0 /* src/gjk/GuGJKTest.cpp */, + FFFD0c0063487fa90c006348 /* src/intersection/GuIntersectionBoxBox.cpp */, + FFFD0c0063b07fa90c0063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */, + FFFD0c0064187fa90c006418 /* src/intersection/GuIntersectionEdgeEdge.cpp */, + FFFD0c0064807fa90c006480 /* src/intersection/GuIntersectionRayBox.cpp */, + FFFD0c0064e87fa90c0064e8 /* src/intersection/GuIntersectionRayCapsule.cpp */, + FFFD0c0065507fa90c006550 /* src/intersection/GuIntersectionRaySphere.cpp */, + FFFD0c0065b87fa90c0065b8 /* src/intersection/GuIntersectionSphereBox.cpp */, + FFFD0c0066207fa90c006620 /* src/intersection/GuIntersectionTriangleBox.cpp */, + FFFD0c0066887fa90c006688 /* src/mesh/GuBV32.cpp */, + FFFD0c0066f07fa90c0066f0 /* src/mesh/GuBV32Build.cpp */, + FFFD0c0067587fa90c006758 /* src/mesh/GuBV4.cpp */, + FFFD0c0067c07fa90c0067c0 /* src/mesh/GuBV4Build.cpp */, + FFFD0c0068287fa90c006828 /* src/mesh/GuBV4_AABBSweep.cpp */, + FFFD0c0068907fa90c006890 /* src/mesh/GuBV4_BoxOverlap.cpp */, + FFFD0c0068f87fa90c0068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */, + FFFD0c0069607fa90c006960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */, + FFFD0c0069c87fa90c0069c8 /* src/mesh/GuBV4_OBBSweep.cpp */, + FFFD0c006a307fa90c006a30 /* src/mesh/GuBV4_Raycast.cpp */, + FFFD0c006a987fa90c006a98 /* src/mesh/GuBV4_SphereOverlap.cpp */, + FFFD0c006b007fa90c006b00 /* src/mesh/GuBV4_SphereSweep.cpp */, + FFFD0c006b687fa90c006b68 /* src/mesh/GuMeshQuery.cpp */, + FFFD0c006bd07fa90c006bd0 /* src/mesh/GuMidphaseBV4.cpp */, + FFFD0c006c387fa90c006c38 /* src/mesh/GuMidphaseRTree.cpp */, + FFFD0c006ca07fa90c006ca0 /* src/mesh/GuOverlapTestsMesh.cpp */, + FFFD0c006d087fa90c006d08 /* src/mesh/GuRTree.cpp */, + FFFD0c006d707fa90c006d70 /* src/mesh/GuRTreeQueries.cpp */, + FFFD0c006dd87fa90c006dd8 /* src/mesh/GuSweepsMesh.cpp */, + FFFD0c006e407fa90c006e40 /* src/mesh/GuTriangleMesh.cpp */, + FFFD0c006ea87fa90c006ea8 /* src/mesh/GuTriangleMeshBV4.cpp */, + FFFD0c006f107fa90c006f10 /* src/mesh/GuTriangleMeshRTree.cpp */, + FFFD0c006f787fa90c006f78 /* src/hf/GuHeightField.cpp */, + FFFD0c006fe07fa90c006fe0 /* src/hf/GuHeightFieldUtil.cpp */, + FFFD0c0070487fa90c007048 /* src/hf/GuOverlapTestsHF.cpp */, + FFFD0c0070b07fa90c0070b0 /* src/hf/GuSweepsHF.cpp */, + FFFD0c0071187fa90c007118 /* src/pcm/GuPCMContactBoxBox.cpp */, + FFFD0c0071807fa90c007180 /* src/pcm/GuPCMContactBoxConvex.cpp */, + FFFD0c0071e87fa90c0071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */, + FFFD0c0072507fa90c007250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */, + FFFD0c0072b87fa90c0072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */, + FFFD0c0073207fa90c007320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */, + FFFD0c0073887fa90c007388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */, + FFFD0c0073f07fa90c0073f0 /* src/pcm/GuPCMContactConvexCommon.cpp */, + FFFD0c0074587fa90c007458 /* src/pcm/GuPCMContactConvexConvex.cpp */, + FFFD0c0074c07fa90c0074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */, + FFFD0c0075287fa90c007528 /* src/pcm/GuPCMContactConvexMesh.cpp */, + FFFD0c0075907fa90c007590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */, + FFFD0c0075f87fa90c0075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */, + FFFD0c0076607fa90c007660 /* src/pcm/GuPCMContactPlaneBox.cpp */, + FFFD0c0076c87fa90c0076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */, + FFFD0c0077307fa90c007730 /* src/pcm/GuPCMContactPlaneConvex.cpp */, + FFFD0c0077987fa90c007798 /* src/pcm/GuPCMContactSphereBox.cpp */, + FFFD0c0078007fa90c007800 /* src/pcm/GuPCMContactSphereCapsule.cpp */, + FFFD0c0078687fa90c007868 /* src/pcm/GuPCMContactSphereConvex.cpp */, + FFFD0c0078d07fa90c0078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */, + FFFD0c0079387fa90c007938 /* src/pcm/GuPCMContactSphereMesh.cpp */, + FFFD0c0079a07fa90c0079a0 /* src/pcm/GuPCMContactSpherePlane.cpp */, + FFFD0c007a087fa90c007a08 /* src/pcm/GuPCMContactSphereSphere.cpp */, + FFFD0c007a707fa90c007a70 /* src/pcm/GuPCMShapeConvex.cpp */, + FFFD0c007ad87fa90c007ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */, + FFFD0c007b407fa90c007b40 /* src/pcm/GuPersistentContactManifold.cpp */, + FFFD0c007ba87fa90c007ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */, + FFFD0c007c107fa90c007c10 /* src/ccd/GuCCDSweepPrimitives.cpp */, ); name = "geomutils"; sourceTree = SOURCE_ROOT; }; - FFFBe2c0b7d07ffde2c0b7d0 /* PxFoundation */ = { + FFFB0b8818007fa90b881800 /* PxFoundation */ = { isa = PBXGroup; children = ( - FFFBe2c08f907ffde2c08f90 /* include */, - FFFBe2c08fb87ffde2c08fb8 /* src */, + FFFB0b881d707fa90b881d70 /* include */, + FFFB0b881d987fa90b881d98 /* src */, ); name = "PxFoundation"; sourceTree = "<group>"; }; - FFFBe2c08f907ffde2c08f90 /* include */ = { + FFFB0b881d707fa90b881d70 /* include */ = { isa = PBXGroup; children = ( - FFFDe3003c007ffde3003c00 /* Px.h */, - FFFDe3003c687ffde3003c68 /* PxAllocatorCallback.h */, - FFFDe3003cd07ffde3003cd0 /* PxAssert.h */, - FFFDe3003d387ffde3003d38 /* PxBitAndData.h */, - FFFDe3003da07ffde3003da0 /* PxBounds3.h */, - FFFDe3003e087ffde3003e08 /* PxErrorCallback.h */, - FFFDe3003e707ffde3003e70 /* PxErrors.h */, - FFFDe3003ed87ffde3003ed8 /* PxFlags.h */, - FFFDe3003f407ffde3003f40 /* PxFoundation.h */, - FFFDe3003fa87ffde3003fa8 /* PxFoundationVersion.h */, - FFFDe30040107ffde3004010 /* PxIO.h */, - FFFDe30040787ffde3004078 /* PxIntrinsics.h */, - FFFDe30040e07ffde30040e0 /* PxMat33.h */, - FFFDe30041487ffde3004148 /* PxMat44.h */, - FFFDe30041b07ffde30041b0 /* PxMath.h */, - FFFDe30042187ffde3004218 /* PxMathUtils.h */, - FFFDe30042807ffde3004280 /* PxMemory.h */, - FFFDe30042e87ffde30042e8 /* PxPlane.h */, - FFFDe30043507ffde3004350 /* PxPreprocessor.h */, - FFFDe30043b87ffde30043b8 /* PxProfiler.h */, - FFFDe30044207ffde3004420 /* PxQuat.h */, - FFFDe30044887ffde3004488 /* PxSimpleTypes.h */, - FFFDe30044f07ffde30044f0 /* PxStrideIterator.h */, - FFFDe30045587ffde3004558 /* PxTransform.h */, - FFFDe30045c07ffde30045c0 /* PxUnionCast.h */, - FFFDe30046287ffde3004628 /* PxVec2.h */, - FFFDe30046907ffde3004690 /* PxVec3.h */, - FFFDe30046f87ffde30046f8 /* PxVec4.h */, - FFFDe30047607ffde3004760 /* unix/PxUnixIntrinsics.h */, + FFFD0b1930007fa90b193000 /* Px.h */, + FFFD0b1930687fa90b193068 /* PxAllocatorCallback.h */, + FFFD0b1930d07fa90b1930d0 /* PxAssert.h */, + FFFD0b1931387fa90b193138 /* PxBitAndData.h */, + FFFD0b1931a07fa90b1931a0 /* PxBounds3.h */, + FFFD0b1932087fa90b193208 /* PxErrorCallback.h */, + FFFD0b1932707fa90b193270 /* PxErrors.h */, + FFFD0b1932d87fa90b1932d8 /* PxFlags.h */, + FFFD0b1933407fa90b193340 /* PxFoundation.h */, + FFFD0b1933a87fa90b1933a8 /* PxFoundationVersion.h */, + FFFD0b1934107fa90b193410 /* PxIO.h */, + FFFD0b1934787fa90b193478 /* PxIntrinsics.h */, + FFFD0b1934e07fa90b1934e0 /* PxMat33.h */, + FFFD0b1935487fa90b193548 /* PxMat44.h */, + FFFD0b1935b07fa90b1935b0 /* PxMath.h */, + FFFD0b1936187fa90b193618 /* PxMathUtils.h */, + FFFD0b1936807fa90b193680 /* PxMemory.h */, + FFFD0b1936e87fa90b1936e8 /* PxPlane.h */, + FFFD0b1937507fa90b193750 /* PxPreprocessor.h */, + FFFD0b1937b87fa90b1937b8 /* PxProfiler.h */, + FFFD0b1938207fa90b193820 /* PxQuat.h */, + FFFD0b1938887fa90b193888 /* PxSimpleTypes.h */, + FFFD0b1938f07fa90b1938f0 /* PxStrideIterator.h */, + FFFD0b1939587fa90b193958 /* PxTransform.h */, + FFFD0b1939c07fa90b1939c0 /* PxUnionCast.h */, + FFFD0b193a287fa90b193a28 /* PxVec2.h */, + FFFD0b193a907fa90b193a90 /* PxVec3.h */, + FFFD0b193af87fa90b193af8 /* PxVec4.h */, + FFFD0b193b607fa90b193b60 /* unix/PxUnixIntrinsics.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBe2c08fb87ffde2c08fb8 /* src */ = { + FFFB0b881d987fa90b881d98 /* src */ = { isa = PBXGroup; children = ( - FFFDe30048007ffde3004800 /* include/Ps.h */, - FFFDe30048687ffde3004868 /* include/PsAlignedMalloc.h */, - FFFDe30048d07ffde30048d0 /* include/PsAlloca.h */, - FFFDe30049387ffde3004938 /* include/PsAllocator.h */, - FFFDe30049a07ffde30049a0 /* include/PsAoS.h */, - FFFDe3004a087ffde3004a08 /* include/PsArray.h */, - FFFDe3004a707ffde3004a70 /* include/PsAtomic.h */, - FFFDe3004ad87ffde3004ad8 /* include/PsBasicTemplates.h */, - FFFDe3004b407ffde3004b40 /* include/PsBitUtils.h */, - FFFDe3004ba87ffde3004ba8 /* include/PsBroadcast.h */, - FFFDe3004c107ffde3004c10 /* include/PsCpu.h */, - FFFDe3004c787ffde3004c78 /* include/PsFPU.h */, - FFFDe3004ce07ffde3004ce0 /* include/PsFoundation.h */, - FFFDe3004d487ffde3004d48 /* include/PsHash.h */, - FFFDe3004db07ffde3004db0 /* include/PsHashInternals.h */, - FFFDe3004e187ffde3004e18 /* include/PsHashMap.h */, - FFFDe3004e807ffde3004e80 /* include/PsHashSet.h */, - FFFDe3004ee87ffde3004ee8 /* include/PsInlineAllocator.h */, - FFFDe3004f507ffde3004f50 /* include/PsInlineAoS.h */, - FFFDe3004fb87ffde3004fb8 /* include/PsInlineArray.h */, - FFFDe30050207ffde3005020 /* include/PsIntrinsics.h */, - FFFDe30050887ffde3005088 /* include/PsMathUtils.h */, - FFFDe30050f07ffde30050f0 /* include/PsMutex.h */, - FFFDe30051587ffde3005158 /* include/PsPool.h */, - FFFDe30051c07ffde30051c0 /* include/PsSList.h */, - FFFDe30052287ffde3005228 /* include/PsSocket.h */, - FFFDe30052907ffde3005290 /* include/PsSort.h */, - FFFDe30052f87ffde30052f8 /* include/PsSortInternals.h */, - FFFDe30053607ffde3005360 /* include/PsString.h */, - FFFDe30053c87ffde30053c8 /* include/PsSync.h */, - FFFDe30054307ffde3005430 /* include/PsTempAllocator.h */, - FFFDe30054987ffde3005498 /* include/PsThread.h */, - FFFDe30055007ffde3005500 /* include/PsTime.h */, - FFFDe30055687ffde3005568 /* include/PsUserAllocated.h */, - FFFDe30055d07ffde30055d0 /* include/PsUtilities.h */, - FFFDe30056387ffde3005638 /* include/PsVecMath.h */, - FFFDe30056a07ffde30056a0 /* include/PsVecMathAoSScalar.h */, - FFFDe30057087ffde3005708 /* include/PsVecMathAoSScalarInline.h */, - FFFDe30057707ffde3005770 /* include/PsVecMathSSE.h */, - FFFDe30057d87ffde30057d8 /* include/PsVecMathUtilities.h */, - FFFDe30058407ffde3005840 /* include/PsVecQuat.h */, - FFFDe30058a87ffde30058a8 /* include/PsVecTransform.h */, - FFFDe30059107ffde3005910 /* include/unix/PsUnixAoS.h */, - FFFDe30059787ffde3005978 /* include/unix/PsUnixFPU.h */, - FFFDe30059e07ffde30059e0 /* include/unix/PsUnixInlineAoS.h */, - FFFDe3005a487ffde3005a48 /* include/unix/PsUnixIntrinsics.h */, - FFFDe3005ab07ffde3005ab0 /* include/unix/PsUnixTrigConstants.h */, - FFFDe3005b187ffde3005b18 /* src/PsAllocator.cpp */, - FFFDe3005b807ffde3005b80 /* src/PsAssert.cpp */, - FFFDe3005be87ffde3005be8 /* src/PsFoundation.cpp */, - FFFDe3005c507ffde3005c50 /* src/PsMathUtils.cpp */, - FFFDe3005cb87ffde3005cb8 /* src/PsString.cpp */, - FFFDe3005d207ffde3005d20 /* src/PsTempAllocator.cpp */, - FFFDe3005d887ffde3005d88 /* src/PsUtilities.cpp */, - FFFDe3005df07ffde3005df0 /* src/unix/PsUnixAtomic.cpp */, - FFFDe3005e587ffde3005e58 /* src/unix/PsUnixCpu.cpp */, - FFFDe3005ec07ffde3005ec0 /* src/unix/PsUnixFPU.cpp */, - FFFDe3005f287ffde3005f28 /* src/unix/PsUnixMutex.cpp */, - FFFDe3005f907ffde3005f90 /* src/unix/PsUnixPrintString.cpp */, - FFFDe3005ff87ffde3005ff8 /* src/unix/PsUnixSList.cpp */, - FFFDe30060607ffde3006060 /* src/unix/PsUnixSocket.cpp */, - FFFDe30060c87ffde30060c8 /* src/unix/PsUnixSync.cpp */, - FFFDe30061307ffde3006130 /* src/unix/PsUnixThread.cpp */, - FFFDe30061987ffde3006198 /* src/unix/PsUnixTime.cpp */, + FFFD0b19ec007fa90b19ec00 /* include/Ps.h */, + FFFD0b19ec687fa90b19ec68 /* include/PsAlignedMalloc.h */, + FFFD0b19ecd07fa90b19ecd0 /* include/PsAlloca.h */, + FFFD0b19ed387fa90b19ed38 /* include/PsAllocator.h */, + FFFD0b19eda07fa90b19eda0 /* include/PsAoS.h */, + FFFD0b19ee087fa90b19ee08 /* include/PsArray.h */, + FFFD0b19ee707fa90b19ee70 /* include/PsAtomic.h */, + FFFD0b19eed87fa90b19eed8 /* include/PsBasicTemplates.h */, + FFFD0b19ef407fa90b19ef40 /* include/PsBitUtils.h */, + FFFD0b19efa87fa90b19efa8 /* include/PsBroadcast.h */, + FFFD0b19f0107fa90b19f010 /* include/PsCpu.h */, + FFFD0b19f0787fa90b19f078 /* include/PsFPU.h */, + FFFD0b19f0e07fa90b19f0e0 /* include/PsFoundation.h */, + FFFD0b19f1487fa90b19f148 /* include/PsHash.h */, + FFFD0b19f1b07fa90b19f1b0 /* include/PsHashInternals.h */, + FFFD0b19f2187fa90b19f218 /* include/PsHashMap.h */, + FFFD0b19f2807fa90b19f280 /* include/PsHashSet.h */, + FFFD0b19f2e87fa90b19f2e8 /* include/PsInlineAllocator.h */, + FFFD0b19f3507fa90b19f350 /* include/PsInlineAoS.h */, + FFFD0b19f3b87fa90b19f3b8 /* include/PsInlineArray.h */, + FFFD0b19f4207fa90b19f420 /* include/PsIntrinsics.h */, + FFFD0b19f4887fa90b19f488 /* include/PsMathUtils.h */, + FFFD0b19f4f07fa90b19f4f0 /* include/PsMutex.h */, + FFFD0b19f5587fa90b19f558 /* include/PsPool.h */, + FFFD0b19f5c07fa90b19f5c0 /* include/PsSList.h */, + FFFD0b19f6287fa90b19f628 /* include/PsSocket.h */, + FFFD0b19f6907fa90b19f690 /* include/PsSort.h */, + FFFD0b19f6f87fa90b19f6f8 /* include/PsSortInternals.h */, + FFFD0b19f7607fa90b19f760 /* include/PsString.h */, + FFFD0b19f7c87fa90b19f7c8 /* include/PsSync.h */, + FFFD0b19f8307fa90b19f830 /* include/PsTempAllocator.h */, + FFFD0b19f8987fa90b19f898 /* include/PsThread.h */, + FFFD0b19f9007fa90b19f900 /* include/PsTime.h */, + FFFD0b19f9687fa90b19f968 /* include/PsUserAllocated.h */, + FFFD0b19f9d07fa90b19f9d0 /* include/PsUtilities.h */, + FFFD0b19fa387fa90b19fa38 /* include/PsVecMath.h */, + FFFD0b19faa07fa90b19faa0 /* include/PsVecMathAoSScalar.h */, + FFFD0b19fb087fa90b19fb08 /* include/PsVecMathAoSScalarInline.h */, + FFFD0b19fb707fa90b19fb70 /* include/PsVecMathSSE.h */, + FFFD0b19fbd87fa90b19fbd8 /* include/PsVecMathUtilities.h */, + FFFD0b19fc407fa90b19fc40 /* include/PsVecQuat.h */, + FFFD0b19fca87fa90b19fca8 /* include/PsVecTransform.h */, + FFFD0b19fd107fa90b19fd10 /* include/unix/PsUnixAoS.h */, + FFFD0b19fd787fa90b19fd78 /* include/unix/PsUnixFPU.h */, + FFFD0b19fde07fa90b19fde0 /* include/unix/PsUnixInlineAoS.h */, + FFFD0b19fe487fa90b19fe48 /* include/unix/PsUnixIntrinsics.h */, + FFFD0b19feb07fa90b19feb0 /* include/unix/PsUnixTrigConstants.h */, + FFFD0b19ff187fa90b19ff18 /* src/PsAllocator.cpp */, + FFFD0b19ff807fa90b19ff80 /* src/PsAssert.cpp */, + FFFD0b19ffe87fa90b19ffe8 /* src/PsFoundation.cpp */, + FFFD0b1a00507fa90b1a0050 /* src/PsMathUtils.cpp */, + FFFD0b1a00b87fa90b1a00b8 /* src/PsString.cpp */, + FFFD0b1a01207fa90b1a0120 /* src/PsTempAllocator.cpp */, + FFFD0b1a01887fa90b1a0188 /* src/PsUtilities.cpp */, + FFFD0b1a01f07fa90b1a01f0 /* src/unix/PsUnixAtomic.cpp */, + FFFD0b1a02587fa90b1a0258 /* src/unix/PsUnixCpu.cpp */, + FFFD0b1a02c07fa90b1a02c0 /* src/unix/PsUnixFPU.cpp */, + FFFD0b1a03287fa90b1a0328 /* src/unix/PsUnixMutex.cpp */, + FFFD0b1a03907fa90b1a0390 /* src/unix/PsUnixPrintString.cpp */, + FFFD0b1a03f87fa90b1a03f8 /* src/unix/PsUnixSList.cpp */, + FFFD0b1a04607fa90b1a0460 /* src/unix/PsUnixSocket.cpp */, + FFFD0b1a04c87fa90b1a04c8 /* src/unix/PsUnixSync.cpp */, + FFFD0b1a05307fa90b1a0530 /* src/unix/PsUnixThread.cpp */, + FFFD0b1a05987fa90b1a0598 /* src/unix/PsUnixTime.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBe29691807ffde2969180 /* PxPvdSDK */ = { + FFFB0bc33a807fa90bc33a80 /* PxPvdSDK */ = { isa = PBXGroup; children = ( - FFFBe29159307ffde2915930 /* include */, - FFFBe29159587ffde2915958 /* src */, + FFFB0bc35df07fa90bc35df0 /* include */, + FFFB0bc35e187fa90bc35e18 /* src */, ); name = "PxPvdSDK"; sourceTree = "<group>"; }; - FFFBe29159307ffde2915930 /* include */ = { + FFFB0bc35df07fa90bc35df0 /* include */ = { isa = PBXGroup; children = ( - FFFDe2915fb07ffde2915fb0 /* PxPvd.h */, - FFFDe29160187ffde2916018 /* PxPvdTransport.h */, + FFFD0bc367207fa90bc36720 /* PxPvd.h */, + FFFD0bc367887fa90bc36788 /* PxPvdTransport.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBe29159587ffde2915958 /* src */ = { + FFFB0bc35e187fa90bc35e18 /* src */ = { isa = PBXGroup; children = ( - FFFDe217ae007ffde217ae00 /* include/PsPvd.h */, - FFFDe217ae687ffde217ae68 /* include/PxProfileAllocatorWrapper.h */, - FFFDe217aed07ffde217aed0 /* include/PxPvdClient.h */, - FFFDe217af387ffde217af38 /* include/PxPvdDataStream.h */, - FFFDe217afa07ffde217afa0 /* include/PxPvdDataStreamHelpers.h */, - FFFDe217b0087ffde217b008 /* include/PxPvdErrorCodes.h */, - FFFDe217b0707ffde217b070 /* include/PxPvdObjectModelBaseTypes.h */, - FFFDe217b0d87ffde217b0d8 /* include/PxPvdRenderBuffer.h */, - FFFDe217b1407ffde217b140 /* include/PxPvdUserRenderer.h */, - FFFDe217b1a87ffde217b1a8 /* src/PxProfileEventImpl.cpp */, - FFFDe217b2107ffde217b210 /* src/PxPvd.cpp */, - FFFDe217b2787ffde217b278 /* src/PxPvdDataStream.cpp */, - FFFDe217b2e07ffde217b2e0 /* src/PxPvdDefaultFileTransport.cpp */, - FFFDe217b3487ffde217b348 /* src/PxPvdDefaultSocketTransport.cpp */, - FFFDe217b3b07ffde217b3b0 /* src/PxPvdImpl.cpp */, - FFFDe217b4187ffde217b418 /* src/PxPvdMemClient.cpp */, - FFFDe217b4807ffde217b480 /* src/PxPvdObjectModelMetaData.cpp */, - FFFDe217b4e87ffde217b4e8 /* src/PxPvdObjectRegistrar.cpp */, - FFFDe217b5507ffde217b550 /* src/PxPvdProfileZoneClient.cpp */, - FFFDe217b5b87ffde217b5b8 /* src/PxPvdUserRenderer.cpp */, - FFFDe217b6207ffde217b620 /* src/PxProfileBase.h */, - FFFDe217b6887ffde217b688 /* src/PxProfileCompileTimeEventFilter.h */, - FFFDe217b6f07ffde217b6f0 /* src/PxProfileContextProvider.h */, - FFFDe217b7587ffde217b758 /* src/PxProfileContextProviderImpl.h */, - FFFDe217b7c07ffde217b7c0 /* src/PxProfileDataBuffer.h */, - FFFDe217b8287ffde217b828 /* src/PxProfileDataParsing.h */, - FFFDe217b8907ffde217b890 /* src/PxProfileEventBuffer.h */, - FFFDe217b8f87ffde217b8f8 /* src/PxProfileEventBufferAtomic.h */, - FFFDe217b9607ffde217b960 /* src/PxProfileEventBufferClient.h */, - FFFDe217b9c87ffde217b9c8 /* src/PxProfileEventBufferClientManager.h */, - FFFDe217ba307ffde217ba30 /* src/PxProfileEventFilter.h */, - FFFDe217ba987ffde217ba98 /* src/PxProfileEventHandler.h */, - FFFDe217bb007ffde217bb00 /* src/PxProfileEventId.h */, - FFFDe217bb687ffde217bb68 /* src/PxProfileEventMutex.h */, - FFFDe217bbd07ffde217bbd0 /* src/PxProfileEventNames.h */, - FFFDe217bc387ffde217bc38 /* src/PxProfileEventParser.h */, - FFFDe217bca07ffde217bca0 /* src/PxProfileEventSender.h */, - FFFDe217bd087ffde217bd08 /* src/PxProfileEventSerialization.h */, - FFFDe217bd707ffde217bd70 /* src/PxProfileEventSystem.h */, - FFFDe217bdd87ffde217bdd8 /* src/PxProfileEvents.h */, - FFFDe217be407ffde217be40 /* src/PxProfileMemory.h */, - FFFDe217bea87ffde217bea8 /* src/PxProfileMemoryBuffer.h */, - FFFDe217bf107ffde217bf10 /* src/PxProfileMemoryEventBuffer.h */, - FFFDe217bf787ffde217bf78 /* src/PxProfileMemoryEventParser.h */, - FFFDe217bfe07ffde217bfe0 /* src/PxProfileMemoryEventRecorder.h */, - FFFDe217c0487ffde217c048 /* src/PxProfileMemoryEventReflexiveWriter.h */, - FFFDe217c0b07ffde217c0b0 /* src/PxProfileMemoryEventSummarizer.h */, - FFFDe217c1187ffde217c118 /* src/PxProfileMemoryEventTypes.h */, - FFFDe217c1807ffde217c180 /* src/PxProfileMemoryEvents.h */, - FFFDe217c1e87ffde217c1e8 /* src/PxProfileScopedEvent.h */, - FFFDe217c2507ffde217c250 /* src/PxProfileScopedMutexLock.h */, - FFFDe217c2b87ffde217c2b8 /* src/PxProfileZone.h */, - FFFDe217c3207ffde217c320 /* src/PxProfileZoneImpl.h */, - FFFDe217c3887ffde217c388 /* src/PxProfileZoneManager.h */, - FFFDe217c3f07ffde217c3f0 /* src/PxProfileZoneManagerImpl.h */, - FFFDe217c4587ffde217c458 /* src/PxPvdBits.h */, - FFFDe217c4c07ffde217c4c0 /* src/PxPvdByteStreams.h */, - FFFDe217c5287ffde217c528 /* src/PxPvdCommStreamEventSink.h */, - FFFDe217c5907ffde217c590 /* src/PxPvdCommStreamEvents.h */, - FFFDe217c5f87ffde217c5f8 /* src/PxPvdCommStreamSDKEventTypes.h */, - FFFDe217c6607ffde217c660 /* src/PxPvdCommStreamTypes.h */, - FFFDe217c6c87ffde217c6c8 /* src/PxPvdDefaultFileTransport.h */, - FFFDe217c7307ffde217c730 /* src/PxPvdDefaultSocketTransport.h */, - FFFDe217c7987ffde217c798 /* src/PxPvdFoundation.h */, - FFFDe217c8007ffde217c800 /* src/PxPvdImpl.h */, - FFFDe217c8687ffde217c868 /* src/PxPvdInternalByteStreams.h */, - FFFDe217c8d07ffde217c8d0 /* src/PxPvdMarshalling.h */, - FFFDe217c9387ffde217c938 /* src/PxPvdMemClient.h */, - FFFDe217c9a07ffde217c9a0 /* src/PxPvdObjectModel.h */, - FFFDe217ca087ffde217ca08 /* src/PxPvdObjectModelInternalTypeDefs.h */, - FFFDe217ca707ffde217ca70 /* src/PxPvdObjectModelInternalTypes.h */, - FFFDe217cad87ffde217cad8 /* src/PxPvdObjectModelMetaData.h */, - FFFDe217cb407ffde217cb40 /* src/PxPvdObjectRegistrar.h */, - FFFDe217cba87ffde217cba8 /* src/PxPvdProfileZoneClient.h */, - FFFDe217cc107ffde217cc10 /* src/PxPvdUserRenderImpl.h */, - FFFDe217cc787ffde217cc78 /* src/PxPvdUserRenderTypes.h */, + FFFD0c0224007fa90c022400 /* include/PsPvd.h */, + FFFD0c0224687fa90c022468 /* include/PxProfileAllocatorWrapper.h */, + FFFD0c0224d07fa90c0224d0 /* include/PxPvdClient.h */, + FFFD0c0225387fa90c022538 /* include/PxPvdDataStream.h */, + FFFD0c0225a07fa90c0225a0 /* include/PxPvdDataStreamHelpers.h */, + FFFD0c0226087fa90c022608 /* include/PxPvdErrorCodes.h */, + FFFD0c0226707fa90c022670 /* include/PxPvdObjectModelBaseTypes.h */, + FFFD0c0226d87fa90c0226d8 /* include/PxPvdRenderBuffer.h */, + FFFD0c0227407fa90c022740 /* include/PxPvdUserRenderer.h */, + FFFD0c0227a87fa90c0227a8 /* src/PxProfileEventImpl.cpp */, + FFFD0c0228107fa90c022810 /* src/PxPvd.cpp */, + FFFD0c0228787fa90c022878 /* src/PxPvdDataStream.cpp */, + FFFD0c0228e07fa90c0228e0 /* src/PxPvdDefaultFileTransport.cpp */, + FFFD0c0229487fa90c022948 /* src/PxPvdDefaultSocketTransport.cpp */, + FFFD0c0229b07fa90c0229b0 /* src/PxPvdImpl.cpp */, + FFFD0c022a187fa90c022a18 /* src/PxPvdMemClient.cpp */, + FFFD0c022a807fa90c022a80 /* src/PxPvdObjectModelMetaData.cpp */, + FFFD0c022ae87fa90c022ae8 /* src/PxPvdObjectRegistrar.cpp */, + FFFD0c022b507fa90c022b50 /* src/PxPvdProfileZoneClient.cpp */, + FFFD0c022bb87fa90c022bb8 /* src/PxPvdUserRenderer.cpp */, + FFFD0c022c207fa90c022c20 /* src/PxProfileBase.h */, + FFFD0c022c887fa90c022c88 /* src/PxProfileCompileTimeEventFilter.h */, + FFFD0c022cf07fa90c022cf0 /* src/PxProfileContextProvider.h */, + FFFD0c022d587fa90c022d58 /* src/PxProfileContextProviderImpl.h */, + FFFD0c022dc07fa90c022dc0 /* src/PxProfileDataBuffer.h */, + FFFD0c022e287fa90c022e28 /* src/PxProfileDataParsing.h */, + FFFD0c022e907fa90c022e90 /* src/PxProfileEventBuffer.h */, + FFFD0c022ef87fa90c022ef8 /* src/PxProfileEventBufferAtomic.h */, + FFFD0c022f607fa90c022f60 /* src/PxProfileEventBufferClient.h */, + FFFD0c022fc87fa90c022fc8 /* src/PxProfileEventBufferClientManager.h */, + FFFD0c0230307fa90c023030 /* src/PxProfileEventFilter.h */, + FFFD0c0230987fa90c023098 /* src/PxProfileEventHandler.h */, + FFFD0c0231007fa90c023100 /* src/PxProfileEventId.h */, + FFFD0c0231687fa90c023168 /* src/PxProfileEventMutex.h */, + FFFD0c0231d07fa90c0231d0 /* src/PxProfileEventNames.h */, + FFFD0c0232387fa90c023238 /* src/PxProfileEventParser.h */, + FFFD0c0232a07fa90c0232a0 /* src/PxProfileEventSender.h */, + FFFD0c0233087fa90c023308 /* src/PxProfileEventSerialization.h */, + FFFD0c0233707fa90c023370 /* src/PxProfileEventSystem.h */, + FFFD0c0233d87fa90c0233d8 /* src/PxProfileEvents.h */, + FFFD0c0234407fa90c023440 /* src/PxProfileMemory.h */, + FFFD0c0234a87fa90c0234a8 /* src/PxProfileMemoryBuffer.h */, + FFFD0c0235107fa90c023510 /* src/PxProfileMemoryEventBuffer.h */, + FFFD0c0235787fa90c023578 /* src/PxProfileMemoryEventParser.h */, + FFFD0c0235e07fa90c0235e0 /* src/PxProfileMemoryEventRecorder.h */, + FFFD0c0236487fa90c023648 /* src/PxProfileMemoryEventReflexiveWriter.h */, + FFFD0c0236b07fa90c0236b0 /* src/PxProfileMemoryEventSummarizer.h */, + FFFD0c0237187fa90c023718 /* src/PxProfileMemoryEventTypes.h */, + FFFD0c0237807fa90c023780 /* src/PxProfileMemoryEvents.h */, + FFFD0c0237e87fa90c0237e8 /* src/PxProfileScopedEvent.h */, + FFFD0c0238507fa90c023850 /* src/PxProfileScopedMutexLock.h */, + FFFD0c0238b87fa90c0238b8 /* src/PxProfileZone.h */, + FFFD0c0239207fa90c023920 /* src/PxProfileZoneImpl.h */, + FFFD0c0239887fa90c023988 /* src/PxProfileZoneManager.h */, + FFFD0c0239f07fa90c0239f0 /* src/PxProfileZoneManagerImpl.h */, + FFFD0c023a587fa90c023a58 /* src/PxPvdBits.h */, + FFFD0c023ac07fa90c023ac0 /* src/PxPvdByteStreams.h */, + FFFD0c023b287fa90c023b28 /* src/PxPvdCommStreamEventSink.h */, + FFFD0c023b907fa90c023b90 /* src/PxPvdCommStreamEvents.h */, + FFFD0c023bf87fa90c023bf8 /* src/PxPvdCommStreamSDKEventTypes.h */, + FFFD0c023c607fa90c023c60 /* src/PxPvdCommStreamTypes.h */, + FFFD0c023cc87fa90c023cc8 /* src/PxPvdDefaultFileTransport.h */, + FFFD0c023d307fa90c023d30 /* src/PxPvdDefaultSocketTransport.h */, + FFFD0c023d987fa90c023d98 /* src/PxPvdFoundation.h */, + FFFD0c023e007fa90c023e00 /* src/PxPvdImpl.h */, + FFFD0c023e687fa90c023e68 /* src/PxPvdInternalByteStreams.h */, + FFFD0c023ed07fa90c023ed0 /* src/PxPvdMarshalling.h */, + FFFD0c023f387fa90c023f38 /* src/PxPvdMemClient.h */, + FFFD0c023fa07fa90c023fa0 /* src/PxPvdObjectModel.h */, + FFFD0c0240087fa90c024008 /* src/PxPvdObjectModelInternalTypeDefs.h */, + FFFD0c0240707fa90c024070 /* src/PxPvdObjectModelInternalTypes.h */, + FFFD0c0240d87fa90c0240d8 /* src/PxPvdObjectModelMetaData.h */, + FFFD0c0241407fa90c024140 /* src/PxPvdObjectRegistrar.h */, + FFFD0c0241a87fa90c0241a8 /* src/PxPvdProfileZoneClient.h */, + FFFD0c0242107fa90c024210 /* src/PxPvdUserRenderImpl.h */, + FFFD0c0242787fa90c024278 /* src/PxPvdUserRenderTypes.h */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBe2f1a6b07ffde2f1a6b0 /* LowLevel */ = { + FFFB0bc50de07fa90bc50de0 /* LowLevel */ = { isa = PBXGroup; children = ( - FFFBe2f29cf07ffde2f29cf0 /* API Source */, - FFFBe2f29d187ffde2f29d18 /* API Includes */, - FFFBe2f29d407ffde2f29d40 /* Software Source */, - FFFBe2f29d687ffde2f29d68 /* Software Includes */, - FFFBe2f29d907ffde2f29d90 /* Common Source */, - FFFBe2f29db87ffde2f29db8 /* Common Includes */, + FFFB0bc55bc07fa90bc55bc0 /* API Source */, + FFFB0bc55be87fa90bc55be8 /* API Includes */, + FFFB0bc55c107fa90bc55c10 /* Software Source */, + FFFB0bc55c387fa90bc55c38 /* Software Includes */, + FFFB0bc55c607fa90bc55c60 /* Common Source */, + FFFB0bc55c887fa90bc55c88 /* Common Includes */, ); name = "LowLevel"; sourceTree = "<group>"; }; - FFFBe2f29cf07ffde2f29cf0 /* API Source */ = { + FFFB0bc55bc07fa90bc55bc0 /* API Source */ = { isa = PBXGroup; children = ( - FFFDe2f26aa07ffde2f26aa0 /* px_globals.cpp */, + FFFD0bc529d07fa90bc529d0 /* px_globals.cpp */, ); name = "API Source"; sourceTree = SOURCE_ROOT; }; - FFFBe2f29d187ffde2f29d18 /* API Includes */ = { + FFFB0bc55be87fa90bc55be8 /* API Includes */ = { isa = PBXGroup; children = ( - FFFDe2f2af807ffde2f2af80 /* PxsMaterialCore.h */, - FFFDe2f2afe87ffde2f2afe8 /* PxsMaterialManager.h */, - FFFDe2f2b0507ffde2f2b050 /* PxvConfig.h */, - FFFDe2f2b0b87ffde2f2b0b8 /* PxvContext.h */, - FFFDe2f2b1207ffde2f2b120 /* PxvDynamics.h */, - FFFDe2f2b1887ffde2f2b188 /* PxvGeometry.h */, - FFFDe2f2b1f07ffde2f2b1f0 /* PxvGlobals.h */, - FFFDe2f2b2587ffde2f2b258 /* PxvManager.h */, - FFFDe2f2b2c07ffde2f2b2c0 /* PxvSimStats.h */, + FFFD0bc556407fa90bc55640 /* PxsMaterialCore.h */, + FFFD0bc556a87fa90bc556a8 /* PxsMaterialManager.h */, + FFFD0bc557107fa90bc55710 /* PxvConfig.h */, + FFFD0bc557787fa90bc55778 /* PxvContext.h */, + FFFD0bc557e07fa90bc557e0 /* PxvDynamics.h */, + FFFD0bc558487fa90bc55848 /* PxvGeometry.h */, + FFFD0bc558b07fa90bc558b0 /* PxvGlobals.h */, + FFFD0bc559187fa90bc55918 /* PxvManager.h */, + FFFD0bc559807fa90bc55980 /* PxvSimStats.h */, ); name = "API Includes"; sourceTree = SOURCE_ROOT; }; - FFFBe2f29d407ffde2f29d40 /* Software Source */ = { + FFFB0bc55c107fa90bc55c10 /* Software Source */ = { isa = PBXGroup; children = ( - FFFDe2f2c1007ffde2f2c100 /* PxsCCD.cpp */, - FFFDe2f2c1687ffde2f2c168 /* PxsContactManager.cpp */, - FFFDe2f2c1d07ffde2f2c1d0 /* PxsContext.cpp */, - FFFDe2f2c2387ffde2f2c238 /* PxsDefaultMemoryManager.cpp */, - FFFDe2f2c2a07ffde2f2c2a0 /* PxsIslandSim.cpp */, - FFFDe2f2c3087ffde2f2c308 /* PxsMaterialCombiner.cpp */, - FFFDe2f2c3707ffde2f2c370 /* PxsNphaseImplementationContext.cpp */, - FFFDe2f2c3d87ffde2f2c3d8 /* PxsSimpleIslandManager.cpp */, + FFFD0bc57ff07fa90bc57ff0 /* PxsCCD.cpp */, + FFFD0bc580587fa90bc58058 /* PxsContactManager.cpp */, + FFFD0bc580c07fa90bc580c0 /* PxsContext.cpp */, + FFFD0bc581287fa90bc58128 /* PxsDefaultMemoryManager.cpp */, + FFFD0bc581907fa90bc58190 /* PxsIslandSim.cpp */, + FFFD0bc581f87fa90bc581f8 /* PxsMaterialCombiner.cpp */, + FFFD0bc582607fa90bc58260 /* PxsNphaseImplementationContext.cpp */, + FFFD0bc582c87fa90bc582c8 /* PxsSimpleIslandManager.cpp */, ); name = "Software Source"; sourceTree = SOURCE_ROOT; }; - FFFBe2f29d687ffde2f29d68 /* Software Includes */ = { + FFFB0bc55c387fa90bc55c38 /* Software Includes */ = { isa = PBXGroup; children = ( - FFFDe30454007ffde3045400 /* PxsBodySim.h */, - FFFDe30454687ffde3045468 /* PxsCCD.h */, - FFFDe30454d07ffde30454d0 /* PxsContactManager.h */, - FFFDe30455387ffde3045538 /* PxsContactManagerState.h */, - FFFDe30455a07ffde30455a0 /* PxsContext.h */, - FFFDe30456087ffde3045608 /* PxsDefaultMemoryManager.h */, - FFFDe30456707ffde3045670 /* PxsHeapMemoryAllocator.h */, - FFFDe30456d87ffde30456d8 /* PxsIncrementalConstraintPartitioning.h */, - FFFDe30457407ffde3045740 /* PxsIslandManagerTypes.h */, - FFFDe30457a87ffde30457a8 /* PxsIslandSim.h */, - FFFDe30458107ffde3045810 /* PxsKernelWrangler.h */, - FFFDe30458787ffde3045878 /* PxsMaterialCombiner.h */, - FFFDe30458e07ffde30458e0 /* PxsMemoryManager.h */, - FFFDe30459487ffde3045948 /* PxsNphaseImplementationContext.h */, - FFFDe30459b07ffde30459b0 /* PxsRigidBody.h */, - FFFDe3045a187ffde3045a18 /* PxsShapeSim.h */, - FFFDe3045a807ffde3045a80 /* PxsSimpleIslandManager.h */, - FFFDe3045ae87ffde3045ae8 /* PxsSimulationController.h */, - FFFDe3045b507ffde3045b50 /* PxsTransformCache.h */, - FFFDe3045bb87ffde3045bb8 /* PxvNphaseImplementationContext.h */, + FFFD0c02aa007fa90c02aa00 /* PxsBodySim.h */, + FFFD0c02aa687fa90c02aa68 /* PxsCCD.h */, + FFFD0c02aad07fa90c02aad0 /* PxsContactManager.h */, + FFFD0c02ab387fa90c02ab38 /* PxsContactManagerState.h */, + FFFD0c02aba07fa90c02aba0 /* PxsContext.h */, + FFFD0c02ac087fa90c02ac08 /* PxsDefaultMemoryManager.h */, + FFFD0c02ac707fa90c02ac70 /* PxsHeapMemoryAllocator.h */, + FFFD0c02acd87fa90c02acd8 /* PxsIncrementalConstraintPartitioning.h */, + FFFD0c02ad407fa90c02ad40 /* PxsIslandManagerTypes.h */, + FFFD0c02ada87fa90c02ada8 /* PxsIslandSim.h */, + FFFD0c02ae107fa90c02ae10 /* PxsKernelWrangler.h */, + FFFD0c02ae787fa90c02ae78 /* PxsMaterialCombiner.h */, + FFFD0c02aee07fa90c02aee0 /* PxsMemoryManager.h */, + FFFD0c02af487fa90c02af48 /* PxsNphaseImplementationContext.h */, + FFFD0c02afb07fa90c02afb0 /* PxsRigidBody.h */, + FFFD0c02b0187fa90c02b018 /* PxsShapeSim.h */, + FFFD0c02b0807fa90c02b080 /* PxsSimpleIslandManager.h */, + FFFD0c02b0e87fa90c02b0e8 /* PxsSimulationController.h */, + FFFD0c02b1507fa90c02b150 /* PxsTransformCache.h */, + FFFD0c02b1b87fa90c02b1b8 /* PxvNphaseImplementationContext.h */, ); name = "Software Includes"; sourceTree = SOURCE_ROOT; }; - FFFBe2f29d907ffde2f29d90 /* Common Source */ = { + FFFB0bc55c607fa90bc55c60 /* Common Source */ = { isa = PBXGroup; children = ( - FFFDe3045e007ffde3045e00 /* collision/PxcContact.cpp */, - FFFDe3045e687ffde3045e68 /* pipeline/PxcContactCache.cpp */, - FFFDe3045ed07ffde3045ed0 /* pipeline/PxcContactMethodImpl.cpp */, - FFFDe3045f387ffde3045f38 /* pipeline/PxcMaterialHeightField.cpp */, - FFFDe3045fa07ffde3045fa0 /* pipeline/PxcMaterialMesh.cpp */, - FFFDe30460087ffde3046008 /* pipeline/PxcMaterialMethodImpl.cpp */, - FFFDe30460707ffde3046070 /* pipeline/PxcMaterialShape.cpp */, - FFFDe30460d87ffde30460d8 /* pipeline/PxcNpBatch.cpp */, - FFFDe30461407ffde3046140 /* pipeline/PxcNpCacheStreamPair.cpp */, - FFFDe30461a87ffde30461a8 /* pipeline/PxcNpContactPrepShared.cpp */, - FFFDe30462107ffde3046210 /* pipeline/PxcNpMemBlockPool.cpp */, - FFFDe30462787ffde3046278 /* pipeline/PxcNpThreadContext.cpp */, + FFFD0c0294007fa90c029400 /* collision/PxcContact.cpp */, + FFFD0c0294687fa90c029468 /* pipeline/PxcContactCache.cpp */, + FFFD0c0294d07fa90c0294d0 /* pipeline/PxcContactMethodImpl.cpp */, + FFFD0c0295387fa90c029538 /* pipeline/PxcMaterialHeightField.cpp */, + FFFD0c0295a07fa90c0295a0 /* pipeline/PxcMaterialMesh.cpp */, + FFFD0c0296087fa90c029608 /* pipeline/PxcMaterialMethodImpl.cpp */, + FFFD0c0296707fa90c029670 /* pipeline/PxcMaterialShape.cpp */, + FFFD0c0296d87fa90c0296d8 /* pipeline/PxcNpBatch.cpp */, + FFFD0c0297407fa90c029740 /* pipeline/PxcNpCacheStreamPair.cpp */, + FFFD0c0297a87fa90c0297a8 /* pipeline/PxcNpContactPrepShared.cpp */, + FFFD0c0298107fa90c029810 /* pipeline/PxcNpMemBlockPool.cpp */, + FFFD0c0298787fa90c029878 /* pipeline/PxcNpThreadContext.cpp */, ); name = "Common Source"; sourceTree = SOURCE_ROOT; }; - FFFBe2f29db87ffde2f29db8 /* Common Includes */ = { + FFFB0bc55c887fa90bc55c88 /* Common Includes */ = { isa = PBXGroup; children = ( - FFFDe304d2007ffde304d200 /* collision/PxcContactMethodImpl.h */, - FFFDe304d2687ffde304d268 /* pipeline/PxcCCDStateStreamPair.h */, - FFFDe304d2d07ffde304d2d0 /* pipeline/PxcConstraintBlockStream.h */, - FFFDe304d3387ffde304d338 /* pipeline/PxcContactCache.h */, - FFFDe304d3a07ffde304d3a0 /* pipeline/PxcMaterialMethodImpl.h */, - FFFDe304d4087ffde304d408 /* pipeline/PxcNpBatch.h */, - FFFDe304d4707ffde304d470 /* pipeline/PxcNpCache.h */, - FFFDe304d4d87ffde304d4d8 /* pipeline/PxcNpCacheStreamPair.h */, - FFFDe304d5407ffde304d540 /* pipeline/PxcNpContactPrepShared.h */, - FFFDe304d5a87ffde304d5a8 /* pipeline/PxcNpMemBlockPool.h */, - FFFDe304d6107ffde304d610 /* pipeline/PxcNpThreadContext.h */, - FFFDe304d6787ffde304d678 /* pipeline/PxcNpWorkUnit.h */, - FFFDe304d6e07ffde304d6e0 /* pipeline/PxcRigidBody.h */, - FFFDe304d7487ffde304d748 /* utils/PxcScratchAllocator.h */, - FFFDe304d7b07ffde304d7b0 /* utils/PxcThreadCoherentCache.h */, + FFFD0c029c007fa90c029c00 /* collision/PxcContactMethodImpl.h */, + FFFD0c029c687fa90c029c68 /* pipeline/PxcCCDStateStreamPair.h */, + FFFD0c029cd07fa90c029cd0 /* pipeline/PxcConstraintBlockStream.h */, + FFFD0c029d387fa90c029d38 /* pipeline/PxcContactCache.h */, + FFFD0c029da07fa90c029da0 /* pipeline/PxcMaterialMethodImpl.h */, + FFFD0c029e087fa90c029e08 /* pipeline/PxcNpBatch.h */, + FFFD0c029e707fa90c029e70 /* pipeline/PxcNpCache.h */, + FFFD0c029ed87fa90c029ed8 /* pipeline/PxcNpCacheStreamPair.h */, + FFFD0c029f407fa90c029f40 /* pipeline/PxcNpContactPrepShared.h */, + FFFD0c029fa87fa90c029fa8 /* pipeline/PxcNpMemBlockPool.h */, + FFFD0c02a0107fa90c02a010 /* pipeline/PxcNpThreadContext.h */, + FFFD0c02a0787fa90c02a078 /* pipeline/PxcNpWorkUnit.h */, + FFFD0c02a0e07fa90c02a0e0 /* pipeline/PxcRigidBody.h */, + FFFD0c02a1487fa90c02a148 /* utils/PxcScratchAllocator.h */, + FFFD0c02a1b07fa90c02a1b0 /* utils/PxcThreadCoherentCache.h */, ); name = "Common Includes"; sourceTree = SOURCE_ROOT; }; - FFFBe2d334507ffde2d33450 /* LowLevelAABB */ = { + FFFB0bb097007fa90bb09700 /* LowLevelAABB */ = { isa = PBXGroup; children = ( - FFFBe2d365a07ffde2d365a0 /* include */, - FFFBe2d365c87ffde2d365c8 /* src */, + FFFB0be03f307fa90be03f30 /* include */, + FFFB0be03f587fa90be03f58 /* src */, ); name = "LowLevelAABB"; sourceTree = "<group>"; }; - FFFBe2d365a07ffde2d365a0 /* include */ = { + FFFB0be03f307fa90be03f30 /* include */ = { isa = PBXGroup; children = ( - FFFDe2d365f07ffde2d365f0 /* BpAABBManagerTasks.h */, - FFFDe2d366587ffde2d36658 /* BpBroadPhase.h */, - FFFDe2d366c07ffde2d366c0 /* BpBroadPhaseUpdate.h */, - FFFDe2d367287ffde2d36728 /* BpSimpleAABBManager.h */, + FFFD0be044507fa90be04450 /* BpAABBManagerTasks.h */, + FFFD0be044b87fa90be044b8 /* BpBroadPhase.h */, + FFFD0be045207fa90be04520 /* BpBroadPhaseUpdate.h */, + FFFD0be045887fa90be04588 /* BpSimpleAABBManager.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBe2d365c87ffde2d365c8 /* src */ = { + FFFB0be03f587fa90be03f58 /* src */ = { isa = PBXGroup; children = ( - FFFDe3815a007ffde3815a00 /* BpBroadPhaseMBP.h */, - FFFDe3815a687ffde3815a68 /* BpBroadPhaseMBPCommon.h */, - FFFDe3815ad07ffde3815ad0 /* BpBroadPhaseSap.h */, - FFFDe3815b387ffde3815b38 /* BpBroadPhaseSapAux.h */, - FFFDe3815ba07ffde3815ba0 /* BpMBPTasks.h */, - FFFDe3815c087ffde3815c08 /* BpSAPTasks.h */, - FFFDe3815c707ffde3815c70 /* BpBroadPhase.cpp */, - FFFDe3815cd87ffde3815cd8 /* BpBroadPhaseMBP.cpp */, - FFFDe3815d407ffde3815d40 /* BpBroadPhaseSap.cpp */, - FFFDe3815da87ffde3815da8 /* BpBroadPhaseSapAux.cpp */, - FFFDe3815e107ffde3815e10 /* BpMBPTasks.cpp */, - FFFDe3815e787ffde3815e78 /* BpSAPTasks.cpp */, - FFFDe3815ee07ffde3815ee0 /* BpSimpleAABBManager.cpp */, + FFFD0b1c8c007fa90b1c8c00 /* BpBroadPhaseMBP.h */, + FFFD0b1c8c687fa90b1c8c68 /* BpBroadPhaseMBPCommon.h */, + FFFD0b1c8cd07fa90b1c8cd0 /* BpBroadPhaseSap.h */, + FFFD0b1c8d387fa90b1c8d38 /* BpBroadPhaseSapAux.h */, + FFFD0b1c8da07fa90b1c8da0 /* BpMBPTasks.h */, + FFFD0b1c8e087fa90b1c8e08 /* BpSAPTasks.h */, + FFFD0b1c8e707fa90b1c8e70 /* BpBroadPhase.cpp */, + FFFD0b1c8ed87fa90b1c8ed8 /* BpBroadPhaseMBP.cpp */, + FFFD0b1c8f407fa90b1c8f40 /* BpBroadPhaseSap.cpp */, + FFFD0b1c8fa87fa90b1c8fa8 /* BpBroadPhaseSapAux.cpp */, + FFFD0b1c90107fa90b1c9010 /* BpMBPTasks.cpp */, + FFFD0b1c90787fa90b1c9078 /* BpSAPTasks.cpp */, + FFFD0b1c90e07fa90b1c90e0 /* BpSimpleAABBManager.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBe2d544f07ffde2d544f0 /* LowLevelDynamics */ = { + FFFB0bc6a7707fa90bc6a770 /* LowLevelDynamics */ = { isa = PBXGroup; children = ( - FFFBe2d4c6407ffde2d4c640 /* Dynamics Source */, - FFFBe2d4c6687ffde2d4c668 /* Dynamics Includes */, - FFFBe2d4c6907ffde2d4c690 /* Dynamics Internal Includes */, + FFFB0bc701007fa90bc70100 /* Dynamics Source */, + FFFB0bc701287fa90bc70128 /* Dynamics Includes */, + FFFB0bc701507fa90bc70150 /* Dynamics Internal Includes */, ); name = "LowLevelDynamics"; sourceTree = "<group>"; }; - FFFBe2d4c6407ffde2d4c640 /* Dynamics Source */ = { + FFFB0bc701007fa90bc70100 /* Dynamics Source */ = { isa = PBXGroup; children = ( - FFFDe38220007ffde3822000 /* DyArticulation.cpp */, - FFFDe38220687ffde3822068 /* DyArticulationContactPrep.cpp */, - FFFDe38220d07ffde38220d0 /* DyArticulationContactPrepPF.cpp */, - FFFDe38221387ffde3822138 /* DyArticulationHelper.cpp */, - FFFDe38221a07ffde38221a0 /* DyArticulationSIMD.cpp */, - FFFDe38222087ffde3822208 /* DyArticulationScalar.cpp */, - FFFDe38222707ffde3822270 /* DyConstraintPartition.cpp */, - FFFDe38222d87ffde38222d8 /* DyConstraintSetup.cpp */, - FFFDe38223407ffde3822340 /* DyConstraintSetupBlock.cpp */, - FFFDe38223a87ffde38223a8 /* DyContactPrep.cpp */, - FFFDe38224107ffde3822410 /* DyContactPrep4.cpp */, - FFFDe38224787ffde3822478 /* DyContactPrep4PF.cpp */, - FFFDe38224e07ffde38224e0 /* DyContactPrepPF.cpp */, - FFFDe38225487ffde3822548 /* DyDynamics.cpp */, - FFFDe38225b07ffde38225b0 /* DyFrictionCorrelation.cpp */, - FFFDe38226187ffde3822618 /* DyRigidBodyToSolverBody.cpp */, - FFFDe38226807ffde3822680 /* DySolverConstraints.cpp */, - FFFDe38226e87ffde38226e8 /* DySolverConstraintsBlock.cpp */, - FFFDe38227507ffde3822750 /* DySolverControl.cpp */, - FFFDe38227b87ffde38227b8 /* DySolverControlPF.cpp */, - FFFDe38228207ffde3822820 /* DySolverPFConstraints.cpp */, - FFFDe38228887ffde3822888 /* DySolverPFConstraintsBlock.cpp */, - FFFDe38228f07ffde38228f0 /* DyThreadContext.cpp */, - FFFDe38229587ffde3822958 /* DyThresholdTable.cpp */, + FFFD0c0334007fa90c033400 /* DyArticulation.cpp */, + FFFD0c0334687fa90c033468 /* DyArticulationContactPrep.cpp */, + FFFD0c0334d07fa90c0334d0 /* DyArticulationContactPrepPF.cpp */, + FFFD0c0335387fa90c033538 /* DyArticulationHelper.cpp */, + FFFD0c0335a07fa90c0335a0 /* DyArticulationSIMD.cpp */, + FFFD0c0336087fa90c033608 /* DyArticulationScalar.cpp */, + FFFD0c0336707fa90c033670 /* DyConstraintPartition.cpp */, + FFFD0c0336d87fa90c0336d8 /* DyConstraintSetup.cpp */, + FFFD0c0337407fa90c033740 /* DyConstraintSetupBlock.cpp */, + FFFD0c0337a87fa90c0337a8 /* DyContactPrep.cpp */, + FFFD0c0338107fa90c033810 /* DyContactPrep4.cpp */, + FFFD0c0338787fa90c033878 /* DyContactPrep4PF.cpp */, + FFFD0c0338e07fa90c0338e0 /* DyContactPrepPF.cpp */, + FFFD0c0339487fa90c033948 /* DyDynamics.cpp */, + FFFD0c0339b07fa90c0339b0 /* DyFrictionCorrelation.cpp */, + FFFD0c033a187fa90c033a18 /* DyRigidBodyToSolverBody.cpp */, + FFFD0c033a807fa90c033a80 /* DySolverConstraints.cpp */, + FFFD0c033ae87fa90c033ae8 /* DySolverConstraintsBlock.cpp */, + FFFD0c033b507fa90c033b50 /* DySolverControl.cpp */, + FFFD0c033bb87fa90c033bb8 /* DySolverControlPF.cpp */, + FFFD0c033c207fa90c033c20 /* DySolverPFConstraints.cpp */, + FFFD0c033c887fa90c033c88 /* DySolverPFConstraintsBlock.cpp */, + FFFD0c033cf07fa90c033cf0 /* DyThreadContext.cpp */, + FFFD0c033d587fa90c033d58 /* DyThresholdTable.cpp */, ); name = "Dynamics Source"; sourceTree = SOURCE_ROOT; }; - FFFBe2d4c6687ffde2d4c668 /* Dynamics Includes */ = { + FFFB0bc701287fa90bc70128 /* Dynamics Includes */ = { isa = PBXGroup; children = ( - FFFDe2d51ff07ffde2d51ff0 /* DyArticulation.h */, - FFFDe2d520587ffde2d52058 /* DyConstraint.h */, - FFFDe2d520c07ffde2d520c0 /* DyConstraintWriteBack.h */, - FFFDe2d521287ffde2d52128 /* DyContext.h */, - FFFDe2d521907ffde2d52190 /* DyGpuAPI.h */, - FFFDe2d521f87ffde2d521f8 /* DySleepingConfigulation.h */, - FFFDe2d522607ffde2d52260 /* DyThresholdTable.h */, + FFFD0bc80b607fa90bc80b60 /* DyArticulation.h */, + FFFD0bc80bc87fa90bc80bc8 /* DyConstraint.h */, + FFFD0bc80c307fa90bc80c30 /* DyConstraintWriteBack.h */, + FFFD0bc80c987fa90bc80c98 /* DyContext.h */, + FFFD0bc80d007fa90bc80d00 /* DyGpuAPI.h */, + FFFD0bc80d687fa90bc80d68 /* DySleepingConfigulation.h */, + FFFD0bc80dd07fa90bc80dd0 /* DyThresholdTable.h */, ); name = "Dynamics Includes"; sourceTree = SOURCE_ROOT; }; - FFFBe2d4c6907ffde2d4c690 /* Dynamics Internal Includes */ = { + FFFB0bc701507fa90bc70150 /* Dynamics Internal Includes */ = { isa = PBXGroup; children = ( - FFFDe38238007ffde3823800 /* DyArticulationContactPrep.h */, - FFFDe38238687ffde3823868 /* DyArticulationFnsDebug.h */, - FFFDe38238d07ffde38238d0 /* DyArticulationFnsScalar.h */, - FFFDe38239387ffde3823938 /* DyArticulationFnsSimd.h */, - FFFDe38239a07ffde38239a0 /* DyArticulationHelper.h */, - FFFDe3823a087ffde3823a08 /* DyArticulationPImpl.h */, - FFFDe3823a707ffde3823a70 /* DyArticulationReference.h */, - FFFDe3823ad87ffde3823ad8 /* DyArticulationScalar.h */, - FFFDe3823b407ffde3823b40 /* DyArticulationUtils.h */, - FFFDe3823ba87ffde3823ba8 /* DyBodyCoreIntegrator.h */, - FFFDe3823c107ffde3823c10 /* DyConstraintPartition.h */, - FFFDe3823c787ffde3823c78 /* DyConstraintPrep.h */, - FFFDe3823ce07ffde3823ce0 /* DyContactPrep.h */, - FFFDe3823d487ffde3823d48 /* DyContactPrepShared.h */, - FFFDe3823db07ffde3823db0 /* DyContactReduction.h */, - FFFDe3823e187ffde3823e18 /* DyCorrelationBuffer.h */, - FFFDe3823e807ffde3823e80 /* DyDynamics.h */, - FFFDe3823ee87ffde3823ee8 /* DyFrictionPatch.h */, - FFFDe3823f507ffde3823f50 /* DyFrictionPatchStreamPair.h */, - FFFDe3823fb87ffde3823fb8 /* DySolverBody.h */, - FFFDe38240207ffde3824020 /* DySolverConstraint1D.h */, - FFFDe38240887ffde3824088 /* DySolverConstraint1D4.h */, - FFFDe38240f07ffde38240f0 /* DySolverConstraintDesc.h */, - FFFDe38241587ffde3824158 /* DySolverConstraintExtShared.h */, - FFFDe38241c07ffde38241c0 /* DySolverConstraintTypes.h */, - FFFDe38242287ffde3824228 /* DySolverConstraintsShared.h */, - FFFDe38242907ffde3824290 /* DySolverContact.h */, - FFFDe38242f87ffde38242f8 /* DySolverContact4.h */, - FFFDe38243607ffde3824360 /* DySolverContactPF.h */, - FFFDe38243c87ffde38243c8 /* DySolverContactPF4.h */, - FFFDe38244307ffde3824430 /* DySolverContext.h */, - FFFDe38244987ffde3824498 /* DySolverControl.h */, - FFFDe38245007ffde3824500 /* DySolverControlPF.h */, - FFFDe38245687ffde3824568 /* DySolverCore.h */, - FFFDe38245d07ffde38245d0 /* DySolverExt.h */, - FFFDe38246387ffde3824638 /* DySpatial.h */, - FFFDe38246a07ffde38246a0 /* DyThreadContext.h */, + FFFD0c034c007fa90c034c00 /* DyArticulationContactPrep.h */, + FFFD0c034c687fa90c034c68 /* DyArticulationFnsDebug.h */, + FFFD0c034cd07fa90c034cd0 /* DyArticulationFnsScalar.h */, + FFFD0c034d387fa90c034d38 /* DyArticulationFnsSimd.h */, + FFFD0c034da07fa90c034da0 /* DyArticulationHelper.h */, + FFFD0c034e087fa90c034e08 /* DyArticulationPImpl.h */, + FFFD0c034e707fa90c034e70 /* DyArticulationReference.h */, + FFFD0c034ed87fa90c034ed8 /* DyArticulationScalar.h */, + FFFD0c034f407fa90c034f40 /* DyArticulationUtils.h */, + FFFD0c034fa87fa90c034fa8 /* DyBodyCoreIntegrator.h */, + FFFD0c0350107fa90c035010 /* DyConstraintPartition.h */, + FFFD0c0350787fa90c035078 /* DyConstraintPrep.h */, + FFFD0c0350e07fa90c0350e0 /* DyContactPrep.h */, + FFFD0c0351487fa90c035148 /* DyContactPrepShared.h */, + FFFD0c0351b07fa90c0351b0 /* DyContactReduction.h */, + FFFD0c0352187fa90c035218 /* DyCorrelationBuffer.h */, + FFFD0c0352807fa90c035280 /* DyDynamics.h */, + FFFD0c0352e87fa90c0352e8 /* DyFrictionPatch.h */, + FFFD0c0353507fa90c035350 /* DyFrictionPatchStreamPair.h */, + FFFD0c0353b87fa90c0353b8 /* DySolverBody.h */, + FFFD0c0354207fa90c035420 /* DySolverConstraint1D.h */, + FFFD0c0354887fa90c035488 /* DySolverConstraint1D4.h */, + FFFD0c0354f07fa90c0354f0 /* DySolverConstraintDesc.h */, + FFFD0c0355587fa90c035558 /* DySolverConstraintExtShared.h */, + FFFD0c0355c07fa90c0355c0 /* DySolverConstraintTypes.h */, + FFFD0c0356287fa90c035628 /* DySolverConstraintsShared.h */, + FFFD0c0356907fa90c035690 /* DySolverContact.h */, + FFFD0c0356f87fa90c0356f8 /* DySolverContact4.h */, + FFFD0c0357607fa90c035760 /* DySolverContactPF.h */, + FFFD0c0357c87fa90c0357c8 /* DySolverContactPF4.h */, + FFFD0c0358307fa90c035830 /* DySolverContext.h */, + FFFD0c0358987fa90c035898 /* DySolverControl.h */, + FFFD0c0359007fa90c035900 /* DySolverControlPF.h */, + FFFD0c0359687fa90c035968 /* DySolverCore.h */, + FFFD0c0359d07fa90c0359d0 /* DySolverExt.h */, + FFFD0c035a387fa90c035a38 /* DySpatial.h */, + FFFD0c035aa07fa90c035aa0 /* DyThreadContext.h */, ); name = "Dynamics Internal Includes"; sourceTree = SOURCE_ROOT; }; - FFFBe292cb407ffde292cb40 /* LowLevelCloth */ = { + FFFB0be0eb007fa90be0eb00 /* LowLevelCloth */ = { isa = PBXGroup; children = ( - FFFBe292ba707ffde292ba70 /* include */, - FFFBe292ba987ffde292ba98 /* src */, + FFFB0be1e9707fa90be1e970 /* include */, + FFFB0be1e9987fa90be1e998 /* src */, ); name = "LowLevelCloth"; sourceTree = "<group>"; }; - FFFBe292ba707ffde292ba70 /* include */ = { + FFFB0be1e9707fa90be1e970 /* include */ = { isa = PBXGroup; children = ( - FFFDe292a0807ffde292a080 /* Cloth.h */, - FFFDe292a0e87ffde292a0e8 /* Fabric.h */, - FFFDe292a1507ffde292a150 /* Factory.h */, - FFFDe292a1b87ffde292a1b8 /* PhaseConfig.h */, - FFFDe292a2207ffde292a220 /* Range.h */, - FFFDe292a2887ffde292a288 /* Solver.h */, - FFFDe292a2f07ffde292a2f0 /* Types.h */, + FFFD0be248707fa90be24870 /* Cloth.h */, + FFFD0be248d87fa90be248d8 /* Fabric.h */, + FFFD0be249407fa90be24940 /* Factory.h */, + FFFD0be249a87fa90be249a8 /* PhaseConfig.h */, + FFFD0be24a107fa90be24a10 /* Range.h */, + FFFD0be24a787fa90be24a78 /* Solver.h */, + FFFD0be24ae07fa90be24ae0 /* Types.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBe292ba987ffde292ba98 /* src */ = { + FFFB0be1e9987fa90be1e998 /* src */ = { isa = PBXGroup; children = ( - FFFDe2184a007ffde2184a00 /* Allocator.h */, - FFFDe2184a687ffde2184a68 /* Array.h */, - FFFDe2184ad07ffde2184ad0 /* BoundingBox.h */, - FFFDe2184b387ffde2184b38 /* ClothBase.h */, - FFFDe2184ba07ffde2184ba0 /* ClothImpl.h */, - FFFDe2184c087ffde2184c08 /* IndexPair.h */, - FFFDe2184c707ffde2184c70 /* IterationState.h */, - FFFDe2184cd87ffde2184cd8 /* MovingAverage.h */, - FFFDe2184d407ffde2184d40 /* PointInterpolator.h */, - FFFDe2184da87ffde2184da8 /* Simd.h */, - FFFDe2184e107ffde2184e10 /* StackAllocator.h */, - FFFDe2184e787ffde2184e78 /* SwCloth.h */, - FFFDe2184ee07ffde2184ee0 /* SwClothData.h */, - FFFDe2184f487ffde2184f48 /* SwCollision.h */, - FFFDe2184fb07ffde2184fb0 /* SwCollisionHelpers.h */, - FFFDe21850187ffde2185018 /* SwFabric.h */, - FFFDe21850807ffde2185080 /* SwFactory.h */, - FFFDe21850e87ffde21850e8 /* SwInterCollision.h */, - FFFDe21851507ffde2185150 /* SwSelfCollision.h */, - FFFDe21851b87ffde21851b8 /* SwSolver.h */, - FFFDe21852207ffde2185220 /* SwSolverKernel.h */, - FFFDe21852887ffde2185288 /* TripletScheduler.h */, - FFFDe21852f07ffde21852f0 /* Vec4T.h */, - FFFDe21853587ffde2185358 /* Allocator.cpp */, - FFFDe21853c07ffde21853c0 /* Factory.cpp */, - FFFDe21854287ffde2185428 /* PhaseConfig.cpp */, - FFFDe21854907ffde2185490 /* SwCloth.cpp */, - FFFDe21854f87ffde21854f8 /* SwClothData.cpp */, - FFFDe21855607ffde2185560 /* SwCollision.cpp */, - FFFDe21855c87ffde21855c8 /* SwFabric.cpp */, - FFFDe21856307ffde2185630 /* SwFactory.cpp */, - FFFDe21856987ffde2185698 /* SwInterCollision.cpp */, - FFFDe21857007ffde2185700 /* SwSelfCollision.cpp */, - FFFDe21857687ffde2185768 /* SwSolver.cpp */, - FFFDe21857d07ffde21857d0 /* SwSolverKernel.cpp */, - FFFDe21858387ffde2185838 /* TripletScheduler.cpp */, + FFFD0b1d9e007fa90b1d9e00 /* Allocator.h */, + FFFD0b1d9e687fa90b1d9e68 /* Array.h */, + FFFD0b1d9ed07fa90b1d9ed0 /* BoundingBox.h */, + FFFD0b1d9f387fa90b1d9f38 /* ClothBase.h */, + FFFD0b1d9fa07fa90b1d9fa0 /* ClothImpl.h */, + FFFD0b1da0087fa90b1da008 /* IndexPair.h */, + FFFD0b1da0707fa90b1da070 /* IterationState.h */, + FFFD0b1da0d87fa90b1da0d8 /* MovingAverage.h */, + FFFD0b1da1407fa90b1da140 /* PointInterpolator.h */, + FFFD0b1da1a87fa90b1da1a8 /* Simd.h */, + FFFD0b1da2107fa90b1da210 /* StackAllocator.h */, + FFFD0b1da2787fa90b1da278 /* SwCloth.h */, + FFFD0b1da2e07fa90b1da2e0 /* SwClothData.h */, + FFFD0b1da3487fa90b1da348 /* SwCollision.h */, + FFFD0b1da3b07fa90b1da3b0 /* SwCollisionHelpers.h */, + FFFD0b1da4187fa90b1da418 /* SwFabric.h */, + FFFD0b1da4807fa90b1da480 /* SwFactory.h */, + FFFD0b1da4e87fa90b1da4e8 /* SwInterCollision.h */, + FFFD0b1da5507fa90b1da550 /* SwSelfCollision.h */, + FFFD0b1da5b87fa90b1da5b8 /* SwSolver.h */, + FFFD0b1da6207fa90b1da620 /* SwSolverKernel.h */, + FFFD0b1da6887fa90b1da688 /* TripletScheduler.h */, + FFFD0b1da6f07fa90b1da6f0 /* Vec4T.h */, + FFFD0b1da7587fa90b1da758 /* Allocator.cpp */, + FFFD0b1da7c07fa90b1da7c0 /* Factory.cpp */, + FFFD0b1da8287fa90b1da828 /* PhaseConfig.cpp */, + FFFD0b1da8907fa90b1da890 /* SwCloth.cpp */, + FFFD0b1da8f87fa90b1da8f8 /* SwClothData.cpp */, + FFFD0b1da9607fa90b1da960 /* SwCollision.cpp */, + FFFD0b1da9c87fa90b1da9c8 /* SwFabric.cpp */, + FFFD0b1daa307fa90b1daa30 /* SwFactory.cpp */, + FFFD0b1daa987fa90b1daa98 /* SwInterCollision.cpp */, + FFFD0b1dab007fa90b1dab00 /* SwSelfCollision.cpp */, + FFFD0b1dab687fa90b1dab68 /* SwSolver.cpp */, + FFFD0b1dabd07fa90b1dabd0 /* SwSolverKernel.cpp */, + FFFD0b1dac387fa90b1dac38 /* TripletScheduler.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBe1484d707ffde1484d70 /* LowLevelParticles */ = { + FFFB0bc8f2607fa90bc8f260 /* LowLevelParticles */ = { isa = PBXGroup; children = ( - FFFBe147be207ffde147be20 /* include */, - FFFBe147be487ffde147be48 /* src */, + FFFB0bc91b107fa90bc91b10 /* include */, + FFFB0bc91b387fa90bc91b38 /* src */, ); name = "LowLevelParticles"; sourceTree = "<group>"; }; - FFFBe147be207ffde147be20 /* include */ = { + FFFB0bc91b107fa90bc91b10 /* include */ = { isa = PBXGroup; children = ( - FFFDe18178007ffde1817800 /* PtBodyTransformVault.h */, - FFFDe18178687ffde1817868 /* PtContext.h */, - FFFDe18178d07ffde18178d0 /* PtGridCellVector.h */, - FFFDe18179387ffde1817938 /* PtParticle.h */, - FFFDe18179a07ffde18179a0 /* PtParticleContactManagerStream.h */, - FFFDe1817a087ffde1817a08 /* PtParticleData.h */, - FFFDe1817a707ffde1817a70 /* PtParticleShape.h */, - FFFDe1817ad87ffde1817ad8 /* PtParticleSystemCore.h */, - FFFDe1817b407ffde1817b40 /* PtParticleSystemFlags.h */, - FFFDe1817ba87ffde1817ba8 /* PtParticleSystemSim.h */, + FFFD0c03aa007fa90c03aa00 /* PtBodyTransformVault.h */, + FFFD0c03aa687fa90c03aa68 /* PtContext.h */, + FFFD0c03aad07fa90c03aad0 /* PtGridCellVector.h */, + FFFD0c03ab387fa90c03ab38 /* PtParticle.h */, + FFFD0c03aba07fa90c03aba0 /* PtParticleContactManagerStream.h */, + FFFD0c03ac087fa90c03ac08 /* PtParticleData.h */, + FFFD0c03ac707fa90c03ac70 /* PtParticleShape.h */, + FFFD0c03acd87fa90c03acd8 /* PtParticleSystemCore.h */, + FFFD0c03ad407fa90c03ad40 /* PtParticleSystemFlags.h */, + FFFD0c03ada87fa90c03ada8 /* PtParticleSystemSim.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBe147be487ffde147be48 /* src */ = { + FFFB0bc91b387fa90bc91b38 /* src */ = { isa = PBXGroup; children = ( - FFFDe18224007ffde1822400 /* PtBatcher.h */, - FFFDe18224687ffde1822468 /* PtCollision.h */, - FFFDe18224d07ffde18224d0 /* PtCollisionData.h */, - FFFDe18225387ffde1822538 /* PtCollisionHelper.h */, - FFFDe18225a07ffde18225a0 /* PtCollisionMethods.h */, - FFFDe18226087ffde1822608 /* PtCollisionParameters.h */, - FFFDe18226707ffde1822670 /* PtConfig.h */, - FFFDe18226d87ffde18226d8 /* PtConstants.h */, - FFFDe18227407ffde1822740 /* PtContextCpu.h */, - FFFDe18227a87ffde18227a8 /* PtDynamicHelper.h */, - FFFDe18228107ffde1822810 /* PtDynamics.h */, - FFFDe18228787ffde1822878 /* PtDynamicsKernels.h */, - FFFDe18228e07ffde18228e0 /* PtDynamicsParameters.h */, - FFFDe18229487ffde1822948 /* PtDynamicsTempBuffers.h */, - FFFDe18229b07ffde18229b0 /* PtHeightFieldAabbTest.h */, - FFFDe1822a187ffde1822a18 /* PtPacketSections.h */, - FFFDe1822a807ffde1822a80 /* PtParticleCell.h */, - FFFDe1822ae87ffde1822ae8 /* PtParticleOpcodeCache.h */, - FFFDe1822b507ffde1822b50 /* PtParticleShapeCpu.h */, - FFFDe1822bb87ffde1822bb8 /* PtParticleSystemSimCpu.h */, - FFFDe1822c207ffde1822c20 /* PtSpatialHash.h */, - FFFDe1822c887ffde1822c88 /* PtSpatialHashHelper.h */, - FFFDe1822cf07ffde1822cf0 /* PtTwoWayData.h */, - FFFDe1822d587ffde1822d58 /* PtBatcher.cpp */, - FFFDe1822dc07ffde1822dc0 /* PtBodyTransformVault.cpp */, - FFFDe1822e287ffde1822e28 /* PtCollision.cpp */, - FFFDe1822e907ffde1822e90 /* PtCollisionBox.cpp */, - FFFDe1822ef87ffde1822ef8 /* PtCollisionCapsule.cpp */, - FFFDe1822f607ffde1822f60 /* PtCollisionConvex.cpp */, - FFFDe1822fc87ffde1822fc8 /* PtCollisionMesh.cpp */, - FFFDe18230307ffde1823030 /* PtCollisionPlane.cpp */, - FFFDe18230987ffde1823098 /* PtCollisionSphere.cpp */, - FFFDe18231007ffde1823100 /* PtContextCpu.cpp */, - FFFDe18231687ffde1823168 /* PtDynamics.cpp */, - FFFDe18231d07ffde18231d0 /* PtParticleData.cpp */, - FFFDe18232387ffde1823238 /* PtParticleShapeCpu.cpp */, - FFFDe18232a07ffde18232a0 /* PtParticleSystemSimCpu.cpp */, - FFFDe18233087ffde1823308 /* PtSpatialHash.cpp */, - FFFDe18233707ffde1823370 /* PtSpatialLocalHash.cpp */, + FFFD0c03f2007fa90c03f200 /* PtBatcher.h */, + FFFD0c03f2687fa90c03f268 /* PtCollision.h */, + FFFD0c03f2d07fa90c03f2d0 /* PtCollisionData.h */, + FFFD0c03f3387fa90c03f338 /* PtCollisionHelper.h */, + FFFD0c03f3a07fa90c03f3a0 /* PtCollisionMethods.h */, + FFFD0c03f4087fa90c03f408 /* PtCollisionParameters.h */, + FFFD0c03f4707fa90c03f470 /* PtConfig.h */, + FFFD0c03f4d87fa90c03f4d8 /* PtConstants.h */, + FFFD0c03f5407fa90c03f540 /* PtContextCpu.h */, + FFFD0c03f5a87fa90c03f5a8 /* PtDynamicHelper.h */, + FFFD0c03f6107fa90c03f610 /* PtDynamics.h */, + FFFD0c03f6787fa90c03f678 /* PtDynamicsKernels.h */, + FFFD0c03f6e07fa90c03f6e0 /* PtDynamicsParameters.h */, + FFFD0c03f7487fa90c03f748 /* PtDynamicsTempBuffers.h */, + FFFD0c03f7b07fa90c03f7b0 /* PtHeightFieldAabbTest.h */, + FFFD0c03f8187fa90c03f818 /* PtPacketSections.h */, + FFFD0c03f8807fa90c03f880 /* PtParticleCell.h */, + FFFD0c03f8e87fa90c03f8e8 /* PtParticleOpcodeCache.h */, + FFFD0c03f9507fa90c03f950 /* PtParticleShapeCpu.h */, + FFFD0c03f9b87fa90c03f9b8 /* PtParticleSystemSimCpu.h */, + FFFD0c03fa207fa90c03fa20 /* PtSpatialHash.h */, + FFFD0c03fa887fa90c03fa88 /* PtSpatialHashHelper.h */, + FFFD0c03faf07fa90c03faf0 /* PtTwoWayData.h */, + FFFD0c03fb587fa90c03fb58 /* PtBatcher.cpp */, + FFFD0c03fbc07fa90c03fbc0 /* PtBodyTransformVault.cpp */, + FFFD0c03fc287fa90c03fc28 /* PtCollision.cpp */, + FFFD0c03fc907fa90c03fc90 /* PtCollisionBox.cpp */, + FFFD0c03fcf87fa90c03fcf8 /* PtCollisionCapsule.cpp */, + FFFD0c03fd607fa90c03fd60 /* PtCollisionConvex.cpp */, + FFFD0c03fdc87fa90c03fdc8 /* PtCollisionMesh.cpp */, + FFFD0c03fe307fa90c03fe30 /* PtCollisionPlane.cpp */, + FFFD0c03fe987fa90c03fe98 /* PtCollisionSphere.cpp */, + FFFD0c03ff007fa90c03ff00 /* PtContextCpu.cpp */, + FFFD0c03ff687fa90c03ff68 /* PtDynamics.cpp */, + FFFD0c03ffd07fa90c03ffd0 /* PtParticleData.cpp */, + FFFD0c0400387fa90c040038 /* PtParticleShapeCpu.cpp */, + FFFD0c0400a07fa90c0400a0 /* PtParticleSystemSimCpu.cpp */, + FFFD0c0401087fa90c040108 /* PtSpatialHash.cpp */, + FFFD0c0401707fa90c040170 /* PtSpatialLocalHash.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBe2f4cec07ffde2f4cec0 /* PxTask */ = { + FFFB0c8f73507fa90c8f7350 /* PxTask */ = { isa = PBXGroup; children = ( - FFFBe2f4d1f07ffde2f4d1f0 /* include */, - FFFBe2f4d2187ffde2f4d218 /* src */, + FFFB0c8f4e907fa90c8f4e90 /* include */, + FFFB0c8f4eb87fa90c8f4eb8 /* src */, ); name = "PxTask"; sourceTree = "<group>"; }; - FFFBe2f4d1f07ffde2f4d1f0 /* include */ = { + FFFB0c8f4e907fa90c8f4e90 /* include */ = { isa = PBXGroup; children = ( - FFFDe2f4e0107ffde2f4e010 /* PxCpuDispatcher.h */, - FFFDe2f4e0787ffde2f4e078 /* PxGpuDispatcher.h */, - FFFDe2f4e0e07ffde2f4e0e0 /* PxGpuTask.h */, - FFFDe2f4e1487ffde2f4e148 /* PxTask.h */, - FFFDe2f4e1b07ffde2f4e1b0 /* PxTaskDefine.h */, - FFFDe2f4e2187ffde2f4e218 /* PxTaskManager.h */, + FFFD0c8f4fb07fa90c8f4fb0 /* PxCpuDispatcher.h */, + FFFD0c8f50187fa90c8f5018 /* PxGpuDispatcher.h */, + FFFD0c8f50807fa90c8f5080 /* PxGpuTask.h */, + FFFD0c8f50e87fa90c8f50e8 /* PxTask.h */, + FFFD0c8f51507fa90c8f5150 /* PxTaskDefine.h */, + FFFD0c8f51b87fa90c8f51b8 /* PxTaskManager.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBe2f4d2187ffde2f4d218 /* src */ = { + FFFB0c8f4eb87fa90c8f4eb8 /* src */ = { isa = PBXGroup; children = ( - FFFDe2f4e2807ffde2f4e280 /* src/TaskManager.cpp */, + FFFD0c8f52b07fa90c8f52b0 /* src/TaskManager.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBe2942d107ffde2942d10 /* PsFastXml */ = { + FFFB0cac6a007fa90cac6a00 /* PsFastXml */ = { isa = PBXGroup; children = ( - FFFBe29432007ffde2943200 /* include */, - FFFBe29432287ffde2943228 /* src */, + FFFB0cac6f107fa90cac6f10 /* include */, + FFFB0cac6f387fa90cac6f38 /* src */, ); name = "PsFastXml"; sourceTree = "<group>"; }; - FFFBe29432007ffde2943200 /* include */ = { + FFFB0cac6f107fa90cac6f10 /* include */ = { isa = PBXGroup; children = ( - FFFDe29433907ffde2943390 /* PsFastXml.h */, + FFFD0cac70a07fa90cac70a0 /* PsFastXml.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBe29432287ffde2943228 /* src */ = { + FFFB0cac6f387fa90cac6f38 /* src */ = { isa = PBXGroup; children = ( - FFFDe29434907ffde2943490 /* PsFastXml.cpp */, + FFFD0cac71a07fa90cac71a0 /* PsFastXml.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; @@ -4991,61 +4991,61 @@ /* End PBXGroup section */ /* Begin PBXNativeTarget section */ - FFFAe29464b07ffde29464b0 /* PhysX */ = { + FFFA0cae9cd07fa90cae9cd0 /* PhysX */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6e29464b07ffde29464b0 /* Build configuration list for PBXNativeTarget "PhysX" */; + buildConfigurationList = FFF60cae9cd07fa90cae9cd0 /* Build configuration list for PBXNativeTarget "PhysX" */; buildPhases = ( - FFF2e29464b07ffde29464b0, - FFF8e29464b07ffde29464b0, - FFFCe29464b07ffde29464b0, + FFF20cae9cd07fa90cae9cd0, + FFF80cae9cd07fa90cae9cd0, + FFFC0cae9cd07fa90cae9cd0, ); buildRules = ( ); dependencies = ( - FFF4e2952c507ffde2952c50, /* LowLevel */ - FFF4e2951e907ffde2951e90, /* LowLevelAABB */ - FFF4e2952b607ffde2952b60, /* LowLevelCloth */ - FFF4e2952b007ffde2952b00, /* LowLevelDynamics */ - FFF4e294f2c07ffde294f2c0, /* LowLevelParticles */ - FFF4e2952bf07ffde2952bf0, /* PhysXCommon */ - FFF4e29467a07ffde29467a0, /* PxFoundation */ - FFF4e29464507ffde2946450, /* PxPvdSDK */ - FFF4e294f3b07ffde294f3b0, /* PxTask */ - FFF4e294f3207ffde294f320, /* SceneQuery */ - FFF4e294f3807ffde294f380, /* SimulationController */ + FFF40caf2e607fa90caf2e60, /* LowLevel */ + FFF40caf32e07fa90caf32e0, /* LowLevelAABB */ + FFF40caefdd07fa90caefdd0, /* LowLevelCloth */ + FFF40caf33407fa90caf3340, /* LowLevelDynamics */ + FFF40caefe307fa90caefe30, /* LowLevelParticles */ + FFF40caee9207fa90caee920, /* PhysXCommon */ + FFF40c8f4e207fa90c8f4e20, /* PxFoundation */ + FFF40cae1a907fa90cae1a90, /* PxPvdSDK */ + FFF40caf3c307fa90caf3c30, /* PxTask */ + FFF40caf3ba07fa90caf3ba0, /* SceneQuery */ + FFF40caf3c007fa90caf3c00, /* SimulationController */ ); name = "PhysX"; productName = "PhysX"; - productReference = FFFDe29464b07ffde29464b0 /* PhysX */; + productReference = FFFD0cae9cd07fa90cae9cd0 /* PhysX */; productType = "com.apple.product-type.library.static"; }; - FFFAe294ef707ffde294ef70 /* PhysXCharacterKinematic */ = { + FFFA0caf3c407fa90caf3c40 /* PhysXCharacterKinematic */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6e294ef707ffde294ef70 /* Build configuration list for PBXNativeTarget "PhysXCharacterKinematic" */; + buildConfigurationList = FFF60caf3c407fa90caf3c40 /* Build configuration list for PBXNativeTarget "PhysXCharacterKinematic" */; buildPhases = ( - FFF2e294ef707ffde294ef70, - FFF8e294ef707ffde294ef70, - FFFCe294ef707ffde294ef70, + FFF20caf3c407fa90caf3c40, + FFF80caf3c407fa90caf3c40, + FFFC0caf3c407fa90caf3c40, ); buildRules = ( ); dependencies = ( - FFF4e2954dc07ffde2954dc0, /* PhysXCommon */ - FFF4e29543507ffde2954350, /* PhysXExtensions */ - FFF4e29555207ffde2955520, /* PxFoundation */ + FFF40caf4d707fa90caf4d70, /* PhysXCommon */ + FFF40caf58707fa90caf5870, /* PhysXExtensions */ + FFF40caf61007fa90caf6100, /* PxFoundation */ ); name = "PhysXCharacterKinematic"; productName = "PhysXCharacterKinematic"; - productReference = FFFDe294ef707ffde294ef70 /* PhysXCharacterKinematic */; + productReference = FFFD0caf3c407fa90caf3c40 /* PhysXCharacterKinematic */; productType = "com.apple.product-type.library.static"; }; - FFFAe29504707ffde2950470 /* PhysXVehicle */ = { + FFFA0caf0ea07fa90caf0ea0 /* PhysXVehicle */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6e29504707ffde2950470 /* Build configuration list for PBXNativeTarget "PhysXVehicle" */; + buildConfigurationList = FFF60caf0ea07fa90caf0ea0 /* Build configuration list for PBXNativeTarget "PhysXVehicle" */; buildPhases = ( - FFF2e29504707ffde2950470, - FFF8e29504707ffde2950470, - FFFCe29504707ffde2950470, + FFF20caf0ea07fa90caf0ea0, + FFF80caf0ea07fa90caf0ea0, + FFFC0caf0ea07fa90caf0ea0, ); buildRules = ( ); @@ -5053,34 +5053,34 @@ ); name = "PhysXVehicle"; productName = "PhysXVehicle"; - productReference = FFFDe29504707ffde2950470 /* PhysXVehicle */; + productReference = FFFD0caf0ea07fa90caf0ea0 /* PhysXVehicle */; productType = "com.apple.product-type.library.static"; }; - FFFAe29617f07ffde29617f0 /* PhysXExtensions */ = { + FFFA0cb04a207fa90cb04a20 /* PhysXExtensions */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6e29617f07ffde29617f0 /* Build configuration list for PBXNativeTarget "PhysXExtensions" */; + buildConfigurationList = FFF60cb04a207fa90cb04a20 /* Build configuration list for PBXNativeTarget "PhysXExtensions" */; buildPhases = ( - FFF2e29617f07ffde29617f0, - FFF8e29617f07ffde29617f0, - FFFCe29617f07ffde29617f0, + FFF20cb04a207fa90cb04a20, + FFF80cb04a207fa90cb04a20, + FFFC0cb04a207fa90cb04a20, ); buildRules = ( ); dependencies = ( - FFF4e295e8007ffde295e800, /* PsFastXml */ + FFF40cb04ea07fa90cb04ea0, /* PsFastXml */ ); name = "PhysXExtensions"; productName = "PhysXExtensions"; - productReference = FFFDe29617f07ffde29617f0 /* PhysXExtensions */; + productReference = FFFD0cb04a207fa90cb04a20 /* PhysXExtensions */; productType = "com.apple.product-type.library.static"; }; - FFFAe450b7207ffde450b720 /* SceneQuery */ = { + FFFA0cb173f07fa90cb173f0 /* SceneQuery */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6e450b7207ffde450b720 /* Build configuration list for PBXNativeTarget "SceneQuery" */; + buildConfigurationList = FFF60cb173f07fa90cb173f0 /* Build configuration list for PBXNativeTarget "SceneQuery" */; buildPhases = ( - FFF2e450b7207ffde450b720, - FFF8e450b7207ffde450b720, - FFFCe450b7207ffde450b720, + FFF20cb173f07fa90cb173f0, + FFF80cb173f07fa90cb173f0, + FFFC0cb173f07fa90cb173f0, ); buildRules = ( ); @@ -5088,16 +5088,16 @@ ); name = "SceneQuery"; productName = "SceneQuery"; - productReference = FFFDe450b7207ffde450b720 /* SceneQuery */; + productReference = FFFD0cb173f07fa90cb173f0 /* SceneQuery */; productType = "com.apple.product-type.library.static"; }; - FFFAe450fbf07ffde450fbf0 /* SimulationController */ = { + FFFA0cb1ba307fa90cb1ba30 /* SimulationController */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6e450fbf07ffde450fbf0 /* Build configuration list for PBXNativeTarget "SimulationController" */; + buildConfigurationList = FFF60cb1ba307fa90cb1ba30 /* Build configuration list for PBXNativeTarget "SimulationController" */; buildPhases = ( - FFF2e450fbf07ffde450fbf0, - FFF8e450fbf07ffde450fbf0, - FFFCe450fbf07ffde450fbf0, + FFF20cb1ba307fa90cb1ba30, + FFF80cb1ba307fa90cb1ba30, + FFFC0cb1ba307fa90cb1ba30, ); buildRules = ( ); @@ -5105,54 +5105,54 @@ ); name = "SimulationController"; productName = "SimulationController"; - productReference = FFFDe450fbf07ffde450fbf0 /* SimulationController */; + productReference = FFFD0cb1ba307fa90cb1ba30 /* SimulationController */; productType = "com.apple.product-type.library.static"; }; - FFFAe2d74eb07ffde2d74eb0 /* PhysXCooking */ = { + FFFA0cb201d07fa90cb201d0 /* PhysXCooking */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6e2d74eb07ffde2d74eb0 /* Build configuration list for PBXNativeTarget "PhysXCooking" */; + buildConfigurationList = FFF60cb201d07fa90cb201d0 /* Build configuration list for PBXNativeTarget "PhysXCooking" */; buildPhases = ( - FFF2e2d74eb07ffde2d74eb0, - FFF8e2d74eb07ffde2d74eb0, - FFFCe2d74eb07ffde2d74eb0, + FFF20cb201d07fa90cb201d0, + FFF80cb201d07fa90cb201d0, + FFFC0cb201d07fa90cb201d0, ); buildRules = ( ); dependencies = ( - FFF4e2d66cf07ffde2d66cf0, /* PhysXCommon */ - FFF4e2d762407ffde2d76240, /* PhysXExtensions */ - FFF4e2d748507ffde2d74850, /* PxFoundation */ + FFF40cb29a207fa90cb29a20, /* PhysXCommon */ + FFF40cb299407fa90cb29940, /* PhysXExtensions */ + FFF40cb251507fa90cb25150, /* PxFoundation */ ); name = "PhysXCooking"; productName = "PhysXCooking"; - productReference = FFFDe2d74eb07ffde2d74eb0 /* PhysXCooking */; + productReference = FFFD0cb201d07fa90cb201d0 /* PhysXCooking */; productType = "com.apple.product-type.library.static"; }; - FFFAe2c17a107ffde2c17a10 /* PhysXCommon */ = { + FFFA0b897c207fa90b897c20 /* PhysXCommon */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6e2c17a107ffde2c17a10 /* Build configuration list for PBXNativeTarget "PhysXCommon" */; + buildConfigurationList = FFF60b897c207fa90b897c20 /* Build configuration list for PBXNativeTarget "PhysXCommon" */; buildPhases = ( - FFF2e2c17a107ffde2c17a10, - FFF8e2c17a107ffde2c17a10, - FFFCe2c17a107ffde2c17a10, + FFF20b897c207fa90b897c20, + FFF80b897c207fa90b897c20, + FFFC0b897c207fa90b897c20, ); buildRules = ( ); dependencies = ( - FFF4e2c08f307ffde2c08f30, /* PxFoundation */ + FFF40b8902307fa90b890230, /* PxFoundation */ ); name = "PhysXCommon"; productName = "PhysXCommon"; - productReference = FFFDe2c17a107ffde2c17a10 /* PhysXCommon */; + productReference = FFFD0b897c207fa90b897c20 /* PhysXCommon */; productType = "com.apple.product-type.library.static"; }; - FFFAe2c0b7d07ffde2c0b7d0 /* PxFoundation */ = { + FFFA0b8818007fa90b881800 /* PxFoundation */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6e2c0b7d07ffde2c0b7d0 /* Build configuration list for PBXNativeTarget "PxFoundation" */; + buildConfigurationList = FFF60b8818007fa90b881800 /* Build configuration list for PBXNativeTarget "PxFoundation" */; buildPhases = ( - FFF2e2c0b7d07ffde2c0b7d0, - FFF8e2c0b7d07ffde2c0b7d0, - FFFCe2c0b7d07ffde2c0b7d0, + FFF20b8818007fa90b881800, + FFF80b8818007fa90b881800, + FFFC0b8818007fa90b881800, ); buildRules = ( ); @@ -5160,34 +5160,34 @@ ); name = "PxFoundation"; productName = "PxFoundation"; - productReference = FFFDe2c0b7d07ffde2c0b7d0 /* PxFoundation */; + productReference = FFFD0b8818007fa90b881800 /* PxFoundation */; productType = "com.apple.product-type.library.static"; }; - FFFAe29691807ffde2969180 /* PxPvdSDK */ = { + FFFA0bc33a807fa90bc33a80 /* PxPvdSDK */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6e29691807ffde2969180 /* Build configuration list for PBXNativeTarget "PxPvdSDK" */; + buildConfigurationList = FFF60bc33a807fa90bc33a80 /* Build configuration list for PBXNativeTarget "PxPvdSDK" */; buildPhases = ( - FFF2e29691807ffde2969180, - FFF8e29691807ffde2969180, - FFFCe29691807ffde2969180, + FFF20bc33a807fa90bc33a80, + FFF80bc33a807fa90bc33a80, + FFFC0bc33a807fa90bc33a80, ); buildRules = ( ); dependencies = ( - FFF4e29150b07ffde29150b0, /* PxFoundation */ + FFF40bc357f07fa90bc357f0, /* PxFoundation */ ); name = "PxPvdSDK"; productName = "PxPvdSDK"; - productReference = FFFDe29691807ffde2969180 /* PxPvdSDK */; + productReference = FFFD0bc33a807fa90bc33a80 /* PxPvdSDK */; productType = "com.apple.product-type.library.static"; }; - FFFAe2f1a6b07ffde2f1a6b0 /* LowLevel */ = { + FFFA0bc50de07fa90bc50de0 /* LowLevel */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6e2f1a6b07ffde2f1a6b0 /* Build configuration list for PBXNativeTarget "LowLevel" */; + buildConfigurationList = FFF60bc50de07fa90bc50de0 /* Build configuration list for PBXNativeTarget "LowLevel" */; buildPhases = ( - FFF2e2f1a6b07ffde2f1a6b0, - FFF8e2f1a6b07ffde2f1a6b0, - FFFCe2f1a6b07ffde2f1a6b0, + FFF20bc50de07fa90bc50de0, + FFF80bc50de07fa90bc50de0, + FFFC0bc50de07fa90bc50de0, ); buildRules = ( ); @@ -5195,16 +5195,16 @@ ); name = "LowLevel"; productName = "LowLevel"; - productReference = FFFDe2f1a6b07ffde2f1a6b0 /* LowLevel */; + productReference = FFFD0bc50de07fa90bc50de0 /* LowLevel */; productType = "com.apple.product-type.library.static"; }; - FFFAe2d334507ffde2d33450 /* LowLevelAABB */ = { + FFFA0bb097007fa90bb09700 /* LowLevelAABB */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6e2d334507ffde2d33450 /* Build configuration list for PBXNativeTarget "LowLevelAABB" */; + buildConfigurationList = FFF60bb097007fa90bb09700 /* Build configuration list for PBXNativeTarget "LowLevelAABB" */; buildPhases = ( - FFF2e2d334507ffde2d33450, - FFF8e2d334507ffde2d33450, - FFFCe2d334507ffde2d33450, + FFF20bb097007fa90bb09700, + FFF80bb097007fa90bb09700, + FFFC0bb097007fa90bb09700, ); buildRules = ( ); @@ -5212,16 +5212,16 @@ ); name = "LowLevelAABB"; productName = "LowLevelAABB"; - productReference = FFFDe2d334507ffde2d33450 /* LowLevelAABB */; + productReference = FFFD0bb097007fa90bb09700 /* LowLevelAABB */; productType = "com.apple.product-type.library.static"; }; - FFFAe2d544f07ffde2d544f0 /* LowLevelDynamics */ = { + FFFA0bc6a7707fa90bc6a770 /* LowLevelDynamics */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6e2d544f07ffde2d544f0 /* Build configuration list for PBXNativeTarget "LowLevelDynamics" */; + buildConfigurationList = FFF60bc6a7707fa90bc6a770 /* Build configuration list for PBXNativeTarget "LowLevelDynamics" */; buildPhases = ( - FFF2e2d544f07ffde2d544f0, - FFF8e2d544f07ffde2d544f0, - FFFCe2d544f07ffde2d544f0, + FFF20bc6a7707fa90bc6a770, + FFF80bc6a7707fa90bc6a770, + FFFC0bc6a7707fa90bc6a770, ); buildRules = ( ); @@ -5229,16 +5229,16 @@ ); name = "LowLevelDynamics"; productName = "LowLevelDynamics"; - productReference = FFFDe2d544f07ffde2d544f0 /* LowLevelDynamics */; + productReference = FFFD0bc6a7707fa90bc6a770 /* LowLevelDynamics */; productType = "com.apple.product-type.library.static"; }; - FFFAe292cb407ffde292cb40 /* LowLevelCloth */ = { + FFFA0be0eb007fa90be0eb00 /* LowLevelCloth */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6e292cb407ffde292cb40 /* Build configuration list for PBXNativeTarget "LowLevelCloth" */; + buildConfigurationList = FFF60be0eb007fa90be0eb00 /* Build configuration list for PBXNativeTarget "LowLevelCloth" */; buildPhases = ( - FFF2e292cb407ffde292cb40, - FFF8e292cb407ffde292cb40, - FFFCe292cb407ffde292cb40, + FFF20be0eb007fa90be0eb00, + FFF80be0eb007fa90be0eb00, + FFFC0be0eb007fa90be0eb00, ); buildRules = ( ); @@ -5246,16 +5246,16 @@ ); name = "LowLevelCloth"; productName = "LowLevelCloth"; - productReference = FFFDe292cb407ffde292cb40 /* LowLevelCloth */; + productReference = FFFD0be0eb007fa90be0eb00 /* LowLevelCloth */; productType = "com.apple.product-type.library.static"; }; - FFFAe1484d707ffde1484d70 /* LowLevelParticles */ = { + FFFA0bc8f2607fa90bc8f260 /* LowLevelParticles */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6e1484d707ffde1484d70 /* Build configuration list for PBXNativeTarget "LowLevelParticles" */; + buildConfigurationList = FFF60bc8f2607fa90bc8f260 /* Build configuration list for PBXNativeTarget "LowLevelParticles" */; buildPhases = ( - FFF2e1484d707ffde1484d70, - FFF8e1484d707ffde1484d70, - FFFCe1484d707ffde1484d70, + FFF20bc8f2607fa90bc8f260, + FFF80bc8f2607fa90bc8f260, + FFFC0bc8f2607fa90bc8f260, ); buildRules = ( ); @@ -5263,16 +5263,16 @@ ); name = "LowLevelParticles"; productName = "LowLevelParticles"; - productReference = FFFDe1484d707ffde1484d70 /* LowLevelParticles */; + productReference = FFFD0bc8f2607fa90bc8f260 /* LowLevelParticles */; productType = "com.apple.product-type.library.static"; }; - FFFAe2f4cec07ffde2f4cec0 /* PxTask */ = { + FFFA0c8f73507fa90c8f7350 /* PxTask */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6e2f4cec07ffde2f4cec0 /* Build configuration list for PBXNativeTarget "PxTask" */; + buildConfigurationList = FFF60c8f73507fa90c8f7350 /* Build configuration list for PBXNativeTarget "PxTask" */; buildPhases = ( - FFF2e2f4cec07ffde2f4cec0, - FFF8e2f4cec07ffde2f4cec0, - FFFCe2f4cec07ffde2f4cec0, + FFF20c8f73507fa90c8f7350, + FFF80c8f73507fa90c8f7350, + FFFC0c8f73507fa90c8f7350, ); buildRules = ( ); @@ -5280,16 +5280,16 @@ ); name = "PxTask"; productName = "PxTask"; - productReference = FFFDe2f4cec07ffde2f4cec0 /* PxTask */; + productReference = FFFD0c8f73507fa90c8f7350 /* PxTask */; productType = "com.apple.product-type.library.static"; }; - FFFAe2942d107ffde2942d10 /* PsFastXml */ = { + FFFA0cac6a007fa90cac6a00 /* PsFastXml */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6e2942d107ffde2942d10 /* Build configuration list for PBXNativeTarget "PsFastXml" */; + buildConfigurationList = FFF60cac6a007fa90cac6a00 /* Build configuration list for PBXNativeTarget "PsFastXml" */; buildPhases = ( - FFF2e2942d107ffde2942d10, - FFF8e2942d107ffde2942d10, - FFFCe2942d107ffde2942d10, + FFF20cac6a007fa90cac6a00, + FFF80cac6a007fa90cac6a00, + FFFC0cac6a007fa90cac6a00, ); buildRules = ( ); @@ -5297,213 +5297,213 @@ ); name = "PsFastXml"; productName = "PsFastXml"; - productReference = FFFDe2942d107ffde2942d10 /* PsFastXml */; + productReference = FFFD0cac6a007fa90cac6a00 /* PsFastXml */; productType = "com.apple.product-type.library.static"; }; /* End PBXNativeTarget section */ /* Begin XCConfigurationList section */ - FFF6e29464b07ffde29464b0 = { + FFF60cae9cd07fa90cae9cd0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7e382b6007ffde382b600, - FFF7e382bcf07ffde382bcf0, - FFF7e382c3e07ffde382c3e0, - FFF7e382cad07ffde382cad0, + FFF70c0b28007fa90c0b2800, + FFF70c0b2ef07fa90c0b2ef0, + FFF70c0b35e07fa90c0b35e0, + FFF70c0b3cd07fa90c0b3cd0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "release"; }; - FFF6e294ef707ffde294ef70 = { + FFF60caf3c407fa90caf3c40 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7e382d2007ffde382d200, - FFF7e382d8f07ffde382d8f0, - FFF7e382dfe07ffde382dfe0, - FFF7e382e6d07ffde382e6d0, + FFF70c0b44007fa90c0b4400, + FFF70c0b4af07fa90c0b4af0, + FFF70c0b51e07fa90c0b51e0, + FFF70c0b58d07fa90c0b58d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6e29504707ffde2950470 = { + FFF60caf0ea07fa90caf0ea0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7e382ee007ffde382ee00, - FFF7e382f4f07ffde382f4f0, - FFF7e382fbe07ffde382fbe0, - FFF7e38302d07ffde38302d0, + FFF70c0b60007fa90c0b6000, + FFF70c0b66f07fa90c0b66f0, + FFF70c0b6de07fa90c0b6de0, + FFF70c0b74d07fa90c0b74d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6e29617f07ffde29617f0 = { + FFF60cb04a207fa90cb04a20 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7e3830a007ffde3830a00, - FFF7e38310f07ffde38310f0, - FFF7e38317e07ffde38317e0, - FFF7e3831ed07ffde3831ed0, + FFF70c0b7c007fa90c0b7c00, + FFF70c0b82f07fa90c0b82f0, + FFF70c0b89e07fa90c0b89e0, + FFF70c0b90d07fa90c0b90d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6e450b7207ffde450b720 = { + FFF60cb173f07fa90cb173f0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7e38326007ffde3832600, - FFF7e3832cf07ffde3832cf0, - FFF7e38333e07ffde38333e0, - FFF7e3833ad07ffde3833ad0, + FFF70c0b98007fa90c0b9800, + FFF70c0b9ef07fa90c0b9ef0, + FFF70c0ba5e07fa90c0ba5e0, + FFF70c0bacd07fa90c0bacd0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6e450fbf07ffde450fbf0 = { + FFF60cb1ba307fa90cb1ba30 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7e38342007ffde3834200, - FFF7e38348f07ffde38348f0, - FFF7e3834fe07ffde3834fe0, - FFF7e38356d07ffde38356d0, + FFF70c0bb4007fa90c0bb400, + FFF70c0bbaf07fa90c0bbaf0, + FFF70c0bc1e07fa90c0bc1e0, + FFF70c0bc8d07fa90c0bc8d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6e2d74eb07ffde2d74eb0 = { + FFF60cb201d07fa90cb201d0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7e3835e007ffde3835e00, - FFF7e38364f07ffde38364f0, - FFF7e3836be07ffde3836be0, - FFF7e38372d07ffde38372d0, + FFF70c0bd0007fa90c0bd000, + FFF70c0bd6f07fa90c0bd6f0, + FFF70c0bdde07fa90c0bdde0, + FFF70c0be4d07fa90c0be4d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "release"; }; - FFF6e2c17a107ffde2c17a10 = { + FFF60b897c207fa90b897c20 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7e38110007ffde3811000, - FFF7e38116f07ffde38116f0, - FFF7e3811de07ffde3811de0, - FFF7e38124d07ffde38124d0, + FFF70c0110007fa90c011000, + FFF70c0116f07fa90c0116f0, + FFF70c011de07fa90c011de0, + FFF70c0124d07fa90c0124d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "release"; }; - FFF6e2c0b7d07ffde2c0b7d0 = { + FFF60b8818007fa90b881800 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7e30188007ffde3018800, - FFF7e3018ef07ffde3018ef0, - FFF7e30195e07ffde30195e0, - FFF7e3019cd07ffde3019cd0, + FFF70b1a24007fa90b1a2400, + FFF70b1a2af07fa90b1a2af0, + FFF70b1a31e07fa90b1a31e0, + FFF70b1a38d07fa90b1a38d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6e29691807ffde2969180 = { + FFF60bc33a807fa90bc33a80 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7e21784007ffde2178400, - FFF7e2178af07ffde2178af0, - FFF7e21791e07ffde21791e0, - FFF7e21798d07ffde21798d0, + FFF70c01a0007fa90c01a000, + FFF70c01a6f07fa90c01a6f0, + FFF70c01ade07fa90c01ade0, + FFF70c01b4d07fa90c01b4d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6e2f1a6b07ffde2f1a6b0 = { + FFF60bc50de07fa90bc50de0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7e304f0007ffde304f000, - FFF7e304f6f07ffde304f6f0, - FFF7e304fde07ffde304fde0, - FFF7e30504d07ffde30504d0, + FFF70c02ca007fa90c02ca00, + FFF70c02d0f07fa90c02d0f0, + FFF70c02d7e07fa90c02d7e0, + FFF70c02ded07fa90c02ded0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6e2d334507ffde2d33450 = { + FFF60bb097007fa90bb09700 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7e381a0007ffde381a000, - FFF7e381a6f07ffde381a6f0, - FFF7e381ade07ffde381ade0, - FFF7e381b4d07ffde381b4d0, + FFF70b1d18007fa90b1d1800, + FFF70b1d1ef07fa90b1d1ef0, + FFF70b1d25e07fa90b1d25e0, + FFF70b1d2cd07fa90b1d2cd0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6e2d544f07ffde2d544f0 = { + FFF60bc6a7707fa90bc6a770 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7e38252007ffde3825200, - FFF7e38258f07ffde38258f0, - FFF7e3825fe07ffde3825fe0, - FFF7e38266d07ffde38266d0, + FFF70c0366007fa90c036600, + FFF70c036cf07fa90c036cf0, + FFF70c0373e07fa90c0373e0, + FFF70c037ad07fa90c037ad0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6e292cb407ffde292cb40 = { + FFF60be0eb007fa90be0eb00 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7e21864007ffde2186400, - FFF7e2186af07ffde2186af0, - FFF7e21871e07ffde21871e0, - FFF7e21878d07ffde21878d0, + FFF70b1db8007fa90b1db800, + FFF70b1dbef07fa90b1dbef0, + FFF70b1dc5e07fa90b1dc5e0, + FFF70b1dccd07fa90b1dccd0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6e1484d707ffde1484d70 = { + FFF60bc8f2607fa90bc8f260 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7e1823e007ffde1823e00, - FFF7e18244f07ffde18244f0, - FFF7e1824be07ffde1824be0, - FFF7e18252d07ffde18252d0, + FFF70c040c007fa90c040c00, + FFF70c0412f07fa90c0412f0, + FFF70c0419e07fa90c0419e0, + FFF70c0420d07fa90c0420d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6e2f4cec07ffde2f4cec0 = { + FFF60c8f73507fa90c8f7350 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7e30562007ffde3056200, - FFF7e30568f07ffde30568f0, - FFF7e3056fe07ffde3056fe0, - FFF7e30576d07ffde30576d0, + FFF70c0670007fa90c067000, + FFF70c0676f07fa90c0676f0, + FFF70c067de07fa90c067de0, + FFF70c0684d07fa90c0684d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6e2942d107ffde2942d10 = { + FFF60cac6a007fa90cac6a00 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7e218c6007ffde218c600, - FFF7e218ccf07ffde218ccf0, - FFF7e218d3e07ffde218d3e0, - FFF7e218dad07ffde218dad0, + FFF70c08ce007fa90c08ce00, + FFF70c08d4f07fa90c08d4f0, + FFF70c08dbe07fa90c08dbe0, + FFF70c08e2d07fa90c08e2d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6e170df007ffde170df00 = { + FFF60ac82b107fa90ac82b10 = { isa = XCConfigurationList; buildConfigurations = ( - FFF3e382b6007ffde382b600 /* release */, - FFF3e382bcf07ffde382bcf0 /* debug */, - FFF3e382c3e07ffde382c3e0 /* checked */, - FFF3e382cad07ffde382cad0 /* profile */, + FFF30c0b28007fa90c0b2800 /* release */, + FFF30c0b2ef07fa90c0b2ef0 /* debug */, + FFF30c0b35e07fa90c0b35e0 /* checked */, + FFF30c0b3cd07fa90c0b3cd0 /* profile */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "release"; }; /* End XCConfigurationList section */ /* Begin XCBuildConfiguration section */ - FFF7e382b6007ffde382b600 /* release */ = { + FFF70c0b28007fa90c0b2800 /* 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; @@ -5518,7 +5518,7 @@ "-lLowLevel", "-lLowLevelAABB", "-lLowLevelCloth", "-lLowLevelDynamics", "-lLowLevelParticles", "-lPhysX3Common", "-lPxFoundation", "-lPxPvdSDK", "-lPxTask", "-lSceneQuery", "-lSimulationController", ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../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/particles", "../../../Include/cloth", "../../../Include", "../../Common/src", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../LowLevel/API/include", "../../LowLevel/software/include", "../../LowLevel/common/include/pipeline", "../../LowLevelAABB/include", "../../LowLevelDynamics/include", "../../LowLevelDynamics/src", "../../LowLevelParticles/include", "../../PhysX/src", "../../PhysX/src/buffering", "../../PhysX/src/particles", "../../PhysX/src/cloth", "../../SimulationController/include", "../../SimulationController/src", "../../SimulationController/src/particles", "../../PhysXCooking/src", "../../PhysXCooking/src/mesh", "../../PhysXCooking/src/convex", "../../SceneQuery/include", "../../PhysXMetaData/core/include", @@ -5533,7 +5533,7 @@ }; name = "release"; }; - FFF7e382bcf07ffde382bcf0 /* debug */ = { + FFF70c0b2ef07fa90c0b2ef0 /* 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; @@ -5548,7 +5548,7 @@ "-lLowLevelDEBUG", "-lLowLevelAABBDEBUG", "-lLowLevelClothDEBUG", "-lLowLevelDynamicsDEBUG", "-lLowLevelParticlesDEBUG", "-lPhysX3CommonDEBUG", "-lPxFoundationDEBUG", "-lPxPvdSDKDEBUG", "-lPxTaskDEBUG", "-lSceneQueryDEBUG", "-lSimulationControllerDEBUG", ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O0", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0", ); HEADER_SEARCH_PATHS = ( "../../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/particles", "../../../Include/cloth", "../../../Include", "../../Common/src", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../LowLevel/API/include", "../../LowLevel/software/include", "../../LowLevel/common/include/pipeline", "../../LowLevelAABB/include", "../../LowLevelDynamics/include", "../../LowLevelDynamics/src", "../../LowLevelParticles/include", "../../PhysX/src", "../../PhysX/src/buffering", "../../PhysX/src/particles", "../../PhysX/src/cloth", "../../SimulationController/include", "../../SimulationController/src", "../../SimulationController/src/particles", "../../PhysXCooking/src", "../../PhysXCooking/src/mesh", "../../PhysXCooking/src/convex", "../../SceneQuery/include", "../../PhysXMetaData/core/include", @@ -5563,7 +5563,7 @@ }; name = "debug"; }; - FFF7e382c3e07ffde382c3e0 /* checked */ = { + FFF70c0b35e07fa90c0b35e0 /* 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; @@ -5578,7 +5578,7 @@ "-lLowLevelCHECKED", "-lLowLevelAABBCHECKED", "-lLowLevelClothCHECKED", "-lLowLevelDynamicsCHECKED", "-lLowLevelParticlesCHECKED", "-lPhysX3CommonCHECKED", "-lPxFoundationCHECKED", "-lPxPvdSDKCHECKED", "-lPxTaskCHECKED", "-lSceneQueryCHECKED", "-lSimulationControllerCHECKED", ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../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/particles", "../../../Include/cloth", "../../../Include", "../../Common/src", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../LowLevel/API/include", "../../LowLevel/software/include", "../../LowLevel/common/include/pipeline", "../../LowLevelAABB/include", "../../LowLevelDynamics/include", "../../LowLevelDynamics/src", "../../LowLevelParticles/include", "../../PhysX/src", "../../PhysX/src/buffering", "../../PhysX/src/particles", "../../PhysX/src/cloth", "../../SimulationController/include", "../../SimulationController/src", "../../SimulationController/src/particles", "../../PhysXCooking/src", "../../PhysXCooking/src/mesh", "../../PhysXCooking/src/convex", "../../SceneQuery/include", "../../PhysXMetaData/core/include", @@ -5593,7 +5593,7 @@ }; name = "checked"; }; - FFF7e382cad07ffde382cad0 /* profile */ = { + FFF70c0b3cd07fa90c0b3cd0 /* 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; @@ -5608,7 +5608,7 @@ "-lLowLevelPROFILE", "-lLowLevelAABBPROFILE", "-lLowLevelClothPROFILE", "-lLowLevelDynamicsPROFILE", "-lLowLevelParticlesPROFILE", "-lPhysX3CommonPROFILE", "-lPxFoundationPROFILE", "-lPxPvdSDKPROFILE", "-lPxTaskPROFILE", "-lSceneQueryPROFILE", "-lSimulationControllerPROFILE", ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../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/particles", "../../../Include/cloth", "../../../Include", "../../Common/src", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../LowLevel/API/include", "../../LowLevel/software/include", "../../LowLevel/common/include/pipeline", "../../LowLevelAABB/include", "../../LowLevelDynamics/include", "../../LowLevelDynamics/src", "../../LowLevelParticles/include", "../../PhysX/src", "../../PhysX/src/buffering", "../../PhysX/src/particles", "../../PhysX/src/cloth", "../../SimulationController/include", "../../SimulationController/src", "../../SimulationController/src/particles", "../../PhysXCooking/src", "../../PhysXCooking/src/mesh", "../../PhysXCooking/src/convex", "../../SceneQuery/include", "../../PhysXMetaData/core/include", @@ -5623,7 +5623,7 @@ }; name = "profile"; }; - FFF7e382d2007ffde382d200 /* debug */ = { + FFF70c0b44007fa90c0b4400 /* 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; @@ -5638,7 +5638,7 @@ "-lPhysX3CommonDEBUG", "-lPhysX3ExtensionsDEBUG", "-lPxFoundationDEBUG", ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O0", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/characterkinematic", "../../../Include/common", "../../../Include/geometry", "../../../Include/extensions", "../../../Include", "../../GeomUtils/headers", "../../Common/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", @@ -5653,7 +5653,7 @@ }; name = "debug"; }; - FFF7e382d8f07ffde382d8f0 /* checked */ = { + FFF70c0b4af07fa90c0b4af0 /* 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; @@ -5668,7 +5668,7 @@ "-lPhysX3CommonCHECKED", "-lPhysX3ExtensionsCHECKED", "-lPxFoundationCHECKED", ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/characterkinematic", "../../../Include/common", "../../../Include/geometry", "../../../Include/extensions", "../../../Include", "../../GeomUtils/headers", "../../Common/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", @@ -5683,7 +5683,7 @@ }; name = "checked"; }; - FFF7e382dfe07ffde382dfe0 /* profile */ = { + FFF70c0b51e07fa90c0b51e0 /* 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; @@ -5698,7 +5698,7 @@ "-lPhysX3CommonPROFILE", "-lPhysX3ExtensionsPROFILE", "-lPxFoundationPROFILE", ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/characterkinematic", "../../../Include/common", "../../../Include/geometry", "../../../Include/extensions", "../../../Include", "../../GeomUtils/headers", "../../Common/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", @@ -5713,7 +5713,7 @@ }; name = "profile"; }; - FFF7e382e6d07ffde382e6d0 /* release */ = { + FFF70c0b58d07fa90c0b58d0 /* 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; @@ -5728,7 +5728,7 @@ "-lPhysX3Common", "-lPhysX3Extensions", "-lPxFoundation", ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/characterkinematic", "../../../Include/common", "../../../Include/geometry", "../../../Include/extensions", "../../../Include", "../../GeomUtils/headers", "../../Common/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", @@ -5743,7 +5743,7 @@ }; name = "release"; }; - FFF7e382ee007ffde382ee00 /* debug */ = { + FFF70c0b60007fa90c0b6000 /* 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; @@ -5758,7 +5758,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O0", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/vehicle", "../../../Include/common", "../../../Include/geometry", "../../../Include/extensions", "../../../Include/cloth", "../../../Include", "../../../Include/pvd", "../../../Include/physxprofilesdk", "../../Common/src", "../../PhysXVehicle/src", "../../PhysXMetaData/extensions/include", "../../PhysXExtensions/src/serialization/Xml", "../../PhysXMetaData/core/include", "../../PhysXVehicle/src/PhysXMetaData/include", "../../PvdSDK/src", @@ -5773,7 +5773,7 @@ }; name = "debug"; }; - FFF7e382f4f07ffde382f4f0 /* checked */ = { + FFF70c0b66f07fa90c0b66f0 /* 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; @@ -5788,7 +5788,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/vehicle", "../../../Include/common", "../../../Include/geometry", "../../../Include/extensions", "../../../Include/cloth", "../../../Include", "../../../Include/pvd", "../../../Include/physxprofilesdk", "../../Common/src", "../../PhysXVehicle/src", "../../PhysXMetaData/extensions/include", "../../PhysXExtensions/src/serialization/Xml", "../../PhysXMetaData/core/include", "../../PhysXVehicle/src/PhysXMetaData/include", "../../PvdSDK/src", @@ -5803,7 +5803,7 @@ }; name = "checked"; }; - FFF7e382fbe07ffde382fbe0 /* profile */ = { + FFF70c0b6de07fa90c0b6de0 /* 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; @@ -5818,7 +5818,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/vehicle", "../../../Include/common", "../../../Include/geometry", "../../../Include/extensions", "../../../Include/cloth", "../../../Include", "../../../Include/pvd", "../../../Include/physxprofilesdk", "../../Common/src", "../../PhysXVehicle/src", "../../PhysXMetaData/extensions/include", "../../PhysXExtensions/src/serialization/Xml", "../../PhysXMetaData/core/include", "../../PhysXVehicle/src/PhysXMetaData/include", "../../PvdSDK/src", @@ -5833,7 +5833,7 @@ }; name = "profile"; }; - FFF7e38302d07ffde38302d0 /* release */ = { + FFF70c0b74d07fa90c0b74d0 /* 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; @@ -5848,7 +5848,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/vehicle", "../../../Include/common", "../../../Include/geometry", "../../../Include/extensions", "../../../Include/cloth", "../../../Include", "../../../Include/pvd", "../../../Include/physxprofilesdk", "../../Common/src", "../../PhysXVehicle/src", "../../PhysXMetaData/extensions/include", "../../PhysXExtensions/src/serialization/Xml", "../../PhysXMetaData/core/include", "../../PhysXVehicle/src/PhysXMetaData/include", "../../PvdSDK/src", @@ -5863,7 +5863,7 @@ }; name = "release"; }; - FFF7e3830a007ffde3830a00 /* debug */ = { + FFF70c0b7c007fa90c0b7c00 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -5871,14 +5871,14 @@ ALWAYS_SEARCH_USER_PATHS = NO; USE_HEADERMAP = NO; GCC_PREPROCESSOR_DEFINITIONS = ( - "PX_BUILD_NUMBER=21749494", "PX_PHYSX_STATIC_LIB", "_DEBUG", "PX_DEBUG=1", "PX_CHECKED=1", "PX_SUPPORT_PVD=1", + "PX_BUILD_NUMBER=22017532", "PX_PHYSX_STATIC_LIB", "_DEBUG", "PX_DEBUG=1", "PX_CHECKED=1", "PX_SUPPORT_PVD=1", ); GCC_ENABLE_EXCEPTIONS = NO; OTHER_LDFLAGS = ( "-lPsFastXmlDEBUG", ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O0", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0", ); HEADER_SEARCH_PATHS = ( "../../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", @@ -5893,7 +5893,7 @@ }; name = "debug"; }; - FFF7e38310f07ffde38310f0 /* checked */ = { + FFF70c0b82f07fa90c0b82f0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -5901,14 +5901,14 @@ ALWAYS_SEARCH_USER_PATHS = NO; USE_HEADERMAP = NO; GCC_PREPROCESSOR_DEFINITIONS = ( - "PX_BUILD_NUMBER=21749494", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_CHECKED=1", "PX_SUPPORT_PVD=1", + "PX_BUILD_NUMBER=22017532", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_CHECKED=1", "PX_SUPPORT_PVD=1", ); GCC_ENABLE_EXCEPTIONS = NO; OTHER_LDFLAGS = ( "-lPsFastXmlCHECKED", ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../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", @@ -5923,7 +5923,7 @@ }; name = "checked"; }; - FFF7e38317e07ffde38317e0 /* profile */ = { + FFF70c0b89e07fa90c0b89e0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -5931,14 +5931,14 @@ ALWAYS_SEARCH_USER_PATHS = NO; USE_HEADERMAP = NO; GCC_PREPROCESSOR_DEFINITIONS = ( - "PX_BUILD_NUMBER=21749494", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_PROFILE=1", "PX_SUPPORT_PVD=1", + "PX_BUILD_NUMBER=22017532", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_PROFILE=1", "PX_SUPPORT_PVD=1", ); GCC_ENABLE_EXCEPTIONS = NO; OTHER_LDFLAGS = ( "-lPsFastXmlPROFILE", ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../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", @@ -5953,7 +5953,7 @@ }; name = "profile"; }; - FFF7e3831ed07ffde3831ed0 /* release */ = { + FFF70c0b90d07fa90c0b90d0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -5961,14 +5961,14 @@ ALWAYS_SEARCH_USER_PATHS = NO; USE_HEADERMAP = NO; GCC_PREPROCESSOR_DEFINITIONS = ( - "PX_BUILD_NUMBER=21749494", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_SUPPORT_PVD=0", + "PX_BUILD_NUMBER=22017532", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_SUPPORT_PVD=0", ); GCC_ENABLE_EXCEPTIONS = NO; OTHER_LDFLAGS = ( "-lPsFastXml", ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../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", @@ -5983,7 +5983,7 @@ }; name = "release"; }; - FFF7e38326007ffde3832600 /* debug */ = { + FFF70c0b98007fa90c0b9800 /* 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; @@ -5998,7 +5998,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O0", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0", ); HEADER_SEARCH_PATHS = ( "../../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", "../../Common/src", "../../Common/src/unix", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../SceneQuery/include", "../../SimulationController/include", "../../LowLevel/API/include", "../../PhysX/src", "../../PhysX/src/buffering", @@ -6013,7 +6013,7 @@ }; name = "debug"; }; - FFF7e3832cf07ffde3832cf0 /* checked */ = { + FFF70c0b9ef07fa90c0b9ef0 /* 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; @@ -6028,7 +6028,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../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", "../../Common/src", "../../Common/src/unix", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../SceneQuery/include", "../../SimulationController/include", "../../LowLevel/API/include", "../../PhysX/src", "../../PhysX/src/buffering", @@ -6043,7 +6043,7 @@ }; name = "checked"; }; - FFF7e38333e07ffde38333e0 /* profile */ = { + FFF70c0ba5e07fa90c0ba5e0 /* 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; @@ -6058,7 +6058,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../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", "../../Common/src", "../../Common/src/unix", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../SceneQuery/include", "../../SimulationController/include", "../../LowLevel/API/include", "../../PhysX/src", "../../PhysX/src/buffering", @@ -6073,7 +6073,7 @@ }; name = "profile"; }; - FFF7e3833ad07ffde3833ad0 /* release */ = { + FFF70c0bacd07fa90c0bacd0 /* 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; @@ -6088,7 +6088,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../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", "../../Common/src", "../../Common/src/unix", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../SceneQuery/include", "../../SimulationController/include", "../../LowLevel/API/include", "../../PhysX/src", "../../PhysX/src/buffering", @@ -6103,7 +6103,7 @@ }; name = "release"; }; - FFF7e38342007ffde3834200 /* debug */ = { + FFF70c0bb4007fa90c0bb400 /* 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; @@ -6118,7 +6118,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O0", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0", ); HEADER_SEARCH_PATHS = ( "../../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/particles", "../../../Include/cloth", "../../../Include", "../../Common/src", "../../Common/src/unix", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../SimulationController/include", "../../SimulationController/src", "../../SimulationController/src/particles", "../../SimulationController/src/cloth", "../../LowLevel/unix/include", "../../LowLevel/API/include", "../../LowLevel/software/include", "../../LowLevel/common/include/math", "../../LowLevel/common/include/utils", "../../LowLevel/common/include/collision", "../../LowLevel/common/include/pipeline", "../../LowLevelCloth/include", "../../LowLevelAABB/include", "../../LowLevelDynamics/include", "../../LowLevelParticles/include", @@ -6133,7 +6133,7 @@ }; name = "debug"; }; - FFF7e38348f07ffde38348f0 /* checked */ = { + FFF70c0bbaf07fa90c0bbaf0 /* 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; @@ -6148,7 +6148,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../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/particles", "../../../Include/cloth", "../../../Include", "../../Common/src", "../../Common/src/unix", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../SimulationController/include", "../../SimulationController/src", "../../SimulationController/src/particles", "../../SimulationController/src/cloth", "../../LowLevel/unix/include", "../../LowLevel/API/include", "../../LowLevel/software/include", "../../LowLevel/common/include/math", "../../LowLevel/common/include/utils", "../../LowLevel/common/include/collision", "../../LowLevel/common/include/pipeline", "../../LowLevelCloth/include", "../../LowLevelAABB/include", "../../LowLevelDynamics/include", "../../LowLevelParticles/include", @@ -6163,7 +6163,7 @@ }; name = "checked"; }; - FFF7e3834fe07ffde3834fe0 /* profile */ = { + FFF70c0bc1e07fa90c0bc1e0 /* 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; @@ -6178,7 +6178,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../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/particles", "../../../Include/cloth", "../../../Include", "../../Common/src", "../../Common/src/unix", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../SimulationController/include", "../../SimulationController/src", "../../SimulationController/src/particles", "../../SimulationController/src/cloth", "../../LowLevel/unix/include", "../../LowLevel/API/include", "../../LowLevel/software/include", "../../LowLevel/common/include/math", "../../LowLevel/common/include/utils", "../../LowLevel/common/include/collision", "../../LowLevel/common/include/pipeline", "../../LowLevelCloth/include", "../../LowLevelAABB/include", "../../LowLevelDynamics/include", "../../LowLevelParticles/include", @@ -6193,7 +6193,7 @@ }; name = "profile"; }; - FFF7e38356d07ffde38356d0 /* release */ = { + FFF70c0bc8d07fa90c0bc8d0 /* 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; @@ -6208,7 +6208,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../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/particles", "../../../Include/cloth", "../../../Include", "../../Common/src", "../../Common/src/unix", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../SimulationController/include", "../../SimulationController/src", "../../SimulationController/src/particles", "../../SimulationController/src/cloth", "../../LowLevel/unix/include", "../../LowLevel/API/include", "../../LowLevel/software/include", "../../LowLevel/common/include/math", "../../LowLevel/common/include/utils", "../../LowLevel/common/include/collision", "../../LowLevel/common/include/pipeline", "../../LowLevelCloth/include", "../../LowLevelAABB/include", "../../LowLevelDynamics/include", "../../LowLevelParticles/include", @@ -6223,7 +6223,7 @@ }; name = "release"; }; - FFF7e3835e007ffde3835e00 /* release */ = { + FFF70c0bd0007fa90c0bd000 /* 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; @@ -6238,7 +6238,7 @@ "-lPhysX3Common", "-lPhysX3Extensions", "-lPxFoundation", ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../../Include/cloth", "../../../Include/cooking", "../../../Include", "../../Common/src", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../PhysXCooking/src", "../../PhysXCooking/src/mesh", "../../PhysXCooking/src/convex", "../../PhysXExtensions/src", "../../PhysXGpu/include", @@ -6253,7 +6253,7 @@ }; name = "release"; }; - FFF7e38364f07ffde38364f0 /* debug */ = { + FFF70c0bd6f07fa90c0bd6f0 /* 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; @@ -6268,7 +6268,7 @@ "-lPhysX3CommonDEBUG", "-lPhysX3ExtensionsDEBUG", "-lPxFoundationDEBUG", ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O0", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../../Include/cloth", "../../../Include/cooking", "../../../Include", "../../Common/src", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../PhysXCooking/src", "../../PhysXCooking/src/mesh", "../../PhysXCooking/src/convex", "../../PhysXExtensions/src", "../../PhysXGpu/include", @@ -6283,7 +6283,7 @@ }; name = "debug"; }; - FFF7e3836be07ffde3836be0 /* checked */ = { + FFF70c0bdde07fa90c0bdde0 /* 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; @@ -6298,7 +6298,7 @@ "-lPhysX3CommonCHECKED", "-lPhysX3ExtensionsCHECKED", "-lPxFoundationCHECKED", ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../../Include/cloth", "../../../Include/cooking", "../../../Include", "../../Common/src", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../PhysXCooking/src", "../../PhysXCooking/src/mesh", "../../PhysXCooking/src/convex", "../../PhysXExtensions/src", "../../PhysXGpu/include", @@ -6313,7 +6313,7 @@ }; name = "checked"; }; - FFF7e38372d07ffde38372d0 /* profile */ = { + FFF70c0be4d07fa90c0be4d0 /* 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; @@ -6328,7 +6328,7 @@ "-lPhysX3CommonPROFILE", "-lPhysX3ExtensionsPROFILE", "-lPxFoundationPROFILE", ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../../Include/cloth", "../../../Include/cooking", "../../../Include", "../../Common/src", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../PhysXCooking/src", "../../PhysXCooking/src/mesh", "../../PhysXCooking/src/convex", "../../PhysXExtensions/src", "../../PhysXGpu/include", @@ -6343,7 +6343,7 @@ }; name = "profile"; }; - FFF7e38110007ffde3811000 /* release */ = { + FFF70c0110007fa90c011000 /* 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; @@ -6358,7 +6358,7 @@ "-lPxFoundation", ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include", "../../Common/src", "../../Common/src/unix", "../../PhysXProfile/include", "../../PhysXProfile/src", "../../PhysXGpu/include", "../../../Include/geometry", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../../Include/GeomUtils", @@ -6373,7 +6373,7 @@ }; name = "release"; }; - FFF7e38116f07ffde38116f0 /* debug */ = { + FFF70c0116f07fa90c0116f0 /* 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; @@ -6388,7 +6388,7 @@ "-lPxFoundationDEBUG", ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O0", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include", "../../Common/src", "../../Common/src/unix", "../../PhysXProfile/include", "../../PhysXProfile/src", "../../PhysXGpu/include", "../../../Include/geometry", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../../Include/GeomUtils", @@ -6403,7 +6403,7 @@ }; name = "debug"; }; - FFF7e3811de07ffde3811de0 /* checked */ = { + FFF70c011de07fa90c011de0 /* 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; @@ -6418,7 +6418,7 @@ "-lPxFoundationCHECKED", ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include", "../../Common/src", "../../Common/src/unix", "../../PhysXProfile/include", "../../PhysXProfile/src", "../../PhysXGpu/include", "../../../Include/geometry", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../../Include/GeomUtils", @@ -6433,7 +6433,7 @@ }; name = "checked"; }; - FFF7e38124d07ffde38124d0 /* profile */ = { + FFF70c0124d07fa90c0124d0 /* 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; @@ -6448,7 +6448,7 @@ "-lPxFoundationPROFILE", ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include", "../../Common/src", "../../Common/src/unix", "../../PhysXProfile/include", "../../PhysXProfile/src", "../../PhysXGpu/include", "../../../Include/geometry", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../../Include/GeomUtils", @@ -6463,7 +6463,7 @@ }; name = "profile"; }; - FFF7e30188007ffde3018800 /* debug */ = { + FFF70b1a24007fa90b1a2400 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -6493,7 +6493,7 @@ }; name = "debug"; }; - FFF7e3018ef07ffde3018ef0 /* release */ = { + FFF70b1a2af07fa90b1a2af0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -6523,7 +6523,7 @@ }; name = "release"; }; - FFF7e30195e07ffde30195e0 /* checked */ = { + FFF70b1a31e07fa90b1a31e0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -6553,7 +6553,7 @@ }; name = "checked"; }; - FFF7e3019cd07ffde3019cd0 /* profile */ = { + FFF70b1a38d07fa90b1a38d0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -6583,7 +6583,7 @@ }; name = "profile"; }; - FFF7e21784007ffde2178400 /* debug */ = { + FFF70c01a0007fa90c01a000 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -6613,7 +6613,7 @@ }; name = "debug"; }; - FFF7e2178af07ffde2178af0 /* release */ = { + FFF70c01a6f07fa90c01a6f0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -6643,7 +6643,7 @@ }; name = "release"; }; - FFF7e21791e07ffde21791e0 /* checked */ = { + FFF70c01ade07fa90c01ade0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -6673,7 +6673,7 @@ }; name = "checked"; }; - FFF7e21798d07ffde21798d0 /* profile */ = { + FFF70c01b4d07fa90c01b4d0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -6703,7 +6703,7 @@ }; name = "profile"; }; - FFF7e304f0007ffde304f000 /* debug */ = { + FFF70c02ca007fa90c02ca00 /* 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; @@ -6718,7 +6718,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O0", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include", "../../../Include/GeomUtils", "../../Common/src", "../../Common/src/unix", "../../PhysXProfile/src", "../../PhysXProfile/include", "../../GeomUtils/headers", "../../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", "../../GeomUtils/src/ccd", "../../GeomUtils/src", "../../LowLevel/API/include", "../../LowLevel/common/include", "../../LowLevel/common/include/collision", "../../LowLevel/common/include/pipeline", "../../LowLevel/common/include/pipeline/unix", "../../LowLevel/common/include/utils", "../../LowLevel/software/include", "../../LowLevel/software/include/unix", "../../LowLevelDynamics/include", "../../LowLevelDynamics/include/unix", @@ -6733,7 +6733,7 @@ }; name = "debug"; }; - FFF7e304f6f07ffde304f6f0 /* checked */ = { + FFF70c02d0f07fa90c02d0f0 /* 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; @@ -6748,7 +6748,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include", "../../../Include/GeomUtils", "../../Common/src", "../../Common/src/unix", "../../PhysXProfile/src", "../../PhysXProfile/include", "../../GeomUtils/headers", "../../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", "../../GeomUtils/src/ccd", "../../GeomUtils/src", "../../LowLevel/API/include", "../../LowLevel/common/include", "../../LowLevel/common/include/collision", "../../LowLevel/common/include/pipeline", "../../LowLevel/common/include/pipeline/unix", "../../LowLevel/common/include/utils", "../../LowLevel/software/include", "../../LowLevel/software/include/unix", "../../LowLevelDynamics/include", "../../LowLevelDynamics/include/unix", @@ -6763,7 +6763,7 @@ }; name = "checked"; }; - FFF7e304fde07ffde304fde0 /* profile */ = { + FFF70c02d7e07fa90c02d7e0 /* 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; @@ -6778,7 +6778,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include", "../../../Include/GeomUtils", "../../Common/src", "../../Common/src/unix", "../../PhysXProfile/src", "../../PhysXProfile/include", "../../GeomUtils/headers", "../../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", "../../GeomUtils/src/ccd", "../../GeomUtils/src", "../../LowLevel/API/include", "../../LowLevel/common/include", "../../LowLevel/common/include/collision", "../../LowLevel/common/include/pipeline", "../../LowLevel/common/include/pipeline/unix", "../../LowLevel/common/include/utils", "../../LowLevel/software/include", "../../LowLevel/software/include/unix", "../../LowLevelDynamics/include", "../../LowLevelDynamics/include/unix", @@ -6793,7 +6793,7 @@ }; name = "profile"; }; - FFF7e30504d07ffde30504d0 /* release */ = { + FFF70c02ded07fa90c02ded0 /* 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; @@ -6808,7 +6808,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include", "../../../Include/GeomUtils", "../../Common/src", "../../Common/src/unix", "../../PhysXProfile/src", "../../PhysXProfile/include", "../../GeomUtils/headers", "../../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", "../../GeomUtils/src/ccd", "../../GeomUtils/src", "../../LowLevel/API/include", "../../LowLevel/common/include", "../../LowLevel/common/include/collision", "../../LowLevel/common/include/pipeline", "../../LowLevel/common/include/pipeline/unix", "../../LowLevel/common/include/utils", "../../LowLevel/software/include", "../../LowLevel/software/include/unix", "../../LowLevelDynamics/include", "../../LowLevelDynamics/include/unix", @@ -6823,7 +6823,7 @@ }; name = "release"; }; - FFF7e381a0007ffde381a000 /* debug */ = { + FFF70b1d18007fa90b1d1800 /* 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; @@ -6838,7 +6838,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O0", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../Common/src/unix", "../../GeomUtils/headers", "../../GeomUtils/src", "../../Common/src", "../../LowLevel/API/include", "../../LowLevel/common/include/utils", "../../LowLevel/common/include/pipeline", "../../LowLevelAABB/include", "../../LowLevelAABB/src", "../../GpuBroadPhase/include", "../../GpuBroadPhase/src", "../../LowLevelAABB/unix/include", @@ -6853,7 +6853,7 @@ }; name = "debug"; }; - FFF7e381a6f07ffde381a6f0 /* checked */ = { + FFF70b1d1ef07fa90b1d1ef0 /* 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; @@ -6868,7 +6868,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../Common/src/unix", "../../GeomUtils/headers", "../../GeomUtils/src", "../../Common/src", "../../LowLevel/API/include", "../../LowLevel/common/include/utils", "../../LowLevel/common/include/pipeline", "../../LowLevelAABB/include", "../../LowLevelAABB/src", "../../GpuBroadPhase/include", "../../GpuBroadPhase/src", "../../LowLevelAABB/unix/include", @@ -6883,7 +6883,7 @@ }; name = "checked"; }; - FFF7e381ade07ffde381ade0 /* profile */ = { + FFF70b1d25e07fa90b1d25e0 /* 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; @@ -6898,7 +6898,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../Common/src/unix", "../../GeomUtils/headers", "../../GeomUtils/src", "../../Common/src", "../../LowLevel/API/include", "../../LowLevel/common/include/utils", "../../LowLevel/common/include/pipeline", "../../LowLevelAABB/include", "../../LowLevelAABB/src", "../../GpuBroadPhase/include", "../../GpuBroadPhase/src", "../../LowLevelAABB/unix/include", @@ -6913,7 +6913,7 @@ }; name = "profile"; }; - FFF7e381b4d07ffde381b4d0 /* release */ = { + FFF70b1d2cd07fa90b1d2cd0 /* 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; @@ -6928,7 +6928,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../Common/src/unix", "../../GeomUtils/headers", "../../GeomUtils/src", "../../Common/src", "../../LowLevel/API/include", "../../LowLevel/common/include/utils", "../../LowLevel/common/include/pipeline", "../../LowLevelAABB/include", "../../LowLevelAABB/src", "../../GpuBroadPhase/include", "../../GpuBroadPhase/src", "../../LowLevelAABB/unix/include", @@ -6943,7 +6943,7 @@ }; name = "release"; }; - FFF7e38252007ffde3825200 /* debug */ = { + FFF70c0366007fa90c036600 /* 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; @@ -6958,7 +6958,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O0", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include", "../../../Include/GeomUtils", "../../Common/src", "../../Common/src/unix", "../../PhysXProfile/src", "../../PhysXProfile/include", "../../GeomUtils/src/contact", "../../LowLevel/API/include", "../../LowLevel/common/include", "../../LowLevel/common/include/pipeline", "../../LowLevel/common/include/pipeline/unix", "../../LowLevel/common/include/math", "../../LowLevel/common/include/utils", "../../LowLevel/software/include", "../../LowLevel/software/include/unix", "../../LowLevelDynamics/include", "../../LowLevelDynamics/src", "../../LowLevelDynamics/include/unix", @@ -6973,7 +6973,7 @@ }; name = "debug"; }; - FFF7e38258f07ffde38258f0 /* checked */ = { + FFF70c036cf07fa90c036cf0 /* 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; @@ -6988,7 +6988,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include", "../../../Include/GeomUtils", "../../Common/src", "../../Common/src/unix", "../../PhysXProfile/src", "../../PhysXProfile/include", "../../GeomUtils/src/contact", "../../LowLevel/API/include", "../../LowLevel/common/include", "../../LowLevel/common/include/pipeline", "../../LowLevel/common/include/pipeline/unix", "../../LowLevel/common/include/math", "../../LowLevel/common/include/utils", "../../LowLevel/software/include", "../../LowLevel/software/include/unix", "../../LowLevelDynamics/include", "../../LowLevelDynamics/src", "../../LowLevelDynamics/include/unix", @@ -7003,7 +7003,7 @@ }; name = "checked"; }; - FFF7e3825fe07ffde3825fe0 /* profile */ = { + FFF70c0373e07fa90c0373e0 /* 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; @@ -7018,7 +7018,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include", "../../../Include/GeomUtils", "../../Common/src", "../../Common/src/unix", "../../PhysXProfile/src", "../../PhysXProfile/include", "../../GeomUtils/src/contact", "../../LowLevel/API/include", "../../LowLevel/common/include", "../../LowLevel/common/include/pipeline", "../../LowLevel/common/include/pipeline/unix", "../../LowLevel/common/include/math", "../../LowLevel/common/include/utils", "../../LowLevel/software/include", "../../LowLevel/software/include/unix", "../../LowLevelDynamics/include", "../../LowLevelDynamics/src", "../../LowLevelDynamics/include/unix", @@ -7033,7 +7033,7 @@ }; name = "profile"; }; - FFF7e38266d07ffde38266d0 /* release */ = { + FFF70c037ad07fa90c037ad0 /* 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; @@ -7048,7 +7048,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include", "../../../Include/GeomUtils", "../../Common/src", "../../Common/src/unix", "../../PhysXProfile/src", "../../PhysXProfile/include", "../../GeomUtils/src/contact", "../../LowLevel/API/include", "../../LowLevel/common/include", "../../LowLevel/common/include/pipeline", "../../LowLevel/common/include/pipeline/unix", "../../LowLevel/common/include/math", "../../LowLevel/common/include/utils", "../../LowLevel/software/include", "../../LowLevel/software/include/unix", "../../LowLevelDynamics/include", "../../LowLevelDynamics/src", "../../LowLevelDynamics/include/unix", @@ -7063,7 +7063,7 @@ }; name = "release"; }; - FFF7e21864007ffde2186400 /* debug */ = { + FFF70b1db8007fa90b1db800 /* 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; @@ -7078,7 +7078,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O0", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include", "../../../Include/common", "../../Common/src", "../../LowLevelCloth/include", "../../LowLevelCloth/src", "../../../../PxShared/src/NvSimd/include", @@ -7093,7 +7093,7 @@ }; name = "debug"; }; - FFF7e2186af07ffde2186af0 /* checked */ = { + FFF70b1dbef07fa90b1dbef0 /* 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; @@ -7108,7 +7108,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include", "../../../Include/common", "../../Common/src", "../../LowLevelCloth/include", "../../LowLevelCloth/src", "../../../../PxShared/src/NvSimd/include", @@ -7123,7 +7123,7 @@ }; name = "checked"; }; - FFF7e21871e07ffde21871e0 /* profile */ = { + FFF70b1dc5e07fa90b1dc5e0 /* 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; @@ -7138,7 +7138,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include", "../../../Include/common", "../../Common/src", "../../LowLevelCloth/include", "../../LowLevelCloth/src", "../../../../PxShared/src/NvSimd/include", @@ -7153,7 +7153,7 @@ }; name = "profile"; }; - FFF7e21878d07ffde21878d0 /* release */ = { + FFF70b1dccd07fa90b1dccd0 /* 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; @@ -7168,7 +7168,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include", "../../../Include/common", "../../Common/src", "../../LowLevelCloth/include", "../../LowLevelCloth/src", "../../../../PxShared/src/NvSimd/include", @@ -7183,7 +7183,7 @@ }; name = "release"; }; - FFF7e1823e007ffde1823e00 /* debug */ = { + FFF70c040c007fa90c040c00 /* 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; @@ -7198,7 +7198,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O0", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../Common/src", "../../LowLevelParticles/include", "../../LowLevelParticles/src", "../../LowLevel/API/include", "../../LowLevel/common/include/utils", "../../GeomUtils/src", "../../GeomUtils/src/convex", "../../GeomUtils/src/hf", "../../GeomUtils/src/mesh", "../../GeomUtils/headers", @@ -7213,7 +7213,7 @@ }; name = "debug"; }; - FFF7e18244f07ffde18244f0 /* checked */ = { + FFF70c0412f07fa90c0412f0 /* 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; @@ -7228,7 +7228,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../Common/src", "../../LowLevelParticles/include", "../../LowLevelParticles/src", "../../LowLevel/API/include", "../../LowLevel/common/include/utils", "../../GeomUtils/src", "../../GeomUtils/src/convex", "../../GeomUtils/src/hf", "../../GeomUtils/src/mesh", "../../GeomUtils/headers", @@ -7243,7 +7243,7 @@ }; name = "checked"; }; - FFF7e1824be07ffde1824be0 /* profile */ = { + FFF70c0419e07fa90c0419e0 /* 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; @@ -7258,7 +7258,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../Common/src", "../../LowLevelParticles/include", "../../LowLevelParticles/src", "../../LowLevel/API/include", "../../LowLevel/common/include/utils", "../../GeomUtils/src", "../../GeomUtils/src/convex", "../../GeomUtils/src/hf", "../../GeomUtils/src/mesh", "../../GeomUtils/headers", @@ -7273,7 +7273,7 @@ }; name = "profile"; }; - FFF7e18252d07ffde18252d0 /* release */ = { + FFF70c0420d07fa90c0420d0 /* 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; @@ -7288,7 +7288,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../Common/src", "../../LowLevelParticles/include", "../../LowLevelParticles/src", "../../LowLevel/API/include", "../../LowLevel/common/include/utils", "../../GeomUtils/src", "../../GeomUtils/src/convex", "../../GeomUtils/src/hf", "../../GeomUtils/src/mesh", "../../GeomUtils/headers", @@ -7303,7 +7303,7 @@ }; name = "release"; }; - FFF7e30562007ffde3056200 /* debug */ = { + FFF70c0670007fa90c067000 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -7333,7 +7333,7 @@ }; name = "debug"; }; - FFF7e30568f07ffde30568f0 /* release */ = { + FFF70c0676f07fa90c0676f0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -7363,7 +7363,7 @@ }; name = "release"; }; - FFF7e3056fe07ffde3056fe0 /* checked */ = { + FFF70c067de07fa90c067de0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -7393,7 +7393,7 @@ }; name = "checked"; }; - FFF7e30576d07ffde30576d0 /* profile */ = { + FFF70c0684d07fa90c0684d0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -7423,7 +7423,7 @@ }; name = "profile"; }; - FFF7e218c6007ffde218c600 /* debug */ = { + FFF70c08ce007fa90c08ce00 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -7453,7 +7453,7 @@ }; name = "debug"; }; - FFF7e218ccf07ffde218ccf0 /* release */ = { + FFF70c08d4f07fa90c08d4f0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -7483,7 +7483,7 @@ }; name = "release"; }; - FFF7e218d3e07ffde218d3e0 /* checked */ = { + FFF70c08dbe07fa90c08dbe0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -7513,7 +7513,7 @@ }; name = "checked"; }; - FFF7e218dad07ffde218dad0 /* profile */ = { + FFF70c08e2d07fa90c08e2d0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; TARGETED_DEVICE_FAMILY = 2; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; VALID_ARCHS = "$(ARCHS_STANDARD_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; SDKROOT = iphoneos; @@ -7543,25 +7543,25 @@ }; name = "profile"; }; - FFF3e382b6007ffde382b600 /* release */ = { + FFF30c0b28007fa90c0b2800 /* release */ = { isa = XCBuildConfiguration; buildSettings = { }; name = "release"; }; - FFF3e382bcf07ffde382bcf0 /* debug */ = { + FFF30c0b2ef07fa90c0b2ef0 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { }; name = "debug"; }; - FFF3e382c3e07ffde382c3e0 /* checked */ = { + FFF30c0b35e07fa90c0b35e0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { }; name = "checked"; }; - FFF3e382cad07ffde382cad0 /* profile */ = { + FFF30c0b3cd07fa90c0b3cd0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { }; @@ -7570,34 +7570,34 @@ /* End XCBuildConfiguration section */ /* Begin PBXProject section */ - FFF9e170df007ffde170df00 /* Project object */ = { + FFF90ac82b107fa90ac82b10 /* Project object */ = { isa = PBXProject; - buildConfigurationList = FFF6e170df007ffde170df00 /* Build configuration list for PBXProject PhysX */; + buildConfigurationList = FFF60ac82b107fa90ac82b10 /* Build configuration list for PBXProject PhysX */; compatibilityVersion = "Xcode 3.2"; hasScannedForEncodings = 1; - mainGroup = FFFBe170df687ffde170df68 /* PhysX */; + mainGroup = FFFB0ac82b787fa90ac82b78 /* PhysX */; targets = ( - FFFAe29464b07ffde29464b0, - FFFAe294ef707ffde294ef70, - FFFAe29504707ffde2950470, - FFFAe29617f07ffde29617f0, - FFFAe450b7207ffde450b720, - FFFAe450fbf07ffde450fbf0, - FFFAe2d74eb07ffde2d74eb0, - FFFAe2c17a107ffde2c17a10, - FFFAe2c0b7d07ffde2c0b7d0, - FFFAe29691807ffde2969180, - FFFAe2f1a6b07ffde2f1a6b0, - FFFAe2d334507ffde2d33450, - FFFAe2d544f07ffde2d544f0, - FFFAe292cb407ffde292cb40, - FFFAe1484d707ffde1484d70, - FFFAe2f4cec07ffde2f4cec0, - FFFAe2942d107ffde2942d10, + FFFA0cae9cd07fa90cae9cd0, + FFFA0caf3c407fa90caf3c40, + FFFA0caf0ea07fa90caf0ea0, + FFFA0cb04a207fa90cb04a20, + FFFA0cb173f07fa90cb173f0, + FFFA0cb1ba307fa90cb1ba30, + FFFA0cb201d07fa90cb201d0, + FFFA0b897c207fa90b897c20, + FFFA0b8818007fa90b881800, + FFFA0bc33a807fa90bc33a80, + FFFA0bc50de07fa90bc50de0, + FFFA0bb097007fa90bb09700, + FFFA0bc6a7707fa90bc6a770, + FFFA0be0eb007fa90be0eb00, + FFFA0bc8f2607fa90bc8f260, + FFFA0c8f73507fa90c8f7350, + FFFA0cac6a007fa90cac6a00, ); }; /* End PBXProject section */ }; - rootObject = FFF9e170df007ffde170df00 /* Project object */; + rootObject = FFF90ac82b107fa90ac82b10 /* 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 aef8e52a..812ea804 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 */ - FFFFfc0d6bb07fbcfc0d6bb0 /* SceneQuery in Frameworks */= { isa = PBXBuildFile; fileRef = FFFDfc0985207fbcfc098520 /* SceneQuery */; }; - FFFFfc0e5a707fbcfc0e5a70 /* SimulationController in Frameworks */= { isa = PBXBuildFile; fileRef = FFFDfc08d4e07fbcfc08d4e0 /* SimulationController */; }; - FFFFfc8326387fbcfc832638 /* NpActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8326387fbcfc832638 /* NpActor.cpp */; }; - FFFFfc8326a07fbcfc8326a0 /* NpAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8326a07fbcfc8326a0 /* NpAggregate.cpp */; }; - FFFFfc8327087fbcfc832708 /* NpArticulation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8327087fbcfc832708 /* NpArticulation.cpp */; }; - FFFFfc8327707fbcfc832770 /* NpArticulationJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8327707fbcfc832770 /* NpArticulationJoint.cpp */; }; - FFFFfc8327d87fbcfc8327d8 /* NpArticulationLink.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8327d87fbcfc8327d8 /* NpArticulationLink.cpp */; }; - FFFFfc8328407fbcfc832840 /* NpBatchQuery.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8328407fbcfc832840 /* NpBatchQuery.cpp */; }; - FFFFfc8328a87fbcfc8328a8 /* NpConstraint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8328a87fbcfc8328a8 /* NpConstraint.cpp */; }; - FFFFfc8329107fbcfc832910 /* NpFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8329107fbcfc832910 /* NpFactory.cpp */; }; - FFFFfc8329787fbcfc832978 /* NpMaterial.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8329787fbcfc832978 /* NpMaterial.cpp */; }; - FFFFfc8329e07fbcfc8329e0 /* NpMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8329e07fbcfc8329e0 /* NpMetaData.cpp */; }; - FFFFfc832a487fbcfc832a48 /* NpPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc832a487fbcfc832a48 /* NpPhysics.cpp */; }; - FFFFfc832ab07fbcfc832ab0 /* NpPvdSceneQueryCollector.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc832ab07fbcfc832ab0 /* NpPvdSceneQueryCollector.cpp */; }; - FFFFfc832b187fbcfc832b18 /* NpReadCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc832b187fbcfc832b18 /* NpReadCheck.cpp */; }; - FFFFfc832b807fbcfc832b80 /* NpRigidDynamic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc832b807fbcfc832b80 /* NpRigidDynamic.cpp */; }; - FFFFfc832be87fbcfc832be8 /* NpRigidStatic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc832be87fbcfc832be8 /* NpRigidStatic.cpp */; }; - FFFFfc832c507fbcfc832c50 /* NpScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc832c507fbcfc832c50 /* NpScene.cpp */; }; - FFFFfc832cb87fbcfc832cb8 /* NpSceneQueries.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc832cb87fbcfc832cb8 /* NpSceneQueries.cpp */; }; - FFFFfc832d207fbcfc832d20 /* NpSerializerAdapter.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc832d207fbcfc832d20 /* NpSerializerAdapter.cpp */; }; - FFFFfc832d887fbcfc832d88 /* NpShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc832d887fbcfc832d88 /* NpShape.cpp */; }; - FFFFfc832df07fbcfc832df0 /* NpShapeManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc832df07fbcfc832df0 /* NpShapeManager.cpp */; }; - FFFFfc832e587fbcfc832e58 /* NpSpatialIndex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc832e587fbcfc832e58 /* NpSpatialIndex.cpp */; }; - FFFFfc832ec07fbcfc832ec0 /* NpVolumeCache.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc832ec07fbcfc832ec0 /* NpVolumeCache.cpp */; }; - FFFFfc832f287fbcfc832f28 /* NpWriteCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc832f287fbcfc832f28 /* NpWriteCheck.cpp */; }; - FFFFfc832f907fbcfc832f90 /* PvdMetaDataPvdBinding.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc832f907fbcfc832f90 /* PvdMetaDataPvdBinding.cpp */; }; - FFFFfc832ff87fbcfc832ff8 /* PvdPhysicsClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc832ff87fbcfc832ff8 /* PvdPhysicsClient.cpp */; }; - FFFFfc8332007fbcfc833200 /* particles/NpParticleFluid.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8332007fbcfc833200 /* particles/NpParticleFluid.cpp */; }; - FFFFfc8332687fbcfc833268 /* particles/NpParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8332687fbcfc833268 /* particles/NpParticleSystem.cpp */; }; - FFFFfc833a207fbcfc833a20 /* buffering/ScbActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc833a207fbcfc833a20 /* buffering/ScbActor.cpp */; }; - FFFFfc833a887fbcfc833a88 /* buffering/ScbAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc833a887fbcfc833a88 /* buffering/ScbAggregate.cpp */; }; - FFFFfc833af07fbcfc833af0 /* buffering/ScbBase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc833af07fbcfc833af0 /* buffering/ScbBase.cpp */; }; - FFFFfc833b587fbcfc833b58 /* buffering/ScbCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc833b587fbcfc833b58 /* buffering/ScbCloth.cpp */; }; - FFFFfc833bc07fbcfc833bc0 /* buffering/ScbMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc833bc07fbcfc833bc0 /* buffering/ScbMetaData.cpp */; }; - FFFFfc833c287fbcfc833c28 /* buffering/ScbParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc833c287fbcfc833c28 /* buffering/ScbParticleSystem.cpp */; }; - FFFFfc833c907fbcfc833c90 /* buffering/ScbScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc833c907fbcfc833c90 /* buffering/ScbScene.cpp */; }; - FFFFfc833cf87fbcfc833cf8 /* buffering/ScbScenePvdClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc833cf87fbcfc833cf8 /* buffering/ScbScenePvdClient.cpp */; }; - FFFFfc833d607fbcfc833d60 /* buffering/ScbShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc833d607fbcfc833d60 /* buffering/ScbShape.cpp */; }; - FFFFfc833f007fbcfc833f00 /* cloth/NpCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc833f007fbcfc833f00 /* cloth/NpCloth.cpp */; }; - FFFFfc833f687fbcfc833f68 /* cloth/NpClothFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc833f687fbcfc833f68 /* cloth/NpClothFabric.cpp */; }; - FFFFfc833fd07fbcfc833fd0 /* cloth/NpClothParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc833fd07fbcfc833fd0 /* cloth/NpClothParticleData.cpp */; }; - FFFFfc8340387fbcfc834038 /* ../../ImmediateMode/src/NpImmediateMode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8340387fbcfc834038 /* ../../ImmediateMode/src/NpImmediateMode.cpp */; }; - FFFFfc830ba87fbcfc830ba8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDfc830ba87fbcfc830ba8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */; }; - FFFFfc830c107fbcfc830c10 /* core/src/PxMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDfc830c107fbcfc830c10 /* core/src/PxMetaDataObjects.cpp */; }; + FFFFb2fc05307feab2fc0530 /* SceneQuery in Frameworks */= { isa = PBXBuildFile; fileRef = FFFDb2fe3bd07feab2fe3bd0 /* SceneQuery */; }; + FFFFb2fc05907feab2fc0590 /* SimulationController in Frameworks */= { isa = PBXBuildFile; fileRef = FFFDb2fe82c07feab2fe82c0 /* SimulationController */; }; + FFFFb31b7e387feab31b7e38 /* NpActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31b7e387feab31b7e38 /* NpActor.cpp */; }; + FFFFb31b7ea07feab31b7ea0 /* NpAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31b7ea07feab31b7ea0 /* NpAggregate.cpp */; }; + FFFFb31b7f087feab31b7f08 /* NpArticulation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31b7f087feab31b7f08 /* NpArticulation.cpp */; }; + FFFFb31b7f707feab31b7f70 /* NpArticulationJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31b7f707feab31b7f70 /* NpArticulationJoint.cpp */; }; + FFFFb31b7fd87feab31b7fd8 /* NpArticulationLink.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31b7fd87feab31b7fd8 /* NpArticulationLink.cpp */; }; + FFFFb31b80407feab31b8040 /* NpBatchQuery.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31b80407feab31b8040 /* NpBatchQuery.cpp */; }; + FFFFb31b80a87feab31b80a8 /* NpConstraint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31b80a87feab31b80a8 /* NpConstraint.cpp */; }; + FFFFb31b81107feab31b8110 /* NpFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31b81107feab31b8110 /* NpFactory.cpp */; }; + FFFFb31b81787feab31b8178 /* NpMaterial.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31b81787feab31b8178 /* NpMaterial.cpp */; }; + FFFFb31b81e07feab31b81e0 /* NpMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31b81e07feab31b81e0 /* NpMetaData.cpp */; }; + FFFFb31b82487feab31b8248 /* NpPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31b82487feab31b8248 /* NpPhysics.cpp */; }; + FFFFb31b82b07feab31b82b0 /* NpPvdSceneQueryCollector.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31b82b07feab31b82b0 /* NpPvdSceneQueryCollector.cpp */; }; + FFFFb31b83187feab31b8318 /* NpReadCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31b83187feab31b8318 /* NpReadCheck.cpp */; }; + FFFFb31b83807feab31b8380 /* NpRigidDynamic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31b83807feab31b8380 /* NpRigidDynamic.cpp */; }; + FFFFb31b83e87feab31b83e8 /* NpRigidStatic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31b83e87feab31b83e8 /* NpRigidStatic.cpp */; }; + FFFFb31b84507feab31b8450 /* NpScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31b84507feab31b8450 /* NpScene.cpp */; }; + FFFFb31b84b87feab31b84b8 /* NpSceneQueries.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31b84b87feab31b84b8 /* NpSceneQueries.cpp */; }; + FFFFb31b85207feab31b8520 /* NpSerializerAdapter.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31b85207feab31b8520 /* NpSerializerAdapter.cpp */; }; + FFFFb31b85887feab31b8588 /* NpShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31b85887feab31b8588 /* NpShape.cpp */; }; + FFFFb31b85f07feab31b85f0 /* NpShapeManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31b85f07feab31b85f0 /* NpShapeManager.cpp */; }; + FFFFb31b86587feab31b8658 /* NpSpatialIndex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31b86587feab31b8658 /* NpSpatialIndex.cpp */; }; + FFFFb31b86c07feab31b86c0 /* NpVolumeCache.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31b86c07feab31b86c0 /* NpVolumeCache.cpp */; }; + FFFFb31b87287feab31b8728 /* NpWriteCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31b87287feab31b8728 /* NpWriteCheck.cpp */; }; + FFFFb31b87907feab31b8790 /* PvdMetaDataPvdBinding.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31b87907feab31b8790 /* PvdMetaDataPvdBinding.cpp */; }; + FFFFb31b87f87feab31b87f8 /* PvdPhysicsClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31b87f87feab31b87f8 /* PvdPhysicsClient.cpp */; }; + FFFFb31b8a007feab31b8a00 /* particles/NpParticleFluid.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31b8a007feab31b8a00 /* particles/NpParticleFluid.cpp */; }; + FFFFb31b8a687feab31b8a68 /* particles/NpParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31b8a687feab31b8a68 /* particles/NpParticleSystem.cpp */; }; + FFFFb31b92207feab31b9220 /* buffering/ScbActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31b92207feab31b9220 /* buffering/ScbActor.cpp */; }; + FFFFb31b92887feab31b9288 /* buffering/ScbAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31b92887feab31b9288 /* buffering/ScbAggregate.cpp */; }; + FFFFb31b92f07feab31b92f0 /* buffering/ScbBase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31b92f07feab31b92f0 /* buffering/ScbBase.cpp */; }; + FFFFb31b93587feab31b9358 /* buffering/ScbCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31b93587feab31b9358 /* buffering/ScbCloth.cpp */; }; + FFFFb31b93c07feab31b93c0 /* buffering/ScbMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31b93c07feab31b93c0 /* buffering/ScbMetaData.cpp */; }; + FFFFb31b94287feab31b9428 /* buffering/ScbParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31b94287feab31b9428 /* buffering/ScbParticleSystem.cpp */; }; + FFFFb31b94907feab31b9490 /* buffering/ScbScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31b94907feab31b9490 /* buffering/ScbScene.cpp */; }; + FFFFb31b94f87feab31b94f8 /* buffering/ScbScenePvdClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31b94f87feab31b94f8 /* buffering/ScbScenePvdClient.cpp */; }; + FFFFb31b95607feab31b9560 /* buffering/ScbShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31b95607feab31b9560 /* buffering/ScbShape.cpp */; }; + FFFFb31b97007feab31b9700 /* cloth/NpCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31b97007feab31b9700 /* cloth/NpCloth.cpp */; }; + FFFFb31b97687feab31b9768 /* cloth/NpClothFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31b97687feab31b9768 /* cloth/NpClothFabric.cpp */; }; + FFFFb31b97d07feab31b97d0 /* cloth/NpClothParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31b97d07feab31b97d0 /* cloth/NpClothParticleData.cpp */; }; + FFFFb31b98387feab31b9838 /* ../../ImmediateMode/src/NpImmediateMode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31b98387feab31b9838 /* ../../ImmediateMode/src/NpImmediateMode.cpp */; }; + FFFFb31bb3a87feab31bb3a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDb31bb3a87feab31bb3a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */; }; + FFFFb31bb4107feab31bb410 /* core/src/PxMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDb31bb4107feab31bb410 /* core/src/PxMetaDataObjects.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDfc0690807fbcfc069080 /* PhysX */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysX"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDfc8318007fbcfc831800 /* NpActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.h"; path = "../../PhysX/src/NpActor.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8318687fbcfc831868 /* NpActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActorTemplate.h"; path = "../../PhysX/src/NpActorTemplate.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8318d07fbcfc8318d0 /* NpAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.h"; path = "../../PhysX/src/NpAggregate.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8319387fbcfc831938 /* NpArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.h"; path = "../../PhysX/src/NpArticulation.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8319a07fbcfc8319a0 /* NpArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.h"; path = "../../PhysX/src/NpArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc831a087fbcfc831a08 /* NpArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.h"; path = "../../PhysX/src/NpArticulationLink.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc831a707fbcfc831a70 /* NpBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.h"; path = "../../PhysX/src/NpBatchQuery.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc831ad87fbcfc831ad8 /* NpCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpCast.h"; path = "../../PhysX/src/NpCast.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc831b407fbcfc831b40 /* NpConnector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConnector.h"; path = "../../PhysX/src/NpConnector.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc831ba87fbcfc831ba8 /* NpConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.h"; path = "../../PhysX/src/NpConstraint.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc831c107fbcfc831c10 /* NpFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.h"; path = "../../PhysX/src/NpFactory.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc831c787fbcfc831c78 /* NpMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.h"; path = "../../PhysX/src/NpMaterial.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc831ce07fbcfc831ce0 /* NpMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterialManager.h"; path = "../../PhysX/src/NpMaterialManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc831d487fbcfc831d48 /* NpPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.h"; path = "../../PhysX/src/NpPhysics.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc831db07fbcfc831db0 /* NpPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysicsInsertionCallback.h"; path = "../../PhysX/src/NpPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc831e187fbcfc831e18 /* NpPtrTableStorageManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPtrTableStorageManager.h"; path = "../../PhysX/src/NpPtrTableStorageManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc831e807fbcfc831e80 /* NpPvdSceneQueryCollector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.h"; path = "../../PhysX/src/NpPvdSceneQueryCollector.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc831ee87fbcfc831ee8 /* NpQueryShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpQueryShared.h"; path = "../../PhysX/src/NpQueryShared.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc831f507fbcfc831f50 /* NpReadCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.h"; path = "../../PhysX/src/NpReadCheck.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc831fb87fbcfc831fb8 /* NpRigidActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplate.h"; path = "../../PhysX/src/NpRigidActorTemplate.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8320207fbcfc832020 /* NpRigidActorTemplateInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplateInternal.h"; path = "../../PhysX/src/NpRigidActorTemplateInternal.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8320887fbcfc832088 /* NpRigidBodyTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidBodyTemplate.h"; path = "../../PhysX/src/NpRigidBodyTemplate.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8320f07fbcfc8320f0 /* NpRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.h"; path = "../../PhysX/src/NpRigidDynamic.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8321587fbcfc832158 /* NpRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.h"; path = "../../PhysX/src/NpRigidStatic.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8321c07fbcfc8321c0 /* NpScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.h"; path = "../../PhysX/src/NpScene.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8322287fbcfc832228 /* NpSceneQueries.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.h"; path = "../../PhysX/src/NpSceneQueries.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8322907fbcfc832290 /* NpShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.h"; path = "../../PhysX/src/NpShape.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8322f87fbcfc8322f8 /* NpShapeManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.h"; path = "../../PhysX/src/NpShapeManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8323607fbcfc832360 /* NpSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.h"; path = "../../PhysX/src/NpSpatialIndex.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8323c87fbcfc8323c8 /* NpVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.h"; path = "../../PhysX/src/NpVolumeCache.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8324307fbcfc832430 /* NpWriteCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.h"; path = "../../PhysX/src/NpWriteCheck.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8324987fbcfc832498 /* PvdMetaDataBindingData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataBindingData.h"; path = "../../PhysX/src/PvdMetaDataBindingData.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8325007fbcfc832500 /* PvdMetaDataPvdBinding.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.h"; path = "../../PhysX/src/PvdMetaDataPvdBinding.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8325687fbcfc832568 /* PvdPhysicsClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.h"; path = "../../PhysX/src/PvdPhysicsClient.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8325d07fbcfc8325d0 /* PvdTypeNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdTypeNames.h"; path = "../../PhysX/src/PvdTypeNames.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8326387fbcfc832638 /* NpActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.cpp"; path = "../../PhysX/src/NpActor.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc8326a07fbcfc8326a0 /* NpAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.cpp"; path = "../../PhysX/src/NpAggregate.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc8327087fbcfc832708 /* NpArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.cpp"; path = "../../PhysX/src/NpArticulation.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc8327707fbcfc832770 /* NpArticulationJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.cpp"; path = "../../PhysX/src/NpArticulationJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc8327d87fbcfc8327d8 /* NpArticulationLink.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.cpp"; path = "../../PhysX/src/NpArticulationLink.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc8328407fbcfc832840 /* NpBatchQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.cpp"; path = "../../PhysX/src/NpBatchQuery.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc8328a87fbcfc8328a8 /* NpConstraint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.cpp"; path = "../../PhysX/src/NpConstraint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc8329107fbcfc832910 /* NpFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.cpp"; path = "../../PhysX/src/NpFactory.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc8329787fbcfc832978 /* NpMaterial.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.cpp"; path = "../../PhysX/src/NpMaterial.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc8329e07fbcfc8329e0 /* NpMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMetaData.cpp"; path = "../../PhysX/src/NpMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc832a487fbcfc832a48 /* NpPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.cpp"; path = "../../PhysX/src/NpPhysics.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc832ab07fbcfc832ab0 /* NpPvdSceneQueryCollector.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.cpp"; path = "../../PhysX/src/NpPvdSceneQueryCollector.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc832b187fbcfc832b18 /* NpReadCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.cpp"; path = "../../PhysX/src/NpReadCheck.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc832b807fbcfc832b80 /* NpRigidDynamic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.cpp"; path = "../../PhysX/src/NpRigidDynamic.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc832be87fbcfc832be8 /* NpRigidStatic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.cpp"; path = "../../PhysX/src/NpRigidStatic.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc832c507fbcfc832c50 /* NpScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.cpp"; path = "../../PhysX/src/NpScene.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc832cb87fbcfc832cb8 /* NpSceneQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.cpp"; path = "../../PhysX/src/NpSceneQueries.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc832d207fbcfc832d20 /* NpSerializerAdapter.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSerializerAdapter.cpp"; path = "../../PhysX/src/NpSerializerAdapter.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc832d887fbcfc832d88 /* NpShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.cpp"; path = "../../PhysX/src/NpShape.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc832df07fbcfc832df0 /* NpShapeManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.cpp"; path = "../../PhysX/src/NpShapeManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc832e587fbcfc832e58 /* NpSpatialIndex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.cpp"; path = "../../PhysX/src/NpSpatialIndex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc832ec07fbcfc832ec0 /* NpVolumeCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.cpp"; path = "../../PhysX/src/NpVolumeCache.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc832f287fbcfc832f28 /* NpWriteCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.cpp"; path = "../../PhysX/src/NpWriteCheck.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc832f907fbcfc832f90 /* PvdMetaDataPvdBinding.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.cpp"; path = "../../PhysX/src/PvdMetaDataPvdBinding.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc832ff87fbcfc832ff8 /* PvdPhysicsClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.cpp"; path = "../../PhysX/src/PvdPhysicsClient.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc8330607fbcfc833060 /* particles/NpParticleBaseTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleBaseTemplate.h"; path = "../../PhysX/src/particles/NpParticleBaseTemplate.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8330c87fbcfc8330c8 /* particles/NpParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.h"; path = "../../PhysX/src/particles/NpParticleFluid.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8331307fbcfc833130 /* particles/NpParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluidReadData.h"; path = "../../PhysX/src/particles/NpParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8331987fbcfc833198 /* particles/NpParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.h"; path = "../../PhysX/src/particles/NpParticleSystem.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8332007fbcfc833200 /* particles/NpParticleFluid.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.cpp"; path = "../../PhysX/src/particles/NpParticleFluid.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc8332687fbcfc833268 /* particles/NpParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.cpp"; path = "../../PhysX/src/particles/NpParticleSystem.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc8332d07fbcfc8332d0 /* buffering/ScbActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.h"; path = "../../PhysX/src/buffering/ScbActor.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8333387fbcfc833338 /* buffering/ScbAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.h"; path = "../../PhysX/src/buffering/ScbAggregate.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8333a07fbcfc8333a0 /* buffering/ScbArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulation.h"; path = "../../PhysX/src/buffering/ScbArticulation.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8334087fbcfc833408 /* buffering/ScbArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulationJoint.h"; path = "../../PhysX/src/buffering/ScbArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8334707fbcfc833470 /* buffering/ScbBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.h"; path = "../../PhysX/src/buffering/ScbBase.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8334d87fbcfc8334d8 /* buffering/ScbBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBody.h"; path = "../../PhysX/src/buffering/ScbBody.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8335407fbcfc833540 /* buffering/ScbCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.h"; path = "../../PhysX/src/buffering/ScbCloth.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8335a87fbcfc8335a8 /* buffering/ScbConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbConstraint.h"; path = "../../PhysX/src/buffering/ScbConstraint.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8336107fbcfc833610 /* buffering/ScbDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbDefs.h"; path = "../../PhysX/src/buffering/ScbDefs.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8336787fbcfc833678 /* buffering/ScbNpDeps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbNpDeps.h"; path = "../../PhysX/src/buffering/ScbNpDeps.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8336e07fbcfc8336e0 /* buffering/ScbParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.h"; path = "../../PhysX/src/buffering/ScbParticleSystem.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8337487fbcfc833748 /* buffering/ScbRigidObject.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidObject.h"; path = "../../PhysX/src/buffering/ScbRigidObject.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8337b07fbcfc8337b0 /* buffering/ScbRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidStatic.h"; path = "../../PhysX/src/buffering/ScbRigidStatic.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8338187fbcfc833818 /* buffering/ScbScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.h"; path = "../../PhysX/src/buffering/ScbScene.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8338807fbcfc833880 /* buffering/ScbSceneBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbSceneBuffer.h"; path = "../../PhysX/src/buffering/ScbSceneBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8338e87fbcfc8338e8 /* buffering/ScbScenePvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.h"; path = "../../PhysX/src/buffering/ScbScenePvdClient.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8339507fbcfc833950 /* buffering/ScbShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.h"; path = "../../PhysX/src/buffering/ScbShape.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8339b87fbcfc8339b8 /* buffering/ScbType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbType.h"; path = "../../PhysX/src/buffering/ScbType.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc833a207fbcfc833a20 /* buffering/ScbActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.cpp"; path = "../../PhysX/src/buffering/ScbActor.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc833a887fbcfc833a88 /* buffering/ScbAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.cpp"; path = "../../PhysX/src/buffering/ScbAggregate.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc833af07fbcfc833af0 /* buffering/ScbBase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.cpp"; path = "../../PhysX/src/buffering/ScbBase.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc833b587fbcfc833b58 /* buffering/ScbCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.cpp"; path = "../../PhysX/src/buffering/ScbCloth.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc833bc07fbcfc833bc0 /* buffering/ScbMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbMetaData.cpp"; path = "../../PhysX/src/buffering/ScbMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc833c287fbcfc833c28 /* buffering/ScbParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.cpp"; path = "../../PhysX/src/buffering/ScbParticleSystem.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc833c907fbcfc833c90 /* buffering/ScbScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.cpp"; path = "../../PhysX/src/buffering/ScbScene.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc833cf87fbcfc833cf8 /* buffering/ScbScenePvdClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.cpp"; path = "../../PhysX/src/buffering/ScbScenePvdClient.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc833d607fbcfc833d60 /* buffering/ScbShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.cpp"; path = "../../PhysX/src/buffering/ScbShape.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc833dc87fbcfc833dc8 /* cloth/NpCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.h"; path = "../../PhysX/src/cloth/NpCloth.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc833e307fbcfc833e30 /* cloth/NpClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.h"; path = "../../PhysX/src/cloth/NpClothFabric.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc833e987fbcfc833e98 /* cloth/NpClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.h"; path = "../../PhysX/src/cloth/NpClothParticleData.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc833f007fbcfc833f00 /* cloth/NpCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.cpp"; path = "../../PhysX/src/cloth/NpCloth.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc833f687fbcfc833f68 /* cloth/NpClothFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.cpp"; path = "../../PhysX/src/cloth/NpClothFabric.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc833fd07fbcfc833fd0 /* cloth/NpClothParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.cpp"; path = "../../PhysX/src/cloth/NpClothParticleData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc8340387fbcfc834038 /* ../../ImmediateMode/src/NpImmediateMode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "../../ImmediateMode/src/NpImmediateMode.cpp"; path = "../../ImmediateMode/src/NpImmediateMode.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc82f2007fbcfc82f200 /* PxActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxActor.h"; path = "../../../Include/PxActor.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc82f2687fbcfc82f268 /* PxAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAggregate.h"; path = "../../../Include/PxAggregate.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc82f2d07fbcfc82f2d0 /* PxArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulation.h"; path = "../../../Include/PxArticulation.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc82f3387fbcfc82f338 /* PxArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationJoint.h"; path = "../../../Include/PxArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc82f3a07fbcfc82f3a0 /* PxArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationLink.h"; path = "../../../Include/PxArticulationLink.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc82f4087fbcfc82f408 /* PxBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQuery.h"; path = "../../../Include/PxBatchQuery.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc82f4707fbcfc82f470 /* PxBatchQueryDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQueryDesc.h"; path = "../../../Include/PxBatchQueryDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc82f4d87fbcfc82f4d8 /* PxBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhase.h"; path = "../../../Include/PxBroadPhase.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc82f5407fbcfc82f540 /* PxClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClient.h"; path = "../../../Include/PxClient.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc82f5a87fbcfc82f5a8 /* PxConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraint.h"; path = "../../../Include/PxConstraint.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc82f6107fbcfc82f610 /* PxConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintDesc.h"; path = "../../../Include/PxConstraintDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc82f6787fbcfc82f678 /* PxContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContact.h"; path = "../../../Include/PxContact.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc82f6e07fbcfc82f6e0 /* PxContactModifyCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContactModifyCallback.h"; path = "../../../Include/PxContactModifyCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc82f7487fbcfc82f748 /* PxDeletionListener.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDeletionListener.h"; path = "../../../Include/PxDeletionListener.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc82f7b07fbcfc82f7b0 /* PxFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFiltering.h"; path = "../../../Include/PxFiltering.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc82f8187fbcfc82f818 /* PxForceMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxForceMode.h"; path = "../../../Include/PxForceMode.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc82f8807fbcfc82f880 /* PxImmediateMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxImmediateMode.h"; path = "../../../Include/PxImmediateMode.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc82f8e87fbcfc82f8e8 /* PxLockedData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxLockedData.h"; path = "../../../Include/PxLockedData.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc82f9507fbcfc82f950 /* PxMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMaterial.h"; path = "../../../Include/PxMaterial.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc82f9b87fbcfc82f9b8 /* PxPhysXConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysXConfig.h"; path = "../../../Include/PxPhysXConfig.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc82fa207fbcfc82fa20 /* PxPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysics.h"; path = "../../../Include/PxPhysics.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc82fa887fbcfc82fa88 /* PxPhysicsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsAPI.h"; path = "../../../Include/PxPhysicsAPI.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc82faf07fbcfc82faf0 /* PxPhysicsSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsSerialization.h"; path = "../../../Include/PxPhysicsSerialization.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc82fb587fbcfc82fb58 /* PxPhysicsVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsVersion.h"; path = "../../../Include/PxPhysicsVersion.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc82fbc07fbcfc82fbc0 /* PxPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPruningStructure.h"; path = "../../../Include/PxPruningStructure.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc82fc287fbcfc82fc28 /* PxQueryFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryFiltering.h"; path = "../../../Include/PxQueryFiltering.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc82fc907fbcfc82fc90 /* PxQueryReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryReport.h"; path = "../../../Include/PxQueryReport.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc82fcf87fbcfc82fcf8 /* PxRigidActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActor.h"; path = "../../../Include/PxRigidActor.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc82fd607fbcfc82fd60 /* PxRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBody.h"; path = "../../../Include/PxRigidBody.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc82fdc87fbcfc82fdc8 /* PxRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidDynamic.h"; path = "../../../Include/PxRigidDynamic.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc82fe307fbcfc82fe30 /* PxRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidStatic.h"; path = "../../../Include/PxRigidStatic.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc82fe987fbcfc82fe98 /* PxScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxScene.h"; path = "../../../Include/PxScene.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc82ff007fbcfc82ff00 /* PxSceneDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneDesc.h"; path = "../../../Include/PxSceneDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc82ff687fbcfc82ff68 /* PxSceneLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneLock.h"; path = "../../../Include/PxSceneLock.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc82ffd07fbcfc82ffd0 /* PxShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShape.h"; path = "../../../Include/PxShape.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8300387fbcfc830038 /* PxSimulationEventCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationEventCallback.h"; path = "../../../Include/PxSimulationEventCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8300a07fbcfc8300a0 /* PxSimulationStatistics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationStatistics.h"; path = "../../../Include/PxSimulationStatistics.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8301087fbcfc830108 /* PxSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSpatialIndex.h"; path = "../../../Include/PxSpatialIndex.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8301707fbcfc830170 /* PxVisualizationParameter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVisualizationParameter.h"; path = "../../../Include/PxVisualizationParameter.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8301d87fbcfc8301d8 /* PxVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVolumeCache.h"; path = "../../../Include/PxVolumeCache.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8302407fbcfc830240 /* particles/PxParticleBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBase.h"; path = "../../../Include/particles/PxParticleBase.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8302a87fbcfc8302a8 /* particles/PxParticleBaseFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBaseFlag.h"; path = "../../../Include/particles/PxParticleBaseFlag.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8303107fbcfc830310 /* particles/PxParticleCreationData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleCreationData.h"; path = "../../../Include/particles/PxParticleCreationData.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8303787fbcfc830378 /* particles/PxParticleFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFlag.h"; path = "../../../Include/particles/PxParticleFlag.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8303e07fbcfc8303e0 /* particles/PxParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluid.h"; path = "../../../Include/particles/PxParticleFluid.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8304487fbcfc830448 /* particles/PxParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluidReadData.h"; path = "../../../Include/particles/PxParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8304b07fbcfc8304b0 /* particles/PxParticleReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleReadData.h"; path = "../../../Include/particles/PxParticleReadData.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8305187fbcfc830518 /* particles/PxParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleSystem.h"; path = "../../../Include/particles/PxParticleSystem.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8305807fbcfc830580 /* pvd/PxPvdSceneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pvd/PxPvdSceneClient.h"; path = "../../../Include/pvd/PxPvdSceneClient.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8305e87fbcfc8305e8 /* cloth/PxCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxCloth.h"; path = "../../../Include/cloth/PxCloth.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8306507fbcfc830650 /* cloth/PxClothCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothCollisionData.h"; path = "../../../Include/cloth/PxClothCollisionData.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8306b87fbcfc8306b8 /* cloth/PxClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothFabric.h"; path = "../../../Include/cloth/PxClothFabric.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8307207fbcfc830720 /* cloth/PxClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothParticleData.h"; path = "../../../Include/cloth/PxClothParticleData.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8307887fbcfc830788 /* cloth/PxClothTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothTypes.h"; path = "../../../Include/cloth/PxClothTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8308007fbcfc830800 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8308687fbcfc830868 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8308d07fbcfc8308d0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8309387fbcfc830938 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8309a07fbcfc8309a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc830a087fbcfc830a08 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc830a707fbcfc830a70 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc830ad87fbcfc830ad8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc830b407fbcfc830b40 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc830ba87fbcfc830ba8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "core/src/PxAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXMetaData/core/src/PxAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc830c107fbcfc830c10 /* core/src/PxMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "core/src/PxMetaDataObjects.cpp"; path = "../../PhysXMetaData/core/src/PxMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb2fb02907feab2fb0290 /* PhysX */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysX"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDb31b70007feab31b7000 /* NpActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.h"; path = "../../PhysX/src/NpActor.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b70687feab31b7068 /* NpActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActorTemplate.h"; path = "../../PhysX/src/NpActorTemplate.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b70d07feab31b70d0 /* NpAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.h"; path = "../../PhysX/src/NpAggregate.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b71387feab31b7138 /* NpArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.h"; path = "../../PhysX/src/NpArticulation.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b71a07feab31b71a0 /* NpArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.h"; path = "../../PhysX/src/NpArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b72087feab31b7208 /* NpArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.h"; path = "../../PhysX/src/NpArticulationLink.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b72707feab31b7270 /* NpBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.h"; path = "../../PhysX/src/NpBatchQuery.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b72d87feab31b72d8 /* NpCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpCast.h"; path = "../../PhysX/src/NpCast.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b73407feab31b7340 /* NpConnector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConnector.h"; path = "../../PhysX/src/NpConnector.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b73a87feab31b73a8 /* NpConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.h"; path = "../../PhysX/src/NpConstraint.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b74107feab31b7410 /* NpFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.h"; path = "../../PhysX/src/NpFactory.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b74787feab31b7478 /* NpMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.h"; path = "../../PhysX/src/NpMaterial.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b74e07feab31b74e0 /* NpMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterialManager.h"; path = "../../PhysX/src/NpMaterialManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b75487feab31b7548 /* NpPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.h"; path = "../../PhysX/src/NpPhysics.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b75b07feab31b75b0 /* NpPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysicsInsertionCallback.h"; path = "../../PhysX/src/NpPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b76187feab31b7618 /* NpPtrTableStorageManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPtrTableStorageManager.h"; path = "../../PhysX/src/NpPtrTableStorageManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b76807feab31b7680 /* NpPvdSceneQueryCollector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.h"; path = "../../PhysX/src/NpPvdSceneQueryCollector.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b76e87feab31b76e8 /* NpQueryShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpQueryShared.h"; path = "../../PhysX/src/NpQueryShared.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b77507feab31b7750 /* NpReadCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.h"; path = "../../PhysX/src/NpReadCheck.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b77b87feab31b77b8 /* NpRigidActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplate.h"; path = "../../PhysX/src/NpRigidActorTemplate.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b78207feab31b7820 /* NpRigidActorTemplateInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplateInternal.h"; path = "../../PhysX/src/NpRigidActorTemplateInternal.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b78887feab31b7888 /* NpRigidBodyTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidBodyTemplate.h"; path = "../../PhysX/src/NpRigidBodyTemplate.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b78f07feab31b78f0 /* NpRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.h"; path = "../../PhysX/src/NpRigidDynamic.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b79587feab31b7958 /* NpRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.h"; path = "../../PhysX/src/NpRigidStatic.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b79c07feab31b79c0 /* NpScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.h"; path = "../../PhysX/src/NpScene.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b7a287feab31b7a28 /* NpSceneQueries.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.h"; path = "../../PhysX/src/NpSceneQueries.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b7a907feab31b7a90 /* NpShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.h"; path = "../../PhysX/src/NpShape.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b7af87feab31b7af8 /* NpShapeManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.h"; path = "../../PhysX/src/NpShapeManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b7b607feab31b7b60 /* NpSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.h"; path = "../../PhysX/src/NpSpatialIndex.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b7bc87feab31b7bc8 /* NpVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.h"; path = "../../PhysX/src/NpVolumeCache.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b7c307feab31b7c30 /* NpWriteCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.h"; path = "../../PhysX/src/NpWriteCheck.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b7c987feab31b7c98 /* PvdMetaDataBindingData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataBindingData.h"; path = "../../PhysX/src/PvdMetaDataBindingData.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b7d007feab31b7d00 /* PvdMetaDataPvdBinding.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.h"; path = "../../PhysX/src/PvdMetaDataPvdBinding.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b7d687feab31b7d68 /* PvdPhysicsClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.h"; path = "../../PhysX/src/PvdPhysicsClient.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b7dd07feab31b7dd0 /* PvdTypeNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdTypeNames.h"; path = "../../PhysX/src/PvdTypeNames.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b7e387feab31b7e38 /* NpActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.cpp"; path = "../../PhysX/src/NpActor.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31b7ea07feab31b7ea0 /* NpAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.cpp"; path = "../../PhysX/src/NpAggregate.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31b7f087feab31b7f08 /* NpArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.cpp"; path = "../../PhysX/src/NpArticulation.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31b7f707feab31b7f70 /* NpArticulationJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.cpp"; path = "../../PhysX/src/NpArticulationJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31b7fd87feab31b7fd8 /* NpArticulationLink.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.cpp"; path = "../../PhysX/src/NpArticulationLink.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31b80407feab31b8040 /* NpBatchQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.cpp"; path = "../../PhysX/src/NpBatchQuery.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31b80a87feab31b80a8 /* NpConstraint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.cpp"; path = "../../PhysX/src/NpConstraint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31b81107feab31b8110 /* NpFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.cpp"; path = "../../PhysX/src/NpFactory.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31b81787feab31b8178 /* NpMaterial.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.cpp"; path = "../../PhysX/src/NpMaterial.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31b81e07feab31b81e0 /* NpMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMetaData.cpp"; path = "../../PhysX/src/NpMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31b82487feab31b8248 /* NpPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.cpp"; path = "../../PhysX/src/NpPhysics.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31b82b07feab31b82b0 /* NpPvdSceneQueryCollector.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.cpp"; path = "../../PhysX/src/NpPvdSceneQueryCollector.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31b83187feab31b8318 /* NpReadCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.cpp"; path = "../../PhysX/src/NpReadCheck.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31b83807feab31b8380 /* NpRigidDynamic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.cpp"; path = "../../PhysX/src/NpRigidDynamic.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31b83e87feab31b83e8 /* NpRigidStatic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.cpp"; path = "../../PhysX/src/NpRigidStatic.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31b84507feab31b8450 /* NpScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.cpp"; path = "../../PhysX/src/NpScene.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31b84b87feab31b84b8 /* NpSceneQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.cpp"; path = "../../PhysX/src/NpSceneQueries.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31b85207feab31b8520 /* NpSerializerAdapter.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSerializerAdapter.cpp"; path = "../../PhysX/src/NpSerializerAdapter.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31b85887feab31b8588 /* NpShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.cpp"; path = "../../PhysX/src/NpShape.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31b85f07feab31b85f0 /* NpShapeManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.cpp"; path = "../../PhysX/src/NpShapeManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31b86587feab31b8658 /* NpSpatialIndex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.cpp"; path = "../../PhysX/src/NpSpatialIndex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31b86c07feab31b86c0 /* NpVolumeCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.cpp"; path = "../../PhysX/src/NpVolumeCache.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31b87287feab31b8728 /* NpWriteCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.cpp"; path = "../../PhysX/src/NpWriteCheck.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31b87907feab31b8790 /* PvdMetaDataPvdBinding.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.cpp"; path = "../../PhysX/src/PvdMetaDataPvdBinding.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31b87f87feab31b87f8 /* PvdPhysicsClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.cpp"; path = "../../PhysX/src/PvdPhysicsClient.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31b88607feab31b8860 /* particles/NpParticleBaseTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleBaseTemplate.h"; path = "../../PhysX/src/particles/NpParticleBaseTemplate.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b88c87feab31b88c8 /* particles/NpParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.h"; path = "../../PhysX/src/particles/NpParticleFluid.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b89307feab31b8930 /* particles/NpParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluidReadData.h"; path = "../../PhysX/src/particles/NpParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b89987feab31b8998 /* particles/NpParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.h"; path = "../../PhysX/src/particles/NpParticleSystem.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b8a007feab31b8a00 /* particles/NpParticleFluid.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.cpp"; path = "../../PhysX/src/particles/NpParticleFluid.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31b8a687feab31b8a68 /* particles/NpParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.cpp"; path = "../../PhysX/src/particles/NpParticleSystem.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31b8ad07feab31b8ad0 /* buffering/ScbActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.h"; path = "../../PhysX/src/buffering/ScbActor.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b8b387feab31b8b38 /* buffering/ScbAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.h"; path = "../../PhysX/src/buffering/ScbAggregate.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b8ba07feab31b8ba0 /* buffering/ScbArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulation.h"; path = "../../PhysX/src/buffering/ScbArticulation.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b8c087feab31b8c08 /* buffering/ScbArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulationJoint.h"; path = "../../PhysX/src/buffering/ScbArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b8c707feab31b8c70 /* buffering/ScbBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.h"; path = "../../PhysX/src/buffering/ScbBase.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b8cd87feab31b8cd8 /* buffering/ScbBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBody.h"; path = "../../PhysX/src/buffering/ScbBody.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b8d407feab31b8d40 /* buffering/ScbCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.h"; path = "../../PhysX/src/buffering/ScbCloth.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b8da87feab31b8da8 /* buffering/ScbConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbConstraint.h"; path = "../../PhysX/src/buffering/ScbConstraint.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b8e107feab31b8e10 /* buffering/ScbDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbDefs.h"; path = "../../PhysX/src/buffering/ScbDefs.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b8e787feab31b8e78 /* buffering/ScbNpDeps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbNpDeps.h"; path = "../../PhysX/src/buffering/ScbNpDeps.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b8ee07feab31b8ee0 /* buffering/ScbParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.h"; path = "../../PhysX/src/buffering/ScbParticleSystem.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b8f487feab31b8f48 /* buffering/ScbRigidObject.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidObject.h"; path = "../../PhysX/src/buffering/ScbRigidObject.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b8fb07feab31b8fb0 /* buffering/ScbRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidStatic.h"; path = "../../PhysX/src/buffering/ScbRigidStatic.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b90187feab31b9018 /* buffering/ScbScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.h"; path = "../../PhysX/src/buffering/ScbScene.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b90807feab31b9080 /* buffering/ScbSceneBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbSceneBuffer.h"; path = "../../PhysX/src/buffering/ScbSceneBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b90e87feab31b90e8 /* buffering/ScbScenePvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.h"; path = "../../PhysX/src/buffering/ScbScenePvdClient.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b91507feab31b9150 /* buffering/ScbShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.h"; path = "../../PhysX/src/buffering/ScbShape.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b91b87feab31b91b8 /* buffering/ScbType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbType.h"; path = "../../PhysX/src/buffering/ScbType.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b92207feab31b9220 /* buffering/ScbActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.cpp"; path = "../../PhysX/src/buffering/ScbActor.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31b92887feab31b9288 /* buffering/ScbAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.cpp"; path = "../../PhysX/src/buffering/ScbAggregate.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31b92f07feab31b92f0 /* buffering/ScbBase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.cpp"; path = "../../PhysX/src/buffering/ScbBase.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31b93587feab31b9358 /* buffering/ScbCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.cpp"; path = "../../PhysX/src/buffering/ScbCloth.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31b93c07feab31b93c0 /* buffering/ScbMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbMetaData.cpp"; path = "../../PhysX/src/buffering/ScbMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31b94287feab31b9428 /* buffering/ScbParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.cpp"; path = "../../PhysX/src/buffering/ScbParticleSystem.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31b94907feab31b9490 /* buffering/ScbScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.cpp"; path = "../../PhysX/src/buffering/ScbScene.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31b94f87feab31b94f8 /* buffering/ScbScenePvdClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.cpp"; path = "../../PhysX/src/buffering/ScbScenePvdClient.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31b95607feab31b9560 /* buffering/ScbShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.cpp"; path = "../../PhysX/src/buffering/ScbShape.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31b95c87feab31b95c8 /* cloth/NpCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.h"; path = "../../PhysX/src/cloth/NpCloth.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b96307feab31b9630 /* cloth/NpClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.h"; path = "../../PhysX/src/cloth/NpClothFabric.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b96987feab31b9698 /* cloth/NpClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.h"; path = "../../PhysX/src/cloth/NpClothParticleData.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b97007feab31b9700 /* cloth/NpCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.cpp"; path = "../../PhysX/src/cloth/NpCloth.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31b97687feab31b9768 /* cloth/NpClothFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.cpp"; path = "../../PhysX/src/cloth/NpClothFabric.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31b97d07feab31b97d0 /* cloth/NpClothParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.cpp"; path = "../../PhysX/src/cloth/NpClothParticleData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31b98387feab31b9838 /* ../../ImmediateMode/src/NpImmediateMode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "../../ImmediateMode/src/NpImmediateMode.cpp"; path = "../../ImmediateMode/src/NpImmediateMode.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31b9a007feab31b9a00 /* PxActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxActor.h"; path = "../../../Include/PxActor.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b9a687feab31b9a68 /* PxAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAggregate.h"; path = "../../../Include/PxAggregate.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b9ad07feab31b9ad0 /* PxArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulation.h"; path = "../../../Include/PxArticulation.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b9b387feab31b9b38 /* PxArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationJoint.h"; path = "../../../Include/PxArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b9ba07feab31b9ba0 /* PxArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationLink.h"; path = "../../../Include/PxArticulationLink.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b9c087feab31b9c08 /* PxBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQuery.h"; path = "../../../Include/PxBatchQuery.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b9c707feab31b9c70 /* PxBatchQueryDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQueryDesc.h"; path = "../../../Include/PxBatchQueryDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b9cd87feab31b9cd8 /* PxBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhase.h"; path = "../../../Include/PxBroadPhase.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b9d407feab31b9d40 /* PxClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClient.h"; path = "../../../Include/PxClient.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b9da87feab31b9da8 /* PxConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraint.h"; path = "../../../Include/PxConstraint.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b9e107feab31b9e10 /* PxConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintDesc.h"; path = "../../../Include/PxConstraintDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b9e787feab31b9e78 /* PxContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContact.h"; path = "../../../Include/PxContact.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b9ee07feab31b9ee0 /* PxContactModifyCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContactModifyCallback.h"; path = "../../../Include/PxContactModifyCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b9f487feab31b9f48 /* PxDeletionListener.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDeletionListener.h"; path = "../../../Include/PxDeletionListener.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b9fb07feab31b9fb0 /* PxFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFiltering.h"; path = "../../../Include/PxFiltering.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31ba0187feab31ba018 /* PxForceMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxForceMode.h"; path = "../../../Include/PxForceMode.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31ba0807feab31ba080 /* PxImmediateMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxImmediateMode.h"; path = "../../../Include/PxImmediateMode.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31ba0e87feab31ba0e8 /* PxLockedData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxLockedData.h"; path = "../../../Include/PxLockedData.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31ba1507feab31ba150 /* PxMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMaterial.h"; path = "../../../Include/PxMaterial.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31ba1b87feab31ba1b8 /* PxPhysXConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysXConfig.h"; path = "../../../Include/PxPhysXConfig.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31ba2207feab31ba220 /* PxPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysics.h"; path = "../../../Include/PxPhysics.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31ba2887feab31ba288 /* PxPhysicsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsAPI.h"; path = "../../../Include/PxPhysicsAPI.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31ba2f07feab31ba2f0 /* PxPhysicsSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsSerialization.h"; path = "../../../Include/PxPhysicsSerialization.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31ba3587feab31ba358 /* PxPhysicsVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsVersion.h"; path = "../../../Include/PxPhysicsVersion.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31ba3c07feab31ba3c0 /* PxPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPruningStructure.h"; path = "../../../Include/PxPruningStructure.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31ba4287feab31ba428 /* PxQueryFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryFiltering.h"; path = "../../../Include/PxQueryFiltering.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31ba4907feab31ba490 /* PxQueryReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryReport.h"; path = "../../../Include/PxQueryReport.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31ba4f87feab31ba4f8 /* PxRigidActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActor.h"; path = "../../../Include/PxRigidActor.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31ba5607feab31ba560 /* PxRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBody.h"; path = "../../../Include/PxRigidBody.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31ba5c87feab31ba5c8 /* PxRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidDynamic.h"; path = "../../../Include/PxRigidDynamic.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31ba6307feab31ba630 /* PxRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidStatic.h"; path = "../../../Include/PxRigidStatic.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31ba6987feab31ba698 /* PxScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxScene.h"; path = "../../../Include/PxScene.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31ba7007feab31ba700 /* PxSceneDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneDesc.h"; path = "../../../Include/PxSceneDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31ba7687feab31ba768 /* PxSceneLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneLock.h"; path = "../../../Include/PxSceneLock.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31ba7d07feab31ba7d0 /* PxShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShape.h"; path = "../../../Include/PxShape.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31ba8387feab31ba838 /* PxSimulationEventCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationEventCallback.h"; path = "../../../Include/PxSimulationEventCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31ba8a07feab31ba8a0 /* PxSimulationStatistics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationStatistics.h"; path = "../../../Include/PxSimulationStatistics.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31ba9087feab31ba908 /* PxSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSpatialIndex.h"; path = "../../../Include/PxSpatialIndex.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31ba9707feab31ba970 /* PxVisualizationParameter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVisualizationParameter.h"; path = "../../../Include/PxVisualizationParameter.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31ba9d87feab31ba9d8 /* PxVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVolumeCache.h"; path = "../../../Include/PxVolumeCache.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31baa407feab31baa40 /* particles/PxParticleBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBase.h"; path = "../../../Include/particles/PxParticleBase.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31baaa87feab31baaa8 /* particles/PxParticleBaseFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBaseFlag.h"; path = "../../../Include/particles/PxParticleBaseFlag.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31bab107feab31bab10 /* particles/PxParticleCreationData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleCreationData.h"; path = "../../../Include/particles/PxParticleCreationData.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31bab787feab31bab78 /* particles/PxParticleFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFlag.h"; path = "../../../Include/particles/PxParticleFlag.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31babe07feab31babe0 /* particles/PxParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluid.h"; path = "../../../Include/particles/PxParticleFluid.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31bac487feab31bac48 /* particles/PxParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluidReadData.h"; path = "../../../Include/particles/PxParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31bacb07feab31bacb0 /* particles/PxParticleReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleReadData.h"; path = "../../../Include/particles/PxParticleReadData.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31bad187feab31bad18 /* particles/PxParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleSystem.h"; path = "../../../Include/particles/PxParticleSystem.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31bad807feab31bad80 /* pvd/PxPvdSceneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pvd/PxPvdSceneClient.h"; path = "../../../Include/pvd/PxPvdSceneClient.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31bade87feab31bade8 /* cloth/PxCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxCloth.h"; path = "../../../Include/cloth/PxCloth.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31bae507feab31bae50 /* cloth/PxClothCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothCollisionData.h"; path = "../../../Include/cloth/PxClothCollisionData.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31baeb87feab31baeb8 /* cloth/PxClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothFabric.h"; path = "../../../Include/cloth/PxClothFabric.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31baf207feab31baf20 /* cloth/PxClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothParticleData.h"; path = "../../../Include/cloth/PxClothParticleData.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31baf887feab31baf88 /* cloth/PxClothTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothTypes.h"; path = "../../../Include/cloth/PxClothTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31bb0007feab31bb000 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31bb0687feab31bb068 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31bb0d07feab31bb0d0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31bb1387feab31bb138 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31bb1a07feab31bb1a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31bb2087feab31bb208 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31bb2707feab31bb270 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31bb2d87feab31bb2d8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31bb3407feab31bb340 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31bb3a87feab31bb3a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "core/src/PxAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXMetaData/core/src/PxAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31bb4107feab31bb410 /* 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 */ - FFF2fc0690807fbcfc069080 /* Resources */ = { + FFF2b2fb02907feab2fb0290 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -233,7 +233,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCfc0690807fbcfc069080 /* Frameworks */ = { + FFFCb2fb02907feab2fb0290 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -243,52 +243,52 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8fc0690807fbcfc069080 /* Sources */ = { + FFF8b2fb02907feab2fb0290 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFfc8326387fbcfc832638, - FFFFfc8326a07fbcfc8326a0, - FFFFfc8327087fbcfc832708, - FFFFfc8327707fbcfc832770, - FFFFfc8327d87fbcfc8327d8, - FFFFfc8328407fbcfc832840, - FFFFfc8328a87fbcfc8328a8, - FFFFfc8329107fbcfc832910, - FFFFfc8329787fbcfc832978, - FFFFfc8329e07fbcfc8329e0, - FFFFfc832a487fbcfc832a48, - FFFFfc832ab07fbcfc832ab0, - FFFFfc832b187fbcfc832b18, - FFFFfc832b807fbcfc832b80, - FFFFfc832be87fbcfc832be8, - FFFFfc832c507fbcfc832c50, - FFFFfc832cb87fbcfc832cb8, - FFFFfc832d207fbcfc832d20, - FFFFfc832d887fbcfc832d88, - FFFFfc832df07fbcfc832df0, - FFFFfc832e587fbcfc832e58, - FFFFfc832ec07fbcfc832ec0, - FFFFfc832f287fbcfc832f28, - FFFFfc832f907fbcfc832f90, - FFFFfc832ff87fbcfc832ff8, - FFFFfc8332007fbcfc833200, - FFFFfc8332687fbcfc833268, - FFFFfc833a207fbcfc833a20, - FFFFfc833a887fbcfc833a88, - FFFFfc833af07fbcfc833af0, - FFFFfc833b587fbcfc833b58, - FFFFfc833bc07fbcfc833bc0, - FFFFfc833c287fbcfc833c28, - FFFFfc833c907fbcfc833c90, - FFFFfc833cf87fbcfc833cf8, - FFFFfc833d607fbcfc833d60, - FFFFfc833f007fbcfc833f00, - FFFFfc833f687fbcfc833f68, - FFFFfc833fd07fbcfc833fd0, - FFFFfc8340387fbcfc834038, - FFFFfc830ba87fbcfc830ba8, - FFFFfc830c107fbcfc830c10, + FFFFb31b7e387feab31b7e38, + FFFFb31b7ea07feab31b7ea0, + FFFFb31b7f087feab31b7f08, + FFFFb31b7f707feab31b7f70, + FFFFb31b7fd87feab31b7fd8, + FFFFb31b80407feab31b8040, + FFFFb31b80a87feab31b80a8, + FFFFb31b81107feab31b8110, + FFFFb31b81787feab31b8178, + FFFFb31b81e07feab31b81e0, + FFFFb31b82487feab31b8248, + FFFFb31b82b07feab31b82b0, + FFFFb31b83187feab31b8318, + FFFFb31b83807feab31b8380, + FFFFb31b83e87feab31b83e8, + FFFFb31b84507feab31b8450, + FFFFb31b84b87feab31b84b8, + FFFFb31b85207feab31b8520, + FFFFb31b85887feab31b8588, + FFFFb31b85f07feab31b85f0, + FFFFb31b86587feab31b8658, + FFFFb31b86c07feab31b86c0, + FFFFb31b87287feab31b8728, + FFFFb31b87907feab31b8790, + FFFFb31b87f87feab31b87f8, + FFFFb31b8a007feab31b8a00, + FFFFb31b8a687feab31b8a68, + FFFFb31b92207feab31b9220, + FFFFb31b92887feab31b9288, + FFFFb31b92f07feab31b92f0, + FFFFb31b93587feab31b9358, + FFFFb31b93c07feab31b93c0, + FFFFb31b94287feab31b9428, + FFFFb31b94907feab31b9490, + FFFFb31b94f87feab31b94f8, + FFFFb31b95607feab31b9560, + FFFFb31b97007feab31b9700, + FFFFb31b97687feab31b9768, + FFFFb31b97d07feab31b97d0, + FFFFb31b98387feab31b9838, + FFFFb31bb3a87feab31bb3a8, + FFFFb31bb4107feab31bb410, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -297,112 +297,112 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF4fc0721c07fbcfc0721c0 /* PBXTargetDependency */ = { + FFF4b2fc30c07feab2fc30c0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAfab277107fbcfab27710 /* LowLevel */; - targetProxy = FFF5fab277107fbcfab27710 /* PBXContainerItemProxy */; + target = FFFAb2d343407feab2d34340 /* LowLevel */; + targetProxy = FFF5b2d343407feab2d34340 /* PBXContainerItemProxy */; }; - FFF4fc0727407fbcfc072740 /* PBXTargetDependency */ = { + FFF4b2fbe2e07feab2fbe2e0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAfab514407fbcfab51440 /* LowLevelAABB */; - targetProxy = FFF5fab514407fbcfab51440 /* PBXContainerItemProxy */; + target = FFFAb17424907feab1742490 /* LowLevelAABB */; + targetProxy = FFF5b17424907feab1742490 /* PBXContainerItemProxy */; }; - FFF4fc0716c07fbcfc0716c0 /* PBXTargetDependency */ = { + FFF4b2fc3a007feab2fc3a00 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAfab48c407fbcfab48c40 /* LowLevelCloth */; - targetProxy = FFF5fab48c407fbcfab48c40 /* PBXContainerItemProxy */; + target = FFFAb2d607707feab2d60770 /* LowLevelCloth */; + targetProxy = FFF5b2d607707feab2d60770 /* PBXContainerItemProxy */; }; - FFF4fc0727a07fbcfc0727a0 /* PBXTargetDependency */ = { + FFF4b2fc39a07feab2fc39a0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAfaef20807fbcfaef2080 /* LowLevelDynamics */; - targetProxy = FFF5faef20807fbcfaef2080 /* PBXContainerItemProxy */; + target = FFFAb1761b707feab1761b70 /* LowLevelDynamics */; + targetProxy = FFF5b1761b707feab1761b70 /* PBXContainerItemProxy */; }; - FFF4fc0d6b507fbcfc0d6b50 /* PBXTargetDependency */ = { + FFF4b2fc04d07feab2fc04d0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAfc003cb07fbcfc003cb0 /* LowLevelParticles */; - targetProxy = FFF5fc003cb07fbcfc003cb0 /* PBXContainerItemProxy */; + target = FFFAb14554c07feab14554c0 /* LowLevelParticles */; + targetProxy = FFF5b14554c07feab14554c0 /* PBXContainerItemProxy */; }; - FFF4fc0750707fbcfc075070 /* PBXTargetDependency */ = { + FFF4b2fc30607feab2fc3060 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAfa8913407fbcfa891340 /* PhysXCommon */; - targetProxy = FFF5fa8913407fbcfa891340 /* PBXContainerItemProxy */; + target = FFFAb2a152c07feab2a152c0 /* PhysXCommon */; + targetProxy = FFF5b2a152c07feab2a152c0 /* PBXContainerItemProxy */; }; - FFF4fc0693707fbcfc069370 /* PBXTargetDependency */ = { + FFF4b2fb02607feab2fb0260 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAfa87f5207fbcfa87f520 /* PxFoundation */; - targetProxy = FFF5fa87f5207fbcfa87f520 /* PBXContainerItemProxy */; + target = FFFAb2a669507feab2a66950 /* PxFoundation */; + targetProxy = FFF5b2a669507feab2a66950 /* PBXContainerItemProxy */; }; - FFF4fc0690207fbcfc069020 /* PBXTargetDependency */ = { + FFF4b2fb02007feab2fb0200 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAfab095c07fbcfab095c0 /* PxPvdSDK */; - targetProxy = FFF5fab095c07fbcfab095c0 /* PBXContainerItemProxy */; + target = FFFAb147f4707feab147f470 /* PxPvdSDK */; + targetProxy = FFF5b147f4707feab147f470 /* PBXContainerItemProxy */; }; - FFF4fc0e5aa07fbcfc0e5aa0 /* PBXTargetDependency */ = { + FFF4b2fc41507feab2fc4150 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAfc2149407fbcfc214940 /* PxTask */; - targetProxy = FFF5fc2149407fbcfc214940 /* PBXContainerItemProxy */; + target = FFFAb2d743307feab2d74330 /* PxTask */; + targetProxy = FFF5b2d743307feab2d74330 /* PBXContainerItemProxy */; }; - FFF4fc0d6bb07fbcfc0d6bb0 /* PBXTargetDependency */ = { + FFF4b2fc05307feab2fc0530 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAfc0985207fbcfc098520 /* SceneQuery */; - targetProxy = FFF5fc0985207fbcfc098520 /* PBXContainerItemProxy */; + target = FFFAb2fe3bd07feab2fe3bd0 /* SceneQuery */; + targetProxy = FFF5b2fe3bd07feab2fe3bd0 /* PBXContainerItemProxy */; }; - FFF4fc0e5a707fbcfc0e5a70 /* PBXTargetDependency */ = { + FFF4b2fc05907feab2fc0590 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAfc08d4e07fbcfc08d4e0 /* SimulationController */; - targetProxy = FFF5fc08d4e07fbcfc08d4e0 /* PBXContainerItemProxy */; + target = FFFAb2fe82c07feab2fe82c0 /* SimulationController */; + targetProxy = FFF5b2fe82c07feab2fe82c0 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PhysXCharacterKinematic */ - FFFFfc0e71107fbcfc0e7110 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFDfc0c74907fbcfc0c7490 /* PhysXExtensions */; }; - FFFFfc8388787fbcfc838878 /* CctBoxController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8388787fbcfc838878 /* CctBoxController.cpp */; }; - FFFFfc8388e07fbcfc8388e0 /* CctCapsuleController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8388e07fbcfc8388e0 /* CctCapsuleController.cpp */; }; - FFFFfc8389487fbcfc838948 /* CctCharacterController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8389487fbcfc838948 /* CctCharacterController.cpp */; }; - FFFFfc8389b07fbcfc8389b0 /* CctCharacterControllerCallbacks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8389b07fbcfc8389b0 /* CctCharacterControllerCallbacks.cpp */; }; - FFFFfc838a187fbcfc838a18 /* CctCharacterControllerManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc838a187fbcfc838a18 /* CctCharacterControllerManager.cpp */; }; - FFFFfc838a807fbcfc838a80 /* CctController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc838a807fbcfc838a80 /* CctController.cpp */; }; - FFFFfc838ae87fbcfc838ae8 /* CctObstacleContext.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc838ae87fbcfc838ae8 /* CctObstacleContext.cpp */; }; - FFFFfc838b507fbcfc838b50 /* CctSweptBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc838b507fbcfc838b50 /* CctSweptBox.cpp */; }; - FFFFfc838bb87fbcfc838bb8 /* CctSweptCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc838bb87fbcfc838bb8 /* CctSweptCapsule.cpp */; }; - FFFFfc838c207fbcfc838c20 /* CctSweptVolume.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc838c207fbcfc838c20 /* CctSweptVolume.cpp */; }; + FFFFb2fc58b07feab2fc58b0 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFDb2fd2b007feab2fd2b00 /* PhysXExtensions */; }; + FFFFb31b5a787feab31b5a78 /* CctBoxController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31b5a787feab31b5a78 /* CctBoxController.cpp */; }; + FFFFb31b5ae07feab31b5ae0 /* CctCapsuleController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31b5ae07feab31b5ae0 /* CctCapsuleController.cpp */; }; + FFFFb31b5b487feab31b5b48 /* CctCharacterController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31b5b487feab31b5b48 /* CctCharacterController.cpp */; }; + FFFFb31b5bb07feab31b5bb0 /* CctCharacterControllerCallbacks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31b5bb07feab31b5bb0 /* CctCharacterControllerCallbacks.cpp */; }; + FFFFb31b5c187feab31b5c18 /* CctCharacterControllerManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31b5c187feab31b5c18 /* CctCharacterControllerManager.cpp */; }; + FFFFb31b5c807feab31b5c80 /* CctController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31b5c807feab31b5c80 /* CctController.cpp */; }; + FFFFb31b5ce87feab31b5ce8 /* CctObstacleContext.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31b5ce87feab31b5ce8 /* CctObstacleContext.cpp */; }; + FFFFb31b5d507feab31b5d50 /* CctSweptBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31b5d507feab31b5d50 /* CctSweptBox.cpp */; }; + FFFFb31b5db87feab31b5db8 /* CctSweptCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31b5db87feab31b5db8 /* CctSweptCapsule.cpp */; }; + FFFFb31b5e207feab31b5e20 /* CctSweptVolume.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31b5e207feab31b5e20 /* CctSweptVolume.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDfc0717b07fbcfc0717b0 /* PhysXCharacterKinematic */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCharacterKinematic"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDfc0760a07fbcfc0760a0 /* PxBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBoxController.h"; path = "../../../Include/characterkinematic/PxBoxController.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc0761087fbcfc076108 /* PxCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCapsuleController.h"; path = "../../../Include/characterkinematic/PxCapsuleController.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc0761707fbcfc076170 /* PxCharacter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCharacter.h"; path = "../../../Include/characterkinematic/PxCharacter.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc0761d87fbcfc0761d8 /* PxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxController.h"; path = "../../../Include/characterkinematic/PxController.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc0762407fbcfc076240 /* PxControllerBehavior.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerBehavior.h"; path = "../../../Include/characterkinematic/PxControllerBehavior.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc0762a87fbcfc0762a8 /* PxControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerManager.h"; path = "../../../Include/characterkinematic/PxControllerManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc0763107fbcfc076310 /* PxControllerObstacles.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerObstacles.h"; path = "../../../Include/characterkinematic/PxControllerObstacles.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc0763787fbcfc076378 /* PxExtended.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtended.h"; path = "../../../Include/characterkinematic/PxExtended.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8384007fbcfc838400 /* CctBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.h"; path = "../../PhysXCharacterKinematic/src/CctBoxController.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8384687fbcfc838468 /* CctCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.h"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8384d07fbcfc8384d0 /* CctCharacterController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8385387fbcfc838538 /* CctCharacterControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8385a07fbcfc8385a0 /* CctController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.h"; path = "../../PhysXCharacterKinematic/src/CctController.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8386087fbcfc838608 /* CctInternalStructs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctInternalStructs.h"; path = "../../PhysXCharacterKinematic/src/CctInternalStructs.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8386707fbcfc838670 /* CctObstacleContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.h"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8386d87fbcfc8386d8 /* CctSweptBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.h"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8387407fbcfc838740 /* CctSweptCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.h"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8387a87fbcfc8387a8 /* CctSweptVolume.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.h"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8388107fbcfc838810 /* CctUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctUtils.h"; path = "../../PhysXCharacterKinematic/src/CctUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8388787fbcfc838878 /* CctBoxController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.cpp"; path = "../../PhysXCharacterKinematic/src/CctBoxController.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc8388e07fbcfc8388e0 /* CctCapsuleController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc8389487fbcfc838948 /* CctCharacterController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc8389b07fbcfc8389b0 /* CctCharacterControllerCallbacks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerCallbacks.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerCallbacks.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc838a187fbcfc838a18 /* CctCharacterControllerManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc838a807fbcfc838a80 /* CctController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.cpp"; path = "../../PhysXCharacterKinematic/src/CctController.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc838ae87fbcfc838ae8 /* CctObstacleContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.cpp"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc838b507fbcfc838b50 /* CctSweptBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc838bb87fbcfc838bb8 /* CctSweptCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc838c207fbcfc838c20 /* CctSweptVolume.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb2fc41607feab2fc4160 /* PhysXCharacterKinematic */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCharacterKinematic"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDb2fc71607feab2fc7160 /* PxBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBoxController.h"; path = "../../../Include/characterkinematic/PxBoxController.h"; sourceTree = SOURCE_ROOT; }; + FFFDb2fc71c87feab2fc71c8 /* PxCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCapsuleController.h"; path = "../../../Include/characterkinematic/PxCapsuleController.h"; sourceTree = SOURCE_ROOT; }; + FFFDb2fc72307feab2fc7230 /* PxCharacter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCharacter.h"; path = "../../../Include/characterkinematic/PxCharacter.h"; sourceTree = SOURCE_ROOT; }; + FFFDb2fc72987feab2fc7298 /* PxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxController.h"; path = "../../../Include/characterkinematic/PxController.h"; sourceTree = SOURCE_ROOT; }; + FFFDb2fc73007feab2fc7300 /* PxControllerBehavior.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerBehavior.h"; path = "../../../Include/characterkinematic/PxControllerBehavior.h"; sourceTree = SOURCE_ROOT; }; + FFFDb2fc73687feab2fc7368 /* PxControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerManager.h"; path = "../../../Include/characterkinematic/PxControllerManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDb2fc73d07feab2fc73d0 /* PxControllerObstacles.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerObstacles.h"; path = "../../../Include/characterkinematic/PxControllerObstacles.h"; sourceTree = SOURCE_ROOT; }; + FFFDb2fc74387feab2fc7438 /* PxExtended.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtended.h"; path = "../../../Include/characterkinematic/PxExtended.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b56007feab31b5600 /* CctBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.h"; path = "../../PhysXCharacterKinematic/src/CctBoxController.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b56687feab31b5668 /* CctCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.h"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b56d07feab31b56d0 /* CctCharacterController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b57387feab31b5738 /* CctCharacterControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b57a07feab31b57a0 /* CctController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.h"; path = "../../PhysXCharacterKinematic/src/CctController.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b58087feab31b5808 /* CctInternalStructs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctInternalStructs.h"; path = "../../PhysXCharacterKinematic/src/CctInternalStructs.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b58707feab31b5870 /* CctObstacleContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.h"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b58d87feab31b58d8 /* CctSweptBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.h"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b59407feab31b5940 /* CctSweptCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.h"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b59a87feab31b59a8 /* CctSweptVolume.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.h"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b5a107feab31b5a10 /* CctUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctUtils.h"; path = "../../PhysXCharacterKinematic/src/CctUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31b5a787feab31b5a78 /* CctBoxController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.cpp"; path = "../../PhysXCharacterKinematic/src/CctBoxController.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31b5ae07feab31b5ae0 /* CctCapsuleController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31b5b487feab31b5b48 /* CctCharacterController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31b5bb07feab31b5bb0 /* CctCharacterControllerCallbacks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerCallbacks.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerCallbacks.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31b5c187feab31b5c18 /* CctCharacterControllerManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31b5c807feab31b5c80 /* CctController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.cpp"; path = "../../PhysXCharacterKinematic/src/CctController.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31b5ce87feab31b5ce8 /* CctObstacleContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.cpp"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31b5d507feab31b5d50 /* CctSweptBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31b5db87feab31b5db8 /* CctSweptCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31b5e207feab31b5e20 /* CctSweptVolume.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2fc0717b07fbcfc0717b0 /* Resources */ = { + FFF2b2fc41607feab2fc4160 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -412,7 +412,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCfc0717b07fbcfc0717b0 /* Frameworks */ = { + FFFCb2fc41607feab2fc4160 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -422,20 +422,20 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8fc0717b07fbcfc0717b0 /* Sources */ = { + FFF8b2fc41607feab2fc4160 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFfc8388787fbcfc838878, - FFFFfc8388e07fbcfc8388e0, - FFFFfc8389487fbcfc838948, - FFFFfc8389b07fbcfc8389b0, - FFFFfc838a187fbcfc838a18, - FFFFfc838a807fbcfc838a80, - FFFFfc838ae87fbcfc838ae8, - FFFFfc838b507fbcfc838b50, - FFFFfc838bb87fbcfc838bb8, - FFFFfc838c207fbcfc838c20, + FFFFb31b5a787feab31b5a78, + FFFFb31b5ae07feab31b5ae0, + FFFFb31b5b487feab31b5b48, + FFFFb31b5bb07feab31b5bb0, + FFFFb31b5c187feab31b5c18, + FFFFb31b5c807feab31b5c80, + FFFFb31b5ce87feab31b5ce8, + FFFFb31b5d507feab31b5d50, + FFFFb31b5db87feab31b5db8, + FFFFb31b5e207feab31b5e20, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -444,91 +444,91 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF4fc0760107fbcfc076010 /* PBXTargetDependency */ = { + FFF4b2fc67907feab2fc6790 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAfa8913407fbcfa891340 /* PhysXCommon */; - targetProxy = FFF5fa8913407fbcfa891340 /* PBXContainerItemProxy */; + target = FFFAb2a152c07feab2a152c0 /* PhysXCommon */; + targetProxy = FFF5b2a152c07feab2a152c0 /* PBXContainerItemProxy */; }; - FFF4fc0e71107fbcfc0e7110 /* PBXTargetDependency */ = { + FFF4b2fc58b07feab2fc58b0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAfc0c74907fbcfc0c7490 /* PhysXExtensions */; - targetProxy = FFF5fc0c74907fbcfc0c7490 /* PBXContainerItemProxy */; + target = FFFAb2fd2b007feab2fd2b00 /* PhysXExtensions */; + targetProxy = FFF5b2fd2b007feab2fd2b00 /* PBXContainerItemProxy */; }; - FFF4fc0733907fbcfc073390 /* PBXTargetDependency */ = { + FFF4b2fc5ee07feab2fc5ee0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAfa87f5207fbcfa87f520 /* PxFoundation */; - targetProxy = FFF5fa87f5207fbcfa87f520 /* PBXContainerItemProxy */; + target = FFFAb2a669507feab2a66950 /* PxFoundation */; + targetProxy = FFF5b2a669507feab2a66950 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PhysXVehicle */ - FFFFfc83d6087fbcfc83d608 /* PxVehicleComponents.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83d6087fbcfc83d608 /* PxVehicleComponents.cpp */; }; - FFFFfc83d6707fbcfc83d670 /* PxVehicleDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83d6707fbcfc83d670 /* PxVehicleDrive.cpp */; }; - FFFFfc83d6d87fbcfc83d6d8 /* PxVehicleDrive4W.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83d6d87fbcfc83d6d8 /* PxVehicleDrive4W.cpp */; }; - FFFFfc83d7407fbcfc83d740 /* PxVehicleDriveNW.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83d7407fbcfc83d740 /* PxVehicleDriveNW.cpp */; }; - FFFFfc83d7a87fbcfc83d7a8 /* PxVehicleDriveTank.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83d7a87fbcfc83d7a8 /* PxVehicleDriveTank.cpp */; }; - FFFFfc83d8107fbcfc83d810 /* PxVehicleMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83d8107fbcfc83d810 /* PxVehicleMetaData.cpp */; }; - FFFFfc83d8787fbcfc83d878 /* PxVehicleNoDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83d8787fbcfc83d878 /* PxVehicleNoDrive.cpp */; }; - FFFFfc83d8e07fbcfc83d8e0 /* PxVehicleSDK.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83d8e07fbcfc83d8e0 /* PxVehicleSDK.cpp */; }; - FFFFfc83d9487fbcfc83d948 /* PxVehicleSerialization.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83d9487fbcfc83d948 /* PxVehicleSerialization.cpp */; }; - FFFFfc83d9b07fbcfc83d9b0 /* PxVehicleSuspWheelTire4.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83d9b07fbcfc83d9b0 /* PxVehicleSuspWheelTire4.cpp */; }; - FFFFfc83da187fbcfc83da18 /* PxVehicleTireFriction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83da187fbcfc83da18 /* PxVehicleTireFriction.cpp */; }; - FFFFfc83da807fbcfc83da80 /* PxVehicleUpdate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83da807fbcfc83da80 /* PxVehicleUpdate.cpp */; }; - FFFFfc83dae87fbcfc83dae8 /* PxVehicleWheels.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83dae87fbcfc83dae8 /* PxVehicleWheels.cpp */; }; - FFFFfc83db507fbcfc83db50 /* VehicleUtilControl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83db507fbcfc83db50 /* VehicleUtilControl.cpp */; }; - FFFFfc83dbb87fbcfc83dbb8 /* VehicleUtilSetup.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83dbb87fbcfc83dbb8 /* VehicleUtilSetup.cpp */; }; - FFFFfc83dc207fbcfc83dc20 /* VehicleUtilTelemetry.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83dc207fbcfc83dc20 /* VehicleUtilTelemetry.cpp */; }; - FFFFfc0c77c87fbcfc0c77c8 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDfc0c77c87fbcfc0c77c8 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */; }; - FFFFfc0c78307fbcfc0c7830 /* src/PxVehicleMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDfc0c78307fbcfc0c7830 /* src/PxVehicleMetaDataObjects.cpp */; }; + FFFFb31c16087feab31c1608 /* PxVehicleComponents.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31c16087feab31c1608 /* PxVehicleComponents.cpp */; }; + FFFFb31c16707feab31c1670 /* PxVehicleDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31c16707feab31c1670 /* PxVehicleDrive.cpp */; }; + FFFFb31c16d87feab31c16d8 /* PxVehicleDrive4W.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31c16d87feab31c16d8 /* PxVehicleDrive4W.cpp */; }; + FFFFb31c17407feab31c1740 /* PxVehicleDriveNW.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31c17407feab31c1740 /* PxVehicleDriveNW.cpp */; }; + FFFFb31c17a87feab31c17a8 /* PxVehicleDriveTank.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31c17a87feab31c17a8 /* PxVehicleDriveTank.cpp */; }; + FFFFb31c18107feab31c1810 /* PxVehicleMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31c18107feab31c1810 /* PxVehicleMetaData.cpp */; }; + FFFFb31c18787feab31c1878 /* PxVehicleNoDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31c18787feab31c1878 /* PxVehicleNoDrive.cpp */; }; + FFFFb31c18e07feab31c18e0 /* PxVehicleSDK.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31c18e07feab31c18e0 /* PxVehicleSDK.cpp */; }; + FFFFb31c19487feab31c1948 /* PxVehicleSerialization.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31c19487feab31c1948 /* PxVehicleSerialization.cpp */; }; + FFFFb31c19b07feab31c19b0 /* PxVehicleSuspWheelTire4.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31c19b07feab31c19b0 /* PxVehicleSuspWheelTire4.cpp */; }; + FFFFb31c1a187feab31c1a18 /* PxVehicleTireFriction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31c1a187feab31c1a18 /* PxVehicleTireFriction.cpp */; }; + FFFFb31c1a807feab31c1a80 /* PxVehicleUpdate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31c1a807feab31c1a80 /* PxVehicleUpdate.cpp */; }; + FFFFb31c1ae87feab31c1ae8 /* PxVehicleWheels.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31c1ae87feab31c1ae8 /* PxVehicleWheels.cpp */; }; + FFFFb31c1b507feab31c1b50 /* VehicleUtilControl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31c1b507feab31c1b50 /* VehicleUtilControl.cpp */; }; + FFFFb31c1bb87feab31c1bb8 /* VehicleUtilSetup.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31c1bb87feab31c1bb8 /* VehicleUtilSetup.cpp */; }; + FFFFb31c1c207feab31c1c20 /* VehicleUtilTelemetry.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31c1c207feab31c1c20 /* VehicleUtilTelemetry.cpp */; }; + FFFFb2fd30787feab2fd3078 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDb2fd30787feab2fd3078 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */; }; + FFFFb2fd30e07feab2fd30e0 /* src/PxVehicleMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDb2fd30e07feab2fd30e0 /* src/PxVehicleMetaDataObjects.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDfc0771907fbcfc077190 /* PhysXVehicle */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXVehicle"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDfc83b2007fbcfc83b200 /* PxVehicleComponents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.h"; path = "../../../Include/vehicle/PxVehicleComponents.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc83b2687fbcfc83b268 /* PxVehicleDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.h"; path = "../../../Include/vehicle/PxVehicleDrive.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc83b2d07fbcfc83b2d0 /* PxVehicleDrive4W.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.h"; path = "../../../Include/vehicle/PxVehicleDrive4W.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc83b3387fbcfc83b338 /* PxVehicleDriveNW.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.h"; path = "../../../Include/vehicle/PxVehicleDriveNW.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc83b3a07fbcfc83b3a0 /* PxVehicleDriveTank.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.h"; path = "../../../Include/vehicle/PxVehicleDriveTank.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc83b4087fbcfc83b408 /* PxVehicleNoDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.h"; path = "../../../Include/vehicle/PxVehicleNoDrive.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc83b4707fbcfc83b470 /* PxVehicleSDK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.h"; path = "../../../Include/vehicle/PxVehicleSDK.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc83b4d87fbcfc83b4d8 /* PxVehicleShaders.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleShaders.h"; path = "../../../Include/vehicle/PxVehicleShaders.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc83b5407fbcfc83b540 /* PxVehicleTireFriction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.h"; path = "../../../Include/vehicle/PxVehicleTireFriction.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc83b5a87fbcfc83b5a8 /* PxVehicleUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.h"; path = "../../../Include/vehicle/PxVehicleUpdate.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc83b6107fbcfc83b610 /* PxVehicleUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtil.h"; path = "../../../Include/vehicle/PxVehicleUtil.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc83b6787fbcfc83b678 /* PxVehicleUtilControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilControl.h"; path = "../../../Include/vehicle/PxVehicleUtilControl.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc83b6e07fbcfc83b6e0 /* PxVehicleUtilSetup.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilSetup.h"; path = "../../../Include/vehicle/PxVehicleUtilSetup.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc83b7487fbcfc83b748 /* PxVehicleUtilTelemetry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilTelemetry.h"; path = "../../../Include/vehicle/PxVehicleUtilTelemetry.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc83b7b07fbcfc83b7b0 /* PxVehicleWheels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.h"; path = "../../../Include/vehicle/PxVehicleWheels.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc83d4007fbcfc83d400 /* PxVehicleDefaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDefaults.h"; path = "../../PhysXVehicle/src/PxVehicleDefaults.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc83d4687fbcfc83d468 /* PxVehicleLinearMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleLinearMath.h"; path = "../../PhysXVehicle/src/PxVehicleLinearMath.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc83d4d07fbcfc83d4d0 /* PxVehicleSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.h"; path = "../../PhysXVehicle/src/PxVehicleSerialization.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc83d5387fbcfc83d538 /* PxVehicleSuspLimitConstraintShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspLimitConstraintShader.h"; path = "../../PhysXVehicle/src/PxVehicleSuspLimitConstraintShader.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc83d5a07fbcfc83d5a0 /* PxVehicleSuspWheelTire4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.h"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc83d6087fbcfc83d608 /* PxVehicleComponents.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.cpp"; path = "../../PhysXVehicle/src/PxVehicleComponents.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc83d6707fbcfc83d670 /* PxVehicleDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc83d6d87fbcfc83d6d8 /* PxVehicleDrive4W.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive4W.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc83d7407fbcfc83d740 /* PxVehicleDriveNW.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveNW.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc83d7a87fbcfc83d7a8 /* PxVehicleDriveTank.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveTank.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc83d8107fbcfc83d810 /* PxVehicleMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleMetaData.cpp"; path = "../../PhysXVehicle/src/PxVehicleMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc83d8787fbcfc83d878 /* PxVehicleNoDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleNoDrive.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc83d8e07fbcfc83d8e0 /* PxVehicleSDK.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.cpp"; path = "../../PhysXVehicle/src/PxVehicleSDK.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc83d9487fbcfc83d948 /* PxVehicleSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.cpp"; path = "../../PhysXVehicle/src/PxVehicleSerialization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc83d9b07fbcfc83d9b0 /* PxVehicleSuspWheelTire4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.cpp"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc83da187fbcfc83da18 /* PxVehicleTireFriction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.cpp"; path = "../../PhysXVehicle/src/PxVehicleTireFriction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc83da807fbcfc83da80 /* PxVehicleUpdate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.cpp"; path = "../../PhysXVehicle/src/PxVehicleUpdate.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc83dae87fbcfc83dae8 /* PxVehicleWheels.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.cpp"; path = "../../PhysXVehicle/src/PxVehicleWheels.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc83db507fbcfc83db50 /* VehicleUtilControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilControl.cpp"; path = "../../PhysXVehicle/src/VehicleUtilControl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc83dbb87fbcfc83dbb8 /* VehicleUtilSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilSetup.cpp"; path = "../../PhysXVehicle/src/VehicleUtilSetup.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc83dc207fbcfc83dc20 /* VehicleUtilTelemetry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilTelemetry.cpp"; path = "../../PhysXVehicle/src/VehicleUtilTelemetry.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc0c76907fbcfc0c7690 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc0c76f87fbcfc0c76f8 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc0c77607fbcfc0c7760 /* include/PxVehicleMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc0c77c87fbcfc0c77c8 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXVehicle/src/PhysXMetaData/src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc0c78307fbcfc0c7830 /* src/PxVehicleMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxVehicleMetaDataObjects.cpp"; path = "../../PhysXVehicle/src/PhysXMetaData/src/PxVehicleMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb2fc15c07feab2fc15c0 /* PhysXVehicle */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXVehicle"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDb31bf6007feab31bf600 /* PxVehicleComponents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.h"; path = "../../../Include/vehicle/PxVehicleComponents.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31bf6687feab31bf668 /* PxVehicleDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.h"; path = "../../../Include/vehicle/PxVehicleDrive.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31bf6d07feab31bf6d0 /* PxVehicleDrive4W.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.h"; path = "../../../Include/vehicle/PxVehicleDrive4W.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31bf7387feab31bf738 /* PxVehicleDriveNW.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.h"; path = "../../../Include/vehicle/PxVehicleDriveNW.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31bf7a07feab31bf7a0 /* PxVehicleDriveTank.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.h"; path = "../../../Include/vehicle/PxVehicleDriveTank.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31bf8087feab31bf808 /* PxVehicleNoDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.h"; path = "../../../Include/vehicle/PxVehicleNoDrive.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31bf8707feab31bf870 /* PxVehicleSDK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.h"; path = "../../../Include/vehicle/PxVehicleSDK.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31bf8d87feab31bf8d8 /* PxVehicleShaders.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleShaders.h"; path = "../../../Include/vehicle/PxVehicleShaders.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31bf9407feab31bf940 /* PxVehicleTireFriction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.h"; path = "../../../Include/vehicle/PxVehicleTireFriction.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31bf9a87feab31bf9a8 /* PxVehicleUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.h"; path = "../../../Include/vehicle/PxVehicleUpdate.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31bfa107feab31bfa10 /* PxVehicleUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtil.h"; path = "../../../Include/vehicle/PxVehicleUtil.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31bfa787feab31bfa78 /* PxVehicleUtilControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilControl.h"; path = "../../../Include/vehicle/PxVehicleUtilControl.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31bfae07feab31bfae0 /* PxVehicleUtilSetup.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilSetup.h"; path = "../../../Include/vehicle/PxVehicleUtilSetup.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31bfb487feab31bfb48 /* PxVehicleUtilTelemetry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilTelemetry.h"; path = "../../../Include/vehicle/PxVehicleUtilTelemetry.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31bfbb07feab31bfbb0 /* PxVehicleWheels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.h"; path = "../../../Include/vehicle/PxVehicleWheels.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c14007feab31c1400 /* PxVehicleDefaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDefaults.h"; path = "../../PhysXVehicle/src/PxVehicleDefaults.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c14687feab31c1468 /* PxVehicleLinearMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleLinearMath.h"; path = "../../PhysXVehicle/src/PxVehicleLinearMath.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c14d07feab31c14d0 /* PxVehicleSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.h"; path = "../../PhysXVehicle/src/PxVehicleSerialization.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c15387feab31c1538 /* PxVehicleSuspLimitConstraintShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspLimitConstraintShader.h"; path = "../../PhysXVehicle/src/PxVehicleSuspLimitConstraintShader.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c15a07feab31c15a0 /* PxVehicleSuspWheelTire4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.h"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c16087feab31c1608 /* PxVehicleComponents.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.cpp"; path = "../../PhysXVehicle/src/PxVehicleComponents.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c16707feab31c1670 /* PxVehicleDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c16d87feab31c16d8 /* PxVehicleDrive4W.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive4W.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c17407feab31c1740 /* PxVehicleDriveNW.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveNW.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c17a87feab31c17a8 /* PxVehicleDriveTank.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveTank.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c18107feab31c1810 /* PxVehicleMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleMetaData.cpp"; path = "../../PhysXVehicle/src/PxVehicleMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c18787feab31c1878 /* PxVehicleNoDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleNoDrive.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c18e07feab31c18e0 /* PxVehicleSDK.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.cpp"; path = "../../PhysXVehicle/src/PxVehicleSDK.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c19487feab31c1948 /* PxVehicleSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.cpp"; path = "../../PhysXVehicle/src/PxVehicleSerialization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c19b07feab31c19b0 /* PxVehicleSuspWheelTire4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.cpp"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c1a187feab31c1a18 /* PxVehicleTireFriction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.cpp"; path = "../../PhysXVehicle/src/PxVehicleTireFriction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c1a807feab31c1a80 /* PxVehicleUpdate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.cpp"; path = "../../PhysXVehicle/src/PxVehicleUpdate.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c1ae87feab31c1ae8 /* PxVehicleWheels.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.cpp"; path = "../../PhysXVehicle/src/PxVehicleWheels.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c1b507feab31c1b50 /* VehicleUtilControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilControl.cpp"; path = "../../PhysXVehicle/src/VehicleUtilControl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c1bb87feab31c1bb8 /* VehicleUtilSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilSetup.cpp"; path = "../../PhysXVehicle/src/VehicleUtilSetup.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c1c207feab31c1c20 /* VehicleUtilTelemetry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilTelemetry.cpp"; path = "../../PhysXVehicle/src/VehicleUtilTelemetry.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb2fd2f407feab2fd2f40 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; + FFFDb2fd2fa87feab2fd2fa8 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFDb2fd30107feab2fd3010 /* include/PxVehicleMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFDb2fd30787feab2fd3078 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXVehicle/src/PhysXMetaData/src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb2fd30e07feab2fd30e0 /* 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 */ - FFF2fc0771907fbcfc077190 /* Resources */ = { + FFF2b2fc15c07feab2fc15c0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -538,7 +538,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCfc0771907fbcfc077190 /* Frameworks */ = { + FFFCb2fc15c07feab2fc15c0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -548,28 +548,28 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8fc0771907fbcfc077190 /* Sources */ = { + FFF8b2fc15c07feab2fc15c0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFfc83d6087fbcfc83d608, - FFFFfc83d6707fbcfc83d670, - FFFFfc83d6d87fbcfc83d6d8, - FFFFfc83d7407fbcfc83d740, - FFFFfc83d7a87fbcfc83d7a8, - FFFFfc83d8107fbcfc83d810, - FFFFfc83d8787fbcfc83d878, - FFFFfc83d8e07fbcfc83d8e0, - FFFFfc83d9487fbcfc83d948, - FFFFfc83d9b07fbcfc83d9b0, - FFFFfc83da187fbcfc83da18, - FFFFfc83da807fbcfc83da80, - FFFFfc83dae87fbcfc83dae8, - FFFFfc83db507fbcfc83db50, - FFFFfc83dbb87fbcfc83dbb8, - FFFFfc83dc207fbcfc83dc20, - FFFFfc0c77c87fbcfc0c77c8, - FFFFfc0c78307fbcfc0c7830, + FFFFb31c16087feab31c1608, + FFFFb31c16707feab31c1670, + FFFFb31c16d87feab31c16d8, + FFFFb31c17407feab31c1740, + FFFFb31c17a87feab31c17a8, + FFFFb31c18107feab31c1810, + FFFFb31c18787feab31c1878, + FFFFb31c18e07feab31c18e0, + FFFFb31c19487feab31c1948, + FFFFb31c19b07feab31c19b0, + FFFFb31c1a187feab31c1a18, + FFFFb31c1a807feab31c1a80, + FFFFb31c1ae87feab31c1ae8, + FFFFb31c1b507feab31c1b50, + FFFFb31c1bb87feab31c1bb8, + FFFFb31c1c207feab31c1c20, + FFFFb2fd30787feab2fd3078, + FFFFb2fd30e07feab2fd30e0, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -581,220 +581,220 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PhysXExtensions */ - FFFFfc83f4e87fbcfc83f4e8 /* ExtBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83f4e87fbcfc83f4e8 /* ExtBroadPhase.cpp */; }; - FFFFfc83f5507fbcfc83f550 /* ExtClothFabricCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83f5507fbcfc83f550 /* ExtClothFabricCooker.cpp */; }; - FFFFfc83f5b87fbcfc83f5b8 /* ExtClothGeodesicTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83f5b87fbcfc83f5b8 /* ExtClothGeodesicTetherCooker.cpp */; }; - FFFFfc83f6207fbcfc83f620 /* ExtClothMeshQuadifier.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83f6207fbcfc83f620 /* ExtClothMeshQuadifier.cpp */; }; - FFFFfc83f6887fbcfc83f688 /* ExtClothSimpleTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83f6887fbcfc83f688 /* ExtClothSimpleTetherCooker.cpp */; }; - FFFFfc83f6f07fbcfc83f6f0 /* ExtCollection.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83f6f07fbcfc83f6f0 /* ExtCollection.cpp */; }; - FFFFfc83f7587fbcfc83f758 /* ExtConvexMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83f7587fbcfc83f758 /* ExtConvexMeshExt.cpp */; }; - FFFFfc83f7c07fbcfc83f7c0 /* ExtCpuWorkerThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83f7c07fbcfc83f7c0 /* ExtCpuWorkerThread.cpp */; }; - FFFFfc83f8287fbcfc83f828 /* ExtD6Joint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83f8287fbcfc83f828 /* ExtD6Joint.cpp */; }; - FFFFfc83f8907fbcfc83f890 /* ExtD6JointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83f8907fbcfc83f890 /* ExtD6JointSolverPrep.cpp */; }; - FFFFfc83f8f87fbcfc83f8f8 /* ExtDefaultCpuDispatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83f8f87fbcfc83f8f8 /* ExtDefaultCpuDispatcher.cpp */; }; - FFFFfc83f9607fbcfc83f960 /* ExtDefaultErrorCallback.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83f9607fbcfc83f960 /* ExtDefaultErrorCallback.cpp */; }; - FFFFfc83f9c87fbcfc83f9c8 /* ExtDefaultSimulationFilterShader.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83f9c87fbcfc83f9c8 /* ExtDefaultSimulationFilterShader.cpp */; }; - FFFFfc83fa307fbcfc83fa30 /* ExtDefaultStreams.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83fa307fbcfc83fa30 /* ExtDefaultStreams.cpp */; }; - FFFFfc83fa987fbcfc83fa98 /* ExtDistanceJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83fa987fbcfc83fa98 /* ExtDistanceJoint.cpp */; }; - FFFFfc83fb007fbcfc83fb00 /* ExtDistanceJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83fb007fbcfc83fb00 /* ExtDistanceJointSolverPrep.cpp */; }; - FFFFfc83fb687fbcfc83fb68 /* ExtExtensions.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83fb687fbcfc83fb68 /* ExtExtensions.cpp */; }; - FFFFfc83fbd07fbcfc83fbd0 /* ExtFixedJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83fbd07fbcfc83fbd0 /* ExtFixedJoint.cpp */; }; - FFFFfc83fc387fbcfc83fc38 /* ExtFixedJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83fc387fbcfc83fc38 /* ExtFixedJointSolverPrep.cpp */; }; - FFFFfc83fca07fbcfc83fca0 /* ExtJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83fca07fbcfc83fca0 /* ExtJoint.cpp */; }; - FFFFfc83fd087fbcfc83fd08 /* ExtMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83fd087fbcfc83fd08 /* ExtMetaData.cpp */; }; - FFFFfc83fd707fbcfc83fd70 /* ExtParticleExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83fd707fbcfc83fd70 /* ExtParticleExt.cpp */; }; - FFFFfc83fdd87fbcfc83fdd8 /* ExtPrismaticJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83fdd87fbcfc83fdd8 /* ExtPrismaticJoint.cpp */; }; - FFFFfc83fe407fbcfc83fe40 /* ExtPrismaticJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83fe407fbcfc83fe40 /* ExtPrismaticJointSolverPrep.cpp */; }; - FFFFfc83fea87fbcfc83fea8 /* ExtPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83fea87fbcfc83fea8 /* ExtPvd.cpp */; }; - FFFFfc83ff107fbcfc83ff10 /* ExtPxStringTable.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83ff107fbcfc83ff10 /* ExtPxStringTable.cpp */; }; - FFFFfc83ff787fbcfc83ff78 /* ExtRaycastCCD.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83ff787fbcfc83ff78 /* ExtRaycastCCD.cpp */; }; - FFFFfc83ffe07fbcfc83ffe0 /* ExtRevoluteJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc83ffe07fbcfc83ffe0 /* ExtRevoluteJoint.cpp */; }; - FFFFfc8400487fbcfc840048 /* ExtRevoluteJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8400487fbcfc840048 /* ExtRevoluteJointSolverPrep.cpp */; }; - FFFFfc8400b07fbcfc8400b0 /* ExtRigidBodyExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8400b07fbcfc8400b0 /* ExtRigidBodyExt.cpp */; }; - FFFFfc8401187fbcfc840118 /* ExtSceneQueryExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8401187fbcfc840118 /* ExtSceneQueryExt.cpp */; }; - FFFFfc8401807fbcfc840180 /* ExtSimpleFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8401807fbcfc840180 /* ExtSimpleFactory.cpp */; }; - FFFFfc8401e87fbcfc8401e8 /* ExtSmoothNormals.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8401e87fbcfc8401e8 /* ExtSmoothNormals.cpp */; }; - FFFFfc8402507fbcfc840250 /* ExtSphericalJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8402507fbcfc840250 /* ExtSphericalJoint.cpp */; }; - FFFFfc8402b87fbcfc8402b8 /* ExtSphericalJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8402b87fbcfc8402b8 /* ExtSphericalJointSolverPrep.cpp */; }; - FFFFfc8403207fbcfc840320 /* ExtTriangleMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8403207fbcfc840320 /* ExtTriangleMeshExt.cpp */; }; - FFFFfc8438d07fbcfc8438d0 /* SnSerialUtils.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDfc8438d07fbcfc8438d0 /* SnSerialUtils.cpp */; }; - FFFFfc8439387fbcfc843938 /* SnSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDfc8439387fbcfc843938 /* SnSerialization.cpp */; }; - FFFFfc8439a07fbcfc8439a0 /* SnSerializationRegistry.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDfc8439a07fbcfc8439a0 /* SnSerializationRegistry.cpp */; }; - FFFFfc843ce07fbcfc843ce0 /* Binary/SnBinaryDeserialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDfc843ce07fbcfc843ce0 /* Binary/SnBinaryDeserialization.cpp */; }; - FFFFfc843d487fbcfc843d48 /* Binary/SnBinarySerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDfc843d487fbcfc843d48 /* Binary/SnBinarySerialization.cpp */; }; - FFFFfc843db07fbcfc843db0 /* Binary/SnConvX.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDfc843db07fbcfc843db0 /* Binary/SnConvX.cpp */; }; - FFFFfc843e187fbcfc843e18 /* Binary/SnConvX_Align.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDfc843e187fbcfc843e18 /* Binary/SnConvX_Align.cpp */; }; - FFFFfc843e807fbcfc843e80 /* Binary/SnConvX_Convert.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDfc843e807fbcfc843e80 /* Binary/SnConvX_Convert.cpp */; }; - FFFFfc843ee87fbcfc843ee8 /* Binary/SnConvX_Error.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDfc843ee87fbcfc843ee8 /* Binary/SnConvX_Error.cpp */; }; - FFFFfc843f507fbcfc843f50 /* Binary/SnConvX_MetaData.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDfc843f507fbcfc843f50 /* Binary/SnConvX_MetaData.cpp */; }; - FFFFfc843fb87fbcfc843fb8 /* Binary/SnConvX_Output.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDfc843fb87fbcfc843fb8 /* Binary/SnConvX_Output.cpp */; }; - FFFFfc8440207fbcfc844020 /* Binary/SnConvX_Union.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDfc8440207fbcfc844020 /* Binary/SnConvX_Union.cpp */; }; - FFFFfc8440887fbcfc844088 /* Binary/SnSerializationContext.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDfc8440887fbcfc844088 /* Binary/SnSerializationContext.cpp */; }; - FFFFfc8449787fbcfc844978 /* Xml/SnJointRepXSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDfc8449787fbcfc844978 /* Xml/SnJointRepXSerializer.cpp */; }; - FFFFfc8449e07fbcfc8449e0 /* Xml/SnRepXCoreSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDfc8449e07fbcfc8449e0 /* Xml/SnRepXCoreSerializer.cpp */; }; - FFFFfc844a487fbcfc844a48 /* Xml/SnRepXUpgrader.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDfc844a487fbcfc844a48 /* Xml/SnRepXUpgrader.cpp */; }; - FFFFfc844ab07fbcfc844ab0 /* Xml/SnXmlSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDfc844ab07fbcfc844ab0 /* Xml/SnXmlSerialization.cpp */; }; - FFFFfc8418e07fbcfc8418e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDfc8418e07fbcfc8418e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */; }; + FFFFb31c3ce87feab31c3ce8 /* ExtBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31c3ce87feab31c3ce8 /* ExtBroadPhase.cpp */; }; + FFFFb31c3d507feab31c3d50 /* ExtClothFabricCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31c3d507feab31c3d50 /* ExtClothFabricCooker.cpp */; }; + FFFFb31c3db87feab31c3db8 /* ExtClothGeodesicTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31c3db87feab31c3db8 /* ExtClothGeodesicTetherCooker.cpp */; }; + FFFFb31c3e207feab31c3e20 /* ExtClothMeshQuadifier.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31c3e207feab31c3e20 /* ExtClothMeshQuadifier.cpp */; }; + FFFFb31c3e887feab31c3e88 /* ExtClothSimpleTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31c3e887feab31c3e88 /* ExtClothSimpleTetherCooker.cpp */; }; + FFFFb31c3ef07feab31c3ef0 /* ExtCollection.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31c3ef07feab31c3ef0 /* ExtCollection.cpp */; }; + FFFFb31c3f587feab31c3f58 /* ExtConvexMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31c3f587feab31c3f58 /* ExtConvexMeshExt.cpp */; }; + FFFFb31c3fc07feab31c3fc0 /* ExtCpuWorkerThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31c3fc07feab31c3fc0 /* ExtCpuWorkerThread.cpp */; }; + FFFFb31c40287feab31c4028 /* ExtD6Joint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31c40287feab31c4028 /* ExtD6Joint.cpp */; }; + FFFFb31c40907feab31c4090 /* ExtD6JointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31c40907feab31c4090 /* ExtD6JointSolverPrep.cpp */; }; + FFFFb31c40f87feab31c40f8 /* ExtDefaultCpuDispatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31c40f87feab31c40f8 /* ExtDefaultCpuDispatcher.cpp */; }; + FFFFb31c41607feab31c4160 /* ExtDefaultErrorCallback.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31c41607feab31c4160 /* ExtDefaultErrorCallback.cpp */; }; + FFFFb31c41c87feab31c41c8 /* ExtDefaultSimulationFilterShader.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31c41c87feab31c41c8 /* ExtDefaultSimulationFilterShader.cpp */; }; + FFFFb31c42307feab31c4230 /* ExtDefaultStreams.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31c42307feab31c4230 /* ExtDefaultStreams.cpp */; }; + FFFFb31c42987feab31c4298 /* ExtDistanceJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31c42987feab31c4298 /* ExtDistanceJoint.cpp */; }; + FFFFb31c43007feab31c4300 /* ExtDistanceJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31c43007feab31c4300 /* ExtDistanceJointSolverPrep.cpp */; }; + FFFFb31c43687feab31c4368 /* ExtExtensions.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31c43687feab31c4368 /* ExtExtensions.cpp */; }; + FFFFb31c43d07feab31c43d0 /* ExtFixedJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31c43d07feab31c43d0 /* ExtFixedJoint.cpp */; }; + FFFFb31c44387feab31c4438 /* ExtFixedJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31c44387feab31c4438 /* ExtFixedJointSolverPrep.cpp */; }; + FFFFb31c44a07feab31c44a0 /* ExtJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31c44a07feab31c44a0 /* ExtJoint.cpp */; }; + FFFFb31c45087feab31c4508 /* ExtMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31c45087feab31c4508 /* ExtMetaData.cpp */; }; + FFFFb31c45707feab31c4570 /* ExtParticleExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31c45707feab31c4570 /* ExtParticleExt.cpp */; }; + FFFFb31c45d87feab31c45d8 /* ExtPrismaticJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31c45d87feab31c45d8 /* ExtPrismaticJoint.cpp */; }; + FFFFb31c46407feab31c4640 /* ExtPrismaticJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31c46407feab31c4640 /* ExtPrismaticJointSolverPrep.cpp */; }; + FFFFb31c46a87feab31c46a8 /* ExtPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31c46a87feab31c46a8 /* ExtPvd.cpp */; }; + FFFFb31c47107feab31c4710 /* ExtPxStringTable.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31c47107feab31c4710 /* ExtPxStringTable.cpp */; }; + FFFFb31c47787feab31c4778 /* ExtRaycastCCD.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31c47787feab31c4778 /* ExtRaycastCCD.cpp */; }; + FFFFb31c47e07feab31c47e0 /* ExtRevoluteJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31c47e07feab31c47e0 /* ExtRevoluteJoint.cpp */; }; + FFFFb31c48487feab31c4848 /* ExtRevoluteJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31c48487feab31c4848 /* ExtRevoluteJointSolverPrep.cpp */; }; + FFFFb31c48b07feab31c48b0 /* ExtRigidBodyExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31c48b07feab31c48b0 /* ExtRigidBodyExt.cpp */; }; + FFFFb31c49187feab31c4918 /* ExtSceneQueryExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31c49187feab31c4918 /* ExtSceneQueryExt.cpp */; }; + FFFFb31c49807feab31c4980 /* ExtSimpleFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31c49807feab31c4980 /* ExtSimpleFactory.cpp */; }; + FFFFb31c49e87feab31c49e8 /* ExtSmoothNormals.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31c49e87feab31c49e8 /* ExtSmoothNormals.cpp */; }; + FFFFb31c4a507feab31c4a50 /* ExtSphericalJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31c4a507feab31c4a50 /* ExtSphericalJoint.cpp */; }; + FFFFb31c4ab87feab31c4ab8 /* ExtSphericalJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31c4ab87feab31c4ab8 /* ExtSphericalJointSolverPrep.cpp */; }; + FFFFb31c4b207feab31c4b20 /* ExtTriangleMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31c4b207feab31c4b20 /* ExtTriangleMeshExt.cpp */; }; + FFFFb31c80d07feab31c80d0 /* SnSerialUtils.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDb31c80d07feab31c80d0 /* SnSerialUtils.cpp */; }; + FFFFb31c81387feab31c8138 /* SnSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDb31c81387feab31c8138 /* SnSerialization.cpp */; }; + FFFFb31c81a07feab31c81a0 /* SnSerializationRegistry.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDb31c81a07feab31c81a0 /* SnSerializationRegistry.cpp */; }; + FFFFb31c84e07feab31c84e0 /* Binary/SnBinaryDeserialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDb31c84e07feab31c84e0 /* Binary/SnBinaryDeserialization.cpp */; }; + FFFFb31c85487feab31c8548 /* Binary/SnBinarySerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDb31c85487feab31c8548 /* Binary/SnBinarySerialization.cpp */; }; + FFFFb31c85b07feab31c85b0 /* Binary/SnConvX.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDb31c85b07feab31c85b0 /* Binary/SnConvX.cpp */; }; + FFFFb31c86187feab31c8618 /* Binary/SnConvX_Align.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDb31c86187feab31c8618 /* Binary/SnConvX_Align.cpp */; }; + FFFFb31c86807feab31c8680 /* Binary/SnConvX_Convert.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDb31c86807feab31c8680 /* Binary/SnConvX_Convert.cpp */; }; + FFFFb31c86e87feab31c86e8 /* Binary/SnConvX_Error.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDb31c86e87feab31c86e8 /* Binary/SnConvX_Error.cpp */; }; + FFFFb31c87507feab31c8750 /* Binary/SnConvX_MetaData.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDb31c87507feab31c8750 /* Binary/SnConvX_MetaData.cpp */; }; + FFFFb31c87b87feab31c87b8 /* Binary/SnConvX_Output.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDb31c87b87feab31c87b8 /* Binary/SnConvX_Output.cpp */; }; + FFFFb31c88207feab31c8820 /* Binary/SnConvX_Union.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDb31c88207feab31c8820 /* Binary/SnConvX_Union.cpp */; }; + FFFFb31c88887feab31c8888 /* Binary/SnSerializationContext.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDb31c88887feab31c8888 /* Binary/SnSerializationContext.cpp */; }; + FFFFb31c91e07feab31c91e0 /* Xml/SnJointRepXSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDb31c91e07feab31c91e0 /* Xml/SnJointRepXSerializer.cpp */; }; + FFFFb31c92487feab31c9248 /* Xml/SnRepXCoreSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDb31c92487feab31c9248 /* Xml/SnRepXCoreSerializer.cpp */; }; + FFFFb31c92b07feab31c92b0 /* Xml/SnRepXUpgrader.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDb31c92b07feab31c92b0 /* Xml/SnRepXUpgrader.cpp */; }; + FFFFb31c93187feab31c9318 /* Xml/SnXmlSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDb31c93187feab31c9318 /* Xml/SnXmlSerialization.cpp */; }; + FFFFb31c60e07feab31c60e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDb31c60e07feab31c60e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDfc0c74907fbcfc0c7490 /* PhysXExtensions */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXExtensions"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDfc8404007fbcfc840400 /* PxBinaryConverter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBinaryConverter.h"; path = "../../../Include/extensions/PxBinaryConverter.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8404687fbcfc840468 /* PxBroadPhaseExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhaseExt.h"; path = "../../../Include/extensions/PxBroadPhaseExt.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8404d07fbcfc8404d0 /* PxClothFabricCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothFabricCooker.h"; path = "../../../Include/extensions/PxClothFabricCooker.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8405387fbcfc840538 /* PxClothMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshDesc.h"; path = "../../../Include/extensions/PxClothMeshDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8405a07fbcfc8405a0 /* PxClothMeshQuadifier.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshQuadifier.h"; path = "../../../Include/extensions/PxClothMeshQuadifier.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8406087fbcfc840608 /* PxClothTetherCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothTetherCooker.h"; path = "../../../Include/extensions/PxClothTetherCooker.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8406707fbcfc840670 /* PxCollectionExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCollectionExt.h"; path = "../../../Include/extensions/PxCollectionExt.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8406d87fbcfc8406d8 /* PxConstraintExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintExt.h"; path = "../../../Include/extensions/PxConstraintExt.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8407407fbcfc840740 /* PxConvexMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshExt.h"; path = "../../../Include/extensions/PxConvexMeshExt.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8407a87fbcfc8407a8 /* PxD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxD6Joint.h"; path = "../../../Include/extensions/PxD6Joint.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8408107fbcfc840810 /* PxDefaultAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultAllocator.h"; path = "../../../Include/extensions/PxDefaultAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8408787fbcfc840878 /* PxDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultCpuDispatcher.h"; path = "../../../Include/extensions/PxDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8408e07fbcfc8408e0 /* PxDefaultErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultErrorCallback.h"; path = "../../../Include/extensions/PxDefaultErrorCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8409487fbcfc840948 /* PxDefaultSimulationFilterShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultSimulationFilterShader.h"; path = "../../../Include/extensions/PxDefaultSimulationFilterShader.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8409b07fbcfc8409b0 /* PxDefaultStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultStreams.h"; path = "../../../Include/extensions/PxDefaultStreams.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc840a187fbcfc840a18 /* PxDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDistanceJoint.h"; path = "../../../Include/extensions/PxDistanceJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc840a807fbcfc840a80 /* PxExtensionsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtensionsAPI.h"; path = "../../../Include/extensions/PxExtensionsAPI.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc840ae87fbcfc840ae8 /* PxFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFixedJoint.h"; path = "../../../Include/extensions/PxFixedJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc840b507fbcfc840b50 /* PxJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJoint.h"; path = "../../../Include/extensions/PxJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc840bb87fbcfc840bb8 /* PxJointLimit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJointLimit.h"; path = "../../../Include/extensions/PxJointLimit.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc840c207fbcfc840c20 /* PxJointRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJointRepXSerializer.h"; path = "../../../Include/extensions/PxJointRepXSerializer.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc840c887fbcfc840c88 /* PxMassProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMassProperties.h"; path = "../../../Include/extensions/PxMassProperties.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc840cf07fbcfc840cf0 /* PxParticleExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxParticleExt.h"; path = "../../../Include/extensions/PxParticleExt.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc840d587fbcfc840d58 /* PxPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPrismaticJoint.h"; path = "../../../Include/extensions/PxPrismaticJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc840dc07fbcfc840dc0 /* PxRaycastCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRaycastCCD.h"; path = "../../../Include/extensions/PxRaycastCCD.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc840e287fbcfc840e28 /* PxRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSerializer.h"; path = "../../../Include/extensions/PxRepXSerializer.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc840e907fbcfc840e90 /* PxRepXSimpleType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSimpleType.h"; path = "../../../Include/extensions/PxRepXSimpleType.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc840ef87fbcfc840ef8 /* PxRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRevoluteJoint.h"; path = "../../../Include/extensions/PxRevoluteJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc840f607fbcfc840f60 /* PxRigidActorExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActorExt.h"; path = "../../../Include/extensions/PxRigidActorExt.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc840fc87fbcfc840fc8 /* PxRigidBodyExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBodyExt.h"; path = "../../../Include/extensions/PxRigidBodyExt.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8410307fbcfc841030 /* PxSceneQueryExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneQueryExt.h"; path = "../../../Include/extensions/PxSceneQueryExt.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8410987fbcfc841098 /* PxSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSerialization.h"; path = "../../../Include/extensions/PxSerialization.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8411007fbcfc841100 /* PxShapeExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShapeExt.h"; path = "../../../Include/extensions/PxShapeExt.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8411687fbcfc841168 /* PxSimpleFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleFactory.h"; path = "../../../Include/extensions/PxSimpleFactory.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8411d07fbcfc8411d0 /* PxSmoothNormals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSmoothNormals.h"; path = "../../../Include/extensions/PxSmoothNormals.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8412387fbcfc841238 /* PxSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSphericalJoint.h"; path = "../../../Include/extensions/PxSphericalJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8412a07fbcfc8412a0 /* PxStringTableExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStringTableExt.h"; path = "../../../Include/extensions/PxStringTableExt.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8413087fbcfc841308 /* PxTriangleMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshExt.h"; path = "../../../Include/extensions/PxTriangleMeshExt.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc83ee007fbcfc83ee00 /* ExtConstraintHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConstraintHelper.h"; path = "../../PhysXExtensions/src/ExtConstraintHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc83ee687fbcfc83ee68 /* ExtCpuWorkerThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.h"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc83eed07fbcfc83eed0 /* ExtD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.h"; path = "../../PhysXExtensions/src/ExtD6Joint.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc83ef387fbcfc83ef38 /* ExtDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.h"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc83efa07fbcfc83efa0 /* ExtDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.h"; path = "../../PhysXExtensions/src/ExtDistanceJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc83f0087fbcfc83f008 /* ExtFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.h"; path = "../../PhysXExtensions/src/ExtFixedJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc83f0707fbcfc83f070 /* ExtInertiaTensor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtInertiaTensor.h"; path = "../../PhysXExtensions/src/ExtInertiaTensor.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc83f0d87fbcfc83f0d8 /* ExtJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.h"; path = "../../PhysXExtensions/src/ExtJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc83f1407fbcfc83f140 /* ExtJointMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJointMetaDataExtensions.h"; path = "../../PhysXExtensions/src/ExtJointMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc83f1a87fbcfc83f1a8 /* ExtPlatform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPlatform.h"; path = "../../PhysXExtensions/src/ExtPlatform.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc83f2107fbcfc83f210 /* ExtPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.h"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc83f2787fbcfc83f278 /* ExtPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.h"; path = "../../PhysXExtensions/src/ExtPvd.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc83f2e07fbcfc83f2e0 /* ExtRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.h"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc83f3487fbcfc83f348 /* ExtSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSerialization.h"; path = "../../PhysXExtensions/src/ExtSerialization.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc83f3b07fbcfc83f3b0 /* ExtSharedQueueEntryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSharedQueueEntryPool.h"; path = "../../PhysXExtensions/src/ExtSharedQueueEntryPool.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc83f4187fbcfc83f418 /* ExtSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.h"; path = "../../PhysXExtensions/src/ExtSphericalJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc83f4807fbcfc83f480 /* ExtTaskQueueHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTaskQueueHelper.h"; path = "../../PhysXExtensions/src/ExtTaskQueueHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc83f4e87fbcfc83f4e8 /* ExtBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtBroadPhase.cpp"; path = "../../PhysXExtensions/src/ExtBroadPhase.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc83f5507fbcfc83f550 /* ExtClothFabricCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothFabricCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothFabricCooker.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc83f5b87fbcfc83f5b8 /* ExtClothGeodesicTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothGeodesicTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothGeodesicTetherCooker.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc83f6207fbcfc83f620 /* ExtClothMeshQuadifier.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothMeshQuadifier.cpp"; path = "../../PhysXExtensions/src/ExtClothMeshQuadifier.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc83f6887fbcfc83f688 /* ExtClothSimpleTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothSimpleTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothSimpleTetherCooker.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc83f6f07fbcfc83f6f0 /* ExtCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCollection.cpp"; path = "../../PhysXExtensions/src/ExtCollection.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc83f7587fbcfc83f758 /* ExtConvexMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConvexMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtConvexMeshExt.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc83f7c07fbcfc83f7c0 /* ExtCpuWorkerThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.cpp"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc83f8287fbcfc83f828 /* ExtD6Joint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.cpp"; path = "../../PhysXExtensions/src/ExtD6Joint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc83f8907fbcfc83f890 /* ExtD6JointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6JointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtD6JointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc83f8f87fbcfc83f8f8 /* ExtDefaultCpuDispatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.cpp"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc83f9607fbcfc83f960 /* ExtDefaultErrorCallback.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultErrorCallback.cpp"; path = "../../PhysXExtensions/src/ExtDefaultErrorCallback.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc83f9c87fbcfc83f9c8 /* ExtDefaultSimulationFilterShader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultSimulationFilterShader.cpp"; path = "../../PhysXExtensions/src/ExtDefaultSimulationFilterShader.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc83fa307fbcfc83fa30 /* ExtDefaultStreams.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultStreams.cpp"; path = "../../PhysXExtensions/src/ExtDefaultStreams.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc83fa987fbcfc83fa98 /* ExtDistanceJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc83fb007fbcfc83fb00 /* ExtDistanceJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc83fb687fbcfc83fb68 /* ExtExtensions.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtExtensions.cpp"; path = "../../PhysXExtensions/src/ExtExtensions.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc83fbd07fbcfc83fbd0 /* ExtFixedJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.cpp"; path = "../../PhysXExtensions/src/ExtFixedJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc83fc387fbcfc83fc38 /* ExtFixedJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtFixedJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc83fca07fbcfc83fca0 /* ExtJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.cpp"; path = "../../PhysXExtensions/src/ExtJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc83fd087fbcfc83fd08 /* ExtMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtMetaData.cpp"; path = "../../PhysXExtensions/src/ExtMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc83fd707fbcfc83fd70 /* ExtParticleExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtParticleExt.cpp"; path = "../../PhysXExtensions/src/ExtParticleExt.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc83fdd87fbcfc83fdd8 /* ExtPrismaticJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc83fe407fbcfc83fe40 /* ExtPrismaticJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc83fea87fbcfc83fea8 /* ExtPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.cpp"; path = "../../PhysXExtensions/src/ExtPvd.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc83ff107fbcfc83ff10 /* ExtPxStringTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPxStringTable.cpp"; path = "../../PhysXExtensions/src/ExtPxStringTable.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc83ff787fbcfc83ff78 /* ExtRaycastCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRaycastCCD.cpp"; path = "../../PhysXExtensions/src/ExtRaycastCCD.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc83ffe07fbcfc83ffe0 /* ExtRevoluteJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc8400487fbcfc840048 /* ExtRevoluteJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc8400b07fbcfc8400b0 /* ExtRigidBodyExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRigidBodyExt.cpp"; path = "../../PhysXExtensions/src/ExtRigidBodyExt.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc8401187fbcfc840118 /* ExtSceneQueryExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSceneQueryExt.cpp"; path = "../../PhysXExtensions/src/ExtSceneQueryExt.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc8401807fbcfc840180 /* ExtSimpleFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSimpleFactory.cpp"; path = "../../PhysXExtensions/src/ExtSimpleFactory.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc8401e87fbcfc8401e8 /* ExtSmoothNormals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSmoothNormals.cpp"; path = "../../PhysXExtensions/src/ExtSmoothNormals.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc8402507fbcfc840250 /* ExtSphericalJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc8402b87fbcfc8402b8 /* ExtSphericalJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc8403207fbcfc840320 /* ExtTriangleMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTriangleMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtTriangleMeshExt.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc8438007fbcfc843800 /* SnSerialUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.h"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8438687fbcfc843868 /* SnSerializationRegistry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.h"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8438d07fbcfc8438d0 /* SnSerialUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc8439387fbcfc843938 /* SnSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc8439a07fbcfc8439a0 /* SnSerializationRegistry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc843a087fbcfc843a08 /* Binary/SnConvX.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc843a707fbcfc843a70 /* Binary/SnConvX_Align.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc843ad87fbcfc843ad8 /* Binary/SnConvX_Common.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Common.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Common.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc843b407fbcfc843b40 /* Binary/SnConvX_MetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc843ba87fbcfc843ba8 /* Binary/SnConvX_Output.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc843c107fbcfc843c10 /* Binary/SnConvX_Union.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc843c787fbcfc843c78 /* Binary/SnSerializationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc843ce07fbcfc843ce0 /* Binary/SnBinaryDeserialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinaryDeserialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinaryDeserialization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc843d487fbcfc843d48 /* Binary/SnBinarySerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinarySerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinarySerialization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc843db07fbcfc843db0 /* Binary/SnConvX.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc843e187fbcfc843e18 /* Binary/SnConvX_Align.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc843e807fbcfc843e80 /* Binary/SnConvX_Convert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Convert.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Convert.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc843ee87fbcfc843ee8 /* Binary/SnConvX_Error.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Error.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Error.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc843f507fbcfc843f50 /* Binary/SnConvX_MetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc843fb87fbcfc843fb8 /* Binary/SnConvX_Output.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc8440207fbcfc844020 /* Binary/SnConvX_Union.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc8440887fbcfc844088 /* Binary/SnSerializationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc8440f07fbcfc8440f0 /* Xml/SnPxStreamOperators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnPxStreamOperators.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnPxStreamOperators.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8441587fbcfc844158 /* Xml/SnRepX1_0Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX1_0Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX1_0Defaults.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8441c07fbcfc8441c0 /* Xml/SnRepX3_1Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_1Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_1Defaults.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8442287fbcfc844228 /* Xml/SnRepX3_2Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_2Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_2Defaults.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8442907fbcfc844290 /* Xml/SnRepXCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCollection.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCollection.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8442f87fbcfc8442f8 /* Xml/SnRepXCoreSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8443607fbcfc844360 /* Xml/SnRepXSerializerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXSerializerImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXSerializerImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8443c87fbcfc8443c8 /* Xml/SnRepXUpgrader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8444307fbcfc844430 /* Xml/SnSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8444987fbcfc844498 /* Xml/SnXmlDeserializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlDeserializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlDeserializer.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8445007fbcfc844500 /* Xml/SnXmlImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8445687fbcfc844568 /* Xml/SnXmlMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryAllocator.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8445d07fbcfc8445d0 /* Xml/SnXmlMemoryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPool.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPool.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8446387fbcfc844638 /* Xml/SnXmlMemoryPoolStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPoolStreams.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPoolStreams.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8446a07fbcfc8446a0 /* Xml/SnXmlReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlReader.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8447087fbcfc844708 /* Xml/SnXmlSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerializer.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8447707fbcfc844770 /* Xml/SnXmlSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8447d87fbcfc8447d8 /* Xml/SnXmlStringToType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlStringToType.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlStringToType.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8448407fbcfc844840 /* Xml/SnXmlVisitorReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorReader.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8448a87fbcfc8448a8 /* Xml/SnXmlVisitorWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorWriter.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8449107fbcfc844910 /* Xml/SnXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlWriter.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8449787fbcfc844978 /* Xml/SnJointRepXSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnJointRepXSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc8449e07fbcfc8449e0 /* Xml/SnRepXCoreSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc844a487fbcfc844a48 /* Xml/SnRepXUpgrader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc844ab07fbcfc844ab0 /* Xml/SnXmlSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerialization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc844b187fbcfc844b18 /* File/SnFile.h */= { isa = PBXFileReference; fileEncoding = 4; name = "File/SnFile.h"; path = "../../PhysXExtensions/src/serialization/File/SnFile.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8414007fbcfc841400 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8414687fbcfc841468 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8414d07fbcfc8414d0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8415387fbcfc841538 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8415a07fbcfc8415a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8416087fbcfc841608 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8416707fbcfc841670 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8416d87fbcfc8416d8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8417407fbcfc841740 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8417a87fbcfc8417a8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8418107fbcfc841810 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8418787fbcfc841878 /* extensions/include/PxExtensionMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8418e07fbcfc8418e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXMetaData/extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb2fd2b007feab2fd2b00 /* PhysXExtensions */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXExtensions"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDb31c4c007feab31c4c00 /* PxBinaryConverter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBinaryConverter.h"; path = "../../../Include/extensions/PxBinaryConverter.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c4c687feab31c4c68 /* PxBroadPhaseExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhaseExt.h"; path = "../../../Include/extensions/PxBroadPhaseExt.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c4cd07feab31c4cd0 /* PxClothFabricCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothFabricCooker.h"; path = "../../../Include/extensions/PxClothFabricCooker.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c4d387feab31c4d38 /* PxClothMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshDesc.h"; path = "../../../Include/extensions/PxClothMeshDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c4da07feab31c4da0 /* PxClothMeshQuadifier.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshQuadifier.h"; path = "../../../Include/extensions/PxClothMeshQuadifier.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c4e087feab31c4e08 /* PxClothTetherCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothTetherCooker.h"; path = "../../../Include/extensions/PxClothTetherCooker.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c4e707feab31c4e70 /* PxCollectionExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCollectionExt.h"; path = "../../../Include/extensions/PxCollectionExt.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c4ed87feab31c4ed8 /* PxConstraintExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintExt.h"; path = "../../../Include/extensions/PxConstraintExt.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c4f407feab31c4f40 /* PxConvexMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshExt.h"; path = "../../../Include/extensions/PxConvexMeshExt.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c4fa87feab31c4fa8 /* PxD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxD6Joint.h"; path = "../../../Include/extensions/PxD6Joint.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c50107feab31c5010 /* PxDefaultAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultAllocator.h"; path = "../../../Include/extensions/PxDefaultAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c50787feab31c5078 /* PxDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultCpuDispatcher.h"; path = "../../../Include/extensions/PxDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c50e07feab31c50e0 /* PxDefaultErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultErrorCallback.h"; path = "../../../Include/extensions/PxDefaultErrorCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c51487feab31c5148 /* PxDefaultSimulationFilterShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultSimulationFilterShader.h"; path = "../../../Include/extensions/PxDefaultSimulationFilterShader.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c51b07feab31c51b0 /* PxDefaultStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultStreams.h"; path = "../../../Include/extensions/PxDefaultStreams.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c52187feab31c5218 /* PxDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDistanceJoint.h"; path = "../../../Include/extensions/PxDistanceJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c52807feab31c5280 /* PxExtensionsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtensionsAPI.h"; path = "../../../Include/extensions/PxExtensionsAPI.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c52e87feab31c52e8 /* PxFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFixedJoint.h"; path = "../../../Include/extensions/PxFixedJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c53507feab31c5350 /* PxJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJoint.h"; path = "../../../Include/extensions/PxJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c53b87feab31c53b8 /* PxJointLimit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJointLimit.h"; path = "../../../Include/extensions/PxJointLimit.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c54207feab31c5420 /* PxMassProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMassProperties.h"; path = "../../../Include/extensions/PxMassProperties.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c54887feab31c5488 /* PxParticleExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxParticleExt.h"; path = "../../../Include/extensions/PxParticleExt.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c54f07feab31c54f0 /* PxPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPrismaticJoint.h"; path = "../../../Include/extensions/PxPrismaticJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c55587feab31c5558 /* PxRaycastCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRaycastCCD.h"; path = "../../../Include/extensions/PxRaycastCCD.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c55c07feab31c55c0 /* PxRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSerializer.h"; path = "../../../Include/extensions/PxRepXSerializer.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c56287feab31c5628 /* PxRepXSimpleType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSimpleType.h"; path = "../../../Include/extensions/PxRepXSimpleType.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c56907feab31c5690 /* PxRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRevoluteJoint.h"; path = "../../../Include/extensions/PxRevoluteJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c56f87feab31c56f8 /* PxRigidActorExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActorExt.h"; path = "../../../Include/extensions/PxRigidActorExt.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c57607feab31c5760 /* PxRigidBodyExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBodyExt.h"; path = "../../../Include/extensions/PxRigidBodyExt.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c57c87feab31c57c8 /* PxSceneQueryExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneQueryExt.h"; path = "../../../Include/extensions/PxSceneQueryExt.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c58307feab31c5830 /* PxSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSerialization.h"; path = "../../../Include/extensions/PxSerialization.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c58987feab31c5898 /* PxShapeExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShapeExt.h"; path = "../../../Include/extensions/PxShapeExt.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c59007feab31c5900 /* PxSimpleFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleFactory.h"; path = "../../../Include/extensions/PxSimpleFactory.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c59687feab31c5968 /* PxSmoothNormals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSmoothNormals.h"; path = "../../../Include/extensions/PxSmoothNormals.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c59d07feab31c59d0 /* PxSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSphericalJoint.h"; path = "../../../Include/extensions/PxSphericalJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c5a387feab31c5a38 /* PxStringTableExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStringTableExt.h"; path = "../../../Include/extensions/PxStringTableExt.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c5aa07feab31c5aa0 /* PxTriangleMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshExt.h"; path = "../../../Include/extensions/PxTriangleMeshExt.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c36007feab31c3600 /* ExtConstraintHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConstraintHelper.h"; path = "../../PhysXExtensions/src/ExtConstraintHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c36687feab31c3668 /* ExtCpuWorkerThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.h"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c36d07feab31c36d0 /* ExtD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.h"; path = "../../PhysXExtensions/src/ExtD6Joint.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c37387feab31c3738 /* ExtDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.h"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c37a07feab31c37a0 /* ExtDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.h"; path = "../../PhysXExtensions/src/ExtDistanceJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c38087feab31c3808 /* ExtFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.h"; path = "../../PhysXExtensions/src/ExtFixedJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c38707feab31c3870 /* ExtInertiaTensor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtInertiaTensor.h"; path = "../../PhysXExtensions/src/ExtInertiaTensor.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c38d87feab31c38d8 /* ExtJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.h"; path = "../../PhysXExtensions/src/ExtJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c39407feab31c3940 /* ExtJointMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJointMetaDataExtensions.h"; path = "../../PhysXExtensions/src/ExtJointMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c39a87feab31c39a8 /* ExtPlatform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPlatform.h"; path = "../../PhysXExtensions/src/ExtPlatform.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c3a107feab31c3a10 /* ExtPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.h"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c3a787feab31c3a78 /* ExtPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.h"; path = "../../PhysXExtensions/src/ExtPvd.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c3ae07feab31c3ae0 /* ExtRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.h"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c3b487feab31c3b48 /* ExtSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSerialization.h"; path = "../../PhysXExtensions/src/ExtSerialization.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c3bb07feab31c3bb0 /* ExtSharedQueueEntryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSharedQueueEntryPool.h"; path = "../../PhysXExtensions/src/ExtSharedQueueEntryPool.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c3c187feab31c3c18 /* ExtSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.h"; path = "../../PhysXExtensions/src/ExtSphericalJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c3c807feab31c3c80 /* ExtTaskQueueHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTaskQueueHelper.h"; path = "../../PhysXExtensions/src/ExtTaskQueueHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c3ce87feab31c3ce8 /* ExtBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtBroadPhase.cpp"; path = "../../PhysXExtensions/src/ExtBroadPhase.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c3d507feab31c3d50 /* ExtClothFabricCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothFabricCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothFabricCooker.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c3db87feab31c3db8 /* ExtClothGeodesicTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothGeodesicTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothGeodesicTetherCooker.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c3e207feab31c3e20 /* ExtClothMeshQuadifier.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothMeshQuadifier.cpp"; path = "../../PhysXExtensions/src/ExtClothMeshQuadifier.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c3e887feab31c3e88 /* ExtClothSimpleTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothSimpleTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothSimpleTetherCooker.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c3ef07feab31c3ef0 /* ExtCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCollection.cpp"; path = "../../PhysXExtensions/src/ExtCollection.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c3f587feab31c3f58 /* ExtConvexMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConvexMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtConvexMeshExt.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c3fc07feab31c3fc0 /* ExtCpuWorkerThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.cpp"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c40287feab31c4028 /* ExtD6Joint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.cpp"; path = "../../PhysXExtensions/src/ExtD6Joint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c40907feab31c4090 /* ExtD6JointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6JointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtD6JointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c40f87feab31c40f8 /* ExtDefaultCpuDispatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.cpp"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c41607feab31c4160 /* ExtDefaultErrorCallback.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultErrorCallback.cpp"; path = "../../PhysXExtensions/src/ExtDefaultErrorCallback.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c41c87feab31c41c8 /* ExtDefaultSimulationFilterShader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultSimulationFilterShader.cpp"; path = "../../PhysXExtensions/src/ExtDefaultSimulationFilterShader.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c42307feab31c4230 /* ExtDefaultStreams.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultStreams.cpp"; path = "../../PhysXExtensions/src/ExtDefaultStreams.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c42987feab31c4298 /* ExtDistanceJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c43007feab31c4300 /* ExtDistanceJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c43687feab31c4368 /* ExtExtensions.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtExtensions.cpp"; path = "../../PhysXExtensions/src/ExtExtensions.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c43d07feab31c43d0 /* ExtFixedJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.cpp"; path = "../../PhysXExtensions/src/ExtFixedJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c44387feab31c4438 /* ExtFixedJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtFixedJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c44a07feab31c44a0 /* ExtJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.cpp"; path = "../../PhysXExtensions/src/ExtJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c45087feab31c4508 /* ExtMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtMetaData.cpp"; path = "../../PhysXExtensions/src/ExtMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c45707feab31c4570 /* ExtParticleExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtParticleExt.cpp"; path = "../../PhysXExtensions/src/ExtParticleExt.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c45d87feab31c45d8 /* ExtPrismaticJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c46407feab31c4640 /* ExtPrismaticJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c46a87feab31c46a8 /* ExtPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.cpp"; path = "../../PhysXExtensions/src/ExtPvd.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c47107feab31c4710 /* ExtPxStringTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPxStringTable.cpp"; path = "../../PhysXExtensions/src/ExtPxStringTable.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c47787feab31c4778 /* ExtRaycastCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRaycastCCD.cpp"; path = "../../PhysXExtensions/src/ExtRaycastCCD.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c47e07feab31c47e0 /* ExtRevoluteJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c48487feab31c4848 /* ExtRevoluteJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c48b07feab31c48b0 /* ExtRigidBodyExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRigidBodyExt.cpp"; path = "../../PhysXExtensions/src/ExtRigidBodyExt.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c49187feab31c4918 /* ExtSceneQueryExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSceneQueryExt.cpp"; path = "../../PhysXExtensions/src/ExtSceneQueryExt.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c49807feab31c4980 /* ExtSimpleFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSimpleFactory.cpp"; path = "../../PhysXExtensions/src/ExtSimpleFactory.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c49e87feab31c49e8 /* ExtSmoothNormals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSmoothNormals.cpp"; path = "../../PhysXExtensions/src/ExtSmoothNormals.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c4a507feab31c4a50 /* ExtSphericalJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c4ab87feab31c4ab8 /* ExtSphericalJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c4b207feab31c4b20 /* ExtTriangleMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTriangleMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtTriangleMeshExt.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c80007feab31c8000 /* SnSerialUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.h"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c80687feab31c8068 /* SnSerializationRegistry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.h"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c80d07feab31c80d0 /* SnSerialUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c81387feab31c8138 /* SnSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c81a07feab31c81a0 /* SnSerializationRegistry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c82087feab31c8208 /* Binary/SnConvX.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c82707feab31c8270 /* Binary/SnConvX_Align.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c82d87feab31c82d8 /* Binary/SnConvX_Common.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Common.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Common.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c83407feab31c8340 /* Binary/SnConvX_MetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c83a87feab31c83a8 /* Binary/SnConvX_Output.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c84107feab31c8410 /* Binary/SnConvX_Union.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c84787feab31c8478 /* Binary/SnSerializationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c84e07feab31c84e0 /* Binary/SnBinaryDeserialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinaryDeserialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinaryDeserialization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c85487feab31c8548 /* Binary/SnBinarySerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinarySerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinarySerialization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c85b07feab31c85b0 /* Binary/SnConvX.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c86187feab31c8618 /* Binary/SnConvX_Align.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c86807feab31c8680 /* Binary/SnConvX_Convert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Convert.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Convert.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c86e87feab31c86e8 /* Binary/SnConvX_Error.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Error.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Error.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c87507feab31c8750 /* Binary/SnConvX_MetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c87b87feab31c87b8 /* Binary/SnConvX_Output.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c88207feab31c8820 /* Binary/SnConvX_Union.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c88887feab31c8888 /* Binary/SnSerializationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c88f07feab31c88f0 /* Xml/SnJointRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnJointRepXSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c89587feab31c8958 /* Xml/SnPxStreamOperators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnPxStreamOperators.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnPxStreamOperators.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c89c07feab31c89c0 /* Xml/SnRepX1_0Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX1_0Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX1_0Defaults.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c8a287feab31c8a28 /* Xml/SnRepX3_1Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_1Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_1Defaults.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c8a907feab31c8a90 /* Xml/SnRepX3_2Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_2Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_2Defaults.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c8af87feab31c8af8 /* Xml/SnRepXCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCollection.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCollection.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c8b607feab31c8b60 /* Xml/SnRepXCoreSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c8bc87feab31c8bc8 /* Xml/SnRepXSerializerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXSerializerImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXSerializerImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c8c307feab31c8c30 /* Xml/SnRepXUpgrader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c8c987feab31c8c98 /* Xml/SnSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c8d007feab31c8d00 /* Xml/SnXmlDeserializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlDeserializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlDeserializer.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c8d687feab31c8d68 /* Xml/SnXmlImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c8dd07feab31c8dd0 /* Xml/SnXmlMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryAllocator.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c8e387feab31c8e38 /* Xml/SnXmlMemoryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPool.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPool.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c8ea07feab31c8ea0 /* Xml/SnXmlMemoryPoolStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPoolStreams.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPoolStreams.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c8f087feab31c8f08 /* Xml/SnXmlReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlReader.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c8f707feab31c8f70 /* Xml/SnXmlSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerializer.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c8fd87feab31c8fd8 /* Xml/SnXmlSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c90407feab31c9040 /* Xml/SnXmlStringToType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlStringToType.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlStringToType.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c90a87feab31c90a8 /* Xml/SnXmlVisitorReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorReader.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c91107feab31c9110 /* Xml/SnXmlVisitorWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorWriter.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c91787feab31c9178 /* Xml/SnXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlWriter.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c91e07feab31c91e0 /* Xml/SnJointRepXSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnJointRepXSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c92487feab31c9248 /* Xml/SnRepXCoreSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c92b07feab31c92b0 /* Xml/SnRepXUpgrader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c93187feab31c9318 /* Xml/SnXmlSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerialization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31c93807feab31c9380 /* File/SnFile.h */= { isa = PBXFileReference; fileEncoding = 4; name = "File/SnFile.h"; path = "../../PhysXExtensions/src/serialization/File/SnFile.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c5c007feab31c5c00 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c5c687feab31c5c68 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c5cd07feab31c5cd0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c5d387feab31c5d38 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c5da07feab31c5da0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c5e087feab31c5e08 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c5e707feab31c5e70 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c5ed87feab31c5ed8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c5f407feab31c5f40 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c5fa87feab31c5fa8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c60107feab31c6010 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c60787feab31c6078 /* extensions/include/PxExtensionMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31c60e07feab31c60e0 /* 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 */ - FFF2fc0c74907fbcfc0c7490 /* Resources */ = { + FFF2b2fd2b007feab2fd2b00 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -804,7 +804,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCfc0c74907fbcfc0c7490 /* Frameworks */ = { + FFFCb2fd2b007feab2fd2b00 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -814,64 +814,64 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8fc0c74907fbcfc0c7490 /* Sources */ = { + FFF8b2fd2b007feab2fd2b00 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFfc83f4e87fbcfc83f4e8, - FFFFfc83f5507fbcfc83f550, - FFFFfc83f5b87fbcfc83f5b8, - FFFFfc83f6207fbcfc83f620, - FFFFfc83f6887fbcfc83f688, - FFFFfc83f6f07fbcfc83f6f0, - FFFFfc83f7587fbcfc83f758, - FFFFfc83f7c07fbcfc83f7c0, - FFFFfc83f8287fbcfc83f828, - FFFFfc83f8907fbcfc83f890, - FFFFfc83f8f87fbcfc83f8f8, - FFFFfc83f9607fbcfc83f960, - FFFFfc83f9c87fbcfc83f9c8, - FFFFfc83fa307fbcfc83fa30, - FFFFfc83fa987fbcfc83fa98, - FFFFfc83fb007fbcfc83fb00, - FFFFfc83fb687fbcfc83fb68, - FFFFfc83fbd07fbcfc83fbd0, - FFFFfc83fc387fbcfc83fc38, - FFFFfc83fca07fbcfc83fca0, - FFFFfc83fd087fbcfc83fd08, - FFFFfc83fd707fbcfc83fd70, - FFFFfc83fdd87fbcfc83fdd8, - FFFFfc83fe407fbcfc83fe40, - FFFFfc83fea87fbcfc83fea8, - FFFFfc83ff107fbcfc83ff10, - FFFFfc83ff787fbcfc83ff78, - FFFFfc83ffe07fbcfc83ffe0, - FFFFfc8400487fbcfc840048, - FFFFfc8400b07fbcfc8400b0, - FFFFfc8401187fbcfc840118, - FFFFfc8401807fbcfc840180, - FFFFfc8401e87fbcfc8401e8, - FFFFfc8402507fbcfc840250, - FFFFfc8402b87fbcfc8402b8, - FFFFfc8403207fbcfc840320, - FFFFfc8438d07fbcfc8438d0, - FFFFfc8439387fbcfc843938, - FFFFfc8439a07fbcfc8439a0, - FFFFfc843ce07fbcfc843ce0, - FFFFfc843d487fbcfc843d48, - FFFFfc843db07fbcfc843db0, - FFFFfc843e187fbcfc843e18, - FFFFfc843e807fbcfc843e80, - FFFFfc843ee87fbcfc843ee8, - FFFFfc843f507fbcfc843f50, - FFFFfc843fb87fbcfc843fb8, - FFFFfc8440207fbcfc844020, - FFFFfc8440887fbcfc844088, - FFFFfc8449787fbcfc844978, - FFFFfc8449e07fbcfc8449e0, - FFFFfc844a487fbcfc844a48, - FFFFfc844ab07fbcfc844ab0, - FFFFfc8418e07fbcfc8418e0, + FFFFb31c3ce87feab31c3ce8, + FFFFb31c3d507feab31c3d50, + FFFFb31c3db87feab31c3db8, + FFFFb31c3e207feab31c3e20, + FFFFb31c3e887feab31c3e88, + FFFFb31c3ef07feab31c3ef0, + FFFFb31c3f587feab31c3f58, + FFFFb31c3fc07feab31c3fc0, + FFFFb31c40287feab31c4028, + FFFFb31c40907feab31c4090, + FFFFb31c40f87feab31c40f8, + FFFFb31c41607feab31c4160, + FFFFb31c41c87feab31c41c8, + FFFFb31c42307feab31c4230, + FFFFb31c42987feab31c4298, + FFFFb31c43007feab31c4300, + FFFFb31c43687feab31c4368, + FFFFb31c43d07feab31c43d0, + FFFFb31c44387feab31c4438, + FFFFb31c44a07feab31c44a0, + FFFFb31c45087feab31c4508, + FFFFb31c45707feab31c4570, + FFFFb31c45d87feab31c45d8, + FFFFb31c46407feab31c4640, + FFFFb31c46a87feab31c46a8, + FFFFb31c47107feab31c4710, + FFFFb31c47787feab31c4778, + FFFFb31c47e07feab31c47e0, + FFFFb31c48487feab31c4848, + FFFFb31c48b07feab31c48b0, + FFFFb31c49187feab31c4918, + FFFFb31c49807feab31c4980, + FFFFb31c49e87feab31c49e8, + FFFFb31c4a507feab31c4a50, + FFFFb31c4ab87feab31c4ab8, + FFFFb31c4b207feab31c4b20, + FFFFb31c80d07feab31c80d0, + FFFFb31c81387feab31c8138, + FFFFb31c81a07feab31c81a0, + FFFFb31c84e07feab31c84e0, + FFFFb31c85487feab31c8548, + FFFFb31c85b07feab31c85b0, + FFFFb31c86187feab31c8618, + FFFFb31c86807feab31c8680, + FFFFb31c86e87feab31c86e8, + FFFFb31c87507feab31c8750, + FFFFb31c87b87feab31c87b8, + FFFFb31c88207feab31c8820, + FFFFb31c88887feab31c8888, + FFFFb31c91e07feab31c91e0, + FFFFb31c92487feab31c9248, + FFFFb31c92b07feab31c92b0, + FFFFb31c93187feab31c9318, + FFFFb31c60e07feab31c60e0, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -880,56 +880,56 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF4fc0c97b07fbcfc0c97b0 /* PBXTargetDependency */ = { + FFF4b2fd33c07feab2fd33c0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAfc0657b07fbcfc0657b0 /* PsFastXml */; - targetProxy = FFF5fc0657b07fbcfc0657b0 /* PBXContainerItemProxy */; + target = FFFAb2fac9c07feab2fac9c0 /* PsFastXml */; + targetProxy = FFF5b2fac9c07feab2fac9c0 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of SceneQuery */ - FFFFfc8478007fbcfc847800 /* SqAABBPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8478007fbcfc847800 /* SqAABBPruner.cpp */; }; - FFFFfc8478687fbcfc847868 /* SqAABBTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8478687fbcfc847868 /* SqAABBTree.cpp */; }; - FFFFfc8478d07fbcfc8478d0 /* SqAABBTreeUpdateMap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8478d07fbcfc8478d0 /* SqAABBTreeUpdateMap.cpp */; }; - FFFFfc8479387fbcfc847938 /* SqBounds.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8479387fbcfc847938 /* SqBounds.cpp */; }; - FFFFfc8479a07fbcfc8479a0 /* SqBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8479a07fbcfc8479a0 /* SqBucketPruner.cpp */; }; - FFFFfc847a087fbcfc847a08 /* SqExtendedBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc847a087fbcfc847a08 /* SqExtendedBucketPruner.cpp */; }; - FFFFfc847a707fbcfc847a70 /* SqMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc847a707fbcfc847a70 /* SqMetaData.cpp */; }; - FFFFfc847ad87fbcfc847ad8 /* SqPruningPool.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc847ad87fbcfc847ad8 /* SqPruningPool.cpp */; }; - FFFFfc847b407fbcfc847b40 /* SqPruningStructure.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc847b407fbcfc847b40 /* SqPruningStructure.cpp */; }; - FFFFfc847ba87fbcfc847ba8 /* SqSceneQueryManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc847ba87fbcfc847ba8 /* SqSceneQueryManager.cpp */; }; + FFFFb31cc0007feab31cc000 /* SqAABBPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31cc0007feab31cc000 /* SqAABBPruner.cpp */; }; + FFFFb31cc0687feab31cc068 /* SqAABBTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31cc0687feab31cc068 /* SqAABBTree.cpp */; }; + FFFFb31cc0d07feab31cc0d0 /* SqAABBTreeUpdateMap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31cc0d07feab31cc0d0 /* SqAABBTreeUpdateMap.cpp */; }; + FFFFb31cc1387feab31cc138 /* SqBounds.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31cc1387feab31cc138 /* SqBounds.cpp */; }; + FFFFb31cc1a07feab31cc1a0 /* SqBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31cc1a07feab31cc1a0 /* SqBucketPruner.cpp */; }; + FFFFb31cc2087feab31cc208 /* SqExtendedBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31cc2087feab31cc208 /* SqExtendedBucketPruner.cpp */; }; + FFFFb31cc2707feab31cc270 /* SqMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31cc2707feab31cc270 /* SqMetaData.cpp */; }; + FFFFb31cc2d87feab31cc2d8 /* SqPruningPool.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31cc2d87feab31cc2d8 /* SqPruningPool.cpp */; }; + FFFFb31cc3407feab31cc340 /* SqPruningStructure.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31cc3407feab31cc340 /* SqPruningStructure.cpp */; }; + FFFFb31cc3a87feab31cc3a8 /* SqSceneQueryManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31cc3a87feab31cc3a8 /* SqSceneQueryManager.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDfc0985207fbcfc098520 /* SceneQuery */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SceneQuery"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDfc8478007fbcfc847800 /* SqAABBPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.cpp"; path = "../../SceneQuery/src/SqAABBPruner.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc8478687fbcfc847868 /* SqAABBTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.cpp"; path = "../../SceneQuery/src/SqAABBTree.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc8478d07fbcfc8478d0 /* SqAABBTreeUpdateMap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.cpp"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc8479387fbcfc847938 /* SqBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.cpp"; path = "../../SceneQuery/src/SqBounds.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc8479a07fbcfc8479a0 /* SqBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.cpp"; path = "../../SceneQuery/src/SqBucketPruner.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc847a087fbcfc847a08 /* SqExtendedBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.cpp"; path = "../../SceneQuery/src/SqExtendedBucketPruner.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc847a707fbcfc847a70 /* SqMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqMetaData.cpp"; path = "../../SceneQuery/src/SqMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc847ad87fbcfc847ad8 /* SqPruningPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.cpp"; path = "../../SceneQuery/src/SqPruningPool.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc847b407fbcfc847b40 /* SqPruningStructure.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.cpp"; path = "../../SceneQuery/src/SqPruningStructure.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc847ba87fbcfc847ba8 /* SqSceneQueryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.cpp"; path = "../../SceneQuery/src/SqSceneQueryManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc847c107fbcfc847c10 /* SqAABBPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.h"; path = "../../SceneQuery/src/SqAABBPruner.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc847c787fbcfc847c78 /* SqAABBTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.h"; path = "../../SceneQuery/src/SqAABBTree.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc847ce07fbcfc847ce0 /* SqAABBTreeQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeQuery.h"; path = "../../SceneQuery/src/SqAABBTreeQuery.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc847d487fbcfc847d48 /* SqAABBTreeUpdateMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.h"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc847db07fbcfc847db0 /* SqBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.h"; path = "../../SceneQuery/src/SqBounds.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc847e187fbcfc847e18 /* SqBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.h"; path = "../../SceneQuery/src/SqBucketPruner.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc847e807fbcfc847e80 /* SqExtendedBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.h"; path = "../../SceneQuery/src/SqExtendedBucketPruner.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc847ee87fbcfc847ee8 /* SqPrunerTestsSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerTestsSIMD.h"; path = "../../SceneQuery/src/SqPrunerTestsSIMD.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc847f507fbcfc847f50 /* SqPruningPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.h"; path = "../../SceneQuery/src/SqPruningPool.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc847fb87fbcfc847fb8 /* SqTypedef.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqTypedef.h"; path = "../../SceneQuery/src/SqTypedef.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc08d1907fbcfc08d190 /* SqPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruner.h"; path = "../../SceneQuery/include/SqPruner.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc08d1f87fbcfc08d1f8 /* SqPrunerMergeData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerMergeData.h"; path = "../../SceneQuery/include/SqPrunerMergeData.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc08d2607fbcfc08d260 /* SqPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.h"; path = "../../SceneQuery/include/SqPruningStructure.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc08d2c87fbcfc08d2c8 /* SqSceneQueryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.h"; path = "../../SceneQuery/include/SqSceneQueryManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDb2fe3bd07feab2fe3bd0 /* SceneQuery */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SceneQuery"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDb31cc0007feab31cc000 /* SqAABBPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.cpp"; path = "../../SceneQuery/src/SqAABBPruner.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31cc0687feab31cc068 /* SqAABBTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.cpp"; path = "../../SceneQuery/src/SqAABBTree.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31cc0d07feab31cc0d0 /* SqAABBTreeUpdateMap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.cpp"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31cc1387feab31cc138 /* SqBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.cpp"; path = "../../SceneQuery/src/SqBounds.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31cc1a07feab31cc1a0 /* SqBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.cpp"; path = "../../SceneQuery/src/SqBucketPruner.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31cc2087feab31cc208 /* SqExtendedBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.cpp"; path = "../../SceneQuery/src/SqExtendedBucketPruner.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31cc2707feab31cc270 /* SqMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqMetaData.cpp"; path = "../../SceneQuery/src/SqMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31cc2d87feab31cc2d8 /* SqPruningPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.cpp"; path = "../../SceneQuery/src/SqPruningPool.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31cc3407feab31cc340 /* SqPruningStructure.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.cpp"; path = "../../SceneQuery/src/SqPruningStructure.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31cc3a87feab31cc3a8 /* SqSceneQueryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.cpp"; path = "../../SceneQuery/src/SqSceneQueryManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31cc4107feab31cc410 /* SqAABBPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.h"; path = "../../SceneQuery/src/SqAABBPruner.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31cc4787feab31cc478 /* SqAABBTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.h"; path = "../../SceneQuery/src/SqAABBTree.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31cc4e07feab31cc4e0 /* SqAABBTreeQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeQuery.h"; path = "../../SceneQuery/src/SqAABBTreeQuery.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31cc5487feab31cc548 /* SqAABBTreeUpdateMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.h"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31cc5b07feab31cc5b0 /* SqBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.h"; path = "../../SceneQuery/src/SqBounds.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31cc6187feab31cc618 /* SqBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.h"; path = "../../SceneQuery/src/SqBucketPruner.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31cc6807feab31cc680 /* SqExtendedBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.h"; path = "../../SceneQuery/src/SqExtendedBucketPruner.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31cc6e87feab31cc6e8 /* SqPrunerTestsSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerTestsSIMD.h"; path = "../../SceneQuery/src/SqPrunerTestsSIMD.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31cc7507feab31cc750 /* SqPruningPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.h"; path = "../../SceneQuery/src/SqPruningPool.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31cc7b87feab31cc7b8 /* SqTypedef.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqTypedef.h"; path = "../../SceneQuery/src/SqTypedef.h"; sourceTree = SOURCE_ROOT; }; + FFFDb2fe80007feab2fe8000 /* SqPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruner.h"; path = "../../SceneQuery/include/SqPruner.h"; sourceTree = SOURCE_ROOT; }; + FFFDb2fe80687feab2fe8068 /* SqPrunerMergeData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerMergeData.h"; path = "../../SceneQuery/include/SqPrunerMergeData.h"; sourceTree = SOURCE_ROOT; }; + FFFDb2fe80d07feab2fe80d0 /* SqPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.h"; path = "../../SceneQuery/include/SqPruningStructure.h"; sourceTree = SOURCE_ROOT; }; + FFFDb2fe81387feab2fe8138 /* SqSceneQueryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.h"; path = "../../SceneQuery/include/SqSceneQueryManager.h"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2fc0985207fbcfc098520 /* Resources */ = { + FFF2b2fe3bd07feab2fe3bd0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -939,7 +939,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCfc0985207fbcfc098520 /* Frameworks */ = { + FFFCb2fe3bd07feab2fe3bd0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -949,20 +949,20 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8fc0985207fbcfc098520 /* Sources */ = { + FFF8b2fe3bd07feab2fe3bd0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFfc8478007fbcfc847800, - FFFFfc8478687fbcfc847868, - FFFFfc8478d07fbcfc8478d0, - FFFFfc8479387fbcfc847938, - FFFFfc8479a07fbcfc8479a0, - FFFFfc847a087fbcfc847a08, - FFFFfc847a707fbcfc847a70, - FFFFfc847ad87fbcfc847ad8, - FFFFfc847b407fbcfc847b40, - FFFFfc847ba87fbcfc847ba8, + FFFFb31cc0007feab31cc000, + FFFFb31cc0687feab31cc068, + FFFFb31cc0d07feab31cc0d0, + FFFFb31cc1387feab31cc138, + FFFFb31cc1a07feab31cc1a0, + FFFFb31cc2087feab31cc208, + FFFFb31cc2707feab31cc270, + FFFFb31cc2d87feab31cc2d8, + FFFFb31cc3407feab31cc340, + FFFFb31cc3a87feab31cc3a8, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -974,154 +974,154 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of SimulationController */ - FFFFfc84e1d07fbcfc84e1d0 /* ScActorCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84e1d07fbcfc84e1d0 /* ScActorCore.cpp */; }; - FFFFfc84e2387fbcfc84e238 /* ScActorSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84e2387fbcfc84e238 /* ScActorSim.cpp */; }; - FFFFfc84e2a07fbcfc84e2a0 /* ScArticulationCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84e2a07fbcfc84e2a0 /* ScArticulationCore.cpp */; }; - FFFFfc84e3087fbcfc84e308 /* ScArticulationJointCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84e3087fbcfc84e308 /* ScArticulationJointCore.cpp */; }; - FFFFfc84e3707fbcfc84e370 /* ScArticulationJointSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84e3707fbcfc84e370 /* ScArticulationJointSim.cpp */; }; - FFFFfc84e3d87fbcfc84e3d8 /* ScArticulationSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84e3d87fbcfc84e3d8 /* ScArticulationSim.cpp */; }; - FFFFfc84e4407fbcfc84e440 /* ScBodyCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84e4407fbcfc84e440 /* ScBodyCore.cpp */; }; - FFFFfc84e4a87fbcfc84e4a8 /* ScBodyCoreKinematic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84e4a87fbcfc84e4a8 /* ScBodyCoreKinematic.cpp */; }; - FFFFfc84e5107fbcfc84e510 /* ScBodySim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84e5107fbcfc84e510 /* ScBodySim.cpp */; }; - FFFFfc84e5787fbcfc84e578 /* ScConstraintCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84e5787fbcfc84e578 /* ScConstraintCore.cpp */; }; - FFFFfc84e5e07fbcfc84e5e0 /* ScConstraintGroupNode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84e5e07fbcfc84e5e0 /* ScConstraintGroupNode.cpp */; }; - FFFFfc84e6487fbcfc84e648 /* ScConstraintInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84e6487fbcfc84e648 /* ScConstraintInteraction.cpp */; }; - FFFFfc84e6b07fbcfc84e6b0 /* ScConstraintProjectionManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84e6b07fbcfc84e6b0 /* ScConstraintProjectionManager.cpp */; }; - FFFFfc84e7187fbcfc84e718 /* ScConstraintProjectionTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84e7187fbcfc84e718 /* ScConstraintProjectionTree.cpp */; }; - FFFFfc84e7807fbcfc84e780 /* ScConstraintSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84e7807fbcfc84e780 /* ScConstraintSim.cpp */; }; - FFFFfc84e7e87fbcfc84e7e8 /* ScElementInteractionMarker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84e7e87fbcfc84e7e8 /* ScElementInteractionMarker.cpp */; }; - FFFFfc84e8507fbcfc84e850 /* ScElementSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84e8507fbcfc84e850 /* ScElementSim.cpp */; }; - FFFFfc84e8b87fbcfc84e8b8 /* ScInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84e8b87fbcfc84e8b8 /* ScInteraction.cpp */; }; - FFFFfc84e9207fbcfc84e920 /* ScIterators.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84e9207fbcfc84e920 /* ScIterators.cpp */; }; - FFFFfc84e9887fbcfc84e988 /* ScMaterialCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84e9887fbcfc84e988 /* ScMaterialCore.cpp */; }; - FFFFfc84e9f07fbcfc84e9f0 /* ScMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84e9f07fbcfc84e9f0 /* ScMetaData.cpp */; }; - FFFFfc84ea587fbcfc84ea58 /* ScNPhaseCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84ea587fbcfc84ea58 /* ScNPhaseCore.cpp */; }; - FFFFfc84eac07fbcfc84eac0 /* ScPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84eac07fbcfc84eac0 /* ScPhysics.cpp */; }; - FFFFfc84eb287fbcfc84eb28 /* ScRigidCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84eb287fbcfc84eb28 /* ScRigidCore.cpp */; }; - FFFFfc84eb907fbcfc84eb90 /* ScRigidSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84eb907fbcfc84eb90 /* ScRigidSim.cpp */; }; - FFFFfc84ebf87fbcfc84ebf8 /* ScScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84ebf87fbcfc84ebf8 /* ScScene.cpp */; }; - FFFFfc84ec607fbcfc84ec60 /* ScShapeCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84ec607fbcfc84ec60 /* ScShapeCore.cpp */; }; - FFFFfc84ecc87fbcfc84ecc8 /* ScShapeInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84ecc87fbcfc84ecc8 /* ScShapeInteraction.cpp */; }; - FFFFfc84ed307fbcfc84ed30 /* ScShapeSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84ed307fbcfc84ed30 /* ScShapeSim.cpp */; }; - FFFFfc84ed987fbcfc84ed98 /* ScSimStats.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84ed987fbcfc84ed98 /* ScSimStats.cpp */; }; - FFFFfc84ee007fbcfc84ee00 /* ScSimulationController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84ee007fbcfc84ee00 /* ScSimulationController.cpp */; }; - FFFFfc84ee687fbcfc84ee68 /* ScSqBoundsManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84ee687fbcfc84ee68 /* ScSqBoundsManager.cpp */; }; - FFFFfc84eed07fbcfc84eed0 /* ScStaticCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84eed07fbcfc84eed0 /* ScStaticCore.cpp */; }; - FFFFfc84ef387fbcfc84ef38 /* ScStaticSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84ef387fbcfc84ef38 /* ScStaticSim.cpp */; }; - FFFFfc84efa07fbcfc84efa0 /* ScTriggerInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84efa07fbcfc84efa0 /* ScTriggerInteraction.cpp */; }; - FFFFfc84f1407fbcfc84f140 /* particles/ScParticleBodyInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84f1407fbcfc84f140 /* particles/ScParticleBodyInteraction.cpp */; }; - FFFFfc84f1a87fbcfc84f1a8 /* particles/ScParticlePacketShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84f1a87fbcfc84f1a8 /* particles/ScParticlePacketShape.cpp */; }; - FFFFfc84f2107fbcfc84f210 /* particles/ScParticleSystemCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84f2107fbcfc84f210 /* particles/ScParticleSystemCore.cpp */; }; - FFFFfc84f2787fbcfc84f278 /* particles/ScParticleSystemSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84f2787fbcfc84f278 /* particles/ScParticleSystemSim.cpp */; }; - FFFFfc84f3b07fbcfc84f3b0 /* cloth/ScClothCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84f3b07fbcfc84f3b0 /* cloth/ScClothCore.cpp */; }; - FFFFfc84f4187fbcfc84f418 /* cloth/ScClothFabricCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84f4187fbcfc84f418 /* cloth/ScClothFabricCore.cpp */; }; - FFFFfc84f4807fbcfc84f480 /* cloth/ScClothShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84f4807fbcfc84f480 /* cloth/ScClothShape.cpp */; }; - FFFFfc84f4e87fbcfc84f4e8 /* cloth/ScClothSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc84f4e87fbcfc84f4e8 /* cloth/ScClothSim.cpp */; }; + FFFFb31d29d07feab31d29d0 /* ScActorCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31d29d07feab31d29d0 /* ScActorCore.cpp */; }; + FFFFb31d2a387feab31d2a38 /* ScActorSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31d2a387feab31d2a38 /* ScActorSim.cpp */; }; + FFFFb31d2aa07feab31d2aa0 /* ScArticulationCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31d2aa07feab31d2aa0 /* ScArticulationCore.cpp */; }; + FFFFb31d2b087feab31d2b08 /* ScArticulationJointCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31d2b087feab31d2b08 /* ScArticulationJointCore.cpp */; }; + FFFFb31d2b707feab31d2b70 /* ScArticulationJointSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31d2b707feab31d2b70 /* ScArticulationJointSim.cpp */; }; + FFFFb31d2bd87feab31d2bd8 /* ScArticulationSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31d2bd87feab31d2bd8 /* ScArticulationSim.cpp */; }; + FFFFb31d2c407feab31d2c40 /* ScBodyCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31d2c407feab31d2c40 /* ScBodyCore.cpp */; }; + FFFFb31d2ca87feab31d2ca8 /* ScBodyCoreKinematic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31d2ca87feab31d2ca8 /* ScBodyCoreKinematic.cpp */; }; + FFFFb31d2d107feab31d2d10 /* ScBodySim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31d2d107feab31d2d10 /* ScBodySim.cpp */; }; + FFFFb31d2d787feab31d2d78 /* ScConstraintCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31d2d787feab31d2d78 /* ScConstraintCore.cpp */; }; + FFFFb31d2de07feab31d2de0 /* ScConstraintGroupNode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31d2de07feab31d2de0 /* ScConstraintGroupNode.cpp */; }; + FFFFb31d2e487feab31d2e48 /* ScConstraintInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31d2e487feab31d2e48 /* ScConstraintInteraction.cpp */; }; + FFFFb31d2eb07feab31d2eb0 /* ScConstraintProjectionManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31d2eb07feab31d2eb0 /* ScConstraintProjectionManager.cpp */; }; + FFFFb31d2f187feab31d2f18 /* ScConstraintProjectionTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31d2f187feab31d2f18 /* ScConstraintProjectionTree.cpp */; }; + FFFFb31d2f807feab31d2f80 /* ScConstraintSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31d2f807feab31d2f80 /* ScConstraintSim.cpp */; }; + FFFFb31d2fe87feab31d2fe8 /* ScElementInteractionMarker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31d2fe87feab31d2fe8 /* ScElementInteractionMarker.cpp */; }; + FFFFb31d30507feab31d3050 /* ScElementSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31d30507feab31d3050 /* ScElementSim.cpp */; }; + FFFFb31d30b87feab31d30b8 /* ScInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31d30b87feab31d30b8 /* ScInteraction.cpp */; }; + FFFFb31d31207feab31d3120 /* ScIterators.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31d31207feab31d3120 /* ScIterators.cpp */; }; + FFFFb31d31887feab31d3188 /* ScMaterialCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31d31887feab31d3188 /* ScMaterialCore.cpp */; }; + FFFFb31d31f07feab31d31f0 /* ScMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31d31f07feab31d31f0 /* ScMetaData.cpp */; }; + FFFFb31d32587feab31d3258 /* ScNPhaseCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31d32587feab31d3258 /* ScNPhaseCore.cpp */; }; + FFFFb31d32c07feab31d32c0 /* ScPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31d32c07feab31d32c0 /* ScPhysics.cpp */; }; + FFFFb31d33287feab31d3328 /* ScRigidCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31d33287feab31d3328 /* ScRigidCore.cpp */; }; + FFFFb31d33907feab31d3390 /* ScRigidSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31d33907feab31d3390 /* ScRigidSim.cpp */; }; + FFFFb31d33f87feab31d33f8 /* ScScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31d33f87feab31d33f8 /* ScScene.cpp */; }; + FFFFb31d34607feab31d3460 /* ScShapeCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31d34607feab31d3460 /* ScShapeCore.cpp */; }; + FFFFb31d34c87feab31d34c8 /* ScShapeInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31d34c87feab31d34c8 /* ScShapeInteraction.cpp */; }; + FFFFb31d35307feab31d3530 /* ScShapeSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31d35307feab31d3530 /* ScShapeSim.cpp */; }; + FFFFb31d35987feab31d3598 /* ScSimStats.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31d35987feab31d3598 /* ScSimStats.cpp */; }; + FFFFb31d36007feab31d3600 /* ScSimulationController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31d36007feab31d3600 /* ScSimulationController.cpp */; }; + FFFFb31d36687feab31d3668 /* ScSqBoundsManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31d36687feab31d3668 /* ScSqBoundsManager.cpp */; }; + FFFFb31d36d07feab31d36d0 /* ScStaticCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31d36d07feab31d36d0 /* ScStaticCore.cpp */; }; + FFFFb31d37387feab31d3738 /* ScStaticSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31d37387feab31d3738 /* ScStaticSim.cpp */; }; + FFFFb31d37a07feab31d37a0 /* ScTriggerInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31d37a07feab31d37a0 /* ScTriggerInteraction.cpp */; }; + FFFFb31d39407feab31d3940 /* particles/ScParticleBodyInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31d39407feab31d3940 /* particles/ScParticleBodyInteraction.cpp */; }; + FFFFb31d39a87feab31d39a8 /* particles/ScParticlePacketShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31d39a87feab31d39a8 /* particles/ScParticlePacketShape.cpp */; }; + FFFFb31d3a107feab31d3a10 /* particles/ScParticleSystemCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31d3a107feab31d3a10 /* particles/ScParticleSystemCore.cpp */; }; + FFFFb31d3a787feab31d3a78 /* particles/ScParticleSystemSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31d3a787feab31d3a78 /* particles/ScParticleSystemSim.cpp */; }; + FFFFb31d3bb07feab31d3bb0 /* cloth/ScClothCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31d3bb07feab31d3bb0 /* cloth/ScClothCore.cpp */; }; + FFFFb31d3c187feab31d3c18 /* cloth/ScClothFabricCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31d3c187feab31d3c18 /* cloth/ScClothFabricCore.cpp */; }; + FFFFb31d3c807feab31d3c80 /* cloth/ScClothShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31d3c807feab31d3c80 /* cloth/ScClothShape.cpp */; }; + FFFFb31d3ce87feab31d3ce8 /* cloth/ScClothSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31d3ce87feab31d3ce8 /* cloth/ScClothSim.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDfc08d4e07fbcfc08d4e0 /* SimulationController */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SimulationController"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDfc84a2007fbcfc84a200 /* ScActorCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.h"; path = "../../SimulationController/include/ScActorCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc84a2687fbcfc84a268 /* ScArticulationCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.h"; path = "../../SimulationController/include/ScArticulationCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc84a2d07fbcfc84a2d0 /* ScArticulationJointCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.h"; path = "../../SimulationController/include/ScArticulationJointCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc84a3387fbcfc84a338 /* ScBodyCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.h"; path = "../../SimulationController/include/ScBodyCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc84a3a07fbcfc84a3a0 /* ScClothCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothCore.h"; path = "../../SimulationController/include/ScClothCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc84a4087fbcfc84a408 /* ScClothFabricCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothFabricCore.h"; path = "../../SimulationController/include/ScClothFabricCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc84a4707fbcfc84a470 /* ScConstraintCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.h"; path = "../../SimulationController/include/ScConstraintCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc84a4d87fbcfc84a4d8 /* ScIterators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.h"; path = "../../SimulationController/include/ScIterators.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc84a5407fbcfc84a540 /* ScMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.h"; path = "../../SimulationController/include/ScMaterialCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc84a5a87fbcfc84a5a8 /* ScParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScParticleSystemCore.h"; path = "../../SimulationController/include/ScParticleSystemCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc84a6107fbcfc84a610 /* ScPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.h"; path = "../../SimulationController/include/ScPhysics.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc84a6787fbcfc84a678 /* ScRigidCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.h"; path = "../../SimulationController/include/ScRigidCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc84a6e07fbcfc84a6e0 /* ScScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.h"; path = "../../SimulationController/include/ScScene.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc84a7487fbcfc84a748 /* ScShapeCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.h"; path = "../../SimulationController/include/ScShapeCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc84a7b07fbcfc84a7b0 /* ScStaticCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.h"; path = "../../SimulationController/include/ScStaticCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc84d4007fbcfc84d400 /* ScActorElementPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorElementPair.h"; path = "../../SimulationController/src/ScActorElementPair.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc84d4687fbcfc84d468 /* ScActorInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorInteraction.h"; path = "../../SimulationController/src/ScActorInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc84d4d07fbcfc84d4d0 /* ScActorPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorPair.h"; path = "../../SimulationController/src/ScActorPair.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc84d5387fbcfc84d538 /* ScActorSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.h"; path = "../../SimulationController/src/ScActorSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc84d5a07fbcfc84d5a0 /* ScArticulationJointSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.h"; path = "../../SimulationController/src/ScArticulationJointSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc84d6087fbcfc84d608 /* ScArticulationSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.h"; path = "../../SimulationController/src/ScArticulationSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc84d6707fbcfc84d670 /* ScBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.h"; path = "../../SimulationController/src/ScBodySim.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc84d6d87fbcfc84d6d8 /* ScClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClient.h"; path = "../../SimulationController/src/ScClient.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc84d7407fbcfc84d740 /* ScConstraintGroupNode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.h"; path = "../../SimulationController/src/ScConstraintGroupNode.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc84d7a87fbcfc84d7a8 /* ScConstraintInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.h"; path = "../../SimulationController/src/ScConstraintInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc84d8107fbcfc84d810 /* ScConstraintProjectionManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.h"; path = "../../SimulationController/src/ScConstraintProjectionManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc84d8787fbcfc84d878 /* ScConstraintProjectionTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.h"; path = "../../SimulationController/src/ScConstraintProjectionTree.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc84d8e07fbcfc84d8e0 /* ScConstraintSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.h"; path = "../../SimulationController/src/ScConstraintSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc84d9487fbcfc84d948 /* ScContactReportBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactReportBuffer.h"; path = "../../SimulationController/src/ScContactReportBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc84d9b07fbcfc84d9b0 /* ScContactStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactStream.h"; path = "../../SimulationController/src/ScContactStream.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc84da187fbcfc84da18 /* ScElementInteractionMarker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.h"; path = "../../SimulationController/src/ScElementInteractionMarker.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc84da807fbcfc84da80 /* ScElementSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.h"; path = "../../SimulationController/src/ScElementSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc84dae87fbcfc84dae8 /* ScElementSimInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSimInteraction.h"; path = "../../SimulationController/src/ScElementSimInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc84db507fbcfc84db50 /* ScInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.h"; path = "../../SimulationController/src/ScInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc84dbb87fbcfc84dbb8 /* ScInteractionFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteractionFlags.h"; path = "../../SimulationController/src/ScInteractionFlags.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc84dc207fbcfc84dc20 /* ScNPhaseCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.h"; path = "../../SimulationController/src/ScNPhaseCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc84dc887fbcfc84dc88 /* ScObjectIDTracker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScObjectIDTracker.h"; path = "../../SimulationController/src/ScObjectIDTracker.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc84dcf07fbcfc84dcf0 /* ScRbElementInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRbElementInteraction.h"; path = "../../SimulationController/src/ScRbElementInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc84dd587fbcfc84dd58 /* ScRigidSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.h"; path = "../../SimulationController/src/ScRigidSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc84ddc07fbcfc84ddc0 /* ScShapeInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.h"; path = "../../SimulationController/src/ScShapeInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc84de287fbcfc84de28 /* ScShapeIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeIterator.h"; path = "../../SimulationController/src/ScShapeIterator.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc84de907fbcfc84de90 /* ScShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.h"; path = "../../SimulationController/src/ScShapeSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc84def87fbcfc84def8 /* ScSimStateData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStateData.h"; path = "../../SimulationController/src/ScSimStateData.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc84df607fbcfc84df60 /* ScSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.h"; path = "../../SimulationController/src/ScSimStats.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc84dfc87fbcfc84dfc8 /* ScSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.h"; path = "../../SimulationController/src/ScSimulationController.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc84e0307fbcfc84e030 /* ScSqBoundsManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.h"; path = "../../SimulationController/src/ScSqBoundsManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc84e0987fbcfc84e098 /* ScStaticSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.h"; path = "../../SimulationController/src/ScStaticSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc84e1007fbcfc84e100 /* ScTriggerInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.h"; path = "../../SimulationController/src/ScTriggerInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc84e1687fbcfc84e168 /* ScTriggerPairs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerPairs.h"; path = "../../SimulationController/src/ScTriggerPairs.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc84e1d07fbcfc84e1d0 /* ScActorCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.cpp"; path = "../../SimulationController/src/ScActorCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc84e2387fbcfc84e238 /* ScActorSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.cpp"; path = "../../SimulationController/src/ScActorSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc84e2a07fbcfc84e2a0 /* ScArticulationCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.cpp"; path = "../../SimulationController/src/ScArticulationCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc84e3087fbcfc84e308 /* ScArticulationJointCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.cpp"; path = "../../SimulationController/src/ScArticulationJointCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc84e3707fbcfc84e370 /* ScArticulationJointSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.cpp"; path = "../../SimulationController/src/ScArticulationJointSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc84e3d87fbcfc84e3d8 /* ScArticulationSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.cpp"; path = "../../SimulationController/src/ScArticulationSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc84e4407fbcfc84e440 /* ScBodyCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.cpp"; path = "../../SimulationController/src/ScBodyCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc84e4a87fbcfc84e4a8 /* ScBodyCoreKinematic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCoreKinematic.cpp"; path = "../../SimulationController/src/ScBodyCoreKinematic.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc84e5107fbcfc84e510 /* ScBodySim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.cpp"; path = "../../SimulationController/src/ScBodySim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc84e5787fbcfc84e578 /* ScConstraintCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.cpp"; path = "../../SimulationController/src/ScConstraintCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc84e5e07fbcfc84e5e0 /* ScConstraintGroupNode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.cpp"; path = "../../SimulationController/src/ScConstraintGroupNode.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc84e6487fbcfc84e648 /* ScConstraintInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.cpp"; path = "../../SimulationController/src/ScConstraintInteraction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc84e6b07fbcfc84e6b0 /* ScConstraintProjectionManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.cpp"; path = "../../SimulationController/src/ScConstraintProjectionManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc84e7187fbcfc84e718 /* ScConstraintProjectionTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.cpp"; path = "../../SimulationController/src/ScConstraintProjectionTree.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc84e7807fbcfc84e780 /* ScConstraintSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.cpp"; path = "../../SimulationController/src/ScConstraintSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc84e7e87fbcfc84e7e8 /* ScElementInteractionMarker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.cpp"; path = "../../SimulationController/src/ScElementInteractionMarker.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc84e8507fbcfc84e850 /* ScElementSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.cpp"; path = "../../SimulationController/src/ScElementSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc84e8b87fbcfc84e8b8 /* ScInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.cpp"; path = "../../SimulationController/src/ScInteraction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc84e9207fbcfc84e920 /* ScIterators.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.cpp"; path = "../../SimulationController/src/ScIterators.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc84e9887fbcfc84e988 /* ScMaterialCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.cpp"; path = "../../SimulationController/src/ScMaterialCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc84e9f07fbcfc84e9f0 /* ScMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMetaData.cpp"; path = "../../SimulationController/src/ScMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc84ea587fbcfc84ea58 /* ScNPhaseCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.cpp"; path = "../../SimulationController/src/ScNPhaseCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc84eac07fbcfc84eac0 /* ScPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.cpp"; path = "../../SimulationController/src/ScPhysics.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc84eb287fbcfc84eb28 /* ScRigidCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.cpp"; path = "../../SimulationController/src/ScRigidCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc84eb907fbcfc84eb90 /* ScRigidSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.cpp"; path = "../../SimulationController/src/ScRigidSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc84ebf87fbcfc84ebf8 /* ScScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.cpp"; path = "../../SimulationController/src/ScScene.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc84ec607fbcfc84ec60 /* ScShapeCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.cpp"; path = "../../SimulationController/src/ScShapeCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc84ecc87fbcfc84ecc8 /* ScShapeInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.cpp"; path = "../../SimulationController/src/ScShapeInteraction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc84ed307fbcfc84ed30 /* ScShapeSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.cpp"; path = "../../SimulationController/src/ScShapeSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc84ed987fbcfc84ed98 /* ScSimStats.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.cpp"; path = "../../SimulationController/src/ScSimStats.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc84ee007fbcfc84ee00 /* ScSimulationController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.cpp"; path = "../../SimulationController/src/ScSimulationController.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc84ee687fbcfc84ee68 /* ScSqBoundsManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.cpp"; path = "../../SimulationController/src/ScSqBoundsManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc84eed07fbcfc84eed0 /* ScStaticCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.cpp"; path = "../../SimulationController/src/ScStaticCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc84ef387fbcfc84ef38 /* ScStaticSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.cpp"; path = "../../SimulationController/src/ScStaticSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc84efa07fbcfc84efa0 /* ScTriggerInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.cpp"; path = "../../SimulationController/src/ScTriggerInteraction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc84f0087fbcfc84f008 /* particles/ScParticleBodyInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.h"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc84f0707fbcfc84f070 /* particles/ScParticlePacketShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.h"; path = "../../SimulationController/src/particles/ScParticlePacketShape.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc84f0d87fbcfc84f0d8 /* particles/ScParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.h"; path = "../../SimulationController/src/particles/ScParticleSystemSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc84f1407fbcfc84f140 /* particles/ScParticleBodyInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.cpp"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc84f1a87fbcfc84f1a8 /* particles/ScParticlePacketShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.cpp"; path = "../../SimulationController/src/particles/ScParticlePacketShape.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc84f2107fbcfc84f210 /* particles/ScParticleSystemCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemCore.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc84f2787fbcfc84f278 /* particles/ScParticleSystemSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc84f2e07fbcfc84f2e0 /* cloth/ScClothShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.h"; path = "../../SimulationController/src/cloth/ScClothShape.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc84f3487fbcfc84f348 /* cloth/ScClothSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothSim.h"; path = "../../SimulationController/src/cloth/ScClothSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc84f3b07fbcfc84f3b0 /* cloth/ScClothCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothCore.cpp"; path = "../../SimulationController/src/cloth/ScClothCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc84f4187fbcfc84f418 /* cloth/ScClothFabricCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothFabricCore.cpp"; path = "../../SimulationController/src/cloth/ScClothFabricCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc84f4807fbcfc84f480 /* cloth/ScClothShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.cpp"; path = "../../SimulationController/src/cloth/ScClothShape.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc84f4e87fbcfc84f4e8 /* cloth/ScClothSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothSim.cpp"; path = "../../SimulationController/src/cloth/ScClothSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb2fe82c07feab2fe82c0 /* SimulationController */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SimulationController"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDb31cea007feab31cea00 /* ScActorCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.h"; path = "../../SimulationController/include/ScActorCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31cea687feab31cea68 /* ScArticulationCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.h"; path = "../../SimulationController/include/ScArticulationCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31cead07feab31cead0 /* ScArticulationJointCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.h"; path = "../../SimulationController/include/ScArticulationJointCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31ceb387feab31ceb38 /* ScBodyCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.h"; path = "../../SimulationController/include/ScBodyCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31ceba07feab31ceba0 /* ScClothCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothCore.h"; path = "../../SimulationController/include/ScClothCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31cec087feab31cec08 /* ScClothFabricCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothFabricCore.h"; path = "../../SimulationController/include/ScClothFabricCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31cec707feab31cec70 /* ScConstraintCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.h"; path = "../../SimulationController/include/ScConstraintCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31cecd87feab31cecd8 /* ScIterators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.h"; path = "../../SimulationController/include/ScIterators.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31ced407feab31ced40 /* ScMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.h"; path = "../../SimulationController/include/ScMaterialCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31ceda87feab31ceda8 /* ScParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScParticleSystemCore.h"; path = "../../SimulationController/include/ScParticleSystemCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31cee107feab31cee10 /* ScPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.h"; path = "../../SimulationController/include/ScPhysics.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31cee787feab31cee78 /* ScRigidCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.h"; path = "../../SimulationController/include/ScRigidCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31ceee07feab31ceee0 /* ScScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.h"; path = "../../SimulationController/include/ScScene.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31cef487feab31cef48 /* ScShapeCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.h"; path = "../../SimulationController/include/ScShapeCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31cefb07feab31cefb0 /* ScStaticCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.h"; path = "../../SimulationController/include/ScStaticCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31d1c007feab31d1c00 /* ScActorElementPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorElementPair.h"; path = "../../SimulationController/src/ScActorElementPair.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31d1c687feab31d1c68 /* ScActorInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorInteraction.h"; path = "../../SimulationController/src/ScActorInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31d1cd07feab31d1cd0 /* ScActorPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorPair.h"; path = "../../SimulationController/src/ScActorPair.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31d1d387feab31d1d38 /* ScActorSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.h"; path = "../../SimulationController/src/ScActorSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31d1da07feab31d1da0 /* ScArticulationJointSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.h"; path = "../../SimulationController/src/ScArticulationJointSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31d1e087feab31d1e08 /* ScArticulationSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.h"; path = "../../SimulationController/src/ScArticulationSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31d1e707feab31d1e70 /* ScBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.h"; path = "../../SimulationController/src/ScBodySim.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31d1ed87feab31d1ed8 /* ScClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClient.h"; path = "../../SimulationController/src/ScClient.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31d1f407feab31d1f40 /* ScConstraintGroupNode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.h"; path = "../../SimulationController/src/ScConstraintGroupNode.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31d1fa87feab31d1fa8 /* ScConstraintInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.h"; path = "../../SimulationController/src/ScConstraintInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31d20107feab31d2010 /* ScConstraintProjectionManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.h"; path = "../../SimulationController/src/ScConstraintProjectionManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31d20787feab31d2078 /* ScConstraintProjectionTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.h"; path = "../../SimulationController/src/ScConstraintProjectionTree.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31d20e07feab31d20e0 /* ScConstraintSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.h"; path = "../../SimulationController/src/ScConstraintSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31d21487feab31d2148 /* ScContactReportBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactReportBuffer.h"; path = "../../SimulationController/src/ScContactReportBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31d21b07feab31d21b0 /* ScContactStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactStream.h"; path = "../../SimulationController/src/ScContactStream.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31d22187feab31d2218 /* ScElementInteractionMarker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.h"; path = "../../SimulationController/src/ScElementInteractionMarker.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31d22807feab31d2280 /* ScElementSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.h"; path = "../../SimulationController/src/ScElementSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31d22e87feab31d22e8 /* ScElementSimInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSimInteraction.h"; path = "../../SimulationController/src/ScElementSimInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31d23507feab31d2350 /* ScInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.h"; path = "../../SimulationController/src/ScInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31d23b87feab31d23b8 /* ScInteractionFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteractionFlags.h"; path = "../../SimulationController/src/ScInteractionFlags.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31d24207feab31d2420 /* ScNPhaseCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.h"; path = "../../SimulationController/src/ScNPhaseCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31d24887feab31d2488 /* ScObjectIDTracker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScObjectIDTracker.h"; path = "../../SimulationController/src/ScObjectIDTracker.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31d24f07feab31d24f0 /* ScRbElementInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRbElementInteraction.h"; path = "../../SimulationController/src/ScRbElementInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31d25587feab31d2558 /* ScRigidSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.h"; path = "../../SimulationController/src/ScRigidSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31d25c07feab31d25c0 /* ScShapeInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.h"; path = "../../SimulationController/src/ScShapeInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31d26287feab31d2628 /* ScShapeIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeIterator.h"; path = "../../SimulationController/src/ScShapeIterator.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31d26907feab31d2690 /* ScShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.h"; path = "../../SimulationController/src/ScShapeSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31d26f87feab31d26f8 /* ScSimStateData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStateData.h"; path = "../../SimulationController/src/ScSimStateData.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31d27607feab31d2760 /* ScSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.h"; path = "../../SimulationController/src/ScSimStats.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31d27c87feab31d27c8 /* ScSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.h"; path = "../../SimulationController/src/ScSimulationController.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31d28307feab31d2830 /* ScSqBoundsManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.h"; path = "../../SimulationController/src/ScSqBoundsManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31d28987feab31d2898 /* ScStaticSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.h"; path = "../../SimulationController/src/ScStaticSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31d29007feab31d2900 /* ScTriggerInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.h"; path = "../../SimulationController/src/ScTriggerInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31d29687feab31d2968 /* ScTriggerPairs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerPairs.h"; path = "../../SimulationController/src/ScTriggerPairs.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31d29d07feab31d29d0 /* ScActorCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.cpp"; path = "../../SimulationController/src/ScActorCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31d2a387feab31d2a38 /* ScActorSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.cpp"; path = "../../SimulationController/src/ScActorSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31d2aa07feab31d2aa0 /* ScArticulationCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.cpp"; path = "../../SimulationController/src/ScArticulationCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31d2b087feab31d2b08 /* ScArticulationJointCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.cpp"; path = "../../SimulationController/src/ScArticulationJointCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31d2b707feab31d2b70 /* ScArticulationJointSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.cpp"; path = "../../SimulationController/src/ScArticulationJointSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31d2bd87feab31d2bd8 /* ScArticulationSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.cpp"; path = "../../SimulationController/src/ScArticulationSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31d2c407feab31d2c40 /* ScBodyCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.cpp"; path = "../../SimulationController/src/ScBodyCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31d2ca87feab31d2ca8 /* ScBodyCoreKinematic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCoreKinematic.cpp"; path = "../../SimulationController/src/ScBodyCoreKinematic.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31d2d107feab31d2d10 /* ScBodySim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.cpp"; path = "../../SimulationController/src/ScBodySim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31d2d787feab31d2d78 /* ScConstraintCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.cpp"; path = "../../SimulationController/src/ScConstraintCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31d2de07feab31d2de0 /* ScConstraintGroupNode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.cpp"; path = "../../SimulationController/src/ScConstraintGroupNode.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31d2e487feab31d2e48 /* ScConstraintInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.cpp"; path = "../../SimulationController/src/ScConstraintInteraction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31d2eb07feab31d2eb0 /* ScConstraintProjectionManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.cpp"; path = "../../SimulationController/src/ScConstraintProjectionManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31d2f187feab31d2f18 /* ScConstraintProjectionTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.cpp"; path = "../../SimulationController/src/ScConstraintProjectionTree.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31d2f807feab31d2f80 /* ScConstraintSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.cpp"; path = "../../SimulationController/src/ScConstraintSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31d2fe87feab31d2fe8 /* ScElementInteractionMarker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.cpp"; path = "../../SimulationController/src/ScElementInteractionMarker.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31d30507feab31d3050 /* ScElementSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.cpp"; path = "../../SimulationController/src/ScElementSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31d30b87feab31d30b8 /* ScInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.cpp"; path = "../../SimulationController/src/ScInteraction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31d31207feab31d3120 /* ScIterators.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.cpp"; path = "../../SimulationController/src/ScIterators.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31d31887feab31d3188 /* ScMaterialCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.cpp"; path = "../../SimulationController/src/ScMaterialCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31d31f07feab31d31f0 /* ScMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMetaData.cpp"; path = "../../SimulationController/src/ScMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31d32587feab31d3258 /* ScNPhaseCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.cpp"; path = "../../SimulationController/src/ScNPhaseCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31d32c07feab31d32c0 /* ScPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.cpp"; path = "../../SimulationController/src/ScPhysics.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31d33287feab31d3328 /* ScRigidCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.cpp"; path = "../../SimulationController/src/ScRigidCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31d33907feab31d3390 /* ScRigidSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.cpp"; path = "../../SimulationController/src/ScRigidSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31d33f87feab31d33f8 /* ScScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.cpp"; path = "../../SimulationController/src/ScScene.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31d34607feab31d3460 /* ScShapeCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.cpp"; path = "../../SimulationController/src/ScShapeCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31d34c87feab31d34c8 /* ScShapeInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.cpp"; path = "../../SimulationController/src/ScShapeInteraction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31d35307feab31d3530 /* ScShapeSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.cpp"; path = "../../SimulationController/src/ScShapeSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31d35987feab31d3598 /* ScSimStats.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.cpp"; path = "../../SimulationController/src/ScSimStats.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31d36007feab31d3600 /* ScSimulationController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.cpp"; path = "../../SimulationController/src/ScSimulationController.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31d36687feab31d3668 /* ScSqBoundsManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.cpp"; path = "../../SimulationController/src/ScSqBoundsManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31d36d07feab31d36d0 /* ScStaticCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.cpp"; path = "../../SimulationController/src/ScStaticCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31d37387feab31d3738 /* ScStaticSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.cpp"; path = "../../SimulationController/src/ScStaticSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31d37a07feab31d37a0 /* ScTriggerInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.cpp"; path = "../../SimulationController/src/ScTriggerInteraction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31d38087feab31d3808 /* particles/ScParticleBodyInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.h"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31d38707feab31d3870 /* particles/ScParticlePacketShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.h"; path = "../../SimulationController/src/particles/ScParticlePacketShape.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31d38d87feab31d38d8 /* particles/ScParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.h"; path = "../../SimulationController/src/particles/ScParticleSystemSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31d39407feab31d3940 /* particles/ScParticleBodyInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.cpp"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31d39a87feab31d39a8 /* particles/ScParticlePacketShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.cpp"; path = "../../SimulationController/src/particles/ScParticlePacketShape.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31d3a107feab31d3a10 /* particles/ScParticleSystemCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemCore.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31d3a787feab31d3a78 /* particles/ScParticleSystemSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31d3ae07feab31d3ae0 /* cloth/ScClothShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.h"; path = "../../SimulationController/src/cloth/ScClothShape.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31d3b487feab31d3b48 /* cloth/ScClothSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothSim.h"; path = "../../SimulationController/src/cloth/ScClothSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31d3bb07feab31d3bb0 /* cloth/ScClothCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothCore.cpp"; path = "../../SimulationController/src/cloth/ScClothCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31d3c187feab31d3c18 /* cloth/ScClothFabricCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothFabricCore.cpp"; path = "../../SimulationController/src/cloth/ScClothFabricCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31d3c807feab31d3c80 /* cloth/ScClothShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.cpp"; path = "../../SimulationController/src/cloth/ScClothShape.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31d3ce87feab31d3ce8 /* 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 */ - FFF2fc08d4e07fbcfc08d4e0 /* Resources */ = { + FFF2b2fe82c07feab2fe82c0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -1131,7 +1131,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCfc08d4e07fbcfc08d4e0 /* Frameworks */ = { + FFFCb2fe82c07feab2fe82c0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -1141,53 +1141,53 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8fc08d4e07fbcfc08d4e0 /* Sources */ = { + FFF8b2fe82c07feab2fe82c0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFfc84e1d07fbcfc84e1d0, - FFFFfc84e2387fbcfc84e238, - FFFFfc84e2a07fbcfc84e2a0, - FFFFfc84e3087fbcfc84e308, - FFFFfc84e3707fbcfc84e370, - FFFFfc84e3d87fbcfc84e3d8, - FFFFfc84e4407fbcfc84e440, - FFFFfc84e4a87fbcfc84e4a8, - FFFFfc84e5107fbcfc84e510, - FFFFfc84e5787fbcfc84e578, - FFFFfc84e5e07fbcfc84e5e0, - FFFFfc84e6487fbcfc84e648, - FFFFfc84e6b07fbcfc84e6b0, - FFFFfc84e7187fbcfc84e718, - FFFFfc84e7807fbcfc84e780, - FFFFfc84e7e87fbcfc84e7e8, - FFFFfc84e8507fbcfc84e850, - FFFFfc84e8b87fbcfc84e8b8, - FFFFfc84e9207fbcfc84e920, - FFFFfc84e9887fbcfc84e988, - FFFFfc84e9f07fbcfc84e9f0, - FFFFfc84ea587fbcfc84ea58, - FFFFfc84eac07fbcfc84eac0, - FFFFfc84eb287fbcfc84eb28, - FFFFfc84eb907fbcfc84eb90, - FFFFfc84ebf87fbcfc84ebf8, - FFFFfc84ec607fbcfc84ec60, - FFFFfc84ecc87fbcfc84ecc8, - FFFFfc84ed307fbcfc84ed30, - FFFFfc84ed987fbcfc84ed98, - FFFFfc84ee007fbcfc84ee00, - FFFFfc84ee687fbcfc84ee68, - FFFFfc84eed07fbcfc84eed0, - FFFFfc84ef387fbcfc84ef38, - FFFFfc84efa07fbcfc84efa0, - FFFFfc84f1407fbcfc84f140, - FFFFfc84f1a87fbcfc84f1a8, - FFFFfc84f2107fbcfc84f210, - FFFFfc84f2787fbcfc84f278, - FFFFfc84f3b07fbcfc84f3b0, - FFFFfc84f4187fbcfc84f418, - FFFFfc84f4807fbcfc84f480, - FFFFfc84f4e87fbcfc84f4e8, + FFFFb31d29d07feab31d29d0, + FFFFb31d2a387feab31d2a38, + FFFFb31d2aa07feab31d2aa0, + FFFFb31d2b087feab31d2b08, + FFFFb31d2b707feab31d2b70, + FFFFb31d2bd87feab31d2bd8, + FFFFb31d2c407feab31d2c40, + FFFFb31d2ca87feab31d2ca8, + FFFFb31d2d107feab31d2d10, + FFFFb31d2d787feab31d2d78, + FFFFb31d2de07feab31d2de0, + FFFFb31d2e487feab31d2e48, + FFFFb31d2eb07feab31d2eb0, + FFFFb31d2f187feab31d2f18, + FFFFb31d2f807feab31d2f80, + FFFFb31d2fe87feab31d2fe8, + FFFFb31d30507feab31d3050, + FFFFb31d30b87feab31d30b8, + FFFFb31d31207feab31d3120, + FFFFb31d31887feab31d3188, + FFFFb31d31f07feab31d31f0, + FFFFb31d32587feab31d3258, + FFFFb31d32c07feab31d32c0, + FFFFb31d33287feab31d3328, + FFFFb31d33907feab31d3390, + FFFFb31d33f87feab31d33f8, + FFFFb31d34607feab31d3460, + FFFFb31d34c87feab31d34c8, + FFFFb31d35307feab31d3530, + FFFFb31d35987feab31d3598, + FFFFb31d36007feab31d3600, + FFFFb31d36687feab31d3668, + FFFFb31d36d07feab31d36d0, + FFFFb31d37387feab31d3738, + FFFFb31d37a07feab31d37a0, + FFFFb31d39407feab31d3940, + FFFFb31d39a87feab31d39a8, + FFFFb31d3a107feab31d3a10, + FFFFb31d3a787feab31d3a78, + FFFFb31d3bb07feab31d3bb0, + FFFFb31d3c187feab31d3c18, + FFFFb31d3c807feab31d3c80, + FFFFb31d3ce87feab31d3ce8, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1199,80 +1199,80 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PhysXCooking */ - FFFFfc1bc6b07fbcfc1bc6b0 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFDfc0c74907fbcfc0c7490 /* PhysXExtensions */; }; - FFFFfc8516007fbcfc851600 /* Adjacencies.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8516007fbcfc851600 /* Adjacencies.cpp */; }; - FFFFfc8516687fbcfc851668 /* Cooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8516687fbcfc851668 /* Cooking.cpp */; }; - FFFFfc8516d07fbcfc8516d0 /* CookingUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8516d07fbcfc8516d0 /* CookingUtils.cpp */; }; - FFFFfc8517387fbcfc851738 /* EdgeList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8517387fbcfc851738 /* EdgeList.cpp */; }; - FFFFfc8517a07fbcfc8517a0 /* MeshCleaner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8517a07fbcfc8517a0 /* MeshCleaner.cpp */; }; - FFFFfc8518087fbcfc851808 /* Quantizer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8518087fbcfc851808 /* Quantizer.cpp */; }; - FFFFfc851ae07fbcfc851ae0 /* mesh/GrbTriangleMeshCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc851ae07fbcfc851ae0 /* mesh/GrbTriangleMeshCooking.cpp */; }; - FFFFfc851b487fbcfc851b48 /* mesh/HeightFieldCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc851b487fbcfc851b48 /* mesh/HeightFieldCooking.cpp */; }; - FFFFfc851bb07fbcfc851bb0 /* mesh/RTreeCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc851bb07fbcfc851bb0 /* mesh/RTreeCooking.cpp */; }; - FFFFfc851c187fbcfc851c18 /* mesh/TriangleMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc851c187fbcfc851c18 /* mesh/TriangleMeshBuilder.cpp */; }; - FFFFfc851e887fbcfc851e88 /* convex/BigConvexDataBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc851e887fbcfc851e88 /* convex/BigConvexDataBuilder.cpp */; }; - FFFFfc851ef07fbcfc851ef0 /* convex/ConvexHullBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc851ef07fbcfc851ef0 /* convex/ConvexHullBuilder.cpp */; }; - FFFFfc851f587fbcfc851f58 /* convex/ConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc851f587fbcfc851f58 /* convex/ConvexHullLib.cpp */; }; - FFFFfc851fc07fbcfc851fc0 /* convex/ConvexHullUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc851fc07fbcfc851fc0 /* convex/ConvexHullUtils.cpp */; }; - FFFFfc8520287fbcfc852028 /* convex/ConvexMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8520287fbcfc852028 /* convex/ConvexMeshBuilder.cpp */; }; - FFFFfc8520907fbcfc852090 /* convex/ConvexPolygonsBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8520907fbcfc852090 /* convex/ConvexPolygonsBuilder.cpp */; }; - FFFFfc8520f87fbcfc8520f8 /* convex/InflationConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8520f87fbcfc8520f8 /* convex/InflationConvexHullLib.cpp */; }; - FFFFfc8521607fbcfc852160 /* convex/QuickHullConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8521607fbcfc852160 /* convex/QuickHullConvexHullLib.cpp */; }; - FFFFfc8521c87fbcfc8521c8 /* convex/VolumeIntegration.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8521c87fbcfc8521c8 /* convex/VolumeIntegration.cpp */; }; + FFFFb2ff61e07feab2ff61e0 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFDb2fd2b007feab2fd2b00 /* PhysXExtensions */; }; + FFFFb31d5e007feab31d5e00 /* Adjacencies.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31d5e007feab31d5e00 /* Adjacencies.cpp */; }; + FFFFb31d5e687feab31d5e68 /* Cooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31d5e687feab31d5e68 /* Cooking.cpp */; }; + FFFFb31d5ed07feab31d5ed0 /* CookingUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31d5ed07feab31d5ed0 /* CookingUtils.cpp */; }; + FFFFb31d5f387feab31d5f38 /* EdgeList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31d5f387feab31d5f38 /* EdgeList.cpp */; }; + FFFFb31d5fa07feab31d5fa0 /* MeshCleaner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31d5fa07feab31d5fa0 /* MeshCleaner.cpp */; }; + FFFFb31d60087feab31d6008 /* Quantizer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31d60087feab31d6008 /* Quantizer.cpp */; }; + FFFFb31d62e07feab31d62e0 /* mesh/GrbTriangleMeshCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31d62e07feab31d62e0 /* mesh/GrbTriangleMeshCooking.cpp */; }; + FFFFb31d63487feab31d6348 /* mesh/HeightFieldCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31d63487feab31d6348 /* mesh/HeightFieldCooking.cpp */; }; + FFFFb31d63b07feab31d63b0 /* mesh/RTreeCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31d63b07feab31d63b0 /* mesh/RTreeCooking.cpp */; }; + FFFFb31d64187feab31d6418 /* mesh/TriangleMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31d64187feab31d6418 /* mesh/TriangleMeshBuilder.cpp */; }; + FFFFb31d66887feab31d6688 /* convex/BigConvexDataBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31d66887feab31d6688 /* convex/BigConvexDataBuilder.cpp */; }; + FFFFb31d66f07feab31d66f0 /* convex/ConvexHullBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31d66f07feab31d66f0 /* convex/ConvexHullBuilder.cpp */; }; + FFFFb31d67587feab31d6758 /* convex/ConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31d67587feab31d6758 /* convex/ConvexHullLib.cpp */; }; + FFFFb31d67c07feab31d67c0 /* convex/ConvexHullUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31d67c07feab31d67c0 /* convex/ConvexHullUtils.cpp */; }; + FFFFb31d68287feab31d6828 /* convex/ConvexMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31d68287feab31d6828 /* convex/ConvexMeshBuilder.cpp */; }; + FFFFb31d68907feab31d6890 /* convex/ConvexPolygonsBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31d68907feab31d6890 /* convex/ConvexPolygonsBuilder.cpp */; }; + FFFFb31d68f87feab31d68f8 /* convex/InflationConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31d68f87feab31d68f8 /* convex/InflationConvexHullLib.cpp */; }; + FFFFb31d69607feab31d6960 /* convex/QuickHullConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31d69607feab31d6960 /* convex/QuickHullConvexHullLib.cpp */; }; + FFFFb31d69c87feab31d69c8 /* convex/VolumeIntegration.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31d69c87feab31d69c8 /* convex/VolumeIntegration.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDfc07fd407fbcfc07fd40 /* PhysXCooking */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCooking"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDfc1bb2907fbcfc1bb290 /* PxBVH33MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH33MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH33MidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc1bb2f87fbcfc1bb2f8 /* PxBVH34MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH34MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH34MidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc1bb3607fbcfc1bb360 /* PxConvexMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshDesc.h"; path = "../../../Include/cooking/PxConvexMeshDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc1bb3c87fbcfc1bb3c8 /* PxCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCooking.h"; path = "../../../Include/cooking/PxCooking.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc1bb4307fbcfc1bb430 /* PxMidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMidphaseDesc.h"; path = "../../../Include/cooking/PxMidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc1bb4987fbcfc1bb498 /* PxTriangleMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshDesc.h"; path = "../../../Include/cooking/PxTriangleMeshDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc1bb5007fbcfc1bb500 /* Pxc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Pxc.h"; path = "../../../Include/cooking/Pxc.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8516007fbcfc851600 /* Adjacencies.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.cpp"; path = "../../PhysXCooking/src/Adjacencies.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc8516687fbcfc851668 /* Cooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.cpp"; path = "../../PhysXCooking/src/Cooking.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc8516d07fbcfc8516d0 /* CookingUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.cpp"; path = "../../PhysXCooking/src/CookingUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc8517387fbcfc851738 /* EdgeList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.cpp"; path = "../../PhysXCooking/src/EdgeList.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc8517a07fbcfc8517a0 /* MeshCleaner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.cpp"; path = "../../PhysXCooking/src/MeshCleaner.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc8518087fbcfc851808 /* Quantizer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.cpp"; path = "../../PhysXCooking/src/Quantizer.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc8518707fbcfc851870 /* Adjacencies.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.h"; path = "../../PhysXCooking/src/Adjacencies.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8518d87fbcfc8518d8 /* Cooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.h"; path = "../../PhysXCooking/src/Cooking.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8519407fbcfc851940 /* CookingUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.h"; path = "../../PhysXCooking/src/CookingUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8519a87fbcfc8519a8 /* EdgeList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.h"; path = "../../PhysXCooking/src/EdgeList.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc851a107fbcfc851a10 /* MeshCleaner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.h"; path = "../../PhysXCooking/src/MeshCleaner.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc851a787fbcfc851a78 /* Quantizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.h"; path = "../../PhysXCooking/src/Quantizer.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc851ae07fbcfc851ae0 /* mesh/GrbTriangleMeshCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.cpp"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc851b487fbcfc851b48 /* mesh/HeightFieldCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.cpp"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc851bb07fbcfc851bb0 /* mesh/RTreeCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.cpp"; path = "../../PhysXCooking/src/mesh/RTreeCooking.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc851c187fbcfc851c18 /* mesh/TriangleMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.cpp"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc851c807fbcfc851c80 /* mesh/GrbTriangleMeshCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.h"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc851ce87fbcfc851ce8 /* mesh/HeightFieldCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.h"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc851d507fbcfc851d50 /* mesh/QuickSelect.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/QuickSelect.h"; path = "../../PhysXCooking/src/mesh/QuickSelect.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc851db87fbcfc851db8 /* mesh/RTreeCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.h"; path = "../../PhysXCooking/src/mesh/RTreeCooking.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc851e207fbcfc851e20 /* mesh/TriangleMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.h"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc851e887fbcfc851e88 /* convex/BigConvexDataBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.cpp"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc851ef07fbcfc851ef0 /* convex/ConvexHullBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc851f587fbcfc851f58 /* convex/ConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc851fc07fbcfc851fc0 /* convex/ConvexHullUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc8520287fbcfc852028 /* convex/ConvexMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc8520907fbcfc852090 /* convex/ConvexPolygonsBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc8520f87fbcfc8520f8 /* convex/InflationConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc8521607fbcfc852160 /* convex/QuickHullConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc8521c87fbcfc8521c8 /* convex/VolumeIntegration.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/VolumeIntegration.cpp"; path = "../../PhysXCooking/src/convex/VolumeIntegration.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc8522307fbcfc852230 /* convex/BigConvexDataBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.h"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8522987fbcfc852298 /* convex/ConvexHullBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8523007fbcfc852300 /* convex/ConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.h"; path = "../../PhysXCooking/src/convex/ConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8523687fbcfc852368 /* convex/ConvexHullUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.h"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8523d07fbcfc8523d0 /* convex/ConvexMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8524387fbcfc852438 /* convex/ConvexPolygonsBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8524a07fbcfc8524a0 /* convex/InflationConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.h"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8525087fbcfc852508 /* convex/QuickHullConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.h"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8525707fbcfc852570 /* convex/VolumeIntegration.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/VolumeIntegration.h"; path = "../../PhysXCooking/src/convex/VolumeIntegration.h"; sourceTree = SOURCE_ROOT; }; + FFFDb2feca707feab2feca70 /* PhysXCooking */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCooking"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDb2ff6b707feab2ff6b70 /* PxBVH33MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH33MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH33MidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFDb2ff6bd87feab2ff6bd8 /* PxBVH34MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH34MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH34MidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFDb2ff6c407feab2ff6c40 /* PxConvexMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshDesc.h"; path = "../../../Include/cooking/PxConvexMeshDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFDb2ff6ca87feab2ff6ca8 /* PxCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCooking.h"; path = "../../../Include/cooking/PxCooking.h"; sourceTree = SOURCE_ROOT; }; + FFFDb2ff6d107feab2ff6d10 /* PxMidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMidphaseDesc.h"; path = "../../../Include/cooking/PxMidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFDb2ff6d787feab2ff6d78 /* PxTriangleMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshDesc.h"; path = "../../../Include/cooking/PxTriangleMeshDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFDb2ff6de07feab2ff6de0 /* Pxc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Pxc.h"; path = "../../../Include/cooking/Pxc.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31d5e007feab31d5e00 /* Adjacencies.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.cpp"; path = "../../PhysXCooking/src/Adjacencies.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31d5e687feab31d5e68 /* Cooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.cpp"; path = "../../PhysXCooking/src/Cooking.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31d5ed07feab31d5ed0 /* CookingUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.cpp"; path = "../../PhysXCooking/src/CookingUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31d5f387feab31d5f38 /* EdgeList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.cpp"; path = "../../PhysXCooking/src/EdgeList.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31d5fa07feab31d5fa0 /* MeshCleaner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.cpp"; path = "../../PhysXCooking/src/MeshCleaner.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31d60087feab31d6008 /* Quantizer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.cpp"; path = "../../PhysXCooking/src/Quantizer.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31d60707feab31d6070 /* Adjacencies.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.h"; path = "../../PhysXCooking/src/Adjacencies.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31d60d87feab31d60d8 /* Cooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.h"; path = "../../PhysXCooking/src/Cooking.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31d61407feab31d6140 /* CookingUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.h"; path = "../../PhysXCooking/src/CookingUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31d61a87feab31d61a8 /* EdgeList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.h"; path = "../../PhysXCooking/src/EdgeList.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31d62107feab31d6210 /* MeshCleaner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.h"; path = "../../PhysXCooking/src/MeshCleaner.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31d62787feab31d6278 /* Quantizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.h"; path = "../../PhysXCooking/src/Quantizer.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31d62e07feab31d62e0 /* mesh/GrbTriangleMeshCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.cpp"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31d63487feab31d6348 /* mesh/HeightFieldCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.cpp"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31d63b07feab31d63b0 /* mesh/RTreeCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.cpp"; path = "../../PhysXCooking/src/mesh/RTreeCooking.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31d64187feab31d6418 /* mesh/TriangleMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.cpp"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31d64807feab31d6480 /* mesh/GrbTriangleMeshCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.h"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31d64e87feab31d64e8 /* mesh/HeightFieldCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.h"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31d65507feab31d6550 /* mesh/QuickSelect.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/QuickSelect.h"; path = "../../PhysXCooking/src/mesh/QuickSelect.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31d65b87feab31d65b8 /* mesh/RTreeCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.h"; path = "../../PhysXCooking/src/mesh/RTreeCooking.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31d66207feab31d6620 /* mesh/TriangleMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.h"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31d66887feab31d6688 /* convex/BigConvexDataBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.cpp"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31d66f07feab31d66f0 /* convex/ConvexHullBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31d67587feab31d6758 /* convex/ConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31d67c07feab31d67c0 /* convex/ConvexHullUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31d68287feab31d6828 /* convex/ConvexMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31d68907feab31d6890 /* convex/ConvexPolygonsBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31d68f87feab31d68f8 /* convex/InflationConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31d69607feab31d6960 /* convex/QuickHullConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31d69c87feab31d69c8 /* convex/VolumeIntegration.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/VolumeIntegration.cpp"; path = "../../PhysXCooking/src/convex/VolumeIntegration.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31d6a307feab31d6a30 /* convex/BigConvexDataBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.h"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31d6a987feab31d6a98 /* convex/ConvexHullBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31d6b007feab31d6b00 /* convex/ConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.h"; path = "../../PhysXCooking/src/convex/ConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31d6b687feab31d6b68 /* convex/ConvexHullUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.h"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31d6bd07feab31d6bd0 /* convex/ConvexMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31d6c387feab31d6c38 /* convex/ConvexPolygonsBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31d6ca07feab31d6ca0 /* convex/InflationConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.h"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31d6d087feab31d6d08 /* convex/QuickHullConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.h"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31d6d707feab31d6d70 /* 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 */ - FFF2fc07fd407fbcfc07fd40 /* Resources */ = { + FFF2b2feca707feab2feca70 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -1282,7 +1282,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCfc07fd407fbcfc07fd40 /* Frameworks */ = { + FFFCb2feca707feab2feca70 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -1292,29 +1292,29 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8fc07fd407fbcfc07fd40 /* Sources */ = { + FFF8b2feca707feab2feca70 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFfc8516007fbcfc851600, - FFFFfc8516687fbcfc851668, - FFFFfc8516d07fbcfc8516d0, - FFFFfc8517387fbcfc851738, - FFFFfc8517a07fbcfc8517a0, - FFFFfc8518087fbcfc851808, - FFFFfc851ae07fbcfc851ae0, - FFFFfc851b487fbcfc851b48, - FFFFfc851bb07fbcfc851bb0, - FFFFfc851c187fbcfc851c18, - FFFFfc851e887fbcfc851e88, - FFFFfc851ef07fbcfc851ef0, - FFFFfc851f587fbcfc851f58, - FFFFfc851fc07fbcfc851fc0, - FFFFfc8520287fbcfc852028, - FFFFfc8520907fbcfc852090, - FFFFfc8520f87fbcfc8520f8, - FFFFfc8521607fbcfc852160, - FFFFfc8521c87fbcfc8521c8, + FFFFb31d5e007feab31d5e00, + FFFFb31d5e687feab31d5e68, + FFFFb31d5ed07feab31d5ed0, + FFFFb31d5f387feab31d5f38, + FFFFb31d5fa07feab31d5fa0, + FFFFb31d60087feab31d6008, + FFFFb31d62e07feab31d62e0, + FFFFb31d63487feab31d6348, + FFFFb31d63b07feab31d63b0, + FFFFb31d64187feab31d6418, + FFFFb31d66887feab31d6688, + FFFFb31d66f07feab31d66f0, + FFFFb31d67587feab31d6758, + FFFFb31d67c07feab31d67c0, + FFFFb31d68287feab31d6828, + FFFFb31d68907feab31d6890, + FFFFb31d68f87feab31d68f8, + FFFFb31d69607feab31d6960, + FFFFb31d69c87feab31d69c8, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1323,515 +1323,515 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF4fc1bc8107fbcfc1bc810 /* PBXTargetDependency */ = { + FFF4b2ff62c07feab2ff62c0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAfa8913407fbcfa891340 /* PhysXCommon */; - targetProxy = FFF5fa8913407fbcfa891340 /* PBXContainerItemProxy */; + target = FFFAb2a152c07feab2a152c0 /* PhysXCommon */; + targetProxy = FFF5b2a152c07feab2a152c0 /* PBXContainerItemProxy */; }; - FFF4fc1bc6b07fbcfc1bc6b0 /* PBXTargetDependency */ = { + FFF4b2ff61e07feab2ff61e0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAfc0c74907fbcfc0c7490 /* PhysXExtensions */; - targetProxy = FFF5fc0c74907fbcfc0c7490 /* PBXContainerItemProxy */; + target = FFFAb2fd2b007feab2fd2b00 /* PhysXExtensions */; + targetProxy = FFF5b2fd2b007feab2fd2b00 /* PBXContainerItemProxy */; }; - FFF4fc0897807fbcfc089780 /* PBXTargetDependency */ = { + FFF4b2ff19f07feab2ff19f0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAfa87f5207fbcfa87f520 /* PxFoundation */; - targetProxy = FFF5fa87f5207fbcfa87f520 /* PBXContainerItemProxy */; + target = FFFAb2a669507feab2a66950 /* PxFoundation */; + targetProxy = FFF5b2a669507feab2a66950 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PhysXCommon */ - FFFFfa18ee007fbcfa18ee00 /* src/CmBoxPruning.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDfa18ee007fbcfa18ee00 /* src/CmBoxPruning.cpp */; }; - FFFFfa18ee687fbcfa18ee68 /* src/CmCollection.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDfa18ee687fbcfa18ee68 /* src/CmCollection.cpp */; }; - FFFFfa18eed07fbcfa18eed0 /* src/CmMathUtils.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDfa18eed07fbcfa18eed0 /* src/CmMathUtils.cpp */; }; - FFFFfa18ef387fbcfa18ef38 /* src/CmPtrTable.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDfa18ef387fbcfa18ef38 /* src/CmPtrTable.cpp */; }; - FFFFfa18efa07fbcfa18efa0 /* src/CmRadixSort.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDfa18efa07fbcfa18efa0 /* src/CmRadixSort.cpp */; }; - FFFFfa18f0087fbcfa18f008 /* src/CmRadixSortBuffered.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDfa18f0087fbcfa18f008 /* src/CmRadixSortBuffered.cpp */; }; - FFFFfa18f0707fbcfa18f070 /* src/CmRenderOutput.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDfa18f0707fbcfa18f070 /* src/CmRenderOutput.cpp */; }; - FFFFfa18f0d87fbcfa18f0d8 /* src/CmVisualization.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDfa18f0d87fbcfa18f0d8 /* src/CmVisualization.cpp */; }; - FFFFfb0013a87fbcfb0013a8 /* ../../Include/GeomUtils in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0013a87fbcfb0013a8 /* ../../Include/GeomUtils */; }; - FFFFfb0048e07fbcfb0048e0 /* src/GuBounds.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0048e07fbcfb0048e0 /* src/GuBounds.cpp */; }; - FFFFfb0049487fbcfb004948 /* src/GuBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0049487fbcfb004948 /* src/GuBox.cpp */; }; - FFFFfb0049b07fbcfb0049b0 /* src/GuCCTSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0049b07fbcfb0049b0 /* src/GuCCTSweepTests.cpp */; }; - FFFFfb004a187fbcfb004a18 /* src/GuCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb004a187fbcfb004a18 /* src/GuCapsule.cpp */; }; - FFFFfb004a807fbcfb004a80 /* src/GuGeometryQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb004a807fbcfb004a80 /* src/GuGeometryQuery.cpp */; }; - FFFFfb004ae87fbcfb004ae8 /* src/GuGeometryUnion.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb004ae87fbcfb004ae8 /* src/GuGeometryUnion.cpp */; }; - FFFFfb004b507fbcfb004b50 /* src/GuInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb004b507fbcfb004b50 /* src/GuInternal.cpp */; }; - FFFFfb004bb87fbcfb004bb8 /* src/GuMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb004bb87fbcfb004bb8 /* src/GuMTD.cpp */; }; - FFFFfb004c207fbcfb004c20 /* src/GuMeshFactory.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb004c207fbcfb004c20 /* src/GuMeshFactory.cpp */; }; - FFFFfb004c887fbcfb004c88 /* src/GuMetaData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb004c887fbcfb004c88 /* src/GuMetaData.cpp */; }; - FFFFfb004cf07fbcfb004cf0 /* src/GuOverlapTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb004cf07fbcfb004cf0 /* src/GuOverlapTests.cpp */; }; - FFFFfb004d587fbcfb004d58 /* src/GuRaycastTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb004d587fbcfb004d58 /* src/GuRaycastTests.cpp */; }; - FFFFfb004dc07fbcfb004dc0 /* src/GuSerialize.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb004dc07fbcfb004dc0 /* src/GuSerialize.cpp */; }; - FFFFfb004e287fbcfb004e28 /* src/GuSweepMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb004e287fbcfb004e28 /* src/GuSweepMTD.cpp */; }; - FFFFfb004e907fbcfb004e90 /* src/GuSweepSharedTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb004e907fbcfb004e90 /* src/GuSweepSharedTests.cpp */; }; - FFFFfb004ef87fbcfb004ef8 /* src/GuSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb004ef87fbcfb004ef8 /* src/GuSweepTests.cpp */; }; - FFFFfb004f607fbcfb004f60 /* src/contact/GuContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb004f607fbcfb004f60 /* src/contact/GuContactBoxBox.cpp */; }; - FFFFfb004fc87fbcfb004fc8 /* src/contact/GuContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb004fc87fbcfb004fc8 /* src/contact/GuContactCapsuleBox.cpp */; }; - FFFFfb0050307fbcfb005030 /* src/contact/GuContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0050307fbcfb005030 /* src/contact/GuContactCapsuleCapsule.cpp */; }; - FFFFfb0050987fbcfb005098 /* src/contact/GuContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0050987fbcfb005098 /* src/contact/GuContactCapsuleConvex.cpp */; }; - FFFFfb0051007fbcfb005100 /* src/contact/GuContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0051007fbcfb005100 /* src/contact/GuContactCapsuleMesh.cpp */; }; - FFFFfb0051687fbcfb005168 /* src/contact/GuContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0051687fbcfb005168 /* src/contact/GuContactConvexConvex.cpp */; }; - FFFFfb0051d07fbcfb0051d0 /* src/contact/GuContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0051d07fbcfb0051d0 /* src/contact/GuContactConvexMesh.cpp */; }; - FFFFfb0052387fbcfb005238 /* src/contact/GuContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0052387fbcfb005238 /* src/contact/GuContactPlaneBox.cpp */; }; - FFFFfb0052a07fbcfb0052a0 /* src/contact/GuContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0052a07fbcfb0052a0 /* src/contact/GuContactPlaneCapsule.cpp */; }; - FFFFfb0053087fbcfb005308 /* src/contact/GuContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0053087fbcfb005308 /* src/contact/GuContactPlaneConvex.cpp */; }; - FFFFfb0053707fbcfb005370 /* src/contact/GuContactPolygonPolygon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0053707fbcfb005370 /* src/contact/GuContactPolygonPolygon.cpp */; }; - FFFFfb0053d87fbcfb0053d8 /* src/contact/GuContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0053d87fbcfb0053d8 /* src/contact/GuContactSphereBox.cpp */; }; - FFFFfb0054407fbcfb005440 /* src/contact/GuContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0054407fbcfb005440 /* src/contact/GuContactSphereCapsule.cpp */; }; - FFFFfb0054a87fbcfb0054a8 /* src/contact/GuContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0054a87fbcfb0054a8 /* src/contact/GuContactSphereMesh.cpp */; }; - FFFFfb0055107fbcfb005510 /* src/contact/GuContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0055107fbcfb005510 /* src/contact/GuContactSpherePlane.cpp */; }; - FFFFfb0055787fbcfb005578 /* src/contact/GuContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0055787fbcfb005578 /* src/contact/GuContactSphereSphere.cpp */; }; - FFFFfb0055e07fbcfb0055e0 /* src/contact/GuFeatureCode.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0055e07fbcfb0055e0 /* src/contact/GuFeatureCode.cpp */; }; - FFFFfb0056487fbcfb005648 /* src/contact/GuLegacyContactBoxHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0056487fbcfb005648 /* src/contact/GuLegacyContactBoxHeightField.cpp */; }; - FFFFfb0056b07fbcfb0056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0056b07fbcfb0056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */; }; - FFFFfb0057187fbcfb005718 /* src/contact/GuLegacyContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0057187fbcfb005718 /* src/contact/GuLegacyContactConvexHeightField.cpp */; }; - FFFFfb0057807fbcfb005780 /* src/contact/GuLegacyContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0057807fbcfb005780 /* src/contact/GuLegacyContactSphereHeightField.cpp */; }; - FFFFfb0057e87fbcfb0057e8 /* src/common/GuBarycentricCoordinates.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0057e87fbcfb0057e8 /* src/common/GuBarycentricCoordinates.cpp */; }; - FFFFfb0058507fbcfb005850 /* src/common/GuSeparatingAxes.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0058507fbcfb005850 /* src/common/GuSeparatingAxes.cpp */; }; - FFFFfb0058b87fbcfb0058b8 /* src/convex/GuBigConvexData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0058b87fbcfb0058b8 /* src/convex/GuBigConvexData.cpp */; }; - FFFFfb0059207fbcfb005920 /* src/convex/GuConvexHelper.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0059207fbcfb005920 /* src/convex/GuConvexHelper.cpp */; }; - FFFFfb0059887fbcfb005988 /* src/convex/GuConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0059887fbcfb005988 /* src/convex/GuConvexMesh.cpp */; }; - FFFFfb0059f07fbcfb0059f0 /* src/convex/GuConvexSupportTable.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0059f07fbcfb0059f0 /* src/convex/GuConvexSupportTable.cpp */; }; - FFFFfb005a587fbcfb005a58 /* src/convex/GuConvexUtilsInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb005a587fbcfb005a58 /* src/convex/GuConvexUtilsInternal.cpp */; }; - FFFFfb005ac07fbcfb005ac0 /* src/convex/GuHillClimbing.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb005ac07fbcfb005ac0 /* src/convex/GuHillClimbing.cpp */; }; - FFFFfb005b287fbcfb005b28 /* src/convex/GuShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb005b287fbcfb005b28 /* src/convex/GuShapeConvex.cpp */; }; - FFFFfb005b907fbcfb005b90 /* src/distance/GuDistancePointBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb005b907fbcfb005b90 /* src/distance/GuDistancePointBox.cpp */; }; - FFFFfb005bf87fbcfb005bf8 /* src/distance/GuDistancePointTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb005bf87fbcfb005bf8 /* src/distance/GuDistancePointTriangle.cpp */; }; - FFFFfb005c607fbcfb005c60 /* src/distance/GuDistanceSegmentBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb005c607fbcfb005c60 /* src/distance/GuDistanceSegmentBox.cpp */; }; - FFFFfb005cc87fbcfb005cc8 /* src/distance/GuDistanceSegmentSegment.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb005cc87fbcfb005cc8 /* src/distance/GuDistanceSegmentSegment.cpp */; }; - FFFFfb005d307fbcfb005d30 /* src/distance/GuDistanceSegmentTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb005d307fbcfb005d30 /* src/distance/GuDistanceSegmentTriangle.cpp */; }; - FFFFfb005d987fbcfb005d98 /* src/sweep/GuSweepBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb005d987fbcfb005d98 /* src/sweep/GuSweepBoxBox.cpp */; }; - FFFFfb005e007fbcfb005e00 /* src/sweep/GuSweepBoxSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb005e007fbcfb005e00 /* src/sweep/GuSweepBoxSphere.cpp */; }; - FFFFfb005e687fbcfb005e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb005e687fbcfb005e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */; }; - FFFFfb005ed07fbcfb005ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb005ed07fbcfb005ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */; }; - FFFFfb005f387fbcfb005f38 /* src/sweep/GuSweepCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb005f387fbcfb005f38 /* src/sweep/GuSweepCapsuleBox.cpp */; }; - FFFFfb005fa07fbcfb005fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb005fa07fbcfb005fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */; }; - FFFFfb0060087fbcfb006008 /* src/sweep/GuSweepCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0060087fbcfb006008 /* src/sweep/GuSweepCapsuleTriangle.cpp */; }; - FFFFfb0060707fbcfb006070 /* src/sweep/GuSweepSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0060707fbcfb006070 /* src/sweep/GuSweepSphereCapsule.cpp */; }; - FFFFfb0060d87fbcfb0060d8 /* src/sweep/GuSweepSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0060d87fbcfb0060d8 /* src/sweep/GuSweepSphereSphere.cpp */; }; - FFFFfb0061407fbcfb006140 /* src/sweep/GuSweepSphereTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0061407fbcfb006140 /* src/sweep/GuSweepSphereTriangle.cpp */; }; - FFFFfb0061a87fbcfb0061a8 /* src/sweep/GuSweepTriangleUtils.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0061a87fbcfb0061a8 /* src/sweep/GuSweepTriangleUtils.cpp */; }; - FFFFfb0062107fbcfb006210 /* src/gjk/GuEPA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0062107fbcfb006210 /* src/gjk/GuEPA.cpp */; }; - FFFFfb0062787fbcfb006278 /* src/gjk/GuGJKSimplex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0062787fbcfb006278 /* src/gjk/GuGJKSimplex.cpp */; }; - FFFFfb0062e07fbcfb0062e0 /* src/gjk/GuGJKTest.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0062e07fbcfb0062e0 /* src/gjk/GuGJKTest.cpp */; }; - FFFFfb0063487fbcfb006348 /* src/intersection/GuIntersectionBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0063487fbcfb006348 /* src/intersection/GuIntersectionBoxBox.cpp */; }; - FFFFfb0063b07fbcfb0063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0063b07fbcfb0063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */; }; - FFFFfb0064187fbcfb006418 /* src/intersection/GuIntersectionEdgeEdge.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0064187fbcfb006418 /* src/intersection/GuIntersectionEdgeEdge.cpp */; }; - FFFFfb0064807fbcfb006480 /* src/intersection/GuIntersectionRayBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0064807fbcfb006480 /* src/intersection/GuIntersectionRayBox.cpp */; }; - FFFFfb0064e87fbcfb0064e8 /* src/intersection/GuIntersectionRayCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0064e87fbcfb0064e8 /* src/intersection/GuIntersectionRayCapsule.cpp */; }; - FFFFfb0065507fbcfb006550 /* src/intersection/GuIntersectionRaySphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0065507fbcfb006550 /* src/intersection/GuIntersectionRaySphere.cpp */; }; - FFFFfb0065b87fbcfb0065b8 /* src/intersection/GuIntersectionSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0065b87fbcfb0065b8 /* src/intersection/GuIntersectionSphereBox.cpp */; }; - FFFFfb0066207fbcfb006620 /* src/intersection/GuIntersectionTriangleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0066207fbcfb006620 /* src/intersection/GuIntersectionTriangleBox.cpp */; }; - FFFFfb0066887fbcfb006688 /* src/mesh/GuBV32.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0066887fbcfb006688 /* src/mesh/GuBV32.cpp */; }; - FFFFfb0066f07fbcfb0066f0 /* src/mesh/GuBV32Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0066f07fbcfb0066f0 /* src/mesh/GuBV32Build.cpp */; }; - FFFFfb0067587fbcfb006758 /* src/mesh/GuBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0067587fbcfb006758 /* src/mesh/GuBV4.cpp */; }; - FFFFfb0067c07fbcfb0067c0 /* src/mesh/GuBV4Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0067c07fbcfb0067c0 /* src/mesh/GuBV4Build.cpp */; }; - FFFFfb0068287fbcfb006828 /* src/mesh/GuBV4_AABBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0068287fbcfb006828 /* src/mesh/GuBV4_AABBSweep.cpp */; }; - FFFFfb0068907fbcfb006890 /* src/mesh/GuBV4_BoxOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0068907fbcfb006890 /* src/mesh/GuBV4_BoxOverlap.cpp */; }; - FFFFfb0068f87fbcfb0068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0068f87fbcfb0068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */; }; - FFFFfb0069607fbcfb006960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0069607fbcfb006960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */; }; - FFFFfb0069c87fbcfb0069c8 /* src/mesh/GuBV4_OBBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0069c87fbcfb0069c8 /* src/mesh/GuBV4_OBBSweep.cpp */; }; - FFFFfb006a307fbcfb006a30 /* src/mesh/GuBV4_Raycast.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb006a307fbcfb006a30 /* src/mesh/GuBV4_Raycast.cpp */; }; - FFFFfb006a987fbcfb006a98 /* src/mesh/GuBV4_SphereOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb006a987fbcfb006a98 /* src/mesh/GuBV4_SphereOverlap.cpp */; }; - FFFFfb006b007fbcfb006b00 /* src/mesh/GuBV4_SphereSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb006b007fbcfb006b00 /* src/mesh/GuBV4_SphereSweep.cpp */; }; - FFFFfb006b687fbcfb006b68 /* src/mesh/GuMeshQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb006b687fbcfb006b68 /* src/mesh/GuMeshQuery.cpp */; }; - FFFFfb006bd07fbcfb006bd0 /* src/mesh/GuMidphaseBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb006bd07fbcfb006bd0 /* src/mesh/GuMidphaseBV4.cpp */; }; - FFFFfb006c387fbcfb006c38 /* src/mesh/GuMidphaseRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb006c387fbcfb006c38 /* src/mesh/GuMidphaseRTree.cpp */; }; - FFFFfb006ca07fbcfb006ca0 /* src/mesh/GuOverlapTestsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb006ca07fbcfb006ca0 /* src/mesh/GuOverlapTestsMesh.cpp */; }; - FFFFfb006d087fbcfb006d08 /* src/mesh/GuRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb006d087fbcfb006d08 /* src/mesh/GuRTree.cpp */; }; - FFFFfb006d707fbcfb006d70 /* src/mesh/GuRTreeQueries.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb006d707fbcfb006d70 /* src/mesh/GuRTreeQueries.cpp */; }; - FFFFfb006dd87fbcfb006dd8 /* src/mesh/GuSweepsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb006dd87fbcfb006dd8 /* src/mesh/GuSweepsMesh.cpp */; }; - FFFFfb006e407fbcfb006e40 /* src/mesh/GuTriangleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb006e407fbcfb006e40 /* src/mesh/GuTriangleMesh.cpp */; }; - FFFFfb006ea87fbcfb006ea8 /* src/mesh/GuTriangleMeshBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb006ea87fbcfb006ea8 /* src/mesh/GuTriangleMeshBV4.cpp */; }; - FFFFfb006f107fbcfb006f10 /* src/mesh/GuTriangleMeshRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb006f107fbcfb006f10 /* src/mesh/GuTriangleMeshRTree.cpp */; }; - FFFFfb006f787fbcfb006f78 /* src/hf/GuHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb006f787fbcfb006f78 /* src/hf/GuHeightField.cpp */; }; - FFFFfb006fe07fbcfb006fe0 /* src/hf/GuHeightFieldUtil.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb006fe07fbcfb006fe0 /* src/hf/GuHeightFieldUtil.cpp */; }; - FFFFfb0070487fbcfb007048 /* src/hf/GuOverlapTestsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0070487fbcfb007048 /* src/hf/GuOverlapTestsHF.cpp */; }; - FFFFfb0070b07fbcfb0070b0 /* src/hf/GuSweepsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0070b07fbcfb0070b0 /* src/hf/GuSweepsHF.cpp */; }; - FFFFfb0071187fbcfb007118 /* src/pcm/GuPCMContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0071187fbcfb007118 /* src/pcm/GuPCMContactBoxBox.cpp */; }; - FFFFfb0071807fbcfb007180 /* src/pcm/GuPCMContactBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0071807fbcfb007180 /* src/pcm/GuPCMContactBoxConvex.cpp */; }; - FFFFfb0071e87fbcfb0071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0071e87fbcfb0071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */; }; - FFFFfb0072507fbcfb007250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0072507fbcfb007250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */; }; - FFFFfb0072b87fbcfb0072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0072b87fbcfb0072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */; }; - FFFFfb0073207fbcfb007320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0073207fbcfb007320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */; }; - FFFFfb0073887fbcfb007388 /* src/pcm/GuPCMContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0073887fbcfb007388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */; }; - FFFFfb0073f07fbcfb0073f0 /* src/pcm/GuPCMContactConvexCommon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0073f07fbcfb0073f0 /* src/pcm/GuPCMContactConvexCommon.cpp */; }; - FFFFfb0074587fbcfb007458 /* src/pcm/GuPCMContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0074587fbcfb007458 /* src/pcm/GuPCMContactConvexConvex.cpp */; }; - FFFFfb0074c07fbcfb0074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0074c07fbcfb0074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */; }; - FFFFfb0075287fbcfb007528 /* src/pcm/GuPCMContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0075287fbcfb007528 /* src/pcm/GuPCMContactConvexMesh.cpp */; }; - FFFFfb0075907fbcfb007590 /* src/pcm/GuPCMContactGenBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0075907fbcfb007590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */; }; - FFFFfb0075f87fbcfb0075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0075f87fbcfb0075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */; }; - FFFFfb0076607fbcfb007660 /* src/pcm/GuPCMContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0076607fbcfb007660 /* src/pcm/GuPCMContactPlaneBox.cpp */; }; - FFFFfb0076c87fbcfb0076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0076c87fbcfb0076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */; }; - FFFFfb0077307fbcfb007730 /* src/pcm/GuPCMContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0077307fbcfb007730 /* src/pcm/GuPCMContactPlaneConvex.cpp */; }; - FFFFfb0077987fbcfb007798 /* src/pcm/GuPCMContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0077987fbcfb007798 /* src/pcm/GuPCMContactSphereBox.cpp */; }; - FFFFfb0078007fbcfb007800 /* src/pcm/GuPCMContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0078007fbcfb007800 /* src/pcm/GuPCMContactSphereCapsule.cpp */; }; - FFFFfb0078687fbcfb007868 /* src/pcm/GuPCMContactSphereConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0078687fbcfb007868 /* src/pcm/GuPCMContactSphereConvex.cpp */; }; - FFFFfb0078d07fbcfb0078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0078d07fbcfb0078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */; }; - FFFFfb0079387fbcfb007938 /* src/pcm/GuPCMContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0079387fbcfb007938 /* src/pcm/GuPCMContactSphereMesh.cpp */; }; - FFFFfb0079a07fbcfb0079a0 /* src/pcm/GuPCMContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb0079a07fbcfb0079a0 /* src/pcm/GuPCMContactSpherePlane.cpp */; }; - FFFFfb007a087fbcfb007a08 /* src/pcm/GuPCMContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb007a087fbcfb007a08 /* src/pcm/GuPCMContactSphereSphere.cpp */; }; - FFFFfb007a707fbcfb007a70 /* src/pcm/GuPCMShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb007a707fbcfb007a70 /* src/pcm/GuPCMShapeConvex.cpp */; }; - FFFFfb007ad87fbcfb007ad8 /* src/pcm/GuPCMTriangleContactGen.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb007ad87fbcfb007ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */; }; - FFFFfb007b407fbcfb007b40 /* src/pcm/GuPersistentContactManifold.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb007b407fbcfb007b40 /* src/pcm/GuPersistentContactManifold.cpp */; }; - FFFFfb007ba87fbcfb007ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb007ba87fbcfb007ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */; }; - FFFFfb007c107fbcfb007c10 /* src/ccd/GuCCDSweepPrimitives.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDfb007c107fbcfb007c10 /* src/ccd/GuCCDSweepPrimitives.cpp */; }; + FFFFb31766007feab3176600 /* src/CmBoxPruning.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDb31766007feab3176600 /* src/CmBoxPruning.cpp */; }; + FFFFb31766687feab3176668 /* src/CmCollection.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDb31766687feab3176668 /* src/CmCollection.cpp */; }; + FFFFb31766d07feab31766d0 /* src/CmMathUtils.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDb31766d07feab31766d0 /* src/CmMathUtils.cpp */; }; + FFFFb31767387feab3176738 /* src/CmPtrTable.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDb31767387feab3176738 /* src/CmPtrTable.cpp */; }; + FFFFb31767a07feab31767a0 /* src/CmRadixSort.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDb31767a07feab31767a0 /* src/CmRadixSort.cpp */; }; + FFFFb31768087feab3176808 /* src/CmRadixSortBuffered.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDb31768087feab3176808 /* src/CmRadixSortBuffered.cpp */; }; + FFFFb31768707feab3176870 /* src/CmRenderOutput.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDb31768707feab3176870 /* src/CmRenderOutput.cpp */; }; + FFFFb31768d87feab31768d8 /* src/CmVisualization.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDb31768d87feab31768d8 /* src/CmVisualization.cpp */; }; + FFFFb38013a87feab38013a8 /* ../../Include/GeomUtils in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38013a87feab38013a8 /* ../../Include/GeomUtils */; }; + FFFFb38048e07feab38048e0 /* src/GuBounds.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38048e07feab38048e0 /* src/GuBounds.cpp */; }; + FFFFb38049487feab3804948 /* src/GuBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38049487feab3804948 /* src/GuBox.cpp */; }; + FFFFb38049b07feab38049b0 /* src/GuCCTSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38049b07feab38049b0 /* src/GuCCTSweepTests.cpp */; }; + FFFFb3804a187feab3804a18 /* src/GuCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3804a187feab3804a18 /* src/GuCapsule.cpp */; }; + FFFFb3804a807feab3804a80 /* src/GuGeometryQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3804a807feab3804a80 /* src/GuGeometryQuery.cpp */; }; + FFFFb3804ae87feab3804ae8 /* src/GuGeometryUnion.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3804ae87feab3804ae8 /* src/GuGeometryUnion.cpp */; }; + FFFFb3804b507feab3804b50 /* src/GuInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3804b507feab3804b50 /* src/GuInternal.cpp */; }; + FFFFb3804bb87feab3804bb8 /* src/GuMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3804bb87feab3804bb8 /* src/GuMTD.cpp */; }; + FFFFb3804c207feab3804c20 /* src/GuMeshFactory.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3804c207feab3804c20 /* src/GuMeshFactory.cpp */; }; + FFFFb3804c887feab3804c88 /* src/GuMetaData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3804c887feab3804c88 /* src/GuMetaData.cpp */; }; + FFFFb3804cf07feab3804cf0 /* src/GuOverlapTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3804cf07feab3804cf0 /* src/GuOverlapTests.cpp */; }; + FFFFb3804d587feab3804d58 /* src/GuRaycastTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3804d587feab3804d58 /* src/GuRaycastTests.cpp */; }; + FFFFb3804dc07feab3804dc0 /* src/GuSerialize.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3804dc07feab3804dc0 /* src/GuSerialize.cpp */; }; + FFFFb3804e287feab3804e28 /* src/GuSweepMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3804e287feab3804e28 /* src/GuSweepMTD.cpp */; }; + FFFFb3804e907feab3804e90 /* src/GuSweepSharedTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3804e907feab3804e90 /* src/GuSweepSharedTests.cpp */; }; + FFFFb3804ef87feab3804ef8 /* src/GuSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3804ef87feab3804ef8 /* src/GuSweepTests.cpp */; }; + FFFFb3804f607feab3804f60 /* src/contact/GuContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3804f607feab3804f60 /* src/contact/GuContactBoxBox.cpp */; }; + FFFFb3804fc87feab3804fc8 /* src/contact/GuContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3804fc87feab3804fc8 /* src/contact/GuContactCapsuleBox.cpp */; }; + FFFFb38050307feab3805030 /* src/contact/GuContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38050307feab3805030 /* src/contact/GuContactCapsuleCapsule.cpp */; }; + FFFFb38050987feab3805098 /* src/contact/GuContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38050987feab3805098 /* src/contact/GuContactCapsuleConvex.cpp */; }; + FFFFb38051007feab3805100 /* src/contact/GuContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38051007feab3805100 /* src/contact/GuContactCapsuleMesh.cpp */; }; + FFFFb38051687feab3805168 /* src/contact/GuContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38051687feab3805168 /* src/contact/GuContactConvexConvex.cpp */; }; + FFFFb38051d07feab38051d0 /* src/contact/GuContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38051d07feab38051d0 /* src/contact/GuContactConvexMesh.cpp */; }; + FFFFb38052387feab3805238 /* src/contact/GuContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38052387feab3805238 /* src/contact/GuContactPlaneBox.cpp */; }; + FFFFb38052a07feab38052a0 /* src/contact/GuContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38052a07feab38052a0 /* src/contact/GuContactPlaneCapsule.cpp */; }; + FFFFb38053087feab3805308 /* src/contact/GuContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38053087feab3805308 /* src/contact/GuContactPlaneConvex.cpp */; }; + FFFFb38053707feab3805370 /* src/contact/GuContactPolygonPolygon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38053707feab3805370 /* src/contact/GuContactPolygonPolygon.cpp */; }; + FFFFb38053d87feab38053d8 /* src/contact/GuContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38053d87feab38053d8 /* src/contact/GuContactSphereBox.cpp */; }; + FFFFb38054407feab3805440 /* src/contact/GuContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38054407feab3805440 /* src/contact/GuContactSphereCapsule.cpp */; }; + FFFFb38054a87feab38054a8 /* src/contact/GuContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38054a87feab38054a8 /* src/contact/GuContactSphereMesh.cpp */; }; + FFFFb38055107feab3805510 /* src/contact/GuContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38055107feab3805510 /* src/contact/GuContactSpherePlane.cpp */; }; + FFFFb38055787feab3805578 /* src/contact/GuContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38055787feab3805578 /* src/contact/GuContactSphereSphere.cpp */; }; + FFFFb38055e07feab38055e0 /* src/contact/GuFeatureCode.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38055e07feab38055e0 /* src/contact/GuFeatureCode.cpp */; }; + FFFFb38056487feab3805648 /* src/contact/GuLegacyContactBoxHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38056487feab3805648 /* src/contact/GuLegacyContactBoxHeightField.cpp */; }; + FFFFb38056b07feab38056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38056b07feab38056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */; }; + FFFFb38057187feab3805718 /* src/contact/GuLegacyContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38057187feab3805718 /* src/contact/GuLegacyContactConvexHeightField.cpp */; }; + FFFFb38057807feab3805780 /* src/contact/GuLegacyContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38057807feab3805780 /* src/contact/GuLegacyContactSphereHeightField.cpp */; }; + FFFFb38057e87feab38057e8 /* src/common/GuBarycentricCoordinates.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38057e87feab38057e8 /* src/common/GuBarycentricCoordinates.cpp */; }; + FFFFb38058507feab3805850 /* src/common/GuSeparatingAxes.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38058507feab3805850 /* src/common/GuSeparatingAxes.cpp */; }; + FFFFb38058b87feab38058b8 /* src/convex/GuBigConvexData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38058b87feab38058b8 /* src/convex/GuBigConvexData.cpp */; }; + FFFFb38059207feab3805920 /* src/convex/GuConvexHelper.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38059207feab3805920 /* src/convex/GuConvexHelper.cpp */; }; + FFFFb38059887feab3805988 /* src/convex/GuConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38059887feab3805988 /* src/convex/GuConvexMesh.cpp */; }; + FFFFb38059f07feab38059f0 /* src/convex/GuConvexSupportTable.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38059f07feab38059f0 /* src/convex/GuConvexSupportTable.cpp */; }; + FFFFb3805a587feab3805a58 /* src/convex/GuConvexUtilsInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3805a587feab3805a58 /* src/convex/GuConvexUtilsInternal.cpp */; }; + FFFFb3805ac07feab3805ac0 /* src/convex/GuHillClimbing.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3805ac07feab3805ac0 /* src/convex/GuHillClimbing.cpp */; }; + FFFFb3805b287feab3805b28 /* src/convex/GuShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3805b287feab3805b28 /* src/convex/GuShapeConvex.cpp */; }; + FFFFb3805b907feab3805b90 /* src/distance/GuDistancePointBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3805b907feab3805b90 /* src/distance/GuDistancePointBox.cpp */; }; + FFFFb3805bf87feab3805bf8 /* src/distance/GuDistancePointTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3805bf87feab3805bf8 /* src/distance/GuDistancePointTriangle.cpp */; }; + FFFFb3805c607feab3805c60 /* src/distance/GuDistanceSegmentBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3805c607feab3805c60 /* src/distance/GuDistanceSegmentBox.cpp */; }; + FFFFb3805cc87feab3805cc8 /* src/distance/GuDistanceSegmentSegment.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3805cc87feab3805cc8 /* src/distance/GuDistanceSegmentSegment.cpp */; }; + FFFFb3805d307feab3805d30 /* src/distance/GuDistanceSegmentTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3805d307feab3805d30 /* src/distance/GuDistanceSegmentTriangle.cpp */; }; + FFFFb3805d987feab3805d98 /* src/sweep/GuSweepBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3805d987feab3805d98 /* src/sweep/GuSweepBoxBox.cpp */; }; + FFFFb3805e007feab3805e00 /* src/sweep/GuSweepBoxSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3805e007feab3805e00 /* src/sweep/GuSweepBoxSphere.cpp */; }; + FFFFb3805e687feab3805e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3805e687feab3805e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */; }; + FFFFb3805ed07feab3805ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3805ed07feab3805ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */; }; + FFFFb3805f387feab3805f38 /* src/sweep/GuSweepCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3805f387feab3805f38 /* src/sweep/GuSweepCapsuleBox.cpp */; }; + FFFFb3805fa07feab3805fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3805fa07feab3805fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */; }; + FFFFb38060087feab3806008 /* src/sweep/GuSweepCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38060087feab3806008 /* src/sweep/GuSweepCapsuleTriangle.cpp */; }; + FFFFb38060707feab3806070 /* src/sweep/GuSweepSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38060707feab3806070 /* src/sweep/GuSweepSphereCapsule.cpp */; }; + FFFFb38060d87feab38060d8 /* src/sweep/GuSweepSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38060d87feab38060d8 /* src/sweep/GuSweepSphereSphere.cpp */; }; + FFFFb38061407feab3806140 /* src/sweep/GuSweepSphereTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38061407feab3806140 /* src/sweep/GuSweepSphereTriangle.cpp */; }; + FFFFb38061a87feab38061a8 /* src/sweep/GuSweepTriangleUtils.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38061a87feab38061a8 /* src/sweep/GuSweepTriangleUtils.cpp */; }; + FFFFb38062107feab3806210 /* src/gjk/GuEPA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38062107feab3806210 /* src/gjk/GuEPA.cpp */; }; + FFFFb38062787feab3806278 /* src/gjk/GuGJKSimplex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38062787feab3806278 /* src/gjk/GuGJKSimplex.cpp */; }; + FFFFb38062e07feab38062e0 /* src/gjk/GuGJKTest.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38062e07feab38062e0 /* src/gjk/GuGJKTest.cpp */; }; + FFFFb38063487feab3806348 /* src/intersection/GuIntersectionBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38063487feab3806348 /* src/intersection/GuIntersectionBoxBox.cpp */; }; + FFFFb38063b07feab38063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38063b07feab38063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */; }; + FFFFb38064187feab3806418 /* src/intersection/GuIntersectionEdgeEdge.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38064187feab3806418 /* src/intersection/GuIntersectionEdgeEdge.cpp */; }; + FFFFb38064807feab3806480 /* src/intersection/GuIntersectionRayBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38064807feab3806480 /* src/intersection/GuIntersectionRayBox.cpp */; }; + FFFFb38064e87feab38064e8 /* src/intersection/GuIntersectionRayCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38064e87feab38064e8 /* src/intersection/GuIntersectionRayCapsule.cpp */; }; + FFFFb38065507feab3806550 /* src/intersection/GuIntersectionRaySphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38065507feab3806550 /* src/intersection/GuIntersectionRaySphere.cpp */; }; + FFFFb38065b87feab38065b8 /* src/intersection/GuIntersectionSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38065b87feab38065b8 /* src/intersection/GuIntersectionSphereBox.cpp */; }; + FFFFb38066207feab3806620 /* src/intersection/GuIntersectionTriangleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38066207feab3806620 /* src/intersection/GuIntersectionTriangleBox.cpp */; }; + FFFFb38066887feab3806688 /* src/mesh/GuBV32.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38066887feab3806688 /* src/mesh/GuBV32.cpp */; }; + FFFFb38066f07feab38066f0 /* src/mesh/GuBV32Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38066f07feab38066f0 /* src/mesh/GuBV32Build.cpp */; }; + FFFFb38067587feab3806758 /* src/mesh/GuBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38067587feab3806758 /* src/mesh/GuBV4.cpp */; }; + FFFFb38067c07feab38067c0 /* src/mesh/GuBV4Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38067c07feab38067c0 /* src/mesh/GuBV4Build.cpp */; }; + FFFFb38068287feab3806828 /* src/mesh/GuBV4_AABBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38068287feab3806828 /* src/mesh/GuBV4_AABBSweep.cpp */; }; + FFFFb38068907feab3806890 /* src/mesh/GuBV4_BoxOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38068907feab3806890 /* src/mesh/GuBV4_BoxOverlap.cpp */; }; + FFFFb38068f87feab38068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38068f87feab38068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */; }; + FFFFb38069607feab3806960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38069607feab3806960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */; }; + FFFFb38069c87feab38069c8 /* src/mesh/GuBV4_OBBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38069c87feab38069c8 /* src/mesh/GuBV4_OBBSweep.cpp */; }; + FFFFb3806a307feab3806a30 /* src/mesh/GuBV4_Raycast.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3806a307feab3806a30 /* src/mesh/GuBV4_Raycast.cpp */; }; + FFFFb3806a987feab3806a98 /* src/mesh/GuBV4_SphereOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3806a987feab3806a98 /* src/mesh/GuBV4_SphereOverlap.cpp */; }; + FFFFb3806b007feab3806b00 /* src/mesh/GuBV4_SphereSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3806b007feab3806b00 /* src/mesh/GuBV4_SphereSweep.cpp */; }; + FFFFb3806b687feab3806b68 /* src/mesh/GuMeshQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3806b687feab3806b68 /* src/mesh/GuMeshQuery.cpp */; }; + FFFFb3806bd07feab3806bd0 /* src/mesh/GuMidphaseBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3806bd07feab3806bd0 /* src/mesh/GuMidphaseBV4.cpp */; }; + FFFFb3806c387feab3806c38 /* src/mesh/GuMidphaseRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3806c387feab3806c38 /* src/mesh/GuMidphaseRTree.cpp */; }; + FFFFb3806ca07feab3806ca0 /* src/mesh/GuOverlapTestsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3806ca07feab3806ca0 /* src/mesh/GuOverlapTestsMesh.cpp */; }; + FFFFb3806d087feab3806d08 /* src/mesh/GuRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3806d087feab3806d08 /* src/mesh/GuRTree.cpp */; }; + FFFFb3806d707feab3806d70 /* src/mesh/GuRTreeQueries.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3806d707feab3806d70 /* src/mesh/GuRTreeQueries.cpp */; }; + FFFFb3806dd87feab3806dd8 /* src/mesh/GuSweepsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3806dd87feab3806dd8 /* src/mesh/GuSweepsMesh.cpp */; }; + FFFFb3806e407feab3806e40 /* src/mesh/GuTriangleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3806e407feab3806e40 /* src/mesh/GuTriangleMesh.cpp */; }; + FFFFb3806ea87feab3806ea8 /* src/mesh/GuTriangleMeshBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3806ea87feab3806ea8 /* src/mesh/GuTriangleMeshBV4.cpp */; }; + FFFFb3806f107feab3806f10 /* src/mesh/GuTriangleMeshRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3806f107feab3806f10 /* src/mesh/GuTriangleMeshRTree.cpp */; }; + FFFFb3806f787feab3806f78 /* src/hf/GuHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3806f787feab3806f78 /* src/hf/GuHeightField.cpp */; }; + FFFFb3806fe07feab3806fe0 /* src/hf/GuHeightFieldUtil.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3806fe07feab3806fe0 /* src/hf/GuHeightFieldUtil.cpp */; }; + FFFFb38070487feab3807048 /* src/hf/GuOverlapTestsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38070487feab3807048 /* src/hf/GuOverlapTestsHF.cpp */; }; + FFFFb38070b07feab38070b0 /* src/hf/GuSweepsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38070b07feab38070b0 /* src/hf/GuSweepsHF.cpp */; }; + FFFFb38071187feab3807118 /* src/pcm/GuPCMContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38071187feab3807118 /* src/pcm/GuPCMContactBoxBox.cpp */; }; + FFFFb38071807feab3807180 /* src/pcm/GuPCMContactBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38071807feab3807180 /* src/pcm/GuPCMContactBoxConvex.cpp */; }; + FFFFb38071e87feab38071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38071e87feab38071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */; }; + FFFFb38072507feab3807250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38072507feab3807250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */; }; + FFFFb38072b87feab38072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38072b87feab38072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */; }; + FFFFb38073207feab3807320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38073207feab3807320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */; }; + FFFFb38073887feab3807388 /* src/pcm/GuPCMContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38073887feab3807388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */; }; + FFFFb38073f07feab38073f0 /* src/pcm/GuPCMContactConvexCommon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38073f07feab38073f0 /* src/pcm/GuPCMContactConvexCommon.cpp */; }; + FFFFb38074587feab3807458 /* src/pcm/GuPCMContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38074587feab3807458 /* src/pcm/GuPCMContactConvexConvex.cpp */; }; + FFFFb38074c07feab38074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38074c07feab38074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */; }; + FFFFb38075287feab3807528 /* src/pcm/GuPCMContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38075287feab3807528 /* src/pcm/GuPCMContactConvexMesh.cpp */; }; + FFFFb38075907feab3807590 /* src/pcm/GuPCMContactGenBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38075907feab3807590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */; }; + FFFFb38075f87feab38075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38075f87feab38075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */; }; + FFFFb38076607feab3807660 /* src/pcm/GuPCMContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38076607feab3807660 /* src/pcm/GuPCMContactPlaneBox.cpp */; }; + FFFFb38076c87feab38076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38076c87feab38076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */; }; + FFFFb38077307feab3807730 /* src/pcm/GuPCMContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38077307feab3807730 /* src/pcm/GuPCMContactPlaneConvex.cpp */; }; + FFFFb38077987feab3807798 /* src/pcm/GuPCMContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38077987feab3807798 /* src/pcm/GuPCMContactSphereBox.cpp */; }; + FFFFb38078007feab3807800 /* src/pcm/GuPCMContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38078007feab3807800 /* src/pcm/GuPCMContactSphereCapsule.cpp */; }; + FFFFb38078687feab3807868 /* src/pcm/GuPCMContactSphereConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38078687feab3807868 /* src/pcm/GuPCMContactSphereConvex.cpp */; }; + FFFFb38078d07feab38078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38078d07feab38078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */; }; + FFFFb38079387feab3807938 /* src/pcm/GuPCMContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38079387feab3807938 /* src/pcm/GuPCMContactSphereMesh.cpp */; }; + FFFFb38079a07feab38079a0 /* src/pcm/GuPCMContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38079a07feab38079a0 /* src/pcm/GuPCMContactSpherePlane.cpp */; }; + FFFFb3807a087feab3807a08 /* src/pcm/GuPCMContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3807a087feab3807a08 /* src/pcm/GuPCMContactSphereSphere.cpp */; }; + FFFFb3807a707feab3807a70 /* src/pcm/GuPCMShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3807a707feab3807a70 /* src/pcm/GuPCMShapeConvex.cpp */; }; + FFFFb3807ad87feab3807ad8 /* src/pcm/GuPCMTriangleContactGen.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3807ad87feab3807ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */; }; + FFFFb3807b407feab3807b40 /* src/pcm/GuPersistentContactManifold.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3807b407feab3807b40 /* src/pcm/GuPersistentContactManifold.cpp */; }; + FFFFb3807ba87feab3807ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3807ba87feab3807ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */; }; + FFFFb3807c107feab3807c10 /* src/ccd/GuCCDSweepPrimitives.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3807c107feab3807c10 /* src/ccd/GuCCDSweepPrimitives.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDfa8913407fbcfa891340 /* PhysXCommon */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCommon"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDfb00ec007fbcfb00ec00 /* common/PxBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxBase.h"; path = "../../../Include/common/PxBase.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb00ec687fbcfb00ec68 /* common/PxCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCollection.h"; path = "../../../Include/common/PxCollection.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb00ecd07fbcfb00ecd0 /* common/PxCoreUtilityTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCoreUtilityTypes.h"; path = "../../../Include/common/PxCoreUtilityTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb00ed387fbcfb00ed38 /* common/PxMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaData.h"; path = "../../../Include/common/PxMetaData.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb00eda07fbcfb00eda0 /* common/PxMetaDataFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaDataFlags.h"; path = "../../../Include/common/PxMetaDataFlags.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb00ee087fbcfb00ee08 /* common/PxPhysXCommonConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysXCommonConfig.h"; path = "../../../Include/common/PxPhysXCommonConfig.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb00ee707fbcfb00ee70 /* common/PxPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysicsInsertionCallback.h"; path = "../../../Include/common/PxPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb00eed87fbcfb00eed8 /* common/PxRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxRenderBuffer.h"; path = "../../../Include/common/PxRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb00ef407fbcfb00ef40 /* common/PxSerialFramework.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerialFramework.h"; path = "../../../Include/common/PxSerialFramework.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb00efa87fbcfb00efa8 /* common/PxSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerializer.h"; path = "../../../Include/common/PxSerializer.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb00f0107fbcfb00f010 /* common/PxStringTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxStringTable.h"; path = "../../../Include/common/PxStringTable.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb00f0787fbcfb00f078 /* common/PxTolerancesScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTolerancesScale.h"; path = "../../../Include/common/PxTolerancesScale.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb00f0e07fbcfb00f0e0 /* common/PxTypeInfo.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTypeInfo.h"; path = "../../../Include/common/PxTypeInfo.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb00f1487fbcfb00f148 /* geometry/PxBoxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxBoxGeometry.h"; path = "../../../Include/geometry/PxBoxGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb00f1b07fbcfb00f1b0 /* geometry/PxCapsuleGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxCapsuleGeometry.h"; path = "../../../Include/geometry/PxCapsuleGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb00f2187fbcfb00f218 /* geometry/PxConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMesh.h"; path = "../../../Include/geometry/PxConvexMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb00f2807fbcfb00f280 /* geometry/PxConvexMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMeshGeometry.h"; path = "../../../Include/geometry/PxConvexMeshGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb00f2e87fbcfb00f2e8 /* geometry/PxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometry.h"; path = "../../../Include/geometry/PxGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb00f3507fbcfb00f350 /* geometry/PxGeometryHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryHelpers.h"; path = "../../../Include/geometry/PxGeometryHelpers.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb00f3b87fbcfb00f3b8 /* geometry/PxGeometryQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryQuery.h"; path = "../../../Include/geometry/PxGeometryQuery.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb00f4207fbcfb00f420 /* geometry/PxHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightField.h"; path = "../../../Include/geometry/PxHeightField.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb00f4887fbcfb00f488 /* geometry/PxHeightFieldDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldDesc.h"; path = "../../../Include/geometry/PxHeightFieldDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb00f4f07fbcfb00f4f0 /* geometry/PxHeightFieldFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldFlag.h"; path = "../../../Include/geometry/PxHeightFieldFlag.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb00f5587fbcfb00f558 /* geometry/PxHeightFieldGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldGeometry.h"; path = "../../../Include/geometry/PxHeightFieldGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb00f5c07fbcfb00f5c0 /* geometry/PxHeightFieldSample.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldSample.h"; path = "../../../Include/geometry/PxHeightFieldSample.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb00f6287fbcfb00f628 /* geometry/PxMeshQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshQuery.h"; path = "../../../Include/geometry/PxMeshQuery.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb00f6907fbcfb00f690 /* geometry/PxMeshScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshScale.h"; path = "../../../Include/geometry/PxMeshScale.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb00f6f87fbcfb00f6f8 /* geometry/PxPlaneGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxPlaneGeometry.h"; path = "../../../Include/geometry/PxPlaneGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb00f7607fbcfb00f760 /* geometry/PxSimpleTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSimpleTriangleMesh.h"; path = "../../../Include/geometry/PxSimpleTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb00f7c87fbcfb00f7c8 /* geometry/PxSphereGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSphereGeometry.h"; path = "../../../Include/geometry/PxSphereGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb00f8307fbcfb00f830 /* geometry/PxTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangle.h"; path = "../../../Include/geometry/PxTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb00f8987fbcfb00f898 /* geometry/PxTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMesh.h"; path = "../../../Include/geometry/PxTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb00f9007fbcfb00f900 /* geometry/PxTriangleMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMeshGeometry.h"; path = "../../../Include/geometry/PxTriangleMeshGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa18ee007fbcfa18ee00 /* src/CmBoxPruning.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.cpp"; path = "../../Common/src/CmBoxPruning.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa18ee687fbcfa18ee68 /* src/CmCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.cpp"; path = "../../Common/src/CmCollection.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa18eed07fbcfa18eed0 /* src/CmMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMathUtils.cpp"; path = "../../Common/src/CmMathUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa18ef387fbcfa18ef38 /* src/CmPtrTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.cpp"; path = "../../Common/src/CmPtrTable.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa18efa07fbcfa18efa0 /* src/CmRadixSort.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.cpp"; path = "../../Common/src/CmRadixSort.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa18f0087fbcfa18f008 /* src/CmRadixSortBuffered.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.cpp"; path = "../../Common/src/CmRadixSortBuffered.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa18f0707fbcfa18f070 /* src/CmRenderOutput.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.cpp"; path = "../../Common/src/CmRenderOutput.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa18f0d87fbcfa18f0d8 /* src/CmVisualization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.cpp"; path = "../../Common/src/CmVisualization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa18f1407fbcfa18f140 /* src/CmBitMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBitMap.h"; path = "../../Common/src/CmBitMap.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa18f1a87fbcfa18f1a8 /* src/CmBoxPruning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.h"; path = "../../Common/src/CmBoxPruning.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa18f2107fbcfa18f210 /* src/CmCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.h"; path = "../../Common/src/CmCollection.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa18f2787fbcfa18f278 /* src/CmConeLimitHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmConeLimitHelper.h"; path = "../../Common/src/CmConeLimitHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa18f2e07fbcfa18f2e0 /* src/CmFlushPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmFlushPool.h"; path = "../../Common/src/CmFlushPool.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa18f3487fbcfa18f348 /* src/CmIDPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIDPool.h"; path = "../../Common/src/CmIDPool.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa18f3b07fbcfa18f3b0 /* src/CmIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIO.h"; path = "../../Common/src/CmIO.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa18f4187fbcfa18f418 /* src/CmMatrix34.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMatrix34.h"; path = "../../Common/src/CmMatrix34.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa18f4807fbcfa18f480 /* src/CmPhysXCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPhysXCommon.h"; path = "../../Common/src/CmPhysXCommon.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa18f4e87fbcfa18f4e8 /* src/CmPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPool.h"; path = "../../Common/src/CmPool.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa18f5507fbcfa18f550 /* src/CmPreallocatingPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPreallocatingPool.h"; path = "../../Common/src/CmPreallocatingPool.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa18f5b87fbcfa18f5b8 /* src/CmPriorityQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPriorityQueue.h"; path = "../../Common/src/CmPriorityQueue.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa18f6207fbcfa18f620 /* src/CmPtrTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.h"; path = "../../Common/src/CmPtrTable.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa18f6887fbcfa18f688 /* src/CmQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmQueue.h"; path = "../../Common/src/CmQueue.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa18f6f07fbcfa18f6f0 /* src/CmRadixSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.h"; path = "../../Common/src/CmRadixSort.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa18f7587fbcfa18f758 /* src/CmRadixSortBuffered.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.h"; path = "../../Common/src/CmRadixSortBuffered.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa18f7c07fbcfa18f7c0 /* src/CmReaderWriterLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmReaderWriterLock.h"; path = "../../Common/src/CmReaderWriterLock.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa18f8287fbcfa18f828 /* src/CmRefCountable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRefCountable.h"; path = "../../Common/src/CmRefCountable.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa18f8907fbcfa18f890 /* src/CmRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderBuffer.h"; path = "../../Common/src/CmRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa18f8f87fbcfa18f8f8 /* src/CmRenderOutput.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.h"; path = "../../Common/src/CmRenderOutput.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa18f9607fbcfa18f960 /* src/CmScaling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmScaling.h"; path = "../../Common/src/CmScaling.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa18f9c87fbcfa18f9c8 /* src/CmSpatialVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmSpatialVector.h"; path = "../../Common/src/CmSpatialVector.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa18fa307fbcfa18fa30 /* src/CmTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTask.h"; path = "../../Common/src/CmTask.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa18fa987fbcfa18fa98 /* src/CmTaskPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTaskPool.h"; path = "../../Common/src/CmTaskPool.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa18fb007fbcfa18fb00 /* src/CmTmpMem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTmpMem.h"; path = "../../Common/src/CmTmpMem.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa18fb687fbcfa18fb68 /* src/CmTransformUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTransformUtils.h"; path = "../../Common/src/CmTransformUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa18fbd07fbcfa18fbd0 /* src/CmUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmUtils.h"; path = "../../Common/src/CmUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa18fc387fbcfa18fc38 /* src/CmVisualization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.h"; path = "../../Common/src/CmVisualization.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0010007fbcfb001000 /* headers/GuAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuAxes.h"; path = "../../GeomUtils/headers/GuAxes.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0010687fbcfb001068 /* headers/GuBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuBox.h"; path = "../../GeomUtils/headers/GuBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0010d07fbcfb0010d0 /* headers/GuDistanceSegmentBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentBox.h"; path = "../../GeomUtils/headers/GuDistanceSegmentBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0011387fbcfb001138 /* headers/GuDistanceSegmentSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentSegment.h"; path = "../../GeomUtils/headers/GuDistanceSegmentSegment.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0011a07fbcfb0011a0 /* headers/GuIntersectionBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionBoxBox.h"; path = "../../GeomUtils/headers/GuIntersectionBoxBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0012087fbcfb001208 /* headers/GuIntersectionTriangleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionTriangleBox.h"; path = "../../GeomUtils/headers/GuIntersectionTriangleBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0012707fbcfb001270 /* headers/GuRaycastTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuRaycastTests.h"; path = "../../GeomUtils/headers/GuRaycastTests.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0012d87fbcfb0012d8 /* headers/GuSIMDHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSIMDHelpers.h"; path = "../../GeomUtils/headers/GuSIMDHelpers.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0013407fbcfb001340 /* headers/GuSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSegment.h"; path = "../../GeomUtils/headers/GuSegment.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0013a87fbcfb0013a8 /* ../../Include/GeomUtils */= { isa = PBXFileReference; fileEncoding = 4; name = "../../Include/GeomUtils"; path = "../../../Include/GeomUtils"; sourceTree = SOURCE_ROOT; }; - FFFDfb0014107fbcfb001410 /* src/GuBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.h"; path = "../../GeomUtils/src/GuBounds.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0014787fbcfb001478 /* src/GuCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.h"; path = "../../GeomUtils/src/GuCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0014e07fbcfb0014e0 /* src/GuCenterExtents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCenterExtents.h"; path = "../../GeomUtils/src/GuCenterExtents.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0015487fbcfb001548 /* src/GuGeometryUnion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.h"; path = "../../GeomUtils/src/GuGeometryUnion.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0015b07fbcfb0015b0 /* src/GuInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.h"; path = "../../GeomUtils/src/GuInternal.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0016187fbcfb001618 /* src/GuMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.h"; path = "../../GeomUtils/src/GuMTD.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0016807fbcfb001680 /* src/GuMeshFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.h"; path = "../../GeomUtils/src/GuMeshFactory.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0016e87fbcfb0016e8 /* src/GuOverlapTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.h"; path = "../../GeomUtils/src/GuOverlapTests.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0017507fbcfb001750 /* src/GuSerialize.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.h"; path = "../../GeomUtils/src/GuSerialize.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0017b87fbcfb0017b8 /* src/GuSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSphere.h"; path = "../../GeomUtils/src/GuSphere.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0018207fbcfb001820 /* src/GuSweepMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.h"; path = "../../GeomUtils/src/GuSweepMTD.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0018887fbcfb001888 /* src/GuSweepSharedTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.h"; path = "../../GeomUtils/src/GuSweepSharedTests.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0018f07fbcfb0018f0 /* src/GuSweepTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.h"; path = "../../GeomUtils/src/GuSweepTests.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0019587fbcfb001958 /* src/contact/GuContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactMethodImpl.h"; path = "../../GeomUtils/src/contact/GuContactMethodImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0019c07fbcfb0019c0 /* src/contact/GuContactPolygonPolygon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.h"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb001a287fbcfb001a28 /* src/contact/GuFeatureCode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.h"; path = "../../GeomUtils/src/contact/GuFeatureCode.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb001a907fbcfb001a90 /* src/contact/GuLegacyTraceLineCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyTraceLineCallback.h"; path = "../../GeomUtils/src/contact/GuLegacyTraceLineCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb001af87fbcfb001af8 /* src/common/GuBarycentricCoordinates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.h"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb001b607fbcfb001b60 /* src/common/GuBoxConversion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBoxConversion.h"; path = "../../GeomUtils/src/common/GuBoxConversion.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb001bc87fbcfb001bc8 /* src/common/GuEdgeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeCache.h"; path = "../../GeomUtils/src/common/GuEdgeCache.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb001c307fbcfb001c30 /* src/common/GuEdgeListData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeListData.h"; path = "../../GeomUtils/src/common/GuEdgeListData.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb001c987fbcfb001c98 /* src/common/GuSeparatingAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.h"; path = "../../GeomUtils/src/common/GuSeparatingAxes.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb001d007fbcfb001d00 /* src/convex/GuBigConvexData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.h"; path = "../../GeomUtils/src/convex/GuBigConvexData.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb001d687fbcfb001d68 /* src/convex/GuBigConvexData2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData2.h"; path = "../../GeomUtils/src/convex/GuBigConvexData2.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb001dd07fbcfb001dd0 /* src/convex/GuConvexEdgeFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexEdgeFlags.h"; path = "../../GeomUtils/src/convex/GuConvexEdgeFlags.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb001e387fbcfb001e38 /* src/convex/GuConvexHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.h"; path = "../../GeomUtils/src/convex/GuConvexHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb001ea07fbcfb001ea0 /* src/convex/GuConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.h"; path = "../../GeomUtils/src/convex/GuConvexMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb001f087fbcfb001f08 /* src/convex/GuConvexMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMeshData.h"; path = "../../GeomUtils/src/convex/GuConvexMeshData.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb001f707fbcfb001f70 /* src/convex/GuConvexSupportTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.h"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb001fd87fbcfb001fd8 /* src/convex/GuConvexUtilsInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.h"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0020407fbcfb002040 /* src/convex/GuCubeIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuCubeIndex.h"; path = "../../GeomUtils/src/convex/GuCubeIndex.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0020a87fbcfb0020a8 /* src/convex/GuHillClimbing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.h"; path = "../../GeomUtils/src/convex/GuHillClimbing.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0021107fbcfb002110 /* src/convex/GuShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.h"; path = "../../GeomUtils/src/convex/GuShapeConvex.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0021787fbcfb002178 /* src/distance/GuDistancePointBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.h"; path = "../../GeomUtils/src/distance/GuDistancePointBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0021e07fbcfb0021e0 /* src/distance/GuDistancePointSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointSegment.h"; path = "../../GeomUtils/src/distance/GuDistancePointSegment.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0022487fbcfb002248 /* src/distance/GuDistancePointTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0022b07fbcfb0022b0 /* src/distance/GuDistancePointTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangleSIMD.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0023187fbcfb002318 /* src/distance/GuDistanceSegmentSegmentSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegmentSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegmentSIMD.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0023807fbcfb002380 /* src/distance/GuDistanceSegmentTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0023e87fbcfb0023e8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangleSIMD.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0024507fbcfb002450 /* src/sweep/GuSweepBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0024b87fbcfb0024b8 /* src/sweep/GuSweepBoxSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0025207fbcfb002520 /* src/sweep/GuSweepBoxTriangle_FeatureBased.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxTriangle_FeatureBased.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxTriangle_FeatureBased.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0025887fbcfb002588 /* src/sweep/GuSweepBoxTriangle_SAT.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxTriangle_SAT.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxTriangle_SAT.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0025f07fbcfb0025f0 /* src/sweep/GuSweepCapsuleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0026587fbcfb002658 /* src/sweep/GuSweepCapsuleCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0026c07fbcfb0026c0 /* src/sweep/GuSweepCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0027287fbcfb002728 /* src/sweep/GuSweepSphereCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0027907fbcfb002790 /* src/sweep/GuSweepSphereSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0027f87fbcfb0027f8 /* src/sweep/GuSweepSphereTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0028607fbcfb002860 /* src/sweep/GuSweepTriangleUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.h"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0028c87fbcfb0028c8 /* src/gjk/GuEPA.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.h"; path = "../../GeomUtils/src/gjk/GuEPA.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0029307fbcfb002930 /* src/gjk/GuEPAFacet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPAFacet.h"; path = "../../GeomUtils/src/gjk/GuEPAFacet.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0029987fbcfb002998 /* src/gjk/GuGJK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJK.h"; path = "../../GeomUtils/src/gjk/GuGJK.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb002a007fbcfb002a00 /* src/gjk/GuGJKPenetration.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKPenetration.h"; path = "../../GeomUtils/src/gjk/GuGJKPenetration.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb002a687fbcfb002a68 /* src/gjk/GuGJKRaycast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKRaycast.h"; path = "../../GeomUtils/src/gjk/GuGJKRaycast.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb002ad07fbcfb002ad0 /* src/gjk/GuGJKSimplex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.h"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb002b387fbcfb002b38 /* src/gjk/GuGJKTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.h"; path = "../../GeomUtils/src/gjk/GuGJKTest.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb002ba07fbcfb002ba0 /* src/gjk/GuGJKType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKType.h"; path = "../../GeomUtils/src/gjk/GuGJKType.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb002c087fbcfb002c08 /* src/gjk/GuGJKUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKUtil.h"; path = "../../GeomUtils/src/gjk/GuGJKUtil.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb002c707fbcfb002c70 /* src/gjk/GuVecBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecBox.h"; path = "../../GeomUtils/src/gjk/GuVecBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb002cd87fbcfb002cd8 /* src/gjk/GuVecCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecCapsule.h"; path = "../../GeomUtils/src/gjk/GuVecCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb002d407fbcfb002d40 /* src/gjk/GuVecConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvex.h"; path = "../../GeomUtils/src/gjk/GuVecConvex.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb002da87fbcfb002da8 /* src/gjk/GuVecConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHull.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb002e107fbcfb002e10 /* src/gjk/GuVecConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb002e787fbcfb002e78 /* src/gjk/GuVecPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecPlane.h"; path = "../../GeomUtils/src/gjk/GuVecPlane.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb002ee07fbcfb002ee0 /* src/gjk/GuVecShrunkBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkBox.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb002f487fbcfb002f48 /* src/gjk/GuVecShrunkConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHull.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb002fb07fbcfb002fb0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0030187fbcfb003018 /* src/gjk/GuVecSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecSphere.h"; path = "../../GeomUtils/src/gjk/GuVecSphere.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0030807fbcfb003080 /* src/gjk/GuVecTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecTriangle.h"; path = "../../GeomUtils/src/gjk/GuVecTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0030e87fbcfb0030e8 /* src/intersection/GuIntersectionCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0031507fbcfb003150 /* src/intersection/GuIntersectionEdgeEdge.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.h"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0031b87fbcfb0031b8 /* src/intersection/GuIntersectionRay.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRay.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRay.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0032207fbcfb003220 /* src/intersection/GuIntersectionRayBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0032887fbcfb003288 /* src/intersection/GuIntersectionRayBoxSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBoxSIMD.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBoxSIMD.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0032f07fbcfb0032f0 /* src/intersection/GuIntersectionRayCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0033587fbcfb003358 /* src/intersection/GuIntersectionRayPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayPlane.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayPlane.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0033c07fbcfb0033c0 /* src/intersection/GuIntersectionRaySphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0034287fbcfb003428 /* src/intersection/GuIntersectionRayTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0034907fbcfb003490 /* src/intersection/GuIntersectionSphereBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0034f87fbcfb0034f8 /* src/mesh/GuBV32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.h"; path = "../../GeomUtils/src/mesh/GuBV32.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0035607fbcfb003560 /* src/mesh/GuBV32Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.h"; path = "../../GeomUtils/src/mesh/GuBV32Build.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0035c87fbcfb0035c8 /* src/mesh/GuBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.h"; path = "../../GeomUtils/src/mesh/GuBV4.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0036307fbcfb003630 /* src/mesh/GuBV4Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.h"; path = "../../GeomUtils/src/mesh/GuBV4Build.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0036987fbcfb003698 /* src/mesh/GuBV4Settings.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Settings.h"; path = "../../GeomUtils/src/mesh/GuBV4Settings.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0037007fbcfb003700 /* src/mesh/GuBV4_AABBAABBSweepTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_AABBAABBSweepTest.h"; path = "../../GeomUtils/src/mesh/GuBV4_AABBAABBSweepTest.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0037687fbcfb003768 /* src/mesh/GuBV4_BoxBoxOverlapTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxBoxOverlapTest.h"; path = "../../GeomUtils/src/mesh/GuBV4_BoxBoxOverlapTest.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0037d07fbcfb0037d0 /* src/mesh/GuBV4_BoxOverlap_Internal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxOverlap_Internal.h"; path = "../../GeomUtils/src/mesh/GuBV4_BoxOverlap_Internal.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0038387fbcfb003838 /* src/mesh/GuBV4_BoxSweep_Internal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxSweep_Internal.h"; path = "../../GeomUtils/src/mesh/GuBV4_BoxSweep_Internal.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0038a07fbcfb0038a0 /* src/mesh/GuBV4_BoxSweep_Params.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxSweep_Params.h"; path = "../../GeomUtils/src/mesh/GuBV4_BoxSweep_Params.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0039087fbcfb003908 /* src/mesh/GuBV4_CapsuleSweep_Internal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_CapsuleSweep_Internal.h"; path = "../../GeomUtils/src/mesh/GuBV4_CapsuleSweep_Internal.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0039707fbcfb003970 /* src/mesh/GuBV4_Common.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Common.h"; path = "../../GeomUtils/src/mesh/GuBV4_Common.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0039d87fbcfb0039d8 /* src/mesh/GuBV4_Internal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Internal.h"; path = "../../GeomUtils/src/mesh/GuBV4_Internal.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb003a407fbcfb003a40 /* src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb003aa87fbcfb003aa8 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb003b107fbcfb003b10 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb003b787fbcfb003b78 /* src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb003be07fbcfb003be0 /* src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb003c487fbcfb003c48 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb003cb07fbcfb003cb0 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb003d187fbcfb003d18 /* src/mesh/GuBV4_Slabs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb003d807fbcfb003d80 /* src/mesh/GuBV4_Slabs_KajiyaNoOrder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs_KajiyaNoOrder.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs_KajiyaNoOrder.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb003de87fbcfb003de8 /* src/mesh/GuBV4_Slabs_KajiyaOrdered.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs_KajiyaOrdered.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs_KajiyaOrdered.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb003e507fbcfb003e50 /* src/mesh/GuBV4_Slabs_SwizzledNoOrder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs_SwizzledNoOrder.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs_SwizzledNoOrder.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb003eb87fbcfb003eb8 /* src/mesh/GuBV4_Slabs_SwizzledOrdered.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs_SwizzledOrdered.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs_SwizzledOrdered.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb003f207fbcfb003f20 /* src/mesh/GuBVConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBVConstants.h"; path = "../../GeomUtils/src/mesh/GuBVConstants.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb003f887fbcfb003f88 /* src/mesh/GuMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshData.h"; path = "../../GeomUtils/src/mesh/GuMeshData.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb003ff07fbcfb003ff0 /* src/mesh/GuMidphaseInterface.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseInterface.h"; path = "../../GeomUtils/src/mesh/GuMidphaseInterface.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0040587fbcfb004058 /* src/mesh/GuRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.h"; path = "../../GeomUtils/src/mesh/GuRTree.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0040c07fbcfb0040c0 /* src/mesh/GuSweepConvexTri.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepConvexTri.h"; path = "../../GeomUtils/src/mesh/GuSweepConvexTri.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0041287fbcfb004128 /* src/mesh/GuSweepMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepMesh.h"; path = "../../GeomUtils/src/mesh/GuSweepMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0041907fbcfb004190 /* src/mesh/GuTriangle32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangle32.h"; path = "../../GeomUtils/src/mesh/GuTriangle32.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0041f87fbcfb0041f8 /* src/mesh/GuTriangleCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleCache.h"; path = "../../GeomUtils/src/mesh/GuTriangleCache.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0042607fbcfb004260 /* src/mesh/GuTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.h"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0042c87fbcfb0042c8 /* src/mesh/GuTriangleMeshBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0043307fbcfb004330 /* src/mesh/GuTriangleMeshRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0043987fbcfb004398 /* src/mesh/GuTriangleVertexPointers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleVertexPointers.h"; path = "../../GeomUtils/src/mesh/GuTriangleVertexPointers.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0044007fbcfb004400 /* src/hf/GuEntityReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuEntityReport.h"; path = "../../GeomUtils/src/hf/GuEntityReport.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0044687fbcfb004468 /* src/hf/GuHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.h"; path = "../../GeomUtils/src/hf/GuHeightField.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0044d07fbcfb0044d0 /* src/hf/GuHeightFieldData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldData.h"; path = "../../GeomUtils/src/hf/GuHeightFieldData.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0045387fbcfb004538 /* src/hf/GuHeightFieldUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.h"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0045a07fbcfb0045a0 /* src/pcm/GuPCMContactConvexCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.h"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0046087fbcfb004608 /* src/pcm/GuPCMContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGen.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0046707fbcfb004670 /* src/pcm/GuPCMContactGenUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenUtil.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGenUtil.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0046d87fbcfb0046d8 /* src/pcm/GuPCMContactMeshCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactMeshCallback.h"; path = "../../GeomUtils/src/pcm/GuPCMContactMeshCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0047407fbcfb004740 /* src/pcm/GuPCMShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.h"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0047a87fbcfb0047a8 /* src/pcm/GuPCMTriangleContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0048107fbcfb004810 /* src/pcm/GuPersistentContactManifold.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.h"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0048787fbcfb004878 /* src/ccd/GuCCDSweepConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.h"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb0048e07fbcfb0048e0 /* src/GuBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.cpp"; path = "../../GeomUtils/src/GuBounds.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0049487fbcfb004948 /* src/GuBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBox.cpp"; path = "../../GeomUtils/src/GuBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0049b07fbcfb0049b0 /* src/GuCCTSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCCTSweepTests.cpp"; path = "../../GeomUtils/src/GuCCTSweepTests.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb004a187fbcfb004a18 /* src/GuCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.cpp"; path = "../../GeomUtils/src/GuCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb004a807fbcfb004a80 /* src/GuGeometryQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryQuery.cpp"; path = "../../GeomUtils/src/GuGeometryQuery.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb004ae87fbcfb004ae8 /* src/GuGeometryUnion.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.cpp"; path = "../../GeomUtils/src/GuGeometryUnion.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb004b507fbcfb004b50 /* src/GuInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.cpp"; path = "../../GeomUtils/src/GuInternal.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb004bb87fbcfb004bb8 /* src/GuMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.cpp"; path = "../../GeomUtils/src/GuMTD.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb004c207fbcfb004c20 /* src/GuMeshFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.cpp"; path = "../../GeomUtils/src/GuMeshFactory.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb004c887fbcfb004c88 /* src/GuMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMetaData.cpp"; path = "../../GeomUtils/src/GuMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb004cf07fbcfb004cf0 /* src/GuOverlapTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.cpp"; path = "../../GeomUtils/src/GuOverlapTests.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb004d587fbcfb004d58 /* src/GuRaycastTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuRaycastTests.cpp"; path = "../../GeomUtils/src/GuRaycastTests.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb004dc07fbcfb004dc0 /* src/GuSerialize.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.cpp"; path = "../../GeomUtils/src/GuSerialize.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb004e287fbcfb004e28 /* src/GuSweepMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.cpp"; path = "../../GeomUtils/src/GuSweepMTD.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb004e907fbcfb004e90 /* src/GuSweepSharedTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.cpp"; path = "../../GeomUtils/src/GuSweepSharedTests.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb004ef87fbcfb004ef8 /* src/GuSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.cpp"; path = "../../GeomUtils/src/GuSweepTests.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb004f607fbcfb004f60 /* src/contact/GuContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactBoxBox.cpp"; path = "../../GeomUtils/src/contact/GuContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb004fc87fbcfb004fc8 /* src/contact/GuContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleBox.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0050307fbcfb005030 /* src/contact/GuContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0050987fbcfb005098 /* src/contact/GuContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0051007fbcfb005100 /* src/contact/GuContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0051687fbcfb005168 /* src/contact/GuContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0051d07fbcfb0051d0 /* src/contact/GuContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0052387fbcfb005238 /* src/contact/GuContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneBox.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0052a07fbcfb0052a0 /* src/contact/GuContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0053087fbcfb005308 /* src/contact/GuContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0053707fbcfb005370 /* src/contact/GuContactPolygonPolygon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.cpp"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0053d87fbcfb0053d8 /* src/contact/GuContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereBox.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0054407fbcfb005440 /* src/contact/GuContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0054a87fbcfb0054a8 /* src/contact/GuContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0055107fbcfb005510 /* src/contact/GuContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSpherePlane.cpp"; path = "../../GeomUtils/src/contact/GuContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0055787fbcfb005578 /* src/contact/GuContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereSphere.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0055e07fbcfb0055e0 /* src/contact/GuFeatureCode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.cpp"; path = "../../GeomUtils/src/contact/GuFeatureCode.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0056487fbcfb005648 /* src/contact/GuLegacyContactBoxHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactBoxHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactBoxHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0056b07fbcfb0056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0057187fbcfb005718 /* src/contact/GuLegacyContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactConvexHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0057807fbcfb005780 /* src/contact/GuLegacyContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactSphereHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0057e87fbcfb0057e8 /* src/common/GuBarycentricCoordinates.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.cpp"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0058507fbcfb005850 /* src/common/GuSeparatingAxes.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.cpp"; path = "../../GeomUtils/src/common/GuSeparatingAxes.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0058b87fbcfb0058b8 /* src/convex/GuBigConvexData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.cpp"; path = "../../GeomUtils/src/convex/GuBigConvexData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0059207fbcfb005920 /* src/convex/GuConvexHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.cpp"; path = "../../GeomUtils/src/convex/GuConvexHelper.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0059887fbcfb005988 /* src/convex/GuConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.cpp"; path = "../../GeomUtils/src/convex/GuConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0059f07fbcfb0059f0 /* src/convex/GuConvexSupportTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.cpp"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb005a587fbcfb005a58 /* src/convex/GuConvexUtilsInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.cpp"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb005ac07fbcfb005ac0 /* src/convex/GuHillClimbing.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.cpp"; path = "../../GeomUtils/src/convex/GuHillClimbing.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb005b287fbcfb005b28 /* src/convex/GuShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.cpp"; path = "../../GeomUtils/src/convex/GuShapeConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb005b907fbcfb005b90 /* src/distance/GuDistancePointBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb005bf87fbcfb005bf8 /* src/distance/GuDistancePointTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb005c607fbcfb005c60 /* src/distance/GuDistanceSegmentBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentBox.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb005cc87fbcfb005cc8 /* src/distance/GuDistanceSegmentSegment.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegment.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegment.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb005d307fbcfb005d30 /* src/distance/GuDistanceSegmentTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb005d987fbcfb005d98 /* src/sweep/GuSweepBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb005e007fbcfb005e00 /* src/sweep/GuSweepBoxSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb005e687fbcfb005e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxTriangle_FeatureBased.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxTriangle_FeatureBased.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb005ed07fbcfb005ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxTriangle_SAT.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxTriangle_SAT.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb005f387fbcfb005f38 /* src/sweep/GuSweepCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb005fa07fbcfb005fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0060087fbcfb006008 /* src/sweep/GuSweepCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0060707fbcfb006070 /* src/sweep/GuSweepSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0060d87fbcfb0060d8 /* src/sweep/GuSweepSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0061407fbcfb006140 /* src/sweep/GuSweepSphereTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0061a87fbcfb0061a8 /* src/sweep/GuSweepTriangleUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.cpp"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0062107fbcfb006210 /* src/gjk/GuEPA.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.cpp"; path = "../../GeomUtils/src/gjk/GuEPA.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0062787fbcfb006278 /* src/gjk/GuGJKSimplex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.cpp"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0062e07fbcfb0062e0 /* src/gjk/GuGJKTest.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.cpp"; path = "../../GeomUtils/src/gjk/GuGJKTest.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0063487fbcfb006348 /* src/intersection/GuIntersectionBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionBoxBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0063b07fbcfb0063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0064187fbcfb006418 /* src/intersection/GuIntersectionEdgeEdge.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0064807fbcfb006480 /* src/intersection/GuIntersectionRayBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0064e87fbcfb0064e8 /* src/intersection/GuIntersectionRayCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0065507fbcfb006550 /* src/intersection/GuIntersectionRaySphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0065b87fbcfb0065b8 /* src/intersection/GuIntersectionSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0066207fbcfb006620 /* src/intersection/GuIntersectionTriangleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionTriangleBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionTriangleBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0066887fbcfb006688 /* src/mesh/GuBV32.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.cpp"; path = "../../GeomUtils/src/mesh/GuBV32.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0066f07fbcfb0066f0 /* src/mesh/GuBV32Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV32Build.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0067587fbcfb006758 /* src/mesh/GuBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.cpp"; path = "../../GeomUtils/src/mesh/GuBV4.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0067c07fbcfb0067c0 /* src/mesh/GuBV4Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV4Build.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0068287fbcfb006828 /* src/mesh/GuBV4_AABBSweep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_AABBSweep.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_AABBSweep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0068907fbcfb006890 /* src/mesh/GuBV4_BoxOverlap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxOverlap.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_BoxOverlap.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0068f87fbcfb0068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_CapsuleSweep.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_CapsuleSweep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0069607fbcfb006960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_CapsuleSweepAA.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_CapsuleSweepAA.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0069c87fbcfb0069c8 /* src/mesh/GuBV4_OBBSweep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_OBBSweep.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_OBBSweep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb006a307fbcfb006a30 /* src/mesh/GuBV4_Raycast.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Raycast.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_Raycast.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb006a987fbcfb006a98 /* src/mesh/GuBV4_SphereOverlap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_SphereOverlap.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_SphereOverlap.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb006b007fbcfb006b00 /* src/mesh/GuBV4_SphereSweep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_SphereSweep.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_SphereSweep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb006b687fbcfb006b68 /* src/mesh/GuMeshQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshQuery.cpp"; path = "../../GeomUtils/src/mesh/GuMeshQuery.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb006bd07fbcfb006bd0 /* src/mesh/GuMidphaseBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseBV4.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseBV4.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb006c387fbcfb006c38 /* src/mesh/GuMidphaseRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseRTree.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseRTree.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb006ca07fbcfb006ca0 /* src/mesh/GuOverlapTestsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuOverlapTestsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuOverlapTestsMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb006d087fbcfb006d08 /* src/mesh/GuRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.cpp"; path = "../../GeomUtils/src/mesh/GuRTree.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb006d707fbcfb006d70 /* src/mesh/GuRTreeQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTreeQueries.cpp"; path = "../../GeomUtils/src/mesh/GuRTreeQueries.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb006dd87fbcfb006dd8 /* src/mesh/GuSweepsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuSweepsMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb006e407fbcfb006e40 /* src/mesh/GuTriangleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb006ea87fbcfb006ea8 /* src/mesh/GuTriangleMeshBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb006f107fbcfb006f10 /* src/mesh/GuTriangleMeshRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb006f787fbcfb006f78 /* src/hf/GuHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.cpp"; path = "../../GeomUtils/src/hf/GuHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb006fe07fbcfb006fe0 /* src/hf/GuHeightFieldUtil.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.cpp"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0070487fbcfb007048 /* src/hf/GuOverlapTestsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuOverlapTestsHF.cpp"; path = "../../GeomUtils/src/hf/GuOverlapTestsHF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0070b07fbcfb0070b0 /* src/hf/GuSweepsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuSweepsHF.cpp"; path = "../../GeomUtils/src/hf/GuSweepsHF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0071187fbcfb007118 /* src/pcm/GuPCMContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0071807fbcfb007180 /* src/pcm/GuPCMContactBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0071e87fbcfb0071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0072507fbcfb007250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0072b87fbcfb0072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0073207fbcfb007320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0073887fbcfb007388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0073f07fbcfb0073f0 /* src/pcm/GuPCMContactConvexCommon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0074587fbcfb007458 /* src/pcm/GuPCMContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0074c07fbcfb0074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0075287fbcfb007528 /* src/pcm/GuPCMContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0075907fbcfb007590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenBoxConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0075f87fbcfb0075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0076607fbcfb007660 /* src/pcm/GuPCMContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0076c87fbcfb0076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0077307fbcfb007730 /* src/pcm/GuPCMContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0077987fbcfb007798 /* src/pcm/GuPCMContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0078007fbcfb007800 /* src/pcm/GuPCMContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0078687fbcfb007868 /* src/pcm/GuPCMContactSphereConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0078d07fbcfb0078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0079387fbcfb007938 /* src/pcm/GuPCMContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb0079a07fbcfb0079a0 /* src/pcm/GuPCMContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSpherePlane.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb007a087fbcfb007a08 /* src/pcm/GuPCMContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereSphere.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb007a707fbcfb007a70 /* src/pcm/GuPCMShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb007ad87fbcfb007ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.cpp"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb007b407fbcfb007b40 /* src/pcm/GuPersistentContactManifold.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.cpp"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb007ba87fbcfb007ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.cpp"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb007c107fbcfb007c10 /* src/ccd/GuCCDSweepPrimitives.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepPrimitives.cpp"; path = "../../GeomUtils/src/ccd/GuCCDSweepPrimitives.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb2a152c07feab2a152c0 /* PhysXCommon */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCommon"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDb380ec007feab380ec00 /* common/PxBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxBase.h"; path = "../../../Include/common/PxBase.h"; sourceTree = SOURCE_ROOT; }; + FFFDb380ec687feab380ec68 /* common/PxCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCollection.h"; path = "../../../Include/common/PxCollection.h"; sourceTree = SOURCE_ROOT; }; + FFFDb380ecd07feab380ecd0 /* common/PxCoreUtilityTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCoreUtilityTypes.h"; path = "../../../Include/common/PxCoreUtilityTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFDb380ed387feab380ed38 /* common/PxMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaData.h"; path = "../../../Include/common/PxMetaData.h"; sourceTree = SOURCE_ROOT; }; + FFFDb380eda07feab380eda0 /* common/PxMetaDataFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaDataFlags.h"; path = "../../../Include/common/PxMetaDataFlags.h"; sourceTree = SOURCE_ROOT; }; + FFFDb380ee087feab380ee08 /* common/PxPhysXCommonConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysXCommonConfig.h"; path = "../../../Include/common/PxPhysXCommonConfig.h"; sourceTree = SOURCE_ROOT; }; + FFFDb380ee707feab380ee70 /* common/PxPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysicsInsertionCallback.h"; path = "../../../Include/common/PxPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFDb380eed87feab380eed8 /* common/PxRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxRenderBuffer.h"; path = "../../../Include/common/PxRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFDb380ef407feab380ef40 /* common/PxSerialFramework.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerialFramework.h"; path = "../../../Include/common/PxSerialFramework.h"; sourceTree = SOURCE_ROOT; }; + FFFDb380efa87feab380efa8 /* common/PxSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerializer.h"; path = "../../../Include/common/PxSerializer.h"; sourceTree = SOURCE_ROOT; }; + FFFDb380f0107feab380f010 /* common/PxStringTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxStringTable.h"; path = "../../../Include/common/PxStringTable.h"; sourceTree = SOURCE_ROOT; }; + FFFDb380f0787feab380f078 /* common/PxTolerancesScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTolerancesScale.h"; path = "../../../Include/common/PxTolerancesScale.h"; sourceTree = SOURCE_ROOT; }; + FFFDb380f0e07feab380f0e0 /* common/PxTypeInfo.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTypeInfo.h"; path = "../../../Include/common/PxTypeInfo.h"; sourceTree = SOURCE_ROOT; }; + FFFDb380f1487feab380f148 /* geometry/PxBoxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxBoxGeometry.h"; path = "../../../Include/geometry/PxBoxGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFDb380f1b07feab380f1b0 /* geometry/PxCapsuleGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxCapsuleGeometry.h"; path = "../../../Include/geometry/PxCapsuleGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFDb380f2187feab380f218 /* geometry/PxConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMesh.h"; path = "../../../Include/geometry/PxConvexMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFDb380f2807feab380f280 /* geometry/PxConvexMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMeshGeometry.h"; path = "../../../Include/geometry/PxConvexMeshGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFDb380f2e87feab380f2e8 /* geometry/PxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometry.h"; path = "../../../Include/geometry/PxGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFDb380f3507feab380f350 /* geometry/PxGeometryHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryHelpers.h"; path = "../../../Include/geometry/PxGeometryHelpers.h"; sourceTree = SOURCE_ROOT; }; + FFFDb380f3b87feab380f3b8 /* geometry/PxGeometryQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryQuery.h"; path = "../../../Include/geometry/PxGeometryQuery.h"; sourceTree = SOURCE_ROOT; }; + FFFDb380f4207feab380f420 /* geometry/PxHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightField.h"; path = "../../../Include/geometry/PxHeightField.h"; sourceTree = SOURCE_ROOT; }; + FFFDb380f4887feab380f488 /* geometry/PxHeightFieldDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldDesc.h"; path = "../../../Include/geometry/PxHeightFieldDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFDb380f4f07feab380f4f0 /* geometry/PxHeightFieldFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldFlag.h"; path = "../../../Include/geometry/PxHeightFieldFlag.h"; sourceTree = SOURCE_ROOT; }; + FFFDb380f5587feab380f558 /* geometry/PxHeightFieldGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldGeometry.h"; path = "../../../Include/geometry/PxHeightFieldGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFDb380f5c07feab380f5c0 /* geometry/PxHeightFieldSample.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldSample.h"; path = "../../../Include/geometry/PxHeightFieldSample.h"; sourceTree = SOURCE_ROOT; }; + FFFDb380f6287feab380f628 /* geometry/PxMeshQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshQuery.h"; path = "../../../Include/geometry/PxMeshQuery.h"; sourceTree = SOURCE_ROOT; }; + FFFDb380f6907feab380f690 /* geometry/PxMeshScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshScale.h"; path = "../../../Include/geometry/PxMeshScale.h"; sourceTree = SOURCE_ROOT; }; + FFFDb380f6f87feab380f6f8 /* geometry/PxPlaneGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxPlaneGeometry.h"; path = "../../../Include/geometry/PxPlaneGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFDb380f7607feab380f760 /* geometry/PxSimpleTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSimpleTriangleMesh.h"; path = "../../../Include/geometry/PxSimpleTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFDb380f7c87feab380f7c8 /* geometry/PxSphereGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSphereGeometry.h"; path = "../../../Include/geometry/PxSphereGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFDb380f8307feab380f830 /* geometry/PxTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangle.h"; path = "../../../Include/geometry/PxTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFDb380f8987feab380f898 /* geometry/PxTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMesh.h"; path = "../../../Include/geometry/PxTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFDb380f9007feab380f900 /* geometry/PxTriangleMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMeshGeometry.h"; path = "../../../Include/geometry/PxTriangleMeshGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31766007feab3176600 /* src/CmBoxPruning.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.cpp"; path = "../../Common/src/CmBoxPruning.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31766687feab3176668 /* src/CmCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.cpp"; path = "../../Common/src/CmCollection.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31766d07feab31766d0 /* src/CmMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMathUtils.cpp"; path = "../../Common/src/CmMathUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31767387feab3176738 /* src/CmPtrTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.cpp"; path = "../../Common/src/CmPtrTable.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31767a07feab31767a0 /* src/CmRadixSort.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.cpp"; path = "../../Common/src/CmRadixSort.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31768087feab3176808 /* src/CmRadixSortBuffered.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.cpp"; path = "../../Common/src/CmRadixSortBuffered.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31768707feab3176870 /* src/CmRenderOutput.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.cpp"; path = "../../Common/src/CmRenderOutput.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31768d87feab31768d8 /* src/CmVisualization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.cpp"; path = "../../Common/src/CmVisualization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31769407feab3176940 /* src/CmBitMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBitMap.h"; path = "../../Common/src/CmBitMap.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31769a87feab31769a8 /* src/CmBoxPruning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.h"; path = "../../Common/src/CmBoxPruning.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3176a107feab3176a10 /* src/CmCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.h"; path = "../../Common/src/CmCollection.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3176a787feab3176a78 /* src/CmConeLimitHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmConeLimitHelper.h"; path = "../../Common/src/CmConeLimitHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3176ae07feab3176ae0 /* src/CmFlushPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmFlushPool.h"; path = "../../Common/src/CmFlushPool.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3176b487feab3176b48 /* src/CmIDPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIDPool.h"; path = "../../Common/src/CmIDPool.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3176bb07feab3176bb0 /* src/CmIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIO.h"; path = "../../Common/src/CmIO.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3176c187feab3176c18 /* src/CmMatrix34.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMatrix34.h"; path = "../../Common/src/CmMatrix34.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3176c807feab3176c80 /* src/CmPhysXCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPhysXCommon.h"; path = "../../Common/src/CmPhysXCommon.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3176ce87feab3176ce8 /* src/CmPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPool.h"; path = "../../Common/src/CmPool.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3176d507feab3176d50 /* src/CmPreallocatingPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPreallocatingPool.h"; path = "../../Common/src/CmPreallocatingPool.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3176db87feab3176db8 /* src/CmPriorityQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPriorityQueue.h"; path = "../../Common/src/CmPriorityQueue.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3176e207feab3176e20 /* src/CmPtrTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.h"; path = "../../Common/src/CmPtrTable.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3176e887feab3176e88 /* src/CmQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmQueue.h"; path = "../../Common/src/CmQueue.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3176ef07feab3176ef0 /* src/CmRadixSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.h"; path = "../../Common/src/CmRadixSort.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3176f587feab3176f58 /* src/CmRadixSortBuffered.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.h"; path = "../../Common/src/CmRadixSortBuffered.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3176fc07feab3176fc0 /* src/CmReaderWriterLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmReaderWriterLock.h"; path = "../../Common/src/CmReaderWriterLock.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31770287feab3177028 /* src/CmRefCountable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRefCountable.h"; path = "../../Common/src/CmRefCountable.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31770907feab3177090 /* src/CmRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderBuffer.h"; path = "../../Common/src/CmRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31770f87feab31770f8 /* src/CmRenderOutput.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.h"; path = "../../Common/src/CmRenderOutput.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31771607feab3177160 /* src/CmScaling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmScaling.h"; path = "../../Common/src/CmScaling.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31771c87feab31771c8 /* src/CmSpatialVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmSpatialVector.h"; path = "../../Common/src/CmSpatialVector.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31772307feab3177230 /* src/CmTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTask.h"; path = "../../Common/src/CmTask.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31772987feab3177298 /* src/CmTaskPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTaskPool.h"; path = "../../Common/src/CmTaskPool.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31773007feab3177300 /* src/CmTmpMem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTmpMem.h"; path = "../../Common/src/CmTmpMem.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31773687feab3177368 /* src/CmTransformUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTransformUtils.h"; path = "../../Common/src/CmTransformUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31773d07feab31773d0 /* src/CmUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmUtils.h"; path = "../../Common/src/CmUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31774387feab3177438 /* src/CmVisualization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.h"; path = "../../Common/src/CmVisualization.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38010007feab3801000 /* headers/GuAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuAxes.h"; path = "../../GeomUtils/headers/GuAxes.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38010687feab3801068 /* headers/GuBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuBox.h"; path = "../../GeomUtils/headers/GuBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38010d07feab38010d0 /* headers/GuDistanceSegmentBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentBox.h"; path = "../../GeomUtils/headers/GuDistanceSegmentBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38011387feab3801138 /* headers/GuDistanceSegmentSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentSegment.h"; path = "../../GeomUtils/headers/GuDistanceSegmentSegment.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38011a07feab38011a0 /* headers/GuIntersectionBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionBoxBox.h"; path = "../../GeomUtils/headers/GuIntersectionBoxBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38012087feab3801208 /* headers/GuIntersectionTriangleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionTriangleBox.h"; path = "../../GeomUtils/headers/GuIntersectionTriangleBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38012707feab3801270 /* headers/GuRaycastTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuRaycastTests.h"; path = "../../GeomUtils/headers/GuRaycastTests.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38012d87feab38012d8 /* headers/GuSIMDHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSIMDHelpers.h"; path = "../../GeomUtils/headers/GuSIMDHelpers.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38013407feab3801340 /* headers/GuSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSegment.h"; path = "../../GeomUtils/headers/GuSegment.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38013a87feab38013a8 /* ../../Include/GeomUtils */= { isa = PBXFileReference; fileEncoding = 4; name = "../../Include/GeomUtils"; path = "../../../Include/GeomUtils"; sourceTree = SOURCE_ROOT; }; + FFFDb38014107feab3801410 /* src/GuBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.h"; path = "../../GeomUtils/src/GuBounds.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38014787feab3801478 /* src/GuCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.h"; path = "../../GeomUtils/src/GuCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38014e07feab38014e0 /* src/GuCenterExtents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCenterExtents.h"; path = "../../GeomUtils/src/GuCenterExtents.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38015487feab3801548 /* src/GuGeometryUnion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.h"; path = "../../GeomUtils/src/GuGeometryUnion.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38015b07feab38015b0 /* src/GuInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.h"; path = "../../GeomUtils/src/GuInternal.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38016187feab3801618 /* src/GuMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.h"; path = "../../GeomUtils/src/GuMTD.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38016807feab3801680 /* src/GuMeshFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.h"; path = "../../GeomUtils/src/GuMeshFactory.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38016e87feab38016e8 /* src/GuOverlapTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.h"; path = "../../GeomUtils/src/GuOverlapTests.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38017507feab3801750 /* src/GuSerialize.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.h"; path = "../../GeomUtils/src/GuSerialize.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38017b87feab38017b8 /* src/GuSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSphere.h"; path = "../../GeomUtils/src/GuSphere.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38018207feab3801820 /* src/GuSweepMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.h"; path = "../../GeomUtils/src/GuSweepMTD.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38018887feab3801888 /* src/GuSweepSharedTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.h"; path = "../../GeomUtils/src/GuSweepSharedTests.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38018f07feab38018f0 /* src/GuSweepTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.h"; path = "../../GeomUtils/src/GuSweepTests.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38019587feab3801958 /* src/contact/GuContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactMethodImpl.h"; path = "../../GeomUtils/src/contact/GuContactMethodImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38019c07feab38019c0 /* src/contact/GuContactPolygonPolygon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.h"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3801a287feab3801a28 /* src/contact/GuFeatureCode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.h"; path = "../../GeomUtils/src/contact/GuFeatureCode.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3801a907feab3801a90 /* src/contact/GuLegacyTraceLineCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyTraceLineCallback.h"; path = "../../GeomUtils/src/contact/GuLegacyTraceLineCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3801af87feab3801af8 /* src/common/GuBarycentricCoordinates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.h"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3801b607feab3801b60 /* src/common/GuBoxConversion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBoxConversion.h"; path = "../../GeomUtils/src/common/GuBoxConversion.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3801bc87feab3801bc8 /* src/common/GuEdgeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeCache.h"; path = "../../GeomUtils/src/common/GuEdgeCache.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3801c307feab3801c30 /* src/common/GuEdgeListData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeListData.h"; path = "../../GeomUtils/src/common/GuEdgeListData.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3801c987feab3801c98 /* src/common/GuSeparatingAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.h"; path = "../../GeomUtils/src/common/GuSeparatingAxes.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3801d007feab3801d00 /* src/convex/GuBigConvexData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.h"; path = "../../GeomUtils/src/convex/GuBigConvexData.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3801d687feab3801d68 /* src/convex/GuBigConvexData2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData2.h"; path = "../../GeomUtils/src/convex/GuBigConvexData2.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3801dd07feab3801dd0 /* src/convex/GuConvexEdgeFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexEdgeFlags.h"; path = "../../GeomUtils/src/convex/GuConvexEdgeFlags.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3801e387feab3801e38 /* src/convex/GuConvexHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.h"; path = "../../GeomUtils/src/convex/GuConvexHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3801ea07feab3801ea0 /* src/convex/GuConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.h"; path = "../../GeomUtils/src/convex/GuConvexMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3801f087feab3801f08 /* src/convex/GuConvexMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMeshData.h"; path = "../../GeomUtils/src/convex/GuConvexMeshData.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3801f707feab3801f70 /* src/convex/GuConvexSupportTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.h"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3801fd87feab3801fd8 /* src/convex/GuConvexUtilsInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.h"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38020407feab3802040 /* src/convex/GuCubeIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuCubeIndex.h"; path = "../../GeomUtils/src/convex/GuCubeIndex.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38020a87feab38020a8 /* src/convex/GuHillClimbing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.h"; path = "../../GeomUtils/src/convex/GuHillClimbing.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38021107feab3802110 /* src/convex/GuShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.h"; path = "../../GeomUtils/src/convex/GuShapeConvex.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38021787feab3802178 /* src/distance/GuDistancePointBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.h"; path = "../../GeomUtils/src/distance/GuDistancePointBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38021e07feab38021e0 /* src/distance/GuDistancePointSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointSegment.h"; path = "../../GeomUtils/src/distance/GuDistancePointSegment.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38022487feab3802248 /* src/distance/GuDistancePointTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38022b07feab38022b0 /* src/distance/GuDistancePointTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangleSIMD.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38023187feab3802318 /* src/distance/GuDistanceSegmentSegmentSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegmentSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegmentSIMD.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38023807feab3802380 /* src/distance/GuDistanceSegmentTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38023e87feab38023e8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangleSIMD.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38024507feab3802450 /* src/sweep/GuSweepBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38024b87feab38024b8 /* src/sweep/GuSweepBoxSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38025207feab3802520 /* 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; }; + FFFDb38025887feab3802588 /* 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; }; + FFFDb38025f07feab38025f0 /* src/sweep/GuSweepCapsuleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38026587feab3802658 /* src/sweep/GuSweepCapsuleCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38026c07feab38026c0 /* src/sweep/GuSweepCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38027287feab3802728 /* src/sweep/GuSweepSphereCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38027907feab3802790 /* src/sweep/GuSweepSphereSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38027f87feab38027f8 /* src/sweep/GuSweepSphereTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38028607feab3802860 /* src/sweep/GuSweepTriangleUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.h"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38028c87feab38028c8 /* src/gjk/GuEPA.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.h"; path = "../../GeomUtils/src/gjk/GuEPA.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38029307feab3802930 /* src/gjk/GuEPAFacet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPAFacet.h"; path = "../../GeomUtils/src/gjk/GuEPAFacet.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38029987feab3802998 /* src/gjk/GuGJK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJK.h"; path = "../../GeomUtils/src/gjk/GuGJK.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3802a007feab3802a00 /* src/gjk/GuGJKPenetration.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKPenetration.h"; path = "../../GeomUtils/src/gjk/GuGJKPenetration.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3802a687feab3802a68 /* src/gjk/GuGJKRaycast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKRaycast.h"; path = "../../GeomUtils/src/gjk/GuGJKRaycast.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3802ad07feab3802ad0 /* src/gjk/GuGJKSimplex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.h"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3802b387feab3802b38 /* src/gjk/GuGJKTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.h"; path = "../../GeomUtils/src/gjk/GuGJKTest.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3802ba07feab3802ba0 /* src/gjk/GuGJKType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKType.h"; path = "../../GeomUtils/src/gjk/GuGJKType.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3802c087feab3802c08 /* src/gjk/GuGJKUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKUtil.h"; path = "../../GeomUtils/src/gjk/GuGJKUtil.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3802c707feab3802c70 /* src/gjk/GuVecBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecBox.h"; path = "../../GeomUtils/src/gjk/GuVecBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3802cd87feab3802cd8 /* src/gjk/GuVecCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecCapsule.h"; path = "../../GeomUtils/src/gjk/GuVecCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3802d407feab3802d40 /* src/gjk/GuVecConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvex.h"; path = "../../GeomUtils/src/gjk/GuVecConvex.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3802da87feab3802da8 /* src/gjk/GuVecConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHull.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3802e107feab3802e10 /* src/gjk/GuVecConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3802e787feab3802e78 /* src/gjk/GuVecPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecPlane.h"; path = "../../GeomUtils/src/gjk/GuVecPlane.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3802ee07feab3802ee0 /* src/gjk/GuVecShrunkBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkBox.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3802f487feab3802f48 /* src/gjk/GuVecShrunkConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHull.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3802fb07feab3802fb0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38030187feab3803018 /* src/gjk/GuVecSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecSphere.h"; path = "../../GeomUtils/src/gjk/GuVecSphere.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38030807feab3803080 /* src/gjk/GuVecTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecTriangle.h"; path = "../../GeomUtils/src/gjk/GuVecTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38030e87feab38030e8 /* src/intersection/GuIntersectionCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38031507feab3803150 /* src/intersection/GuIntersectionEdgeEdge.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.h"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38031b87feab38031b8 /* src/intersection/GuIntersectionRay.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRay.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRay.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38032207feab3803220 /* src/intersection/GuIntersectionRayBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38032887feab3803288 /* src/intersection/GuIntersectionRayBoxSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBoxSIMD.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBoxSIMD.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38032f07feab38032f0 /* src/intersection/GuIntersectionRayCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38033587feab3803358 /* src/intersection/GuIntersectionRayPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayPlane.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayPlane.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38033c07feab38033c0 /* src/intersection/GuIntersectionRaySphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38034287feab3803428 /* src/intersection/GuIntersectionRayTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38034907feab3803490 /* src/intersection/GuIntersectionSphereBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38034f87feab38034f8 /* src/mesh/GuBV32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.h"; path = "../../GeomUtils/src/mesh/GuBV32.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38035607feab3803560 /* src/mesh/GuBV32Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.h"; path = "../../GeomUtils/src/mesh/GuBV32Build.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38035c87feab38035c8 /* src/mesh/GuBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.h"; path = "../../GeomUtils/src/mesh/GuBV4.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38036307feab3803630 /* src/mesh/GuBV4Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.h"; path = "../../GeomUtils/src/mesh/GuBV4Build.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38036987feab3803698 /* src/mesh/GuBV4Settings.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Settings.h"; path = "../../GeomUtils/src/mesh/GuBV4Settings.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38037007feab3803700 /* 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; }; + FFFDb38037687feab3803768 /* 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; }; + FFFDb38037d07feab38037d0 /* 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; }; + FFFDb38038387feab3803838 /* 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; }; + FFFDb38038a07feab38038a0 /* 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; }; + FFFDb38039087feab3803908 /* 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; }; + FFFDb38039707feab3803970 /* 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; }; + FFFDb38039d87feab38039d8 /* 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; }; + FFFDb3803a407feab3803a40 /* 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; }; + FFFDb3803aa87feab3803aa8 /* 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; }; + FFFDb3803b107feab3803b10 /* 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; }; + FFFDb3803b787feab3803b78 /* 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; }; + FFFDb3803be07feab3803be0 /* 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; }; + FFFDb3803c487feab3803c48 /* 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; }; + FFFDb3803cb07feab3803cb0 /* 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; }; + FFFDb3803d187feab3803d18 /* 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; }; + FFFDb3803d807feab3803d80 /* 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; }; + FFFDb3803de87feab3803de8 /* 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; }; + FFFDb3803e507feab3803e50 /* 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; }; + FFFDb3803eb87feab3803eb8 /* 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; }; + FFFDb3803f207feab3803f20 /* src/mesh/GuBVConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBVConstants.h"; path = "../../GeomUtils/src/mesh/GuBVConstants.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3803f887feab3803f88 /* src/mesh/GuMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshData.h"; path = "../../GeomUtils/src/mesh/GuMeshData.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3803ff07feab3803ff0 /* src/mesh/GuMidphaseInterface.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseInterface.h"; path = "../../GeomUtils/src/mesh/GuMidphaseInterface.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38040587feab3804058 /* src/mesh/GuRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.h"; path = "../../GeomUtils/src/mesh/GuRTree.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38040c07feab38040c0 /* src/mesh/GuSweepConvexTri.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepConvexTri.h"; path = "../../GeomUtils/src/mesh/GuSweepConvexTri.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38041287feab3804128 /* src/mesh/GuSweepMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepMesh.h"; path = "../../GeomUtils/src/mesh/GuSweepMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38041907feab3804190 /* src/mesh/GuTriangle32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangle32.h"; path = "../../GeomUtils/src/mesh/GuTriangle32.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38041f87feab38041f8 /* src/mesh/GuTriangleCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleCache.h"; path = "../../GeomUtils/src/mesh/GuTriangleCache.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38042607feab3804260 /* src/mesh/GuTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.h"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38042c87feab38042c8 /* src/mesh/GuTriangleMeshBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38043307feab3804330 /* src/mesh/GuTriangleMeshRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38043987feab3804398 /* src/mesh/GuTriangleVertexPointers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleVertexPointers.h"; path = "../../GeomUtils/src/mesh/GuTriangleVertexPointers.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38044007feab3804400 /* src/hf/GuEntityReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuEntityReport.h"; path = "../../GeomUtils/src/hf/GuEntityReport.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38044687feab3804468 /* src/hf/GuHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.h"; path = "../../GeomUtils/src/hf/GuHeightField.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38044d07feab38044d0 /* src/hf/GuHeightFieldData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldData.h"; path = "../../GeomUtils/src/hf/GuHeightFieldData.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38045387feab3804538 /* src/hf/GuHeightFieldUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.h"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38045a07feab38045a0 /* src/pcm/GuPCMContactConvexCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.h"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38046087feab3804608 /* src/pcm/GuPCMContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGen.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38046707feab3804670 /* src/pcm/GuPCMContactGenUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenUtil.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGenUtil.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38046d87feab38046d8 /* src/pcm/GuPCMContactMeshCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactMeshCallback.h"; path = "../../GeomUtils/src/pcm/GuPCMContactMeshCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38047407feab3804740 /* src/pcm/GuPCMShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.h"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38047a87feab38047a8 /* src/pcm/GuPCMTriangleContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38048107feab3804810 /* src/pcm/GuPersistentContactManifold.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.h"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38048787feab3804878 /* src/ccd/GuCCDSweepConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.h"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38048e07feab38048e0 /* src/GuBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.cpp"; path = "../../GeomUtils/src/GuBounds.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38049487feab3804948 /* src/GuBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBox.cpp"; path = "../../GeomUtils/src/GuBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38049b07feab38049b0 /* src/GuCCTSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCCTSweepTests.cpp"; path = "../../GeomUtils/src/GuCCTSweepTests.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3804a187feab3804a18 /* src/GuCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.cpp"; path = "../../GeomUtils/src/GuCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3804a807feab3804a80 /* src/GuGeometryQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryQuery.cpp"; path = "../../GeomUtils/src/GuGeometryQuery.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3804ae87feab3804ae8 /* src/GuGeometryUnion.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.cpp"; path = "../../GeomUtils/src/GuGeometryUnion.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3804b507feab3804b50 /* src/GuInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.cpp"; path = "../../GeomUtils/src/GuInternal.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3804bb87feab3804bb8 /* src/GuMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.cpp"; path = "../../GeomUtils/src/GuMTD.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3804c207feab3804c20 /* src/GuMeshFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.cpp"; path = "../../GeomUtils/src/GuMeshFactory.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3804c887feab3804c88 /* src/GuMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMetaData.cpp"; path = "../../GeomUtils/src/GuMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3804cf07feab3804cf0 /* src/GuOverlapTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.cpp"; path = "../../GeomUtils/src/GuOverlapTests.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3804d587feab3804d58 /* src/GuRaycastTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuRaycastTests.cpp"; path = "../../GeomUtils/src/GuRaycastTests.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3804dc07feab3804dc0 /* src/GuSerialize.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.cpp"; path = "../../GeomUtils/src/GuSerialize.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3804e287feab3804e28 /* src/GuSweepMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.cpp"; path = "../../GeomUtils/src/GuSweepMTD.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3804e907feab3804e90 /* src/GuSweepSharedTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.cpp"; path = "../../GeomUtils/src/GuSweepSharedTests.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3804ef87feab3804ef8 /* src/GuSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.cpp"; path = "../../GeomUtils/src/GuSweepTests.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3804f607feab3804f60 /* src/contact/GuContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactBoxBox.cpp"; path = "../../GeomUtils/src/contact/GuContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3804fc87feab3804fc8 /* src/contact/GuContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleBox.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38050307feab3805030 /* src/contact/GuContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38050987feab3805098 /* src/contact/GuContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38051007feab3805100 /* src/contact/GuContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38051687feab3805168 /* src/contact/GuContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38051d07feab38051d0 /* src/contact/GuContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38052387feab3805238 /* src/contact/GuContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneBox.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38052a07feab38052a0 /* src/contact/GuContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38053087feab3805308 /* src/contact/GuContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38053707feab3805370 /* src/contact/GuContactPolygonPolygon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.cpp"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38053d87feab38053d8 /* src/contact/GuContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereBox.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38054407feab3805440 /* src/contact/GuContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38054a87feab38054a8 /* src/contact/GuContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38055107feab3805510 /* src/contact/GuContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSpherePlane.cpp"; path = "../../GeomUtils/src/contact/GuContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38055787feab3805578 /* src/contact/GuContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereSphere.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38055e07feab38055e0 /* src/contact/GuFeatureCode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.cpp"; path = "../../GeomUtils/src/contact/GuFeatureCode.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38056487feab3805648 /* src/contact/GuLegacyContactBoxHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactBoxHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactBoxHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38056b07feab38056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38057187feab3805718 /* src/contact/GuLegacyContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactConvexHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38057807feab3805780 /* src/contact/GuLegacyContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactSphereHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38057e87feab38057e8 /* src/common/GuBarycentricCoordinates.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.cpp"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38058507feab3805850 /* src/common/GuSeparatingAxes.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.cpp"; path = "../../GeomUtils/src/common/GuSeparatingAxes.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38058b87feab38058b8 /* src/convex/GuBigConvexData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.cpp"; path = "../../GeomUtils/src/convex/GuBigConvexData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38059207feab3805920 /* src/convex/GuConvexHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.cpp"; path = "../../GeomUtils/src/convex/GuConvexHelper.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38059887feab3805988 /* src/convex/GuConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.cpp"; path = "../../GeomUtils/src/convex/GuConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38059f07feab38059f0 /* src/convex/GuConvexSupportTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.cpp"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3805a587feab3805a58 /* src/convex/GuConvexUtilsInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.cpp"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3805ac07feab3805ac0 /* src/convex/GuHillClimbing.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.cpp"; path = "../../GeomUtils/src/convex/GuHillClimbing.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3805b287feab3805b28 /* src/convex/GuShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.cpp"; path = "../../GeomUtils/src/convex/GuShapeConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3805b907feab3805b90 /* src/distance/GuDistancePointBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3805bf87feab3805bf8 /* src/distance/GuDistancePointTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3805c607feab3805c60 /* src/distance/GuDistanceSegmentBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentBox.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3805cc87feab3805cc8 /* src/distance/GuDistanceSegmentSegment.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegment.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegment.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3805d307feab3805d30 /* src/distance/GuDistanceSegmentTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3805d987feab3805d98 /* src/sweep/GuSweepBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3805e007feab3805e00 /* src/sweep/GuSweepBoxSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3805e687feab3805e68 /* 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; }; + FFFDb3805ed07feab3805ed0 /* 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; }; + FFFDb3805f387feab3805f38 /* src/sweep/GuSweepCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3805fa07feab3805fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38060087feab3806008 /* src/sweep/GuSweepCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38060707feab3806070 /* src/sweep/GuSweepSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38060d87feab38060d8 /* src/sweep/GuSweepSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38061407feab3806140 /* src/sweep/GuSweepSphereTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38061a87feab38061a8 /* src/sweep/GuSweepTriangleUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.cpp"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38062107feab3806210 /* src/gjk/GuEPA.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.cpp"; path = "../../GeomUtils/src/gjk/GuEPA.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38062787feab3806278 /* src/gjk/GuGJKSimplex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.cpp"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38062e07feab38062e0 /* src/gjk/GuGJKTest.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.cpp"; path = "../../GeomUtils/src/gjk/GuGJKTest.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38063487feab3806348 /* src/intersection/GuIntersectionBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionBoxBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38063b07feab38063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38064187feab3806418 /* src/intersection/GuIntersectionEdgeEdge.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38064807feab3806480 /* src/intersection/GuIntersectionRayBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38064e87feab38064e8 /* src/intersection/GuIntersectionRayCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38065507feab3806550 /* src/intersection/GuIntersectionRaySphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38065b87feab38065b8 /* src/intersection/GuIntersectionSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38066207feab3806620 /* src/intersection/GuIntersectionTriangleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionTriangleBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionTriangleBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38066887feab3806688 /* src/mesh/GuBV32.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.cpp"; path = "../../GeomUtils/src/mesh/GuBV32.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38066f07feab38066f0 /* src/mesh/GuBV32Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV32Build.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38067587feab3806758 /* src/mesh/GuBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.cpp"; path = "../../GeomUtils/src/mesh/GuBV4.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38067c07feab38067c0 /* src/mesh/GuBV4Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV4Build.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38068287feab3806828 /* 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; }; + FFFDb38068907feab3806890 /* 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; }; + FFFDb38068f87feab38068f8 /* 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; }; + FFFDb38069607feab3806960 /* 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; }; + FFFDb38069c87feab38069c8 /* 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; }; + FFFDb3806a307feab3806a30 /* 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; }; + FFFDb3806a987feab3806a98 /* 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; }; + FFFDb3806b007feab3806b00 /* 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; }; + FFFDb3806b687feab3806b68 /* src/mesh/GuMeshQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshQuery.cpp"; path = "../../GeomUtils/src/mesh/GuMeshQuery.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3806bd07feab3806bd0 /* src/mesh/GuMidphaseBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseBV4.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseBV4.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3806c387feab3806c38 /* src/mesh/GuMidphaseRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseRTree.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseRTree.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3806ca07feab3806ca0 /* src/mesh/GuOverlapTestsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuOverlapTestsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuOverlapTestsMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3806d087feab3806d08 /* src/mesh/GuRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.cpp"; path = "../../GeomUtils/src/mesh/GuRTree.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3806d707feab3806d70 /* src/mesh/GuRTreeQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTreeQueries.cpp"; path = "../../GeomUtils/src/mesh/GuRTreeQueries.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3806dd87feab3806dd8 /* src/mesh/GuSweepsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuSweepsMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3806e407feab3806e40 /* src/mesh/GuTriangleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3806ea87feab3806ea8 /* src/mesh/GuTriangleMeshBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3806f107feab3806f10 /* src/mesh/GuTriangleMeshRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3806f787feab3806f78 /* src/hf/GuHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.cpp"; path = "../../GeomUtils/src/hf/GuHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3806fe07feab3806fe0 /* src/hf/GuHeightFieldUtil.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.cpp"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38070487feab3807048 /* src/hf/GuOverlapTestsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuOverlapTestsHF.cpp"; path = "../../GeomUtils/src/hf/GuOverlapTestsHF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38070b07feab38070b0 /* src/hf/GuSweepsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuSweepsHF.cpp"; path = "../../GeomUtils/src/hf/GuSweepsHF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38071187feab3807118 /* src/pcm/GuPCMContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38071807feab3807180 /* src/pcm/GuPCMContactBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38071e87feab38071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38072507feab3807250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38072b87feab38072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38073207feab3807320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38073887feab3807388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38073f07feab38073f0 /* src/pcm/GuPCMContactConvexCommon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38074587feab3807458 /* src/pcm/GuPCMContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38074c07feab38074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38075287feab3807528 /* src/pcm/GuPCMContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38075907feab3807590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenBoxConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38075f87feab38075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38076607feab3807660 /* src/pcm/GuPCMContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38076c87feab38076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38077307feab3807730 /* src/pcm/GuPCMContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38077987feab3807798 /* src/pcm/GuPCMContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38078007feab3807800 /* src/pcm/GuPCMContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38078687feab3807868 /* src/pcm/GuPCMContactSphereConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38078d07feab38078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38079387feab3807938 /* src/pcm/GuPCMContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38079a07feab38079a0 /* src/pcm/GuPCMContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSpherePlane.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3807a087feab3807a08 /* src/pcm/GuPCMContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereSphere.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3807a707feab3807a70 /* src/pcm/GuPCMShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3807ad87feab3807ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.cpp"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3807b407feab3807b40 /* src/pcm/GuPersistentContactManifold.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.cpp"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3807ba87feab3807ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.cpp"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3807c107feab3807c10 /* 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 */ - FFF2fa8913407fbcfa891340 /* Resources */ = { + FFF2b2a152c07feab2a152c0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFfb0013a87fbcfb0013a8, + FFFFb38013a87feab38013a8, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCfa8913407fbcfa891340 /* Frameworks */ = { + FFFCb2a152c07feab2a152c0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -1841,145 +1841,145 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8fa8913407fbcfa891340 /* Sources */ = { + FFF8b2a152c07feab2a152c0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFfa18ee007fbcfa18ee00, - FFFFfa18ee687fbcfa18ee68, - FFFFfa18eed07fbcfa18eed0, - FFFFfa18ef387fbcfa18ef38, - FFFFfa18efa07fbcfa18efa0, - FFFFfa18f0087fbcfa18f008, - FFFFfa18f0707fbcfa18f070, - FFFFfa18f0d87fbcfa18f0d8, - FFFFfb0048e07fbcfb0048e0, - FFFFfb0049487fbcfb004948, - FFFFfb0049b07fbcfb0049b0, - FFFFfb004a187fbcfb004a18, - FFFFfb004a807fbcfb004a80, - FFFFfb004ae87fbcfb004ae8, - FFFFfb004b507fbcfb004b50, - FFFFfb004bb87fbcfb004bb8, - FFFFfb004c207fbcfb004c20, - FFFFfb004c887fbcfb004c88, - FFFFfb004cf07fbcfb004cf0, - FFFFfb004d587fbcfb004d58, - FFFFfb004dc07fbcfb004dc0, - FFFFfb004e287fbcfb004e28, - FFFFfb004e907fbcfb004e90, - FFFFfb004ef87fbcfb004ef8, - FFFFfb004f607fbcfb004f60, - FFFFfb004fc87fbcfb004fc8, - FFFFfb0050307fbcfb005030, - FFFFfb0050987fbcfb005098, - FFFFfb0051007fbcfb005100, - FFFFfb0051687fbcfb005168, - FFFFfb0051d07fbcfb0051d0, - FFFFfb0052387fbcfb005238, - FFFFfb0052a07fbcfb0052a0, - FFFFfb0053087fbcfb005308, - FFFFfb0053707fbcfb005370, - FFFFfb0053d87fbcfb0053d8, - FFFFfb0054407fbcfb005440, - FFFFfb0054a87fbcfb0054a8, - FFFFfb0055107fbcfb005510, - FFFFfb0055787fbcfb005578, - FFFFfb0055e07fbcfb0055e0, - FFFFfb0056487fbcfb005648, - FFFFfb0056b07fbcfb0056b0, - FFFFfb0057187fbcfb005718, - FFFFfb0057807fbcfb005780, - FFFFfb0057e87fbcfb0057e8, - FFFFfb0058507fbcfb005850, - FFFFfb0058b87fbcfb0058b8, - FFFFfb0059207fbcfb005920, - FFFFfb0059887fbcfb005988, - FFFFfb0059f07fbcfb0059f0, - FFFFfb005a587fbcfb005a58, - FFFFfb005ac07fbcfb005ac0, - FFFFfb005b287fbcfb005b28, - FFFFfb005b907fbcfb005b90, - FFFFfb005bf87fbcfb005bf8, - FFFFfb005c607fbcfb005c60, - FFFFfb005cc87fbcfb005cc8, - FFFFfb005d307fbcfb005d30, - FFFFfb005d987fbcfb005d98, - FFFFfb005e007fbcfb005e00, - FFFFfb005e687fbcfb005e68, - FFFFfb005ed07fbcfb005ed0, - FFFFfb005f387fbcfb005f38, - FFFFfb005fa07fbcfb005fa0, - FFFFfb0060087fbcfb006008, - FFFFfb0060707fbcfb006070, - FFFFfb0060d87fbcfb0060d8, - FFFFfb0061407fbcfb006140, - FFFFfb0061a87fbcfb0061a8, - FFFFfb0062107fbcfb006210, - FFFFfb0062787fbcfb006278, - FFFFfb0062e07fbcfb0062e0, - FFFFfb0063487fbcfb006348, - FFFFfb0063b07fbcfb0063b0, - FFFFfb0064187fbcfb006418, - FFFFfb0064807fbcfb006480, - FFFFfb0064e87fbcfb0064e8, - FFFFfb0065507fbcfb006550, - FFFFfb0065b87fbcfb0065b8, - FFFFfb0066207fbcfb006620, - FFFFfb0066887fbcfb006688, - FFFFfb0066f07fbcfb0066f0, - FFFFfb0067587fbcfb006758, - FFFFfb0067c07fbcfb0067c0, - FFFFfb0068287fbcfb006828, - FFFFfb0068907fbcfb006890, - FFFFfb0068f87fbcfb0068f8, - FFFFfb0069607fbcfb006960, - FFFFfb0069c87fbcfb0069c8, - FFFFfb006a307fbcfb006a30, - FFFFfb006a987fbcfb006a98, - FFFFfb006b007fbcfb006b00, - FFFFfb006b687fbcfb006b68, - FFFFfb006bd07fbcfb006bd0, - FFFFfb006c387fbcfb006c38, - FFFFfb006ca07fbcfb006ca0, - FFFFfb006d087fbcfb006d08, - FFFFfb006d707fbcfb006d70, - FFFFfb006dd87fbcfb006dd8, - FFFFfb006e407fbcfb006e40, - FFFFfb006ea87fbcfb006ea8, - FFFFfb006f107fbcfb006f10, - FFFFfb006f787fbcfb006f78, - FFFFfb006fe07fbcfb006fe0, - FFFFfb0070487fbcfb007048, - FFFFfb0070b07fbcfb0070b0, - FFFFfb0071187fbcfb007118, - FFFFfb0071807fbcfb007180, - FFFFfb0071e87fbcfb0071e8, - FFFFfb0072507fbcfb007250, - FFFFfb0072b87fbcfb0072b8, - FFFFfb0073207fbcfb007320, - FFFFfb0073887fbcfb007388, - FFFFfb0073f07fbcfb0073f0, - FFFFfb0074587fbcfb007458, - FFFFfb0074c07fbcfb0074c0, - FFFFfb0075287fbcfb007528, - FFFFfb0075907fbcfb007590, - FFFFfb0075f87fbcfb0075f8, - FFFFfb0076607fbcfb007660, - FFFFfb0076c87fbcfb0076c8, - FFFFfb0077307fbcfb007730, - FFFFfb0077987fbcfb007798, - FFFFfb0078007fbcfb007800, - FFFFfb0078687fbcfb007868, - FFFFfb0078d07fbcfb0078d0, - FFFFfb0079387fbcfb007938, - FFFFfb0079a07fbcfb0079a0, - FFFFfb007a087fbcfb007a08, - FFFFfb007a707fbcfb007a70, - FFFFfb007ad87fbcfb007ad8, - FFFFfb007b407fbcfb007b40, - FFFFfb007ba87fbcfb007ba8, - FFFFfb007c107fbcfb007c10, + FFFFb31766007feab3176600, + FFFFb31766687feab3176668, + FFFFb31766d07feab31766d0, + FFFFb31767387feab3176738, + FFFFb31767a07feab31767a0, + FFFFb31768087feab3176808, + FFFFb31768707feab3176870, + FFFFb31768d87feab31768d8, + FFFFb38048e07feab38048e0, + FFFFb38049487feab3804948, + FFFFb38049b07feab38049b0, + FFFFb3804a187feab3804a18, + FFFFb3804a807feab3804a80, + FFFFb3804ae87feab3804ae8, + FFFFb3804b507feab3804b50, + FFFFb3804bb87feab3804bb8, + FFFFb3804c207feab3804c20, + FFFFb3804c887feab3804c88, + FFFFb3804cf07feab3804cf0, + FFFFb3804d587feab3804d58, + FFFFb3804dc07feab3804dc0, + FFFFb3804e287feab3804e28, + FFFFb3804e907feab3804e90, + FFFFb3804ef87feab3804ef8, + FFFFb3804f607feab3804f60, + FFFFb3804fc87feab3804fc8, + FFFFb38050307feab3805030, + FFFFb38050987feab3805098, + FFFFb38051007feab3805100, + FFFFb38051687feab3805168, + FFFFb38051d07feab38051d0, + FFFFb38052387feab3805238, + FFFFb38052a07feab38052a0, + FFFFb38053087feab3805308, + FFFFb38053707feab3805370, + FFFFb38053d87feab38053d8, + FFFFb38054407feab3805440, + FFFFb38054a87feab38054a8, + FFFFb38055107feab3805510, + FFFFb38055787feab3805578, + FFFFb38055e07feab38055e0, + FFFFb38056487feab3805648, + FFFFb38056b07feab38056b0, + FFFFb38057187feab3805718, + FFFFb38057807feab3805780, + FFFFb38057e87feab38057e8, + FFFFb38058507feab3805850, + FFFFb38058b87feab38058b8, + FFFFb38059207feab3805920, + FFFFb38059887feab3805988, + FFFFb38059f07feab38059f0, + FFFFb3805a587feab3805a58, + FFFFb3805ac07feab3805ac0, + FFFFb3805b287feab3805b28, + FFFFb3805b907feab3805b90, + FFFFb3805bf87feab3805bf8, + FFFFb3805c607feab3805c60, + FFFFb3805cc87feab3805cc8, + FFFFb3805d307feab3805d30, + FFFFb3805d987feab3805d98, + FFFFb3805e007feab3805e00, + FFFFb3805e687feab3805e68, + FFFFb3805ed07feab3805ed0, + FFFFb3805f387feab3805f38, + FFFFb3805fa07feab3805fa0, + FFFFb38060087feab3806008, + FFFFb38060707feab3806070, + FFFFb38060d87feab38060d8, + FFFFb38061407feab3806140, + FFFFb38061a87feab38061a8, + FFFFb38062107feab3806210, + FFFFb38062787feab3806278, + FFFFb38062e07feab38062e0, + FFFFb38063487feab3806348, + FFFFb38063b07feab38063b0, + FFFFb38064187feab3806418, + FFFFb38064807feab3806480, + FFFFb38064e87feab38064e8, + FFFFb38065507feab3806550, + FFFFb38065b87feab38065b8, + FFFFb38066207feab3806620, + FFFFb38066887feab3806688, + FFFFb38066f07feab38066f0, + FFFFb38067587feab3806758, + FFFFb38067c07feab38067c0, + FFFFb38068287feab3806828, + FFFFb38068907feab3806890, + FFFFb38068f87feab38068f8, + FFFFb38069607feab3806960, + FFFFb38069c87feab38069c8, + FFFFb3806a307feab3806a30, + FFFFb3806a987feab3806a98, + FFFFb3806b007feab3806b00, + FFFFb3806b687feab3806b68, + FFFFb3806bd07feab3806bd0, + FFFFb3806c387feab3806c38, + FFFFb3806ca07feab3806ca0, + FFFFb3806d087feab3806d08, + FFFFb3806d707feab3806d70, + FFFFb3806dd87feab3806dd8, + FFFFb3806e407feab3806e40, + FFFFb3806ea87feab3806ea8, + FFFFb3806f107feab3806f10, + FFFFb3806f787feab3806f78, + FFFFb3806fe07feab3806fe0, + FFFFb38070487feab3807048, + FFFFb38070b07feab38070b0, + FFFFb38071187feab3807118, + FFFFb38071807feab3807180, + FFFFb38071e87feab38071e8, + FFFFb38072507feab3807250, + FFFFb38072b87feab38072b8, + FFFFb38073207feab3807320, + FFFFb38073887feab3807388, + FFFFb38073f07feab38073f0, + FFFFb38074587feab3807458, + FFFFb38074c07feab38074c0, + FFFFb38075287feab3807528, + FFFFb38075907feab3807590, + FFFFb38075f87feab38075f8, + FFFFb38076607feab3807660, + FFFFb38076c87feab38076c8, + FFFFb38077307feab3807730, + FFFFb38077987feab3807798, + FFFFb38078007feab3807800, + FFFFb38078687feab3807868, + FFFFb38078d07feab38078d0, + FFFFb38079387feab3807938, + FFFFb38079a07feab38079a0, + FFFFb3807a087feab3807a08, + FFFFb3807a707feab3807a70, + FFFFb3807ad87feab3807ad8, + FFFFb3807b407feab3807b40, + FFFFb3807ba87feab3807ba8, + FFFFb3807c107feab3807c10, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1988,132 +1988,132 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF4faaf34f07fbcfaaf34f0 /* PBXTargetDependency */ = { + FFF4b2a0ee507feab2a0ee50 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAfa87f5207fbcfa87f520 /* PxFoundation */; - targetProxy = FFF5fa87f5207fbcfa87f520 /* PBXContainerItemProxy */; + target = FFFAb2a669507feab2a66950 /* PxFoundation */; + targetProxy = FFF5b2a669507feab2a66950 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PxFoundation */ - FFFFfa1819187fbcfa181918 /* src/PsAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1819187fbcfa181918 /* src/PsAllocator.cpp */; }; - FFFFfa1819807fbcfa181980 /* src/PsAssert.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1819807fbcfa181980 /* src/PsAssert.cpp */; }; - FFFFfa1819e87fbcfa1819e8 /* src/PsFoundation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1819e87fbcfa1819e8 /* src/PsFoundation.cpp */; }; - FFFFfa181a507fbcfa181a50 /* src/PsMathUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa181a507fbcfa181a50 /* src/PsMathUtils.cpp */; }; - FFFFfa181ab87fbcfa181ab8 /* src/PsString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa181ab87fbcfa181ab8 /* src/PsString.cpp */; }; - FFFFfa181b207fbcfa181b20 /* src/PsTempAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa181b207fbcfa181b20 /* src/PsTempAllocator.cpp */; }; - FFFFfa181b887fbcfa181b88 /* src/PsUtilities.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa181b887fbcfa181b88 /* src/PsUtilities.cpp */; }; - FFFFfa181bf07fbcfa181bf0 /* src/unix/PsUnixAtomic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa181bf07fbcfa181bf0 /* src/unix/PsUnixAtomic.cpp */; }; - FFFFfa181c587fbcfa181c58 /* src/unix/PsUnixCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa181c587fbcfa181c58 /* src/unix/PsUnixCpu.cpp */; }; - FFFFfa181cc07fbcfa181cc0 /* src/unix/PsUnixFPU.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa181cc07fbcfa181cc0 /* src/unix/PsUnixFPU.cpp */; }; - FFFFfa181d287fbcfa181d28 /* src/unix/PsUnixMutex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa181d287fbcfa181d28 /* src/unix/PsUnixMutex.cpp */; }; - FFFFfa181d907fbcfa181d90 /* src/unix/PsUnixPrintString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa181d907fbcfa181d90 /* src/unix/PsUnixPrintString.cpp */; }; - FFFFfa181df87fbcfa181df8 /* src/unix/PsUnixSList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa181df87fbcfa181df8 /* src/unix/PsUnixSList.cpp */; }; - FFFFfa181e607fbcfa181e60 /* src/unix/PsUnixSocket.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa181e607fbcfa181e60 /* src/unix/PsUnixSocket.cpp */; }; - FFFFfa181ec87fbcfa181ec8 /* src/unix/PsUnixSync.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa181ec87fbcfa181ec8 /* src/unix/PsUnixSync.cpp */; }; - FFFFfa181f307fbcfa181f30 /* src/unix/PsUnixThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa181f307fbcfa181f30 /* src/unix/PsUnixThread.cpp */; }; - FFFFfa181f987fbcfa181f98 /* src/unix/PsUnixTime.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa181f987fbcfa181f98 /* src/unix/PsUnixTime.cpp */; }; + FFFFb31691187feab3169118 /* src/PsAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31691187feab3169118 /* src/PsAllocator.cpp */; }; + FFFFb31691807feab3169180 /* src/PsAssert.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31691807feab3169180 /* src/PsAssert.cpp */; }; + FFFFb31691e87feab31691e8 /* src/PsFoundation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31691e87feab31691e8 /* src/PsFoundation.cpp */; }; + FFFFb31692507feab3169250 /* src/PsMathUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31692507feab3169250 /* src/PsMathUtils.cpp */; }; + FFFFb31692b87feab31692b8 /* src/PsString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31692b87feab31692b8 /* src/PsString.cpp */; }; + FFFFb31693207feab3169320 /* src/PsTempAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31693207feab3169320 /* src/PsTempAllocator.cpp */; }; + FFFFb31693887feab3169388 /* src/PsUtilities.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31693887feab3169388 /* src/PsUtilities.cpp */; }; + FFFFb31693f07feab31693f0 /* src/unix/PsUnixAtomic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31693f07feab31693f0 /* src/unix/PsUnixAtomic.cpp */; }; + FFFFb31694587feab3169458 /* src/unix/PsUnixCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31694587feab3169458 /* src/unix/PsUnixCpu.cpp */; }; + FFFFb31694c07feab31694c0 /* src/unix/PsUnixFPU.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31694c07feab31694c0 /* src/unix/PsUnixFPU.cpp */; }; + FFFFb31695287feab3169528 /* src/unix/PsUnixMutex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31695287feab3169528 /* src/unix/PsUnixMutex.cpp */; }; + FFFFb31695907feab3169590 /* src/unix/PsUnixPrintString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31695907feab3169590 /* src/unix/PsUnixPrintString.cpp */; }; + FFFFb31695f87feab31695f8 /* src/unix/PsUnixSList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31695f87feab31695f8 /* src/unix/PsUnixSList.cpp */; }; + FFFFb31696607feab3169660 /* src/unix/PsUnixSocket.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31696607feab3169660 /* src/unix/PsUnixSocket.cpp */; }; + FFFFb31696c87feab31696c8 /* src/unix/PsUnixSync.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31696c87feab31696c8 /* src/unix/PsUnixSync.cpp */; }; + FFFFb31697307feab3169730 /* src/unix/PsUnixThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31697307feab3169730 /* src/unix/PsUnixThread.cpp */; }; + FFFFb31697987feab3169798 /* src/unix/PsUnixTime.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb31697987feab3169798 /* src/unix/PsUnixTime.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDfa87f5207fbcfa87f520 /* PxFoundation */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxFoundation"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDfa18b6007fbcfa18b600 /* Px.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Px.h"; path = "../../../../PxShared/include/foundation/Px.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa18b6687fbcfa18b668 /* PxAllocatorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAllocatorCallback.h"; path = "../../../../PxShared/include/foundation/PxAllocatorCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa18b6d07fbcfa18b6d0 /* PxAssert.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAssert.h"; path = "../../../../PxShared/include/foundation/PxAssert.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa18b7387fbcfa18b738 /* PxBitAndData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBitAndData.h"; path = "../../../../PxShared/include/foundation/PxBitAndData.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa18b7a07fbcfa18b7a0 /* PxBounds3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBounds3.h"; path = "../../../../PxShared/include/foundation/PxBounds3.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa18b8087fbcfa18b808 /* PxErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrorCallback.h"; path = "../../../../PxShared/include/foundation/PxErrorCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa18b8707fbcfa18b870 /* PxErrors.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrors.h"; path = "../../../../PxShared/include/foundation/PxErrors.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa18b8d87fbcfa18b8d8 /* PxFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFlags.h"; path = "../../../../PxShared/include/foundation/PxFlags.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa18b9407fbcfa18b940 /* PxFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundation.h"; path = "../../../../PxShared/include/foundation/PxFoundation.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa18b9a87fbcfa18b9a8 /* PxFoundationVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundationVersion.h"; path = "../../../../PxShared/include/foundation/PxFoundationVersion.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa18ba107fbcfa18ba10 /* PxIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIO.h"; path = "../../../../PxShared/include/foundation/PxIO.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa18ba787fbcfa18ba78 /* PxIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIntrinsics.h"; path = "../../../../PxShared/include/foundation/PxIntrinsics.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa18bae07fbcfa18bae0 /* PxMat33.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat33.h"; path = "../../../../PxShared/include/foundation/PxMat33.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa18bb487fbcfa18bb48 /* PxMat44.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat44.h"; path = "../../../../PxShared/include/foundation/PxMat44.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa18bbb07fbcfa18bbb0 /* PxMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMath.h"; path = "../../../../PxShared/include/foundation/PxMath.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa18bc187fbcfa18bc18 /* PxMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMathUtils.h"; path = "../../../../PxShared/include/foundation/PxMathUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa18bc807fbcfa18bc80 /* PxMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMemory.h"; path = "../../../../PxShared/include/foundation/PxMemory.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa18bce87fbcfa18bce8 /* PxPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPlane.h"; path = "../../../../PxShared/include/foundation/PxPlane.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa18bd507fbcfa18bd50 /* PxPreprocessor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPreprocessor.h"; path = "../../../../PxShared/include/foundation/PxPreprocessor.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa18bdb87fbcfa18bdb8 /* PxProfiler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxProfiler.h"; path = "../../../../PxShared/include/foundation/PxProfiler.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa18be207fbcfa18be20 /* PxQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQuat.h"; path = "../../../../PxShared/include/foundation/PxQuat.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa18be887fbcfa18be88 /* PxSimpleTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleTypes.h"; path = "../../../../PxShared/include/foundation/PxSimpleTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa18bef07fbcfa18bef0 /* PxStrideIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStrideIterator.h"; path = "../../../../PxShared/include/foundation/PxStrideIterator.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa18bf587fbcfa18bf58 /* PxTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTransform.h"; path = "../../../../PxShared/include/foundation/PxTransform.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa18bfc07fbcfa18bfc0 /* PxUnionCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxUnionCast.h"; path = "../../../../PxShared/include/foundation/PxUnionCast.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa18c0287fbcfa18c028 /* PxVec2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec2.h"; path = "../../../../PxShared/include/foundation/PxVec2.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa18c0907fbcfa18c090 /* PxVec3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec3.h"; path = "../../../../PxShared/include/foundation/PxVec3.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa18c0f87fbcfa18c0f8 /* PxVec4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec4.h"; path = "../../../../PxShared/include/foundation/PxVec4.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa18c1607fbcfa18c160 /* unix/PxUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "unix/PxUnixIntrinsics.h"; path = "../../../../PxShared/include/foundation/unix/PxUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1806007fbcfa180600 /* include/Ps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/Ps.h"; path = "../../../../PxShared/src/foundation/include/Ps.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1806687fbcfa180668 /* include/PsAlignedMalloc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlignedMalloc.h"; path = "../../../../PxShared/src/foundation/include/PsAlignedMalloc.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1806d07fbcfa1806d0 /* include/PsAlloca.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlloca.h"; path = "../../../../PxShared/src/foundation/include/PsAlloca.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1807387fbcfa180738 /* include/PsAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1807a07fbcfa1807a0 /* include/PsAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAoS.h"; path = "../../../../PxShared/src/foundation/include/PsAoS.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1808087fbcfa180808 /* include/PsArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsArray.h"; path = "../../../../PxShared/src/foundation/include/PsArray.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1808707fbcfa180870 /* include/PsAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAtomic.h"; path = "../../../../PxShared/src/foundation/include/PsAtomic.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1808d87fbcfa1808d8 /* include/PsBasicTemplates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBasicTemplates.h"; path = "../../../../PxShared/src/foundation/include/PsBasicTemplates.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1809407fbcfa180940 /* include/PsBitUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBitUtils.h"; path = "../../../../PxShared/src/foundation/include/PsBitUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1809a87fbcfa1809a8 /* include/PsBroadcast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBroadcast.h"; path = "../../../../PxShared/src/foundation/include/PsBroadcast.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa180a107fbcfa180a10 /* include/PsCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsCpu.h"; path = "../../../../PxShared/src/foundation/include/PsCpu.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa180a787fbcfa180a78 /* include/PsFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFPU.h"; path = "../../../../PxShared/src/foundation/include/PsFPU.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa180ae07fbcfa180ae0 /* include/PsFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFoundation.h"; path = "../../../../PxShared/src/foundation/include/PsFoundation.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa180b487fbcfa180b48 /* include/PsHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHash.h"; path = "../../../../PxShared/src/foundation/include/PsHash.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa180bb07fbcfa180bb0 /* include/PsHashInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashInternals.h"; path = "../../../../PxShared/src/foundation/include/PsHashInternals.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa180c187fbcfa180c18 /* include/PsHashMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashMap.h"; path = "../../../../PxShared/src/foundation/include/PsHashMap.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa180c807fbcfa180c80 /* include/PsHashSet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashSet.h"; path = "../../../../PxShared/src/foundation/include/PsHashSet.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa180ce87fbcfa180ce8 /* include/PsInlineAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa180d507fbcfa180d50 /* include/PsInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAoS.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa180db87fbcfa180db8 /* include/PsInlineArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineArray.h"; path = "../../../../PxShared/src/foundation/include/PsInlineArray.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa180e207fbcfa180e20 /* include/PsIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/PsIntrinsics.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa180e887fbcfa180e88 /* include/PsMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMathUtils.h"; path = "../../../../PxShared/src/foundation/include/PsMathUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa180ef07fbcfa180ef0 /* include/PsMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMutex.h"; path = "../../../../PxShared/src/foundation/include/PsMutex.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa180f587fbcfa180f58 /* include/PsPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPool.h"; path = "../../../../PxShared/src/foundation/include/PsPool.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa180fc07fbcfa180fc0 /* include/PsSList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSList.h"; path = "../../../../PxShared/src/foundation/include/PsSList.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1810287fbcfa181028 /* include/PsSocket.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSocket.h"; path = "../../../../PxShared/src/foundation/include/PsSocket.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1810907fbcfa181090 /* include/PsSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSort.h"; path = "../../../../PxShared/src/foundation/include/PsSort.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1810f87fbcfa1810f8 /* include/PsSortInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSortInternals.h"; path = "../../../../PxShared/src/foundation/include/PsSortInternals.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1811607fbcfa181160 /* include/PsString.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsString.h"; path = "../../../../PxShared/src/foundation/include/PsString.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1811c87fbcfa1811c8 /* include/PsSync.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSync.h"; path = "../../../../PxShared/src/foundation/include/PsSync.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1812307fbcfa181230 /* include/PsTempAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTempAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsTempAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1812987fbcfa181298 /* include/PsThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsThread.h"; path = "../../../../PxShared/src/foundation/include/PsThread.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1813007fbcfa181300 /* include/PsTime.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTime.h"; path = "../../../../PxShared/src/foundation/include/PsTime.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1813687fbcfa181368 /* include/PsUserAllocated.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUserAllocated.h"; path = "../../../../PxShared/src/foundation/include/PsUserAllocated.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1813d07fbcfa1813d0 /* include/PsUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsUtilities.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1814387fbcfa181438 /* include/PsVecMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMath.h"; path = "../../../../PxShared/src/foundation/include/PsVecMath.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1814a07fbcfa1814a0 /* include/PsVecMathAoSScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalar.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalar.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1815087fbcfa181508 /* include/PsVecMathAoSScalarInline.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalarInline.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalarInline.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1815707fbcfa181570 /* include/PsVecMathSSE.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathSSE.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathSSE.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1815d87fbcfa1815d8 /* include/PsVecMathUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathUtilities.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1816407fbcfa181640 /* include/PsVecQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecQuat.h"; path = "../../../../PxShared/src/foundation/include/PsVecQuat.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1816a87fbcfa1816a8 /* include/PsVecTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecTransform.h"; path = "../../../../PxShared/src/foundation/include/PsVecTransform.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1817107fbcfa181710 /* include/unix/PsUnixAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixAoS.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1817787fbcfa181778 /* include/unix/PsUnixFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixFPU.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixFPU.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1817e07fbcfa1817e0 /* include/unix/PsUnixInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixInlineAoS.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1818487fbcfa181848 /* include/unix/PsUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1818b07fbcfa1818b0 /* include/unix/PsUnixTrigConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixTrigConstants.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixTrigConstants.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1819187fbcfa181918 /* src/PsAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsAllocator.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa1819807fbcfa181980 /* src/PsAssert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAssert.cpp"; path = "../../../../PxShared/src/foundation/src/PsAssert.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa1819e87fbcfa1819e8 /* src/PsFoundation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsFoundation.cpp"; path = "../../../../PxShared/src/foundation/src/PsFoundation.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa181a507fbcfa181a50 /* src/PsMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsMathUtils.cpp"; path = "../../../../PxShared/src/foundation/src/PsMathUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa181ab87fbcfa181ab8 /* src/PsString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsString.cpp"; path = "../../../../PxShared/src/foundation/src/PsString.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa181b207fbcfa181b20 /* src/PsTempAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsTempAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsTempAllocator.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa181b887fbcfa181b88 /* src/PsUtilities.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsUtilities.cpp"; path = "../../../../PxShared/src/foundation/src/PsUtilities.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa181bf07fbcfa181bf0 /* src/unix/PsUnixAtomic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixAtomic.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixAtomic.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa181c587fbcfa181c58 /* src/unix/PsUnixCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixCpu.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixCpu.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa181cc07fbcfa181cc0 /* src/unix/PsUnixFPU.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixFPU.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixFPU.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa181d287fbcfa181d28 /* src/unix/PsUnixMutex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixMutex.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixMutex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa181d907fbcfa181d90 /* src/unix/PsUnixPrintString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixPrintString.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixPrintString.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa181df87fbcfa181df8 /* src/unix/PsUnixSList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSList.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSList.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa181e607fbcfa181e60 /* src/unix/PsUnixSocket.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSocket.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSocket.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa181ec87fbcfa181ec8 /* src/unix/PsUnixSync.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSync.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSync.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa181f307fbcfa181f30 /* src/unix/PsUnixThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixThread.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixThread.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa181f987fbcfa181f98 /* src/unix/PsUnixTime.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixTime.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixTime.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb2a669507feab2a66950 /* PxFoundation */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxFoundation"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDb3172e007feab3172e00 /* Px.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Px.h"; path = "../../../../PxShared/include/foundation/Px.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3172e687feab3172e68 /* PxAllocatorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAllocatorCallback.h"; path = "../../../../PxShared/include/foundation/PxAllocatorCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3172ed07feab3172ed0 /* PxAssert.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAssert.h"; path = "../../../../PxShared/include/foundation/PxAssert.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3172f387feab3172f38 /* PxBitAndData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBitAndData.h"; path = "../../../../PxShared/include/foundation/PxBitAndData.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3172fa07feab3172fa0 /* PxBounds3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBounds3.h"; path = "../../../../PxShared/include/foundation/PxBounds3.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31730087feab3173008 /* PxErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrorCallback.h"; path = "../../../../PxShared/include/foundation/PxErrorCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31730707feab3173070 /* PxErrors.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrors.h"; path = "../../../../PxShared/include/foundation/PxErrors.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31730d87feab31730d8 /* PxFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFlags.h"; path = "../../../../PxShared/include/foundation/PxFlags.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31731407feab3173140 /* PxFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundation.h"; path = "../../../../PxShared/include/foundation/PxFoundation.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31731a87feab31731a8 /* PxFoundationVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundationVersion.h"; path = "../../../../PxShared/include/foundation/PxFoundationVersion.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31732107feab3173210 /* PxIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIO.h"; path = "../../../../PxShared/include/foundation/PxIO.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31732787feab3173278 /* PxIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIntrinsics.h"; path = "../../../../PxShared/include/foundation/PxIntrinsics.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31732e07feab31732e0 /* PxMat33.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat33.h"; path = "../../../../PxShared/include/foundation/PxMat33.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31733487feab3173348 /* PxMat44.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat44.h"; path = "../../../../PxShared/include/foundation/PxMat44.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31733b07feab31733b0 /* PxMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMath.h"; path = "../../../../PxShared/include/foundation/PxMath.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31734187feab3173418 /* PxMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMathUtils.h"; path = "../../../../PxShared/include/foundation/PxMathUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31734807feab3173480 /* PxMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMemory.h"; path = "../../../../PxShared/include/foundation/PxMemory.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31734e87feab31734e8 /* PxPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPlane.h"; path = "../../../../PxShared/include/foundation/PxPlane.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31735507feab3173550 /* PxPreprocessor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPreprocessor.h"; path = "../../../../PxShared/include/foundation/PxPreprocessor.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31735b87feab31735b8 /* PxProfiler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxProfiler.h"; path = "../../../../PxShared/include/foundation/PxProfiler.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31736207feab3173620 /* PxQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQuat.h"; path = "../../../../PxShared/include/foundation/PxQuat.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31736887feab3173688 /* PxSimpleTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleTypes.h"; path = "../../../../PxShared/include/foundation/PxSimpleTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31736f07feab31736f0 /* PxStrideIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStrideIterator.h"; path = "../../../../PxShared/include/foundation/PxStrideIterator.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31737587feab3173758 /* PxTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTransform.h"; path = "../../../../PxShared/include/foundation/PxTransform.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31737c07feab31737c0 /* PxUnionCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxUnionCast.h"; path = "../../../../PxShared/include/foundation/PxUnionCast.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31738287feab3173828 /* PxVec2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec2.h"; path = "../../../../PxShared/include/foundation/PxVec2.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31738907feab3173890 /* PxVec3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec3.h"; path = "../../../../PxShared/include/foundation/PxVec3.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31738f87feab31738f8 /* PxVec4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec4.h"; path = "../../../../PxShared/include/foundation/PxVec4.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31739607feab3173960 /* unix/PxUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "unix/PxUnixIntrinsics.h"; path = "../../../../PxShared/include/foundation/unix/PxUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3167e007feab3167e00 /* include/Ps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/Ps.h"; path = "../../../../PxShared/src/foundation/include/Ps.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3167e687feab3167e68 /* include/PsAlignedMalloc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlignedMalloc.h"; path = "../../../../PxShared/src/foundation/include/PsAlignedMalloc.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3167ed07feab3167ed0 /* include/PsAlloca.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlloca.h"; path = "../../../../PxShared/src/foundation/include/PsAlloca.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3167f387feab3167f38 /* include/PsAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3167fa07feab3167fa0 /* include/PsAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAoS.h"; path = "../../../../PxShared/src/foundation/include/PsAoS.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31680087feab3168008 /* include/PsArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsArray.h"; path = "../../../../PxShared/src/foundation/include/PsArray.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31680707feab3168070 /* include/PsAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAtomic.h"; path = "../../../../PxShared/src/foundation/include/PsAtomic.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31680d87feab31680d8 /* include/PsBasicTemplates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBasicTemplates.h"; path = "../../../../PxShared/src/foundation/include/PsBasicTemplates.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31681407feab3168140 /* include/PsBitUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBitUtils.h"; path = "../../../../PxShared/src/foundation/include/PsBitUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31681a87feab31681a8 /* include/PsBroadcast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBroadcast.h"; path = "../../../../PxShared/src/foundation/include/PsBroadcast.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31682107feab3168210 /* include/PsCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsCpu.h"; path = "../../../../PxShared/src/foundation/include/PsCpu.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31682787feab3168278 /* include/PsFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFPU.h"; path = "../../../../PxShared/src/foundation/include/PsFPU.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31682e07feab31682e0 /* include/PsFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFoundation.h"; path = "../../../../PxShared/src/foundation/include/PsFoundation.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31683487feab3168348 /* include/PsHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHash.h"; path = "../../../../PxShared/src/foundation/include/PsHash.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31683b07feab31683b0 /* include/PsHashInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashInternals.h"; path = "../../../../PxShared/src/foundation/include/PsHashInternals.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31684187feab3168418 /* include/PsHashMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashMap.h"; path = "../../../../PxShared/src/foundation/include/PsHashMap.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31684807feab3168480 /* include/PsHashSet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashSet.h"; path = "../../../../PxShared/src/foundation/include/PsHashSet.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31684e87feab31684e8 /* include/PsInlineAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31685507feab3168550 /* include/PsInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAoS.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31685b87feab31685b8 /* include/PsInlineArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineArray.h"; path = "../../../../PxShared/src/foundation/include/PsInlineArray.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31686207feab3168620 /* include/PsIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/PsIntrinsics.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31686887feab3168688 /* include/PsMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMathUtils.h"; path = "../../../../PxShared/src/foundation/include/PsMathUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31686f07feab31686f0 /* include/PsMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMutex.h"; path = "../../../../PxShared/src/foundation/include/PsMutex.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31687587feab3168758 /* include/PsPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPool.h"; path = "../../../../PxShared/src/foundation/include/PsPool.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31687c07feab31687c0 /* include/PsSList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSList.h"; path = "../../../../PxShared/src/foundation/include/PsSList.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31688287feab3168828 /* include/PsSocket.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSocket.h"; path = "../../../../PxShared/src/foundation/include/PsSocket.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31688907feab3168890 /* include/PsSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSort.h"; path = "../../../../PxShared/src/foundation/include/PsSort.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31688f87feab31688f8 /* include/PsSortInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSortInternals.h"; path = "../../../../PxShared/src/foundation/include/PsSortInternals.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31689607feab3168960 /* include/PsString.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsString.h"; path = "../../../../PxShared/src/foundation/include/PsString.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31689c87feab31689c8 /* include/PsSync.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSync.h"; path = "../../../../PxShared/src/foundation/include/PsSync.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3168a307feab3168a30 /* include/PsTempAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTempAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsTempAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3168a987feab3168a98 /* include/PsThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsThread.h"; path = "../../../../PxShared/src/foundation/include/PsThread.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3168b007feab3168b00 /* include/PsTime.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTime.h"; path = "../../../../PxShared/src/foundation/include/PsTime.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3168b687feab3168b68 /* include/PsUserAllocated.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUserAllocated.h"; path = "../../../../PxShared/src/foundation/include/PsUserAllocated.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3168bd07feab3168bd0 /* include/PsUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsUtilities.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3168c387feab3168c38 /* include/PsVecMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMath.h"; path = "../../../../PxShared/src/foundation/include/PsVecMath.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3168ca07feab3168ca0 /* include/PsVecMathAoSScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalar.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalar.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3168d087feab3168d08 /* include/PsVecMathAoSScalarInline.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalarInline.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalarInline.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3168d707feab3168d70 /* include/PsVecMathSSE.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathSSE.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathSSE.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3168dd87feab3168dd8 /* include/PsVecMathUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathUtilities.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3168e407feab3168e40 /* include/PsVecQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecQuat.h"; path = "../../../../PxShared/src/foundation/include/PsVecQuat.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3168ea87feab3168ea8 /* include/PsVecTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecTransform.h"; path = "../../../../PxShared/src/foundation/include/PsVecTransform.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3168f107feab3168f10 /* include/unix/PsUnixAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixAoS.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3168f787feab3168f78 /* include/unix/PsUnixFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixFPU.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixFPU.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3168fe07feab3168fe0 /* include/unix/PsUnixInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixInlineAoS.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31690487feab3169048 /* include/unix/PsUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31690b07feab31690b0 /* include/unix/PsUnixTrigConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixTrigConstants.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixTrigConstants.h"; sourceTree = SOURCE_ROOT; }; + FFFDb31691187feab3169118 /* src/PsAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsAllocator.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31691807feab3169180 /* src/PsAssert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAssert.cpp"; path = "../../../../PxShared/src/foundation/src/PsAssert.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31691e87feab31691e8 /* src/PsFoundation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsFoundation.cpp"; path = "../../../../PxShared/src/foundation/src/PsFoundation.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31692507feab3169250 /* src/PsMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsMathUtils.cpp"; path = "../../../../PxShared/src/foundation/src/PsMathUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31692b87feab31692b8 /* src/PsString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsString.cpp"; path = "../../../../PxShared/src/foundation/src/PsString.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31693207feab3169320 /* src/PsTempAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsTempAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsTempAllocator.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31693887feab3169388 /* src/PsUtilities.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsUtilities.cpp"; path = "../../../../PxShared/src/foundation/src/PsUtilities.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31693f07feab31693f0 /* src/unix/PsUnixAtomic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixAtomic.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixAtomic.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31694587feab3169458 /* src/unix/PsUnixCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixCpu.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixCpu.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31694c07feab31694c0 /* src/unix/PsUnixFPU.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixFPU.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixFPU.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31695287feab3169528 /* src/unix/PsUnixMutex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixMutex.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixMutex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31695907feab3169590 /* src/unix/PsUnixPrintString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixPrintString.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixPrintString.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31695f87feab31695f8 /* src/unix/PsUnixSList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSList.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSList.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31696607feab3169660 /* src/unix/PsUnixSocket.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSocket.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSocket.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31696c87feab31696c8 /* src/unix/PsUnixSync.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSync.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSync.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31697307feab3169730 /* src/unix/PsUnixThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixThread.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixThread.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb31697987feab3169798 /* 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 */ - FFF2fa87f5207fbcfa87f520 /* Resources */ = { + FFF2b2a669507feab2a66950 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2123,7 +2123,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCfa87f5207fbcfa87f520 /* Frameworks */ = { + FFFCb2a669507feab2a66950 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2133,27 +2133,27 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8fa87f5207fbcfa87f520 /* Sources */ = { + FFF8b2a669507feab2a66950 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFfa1819187fbcfa181918, - FFFFfa1819807fbcfa181980, - FFFFfa1819e87fbcfa1819e8, - FFFFfa181a507fbcfa181a50, - FFFFfa181ab87fbcfa181ab8, - FFFFfa181b207fbcfa181b20, - FFFFfa181b887fbcfa181b88, - FFFFfa181bf07fbcfa181bf0, - FFFFfa181c587fbcfa181c58, - FFFFfa181cc07fbcfa181cc0, - FFFFfa181d287fbcfa181d28, - FFFFfa181d907fbcfa181d90, - FFFFfa181df87fbcfa181df8, - FFFFfa181e607fbcfa181e60, - FFFFfa181ec87fbcfa181ec8, - FFFFfa181f307fbcfa181f30, - FFFFfa181f987fbcfa181f98, + FFFFb31691187feab3169118, + FFFFb31691807feab3169180, + FFFFb31691e87feab31691e8, + FFFFb31692507feab3169250, + FFFFb31692b87feab31692b8, + FFFFb31693207feab3169320, + FFFFb31693887feab3169388, + FFFFb31693f07feab31693f0, + FFFFb31694587feab3169458, + FFFFb31694c07feab31694c0, + FFFFb31695287feab3169528, + FFFFb31695907feab3169590, + FFFFb31695f87feab31695f8, + FFFFb31696607feab3169660, + FFFFb31696c87feab31696c8, + FFFFb31697307feab3169730, + FFFFb31697987feab3169798, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2165,103 +2165,103 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PxPvdSDK */ - FFFFfa1b3fa87fbcfa1b3fa8 /* src/PxProfileEventImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1b3fa87fbcfa1b3fa8 /* src/PxProfileEventImpl.cpp */; }; - FFFFfa1b40107fbcfa1b4010 /* src/PxPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1b40107fbcfa1b4010 /* src/PxPvd.cpp */; }; - FFFFfa1b40787fbcfa1b4078 /* src/PxPvdDataStream.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1b40787fbcfa1b4078 /* src/PxPvdDataStream.cpp */; }; - FFFFfa1b40e07fbcfa1b40e0 /* src/PxPvdDefaultFileTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1b40e07fbcfa1b40e0 /* src/PxPvdDefaultFileTransport.cpp */; }; - FFFFfa1b41487fbcfa1b4148 /* src/PxPvdDefaultSocketTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1b41487fbcfa1b4148 /* src/PxPvdDefaultSocketTransport.cpp */; }; - FFFFfa1b41b07fbcfa1b41b0 /* src/PxPvdImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1b41b07fbcfa1b41b0 /* src/PxPvdImpl.cpp */; }; - FFFFfa1b42187fbcfa1b4218 /* src/PxPvdMemClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1b42187fbcfa1b4218 /* src/PxPvdMemClient.cpp */; }; - FFFFfa1b42807fbcfa1b4280 /* src/PxPvdObjectModelMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1b42807fbcfa1b4280 /* src/PxPvdObjectModelMetaData.cpp */; }; - FFFFfa1b42e87fbcfa1b42e8 /* src/PxPvdObjectRegistrar.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1b42e87fbcfa1b42e8 /* src/PxPvdObjectRegistrar.cpp */; }; - FFFFfa1b43507fbcfa1b4350 /* src/PxPvdProfileZoneClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1b43507fbcfa1b4350 /* src/PxPvdProfileZoneClient.cpp */; }; - FFFFfa1b43b87fbcfa1b43b8 /* src/PxPvdUserRenderer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1b43b87fbcfa1b43b8 /* src/PxPvdUserRenderer.cpp */; }; + FFFFb18123a87feab18123a8 /* src/PxProfileEventImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb18123a87feab18123a8 /* src/PxProfileEventImpl.cpp */; }; + FFFFb18124107feab1812410 /* src/PxPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb18124107feab1812410 /* src/PxPvd.cpp */; }; + FFFFb18124787feab1812478 /* src/PxPvdDataStream.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb18124787feab1812478 /* src/PxPvdDataStream.cpp */; }; + FFFFb18124e07feab18124e0 /* src/PxPvdDefaultFileTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb18124e07feab18124e0 /* src/PxPvdDefaultFileTransport.cpp */; }; + FFFFb18125487feab1812548 /* src/PxPvdDefaultSocketTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb18125487feab1812548 /* src/PxPvdDefaultSocketTransport.cpp */; }; + FFFFb18125b07feab18125b0 /* src/PxPvdImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb18125b07feab18125b0 /* src/PxPvdImpl.cpp */; }; + FFFFb18126187feab1812618 /* src/PxPvdMemClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb18126187feab1812618 /* src/PxPvdMemClient.cpp */; }; + FFFFb18126807feab1812680 /* src/PxPvdObjectModelMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb18126807feab1812680 /* src/PxPvdObjectModelMetaData.cpp */; }; + FFFFb18126e87feab18126e8 /* src/PxPvdObjectRegistrar.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb18126e87feab18126e8 /* src/PxPvdObjectRegistrar.cpp */; }; + FFFFb18127507feab1812750 /* src/PxPvdProfileZoneClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb18127507feab1812750 /* src/PxPvdProfileZoneClient.cpp */; }; + FFFFb18127b87feab18127b8 /* src/PxPvdUserRenderer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb18127b87feab18127b8 /* src/PxPvdUserRenderer.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDfab095c07fbcfab095c0 /* PxPvdSDK */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxPvdSDK"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDfab09df07fbcfab09df0 /* PxPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvd.h"; path = "../../../../PxShared/include/pvd/PxPvd.h"; sourceTree = SOURCE_ROOT; }; - FFFDfab09e587fbcfab09e58 /* PxPvdTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvdTransport.h"; path = "../../../../PxShared/include/pvd/PxPvdTransport.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b3c007fbcfa1b3c00 /* include/PsPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPvd.h"; path = "../../../../PxShared/src/pvd/include/PsPvd.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b3c687fbcfa1b3c68 /* include/PxProfileAllocatorWrapper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxProfileAllocatorWrapper.h"; path = "../../../../PxShared/src/pvd/include/PxProfileAllocatorWrapper.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b3cd07fbcfa1b3cd0 /* include/PxPvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdClient.h"; path = "../../../../PxShared/src/pvd/include/PxPvdClient.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b3d387fbcfa1b3d38 /* include/PxPvdDataStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStream.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStream.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b3da07fbcfa1b3da0 /* include/PxPvdDataStreamHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStreamHelpers.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStreamHelpers.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b3e087fbcfa1b3e08 /* include/PxPvdErrorCodes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdErrorCodes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdErrorCodes.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b3e707fbcfa1b3e70 /* include/PxPvdObjectModelBaseTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdObjectModelBaseTypes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdObjectModelBaseTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b3ed87fbcfa1b3ed8 /* include/PxPvdRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdRenderBuffer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b3f407fbcfa1b3f40 /* include/PxPvdUserRenderer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdUserRenderer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdUserRenderer.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b3fa87fbcfa1b3fa8 /* src/PxProfileEventImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxProfileEventImpl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b40107fbcfa1b4010 /* src/PxPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvd.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvd.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b40787fbcfa1b4078 /* src/PxPvdDataStream.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDataStream.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDataStream.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b40e07fbcfa1b40e0 /* src/PxPvdDefaultFileTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b41487fbcfa1b4148 /* src/PxPvdDefaultSocketTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b41b07fbcfa1b41b0 /* src/PxPvdImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b42187fbcfa1b4218 /* src/PxPvdMemClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b42807fbcfa1b4280 /* src/PxPvdObjectModelMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b42e87fbcfa1b42e8 /* src/PxPvdObjectRegistrar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b43507fbcfa1b4350 /* src/PxPvdProfileZoneClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b43b87fbcfa1b43b8 /* src/PxPvdUserRenderer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderer.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderer.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b44207fbcfa1b4420 /* src/PxProfileBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileBase.h"; path = "../../../../PxShared/src/pvd/src/PxProfileBase.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b44887fbcfa1b4488 /* src/PxProfileCompileTimeEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileCompileTimeEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileCompileTimeEventFilter.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b44f07fbcfa1b44f0 /* src/PxProfileContextProvider.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProvider.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProvider.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b45587fbcfa1b4558 /* src/PxProfileContextProviderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProviderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProviderImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b45c07fbcfa1b45c0 /* src/PxProfileDataBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b46287fbcfa1b4628 /* src/PxProfileDataParsing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataParsing.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataParsing.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b46907fbcfa1b4690 /* src/PxProfileEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b46f87fbcfa1b46f8 /* src/PxProfileEventBufferAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferAtomic.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferAtomic.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b47607fbcfa1b4760 /* src/PxProfileEventBufferClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClient.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClient.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b47c87fbcfa1b47c8 /* src/PxProfileEventBufferClientManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClientManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClientManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b48307fbcfa1b4830 /* src/PxProfileEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventFilter.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b48987fbcfa1b4898 /* src/PxProfileEventHandler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventHandler.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventHandler.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b49007fbcfa1b4900 /* src/PxProfileEventId.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventId.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventId.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b49687fbcfa1b4968 /* src/PxProfileEventMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventMutex.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventMutex.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b49d07fbcfa1b49d0 /* src/PxProfileEventNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventNames.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventNames.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b4a387fbcfa1b4a38 /* src/PxProfileEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventParser.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b4aa07fbcfa1b4aa0 /* src/PxProfileEventSender.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSender.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSender.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b4b087fbcfa1b4b08 /* src/PxProfileEventSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSerialization.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSerialization.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b4b707fbcfa1b4b70 /* src/PxProfileEventSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSystem.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSystem.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b4bd87fbcfa1b4bd8 /* src/PxProfileEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEvents.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b4c407fbcfa1b4c40 /* src/PxProfileMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemory.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemory.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b4ca87fbcfa1b4ca8 /* src/PxProfileMemoryBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b4d107fbcfa1b4d10 /* src/PxProfileMemoryEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b4d787fbcfa1b4d78 /* src/PxProfileMemoryEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventParser.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b4de07fbcfa1b4de0 /* src/PxProfileMemoryEventRecorder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventRecorder.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventRecorder.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b4e487fbcfa1b4e48 /* src/PxProfileMemoryEventReflexiveWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventReflexiveWriter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventReflexiveWriter.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b4eb07fbcfa1b4eb0 /* src/PxProfileMemoryEventSummarizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventSummarizer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventSummarizer.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b4f187fbcfa1b4f18 /* src/PxProfileMemoryEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b4f807fbcfa1b4f80 /* src/PxProfileMemoryEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEvents.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b4fe87fbcfa1b4fe8 /* src/PxProfileScopedEvent.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedEvent.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedEvent.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b50507fbcfa1b5050 /* src/PxProfileScopedMutexLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedMutexLock.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedMutexLock.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b50b87fbcfa1b50b8 /* src/PxProfileZone.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZone.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZone.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b51207fbcfa1b5120 /* src/PxProfileZoneImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b51887fbcfa1b5188 /* src/PxProfileZoneManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b51f07fbcfa1b51f0 /* src/PxProfileZoneManagerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManagerImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManagerImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b52587fbcfa1b5258 /* src/PxPvdBits.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdBits.h"; path = "../../../../PxShared/src/pvd/src/PxPvdBits.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b52c07fbcfa1b52c0 /* src/PxPvdByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdByteStreams.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b53287fbcfa1b5328 /* src/PxPvdCommStreamEventSink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEventSink.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEventSink.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b53907fbcfa1b5390 /* src/PxPvdCommStreamEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEvents.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEvents.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b53f87fbcfa1b53f8 /* src/PxPvdCommStreamSDKEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamSDKEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamSDKEventTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b54607fbcfa1b5460 /* src/PxPvdCommStreamTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b54c87fbcfa1b54c8 /* src/PxPvdDefaultFileTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b55307fbcfa1b5530 /* src/PxPvdDefaultSocketTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b55987fbcfa1b5598 /* src/PxPvdFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdFoundation.h"; path = "../../../../PxShared/src/pvd/src/PxPvdFoundation.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b56007fbcfa1b5600 /* src/PxPvdImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b56687fbcfa1b5668 /* src/PxPvdInternalByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdInternalByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdInternalByteStreams.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b56d07fbcfa1b56d0 /* src/PxPvdMarshalling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMarshalling.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMarshalling.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b57387fbcfa1b5738 /* src/PxPvdMemClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b57a07fbcfa1b57a0 /* src/PxPvdObjectModel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModel.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModel.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b58087fbcfa1b5808 /* src/PxPvdObjectModelInternalTypeDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypeDefs.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypeDefs.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b58707fbcfa1b5870 /* src/PxPvdObjectModelInternalTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b58d87fbcfa1b58d8 /* src/PxPvdObjectModelMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b59407fbcfa1b5940 /* src/PxPvdObjectRegistrar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b59a87fbcfa1b59a8 /* src/PxPvdProfileZoneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b5a107fbcfa1b5a10 /* src/PxPvdUserRenderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1b5a787fbcfa1b5a78 /* src/PxPvdUserRenderTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFDb147f4707feab147f470 /* PxPvdSDK */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxPvdSDK"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDb147bad07feab147bad0 /* PxPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvd.h"; path = "../../../../PxShared/include/pvd/PxPvd.h"; sourceTree = SOURCE_ROOT; }; + FFFDb147bb387feab147bb38 /* PxPvdTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvdTransport.h"; path = "../../../../PxShared/include/pvd/PxPvdTransport.h"; sourceTree = SOURCE_ROOT; }; + FFFDb18120007feab1812000 /* include/PsPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPvd.h"; path = "../../../../PxShared/src/pvd/include/PsPvd.h"; sourceTree = SOURCE_ROOT; }; + FFFDb18120687feab1812068 /* include/PxProfileAllocatorWrapper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxProfileAllocatorWrapper.h"; path = "../../../../PxShared/src/pvd/include/PxProfileAllocatorWrapper.h"; sourceTree = SOURCE_ROOT; }; + FFFDb18120d07feab18120d0 /* include/PxPvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdClient.h"; path = "../../../../PxShared/src/pvd/include/PxPvdClient.h"; sourceTree = SOURCE_ROOT; }; + FFFDb18121387feab1812138 /* include/PxPvdDataStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStream.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStream.h"; sourceTree = SOURCE_ROOT; }; + FFFDb18121a07feab18121a0 /* include/PxPvdDataStreamHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStreamHelpers.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStreamHelpers.h"; sourceTree = SOURCE_ROOT; }; + FFFDb18122087feab1812208 /* include/PxPvdErrorCodes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdErrorCodes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdErrorCodes.h"; sourceTree = SOURCE_ROOT; }; + FFFDb18122707feab1812270 /* include/PxPvdObjectModelBaseTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdObjectModelBaseTypes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdObjectModelBaseTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFDb18122d87feab18122d8 /* include/PxPvdRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdRenderBuffer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFDb18123407feab1812340 /* include/PxPvdUserRenderer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdUserRenderer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdUserRenderer.h"; sourceTree = SOURCE_ROOT; }; + FFFDb18123a87feab18123a8 /* src/PxProfileEventImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxProfileEventImpl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb18124107feab1812410 /* src/PxPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvd.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvd.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb18124787feab1812478 /* src/PxPvdDataStream.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDataStream.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDataStream.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb18124e07feab18124e0 /* src/PxPvdDefaultFileTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb18125487feab1812548 /* src/PxPvdDefaultSocketTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb18125b07feab18125b0 /* src/PxPvdImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb18126187feab1812618 /* src/PxPvdMemClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb18126807feab1812680 /* src/PxPvdObjectModelMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb18126e87feab18126e8 /* src/PxPvdObjectRegistrar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb18127507feab1812750 /* src/PxPvdProfileZoneClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb18127b87feab18127b8 /* src/PxPvdUserRenderer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderer.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderer.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb18128207feab1812820 /* src/PxProfileBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileBase.h"; path = "../../../../PxShared/src/pvd/src/PxProfileBase.h"; sourceTree = SOURCE_ROOT; }; + FFFDb18128887feab1812888 /* src/PxProfileCompileTimeEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileCompileTimeEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileCompileTimeEventFilter.h"; sourceTree = SOURCE_ROOT; }; + FFFDb18128f07feab18128f0 /* src/PxProfileContextProvider.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProvider.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProvider.h"; sourceTree = SOURCE_ROOT; }; + FFFDb18129587feab1812958 /* src/PxProfileContextProviderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProviderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProviderImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFDb18129c07feab18129c0 /* src/PxProfileDataBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFDb1812a287feab1812a28 /* src/PxProfileDataParsing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataParsing.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataParsing.h"; sourceTree = SOURCE_ROOT; }; + FFFDb1812a907feab1812a90 /* src/PxProfileEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFDb1812af87feab1812af8 /* src/PxProfileEventBufferAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferAtomic.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferAtomic.h"; sourceTree = SOURCE_ROOT; }; + FFFDb1812b607feab1812b60 /* src/PxProfileEventBufferClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClient.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClient.h"; sourceTree = SOURCE_ROOT; }; + FFFDb1812bc87feab1812bc8 /* src/PxProfileEventBufferClientManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClientManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClientManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDb1812c307feab1812c30 /* src/PxProfileEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventFilter.h"; sourceTree = SOURCE_ROOT; }; + FFFDb1812c987feab1812c98 /* src/PxProfileEventHandler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventHandler.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventHandler.h"; sourceTree = SOURCE_ROOT; }; + FFFDb1812d007feab1812d00 /* src/PxProfileEventId.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventId.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventId.h"; sourceTree = SOURCE_ROOT; }; + FFFDb1812d687feab1812d68 /* src/PxProfileEventMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventMutex.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventMutex.h"; sourceTree = SOURCE_ROOT; }; + FFFDb1812dd07feab1812dd0 /* src/PxProfileEventNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventNames.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventNames.h"; sourceTree = SOURCE_ROOT; }; + FFFDb1812e387feab1812e38 /* src/PxProfileEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventParser.h"; sourceTree = SOURCE_ROOT; }; + FFFDb1812ea07feab1812ea0 /* src/PxProfileEventSender.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSender.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSender.h"; sourceTree = SOURCE_ROOT; }; + FFFDb1812f087feab1812f08 /* src/PxProfileEventSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSerialization.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSerialization.h"; sourceTree = SOURCE_ROOT; }; + FFFDb1812f707feab1812f70 /* src/PxProfileEventSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSystem.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSystem.h"; sourceTree = SOURCE_ROOT; }; + FFFDb1812fd87feab1812fd8 /* src/PxProfileEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEvents.h"; sourceTree = SOURCE_ROOT; }; + FFFDb18130407feab1813040 /* src/PxProfileMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemory.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemory.h"; sourceTree = SOURCE_ROOT; }; + FFFDb18130a87feab18130a8 /* src/PxProfileMemoryBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFDb18131107feab1813110 /* src/PxProfileMemoryEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFDb18131787feab1813178 /* src/PxProfileMemoryEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventParser.h"; sourceTree = SOURCE_ROOT; }; + FFFDb18131e07feab18131e0 /* src/PxProfileMemoryEventRecorder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventRecorder.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventRecorder.h"; sourceTree = SOURCE_ROOT; }; + FFFDb18132487feab1813248 /* src/PxProfileMemoryEventReflexiveWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventReflexiveWriter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventReflexiveWriter.h"; sourceTree = SOURCE_ROOT; }; + FFFDb18132b07feab18132b0 /* src/PxProfileMemoryEventSummarizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventSummarizer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventSummarizer.h"; sourceTree = SOURCE_ROOT; }; + FFFDb18133187feab1813318 /* src/PxProfileMemoryEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFDb18133807feab1813380 /* src/PxProfileMemoryEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEvents.h"; sourceTree = SOURCE_ROOT; }; + FFFDb18133e87feab18133e8 /* src/PxProfileScopedEvent.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedEvent.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedEvent.h"; sourceTree = SOURCE_ROOT; }; + FFFDb18134507feab1813450 /* src/PxProfileScopedMutexLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedMutexLock.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedMutexLock.h"; sourceTree = SOURCE_ROOT; }; + FFFDb18134b87feab18134b8 /* src/PxProfileZone.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZone.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZone.h"; sourceTree = SOURCE_ROOT; }; + FFFDb18135207feab1813520 /* src/PxProfileZoneImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFDb18135887feab1813588 /* src/PxProfileZoneManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDb18135f07feab18135f0 /* src/PxProfileZoneManagerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManagerImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManagerImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFDb18136587feab1813658 /* src/PxPvdBits.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdBits.h"; path = "../../../../PxShared/src/pvd/src/PxPvdBits.h"; sourceTree = SOURCE_ROOT; }; + FFFDb18136c07feab18136c0 /* src/PxPvdByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdByteStreams.h"; sourceTree = SOURCE_ROOT; }; + FFFDb18137287feab1813728 /* src/PxPvdCommStreamEventSink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEventSink.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEventSink.h"; sourceTree = SOURCE_ROOT; }; + FFFDb18137907feab1813790 /* src/PxPvdCommStreamEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEvents.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEvents.h"; sourceTree = SOURCE_ROOT; }; + FFFDb18137f87feab18137f8 /* src/PxPvdCommStreamSDKEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamSDKEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamSDKEventTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFDb18138607feab1813860 /* src/PxPvdCommStreamTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFDb18138c87feab18138c8 /* src/PxPvdDefaultFileTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.h"; sourceTree = SOURCE_ROOT; }; + FFFDb18139307feab1813930 /* src/PxPvdDefaultSocketTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.h"; sourceTree = SOURCE_ROOT; }; + FFFDb18139987feab1813998 /* src/PxPvdFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdFoundation.h"; path = "../../../../PxShared/src/pvd/src/PxPvdFoundation.h"; sourceTree = SOURCE_ROOT; }; + FFFDb1813a007feab1813a00 /* src/PxPvdImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFDb1813a687feab1813a68 /* src/PxPvdInternalByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdInternalByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdInternalByteStreams.h"; sourceTree = SOURCE_ROOT; }; + FFFDb1813ad07feab1813ad0 /* src/PxPvdMarshalling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMarshalling.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMarshalling.h"; sourceTree = SOURCE_ROOT; }; + FFFDb1813b387feab1813b38 /* src/PxPvdMemClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.h"; sourceTree = SOURCE_ROOT; }; + FFFDb1813ba07feab1813ba0 /* src/PxPvdObjectModel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModel.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModel.h"; sourceTree = SOURCE_ROOT; }; + FFFDb1813c087feab1813c08 /* src/PxPvdObjectModelInternalTypeDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypeDefs.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypeDefs.h"; sourceTree = SOURCE_ROOT; }; + FFFDb1813c707feab1813c70 /* src/PxPvdObjectModelInternalTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFDb1813cd87feab1813cd8 /* src/PxPvdObjectModelMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.h"; sourceTree = SOURCE_ROOT; }; + FFFDb1813d407feab1813d40 /* src/PxPvdObjectRegistrar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.h"; sourceTree = SOURCE_ROOT; }; + FFFDb1813da87feab1813da8 /* src/PxPvdProfileZoneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.h"; sourceTree = SOURCE_ROOT; }; + FFFDb1813e107feab1813e10 /* src/PxPvdUserRenderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFDb1813e787feab1813e78 /* 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 */ - FFF2fab095c07fbcfab095c0 /* Resources */ = { + FFF2b147f4707feab147f470 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2271,7 +2271,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCfab095c07fbcfab095c0 /* Frameworks */ = { + FFFCb147f4707feab147f470 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2281,21 +2281,21 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8fab095c07fbcfab095c0 /* Sources */ = { + FFF8b147f4707feab147f470 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFfa1b3fa87fbcfa1b3fa8, - FFFFfa1b40107fbcfa1b4010, - FFFFfa1b40787fbcfa1b4078, - FFFFfa1b40e07fbcfa1b40e0, - FFFFfa1b41487fbcfa1b4148, - FFFFfa1b41b07fbcfa1b41b0, - FFFFfa1b42187fbcfa1b4218, - FFFFfa1b42807fbcfa1b4280, - FFFFfa1b42e87fbcfa1b42e8, - FFFFfa1b43507fbcfa1b4350, - FFFFfa1b43b87fbcfa1b43b8, + FFFFb18123a87feab18123a8, + FFFFb18124107feab1812410, + FFFFb18124787feab1812478, + FFFFb18124e07feab18124e0, + FFFFb18125487feab1812548, + FFFFb18125b07feab18125b0, + FFFFb18126187feab1812618, + FFFFb18126807feab1812680, + FFFFb18126e87feab18126e8, + FFFFb18127507feab1812750, + FFFFb18127b87feab18127b8, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2304,108 +2304,108 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF4fa88f5e07fbcfa88f5e0 /* PBXTargetDependency */ = { + FFF4b147fe107feab147fe10 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFAfa87f5207fbcfa87f520 /* PxFoundation */; - targetProxy = FFF5fa87f5207fbcfa87f520 /* PBXContainerItemProxy */; + target = FFFAb2a669507feab2a66950 /* PxFoundation */; + targetProxy = FFF5b2a669507feab2a66950 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of LowLevel */ - FFFFfab2a4b07fbcfab2a4b0 /* px_globals.cpp in API Source */= { isa = PBXBuildFile; fileRef = FFFDfab2a4b07fbcfab2a4b0 /* px_globals.cpp */; }; - FFFFfab328007fbcfab32800 /* PxsCCD.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDfab328007fbcfab32800 /* PxsCCD.cpp */; }; - FFFFfab328687fbcfab32868 /* PxsContactManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDfab328687fbcfab32868 /* PxsContactManager.cpp */; }; - FFFFfab328d07fbcfab328d0 /* PxsContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDfab328d07fbcfab328d0 /* PxsContext.cpp */; }; - FFFFfab329387fbcfab32938 /* PxsDefaultMemoryManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDfab329387fbcfab32938 /* PxsDefaultMemoryManager.cpp */; }; - FFFFfab329a07fbcfab329a0 /* PxsIslandSim.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDfab329a07fbcfab329a0 /* PxsIslandSim.cpp */; }; - FFFFfab32a087fbcfab32a08 /* PxsMaterialCombiner.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDfab32a087fbcfab32a08 /* PxsMaterialCombiner.cpp */; }; - FFFFfab32a707fbcfab32a70 /* PxsNphaseImplementationContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDfab32a707fbcfab32a70 /* PxsNphaseImplementationContext.cpp */; }; - FFFFfab32ad87fbcfab32ad8 /* PxsSimpleIslandManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDfab32ad87fbcfab32ad8 /* PxsSimpleIslandManager.cpp */; }; - FFFFfa1bc0007fbcfa1bc000 /* collision/PxcContact.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDfa1bc0007fbcfa1bc000 /* collision/PxcContact.cpp */; }; - FFFFfa1bc0687fbcfa1bc068 /* pipeline/PxcContactCache.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDfa1bc0687fbcfa1bc068 /* pipeline/PxcContactCache.cpp */; }; - FFFFfa1bc0d07fbcfa1bc0d0 /* pipeline/PxcContactMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDfa1bc0d07fbcfa1bc0d0 /* pipeline/PxcContactMethodImpl.cpp */; }; - FFFFfa1bc1387fbcfa1bc138 /* pipeline/PxcMaterialHeightField.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDfa1bc1387fbcfa1bc138 /* pipeline/PxcMaterialHeightField.cpp */; }; - FFFFfa1bc1a07fbcfa1bc1a0 /* pipeline/PxcMaterialMesh.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDfa1bc1a07fbcfa1bc1a0 /* pipeline/PxcMaterialMesh.cpp */; }; - FFFFfa1bc2087fbcfa1bc208 /* pipeline/PxcMaterialMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDfa1bc2087fbcfa1bc208 /* pipeline/PxcMaterialMethodImpl.cpp */; }; - FFFFfa1bc2707fbcfa1bc270 /* pipeline/PxcMaterialShape.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDfa1bc2707fbcfa1bc270 /* pipeline/PxcMaterialShape.cpp */; }; - FFFFfa1bc2d87fbcfa1bc2d8 /* pipeline/PxcNpBatch.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDfa1bc2d87fbcfa1bc2d8 /* pipeline/PxcNpBatch.cpp */; }; - FFFFfa1bc3407fbcfa1bc340 /* pipeline/PxcNpCacheStreamPair.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDfa1bc3407fbcfa1bc340 /* pipeline/PxcNpCacheStreamPair.cpp */; }; - FFFFfa1bc3a87fbcfa1bc3a8 /* pipeline/PxcNpContactPrepShared.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDfa1bc3a87fbcfa1bc3a8 /* pipeline/PxcNpContactPrepShared.cpp */; }; - FFFFfa1bc4107fbcfa1bc410 /* pipeline/PxcNpMemBlockPool.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDfa1bc4107fbcfa1bc410 /* pipeline/PxcNpMemBlockPool.cpp */; }; - FFFFfa1bc4787fbcfa1bc478 /* pipeline/PxcNpThreadContext.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDfa1bc4787fbcfa1bc478 /* pipeline/PxcNpThreadContext.cpp */; }; + FFFFb2d3e8f07feab2d3e8f0 /* px_globals.cpp in API Source */= { isa = PBXBuildFile; fileRef = FFFDb2d3e8f07feab2d3e8f0 /* px_globals.cpp */; }; + FFFFb2d3e2107feab2d3e210 /* PxsCCD.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDb2d3e2107feab2d3e210 /* PxsCCD.cpp */; }; + FFFFb2d3e2787feab2d3e278 /* PxsContactManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDb2d3e2787feab2d3e278 /* PxsContactManager.cpp */; }; + FFFFb2d3e2e07feab2d3e2e0 /* PxsContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDb2d3e2e07feab2d3e2e0 /* PxsContext.cpp */; }; + FFFFb2d3e3487feab2d3e348 /* PxsDefaultMemoryManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDb2d3e3487feab2d3e348 /* PxsDefaultMemoryManager.cpp */; }; + FFFFb2d3e3b07feab2d3e3b0 /* PxsIslandSim.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDb2d3e3b07feab2d3e3b0 /* PxsIslandSim.cpp */; }; + FFFFb2d3e4187feab2d3e418 /* PxsMaterialCombiner.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDb2d3e4187feab2d3e418 /* PxsMaterialCombiner.cpp */; }; + FFFFb2d3e4807feab2d3e480 /* PxsNphaseImplementationContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDb2d3e4807feab2d3e480 /* PxsNphaseImplementationContext.cpp */; }; + FFFFb2d3e4e87feab2d3e4e8 /* PxsSimpleIslandManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDb2d3e4e87feab2d3e4e8 /* PxsSimpleIslandManager.cpp */; }; + FFFFb38188007feab3818800 /* collision/PxcContact.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDb38188007feab3818800 /* collision/PxcContact.cpp */; }; + FFFFb38188687feab3818868 /* pipeline/PxcContactCache.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDb38188687feab3818868 /* pipeline/PxcContactCache.cpp */; }; + FFFFb38188d07feab38188d0 /* pipeline/PxcContactMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDb38188d07feab38188d0 /* pipeline/PxcContactMethodImpl.cpp */; }; + FFFFb38189387feab3818938 /* pipeline/PxcMaterialHeightField.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDb38189387feab3818938 /* pipeline/PxcMaterialHeightField.cpp */; }; + FFFFb38189a07feab38189a0 /* pipeline/PxcMaterialMesh.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDb38189a07feab38189a0 /* pipeline/PxcMaterialMesh.cpp */; }; + FFFFb3818a087feab3818a08 /* pipeline/PxcMaterialMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDb3818a087feab3818a08 /* pipeline/PxcMaterialMethodImpl.cpp */; }; + FFFFb3818a707feab3818a70 /* pipeline/PxcMaterialShape.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDb3818a707feab3818a70 /* pipeline/PxcMaterialShape.cpp */; }; + FFFFb3818ad87feab3818ad8 /* pipeline/PxcNpBatch.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDb3818ad87feab3818ad8 /* pipeline/PxcNpBatch.cpp */; }; + FFFFb3818b407feab3818b40 /* pipeline/PxcNpCacheStreamPair.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDb3818b407feab3818b40 /* pipeline/PxcNpCacheStreamPair.cpp */; }; + FFFFb3818ba87feab3818ba8 /* pipeline/PxcNpContactPrepShared.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDb3818ba87feab3818ba8 /* pipeline/PxcNpContactPrepShared.cpp */; }; + FFFFb3818c107feab3818c10 /* pipeline/PxcNpMemBlockPool.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDb3818c107feab3818c10 /* pipeline/PxcNpMemBlockPool.cpp */; }; + FFFFb3818c787feab3818c78 /* pipeline/PxcNpThreadContext.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDb3818c787feab3818c78 /* pipeline/PxcNpThreadContext.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDfab277107fbcfab27710 /* LowLevel */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevel"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDfab2a4b07fbcfab2a4b0 /* px_globals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "px_globals.cpp"; path = "../../LowLevel/API/src/px_globals.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfab316007fbcfab31600 /* PxsMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCore.h"; path = "../../LowLevel/API/include/PxsMaterialCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDfab316687fbcfab31668 /* PxsMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialManager.h"; path = "../../LowLevel/API/include/PxsMaterialManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDfab316d07fbcfab316d0 /* PxvConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvConfig.h"; path = "../../LowLevel/API/include/PxvConfig.h"; sourceTree = SOURCE_ROOT; }; - FFFDfab317387fbcfab31738 /* PxvContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvContext.h"; path = "../../LowLevel/API/include/PxvContext.h"; sourceTree = SOURCE_ROOT; }; - FFFDfab317a07fbcfab317a0 /* PxvDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvDynamics.h"; path = "../../LowLevel/API/include/PxvDynamics.h"; sourceTree = SOURCE_ROOT; }; - FFFDfab318087fbcfab31808 /* PxvGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGeometry.h"; path = "../../LowLevel/API/include/PxvGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFDfab318707fbcfab31870 /* PxvGlobals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGlobals.h"; path = "../../LowLevel/API/include/PxvGlobals.h"; sourceTree = SOURCE_ROOT; }; - FFFDfab318d87fbcfab318d8 /* PxvManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvManager.h"; path = "../../LowLevel/API/include/PxvManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDfab319407fbcfab31940 /* PxvSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvSimStats.h"; path = "../../LowLevel/API/include/PxvSimStats.h"; sourceTree = SOURCE_ROOT; }; - FFFDfab328007fbcfab32800 /* PxsCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.cpp"; path = "../../LowLevel/software/src/PxsCCD.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfab328687fbcfab32868 /* PxsContactManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.cpp"; path = "../../LowLevel/software/src/PxsContactManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfab328d07fbcfab328d0 /* PxsContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.cpp"; path = "../../LowLevel/software/src/PxsContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfab329387fbcfab32938 /* PxsDefaultMemoryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.cpp"; path = "../../LowLevel/software/src/PxsDefaultMemoryManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfab329a07fbcfab329a0 /* PxsIslandSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.cpp"; path = "../../LowLevel/software/src/PxsIslandSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfab32a087fbcfab32a08 /* PxsMaterialCombiner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.cpp"; path = "../../LowLevel/software/src/PxsMaterialCombiner.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfab32a707fbcfab32a70 /* PxsNphaseImplementationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.cpp"; path = "../../LowLevel/software/src/PxsNphaseImplementationContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfab32ad87fbcfab32ad8 /* PxsSimpleIslandManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.cpp"; path = "../../LowLevel/software/src/PxsSimpleIslandManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa1bd6007fbcfa1bd600 /* PxsBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsBodySim.h"; path = "../../LowLevel/software/include/PxsBodySim.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1bd6687fbcfa1bd668 /* PxsCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.h"; path = "../../LowLevel/software/include/PxsCCD.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1bd6d07fbcfa1bd6d0 /* PxsContactManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.h"; path = "../../LowLevel/software/include/PxsContactManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1bd7387fbcfa1bd738 /* PxsContactManagerState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManagerState.h"; path = "../../LowLevel/software/include/PxsContactManagerState.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1bd7a07fbcfa1bd7a0 /* PxsContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.h"; path = "../../LowLevel/software/include/PxsContext.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1bd8087fbcfa1bd808 /* PxsDefaultMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.h"; path = "../../LowLevel/software/include/PxsDefaultMemoryManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1bd8707fbcfa1bd870 /* PxsHeapMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsHeapMemoryAllocator.h"; path = "../../LowLevel/software/include/PxsHeapMemoryAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1bd8d87fbcfa1bd8d8 /* PxsIncrementalConstraintPartitioning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIncrementalConstraintPartitioning.h"; path = "../../LowLevel/software/include/PxsIncrementalConstraintPartitioning.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1bd9407fbcfa1bd940 /* PxsIslandManagerTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandManagerTypes.h"; path = "../../LowLevel/software/include/PxsIslandManagerTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1bd9a87fbcfa1bd9a8 /* PxsIslandSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.h"; path = "../../LowLevel/software/include/PxsIslandSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1bda107fbcfa1bda10 /* PxsKernelWrangler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsKernelWrangler.h"; path = "../../LowLevel/software/include/PxsKernelWrangler.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1bda787fbcfa1bda78 /* PxsMaterialCombiner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.h"; path = "../../LowLevel/software/include/PxsMaterialCombiner.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1bdae07fbcfa1bdae0 /* PxsMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMemoryManager.h"; path = "../../LowLevel/software/include/PxsMemoryManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1bdb487fbcfa1bdb48 /* PxsNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxsNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1bdbb07fbcfa1bdbb0 /* PxsRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsRigidBody.h"; path = "../../LowLevel/software/include/PxsRigidBody.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1bdc187fbcfa1bdc18 /* PxsShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsShapeSim.h"; path = "../../LowLevel/software/include/PxsShapeSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1bdc807fbcfa1bdc80 /* PxsSimpleIslandManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.h"; path = "../../LowLevel/software/include/PxsSimpleIslandManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1bdce87fbcfa1bdce8 /* PxsSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimulationController.h"; path = "../../LowLevel/software/include/PxsSimulationController.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1bdd507fbcfa1bdd50 /* PxsTransformCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsTransformCache.h"; path = "../../LowLevel/software/include/PxsTransformCache.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1bddb87fbcfa1bddb8 /* PxvNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxvNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1bc0007fbcfa1bc000 /* collision/PxcContact.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContact.cpp"; path = "../../LowLevel/common/src/collision/PxcContact.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa1bc0687fbcfa1bc068 /* pipeline/PxcContactCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactCache.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa1bc0d07fbcfa1bc0d0 /* pipeline/PxcContactMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactMethodImpl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa1bc1387fbcfa1bc138 /* pipeline/PxcMaterialHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialHeightField.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa1bc1a07fbcfa1bc1a0 /* pipeline/PxcMaterialMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMesh.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa1bc2087fbcfa1bc208 /* pipeline/PxcMaterialMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMethodImpl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa1bc2707fbcfa1bc270 /* pipeline/PxcMaterialShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialShape.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialShape.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa1bc2d87fbcfa1bc2d8 /* pipeline/PxcNpBatch.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpBatch.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa1bc3407fbcfa1bc340 /* pipeline/PxcNpCacheStreamPair.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpCacheStreamPair.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa1bc3a87fbcfa1bc3a8 /* pipeline/PxcNpContactPrepShared.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpContactPrepShared.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa1bc4107fbcfa1bc410 /* pipeline/PxcNpMemBlockPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpMemBlockPool.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa1bc4787fbcfa1bc478 /* pipeline/PxcNpThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpThreadContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa1bc8007fbcfa1bc800 /* collision/PxcContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContactMethodImpl.h"; path = "../../LowLevel/common/include/collision/PxcContactMethodImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1bc8687fbcfa1bc868 /* pipeline/PxcCCDStateStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcCCDStateStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcCCDStateStreamPair.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1bc8d07fbcfa1bc8d0 /* pipeline/PxcConstraintBlockStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcConstraintBlockStream.h"; path = "../../LowLevel/common/include/pipeline/PxcConstraintBlockStream.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1bc9387fbcfa1bc938 /* pipeline/PxcContactCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.h"; path = "../../LowLevel/common/include/pipeline/PxcContactCache.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1bc9a07fbcfa1bc9a0 /* pipeline/PxcMaterialMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.h"; path = "../../LowLevel/common/include/pipeline/PxcMaterialMethodImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1bca087fbcfa1bca08 /* pipeline/PxcNpBatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.h"; path = "../../LowLevel/common/include/pipeline/PxcNpBatch.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1bca707fbcfa1bca70 /* pipeline/PxcNpCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCache.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCache.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1bcad87fbcfa1bcad8 /* pipeline/PxcNpCacheStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCacheStreamPair.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1bcb407fbcfa1bcb40 /* pipeline/PxcNpContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.h"; path = "../../LowLevel/common/include/pipeline/PxcNpContactPrepShared.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1bcba87fbcfa1bcba8 /* pipeline/PxcNpMemBlockPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.h"; path = "../../LowLevel/common/include/pipeline/PxcNpMemBlockPool.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1bcc107fbcfa1bcc10 /* pipeline/PxcNpThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.h"; path = "../../LowLevel/common/include/pipeline/PxcNpThreadContext.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1bcc787fbcfa1bcc78 /* pipeline/PxcNpWorkUnit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpWorkUnit.h"; path = "../../LowLevel/common/include/pipeline/PxcNpWorkUnit.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1bcce07fbcfa1bcce0 /* pipeline/PxcRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcRigidBody.h"; path = "../../LowLevel/common/include/pipeline/PxcRigidBody.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1bcd487fbcfa1bcd48 /* utils/PxcScratchAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "utils/PxcScratchAllocator.h"; path = "../../LowLevel/common/include/utils/PxcScratchAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1bcdb07fbcfa1bcdb0 /* utils/PxcThreadCoherentCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "utils/PxcThreadCoherentCache.h"; path = "../../LowLevel/common/include/utils/PxcThreadCoherentCache.h"; sourceTree = SOURCE_ROOT; }; + FFFDb2d343407feab2d34340 /* LowLevel */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevel"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDb2d3e8f07feab2d3e8f0 /* px_globals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "px_globals.cpp"; path = "../../LowLevel/API/src/px_globals.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb2d3ab407feab2d3ab40 /* PxsMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCore.h"; path = "../../LowLevel/API/include/PxsMaterialCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDb2d3aba87feab2d3aba8 /* PxsMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialManager.h"; path = "../../LowLevel/API/include/PxsMaterialManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDb2d3ac107feab2d3ac10 /* PxvConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvConfig.h"; path = "../../LowLevel/API/include/PxvConfig.h"; sourceTree = SOURCE_ROOT; }; + FFFDb2d3ac787feab2d3ac78 /* PxvContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvContext.h"; path = "../../LowLevel/API/include/PxvContext.h"; sourceTree = SOURCE_ROOT; }; + FFFDb2d3ace07feab2d3ace0 /* PxvDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvDynamics.h"; path = "../../LowLevel/API/include/PxvDynamics.h"; sourceTree = SOURCE_ROOT; }; + FFFDb2d3ad487feab2d3ad48 /* PxvGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGeometry.h"; path = "../../LowLevel/API/include/PxvGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFDb2d3adb07feab2d3adb0 /* PxvGlobals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGlobals.h"; path = "../../LowLevel/API/include/PxvGlobals.h"; sourceTree = SOURCE_ROOT; }; + FFFDb2d3ae187feab2d3ae18 /* PxvManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvManager.h"; path = "../../LowLevel/API/include/PxvManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDb2d3ae807feab2d3ae80 /* PxvSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvSimStats.h"; path = "../../LowLevel/API/include/PxvSimStats.h"; sourceTree = SOURCE_ROOT; }; + FFFDb2d3e2107feab2d3e210 /* PxsCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.cpp"; path = "../../LowLevel/software/src/PxsCCD.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb2d3e2787feab2d3e278 /* PxsContactManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.cpp"; path = "../../LowLevel/software/src/PxsContactManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb2d3e2e07feab2d3e2e0 /* PxsContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.cpp"; path = "../../LowLevel/software/src/PxsContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb2d3e3487feab2d3e348 /* PxsDefaultMemoryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.cpp"; path = "../../LowLevel/software/src/PxsDefaultMemoryManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb2d3e3b07feab2d3e3b0 /* PxsIslandSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.cpp"; path = "../../LowLevel/software/src/PxsIslandSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb2d3e4187feab2d3e418 /* PxsMaterialCombiner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.cpp"; path = "../../LowLevel/software/src/PxsMaterialCombiner.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb2d3e4807feab2d3e480 /* PxsNphaseImplementationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.cpp"; path = "../../LowLevel/software/src/PxsNphaseImplementationContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb2d3e4e87feab2d3e4e8 /* PxsSimpleIslandManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.cpp"; path = "../../LowLevel/software/src/PxsSimpleIslandManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3819e007feab3819e00 /* PxsBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsBodySim.h"; path = "../../LowLevel/software/include/PxsBodySim.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3819e687feab3819e68 /* PxsCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.h"; path = "../../LowLevel/software/include/PxsCCD.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3819ed07feab3819ed0 /* PxsContactManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.h"; path = "../../LowLevel/software/include/PxsContactManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3819f387feab3819f38 /* PxsContactManagerState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManagerState.h"; path = "../../LowLevel/software/include/PxsContactManagerState.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3819fa07feab3819fa0 /* PxsContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.h"; path = "../../LowLevel/software/include/PxsContext.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381a0087feab381a008 /* PxsDefaultMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.h"; path = "../../LowLevel/software/include/PxsDefaultMemoryManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381a0707feab381a070 /* PxsHeapMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsHeapMemoryAllocator.h"; path = "../../LowLevel/software/include/PxsHeapMemoryAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381a0d87feab381a0d8 /* PxsIncrementalConstraintPartitioning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIncrementalConstraintPartitioning.h"; path = "../../LowLevel/software/include/PxsIncrementalConstraintPartitioning.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381a1407feab381a140 /* PxsIslandManagerTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandManagerTypes.h"; path = "../../LowLevel/software/include/PxsIslandManagerTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381a1a87feab381a1a8 /* PxsIslandSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.h"; path = "../../LowLevel/software/include/PxsIslandSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381a2107feab381a210 /* PxsKernelWrangler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsKernelWrangler.h"; path = "../../LowLevel/software/include/PxsKernelWrangler.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381a2787feab381a278 /* PxsMaterialCombiner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.h"; path = "../../LowLevel/software/include/PxsMaterialCombiner.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381a2e07feab381a2e0 /* PxsMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMemoryManager.h"; path = "../../LowLevel/software/include/PxsMemoryManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381a3487feab381a348 /* PxsNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxsNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381a3b07feab381a3b0 /* PxsRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsRigidBody.h"; path = "../../LowLevel/software/include/PxsRigidBody.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381a4187feab381a418 /* PxsShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsShapeSim.h"; path = "../../LowLevel/software/include/PxsShapeSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381a4807feab381a480 /* PxsSimpleIslandManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.h"; path = "../../LowLevel/software/include/PxsSimpleIslandManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381a4e87feab381a4e8 /* PxsSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimulationController.h"; path = "../../LowLevel/software/include/PxsSimulationController.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381a5507feab381a550 /* PxsTransformCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsTransformCache.h"; path = "../../LowLevel/software/include/PxsTransformCache.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381a5b87feab381a5b8 /* PxvNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxvNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38188007feab3818800 /* collision/PxcContact.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContact.cpp"; path = "../../LowLevel/common/src/collision/PxcContact.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38188687feab3818868 /* pipeline/PxcContactCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactCache.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38188d07feab38188d0 /* pipeline/PxcContactMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactMethodImpl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38189387feab3818938 /* pipeline/PxcMaterialHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialHeightField.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38189a07feab38189a0 /* pipeline/PxcMaterialMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMesh.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3818a087feab3818a08 /* pipeline/PxcMaterialMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMethodImpl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3818a707feab3818a70 /* pipeline/PxcMaterialShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialShape.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialShape.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3818ad87feab3818ad8 /* pipeline/PxcNpBatch.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpBatch.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3818b407feab3818b40 /* pipeline/PxcNpCacheStreamPair.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpCacheStreamPair.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3818ba87feab3818ba8 /* pipeline/PxcNpContactPrepShared.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpContactPrepShared.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3818c107feab3818c10 /* pipeline/PxcNpMemBlockPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpMemBlockPool.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3818c787feab3818c78 /* pipeline/PxcNpThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpThreadContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38190007feab3819000 /* collision/PxcContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContactMethodImpl.h"; path = "../../LowLevel/common/include/collision/PxcContactMethodImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38190687feab3819068 /* pipeline/PxcCCDStateStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcCCDStateStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcCCDStateStreamPair.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38190d07feab38190d0 /* pipeline/PxcConstraintBlockStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcConstraintBlockStream.h"; path = "../../LowLevel/common/include/pipeline/PxcConstraintBlockStream.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38191387feab3819138 /* pipeline/PxcContactCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.h"; path = "../../LowLevel/common/include/pipeline/PxcContactCache.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38191a07feab38191a0 /* pipeline/PxcMaterialMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.h"; path = "../../LowLevel/common/include/pipeline/PxcMaterialMethodImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38192087feab3819208 /* pipeline/PxcNpBatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.h"; path = "../../LowLevel/common/include/pipeline/PxcNpBatch.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38192707feab3819270 /* pipeline/PxcNpCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCache.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCache.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38192d87feab38192d8 /* pipeline/PxcNpCacheStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCacheStreamPair.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38193407feab3819340 /* pipeline/PxcNpContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.h"; path = "../../LowLevel/common/include/pipeline/PxcNpContactPrepShared.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38193a87feab38193a8 /* pipeline/PxcNpMemBlockPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.h"; path = "../../LowLevel/common/include/pipeline/PxcNpMemBlockPool.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38194107feab3819410 /* pipeline/PxcNpThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.h"; path = "../../LowLevel/common/include/pipeline/PxcNpThreadContext.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38194787feab3819478 /* pipeline/PxcNpWorkUnit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpWorkUnit.h"; path = "../../LowLevel/common/include/pipeline/PxcNpWorkUnit.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38194e07feab38194e0 /* pipeline/PxcRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcRigidBody.h"; path = "../../LowLevel/common/include/pipeline/PxcRigidBody.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38195487feab3819548 /* utils/PxcScratchAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "utils/PxcScratchAllocator.h"; path = "../../LowLevel/common/include/utils/PxcScratchAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38195b07feab38195b0 /* 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 */ - FFF2fab277107fbcfab27710 /* Resources */ = { + FFF2b2d343407feab2d34340 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2415,7 +2415,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCfab277107fbcfab27710 /* Frameworks */ = { + FFFCb2d343407feab2d34340 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2425,31 +2425,31 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8fab277107fbcfab27710 /* Sources */ = { + FFF8b2d343407feab2d34340 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFfab2a4b07fbcfab2a4b0, - FFFFfab328007fbcfab32800, - FFFFfab328687fbcfab32868, - FFFFfab328d07fbcfab328d0, - FFFFfab329387fbcfab32938, - FFFFfab329a07fbcfab329a0, - FFFFfab32a087fbcfab32a08, - FFFFfab32a707fbcfab32a70, - FFFFfab32ad87fbcfab32ad8, - FFFFfa1bc0007fbcfa1bc000, - FFFFfa1bc0687fbcfa1bc068, - FFFFfa1bc0d07fbcfa1bc0d0, - FFFFfa1bc1387fbcfa1bc138, - FFFFfa1bc1a07fbcfa1bc1a0, - FFFFfa1bc2087fbcfa1bc208, - FFFFfa1bc2707fbcfa1bc270, - FFFFfa1bc2d87fbcfa1bc2d8, - FFFFfa1bc3407fbcfa1bc340, - FFFFfa1bc3a87fbcfa1bc3a8, - FFFFfa1bc4107fbcfa1bc410, - FFFFfa1bc4787fbcfa1bc478, + FFFFb2d3e8f07feab2d3e8f0, + FFFFb2d3e2107feab2d3e210, + FFFFb2d3e2787feab2d3e278, + FFFFb2d3e2e07feab2d3e2e0, + FFFFb2d3e3487feab2d3e348, + FFFFb2d3e3b07feab2d3e3b0, + FFFFb2d3e4187feab2d3e418, + FFFFb2d3e4807feab2d3e480, + FFFFb2d3e4e87feab2d3e4e8, + FFFFb38188007feab3818800, + FFFFb38188687feab3818868, + FFFFb38188d07feab38188d0, + FFFFb38189387feab3818938, + FFFFb38189a07feab38189a0, + FFFFb3818a087feab3818a08, + FFFFb3818a707feab3818a70, + FFFFb3818ad87feab3818ad8, + FFFFb3818b407feab3818b40, + FFFFb3818ba87feab3818ba8, + FFFFb3818c107feab3818c10, + FFFFb3818c787feab3818c78, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2461,38 +2461,38 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of LowLevelAABB */ - FFFFfa1c66707fbcfa1c6670 /* BpBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1c66707fbcfa1c6670 /* BpBroadPhase.cpp */; }; - FFFFfa1c66d87fbcfa1c66d8 /* BpBroadPhaseMBP.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1c66d87fbcfa1c66d8 /* BpBroadPhaseMBP.cpp */; }; - FFFFfa1c67407fbcfa1c6740 /* BpBroadPhaseSap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1c67407fbcfa1c6740 /* BpBroadPhaseSap.cpp */; }; - FFFFfa1c67a87fbcfa1c67a8 /* BpBroadPhaseSapAux.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1c67a87fbcfa1c67a8 /* BpBroadPhaseSapAux.cpp */; }; - FFFFfa1c68107fbcfa1c6810 /* BpMBPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1c68107fbcfa1c6810 /* BpMBPTasks.cpp */; }; - FFFFfa1c68787fbcfa1c6878 /* BpSAPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1c68787fbcfa1c6878 /* BpSAPTasks.cpp */; }; - FFFFfa1c68e07fbcfa1c68e0 /* BpSimpleAABBManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1c68e07fbcfa1c68e0 /* BpSimpleAABBManager.cpp */; }; + FFFFb201d6707feab201d670 /* BpBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb201d6707feab201d670 /* BpBroadPhase.cpp */; }; + FFFFb201d6d87feab201d6d8 /* BpBroadPhaseMBP.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb201d6d87feab201d6d8 /* BpBroadPhaseMBP.cpp */; }; + FFFFb201d7407feab201d740 /* BpBroadPhaseSap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb201d7407feab201d740 /* BpBroadPhaseSap.cpp */; }; + FFFFb201d7a87feab201d7a8 /* BpBroadPhaseSapAux.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb201d7a87feab201d7a8 /* BpBroadPhaseSapAux.cpp */; }; + FFFFb201d8107feab201d810 /* BpMBPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb201d8107feab201d810 /* BpMBPTasks.cpp */; }; + FFFFb201d8787feab201d878 /* BpSAPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb201d8787feab201d878 /* BpSAPTasks.cpp */; }; + FFFFb201d8e07feab201d8e0 /* BpSimpleAABBManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb201d8e07feab201d8e0 /* BpSimpleAABBManager.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDfab514407fbcfab51440 /* LowLevelAABB */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelAABB"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDfab4c6b07fbcfab4c6b0 /* BpAABBManagerTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpAABBManagerTasks.h"; path = "../../LowLevelAABB/include/BpAABBManagerTasks.h"; sourceTree = SOURCE_ROOT; }; - FFFDfab4c7187fbcfab4c718 /* BpBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.h"; path = "../../LowLevelAABB/include/BpBroadPhase.h"; sourceTree = SOURCE_ROOT; }; - FFFDfab4c7807fbcfab4c780 /* BpBroadPhaseUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseUpdate.h"; path = "../../LowLevelAABB/include/BpBroadPhaseUpdate.h"; sourceTree = SOURCE_ROOT; }; - FFFDfab4c7e87fbcfab4c7e8 /* BpSimpleAABBManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.h"; path = "../../LowLevelAABB/include/BpSimpleAABBManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1c64007fbcfa1c6400 /* BpBroadPhaseMBP.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1c64687fbcfa1c6468 /* BpBroadPhaseMBPCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBPCommon.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBPCommon.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1c64d07fbcfa1c64d0 /* BpBroadPhaseSap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1c65387fbcfa1c6538 /* BpBroadPhaseSapAux.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1c65a07fbcfa1c65a0 /* BpMBPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.h"; path = "../../LowLevelAABB/src/BpMBPTasks.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1c66087fbcfa1c6608 /* BpSAPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.h"; path = "../../LowLevelAABB/src/BpSAPTasks.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1c66707fbcfa1c6670 /* BpBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.cpp"; path = "../../LowLevelAABB/src/BpBroadPhase.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa1c66d87fbcfa1c66d8 /* BpBroadPhaseMBP.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa1c67407fbcfa1c6740 /* BpBroadPhaseSap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa1c67a87fbcfa1c67a8 /* BpBroadPhaseSapAux.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa1c68107fbcfa1c6810 /* BpMBPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.cpp"; path = "../../LowLevelAABB/src/BpMBPTasks.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa1c68787fbcfa1c6878 /* BpSAPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.cpp"; path = "../../LowLevelAABB/src/BpSAPTasks.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa1c68e07fbcfa1c68e0 /* BpSimpleAABBManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.cpp"; path = "../../LowLevelAABB/src/BpSimpleAABBManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb17424907feab1742490 /* LowLevelAABB */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelAABB"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDb17438407feab1743840 /* BpAABBManagerTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpAABBManagerTasks.h"; path = "../../LowLevelAABB/include/BpAABBManagerTasks.h"; sourceTree = SOURCE_ROOT; }; + FFFDb17438a87feab17438a8 /* BpBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.h"; path = "../../LowLevelAABB/include/BpBroadPhase.h"; sourceTree = SOURCE_ROOT; }; + FFFDb17439107feab1743910 /* BpBroadPhaseUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseUpdate.h"; path = "../../LowLevelAABB/include/BpBroadPhaseUpdate.h"; sourceTree = SOURCE_ROOT; }; + FFFDb17439787feab1743978 /* BpSimpleAABBManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.h"; path = "../../LowLevelAABB/include/BpSimpleAABBManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDb201d4007feab201d400 /* BpBroadPhaseMBP.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.h"; sourceTree = SOURCE_ROOT; }; + FFFDb201d4687feab201d468 /* BpBroadPhaseMBPCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBPCommon.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBPCommon.h"; sourceTree = SOURCE_ROOT; }; + FFFDb201d4d07feab201d4d0 /* BpBroadPhaseSap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.h"; sourceTree = SOURCE_ROOT; }; + FFFDb201d5387feab201d538 /* BpBroadPhaseSapAux.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.h"; sourceTree = SOURCE_ROOT; }; + FFFDb201d5a07feab201d5a0 /* BpMBPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.h"; path = "../../LowLevelAABB/src/BpMBPTasks.h"; sourceTree = SOURCE_ROOT; }; + FFFDb201d6087feab201d608 /* BpSAPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.h"; path = "../../LowLevelAABB/src/BpSAPTasks.h"; sourceTree = SOURCE_ROOT; }; + FFFDb201d6707feab201d670 /* BpBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.cpp"; path = "../../LowLevelAABB/src/BpBroadPhase.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb201d6d87feab201d6d8 /* BpBroadPhaseMBP.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb201d7407feab201d740 /* BpBroadPhaseSap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb201d7a87feab201d7a8 /* BpBroadPhaseSapAux.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb201d8107feab201d810 /* BpMBPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.cpp"; path = "../../LowLevelAABB/src/BpMBPTasks.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb201d8787feab201d878 /* BpSAPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.cpp"; path = "../../LowLevelAABB/src/BpSAPTasks.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb201d8e07feab201d8e0 /* BpSimpleAABBManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.cpp"; path = "../../LowLevelAABB/src/BpSimpleAABBManager.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2fab514407fbcfab51440 /* Resources */ = { + FFF2b17424907feab1742490 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2502,7 +2502,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCfab514407fbcfab51440 /* Frameworks */ = { + FFFCb17424907feab1742490 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2512,17 +2512,17 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8fab514407fbcfab51440 /* Sources */ = { + FFF8b17424907feab1742490 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFfa1c66707fbcfa1c6670, - FFFFfa1c66d87fbcfa1c66d8, - FFFFfa1c67407fbcfa1c6740, - FFFFfa1c67a87fbcfa1c67a8, - FFFFfa1c68107fbcfa1c6810, - FFFFfa1c68787fbcfa1c6878, - FFFFfa1c68e07fbcfa1c68e0, + FFFFb201d6707feab201d670, + FFFFb201d6d87feab201d6d8, + FFFFb201d7407feab201d740, + FFFFb201d7a87feab201d7a8, + FFFFb201d8107feab201d810, + FFFFb201d8787feab201d878, + FFFFb201d8e07feab201d8e0, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2534,106 +2534,106 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of LowLevelDynamics */ - FFFFfb820e007fbcfb820e00 /* DyArticulation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDfb820e007fbcfb820e00 /* DyArticulation.cpp */; }; - FFFFfb820e687fbcfb820e68 /* DyArticulationContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDfb820e687fbcfb820e68 /* DyArticulationContactPrep.cpp */; }; - FFFFfb820ed07fbcfb820ed0 /* DyArticulationContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDfb820ed07fbcfb820ed0 /* DyArticulationContactPrepPF.cpp */; }; - FFFFfb820f387fbcfb820f38 /* DyArticulationHelper.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDfb820f387fbcfb820f38 /* DyArticulationHelper.cpp */; }; - FFFFfb820fa07fbcfb820fa0 /* DyArticulationSIMD.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDfb820fa07fbcfb820fa0 /* DyArticulationSIMD.cpp */; }; - FFFFfb8210087fbcfb821008 /* DyArticulationScalar.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDfb8210087fbcfb821008 /* DyArticulationScalar.cpp */; }; - FFFFfb8210707fbcfb821070 /* DyConstraintPartition.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDfb8210707fbcfb821070 /* DyConstraintPartition.cpp */; }; - FFFFfb8210d87fbcfb8210d8 /* DyConstraintSetup.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDfb8210d87fbcfb8210d8 /* DyConstraintSetup.cpp */; }; - FFFFfb8211407fbcfb821140 /* DyConstraintSetupBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDfb8211407fbcfb821140 /* DyConstraintSetupBlock.cpp */; }; - FFFFfb8211a87fbcfb8211a8 /* DyContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDfb8211a87fbcfb8211a8 /* DyContactPrep.cpp */; }; - FFFFfb8212107fbcfb821210 /* DyContactPrep4.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDfb8212107fbcfb821210 /* DyContactPrep4.cpp */; }; - FFFFfb8212787fbcfb821278 /* DyContactPrep4PF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDfb8212787fbcfb821278 /* DyContactPrep4PF.cpp */; }; - FFFFfb8212e07fbcfb8212e0 /* DyContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDfb8212e07fbcfb8212e0 /* DyContactPrepPF.cpp */; }; - FFFFfb8213487fbcfb821348 /* DyDynamics.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDfb8213487fbcfb821348 /* DyDynamics.cpp */; }; - FFFFfb8213b07fbcfb8213b0 /* DyFrictionCorrelation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDfb8213b07fbcfb8213b0 /* DyFrictionCorrelation.cpp */; }; - FFFFfb8214187fbcfb821418 /* DyRigidBodyToSolverBody.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDfb8214187fbcfb821418 /* DyRigidBodyToSolverBody.cpp */; }; - FFFFfb8214807fbcfb821480 /* DySolverConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDfb8214807fbcfb821480 /* DySolverConstraints.cpp */; }; - FFFFfb8214e87fbcfb8214e8 /* DySolverConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDfb8214e87fbcfb8214e8 /* DySolverConstraintsBlock.cpp */; }; - FFFFfb8215507fbcfb821550 /* DySolverControl.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDfb8215507fbcfb821550 /* DySolverControl.cpp */; }; - FFFFfb8215b87fbcfb8215b8 /* DySolverControlPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDfb8215b87fbcfb8215b8 /* DySolverControlPF.cpp */; }; - FFFFfb8216207fbcfb821620 /* DySolverPFConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDfb8216207fbcfb821620 /* DySolverPFConstraints.cpp */; }; - FFFFfb8216887fbcfb821688 /* DySolverPFConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDfb8216887fbcfb821688 /* DySolverPFConstraintsBlock.cpp */; }; - FFFFfb8216f07fbcfb8216f0 /* DyThreadContext.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDfb8216f07fbcfb8216f0 /* DyThreadContext.cpp */; }; - FFFFfb8217587fbcfb821758 /* DyThresholdTable.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDfb8217587fbcfb821758 /* DyThresholdTable.cpp */; }; + FFFFb20266007feab2026600 /* DyArticulation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb20266007feab2026600 /* DyArticulation.cpp */; }; + FFFFb20266687feab2026668 /* DyArticulationContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb20266687feab2026668 /* DyArticulationContactPrep.cpp */; }; + FFFFb20266d07feab20266d0 /* DyArticulationContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb20266d07feab20266d0 /* DyArticulationContactPrepPF.cpp */; }; + FFFFb20267387feab2026738 /* DyArticulationHelper.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb20267387feab2026738 /* DyArticulationHelper.cpp */; }; + FFFFb20267a07feab20267a0 /* DyArticulationSIMD.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb20267a07feab20267a0 /* DyArticulationSIMD.cpp */; }; + FFFFb20268087feab2026808 /* DyArticulationScalar.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb20268087feab2026808 /* DyArticulationScalar.cpp */; }; + FFFFb20268707feab2026870 /* DyConstraintPartition.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb20268707feab2026870 /* DyConstraintPartition.cpp */; }; + FFFFb20268d87feab20268d8 /* DyConstraintSetup.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb20268d87feab20268d8 /* DyConstraintSetup.cpp */; }; + FFFFb20269407feab2026940 /* DyConstraintSetupBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb20269407feab2026940 /* DyConstraintSetupBlock.cpp */; }; + FFFFb20269a87feab20269a8 /* DyContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb20269a87feab20269a8 /* DyContactPrep.cpp */; }; + FFFFb2026a107feab2026a10 /* DyContactPrep4.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb2026a107feab2026a10 /* DyContactPrep4.cpp */; }; + FFFFb2026a787feab2026a78 /* DyContactPrep4PF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb2026a787feab2026a78 /* DyContactPrep4PF.cpp */; }; + FFFFb2026ae07feab2026ae0 /* DyContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb2026ae07feab2026ae0 /* DyContactPrepPF.cpp */; }; + FFFFb2026b487feab2026b48 /* DyDynamics.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb2026b487feab2026b48 /* DyDynamics.cpp */; }; + FFFFb2026bb07feab2026bb0 /* DyFrictionCorrelation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb2026bb07feab2026bb0 /* DyFrictionCorrelation.cpp */; }; + FFFFb2026c187feab2026c18 /* DyRigidBodyToSolverBody.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb2026c187feab2026c18 /* DyRigidBodyToSolverBody.cpp */; }; + FFFFb2026c807feab2026c80 /* DySolverConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb2026c807feab2026c80 /* DySolverConstraints.cpp */; }; + FFFFb2026ce87feab2026ce8 /* DySolverConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb2026ce87feab2026ce8 /* DySolverConstraintsBlock.cpp */; }; + FFFFb2026d507feab2026d50 /* DySolverControl.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb2026d507feab2026d50 /* DySolverControl.cpp */; }; + FFFFb2026db87feab2026db8 /* DySolverControlPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb2026db87feab2026db8 /* DySolverControlPF.cpp */; }; + FFFFb2026e207feab2026e20 /* DySolverPFConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb2026e207feab2026e20 /* DySolverPFConstraints.cpp */; }; + FFFFb2026e887feab2026e88 /* DySolverPFConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb2026e887feab2026e88 /* DySolverPFConstraintsBlock.cpp */; }; + FFFFb2026ef07feab2026ef0 /* DyThreadContext.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb2026ef07feab2026ef0 /* DyThreadContext.cpp */; }; + FFFFb2026f587feab2026f58 /* DyThresholdTable.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb2026f587feab2026f58 /* DyThresholdTable.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDfaef20807fbcfaef2080 /* LowLevelDynamics */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelDynamics"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDfb820e007fbcfb820e00 /* DyArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.cpp"; path = "../../LowLevelDynamics/src/DyArticulation.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb820e687fbcfb820e68 /* DyArticulationContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb820ed07fbcfb820ed0 /* DyArticulationContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb820f387fbcfb820f38 /* DyArticulationHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.cpp"; path = "../../LowLevelDynamics/src/DyArticulationHelper.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb820fa07fbcfb820fa0 /* DyArticulationSIMD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationSIMD.cpp"; path = "../../LowLevelDynamics/src/DyArticulationSIMD.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb8210087fbcfb821008 /* DyArticulationScalar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.cpp"; path = "../../LowLevelDynamics/src/DyArticulationScalar.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb8210707fbcfb821070 /* DyConstraintPartition.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.cpp"; path = "../../LowLevelDynamics/src/DyConstraintPartition.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb8210d87fbcfb8210d8 /* DyConstraintSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetup.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetup.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb8211407fbcfb821140 /* DyConstraintSetupBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetupBlock.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetupBlock.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb8211a87fbcfb8211a8 /* DyContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb8212107fbcfb821210 /* DyContactPrep4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb8212787fbcfb821278 /* DyContactPrep4PF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4PF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4PF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb8212e07fbcfb8212e0 /* DyContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb8213487fbcfb821348 /* DyDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.cpp"; path = "../../LowLevelDynamics/src/DyDynamics.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb8213b07fbcfb8213b0 /* DyFrictionCorrelation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionCorrelation.cpp"; path = "../../LowLevelDynamics/src/DyFrictionCorrelation.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb8214187fbcfb821418 /* DyRigidBodyToSolverBody.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyRigidBodyToSolverBody.cpp"; path = "../../LowLevelDynamics/src/DyRigidBodyToSolverBody.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb8214807fbcfb821480 /* DySolverConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraints.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb8214e87fbcfb8214e8 /* DySolverConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb8215507fbcfb821550 /* DySolverControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.cpp"; path = "../../LowLevelDynamics/src/DySolverControl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb8215b87fbcfb8215b8 /* DySolverControlPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.cpp"; path = "../../LowLevelDynamics/src/DySolverControlPF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb8216207fbcfb821620 /* DySolverPFConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraints.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb8216887fbcfb821688 /* DySolverPFConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb8216f07fbcfb8216f0 /* DyThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.cpp"; path = "../../LowLevelDynamics/src/DyThreadContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfb8217587fbcfb821758 /* DyThresholdTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.cpp"; path = "../../LowLevelDynamics/src/DyThresholdTable.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfaf0b7b07fbcfaf0b7b0 /* DyArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.h"; path = "../../LowLevelDynamics/include/DyArticulation.h"; sourceTree = SOURCE_ROOT; }; - FFFDfaf0b8187fbcfaf0b818 /* DyConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraint.h"; path = "../../LowLevelDynamics/include/DyConstraint.h"; sourceTree = SOURCE_ROOT; }; - FFFDfaf0b8807fbcfaf0b880 /* DyConstraintWriteBack.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintWriteBack.h"; path = "../../LowLevelDynamics/include/DyConstraintWriteBack.h"; sourceTree = SOURCE_ROOT; }; - FFFDfaf0b8e87fbcfaf0b8e8 /* DyContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContext.h"; path = "../../LowLevelDynamics/include/DyContext.h"; sourceTree = SOURCE_ROOT; }; - FFFDfaf0b9507fbcfaf0b950 /* DyGpuAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyGpuAPI.h"; path = "../../LowLevelDynamics/include/DyGpuAPI.h"; sourceTree = SOURCE_ROOT; }; - FFFDfaf0b9b87fbcfaf0b9b8 /* DySleepingConfigulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySleepingConfigulation.h"; path = "../../LowLevelDynamics/include/DySleepingConfigulation.h"; sourceTree = SOURCE_ROOT; }; - FFFDfaf0ba207fbcfaf0ba20 /* DyThresholdTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.h"; path = "../../LowLevelDynamics/include/DyThresholdTable.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb8220007fbcfb822000 /* DyArticulationContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.h"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb8220687fbcfb822068 /* DyArticulationFnsDebug.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsDebug.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsDebug.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb8220d07fbcfb8220d0 /* DyArticulationFnsScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsScalar.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb8221387fbcfb822138 /* DyArticulationFnsSimd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsSimd.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsSimd.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb8221a07fbcfb8221a0 /* DyArticulationHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.h"; path = "../../LowLevelDynamics/src/DyArticulationHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb8222087fbcfb822208 /* DyArticulationPImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationPImpl.h"; path = "../../LowLevelDynamics/src/DyArticulationPImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb8222707fbcfb822270 /* DyArticulationReference.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationReference.h"; path = "../../LowLevelDynamics/src/DyArticulationReference.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb8222d87fbcfb8222d8 /* DyArticulationScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationScalar.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb8223407fbcfb822340 /* DyArticulationUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationUtils.h"; path = "../../LowLevelDynamics/src/DyArticulationUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb8223a87fbcfb8223a8 /* DyBodyCoreIntegrator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyBodyCoreIntegrator.h"; path = "../../LowLevelDynamics/src/DyBodyCoreIntegrator.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb8224107fbcfb822410 /* DyConstraintPartition.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.h"; path = "../../LowLevelDynamics/src/DyConstraintPartition.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb8224787fbcfb822478 /* DyConstraintPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPrep.h"; path = "../../LowLevelDynamics/src/DyConstraintPrep.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb8224e07fbcfb8224e0 /* DyContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.h"; path = "../../LowLevelDynamics/src/DyContactPrep.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb8225487fbcfb822548 /* DyContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepShared.h"; path = "../../LowLevelDynamics/src/DyContactPrepShared.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb8225b07fbcfb8225b0 /* DyContactReduction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactReduction.h"; path = "../../LowLevelDynamics/src/DyContactReduction.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb8226187fbcfb822618 /* DyCorrelationBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyCorrelationBuffer.h"; path = "../../LowLevelDynamics/src/DyCorrelationBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb8226807fbcfb822680 /* DyDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.h"; path = "../../LowLevelDynamics/src/DyDynamics.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb8226e87fbcfb8226e8 /* DyFrictionPatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatch.h"; path = "../../LowLevelDynamics/src/DyFrictionPatch.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb8227507fbcfb822750 /* DyFrictionPatchStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatchStreamPair.h"; path = "../../LowLevelDynamics/src/DyFrictionPatchStreamPair.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb8227b87fbcfb8227b8 /* DySolverBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverBody.h"; path = "../../LowLevelDynamics/src/DySolverBody.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb8228207fbcfb822820 /* DySolverConstraint1D.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb8228887fbcfb822888 /* DySolverConstraint1D4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D4.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D4.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb8228f07fbcfb8228f0 /* DySolverConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintDesc.h"; path = "../../LowLevelDynamics/src/DySolverConstraintDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb8229587fbcfb822958 /* DySolverConstraintExtShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintExtShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintExtShared.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb8229c07fbcfb8229c0 /* DySolverConstraintTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintTypes.h"; path = "../../LowLevelDynamics/src/DySolverConstraintTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb822a287fbcfb822a28 /* DySolverConstraintsShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintsShared.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb822a907fbcfb822a90 /* DySolverContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact.h"; path = "../../LowLevelDynamics/src/DySolverContact.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb822af87fbcfb822af8 /* DySolverContact4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact4.h"; path = "../../LowLevelDynamics/src/DySolverContact4.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb822b607fbcfb822b60 /* DySolverContactPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF.h"; path = "../../LowLevelDynamics/src/DySolverContactPF.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb822bc87fbcfb822bc8 /* DySolverContactPF4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF4.h"; path = "../../LowLevelDynamics/src/DySolverContactPF4.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb822c307fbcfb822c30 /* DySolverContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContext.h"; path = "../../LowLevelDynamics/src/DySolverContext.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb822c987fbcfb822c98 /* DySolverControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.h"; path = "../../LowLevelDynamics/src/DySolverControl.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb822d007fbcfb822d00 /* DySolverControlPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.h"; path = "../../LowLevelDynamics/src/DySolverControlPF.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb822d687fbcfb822d68 /* DySolverCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverCore.h"; path = "../../LowLevelDynamics/src/DySolverCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb822dd07fbcfb822dd0 /* DySolverExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverExt.h"; path = "../../LowLevelDynamics/src/DySolverExt.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb822e387fbcfb822e38 /* DySpatial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySpatial.h"; path = "../../LowLevelDynamics/src/DySpatial.h"; sourceTree = SOURCE_ROOT; }; - FFFDfb822ea07fbcfb822ea0 /* DyThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.h"; path = "../../LowLevelDynamics/src/DyThreadContext.h"; sourceTree = SOURCE_ROOT; }; + FFFDb1761b707feab1761b70 /* LowLevelDynamics */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelDynamics"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDb20266007feab2026600 /* DyArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.cpp"; path = "../../LowLevelDynamics/src/DyArticulation.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb20266687feab2026668 /* DyArticulationContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb20266d07feab20266d0 /* DyArticulationContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb20267387feab2026738 /* DyArticulationHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.cpp"; path = "../../LowLevelDynamics/src/DyArticulationHelper.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb20267a07feab20267a0 /* DyArticulationSIMD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationSIMD.cpp"; path = "../../LowLevelDynamics/src/DyArticulationSIMD.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb20268087feab2026808 /* DyArticulationScalar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.cpp"; path = "../../LowLevelDynamics/src/DyArticulationScalar.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb20268707feab2026870 /* DyConstraintPartition.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.cpp"; path = "../../LowLevelDynamics/src/DyConstraintPartition.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb20268d87feab20268d8 /* DyConstraintSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetup.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetup.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb20269407feab2026940 /* DyConstraintSetupBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetupBlock.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetupBlock.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb20269a87feab20269a8 /* DyContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb2026a107feab2026a10 /* DyContactPrep4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb2026a787feab2026a78 /* DyContactPrep4PF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4PF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4PF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb2026ae07feab2026ae0 /* DyContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb2026b487feab2026b48 /* DyDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.cpp"; path = "../../LowLevelDynamics/src/DyDynamics.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb2026bb07feab2026bb0 /* DyFrictionCorrelation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionCorrelation.cpp"; path = "../../LowLevelDynamics/src/DyFrictionCorrelation.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb2026c187feab2026c18 /* DyRigidBodyToSolverBody.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyRigidBodyToSolverBody.cpp"; path = "../../LowLevelDynamics/src/DyRigidBodyToSolverBody.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb2026c807feab2026c80 /* DySolverConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraints.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb2026ce87feab2026ce8 /* DySolverConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb2026d507feab2026d50 /* DySolverControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.cpp"; path = "../../LowLevelDynamics/src/DySolverControl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb2026db87feab2026db8 /* DySolverControlPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.cpp"; path = "../../LowLevelDynamics/src/DySolverControlPF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb2026e207feab2026e20 /* DySolverPFConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraints.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb2026e887feab2026e88 /* DySolverPFConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb2026ef07feab2026ef0 /* DyThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.cpp"; path = "../../LowLevelDynamics/src/DyThreadContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb2026f587feab2026f58 /* DyThresholdTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.cpp"; path = "../../LowLevelDynamics/src/DyThresholdTable.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb17584b07feab17584b0 /* DyArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.h"; path = "../../LowLevelDynamics/include/DyArticulation.h"; sourceTree = SOURCE_ROOT; }; + FFFDb17585187feab1758518 /* DyConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraint.h"; path = "../../LowLevelDynamics/include/DyConstraint.h"; sourceTree = SOURCE_ROOT; }; + FFFDb17585807feab1758580 /* DyConstraintWriteBack.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintWriteBack.h"; path = "../../LowLevelDynamics/include/DyConstraintWriteBack.h"; sourceTree = SOURCE_ROOT; }; + FFFDb17585e87feab17585e8 /* DyContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContext.h"; path = "../../LowLevelDynamics/include/DyContext.h"; sourceTree = SOURCE_ROOT; }; + FFFDb17586507feab1758650 /* DyGpuAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyGpuAPI.h"; path = "../../LowLevelDynamics/include/DyGpuAPI.h"; sourceTree = SOURCE_ROOT; }; + FFFDb17586b87feab17586b8 /* DySleepingConfigulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySleepingConfigulation.h"; path = "../../LowLevelDynamics/include/DySleepingConfigulation.h"; sourceTree = SOURCE_ROOT; }; + FFFDb17587207feab1758720 /* DyThresholdTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.h"; path = "../../LowLevelDynamics/include/DyThresholdTable.h"; sourceTree = SOURCE_ROOT; }; + FFFDb20278007feab2027800 /* DyArticulationContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.h"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.h"; sourceTree = SOURCE_ROOT; }; + FFFDb20278687feab2027868 /* DyArticulationFnsDebug.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsDebug.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsDebug.h"; sourceTree = SOURCE_ROOT; }; + FFFDb20278d07feab20278d0 /* DyArticulationFnsScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsScalar.h"; sourceTree = SOURCE_ROOT; }; + FFFDb20279387feab2027938 /* DyArticulationFnsSimd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsSimd.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsSimd.h"; sourceTree = SOURCE_ROOT; }; + FFFDb20279a07feab20279a0 /* DyArticulationHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.h"; path = "../../LowLevelDynamics/src/DyArticulationHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFDb2027a087feab2027a08 /* DyArticulationPImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationPImpl.h"; path = "../../LowLevelDynamics/src/DyArticulationPImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFDb2027a707feab2027a70 /* DyArticulationReference.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationReference.h"; path = "../../LowLevelDynamics/src/DyArticulationReference.h"; sourceTree = SOURCE_ROOT; }; + FFFDb2027ad87feab2027ad8 /* DyArticulationScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationScalar.h"; sourceTree = SOURCE_ROOT; }; + FFFDb2027b407feab2027b40 /* DyArticulationUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationUtils.h"; path = "../../LowLevelDynamics/src/DyArticulationUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFDb2027ba87feab2027ba8 /* DyBodyCoreIntegrator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyBodyCoreIntegrator.h"; path = "../../LowLevelDynamics/src/DyBodyCoreIntegrator.h"; sourceTree = SOURCE_ROOT; }; + FFFDb2027c107feab2027c10 /* DyConstraintPartition.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.h"; path = "../../LowLevelDynamics/src/DyConstraintPartition.h"; sourceTree = SOURCE_ROOT; }; + FFFDb2027c787feab2027c78 /* DyConstraintPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPrep.h"; path = "../../LowLevelDynamics/src/DyConstraintPrep.h"; sourceTree = SOURCE_ROOT; }; + FFFDb2027ce07feab2027ce0 /* DyContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.h"; path = "../../LowLevelDynamics/src/DyContactPrep.h"; sourceTree = SOURCE_ROOT; }; + FFFDb2027d487feab2027d48 /* DyContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepShared.h"; path = "../../LowLevelDynamics/src/DyContactPrepShared.h"; sourceTree = SOURCE_ROOT; }; + FFFDb2027db07feab2027db0 /* DyContactReduction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactReduction.h"; path = "../../LowLevelDynamics/src/DyContactReduction.h"; sourceTree = SOURCE_ROOT; }; + FFFDb2027e187feab2027e18 /* DyCorrelationBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyCorrelationBuffer.h"; path = "../../LowLevelDynamics/src/DyCorrelationBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFDb2027e807feab2027e80 /* DyDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.h"; path = "../../LowLevelDynamics/src/DyDynamics.h"; sourceTree = SOURCE_ROOT; }; + FFFDb2027ee87feab2027ee8 /* DyFrictionPatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatch.h"; path = "../../LowLevelDynamics/src/DyFrictionPatch.h"; sourceTree = SOURCE_ROOT; }; + FFFDb2027f507feab2027f50 /* DyFrictionPatchStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatchStreamPair.h"; path = "../../LowLevelDynamics/src/DyFrictionPatchStreamPair.h"; sourceTree = SOURCE_ROOT; }; + FFFDb2027fb87feab2027fb8 /* DySolverBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverBody.h"; path = "../../LowLevelDynamics/src/DySolverBody.h"; sourceTree = SOURCE_ROOT; }; + FFFDb20280207feab2028020 /* DySolverConstraint1D.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D.h"; sourceTree = SOURCE_ROOT; }; + FFFDb20280887feab2028088 /* DySolverConstraint1D4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D4.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D4.h"; sourceTree = SOURCE_ROOT; }; + FFFDb20280f07feab20280f0 /* DySolverConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintDesc.h"; path = "../../LowLevelDynamics/src/DySolverConstraintDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFDb20281587feab2028158 /* DySolverConstraintExtShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintExtShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintExtShared.h"; sourceTree = SOURCE_ROOT; }; + FFFDb20281c07feab20281c0 /* DySolverConstraintTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintTypes.h"; path = "../../LowLevelDynamics/src/DySolverConstraintTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFDb20282287feab2028228 /* DySolverConstraintsShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintsShared.h"; sourceTree = SOURCE_ROOT; }; + FFFDb20282907feab2028290 /* DySolverContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact.h"; path = "../../LowLevelDynamics/src/DySolverContact.h"; sourceTree = SOURCE_ROOT; }; + FFFDb20282f87feab20282f8 /* DySolverContact4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact4.h"; path = "../../LowLevelDynamics/src/DySolverContact4.h"; sourceTree = SOURCE_ROOT; }; + FFFDb20283607feab2028360 /* DySolverContactPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF.h"; path = "../../LowLevelDynamics/src/DySolverContactPF.h"; sourceTree = SOURCE_ROOT; }; + FFFDb20283c87feab20283c8 /* DySolverContactPF4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF4.h"; path = "../../LowLevelDynamics/src/DySolverContactPF4.h"; sourceTree = SOURCE_ROOT; }; + FFFDb20284307feab2028430 /* DySolverContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContext.h"; path = "../../LowLevelDynamics/src/DySolverContext.h"; sourceTree = SOURCE_ROOT; }; + FFFDb20284987feab2028498 /* DySolverControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.h"; path = "../../LowLevelDynamics/src/DySolverControl.h"; sourceTree = SOURCE_ROOT; }; + FFFDb20285007feab2028500 /* DySolverControlPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.h"; path = "../../LowLevelDynamics/src/DySolverControlPF.h"; sourceTree = SOURCE_ROOT; }; + FFFDb20285687feab2028568 /* DySolverCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverCore.h"; path = "../../LowLevelDynamics/src/DySolverCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDb20285d07feab20285d0 /* DySolverExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverExt.h"; path = "../../LowLevelDynamics/src/DySolverExt.h"; sourceTree = SOURCE_ROOT; }; + FFFDb20286387feab2028638 /* DySpatial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySpatial.h"; path = "../../LowLevelDynamics/src/DySpatial.h"; sourceTree = SOURCE_ROOT; }; + FFFDb20286a07feab20286a0 /* DyThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.h"; path = "../../LowLevelDynamics/src/DyThreadContext.h"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2faef20807fbcfaef2080 /* Resources */ = { + FFF2b1761b707feab1761b70 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2643,7 +2643,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCfaef20807fbcfaef2080 /* Frameworks */ = { + FFFCb1761b707feab1761b70 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2653,34 +2653,34 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8faef20807fbcfaef2080 /* Sources */ = { + FFF8b1761b707feab1761b70 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFfb820e007fbcfb820e00, - FFFFfb820e687fbcfb820e68, - FFFFfb820ed07fbcfb820ed0, - FFFFfb820f387fbcfb820f38, - FFFFfb820fa07fbcfb820fa0, - FFFFfb8210087fbcfb821008, - FFFFfb8210707fbcfb821070, - FFFFfb8210d87fbcfb8210d8, - FFFFfb8211407fbcfb821140, - FFFFfb8211a87fbcfb8211a8, - FFFFfb8212107fbcfb821210, - FFFFfb8212787fbcfb821278, - FFFFfb8212e07fbcfb8212e0, - FFFFfb8213487fbcfb821348, - FFFFfb8213b07fbcfb8213b0, - FFFFfb8214187fbcfb821418, - FFFFfb8214807fbcfb821480, - FFFFfb8214e87fbcfb8214e8, - FFFFfb8215507fbcfb821550, - FFFFfb8215b87fbcfb8215b8, - FFFFfb8216207fbcfb821620, - FFFFfb8216887fbcfb821688, - FFFFfb8216f07fbcfb8216f0, - FFFFfb8217587fbcfb821758, + FFFFb20266007feab2026600, + FFFFb20266687feab2026668, + FFFFb20266d07feab20266d0, + FFFFb20267387feab2026738, + FFFFb20267a07feab20267a0, + FFFFb20268087feab2026808, + FFFFb20268707feab2026870, + FFFFb20268d87feab20268d8, + FFFFb20269407feab2026940, + FFFFb20269a87feab20269a8, + FFFFb2026a107feab2026a10, + FFFFb2026a787feab2026a78, + FFFFb2026ae07feab2026ae0, + FFFFb2026b487feab2026b48, + FFFFb2026bb07feab2026bb0, + FFFFb2026c187feab2026c18, + FFFFb2026c807feab2026c80, + FFFFb2026ce87feab2026ce8, + FFFFb2026d507feab2026d50, + FFFFb2026db87feab2026db8, + FFFFb2026e207feab2026e20, + FFFFb2026e887feab2026e88, + FFFFb2026ef07feab2026ef0, + FFFFb2026f587feab2026f58, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2692,70 +2692,70 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of LowLevelCloth */ - FFFFfa1d0b587fbcfa1d0b58 /* Allocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1d0b587fbcfa1d0b58 /* Allocator.cpp */; }; - FFFFfa1d0bc07fbcfa1d0bc0 /* Factory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1d0bc07fbcfa1d0bc0 /* Factory.cpp */; }; - FFFFfa1d0c287fbcfa1d0c28 /* PhaseConfig.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1d0c287fbcfa1d0c28 /* PhaseConfig.cpp */; }; - FFFFfa1d0c907fbcfa1d0c90 /* SwCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1d0c907fbcfa1d0c90 /* SwCloth.cpp */; }; - FFFFfa1d0cf87fbcfa1d0cf8 /* SwClothData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1d0cf87fbcfa1d0cf8 /* SwClothData.cpp */; }; - FFFFfa1d0d607fbcfa1d0d60 /* SwCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1d0d607fbcfa1d0d60 /* SwCollision.cpp */; }; - FFFFfa1d0dc87fbcfa1d0dc8 /* SwFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1d0dc87fbcfa1d0dc8 /* SwFabric.cpp */; }; - FFFFfa1d0e307fbcfa1d0e30 /* SwFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1d0e307fbcfa1d0e30 /* SwFactory.cpp */; }; - FFFFfa1d0e987fbcfa1d0e98 /* SwInterCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1d0e987fbcfa1d0e98 /* SwInterCollision.cpp */; }; - FFFFfa1d0f007fbcfa1d0f00 /* SwSelfCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1d0f007fbcfa1d0f00 /* SwSelfCollision.cpp */; }; - FFFFfa1d0f687fbcfa1d0f68 /* SwSolver.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1d0f687fbcfa1d0f68 /* SwSolver.cpp */; }; - FFFFfa1d0fd07fbcfa1d0fd0 /* SwSolverKernel.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1d0fd07fbcfa1d0fd0 /* SwSolverKernel.cpp */; }; - FFFFfa1d10387fbcfa1d1038 /* TripletScheduler.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfa1d10387fbcfa1d1038 /* TripletScheduler.cpp */; }; + FFFFb38243587feab3824358 /* Allocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb38243587feab3824358 /* Allocator.cpp */; }; + FFFFb38243c07feab38243c0 /* Factory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb38243c07feab38243c0 /* Factory.cpp */; }; + FFFFb38244287feab3824428 /* PhaseConfig.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb38244287feab3824428 /* PhaseConfig.cpp */; }; + FFFFb38244907feab3824490 /* SwCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb38244907feab3824490 /* SwCloth.cpp */; }; + FFFFb38244f87feab38244f8 /* SwClothData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb38244f87feab38244f8 /* SwClothData.cpp */; }; + FFFFb38245607feab3824560 /* SwCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb38245607feab3824560 /* SwCollision.cpp */; }; + FFFFb38245c87feab38245c8 /* SwFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb38245c87feab38245c8 /* SwFabric.cpp */; }; + FFFFb38246307feab3824630 /* SwFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb38246307feab3824630 /* SwFactory.cpp */; }; + FFFFb38246987feab3824698 /* SwInterCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb38246987feab3824698 /* SwInterCollision.cpp */; }; + FFFFb38247007feab3824700 /* SwSelfCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb38247007feab3824700 /* SwSelfCollision.cpp */; }; + FFFFb38247687feab3824768 /* SwSolver.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb38247687feab3824768 /* SwSolver.cpp */; }; + FFFFb38247d07feab38247d0 /* SwSolverKernel.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb38247d07feab38247d0 /* SwSolverKernel.cpp */; }; + FFFFb38248387feab3824838 /* TripletScheduler.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb38248387feab3824838 /* TripletScheduler.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDfab48c407fbcfab48c40 /* LowLevelCloth */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelCloth"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDfab60ea07fbcfab60ea0 /* Cloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cloth.h"; path = "../../LowLevelCloth/include/Cloth.h"; sourceTree = SOURCE_ROOT; }; - FFFDfab60f087fbcfab60f08 /* Fabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Fabric.h"; path = "../../LowLevelCloth/include/Fabric.h"; sourceTree = SOURCE_ROOT; }; - FFFDfab60f707fbcfab60f70 /* Factory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.h"; path = "../../LowLevelCloth/include/Factory.h"; sourceTree = SOURCE_ROOT; }; - FFFDfab60fd87fbcfab60fd8 /* PhaseConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.h"; path = "../../LowLevelCloth/include/PhaseConfig.h"; sourceTree = SOURCE_ROOT; }; - FFFDfab610407fbcfab61040 /* Range.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Range.h"; path = "../../LowLevelCloth/include/Range.h"; sourceTree = SOURCE_ROOT; }; - FFFDfab610a87fbcfab610a8 /* Solver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Solver.h"; path = "../../LowLevelCloth/include/Solver.h"; sourceTree = SOURCE_ROOT; }; - FFFDfab611107fbcfab61110 /* Types.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Types.h"; path = "../../LowLevelCloth/include/Types.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1d02007fbcfa1d0200 /* Allocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.h"; path = "../../LowLevelCloth/src/Allocator.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1d02687fbcfa1d0268 /* Array.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Array.h"; path = "../../LowLevelCloth/src/Array.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1d02d07fbcfa1d02d0 /* BoundingBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BoundingBox.h"; path = "../../LowLevelCloth/src/BoundingBox.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1d03387fbcfa1d0338 /* ClothBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothBase.h"; path = "../../LowLevelCloth/src/ClothBase.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1d03a07fbcfa1d03a0 /* ClothImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothImpl.h"; path = "../../LowLevelCloth/src/ClothImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1d04087fbcfa1d0408 /* IndexPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IndexPair.h"; path = "../../LowLevelCloth/src/IndexPair.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1d04707fbcfa1d0470 /* IterationState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IterationState.h"; path = "../../LowLevelCloth/src/IterationState.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1d04d87fbcfa1d04d8 /* MovingAverage.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MovingAverage.h"; path = "../../LowLevelCloth/src/MovingAverage.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1d05407fbcfa1d0540 /* PointInterpolator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PointInterpolator.h"; path = "../../LowLevelCloth/src/PointInterpolator.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1d05a87fbcfa1d05a8 /* Simd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd.h"; path = "../../LowLevelCloth/src/Simd.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1d06107fbcfa1d0610 /* StackAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "StackAllocator.h"; path = "../../LowLevelCloth/src/StackAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1d06787fbcfa1d0678 /* SwCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.h"; path = "../../LowLevelCloth/src/SwCloth.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1d06e07fbcfa1d06e0 /* SwClothData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.h"; path = "../../LowLevelCloth/src/SwClothData.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1d07487fbcfa1d0748 /* SwCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.h"; path = "../../LowLevelCloth/src/SwCollision.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1d07b07fbcfa1d07b0 /* SwCollisionHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollisionHelpers.h"; path = "../../LowLevelCloth/src/SwCollisionHelpers.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1d08187fbcfa1d0818 /* SwFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.h"; path = "../../LowLevelCloth/src/SwFabric.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1d08807fbcfa1d0880 /* SwFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.h"; path = "../../LowLevelCloth/src/SwFactory.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1d08e87fbcfa1d08e8 /* SwInterCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.h"; path = "../../LowLevelCloth/src/SwInterCollision.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1d09507fbcfa1d0950 /* SwSelfCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.h"; path = "../../LowLevelCloth/src/SwSelfCollision.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1d09b87fbcfa1d09b8 /* SwSolver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.h"; path = "../../LowLevelCloth/src/SwSolver.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1d0a207fbcfa1d0a20 /* SwSolverKernel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.h"; path = "../../LowLevelCloth/src/SwSolverKernel.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1d0a887fbcfa1d0a88 /* TripletScheduler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.h"; path = "../../LowLevelCloth/src/TripletScheduler.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1d0af07fbcfa1d0af0 /* Vec4T.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Vec4T.h"; path = "../../LowLevelCloth/src/Vec4T.h"; sourceTree = SOURCE_ROOT; }; - FFFDfa1d0b587fbcfa1d0b58 /* Allocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.cpp"; path = "../../LowLevelCloth/src/Allocator.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa1d0bc07fbcfa1d0bc0 /* Factory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.cpp"; path = "../../LowLevelCloth/src/Factory.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa1d0c287fbcfa1d0c28 /* PhaseConfig.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.cpp"; path = "../../LowLevelCloth/src/PhaseConfig.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa1d0c907fbcfa1d0c90 /* SwCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.cpp"; path = "../../LowLevelCloth/src/SwCloth.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa1d0cf87fbcfa1d0cf8 /* SwClothData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.cpp"; path = "../../LowLevelCloth/src/SwClothData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa1d0d607fbcfa1d0d60 /* SwCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.cpp"; path = "../../LowLevelCloth/src/SwCollision.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa1d0dc87fbcfa1d0dc8 /* SwFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.cpp"; path = "../../LowLevelCloth/src/SwFabric.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa1d0e307fbcfa1d0e30 /* SwFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.cpp"; path = "../../LowLevelCloth/src/SwFactory.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa1d0e987fbcfa1d0e98 /* SwInterCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.cpp"; path = "../../LowLevelCloth/src/SwInterCollision.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa1d0f007fbcfa1d0f00 /* SwSelfCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.cpp"; path = "../../LowLevelCloth/src/SwSelfCollision.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa1d0f687fbcfa1d0f68 /* SwSolver.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.cpp"; path = "../../LowLevelCloth/src/SwSolver.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa1d0fd07fbcfa1d0fd0 /* SwSolverKernel.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.cpp"; path = "../../LowLevelCloth/src/SwSolverKernel.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfa1d10387fbcfa1d1038 /* TripletScheduler.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.cpp"; path = "../../LowLevelCloth/src/TripletScheduler.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb2d607707feab2d60770 /* LowLevelCloth */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelCloth"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDb2d4c6c07feab2d4c6c0 /* Cloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cloth.h"; path = "../../LowLevelCloth/include/Cloth.h"; sourceTree = SOURCE_ROOT; }; + FFFDb2d4c7287feab2d4c728 /* Fabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Fabric.h"; path = "../../LowLevelCloth/include/Fabric.h"; sourceTree = SOURCE_ROOT; }; + FFFDb2d4c7907feab2d4c790 /* Factory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.h"; path = "../../LowLevelCloth/include/Factory.h"; sourceTree = SOURCE_ROOT; }; + FFFDb2d4c7f87feab2d4c7f8 /* PhaseConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.h"; path = "../../LowLevelCloth/include/PhaseConfig.h"; sourceTree = SOURCE_ROOT; }; + FFFDb2d4c8607feab2d4c860 /* Range.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Range.h"; path = "../../LowLevelCloth/include/Range.h"; sourceTree = SOURCE_ROOT; }; + FFFDb2d4c8c87feab2d4c8c8 /* Solver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Solver.h"; path = "../../LowLevelCloth/include/Solver.h"; sourceTree = SOURCE_ROOT; }; + FFFDb2d4c9307feab2d4c930 /* Types.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Types.h"; path = "../../LowLevelCloth/include/Types.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3823a007feab3823a00 /* Allocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.h"; path = "../../LowLevelCloth/src/Allocator.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3823a687feab3823a68 /* Array.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Array.h"; path = "../../LowLevelCloth/src/Array.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3823ad07feab3823ad0 /* BoundingBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BoundingBox.h"; path = "../../LowLevelCloth/src/BoundingBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3823b387feab3823b38 /* ClothBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothBase.h"; path = "../../LowLevelCloth/src/ClothBase.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3823ba07feab3823ba0 /* ClothImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothImpl.h"; path = "../../LowLevelCloth/src/ClothImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3823c087feab3823c08 /* IndexPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IndexPair.h"; path = "../../LowLevelCloth/src/IndexPair.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3823c707feab3823c70 /* IterationState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IterationState.h"; path = "../../LowLevelCloth/src/IterationState.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3823cd87feab3823cd8 /* MovingAverage.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MovingAverage.h"; path = "../../LowLevelCloth/src/MovingAverage.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3823d407feab3823d40 /* PointInterpolator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PointInterpolator.h"; path = "../../LowLevelCloth/src/PointInterpolator.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3823da87feab3823da8 /* Simd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd.h"; path = "../../LowLevelCloth/src/Simd.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3823e107feab3823e10 /* StackAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "StackAllocator.h"; path = "../../LowLevelCloth/src/StackAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3823e787feab3823e78 /* SwCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.h"; path = "../../LowLevelCloth/src/SwCloth.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3823ee07feab3823ee0 /* SwClothData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.h"; path = "../../LowLevelCloth/src/SwClothData.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3823f487feab3823f48 /* SwCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.h"; path = "../../LowLevelCloth/src/SwCollision.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3823fb07feab3823fb0 /* SwCollisionHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollisionHelpers.h"; path = "../../LowLevelCloth/src/SwCollisionHelpers.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38240187feab3824018 /* SwFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.h"; path = "../../LowLevelCloth/src/SwFabric.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38240807feab3824080 /* SwFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.h"; path = "../../LowLevelCloth/src/SwFactory.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38240e87feab38240e8 /* SwInterCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.h"; path = "../../LowLevelCloth/src/SwInterCollision.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38241507feab3824150 /* SwSelfCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.h"; path = "../../LowLevelCloth/src/SwSelfCollision.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38241b87feab38241b8 /* SwSolver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.h"; path = "../../LowLevelCloth/src/SwSolver.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38242207feab3824220 /* SwSolverKernel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.h"; path = "../../LowLevelCloth/src/SwSolverKernel.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38242887feab3824288 /* TripletScheduler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.h"; path = "../../LowLevelCloth/src/TripletScheduler.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38242f07feab38242f0 /* Vec4T.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Vec4T.h"; path = "../../LowLevelCloth/src/Vec4T.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38243587feab3824358 /* Allocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.cpp"; path = "../../LowLevelCloth/src/Allocator.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38243c07feab38243c0 /* Factory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.cpp"; path = "../../LowLevelCloth/src/Factory.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38244287feab3824428 /* PhaseConfig.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.cpp"; path = "../../LowLevelCloth/src/PhaseConfig.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38244907feab3824490 /* SwCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.cpp"; path = "../../LowLevelCloth/src/SwCloth.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38244f87feab38244f8 /* SwClothData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.cpp"; path = "../../LowLevelCloth/src/SwClothData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38245607feab3824560 /* SwCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.cpp"; path = "../../LowLevelCloth/src/SwCollision.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38245c87feab38245c8 /* SwFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.cpp"; path = "../../LowLevelCloth/src/SwFabric.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38246307feab3824630 /* SwFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.cpp"; path = "../../LowLevelCloth/src/SwFactory.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38246987feab3824698 /* SwInterCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.cpp"; path = "../../LowLevelCloth/src/SwInterCollision.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38247007feab3824700 /* SwSelfCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.cpp"; path = "../../LowLevelCloth/src/SwSelfCollision.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38247687feab3824768 /* SwSolver.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.cpp"; path = "../../LowLevelCloth/src/SwSolver.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38247d07feab38247d0 /* SwSolverKernel.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.cpp"; path = "../../LowLevelCloth/src/SwSolverKernel.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38248387feab3824838 /* TripletScheduler.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.cpp"; path = "../../LowLevelCloth/src/TripletScheduler.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2fab48c407fbcfab48c40 /* Resources */ = { + FFF2b2d607707feab2d60770 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2765,7 +2765,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCfab48c407fbcfab48c40 /* Frameworks */ = { + FFFCb2d607707feab2d60770 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2775,23 +2775,23 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8fab48c407fbcfab48c40 /* Sources */ = { + FFF8b2d607707feab2d60770 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFfa1d0b587fbcfa1d0b58, - FFFFfa1d0bc07fbcfa1d0bc0, - FFFFfa1d0c287fbcfa1d0c28, - FFFFfa1d0c907fbcfa1d0c90, - FFFFfa1d0cf87fbcfa1d0cf8, - FFFFfa1d0d607fbcfa1d0d60, - FFFFfa1d0dc87fbcfa1d0dc8, - FFFFfa1d0e307fbcfa1d0e30, - FFFFfa1d0e987fbcfa1d0e98, - FFFFfa1d0f007fbcfa1d0f00, - FFFFfa1d0f687fbcfa1d0f68, - FFFFfa1d0fd07fbcfa1d0fd0, - FFFFfa1d10387fbcfa1d1038, + FFFFb38243587feab3824358, + FFFFb38243c07feab38243c0, + FFFFb38244287feab3824428, + FFFFb38244907feab3824490, + FFFFb38244f87feab38244f8, + FFFFb38245607feab3824560, + FFFFb38245c87feab38245c8, + FFFFb38246307feab3824630, + FFFFb38246987feab3824698, + FFFFb38247007feab3824700, + FFFFb38247687feab3824768, + FFFFb38247d07feab38247d0, + FFFFb38248387feab3824838, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2803,79 +2803,79 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of LowLevelParticles */ - FFFFfc8097587fbcfc809758 /* PtBatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8097587fbcfc809758 /* PtBatcher.cpp */; }; - FFFFfc8097c07fbcfc8097c0 /* PtBodyTransformVault.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8097c07fbcfc8097c0 /* PtBodyTransformVault.cpp */; }; - FFFFfc8098287fbcfc809828 /* PtCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8098287fbcfc809828 /* PtCollision.cpp */; }; - FFFFfc8098907fbcfc809890 /* PtCollisionBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8098907fbcfc809890 /* PtCollisionBox.cpp */; }; - FFFFfc8098f87fbcfc8098f8 /* PtCollisionCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8098f87fbcfc8098f8 /* PtCollisionCapsule.cpp */; }; - FFFFfc8099607fbcfc809960 /* PtCollisionConvex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8099607fbcfc809960 /* PtCollisionConvex.cpp */; }; - FFFFfc8099c87fbcfc8099c8 /* PtCollisionMesh.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc8099c87fbcfc8099c8 /* PtCollisionMesh.cpp */; }; - FFFFfc809a307fbcfc809a30 /* PtCollisionPlane.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc809a307fbcfc809a30 /* PtCollisionPlane.cpp */; }; - FFFFfc809a987fbcfc809a98 /* PtCollisionSphere.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc809a987fbcfc809a98 /* PtCollisionSphere.cpp */; }; - FFFFfc809b007fbcfc809b00 /* PtContextCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc809b007fbcfc809b00 /* PtContextCpu.cpp */; }; - FFFFfc809b687fbcfc809b68 /* PtDynamics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc809b687fbcfc809b68 /* PtDynamics.cpp */; }; - FFFFfc809bd07fbcfc809bd0 /* PtParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc809bd07fbcfc809bd0 /* PtParticleData.cpp */; }; - FFFFfc809c387fbcfc809c38 /* PtParticleShapeCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc809c387fbcfc809c38 /* PtParticleShapeCpu.cpp */; }; - FFFFfc809ca07fbcfc809ca0 /* PtParticleSystemSimCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc809ca07fbcfc809ca0 /* PtParticleSystemSimCpu.cpp */; }; - FFFFfc809d087fbcfc809d08 /* PtSpatialHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc809d087fbcfc809d08 /* PtSpatialHash.cpp */; }; - FFFFfc809d707fbcfc809d70 /* PtSpatialLocalHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc809d707fbcfc809d70 /* PtSpatialLocalHash.cpp */; }; + FFFFb181a9587feab181a958 /* PtBatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb181a9587feab181a958 /* PtBatcher.cpp */; }; + FFFFb181a9c07feab181a9c0 /* PtBodyTransformVault.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb181a9c07feab181a9c0 /* PtBodyTransformVault.cpp */; }; + FFFFb181aa287feab181aa28 /* PtCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb181aa287feab181aa28 /* PtCollision.cpp */; }; + FFFFb181aa907feab181aa90 /* PtCollisionBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb181aa907feab181aa90 /* PtCollisionBox.cpp */; }; + FFFFb181aaf87feab181aaf8 /* PtCollisionCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb181aaf87feab181aaf8 /* PtCollisionCapsule.cpp */; }; + FFFFb181ab607feab181ab60 /* PtCollisionConvex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb181ab607feab181ab60 /* PtCollisionConvex.cpp */; }; + FFFFb181abc87feab181abc8 /* PtCollisionMesh.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb181abc87feab181abc8 /* PtCollisionMesh.cpp */; }; + FFFFb181ac307feab181ac30 /* PtCollisionPlane.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb181ac307feab181ac30 /* PtCollisionPlane.cpp */; }; + FFFFb181ac987feab181ac98 /* PtCollisionSphere.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb181ac987feab181ac98 /* PtCollisionSphere.cpp */; }; + FFFFb181ad007feab181ad00 /* PtContextCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb181ad007feab181ad00 /* PtContextCpu.cpp */; }; + FFFFb181ad687feab181ad68 /* PtDynamics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb181ad687feab181ad68 /* PtDynamics.cpp */; }; + FFFFb181add07feab181add0 /* PtParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb181add07feab181add0 /* PtParticleData.cpp */; }; + FFFFb181ae387feab181ae38 /* PtParticleShapeCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb181ae387feab181ae38 /* PtParticleShapeCpu.cpp */; }; + FFFFb181aea07feab181aea0 /* PtParticleSystemSimCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb181aea07feab181aea0 /* PtParticleSystemSimCpu.cpp */; }; + FFFFb181af087feab181af08 /* PtSpatialHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb181af087feab181af08 /* PtSpatialHash.cpp */; }; + FFFFb181af707feab181af70 /* PtSpatialLocalHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb181af707feab181af70 /* PtSpatialLocalHash.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDfc003cb07fbcfc003cb0 /* LowLevelParticles */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelParticles"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDfc802e007fbcfc802e00 /* PtBodyTransformVault.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.h"; path = "../../LowLevelParticles/include/PtBodyTransformVault.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc802e687fbcfc802e68 /* PtContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContext.h"; path = "../../LowLevelParticles/include/PtContext.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc802ed07fbcfc802ed0 /* PtGridCellVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtGridCellVector.h"; path = "../../LowLevelParticles/include/PtGridCellVector.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc802f387fbcfc802f38 /* PtParticle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticle.h"; path = "../../LowLevelParticles/include/PtParticle.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc802fa07fbcfc802fa0 /* PtParticleContactManagerStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleContactManagerStream.h"; path = "../../LowLevelParticles/include/PtParticleContactManagerStream.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8030087fbcfc803008 /* PtParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.h"; path = "../../LowLevelParticles/include/PtParticleData.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8030707fbcfc803070 /* PtParticleShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShape.h"; path = "../../LowLevelParticles/include/PtParticleShape.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8030d87fbcfc8030d8 /* PtParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemCore.h"; path = "../../LowLevelParticles/include/PtParticleSystemCore.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8031407fbcfc803140 /* PtParticleSystemFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemFlags.h"; path = "../../LowLevelParticles/include/PtParticleSystemFlags.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8031a87fbcfc8031a8 /* PtParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSim.h"; path = "../../LowLevelParticles/include/PtParticleSystemSim.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc808e007fbcfc808e00 /* PtBatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.h"; path = "../../LowLevelParticles/src/PtBatcher.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc808e687fbcfc808e68 /* PtCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.h"; path = "../../LowLevelParticles/src/PtCollision.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc808ed07fbcfc808ed0 /* PtCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionData.h"; path = "../../LowLevelParticles/src/PtCollisionData.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc808f387fbcfc808f38 /* PtCollisionHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionHelper.h"; path = "../../LowLevelParticles/src/PtCollisionHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc808fa07fbcfc808fa0 /* PtCollisionMethods.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMethods.h"; path = "../../LowLevelParticles/src/PtCollisionMethods.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8090087fbcfc809008 /* PtCollisionParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionParameters.h"; path = "../../LowLevelParticles/src/PtCollisionParameters.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8090707fbcfc809070 /* PtConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConfig.h"; path = "../../LowLevelParticles/src/PtConfig.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8090d87fbcfc8090d8 /* PtConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConstants.h"; path = "../../LowLevelParticles/src/PtConstants.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8091407fbcfc809140 /* PtContextCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.h"; path = "../../LowLevelParticles/src/PtContextCpu.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8091a87fbcfc8091a8 /* PtDynamicHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicHelper.h"; path = "../../LowLevelParticles/src/PtDynamicHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8092107fbcfc809210 /* PtDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.h"; path = "../../LowLevelParticles/src/PtDynamics.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8092787fbcfc809278 /* PtDynamicsKernels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsKernels.h"; path = "../../LowLevelParticles/src/PtDynamicsKernels.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8092e07fbcfc8092e0 /* PtDynamicsParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsParameters.h"; path = "../../LowLevelParticles/src/PtDynamicsParameters.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8093487fbcfc809348 /* PtDynamicsTempBuffers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsTempBuffers.h"; path = "../../LowLevelParticles/src/PtDynamicsTempBuffers.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8093b07fbcfc8093b0 /* PtHeightFieldAabbTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtHeightFieldAabbTest.h"; path = "../../LowLevelParticles/src/PtHeightFieldAabbTest.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8094187fbcfc809418 /* PtPacketSections.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtPacketSections.h"; path = "../../LowLevelParticles/src/PtPacketSections.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8094807fbcfc809480 /* PtParticleCell.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleCell.h"; path = "../../LowLevelParticles/src/PtParticleCell.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8094e87fbcfc8094e8 /* PtParticleOpcodeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleOpcodeCache.h"; path = "../../LowLevelParticles/src/PtParticleOpcodeCache.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8095507fbcfc809550 /* PtParticleShapeCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.h"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8095b87fbcfc8095b8 /* PtParticleSystemSimCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.h"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8096207fbcfc809620 /* PtSpatialHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.h"; path = "../../LowLevelParticles/src/PtSpatialHash.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8096887fbcfc809688 /* PtSpatialHashHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHashHelper.h"; path = "../../LowLevelParticles/src/PtSpatialHashHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8096f07fbcfc8096f0 /* PtTwoWayData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtTwoWayData.h"; path = "../../LowLevelParticles/src/PtTwoWayData.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc8097587fbcfc809758 /* PtBatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.cpp"; path = "../../LowLevelParticles/src/PtBatcher.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc8097c07fbcfc8097c0 /* PtBodyTransformVault.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.cpp"; path = "../../LowLevelParticles/src/PtBodyTransformVault.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc8098287fbcfc809828 /* PtCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.cpp"; path = "../../LowLevelParticles/src/PtCollision.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc8098907fbcfc809890 /* PtCollisionBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionBox.cpp"; path = "../../LowLevelParticles/src/PtCollisionBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc8098f87fbcfc8098f8 /* PtCollisionCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionCapsule.cpp"; path = "../../LowLevelParticles/src/PtCollisionCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc8099607fbcfc809960 /* PtCollisionConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionConvex.cpp"; path = "../../LowLevelParticles/src/PtCollisionConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc8099c87fbcfc8099c8 /* PtCollisionMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMesh.cpp"; path = "../../LowLevelParticles/src/PtCollisionMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc809a307fbcfc809a30 /* PtCollisionPlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionPlane.cpp"; path = "../../LowLevelParticles/src/PtCollisionPlane.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc809a987fbcfc809a98 /* PtCollisionSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionSphere.cpp"; path = "../../LowLevelParticles/src/PtCollisionSphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc809b007fbcfc809b00 /* PtContextCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.cpp"; path = "../../LowLevelParticles/src/PtContextCpu.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc809b687fbcfc809b68 /* PtDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.cpp"; path = "../../LowLevelParticles/src/PtDynamics.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc809bd07fbcfc809bd0 /* PtParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.cpp"; path = "../../LowLevelParticles/src/PtParticleData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc809c387fbcfc809c38 /* PtParticleShapeCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc809ca07fbcfc809ca0 /* PtParticleSystemSimCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc809d087fbcfc809d08 /* PtSpatialHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialHash.cpp"; sourceTree = SOURCE_ROOT; }; - FFFDfc809d707fbcfc809d70 /* PtSpatialLocalHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialLocalHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialLocalHash.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb14554c07feab14554c0 /* LowLevelParticles */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelParticles"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDb1811a007feab1811a00 /* PtBodyTransformVault.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.h"; path = "../../LowLevelParticles/include/PtBodyTransformVault.h"; sourceTree = SOURCE_ROOT; }; + FFFDb1811a687feab1811a68 /* PtContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContext.h"; path = "../../LowLevelParticles/include/PtContext.h"; sourceTree = SOURCE_ROOT; }; + FFFDb1811ad07feab1811ad0 /* PtGridCellVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtGridCellVector.h"; path = "../../LowLevelParticles/include/PtGridCellVector.h"; sourceTree = SOURCE_ROOT; }; + FFFDb1811b387feab1811b38 /* PtParticle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticle.h"; path = "../../LowLevelParticles/include/PtParticle.h"; sourceTree = SOURCE_ROOT; }; + FFFDb1811ba07feab1811ba0 /* PtParticleContactManagerStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleContactManagerStream.h"; path = "../../LowLevelParticles/include/PtParticleContactManagerStream.h"; sourceTree = SOURCE_ROOT; }; + FFFDb1811c087feab1811c08 /* PtParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.h"; path = "../../LowLevelParticles/include/PtParticleData.h"; sourceTree = SOURCE_ROOT; }; + FFFDb1811c707feab1811c70 /* PtParticleShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShape.h"; path = "../../LowLevelParticles/include/PtParticleShape.h"; sourceTree = SOURCE_ROOT; }; + FFFDb1811cd87feab1811cd8 /* PtParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemCore.h"; path = "../../LowLevelParticles/include/PtParticleSystemCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDb1811d407feab1811d40 /* PtParticleSystemFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemFlags.h"; path = "../../LowLevelParticles/include/PtParticleSystemFlags.h"; sourceTree = SOURCE_ROOT; }; + FFFDb1811da87feab1811da8 /* PtParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSim.h"; path = "../../LowLevelParticles/include/PtParticleSystemSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDb181a0007feab181a000 /* PtBatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.h"; path = "../../LowLevelParticles/src/PtBatcher.h"; sourceTree = SOURCE_ROOT; }; + FFFDb181a0687feab181a068 /* PtCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.h"; path = "../../LowLevelParticles/src/PtCollision.h"; sourceTree = SOURCE_ROOT; }; + FFFDb181a0d07feab181a0d0 /* PtCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionData.h"; path = "../../LowLevelParticles/src/PtCollisionData.h"; sourceTree = SOURCE_ROOT; }; + FFFDb181a1387feab181a138 /* PtCollisionHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionHelper.h"; path = "../../LowLevelParticles/src/PtCollisionHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFDb181a1a07feab181a1a0 /* PtCollisionMethods.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMethods.h"; path = "../../LowLevelParticles/src/PtCollisionMethods.h"; sourceTree = SOURCE_ROOT; }; + FFFDb181a2087feab181a208 /* PtCollisionParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionParameters.h"; path = "../../LowLevelParticles/src/PtCollisionParameters.h"; sourceTree = SOURCE_ROOT; }; + FFFDb181a2707feab181a270 /* PtConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConfig.h"; path = "../../LowLevelParticles/src/PtConfig.h"; sourceTree = SOURCE_ROOT; }; + FFFDb181a2d87feab181a2d8 /* PtConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConstants.h"; path = "../../LowLevelParticles/src/PtConstants.h"; sourceTree = SOURCE_ROOT; }; + FFFDb181a3407feab181a340 /* PtContextCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.h"; path = "../../LowLevelParticles/src/PtContextCpu.h"; sourceTree = SOURCE_ROOT; }; + FFFDb181a3a87feab181a3a8 /* PtDynamicHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicHelper.h"; path = "../../LowLevelParticles/src/PtDynamicHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFDb181a4107feab181a410 /* PtDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.h"; path = "../../LowLevelParticles/src/PtDynamics.h"; sourceTree = SOURCE_ROOT; }; + FFFDb181a4787feab181a478 /* PtDynamicsKernels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsKernels.h"; path = "../../LowLevelParticles/src/PtDynamicsKernels.h"; sourceTree = SOURCE_ROOT; }; + FFFDb181a4e07feab181a4e0 /* PtDynamicsParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsParameters.h"; path = "../../LowLevelParticles/src/PtDynamicsParameters.h"; sourceTree = SOURCE_ROOT; }; + FFFDb181a5487feab181a548 /* PtDynamicsTempBuffers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsTempBuffers.h"; path = "../../LowLevelParticles/src/PtDynamicsTempBuffers.h"; sourceTree = SOURCE_ROOT; }; + FFFDb181a5b07feab181a5b0 /* PtHeightFieldAabbTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtHeightFieldAabbTest.h"; path = "../../LowLevelParticles/src/PtHeightFieldAabbTest.h"; sourceTree = SOURCE_ROOT; }; + FFFDb181a6187feab181a618 /* PtPacketSections.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtPacketSections.h"; path = "../../LowLevelParticles/src/PtPacketSections.h"; sourceTree = SOURCE_ROOT; }; + FFFDb181a6807feab181a680 /* PtParticleCell.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleCell.h"; path = "../../LowLevelParticles/src/PtParticleCell.h"; sourceTree = SOURCE_ROOT; }; + FFFDb181a6e87feab181a6e8 /* PtParticleOpcodeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleOpcodeCache.h"; path = "../../LowLevelParticles/src/PtParticleOpcodeCache.h"; sourceTree = SOURCE_ROOT; }; + FFFDb181a7507feab181a750 /* PtParticleShapeCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.h"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.h"; sourceTree = SOURCE_ROOT; }; + FFFDb181a7b87feab181a7b8 /* PtParticleSystemSimCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.h"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.h"; sourceTree = SOURCE_ROOT; }; + FFFDb181a8207feab181a820 /* PtSpatialHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.h"; path = "../../LowLevelParticles/src/PtSpatialHash.h"; sourceTree = SOURCE_ROOT; }; + FFFDb181a8887feab181a888 /* PtSpatialHashHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHashHelper.h"; path = "../../LowLevelParticles/src/PtSpatialHashHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFDb181a8f07feab181a8f0 /* PtTwoWayData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtTwoWayData.h"; path = "../../LowLevelParticles/src/PtTwoWayData.h"; sourceTree = SOURCE_ROOT; }; + FFFDb181a9587feab181a958 /* PtBatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.cpp"; path = "../../LowLevelParticles/src/PtBatcher.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb181a9c07feab181a9c0 /* PtBodyTransformVault.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.cpp"; path = "../../LowLevelParticles/src/PtBodyTransformVault.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb181aa287feab181aa28 /* PtCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.cpp"; path = "../../LowLevelParticles/src/PtCollision.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb181aa907feab181aa90 /* PtCollisionBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionBox.cpp"; path = "../../LowLevelParticles/src/PtCollisionBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb181aaf87feab181aaf8 /* PtCollisionCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionCapsule.cpp"; path = "../../LowLevelParticles/src/PtCollisionCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb181ab607feab181ab60 /* PtCollisionConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionConvex.cpp"; path = "../../LowLevelParticles/src/PtCollisionConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb181abc87feab181abc8 /* PtCollisionMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMesh.cpp"; path = "../../LowLevelParticles/src/PtCollisionMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb181ac307feab181ac30 /* PtCollisionPlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionPlane.cpp"; path = "../../LowLevelParticles/src/PtCollisionPlane.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb181ac987feab181ac98 /* PtCollisionSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionSphere.cpp"; path = "../../LowLevelParticles/src/PtCollisionSphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb181ad007feab181ad00 /* PtContextCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.cpp"; path = "../../LowLevelParticles/src/PtContextCpu.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb181ad687feab181ad68 /* PtDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.cpp"; path = "../../LowLevelParticles/src/PtDynamics.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb181add07feab181add0 /* PtParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.cpp"; path = "../../LowLevelParticles/src/PtParticleData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb181ae387feab181ae38 /* PtParticleShapeCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb181aea07feab181aea0 /* PtParticleSystemSimCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb181af087feab181af08 /* PtSpatialHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialHash.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb181af707feab181af70 /* PtSpatialLocalHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialLocalHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialLocalHash.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2fc003cb07fbcfc003cb0 /* Resources */ = { + FFF2b14554c07feab14554c0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2885,7 +2885,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCfc003cb07fbcfc003cb0 /* Frameworks */ = { + FFFCb14554c07feab14554c0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2895,26 +2895,26 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8fc003cb07fbcfc003cb0 /* Sources */ = { + FFF8b14554c07feab14554c0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFfc8097587fbcfc809758, - FFFFfc8097c07fbcfc8097c0, - FFFFfc8098287fbcfc809828, - FFFFfc8098907fbcfc809890, - FFFFfc8098f87fbcfc8098f8, - FFFFfc8099607fbcfc809960, - FFFFfc8099c87fbcfc8099c8, - FFFFfc809a307fbcfc809a30, - FFFFfc809a987fbcfc809a98, - FFFFfc809b007fbcfc809b00, - FFFFfc809b687fbcfc809b68, - FFFFfc809bd07fbcfc809bd0, - FFFFfc809c387fbcfc809c38, - FFFFfc809ca07fbcfc809ca0, - FFFFfc809d087fbcfc809d08, - FFFFfc809d707fbcfc809d70, + FFFFb181a9587feab181a958, + FFFFb181a9c07feab181a9c0, + FFFFb181aa287feab181aa28, + FFFFb181aa907feab181aa90, + FFFFb181aaf87feab181aaf8, + FFFFb181ab607feab181ab60, + FFFFb181abc87feab181abc8, + FFFFb181ac307feab181ac30, + FFFFb181ac987feab181ac98, + FFFFb181ad007feab181ad00, + FFFFb181ad687feab181ad68, + FFFFb181add07feab181add0, + FFFFb181ae387feab181ae38, + FFFFb181aea07feab181aea0, + FFFFb181af087feab181af08, + FFFFb181af707feab181af70, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2926,22 +2926,22 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PxTask */ - FFFFfc2128307fbcfc212830 /* src/TaskManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc2128307fbcfc212830 /* src/TaskManager.cpp */; }; + FFFFb2da00f07feab2da00f0 /* src/TaskManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb2da00f07feab2da00f0 /* src/TaskManager.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDfc2149407fbcfc214940 /* PxTask */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxTask"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDfc212e807fbcfc212e80 /* PxCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCpuDispatcher.h"; path = "../../../../PxShared/include/task/PxCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc212ee87fbcfc212ee8 /* PxGpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuDispatcher.h"; path = "../../../../PxShared/include/task/PxGpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc212f507fbcfc212f50 /* PxGpuTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuTask.h"; path = "../../../../PxShared/include/task/PxGpuTask.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc212fb87fbcfc212fb8 /* PxTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTask.h"; path = "../../../../PxShared/include/task/PxTask.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc2130207fbcfc213020 /* PxTaskDefine.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskDefine.h"; path = "../../../../PxShared/include/task/PxTaskDefine.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc2130887fbcfc213088 /* PxTaskManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskManager.h"; path = "../../../../PxShared/include/task/PxTaskManager.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc2128307fbcfc212830 /* src/TaskManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/TaskManager.cpp"; path = "../../../../PxShared/src/task/src/TaskManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb2d743307feab2d74330 /* PxTask */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxTask"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDb2d736407feab2d73640 /* PxCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCpuDispatcher.h"; path = "../../../../PxShared/include/task/PxCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; + FFFDb2d736a87feab2d736a8 /* PxGpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuDispatcher.h"; path = "../../../../PxShared/include/task/PxGpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; + FFFDb2d737107feab2d73710 /* PxGpuTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuTask.h"; path = "../../../../PxShared/include/task/PxGpuTask.h"; sourceTree = SOURCE_ROOT; }; + FFFDb2d737787feab2d73778 /* PxTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTask.h"; path = "../../../../PxShared/include/task/PxTask.h"; sourceTree = SOURCE_ROOT; }; + FFFDb2d737e07feab2d737e0 /* PxTaskDefine.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskDefine.h"; path = "../../../../PxShared/include/task/PxTaskDefine.h"; sourceTree = SOURCE_ROOT; }; + FFFDb2d738487feab2d73848 /* PxTaskManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskManager.h"; path = "../../../../PxShared/include/task/PxTaskManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDb2da00f07feab2da00f0 /* 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 */ - FFF2fc2149407fbcfc214940 /* Resources */ = { + FFF2b2d743307feab2d74330 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2951,7 +2951,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCfc2149407fbcfc214940 /* Frameworks */ = { + FFFCb2d743307feab2d74330 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2961,11 +2961,11 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8fc2149407fbcfc214940 /* Sources */ = { + FFF8b2d743307feab2d74330 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFfc2128307fbcfc212830, + FFFFb2da00f07feab2da00f0, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2977,17 +2977,17 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PsFastXml */ - FFFFfc065fa07fbcfc065fa0 /* PsFastXml.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDfc065fa07fbcfc065fa0 /* PsFastXml.cpp */; }; + FFFFb2fad1e07feab2fad1e0 /* PsFastXml.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb2fad1e07feab2fad1e0 /* PsFastXml.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFDfc0657b07fbcfc0657b0 /* PsFastXml */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PsFastXml"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFDfc065ea07fbcfc065ea0 /* PsFastXml.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PsFastXml.h"; path = "../../../../PxShared/src/fastxml/include/PsFastXml.h"; sourceTree = SOURCE_ROOT; }; - FFFDfc065fa07fbcfc065fa0 /* PsFastXml.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PsFastXml.cpp"; path = "../../../../PxShared/src/fastxml/src/PsFastXml.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb2fac9c07feab2fac9c0 /* PsFastXml */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PsFastXml"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDb2fad0e07feab2fad0e0 /* PsFastXml.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PsFastXml.h"; path = "../../../../PxShared/src/fastxml/include/PsFastXml.h"; sourceTree = SOURCE_ROOT; }; + FFFDb2fad1e07feab2fad1e0 /* 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 */ - FFF2fc0657b07fbcfc0657b0 /* Resources */ = { + FFF2b2fac9c07feab2fac9c0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2997,7 +2997,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFCfc0657b07fbcfc0657b0 /* Frameworks */ = { + FFFCb2fac9c07feab2fac9c0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -3007,11 +3007,11 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8fc0657b07fbcfc0657b0 /* Sources */ = { + FFF8b2fac9c07feab2fac9c0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFFfc065fa07fbcfc065fa0, + FFFFb2fad1e07feab2fad1e0, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -3023,1967 +3023,1967 @@ /* End PBXTargetDependency section */ /* Begin PBXContainerItemProxy section */ - FFF5fc0690807fbcfc069080 /* PBXContainerItemProxy */ = { - containerPortal = FFF9f9c822807fbcf9c82280 /* Project object */; + FFF5b2fb02907feab2fb0290 /* PBXContainerItemProxy */ = { + containerPortal = FFF9b28088407feab2808840 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAfc0690807fbcfc069080 /* PhysX */; + remoteGlobalIDString = FFFAb2fb02907feab2fb0290 /* PhysX */; remoteInfo = "PhysX"; }; - FFF5fc0717b07fbcfc0717b0 /* PBXContainerItemProxy */ = { - containerPortal = FFF9f9c822807fbcf9c82280 /* Project object */; + FFF5b2fc41607feab2fc4160 /* PBXContainerItemProxy */ = { + containerPortal = FFF9b28088407feab2808840 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAfc0717b07fbcfc0717b0 /* PhysXCharacterKinematic */; + remoteGlobalIDString = FFFAb2fc41607feab2fc4160 /* PhysXCharacterKinematic */; remoteInfo = "PhysXCharacterKinematic"; }; - FFF5fc0771907fbcfc077190 /* PBXContainerItemProxy */ = { - containerPortal = FFF9f9c822807fbcf9c82280 /* Project object */; + FFF5b2fc15c07feab2fc15c0 /* PBXContainerItemProxy */ = { + containerPortal = FFF9b28088407feab2808840 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAfc0771907fbcfc077190 /* PhysXVehicle */; + remoteGlobalIDString = FFFAb2fc15c07feab2fc15c0 /* PhysXVehicle */; remoteInfo = "PhysXVehicle"; }; - FFF5fc0c74907fbcfc0c7490 /* PBXContainerItemProxy */ = { - containerPortal = FFF9f9c822807fbcf9c82280 /* Project object */; + FFF5b2fd2b007feab2fd2b00 /* PBXContainerItemProxy */ = { + containerPortal = FFF9b28088407feab2808840 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAfc0c74907fbcfc0c7490 /* PhysXExtensions */; + remoteGlobalIDString = FFFAb2fd2b007feab2fd2b00 /* PhysXExtensions */; remoteInfo = "PhysXExtensions"; }; - FFF5fc0985207fbcfc098520 /* PBXContainerItemProxy */ = { - containerPortal = FFF9f9c822807fbcf9c82280 /* Project object */; + FFF5b2fe3bd07feab2fe3bd0 /* PBXContainerItemProxy */ = { + containerPortal = FFF9b28088407feab2808840 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAfc0985207fbcfc098520 /* SceneQuery */; + remoteGlobalIDString = FFFAb2fe3bd07feab2fe3bd0 /* SceneQuery */; remoteInfo = "SceneQuery"; }; - FFF5fc08d4e07fbcfc08d4e0 /* PBXContainerItemProxy */ = { - containerPortal = FFF9f9c822807fbcf9c82280 /* Project object */; + FFF5b2fe82c07feab2fe82c0 /* PBXContainerItemProxy */ = { + containerPortal = FFF9b28088407feab2808840 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAfc08d4e07fbcfc08d4e0 /* SimulationController */; + remoteGlobalIDString = FFFAb2fe82c07feab2fe82c0 /* SimulationController */; remoteInfo = "SimulationController"; }; - FFF5fc07fd407fbcfc07fd40 /* PBXContainerItemProxy */ = { - containerPortal = FFF9f9c822807fbcf9c82280 /* Project object */; + FFF5b2feca707feab2feca70 /* PBXContainerItemProxy */ = { + containerPortal = FFF9b28088407feab2808840 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAfc07fd407fbcfc07fd40 /* PhysXCooking */; + remoteGlobalIDString = FFFAb2feca707feab2feca70 /* PhysXCooking */; remoteInfo = "PhysXCooking"; }; - FFF5fa8913407fbcfa891340 /* PBXContainerItemProxy */ = { - containerPortal = FFF9f9c822807fbcf9c82280 /* Project object */; + FFF5b2a152c07feab2a152c0 /* PBXContainerItemProxy */ = { + containerPortal = FFF9b28088407feab2808840 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAfa8913407fbcfa891340 /* PhysXCommon */; + remoteGlobalIDString = FFFAb2a152c07feab2a152c0 /* PhysXCommon */; remoteInfo = "PhysXCommon"; }; - FFF5fa87f5207fbcfa87f520 /* PBXContainerItemProxy */ = { - containerPortal = FFF9f9c822807fbcf9c82280 /* Project object */; + FFF5b2a669507feab2a66950 /* PBXContainerItemProxy */ = { + containerPortal = FFF9b28088407feab2808840 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAfa87f5207fbcfa87f520 /* PxFoundation */; + remoteGlobalIDString = FFFAb2a669507feab2a66950 /* PxFoundation */; remoteInfo = "PxFoundation"; }; - FFF5fab095c07fbcfab095c0 /* PBXContainerItemProxy */ = { - containerPortal = FFF9f9c822807fbcf9c82280 /* Project object */; + FFF5b147f4707feab147f470 /* PBXContainerItemProxy */ = { + containerPortal = FFF9b28088407feab2808840 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAfab095c07fbcfab095c0 /* PxPvdSDK */; + remoteGlobalIDString = FFFAb147f4707feab147f470 /* PxPvdSDK */; remoteInfo = "PxPvdSDK"; }; - FFF5fab277107fbcfab27710 /* PBXContainerItemProxy */ = { - containerPortal = FFF9f9c822807fbcf9c82280 /* Project object */; + FFF5b2d343407feab2d34340 /* PBXContainerItemProxy */ = { + containerPortal = FFF9b28088407feab2808840 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAfab277107fbcfab27710 /* LowLevel */; + remoteGlobalIDString = FFFAb2d343407feab2d34340 /* LowLevel */; remoteInfo = "LowLevel"; }; - FFF5fab514407fbcfab51440 /* PBXContainerItemProxy */ = { - containerPortal = FFF9f9c822807fbcf9c82280 /* Project object */; + FFF5b17424907feab1742490 /* PBXContainerItemProxy */ = { + containerPortal = FFF9b28088407feab2808840 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAfab514407fbcfab51440 /* LowLevelAABB */; + remoteGlobalIDString = FFFAb17424907feab1742490 /* LowLevelAABB */; remoteInfo = "LowLevelAABB"; }; - FFF5faef20807fbcfaef2080 /* PBXContainerItemProxy */ = { - containerPortal = FFF9f9c822807fbcf9c82280 /* Project object */; + FFF5b1761b707feab1761b70 /* PBXContainerItemProxy */ = { + containerPortal = FFF9b28088407feab2808840 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAfaef20807fbcfaef2080 /* LowLevelDynamics */; + remoteGlobalIDString = FFFAb1761b707feab1761b70 /* LowLevelDynamics */; remoteInfo = "LowLevelDynamics"; }; - FFF5fab48c407fbcfab48c40 /* PBXContainerItemProxy */ = { - containerPortal = FFF9f9c822807fbcf9c82280 /* Project object */; + FFF5b2d607707feab2d60770 /* PBXContainerItemProxy */ = { + containerPortal = FFF9b28088407feab2808840 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAfab48c407fbcfab48c40 /* LowLevelCloth */; + remoteGlobalIDString = FFFAb2d607707feab2d60770 /* LowLevelCloth */; remoteInfo = "LowLevelCloth"; }; - FFF5fc003cb07fbcfc003cb0 /* PBXContainerItemProxy */ = { - containerPortal = FFF9f9c822807fbcf9c82280 /* Project object */; + FFF5b14554c07feab14554c0 /* PBXContainerItemProxy */ = { + containerPortal = FFF9b28088407feab2808840 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAfc003cb07fbcfc003cb0 /* LowLevelParticles */; + remoteGlobalIDString = FFFAb14554c07feab14554c0 /* LowLevelParticles */; remoteInfo = "LowLevelParticles"; }; - FFF5fc2149407fbcfc214940 /* PBXContainerItemProxy */ = { - containerPortal = FFF9f9c822807fbcf9c82280 /* Project object */; + FFF5b2d743307feab2d74330 /* PBXContainerItemProxy */ = { + containerPortal = FFF9b28088407feab2808840 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAfc2149407fbcfc214940 /* PxTask */; + remoteGlobalIDString = FFFAb2d743307feab2d74330 /* PxTask */; remoteInfo = "PxTask"; }; - FFF5fc0657b07fbcfc0657b0 /* PBXContainerItemProxy */ = { - containerPortal = FFF9f9c822807fbcf9c82280 /* Project object */; + FFF5b2fac9c07feab2fac9c0 /* PBXContainerItemProxy */ = { + containerPortal = FFF9b28088407feab2808840 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFAfc0657b07fbcfc0657b0 /* PsFastXml */; + remoteGlobalIDString = FFFAb2fac9c07feab2fac9c0 /* PsFastXml */; remoteInfo = "PsFastXml"; }; /* End PBXContainerItemProxy section */ /* Begin PBXGroup section */ - FFFBf9c822e87fbcf9c822e8 /* PhysX */ = { + FFFBb28088a87feab28088a8 /* PhysX */ = { isa = PBXGroup; children = ( - FFF0f9c822807fbcf9c82280 /* Source */, - FFEEf9c822807fbcf9c82280 /* Products */, + FFF0b28088407feab2808840 /* Source */, + FFEEb28088407feab2808840 /* Products */, ); name = "PhysX"; sourceTree = "<group>"; }; - FFF0f9c822807fbcf9c82280 /* Source */ = { + FFF0b28088407feab2808840 /* Source */ = { isa = PBXGroup; children = ( - FFFBfc0690807fbcfc069080, - FFFBfc0717b07fbcfc0717b0, - FFFBfc0771907fbcfc077190, - FFFBfc0c74907fbcfc0c7490, - FFFBfc0985207fbcfc098520, - FFFBfc08d4e07fbcfc08d4e0, - FFFBfc07fd407fbcfc07fd40, - FFFBfa8913407fbcfa891340, - FFFBfa87f5207fbcfa87f520, - FFFBfab095c07fbcfab095c0, - FFFBfab277107fbcfab27710, - FFFBfab514407fbcfab51440, - FFFBfaef20807fbcfaef2080, - FFFBfab48c407fbcfab48c40, - FFFBfc003cb07fbcfc003cb0, - FFFBfc2149407fbcfc214940, - FFFBfc0657b07fbcfc0657b0, + FFFBb2fb02907feab2fb0290, + FFFBb2fc41607feab2fc4160, + FFFBb2fc15c07feab2fc15c0, + FFFBb2fd2b007feab2fd2b00, + FFFBb2fe3bd07feab2fe3bd0, + FFFBb2fe82c07feab2fe82c0, + FFFBb2feca707feab2feca70, + FFFBb2a152c07feab2a152c0, + FFFBb2a669507feab2a66950, + FFFBb147f4707feab147f470, + FFFBb2d343407feab2d34340, + FFFBb17424907feab1742490, + FFFBb1761b707feab1761b70, + FFFBb2d607707feab2d60770, + FFFBb14554c07feab14554c0, + FFFBb2d743307feab2d74330, + FFFBb2fac9c07feab2fac9c0, ); name = Source; sourceTree = "<group>"; }; - FFEEf9c822807fbcf9c82280 /* Products */ = { + FFEEb28088407feab2808840 /* Products */ = { isa = PBXGroup; children = ( - FFFDfc0690807fbcfc069080, - FFFDfc0717b07fbcfc0717b0, - FFFDfc0771907fbcfc077190, - FFFDfc0c74907fbcfc0c7490, - FFFDfc0985207fbcfc098520, - FFFDfc08d4e07fbcfc08d4e0, - FFFDfc07fd407fbcfc07fd40, - FFFDfa8913407fbcfa891340, - FFFDfa87f5207fbcfa87f520, - FFFDfab095c07fbcfab095c0, - FFFDfab277107fbcfab27710, - FFFDfab514407fbcfab51440, - FFFDfaef20807fbcfaef2080, - FFFDfab48c407fbcfab48c40, - FFFDfc003cb07fbcfc003cb0, - FFFDfc2149407fbcfc214940, - FFFDfc0657b07fbcfc0657b0, + FFFDb2fb02907feab2fb0290, + FFFDb2fc41607feab2fc4160, + FFFDb2fc15c07feab2fc15c0, + FFFDb2fd2b007feab2fd2b00, + FFFDb2fe3bd07feab2fe3bd0, + FFFDb2fe82c07feab2fe82c0, + FFFDb2feca707feab2feca70, + FFFDb2a152c07feab2a152c0, + FFFDb2a669507feab2a66950, + FFFDb147f4707feab147f470, + FFFDb2d343407feab2d34340, + FFFDb17424907feab1742490, + FFFDb1761b707feab1761b70, + FFFDb2d607707feab2d60770, + FFFDb14554c07feab14554c0, + FFFDb2d743307feab2d74330, + FFFDb2fac9c07feab2fac9c0, ); name = Products; sourceTree = "<group>"; }; - FFFBfc0690807fbcfc069080 /* PhysX */ = { + FFFBb2fb02907feab2fb0290 /* PhysX */ = { isa = PBXGroup; children = ( - FFFBfc071c907fbcfc071c90 /* src */, - FFFBfc071cb87fbcfc071cb8 /* include */, - FFFBfc071ce07fbcfc071ce0 /* metadata */, + FFFBb2fc7f007feab2fc7f00 /* src */, + FFFBb2fc7f287feab2fc7f28 /* include */, + FFFBb2fc7f507feab2fc7f50 /* metadata */, ); name = "PhysX"; sourceTree = "<group>"; }; - FFFBfc071c907fbcfc071c90 /* src */ = { + FFFBb2fc7f007feab2fc7f00 /* src */ = { isa = PBXGroup; children = ( - FFFDfc8318007fbcfc831800 /* NpActor.h */, - FFFDfc8318687fbcfc831868 /* NpActorTemplate.h */, - FFFDfc8318d07fbcfc8318d0 /* NpAggregate.h */, - FFFDfc8319387fbcfc831938 /* NpArticulation.h */, - FFFDfc8319a07fbcfc8319a0 /* NpArticulationJoint.h */, - FFFDfc831a087fbcfc831a08 /* NpArticulationLink.h */, - FFFDfc831a707fbcfc831a70 /* NpBatchQuery.h */, - FFFDfc831ad87fbcfc831ad8 /* NpCast.h */, - FFFDfc831b407fbcfc831b40 /* NpConnector.h */, - FFFDfc831ba87fbcfc831ba8 /* NpConstraint.h */, - FFFDfc831c107fbcfc831c10 /* NpFactory.h */, - FFFDfc831c787fbcfc831c78 /* NpMaterial.h */, - FFFDfc831ce07fbcfc831ce0 /* NpMaterialManager.h */, - FFFDfc831d487fbcfc831d48 /* NpPhysics.h */, - FFFDfc831db07fbcfc831db0 /* NpPhysicsInsertionCallback.h */, - FFFDfc831e187fbcfc831e18 /* NpPtrTableStorageManager.h */, - FFFDfc831e807fbcfc831e80 /* NpPvdSceneQueryCollector.h */, - FFFDfc831ee87fbcfc831ee8 /* NpQueryShared.h */, - FFFDfc831f507fbcfc831f50 /* NpReadCheck.h */, - FFFDfc831fb87fbcfc831fb8 /* NpRigidActorTemplate.h */, - FFFDfc8320207fbcfc832020 /* NpRigidActorTemplateInternal.h */, - FFFDfc8320887fbcfc832088 /* NpRigidBodyTemplate.h */, - FFFDfc8320f07fbcfc8320f0 /* NpRigidDynamic.h */, - FFFDfc8321587fbcfc832158 /* NpRigidStatic.h */, - FFFDfc8321c07fbcfc8321c0 /* NpScene.h */, - FFFDfc8322287fbcfc832228 /* NpSceneQueries.h */, - FFFDfc8322907fbcfc832290 /* NpShape.h */, - FFFDfc8322f87fbcfc8322f8 /* NpShapeManager.h */, - FFFDfc8323607fbcfc832360 /* NpSpatialIndex.h */, - FFFDfc8323c87fbcfc8323c8 /* NpVolumeCache.h */, - FFFDfc8324307fbcfc832430 /* NpWriteCheck.h */, - FFFDfc8324987fbcfc832498 /* PvdMetaDataBindingData.h */, - FFFDfc8325007fbcfc832500 /* PvdMetaDataPvdBinding.h */, - FFFDfc8325687fbcfc832568 /* PvdPhysicsClient.h */, - FFFDfc8325d07fbcfc8325d0 /* PvdTypeNames.h */, - FFFDfc8326387fbcfc832638 /* NpActor.cpp */, - FFFDfc8326a07fbcfc8326a0 /* NpAggregate.cpp */, - FFFDfc8327087fbcfc832708 /* NpArticulation.cpp */, - FFFDfc8327707fbcfc832770 /* NpArticulationJoint.cpp */, - FFFDfc8327d87fbcfc8327d8 /* NpArticulationLink.cpp */, - FFFDfc8328407fbcfc832840 /* NpBatchQuery.cpp */, - FFFDfc8328a87fbcfc8328a8 /* NpConstraint.cpp */, - FFFDfc8329107fbcfc832910 /* NpFactory.cpp */, - FFFDfc8329787fbcfc832978 /* NpMaterial.cpp */, - FFFDfc8329e07fbcfc8329e0 /* NpMetaData.cpp */, - FFFDfc832a487fbcfc832a48 /* NpPhysics.cpp */, - FFFDfc832ab07fbcfc832ab0 /* NpPvdSceneQueryCollector.cpp */, - FFFDfc832b187fbcfc832b18 /* NpReadCheck.cpp */, - FFFDfc832b807fbcfc832b80 /* NpRigidDynamic.cpp */, - FFFDfc832be87fbcfc832be8 /* NpRigidStatic.cpp */, - FFFDfc832c507fbcfc832c50 /* NpScene.cpp */, - FFFDfc832cb87fbcfc832cb8 /* NpSceneQueries.cpp */, - FFFDfc832d207fbcfc832d20 /* NpSerializerAdapter.cpp */, - FFFDfc832d887fbcfc832d88 /* NpShape.cpp */, - FFFDfc832df07fbcfc832df0 /* NpShapeManager.cpp */, - FFFDfc832e587fbcfc832e58 /* NpSpatialIndex.cpp */, - FFFDfc832ec07fbcfc832ec0 /* NpVolumeCache.cpp */, - FFFDfc832f287fbcfc832f28 /* NpWriteCheck.cpp */, - FFFDfc832f907fbcfc832f90 /* PvdMetaDataPvdBinding.cpp */, - FFFDfc832ff87fbcfc832ff8 /* PvdPhysicsClient.cpp */, - FFFDfc8330607fbcfc833060 /* particles/NpParticleBaseTemplate.h */, - FFFDfc8330c87fbcfc8330c8 /* particles/NpParticleFluid.h */, - FFFDfc8331307fbcfc833130 /* particles/NpParticleFluidReadData.h */, - FFFDfc8331987fbcfc833198 /* particles/NpParticleSystem.h */, - FFFDfc8332007fbcfc833200 /* particles/NpParticleFluid.cpp */, - FFFDfc8332687fbcfc833268 /* particles/NpParticleSystem.cpp */, - FFFDfc8332d07fbcfc8332d0 /* buffering/ScbActor.h */, - FFFDfc8333387fbcfc833338 /* buffering/ScbAggregate.h */, - FFFDfc8333a07fbcfc8333a0 /* buffering/ScbArticulation.h */, - FFFDfc8334087fbcfc833408 /* buffering/ScbArticulationJoint.h */, - FFFDfc8334707fbcfc833470 /* buffering/ScbBase.h */, - FFFDfc8334d87fbcfc8334d8 /* buffering/ScbBody.h */, - FFFDfc8335407fbcfc833540 /* buffering/ScbCloth.h */, - FFFDfc8335a87fbcfc8335a8 /* buffering/ScbConstraint.h */, - FFFDfc8336107fbcfc833610 /* buffering/ScbDefs.h */, - FFFDfc8336787fbcfc833678 /* buffering/ScbNpDeps.h */, - FFFDfc8336e07fbcfc8336e0 /* buffering/ScbParticleSystem.h */, - FFFDfc8337487fbcfc833748 /* buffering/ScbRigidObject.h */, - FFFDfc8337b07fbcfc8337b0 /* buffering/ScbRigidStatic.h */, - FFFDfc8338187fbcfc833818 /* buffering/ScbScene.h */, - FFFDfc8338807fbcfc833880 /* buffering/ScbSceneBuffer.h */, - FFFDfc8338e87fbcfc8338e8 /* buffering/ScbScenePvdClient.h */, - FFFDfc8339507fbcfc833950 /* buffering/ScbShape.h */, - FFFDfc8339b87fbcfc8339b8 /* buffering/ScbType.h */, - FFFDfc833a207fbcfc833a20 /* buffering/ScbActor.cpp */, - FFFDfc833a887fbcfc833a88 /* buffering/ScbAggregate.cpp */, - FFFDfc833af07fbcfc833af0 /* buffering/ScbBase.cpp */, - FFFDfc833b587fbcfc833b58 /* buffering/ScbCloth.cpp */, - FFFDfc833bc07fbcfc833bc0 /* buffering/ScbMetaData.cpp */, - FFFDfc833c287fbcfc833c28 /* buffering/ScbParticleSystem.cpp */, - FFFDfc833c907fbcfc833c90 /* buffering/ScbScene.cpp */, - FFFDfc833cf87fbcfc833cf8 /* buffering/ScbScenePvdClient.cpp */, - FFFDfc833d607fbcfc833d60 /* buffering/ScbShape.cpp */, - FFFDfc833dc87fbcfc833dc8 /* cloth/NpCloth.h */, - FFFDfc833e307fbcfc833e30 /* cloth/NpClothFabric.h */, - FFFDfc833e987fbcfc833e98 /* cloth/NpClothParticleData.h */, - FFFDfc833f007fbcfc833f00 /* cloth/NpCloth.cpp */, - FFFDfc833f687fbcfc833f68 /* cloth/NpClothFabric.cpp */, - FFFDfc833fd07fbcfc833fd0 /* cloth/NpClothParticleData.cpp */, - FFFDfc8340387fbcfc834038 /* ../../ImmediateMode/src/NpImmediateMode.cpp */, + FFFDb31b70007feab31b7000 /* NpActor.h */, + FFFDb31b70687feab31b7068 /* NpActorTemplate.h */, + FFFDb31b70d07feab31b70d0 /* NpAggregate.h */, + FFFDb31b71387feab31b7138 /* NpArticulation.h */, + FFFDb31b71a07feab31b71a0 /* NpArticulationJoint.h */, + FFFDb31b72087feab31b7208 /* NpArticulationLink.h */, + FFFDb31b72707feab31b7270 /* NpBatchQuery.h */, + FFFDb31b72d87feab31b72d8 /* NpCast.h */, + FFFDb31b73407feab31b7340 /* NpConnector.h */, + FFFDb31b73a87feab31b73a8 /* NpConstraint.h */, + FFFDb31b74107feab31b7410 /* NpFactory.h */, + FFFDb31b74787feab31b7478 /* NpMaterial.h */, + FFFDb31b74e07feab31b74e0 /* NpMaterialManager.h */, + FFFDb31b75487feab31b7548 /* NpPhysics.h */, + FFFDb31b75b07feab31b75b0 /* NpPhysicsInsertionCallback.h */, + FFFDb31b76187feab31b7618 /* NpPtrTableStorageManager.h */, + FFFDb31b76807feab31b7680 /* NpPvdSceneQueryCollector.h */, + FFFDb31b76e87feab31b76e8 /* NpQueryShared.h */, + FFFDb31b77507feab31b7750 /* NpReadCheck.h */, + FFFDb31b77b87feab31b77b8 /* NpRigidActorTemplate.h */, + FFFDb31b78207feab31b7820 /* NpRigidActorTemplateInternal.h */, + FFFDb31b78887feab31b7888 /* NpRigidBodyTemplate.h */, + FFFDb31b78f07feab31b78f0 /* NpRigidDynamic.h */, + FFFDb31b79587feab31b7958 /* NpRigidStatic.h */, + FFFDb31b79c07feab31b79c0 /* NpScene.h */, + FFFDb31b7a287feab31b7a28 /* NpSceneQueries.h */, + FFFDb31b7a907feab31b7a90 /* NpShape.h */, + FFFDb31b7af87feab31b7af8 /* NpShapeManager.h */, + FFFDb31b7b607feab31b7b60 /* NpSpatialIndex.h */, + FFFDb31b7bc87feab31b7bc8 /* NpVolumeCache.h */, + FFFDb31b7c307feab31b7c30 /* NpWriteCheck.h */, + FFFDb31b7c987feab31b7c98 /* PvdMetaDataBindingData.h */, + FFFDb31b7d007feab31b7d00 /* PvdMetaDataPvdBinding.h */, + FFFDb31b7d687feab31b7d68 /* PvdPhysicsClient.h */, + FFFDb31b7dd07feab31b7dd0 /* PvdTypeNames.h */, + FFFDb31b7e387feab31b7e38 /* NpActor.cpp */, + FFFDb31b7ea07feab31b7ea0 /* NpAggregate.cpp */, + FFFDb31b7f087feab31b7f08 /* NpArticulation.cpp */, + FFFDb31b7f707feab31b7f70 /* NpArticulationJoint.cpp */, + FFFDb31b7fd87feab31b7fd8 /* NpArticulationLink.cpp */, + FFFDb31b80407feab31b8040 /* NpBatchQuery.cpp */, + FFFDb31b80a87feab31b80a8 /* NpConstraint.cpp */, + FFFDb31b81107feab31b8110 /* NpFactory.cpp */, + FFFDb31b81787feab31b8178 /* NpMaterial.cpp */, + FFFDb31b81e07feab31b81e0 /* NpMetaData.cpp */, + FFFDb31b82487feab31b8248 /* NpPhysics.cpp */, + FFFDb31b82b07feab31b82b0 /* NpPvdSceneQueryCollector.cpp */, + FFFDb31b83187feab31b8318 /* NpReadCheck.cpp */, + FFFDb31b83807feab31b8380 /* NpRigidDynamic.cpp */, + FFFDb31b83e87feab31b83e8 /* NpRigidStatic.cpp */, + FFFDb31b84507feab31b8450 /* NpScene.cpp */, + FFFDb31b84b87feab31b84b8 /* NpSceneQueries.cpp */, + FFFDb31b85207feab31b8520 /* NpSerializerAdapter.cpp */, + FFFDb31b85887feab31b8588 /* NpShape.cpp */, + FFFDb31b85f07feab31b85f0 /* NpShapeManager.cpp */, + FFFDb31b86587feab31b8658 /* NpSpatialIndex.cpp */, + FFFDb31b86c07feab31b86c0 /* NpVolumeCache.cpp */, + FFFDb31b87287feab31b8728 /* NpWriteCheck.cpp */, + FFFDb31b87907feab31b8790 /* PvdMetaDataPvdBinding.cpp */, + FFFDb31b87f87feab31b87f8 /* PvdPhysicsClient.cpp */, + FFFDb31b88607feab31b8860 /* particles/NpParticleBaseTemplate.h */, + FFFDb31b88c87feab31b88c8 /* particles/NpParticleFluid.h */, + FFFDb31b89307feab31b8930 /* particles/NpParticleFluidReadData.h */, + FFFDb31b89987feab31b8998 /* particles/NpParticleSystem.h */, + FFFDb31b8a007feab31b8a00 /* particles/NpParticleFluid.cpp */, + FFFDb31b8a687feab31b8a68 /* particles/NpParticleSystem.cpp */, + FFFDb31b8ad07feab31b8ad0 /* buffering/ScbActor.h */, + FFFDb31b8b387feab31b8b38 /* buffering/ScbAggregate.h */, + FFFDb31b8ba07feab31b8ba0 /* buffering/ScbArticulation.h */, + FFFDb31b8c087feab31b8c08 /* buffering/ScbArticulationJoint.h */, + FFFDb31b8c707feab31b8c70 /* buffering/ScbBase.h */, + FFFDb31b8cd87feab31b8cd8 /* buffering/ScbBody.h */, + FFFDb31b8d407feab31b8d40 /* buffering/ScbCloth.h */, + FFFDb31b8da87feab31b8da8 /* buffering/ScbConstraint.h */, + FFFDb31b8e107feab31b8e10 /* buffering/ScbDefs.h */, + FFFDb31b8e787feab31b8e78 /* buffering/ScbNpDeps.h */, + FFFDb31b8ee07feab31b8ee0 /* buffering/ScbParticleSystem.h */, + FFFDb31b8f487feab31b8f48 /* buffering/ScbRigidObject.h */, + FFFDb31b8fb07feab31b8fb0 /* buffering/ScbRigidStatic.h */, + FFFDb31b90187feab31b9018 /* buffering/ScbScene.h */, + FFFDb31b90807feab31b9080 /* buffering/ScbSceneBuffer.h */, + FFFDb31b90e87feab31b90e8 /* buffering/ScbScenePvdClient.h */, + FFFDb31b91507feab31b9150 /* buffering/ScbShape.h */, + FFFDb31b91b87feab31b91b8 /* buffering/ScbType.h */, + FFFDb31b92207feab31b9220 /* buffering/ScbActor.cpp */, + FFFDb31b92887feab31b9288 /* buffering/ScbAggregate.cpp */, + FFFDb31b92f07feab31b92f0 /* buffering/ScbBase.cpp */, + FFFDb31b93587feab31b9358 /* buffering/ScbCloth.cpp */, + FFFDb31b93c07feab31b93c0 /* buffering/ScbMetaData.cpp */, + FFFDb31b94287feab31b9428 /* buffering/ScbParticleSystem.cpp */, + FFFDb31b94907feab31b9490 /* buffering/ScbScene.cpp */, + FFFDb31b94f87feab31b94f8 /* buffering/ScbScenePvdClient.cpp */, + FFFDb31b95607feab31b9560 /* buffering/ScbShape.cpp */, + FFFDb31b95c87feab31b95c8 /* cloth/NpCloth.h */, + FFFDb31b96307feab31b9630 /* cloth/NpClothFabric.h */, + FFFDb31b96987feab31b9698 /* cloth/NpClothParticleData.h */, + FFFDb31b97007feab31b9700 /* cloth/NpCloth.cpp */, + FFFDb31b97687feab31b9768 /* cloth/NpClothFabric.cpp */, + FFFDb31b97d07feab31b97d0 /* cloth/NpClothParticleData.cpp */, + FFFDb31b98387feab31b9838 /* ../../ImmediateMode/src/NpImmediateMode.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBfc071cb87fbcfc071cb8 /* include */ = { + FFFBb2fc7f287feab2fc7f28 /* include */ = { isa = PBXGroup; children = ( - FFFDfc82f2007fbcfc82f200 /* PxActor.h */, - FFFDfc82f2687fbcfc82f268 /* PxAggregate.h */, - FFFDfc82f2d07fbcfc82f2d0 /* PxArticulation.h */, - FFFDfc82f3387fbcfc82f338 /* PxArticulationJoint.h */, - FFFDfc82f3a07fbcfc82f3a0 /* PxArticulationLink.h */, - FFFDfc82f4087fbcfc82f408 /* PxBatchQuery.h */, - FFFDfc82f4707fbcfc82f470 /* PxBatchQueryDesc.h */, - FFFDfc82f4d87fbcfc82f4d8 /* PxBroadPhase.h */, - FFFDfc82f5407fbcfc82f540 /* PxClient.h */, - FFFDfc82f5a87fbcfc82f5a8 /* PxConstraint.h */, - FFFDfc82f6107fbcfc82f610 /* PxConstraintDesc.h */, - FFFDfc82f6787fbcfc82f678 /* PxContact.h */, - FFFDfc82f6e07fbcfc82f6e0 /* PxContactModifyCallback.h */, - FFFDfc82f7487fbcfc82f748 /* PxDeletionListener.h */, - FFFDfc82f7b07fbcfc82f7b0 /* PxFiltering.h */, - FFFDfc82f8187fbcfc82f818 /* PxForceMode.h */, - FFFDfc82f8807fbcfc82f880 /* PxImmediateMode.h */, - FFFDfc82f8e87fbcfc82f8e8 /* PxLockedData.h */, - FFFDfc82f9507fbcfc82f950 /* PxMaterial.h */, - FFFDfc82f9b87fbcfc82f9b8 /* PxPhysXConfig.h */, - FFFDfc82fa207fbcfc82fa20 /* PxPhysics.h */, - FFFDfc82fa887fbcfc82fa88 /* PxPhysicsAPI.h */, - FFFDfc82faf07fbcfc82faf0 /* PxPhysicsSerialization.h */, - FFFDfc82fb587fbcfc82fb58 /* PxPhysicsVersion.h */, - FFFDfc82fbc07fbcfc82fbc0 /* PxPruningStructure.h */, - FFFDfc82fc287fbcfc82fc28 /* PxQueryFiltering.h */, - FFFDfc82fc907fbcfc82fc90 /* PxQueryReport.h */, - FFFDfc82fcf87fbcfc82fcf8 /* PxRigidActor.h */, - FFFDfc82fd607fbcfc82fd60 /* PxRigidBody.h */, - FFFDfc82fdc87fbcfc82fdc8 /* PxRigidDynamic.h */, - FFFDfc82fe307fbcfc82fe30 /* PxRigidStatic.h */, - FFFDfc82fe987fbcfc82fe98 /* PxScene.h */, - FFFDfc82ff007fbcfc82ff00 /* PxSceneDesc.h */, - FFFDfc82ff687fbcfc82ff68 /* PxSceneLock.h */, - FFFDfc82ffd07fbcfc82ffd0 /* PxShape.h */, - FFFDfc8300387fbcfc830038 /* PxSimulationEventCallback.h */, - FFFDfc8300a07fbcfc8300a0 /* PxSimulationStatistics.h */, - FFFDfc8301087fbcfc830108 /* PxSpatialIndex.h */, - FFFDfc8301707fbcfc830170 /* PxVisualizationParameter.h */, - FFFDfc8301d87fbcfc8301d8 /* PxVolumeCache.h */, - FFFDfc8302407fbcfc830240 /* particles/PxParticleBase.h */, - FFFDfc8302a87fbcfc8302a8 /* particles/PxParticleBaseFlag.h */, - FFFDfc8303107fbcfc830310 /* particles/PxParticleCreationData.h */, - FFFDfc8303787fbcfc830378 /* particles/PxParticleFlag.h */, - FFFDfc8303e07fbcfc8303e0 /* particles/PxParticleFluid.h */, - FFFDfc8304487fbcfc830448 /* particles/PxParticleFluidReadData.h */, - FFFDfc8304b07fbcfc8304b0 /* particles/PxParticleReadData.h */, - FFFDfc8305187fbcfc830518 /* particles/PxParticleSystem.h */, - FFFDfc8305807fbcfc830580 /* pvd/PxPvdSceneClient.h */, - FFFDfc8305e87fbcfc8305e8 /* cloth/PxCloth.h */, - FFFDfc8306507fbcfc830650 /* cloth/PxClothCollisionData.h */, - FFFDfc8306b87fbcfc8306b8 /* cloth/PxClothFabric.h */, - FFFDfc8307207fbcfc830720 /* cloth/PxClothParticleData.h */, - FFFDfc8307887fbcfc830788 /* cloth/PxClothTypes.h */, + FFFDb31b9a007feab31b9a00 /* PxActor.h */, + FFFDb31b9a687feab31b9a68 /* PxAggregate.h */, + FFFDb31b9ad07feab31b9ad0 /* PxArticulation.h */, + FFFDb31b9b387feab31b9b38 /* PxArticulationJoint.h */, + FFFDb31b9ba07feab31b9ba0 /* PxArticulationLink.h */, + FFFDb31b9c087feab31b9c08 /* PxBatchQuery.h */, + FFFDb31b9c707feab31b9c70 /* PxBatchQueryDesc.h */, + FFFDb31b9cd87feab31b9cd8 /* PxBroadPhase.h */, + FFFDb31b9d407feab31b9d40 /* PxClient.h */, + FFFDb31b9da87feab31b9da8 /* PxConstraint.h */, + FFFDb31b9e107feab31b9e10 /* PxConstraintDesc.h */, + FFFDb31b9e787feab31b9e78 /* PxContact.h */, + FFFDb31b9ee07feab31b9ee0 /* PxContactModifyCallback.h */, + FFFDb31b9f487feab31b9f48 /* PxDeletionListener.h */, + FFFDb31b9fb07feab31b9fb0 /* PxFiltering.h */, + FFFDb31ba0187feab31ba018 /* PxForceMode.h */, + FFFDb31ba0807feab31ba080 /* PxImmediateMode.h */, + FFFDb31ba0e87feab31ba0e8 /* PxLockedData.h */, + FFFDb31ba1507feab31ba150 /* PxMaterial.h */, + FFFDb31ba1b87feab31ba1b8 /* PxPhysXConfig.h */, + FFFDb31ba2207feab31ba220 /* PxPhysics.h */, + FFFDb31ba2887feab31ba288 /* PxPhysicsAPI.h */, + FFFDb31ba2f07feab31ba2f0 /* PxPhysicsSerialization.h */, + FFFDb31ba3587feab31ba358 /* PxPhysicsVersion.h */, + FFFDb31ba3c07feab31ba3c0 /* PxPruningStructure.h */, + FFFDb31ba4287feab31ba428 /* PxQueryFiltering.h */, + FFFDb31ba4907feab31ba490 /* PxQueryReport.h */, + FFFDb31ba4f87feab31ba4f8 /* PxRigidActor.h */, + FFFDb31ba5607feab31ba560 /* PxRigidBody.h */, + FFFDb31ba5c87feab31ba5c8 /* PxRigidDynamic.h */, + FFFDb31ba6307feab31ba630 /* PxRigidStatic.h */, + FFFDb31ba6987feab31ba698 /* PxScene.h */, + FFFDb31ba7007feab31ba700 /* PxSceneDesc.h */, + FFFDb31ba7687feab31ba768 /* PxSceneLock.h */, + FFFDb31ba7d07feab31ba7d0 /* PxShape.h */, + FFFDb31ba8387feab31ba838 /* PxSimulationEventCallback.h */, + FFFDb31ba8a07feab31ba8a0 /* PxSimulationStatistics.h */, + FFFDb31ba9087feab31ba908 /* PxSpatialIndex.h */, + FFFDb31ba9707feab31ba970 /* PxVisualizationParameter.h */, + FFFDb31ba9d87feab31ba9d8 /* PxVolumeCache.h */, + FFFDb31baa407feab31baa40 /* particles/PxParticleBase.h */, + FFFDb31baaa87feab31baaa8 /* particles/PxParticleBaseFlag.h */, + FFFDb31bab107feab31bab10 /* particles/PxParticleCreationData.h */, + FFFDb31bab787feab31bab78 /* particles/PxParticleFlag.h */, + FFFDb31babe07feab31babe0 /* particles/PxParticleFluid.h */, + FFFDb31bac487feab31bac48 /* particles/PxParticleFluidReadData.h */, + FFFDb31bacb07feab31bacb0 /* particles/PxParticleReadData.h */, + FFFDb31bad187feab31bad18 /* particles/PxParticleSystem.h */, + FFFDb31bad807feab31bad80 /* pvd/PxPvdSceneClient.h */, + FFFDb31bade87feab31bade8 /* cloth/PxCloth.h */, + FFFDb31bae507feab31bae50 /* cloth/PxClothCollisionData.h */, + FFFDb31baeb87feab31baeb8 /* cloth/PxClothFabric.h */, + FFFDb31baf207feab31baf20 /* cloth/PxClothParticleData.h */, + FFFDb31baf887feab31baf88 /* cloth/PxClothTypes.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBfc071ce07fbcfc071ce0 /* metadata */ = { + FFFBb2fc7f507feab2fc7f50 /* metadata */ = { isa = PBXGroup; children = ( - FFFDfc8308007fbcfc830800 /* core/include/PvdMetaDataDefineProperties.h */, - FFFDfc8308687fbcfc830868 /* core/include/PvdMetaDataExtensions.h */, - FFFDfc8308d07fbcfc8308d0 /* core/include/PvdMetaDataPropertyVisitor.h */, - FFFDfc8309387fbcfc830938 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */, - FFFDfc8309a07fbcfc8309a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */, - FFFDfc830a087fbcfc830a08 /* core/include/PxMetaDataCompare.h */, - FFFDfc830a707fbcfc830a70 /* core/include/PxMetaDataCppPrefix.h */, - FFFDfc830ad87fbcfc830ad8 /* core/include/PxMetaDataObjects.h */, - FFFDfc830b407fbcfc830b40 /* core/include/RepXMetaDataPropertyVisitor.h */, - FFFDfc830ba87fbcfc830ba8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */, - FFFDfc830c107fbcfc830c10 /* core/src/PxMetaDataObjects.cpp */, + FFFDb31bb0007feab31bb000 /* core/include/PvdMetaDataDefineProperties.h */, + FFFDb31bb0687feab31bb068 /* core/include/PvdMetaDataExtensions.h */, + FFFDb31bb0d07feab31bb0d0 /* core/include/PvdMetaDataPropertyVisitor.h */, + FFFDb31bb1387feab31bb138 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */, + FFFDb31bb1a07feab31bb1a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */, + FFFDb31bb2087feab31bb208 /* core/include/PxMetaDataCompare.h */, + FFFDb31bb2707feab31bb270 /* core/include/PxMetaDataCppPrefix.h */, + FFFDb31bb2d87feab31bb2d8 /* core/include/PxMetaDataObjects.h */, + FFFDb31bb3407feab31bb340 /* core/include/RepXMetaDataPropertyVisitor.h */, + FFFDb31bb3a87feab31bb3a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */, + FFFDb31bb4107feab31bb410 /* core/src/PxMetaDataObjects.cpp */, ); name = "metadata"; sourceTree = SOURCE_ROOT; }; - FFFBfc0717b07fbcfc0717b0 /* PhysXCharacterKinematic */ = { + FFFBb2fc41607feab2fc4160 /* PhysXCharacterKinematic */ = { isa = PBXGroup; children = ( - FFFBfc0760507fbcfc076050 /* include */, - FFFBfc0760787fbcfc076078 /* src */, + FFFBb2fc71107feab2fc7110 /* include */, + FFFBb2fc71387feab2fc7138 /* src */, ); name = "PhysXCharacterKinematic"; sourceTree = "<group>"; }; - FFFBfc0760507fbcfc076050 /* include */ = { + FFFBb2fc71107feab2fc7110 /* include */ = { isa = PBXGroup; children = ( - FFFDfc0760a07fbcfc0760a0 /* PxBoxController.h */, - FFFDfc0761087fbcfc076108 /* PxCapsuleController.h */, - FFFDfc0761707fbcfc076170 /* PxCharacter.h */, - FFFDfc0761d87fbcfc0761d8 /* PxController.h */, - FFFDfc0762407fbcfc076240 /* PxControllerBehavior.h */, - FFFDfc0762a87fbcfc0762a8 /* PxControllerManager.h */, - FFFDfc0763107fbcfc076310 /* PxControllerObstacles.h */, - FFFDfc0763787fbcfc076378 /* PxExtended.h */, + FFFDb2fc71607feab2fc7160 /* PxBoxController.h */, + FFFDb2fc71c87feab2fc71c8 /* PxCapsuleController.h */, + FFFDb2fc72307feab2fc7230 /* PxCharacter.h */, + FFFDb2fc72987feab2fc7298 /* PxController.h */, + FFFDb2fc73007feab2fc7300 /* PxControllerBehavior.h */, + FFFDb2fc73687feab2fc7368 /* PxControllerManager.h */, + FFFDb2fc73d07feab2fc73d0 /* PxControllerObstacles.h */, + FFFDb2fc74387feab2fc7438 /* PxExtended.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBfc0760787fbcfc076078 /* src */ = { + FFFBb2fc71387feab2fc7138 /* src */ = { isa = PBXGroup; children = ( - FFFDfc8384007fbcfc838400 /* CctBoxController.h */, - FFFDfc8384687fbcfc838468 /* CctCapsuleController.h */, - FFFDfc8384d07fbcfc8384d0 /* CctCharacterController.h */, - FFFDfc8385387fbcfc838538 /* CctCharacterControllerManager.h */, - FFFDfc8385a07fbcfc8385a0 /* CctController.h */, - FFFDfc8386087fbcfc838608 /* CctInternalStructs.h */, - FFFDfc8386707fbcfc838670 /* CctObstacleContext.h */, - FFFDfc8386d87fbcfc8386d8 /* CctSweptBox.h */, - FFFDfc8387407fbcfc838740 /* CctSweptCapsule.h */, - FFFDfc8387a87fbcfc8387a8 /* CctSweptVolume.h */, - FFFDfc8388107fbcfc838810 /* CctUtils.h */, - FFFDfc8388787fbcfc838878 /* CctBoxController.cpp */, - FFFDfc8388e07fbcfc8388e0 /* CctCapsuleController.cpp */, - FFFDfc8389487fbcfc838948 /* CctCharacterController.cpp */, - FFFDfc8389b07fbcfc8389b0 /* CctCharacterControllerCallbacks.cpp */, - FFFDfc838a187fbcfc838a18 /* CctCharacterControllerManager.cpp */, - FFFDfc838a807fbcfc838a80 /* CctController.cpp */, - FFFDfc838ae87fbcfc838ae8 /* CctObstacleContext.cpp */, - FFFDfc838b507fbcfc838b50 /* CctSweptBox.cpp */, - FFFDfc838bb87fbcfc838bb8 /* CctSweptCapsule.cpp */, - FFFDfc838c207fbcfc838c20 /* CctSweptVolume.cpp */, + FFFDb31b56007feab31b5600 /* CctBoxController.h */, + FFFDb31b56687feab31b5668 /* CctCapsuleController.h */, + FFFDb31b56d07feab31b56d0 /* CctCharacterController.h */, + FFFDb31b57387feab31b5738 /* CctCharacterControllerManager.h */, + FFFDb31b57a07feab31b57a0 /* CctController.h */, + FFFDb31b58087feab31b5808 /* CctInternalStructs.h */, + FFFDb31b58707feab31b5870 /* CctObstacleContext.h */, + FFFDb31b58d87feab31b58d8 /* CctSweptBox.h */, + FFFDb31b59407feab31b5940 /* CctSweptCapsule.h */, + FFFDb31b59a87feab31b59a8 /* CctSweptVolume.h */, + FFFDb31b5a107feab31b5a10 /* CctUtils.h */, + FFFDb31b5a787feab31b5a78 /* CctBoxController.cpp */, + FFFDb31b5ae07feab31b5ae0 /* CctCapsuleController.cpp */, + FFFDb31b5b487feab31b5b48 /* CctCharacterController.cpp */, + FFFDb31b5bb07feab31b5bb0 /* CctCharacterControllerCallbacks.cpp */, + FFFDb31b5c187feab31b5c18 /* CctCharacterControllerManager.cpp */, + FFFDb31b5c807feab31b5c80 /* CctController.cpp */, + FFFDb31b5ce87feab31b5ce8 /* CctObstacleContext.cpp */, + FFFDb31b5d507feab31b5d50 /* CctSweptBox.cpp */, + FFFDb31b5db87feab31b5db8 /* CctSweptCapsule.cpp */, + FFFDb31b5e207feab31b5e20 /* CctSweptVolume.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBfc0771907fbcfc077190 /* PhysXVehicle */ = { + FFFBb2fc15c07feab2fc15c0 /* PhysXVehicle */ = { isa = PBXGroup; children = ( - FFFBfc0d10607fbcfc0d1060 /* include */, - FFFBfc0d10887fbcfc0d1088 /* src */, - FFFBfc0d10b07fbcfc0d10b0 /* metadata */, + FFFBb2fd0e107feab2fd0e10 /* include */, + FFFBb2fd0e387feab2fd0e38 /* src */, + FFFBb2fd0e607feab2fd0e60 /* metadata */, ); name = "PhysXVehicle"; sourceTree = "<group>"; }; - FFFBfc0d10607fbcfc0d1060 /* include */ = { + FFFBb2fd0e107feab2fd0e10 /* include */ = { isa = PBXGroup; children = ( - FFFDfc83b2007fbcfc83b200 /* PxVehicleComponents.h */, - FFFDfc83b2687fbcfc83b268 /* PxVehicleDrive.h */, - FFFDfc83b2d07fbcfc83b2d0 /* PxVehicleDrive4W.h */, - FFFDfc83b3387fbcfc83b338 /* PxVehicleDriveNW.h */, - FFFDfc83b3a07fbcfc83b3a0 /* PxVehicleDriveTank.h */, - FFFDfc83b4087fbcfc83b408 /* PxVehicleNoDrive.h */, - FFFDfc83b4707fbcfc83b470 /* PxVehicleSDK.h */, - FFFDfc83b4d87fbcfc83b4d8 /* PxVehicleShaders.h */, - FFFDfc83b5407fbcfc83b540 /* PxVehicleTireFriction.h */, - FFFDfc83b5a87fbcfc83b5a8 /* PxVehicleUpdate.h */, - FFFDfc83b6107fbcfc83b610 /* PxVehicleUtil.h */, - FFFDfc83b6787fbcfc83b678 /* PxVehicleUtilControl.h */, - FFFDfc83b6e07fbcfc83b6e0 /* PxVehicleUtilSetup.h */, - FFFDfc83b7487fbcfc83b748 /* PxVehicleUtilTelemetry.h */, - FFFDfc83b7b07fbcfc83b7b0 /* PxVehicleWheels.h */, + FFFDb31bf6007feab31bf600 /* PxVehicleComponents.h */, + FFFDb31bf6687feab31bf668 /* PxVehicleDrive.h */, + FFFDb31bf6d07feab31bf6d0 /* PxVehicleDrive4W.h */, + FFFDb31bf7387feab31bf738 /* PxVehicleDriveNW.h */, + FFFDb31bf7a07feab31bf7a0 /* PxVehicleDriveTank.h */, + FFFDb31bf8087feab31bf808 /* PxVehicleNoDrive.h */, + FFFDb31bf8707feab31bf870 /* PxVehicleSDK.h */, + FFFDb31bf8d87feab31bf8d8 /* PxVehicleShaders.h */, + FFFDb31bf9407feab31bf940 /* PxVehicleTireFriction.h */, + FFFDb31bf9a87feab31bf9a8 /* PxVehicleUpdate.h */, + FFFDb31bfa107feab31bfa10 /* PxVehicleUtil.h */, + FFFDb31bfa787feab31bfa78 /* PxVehicleUtilControl.h */, + FFFDb31bfae07feab31bfae0 /* PxVehicleUtilSetup.h */, + FFFDb31bfb487feab31bfb48 /* PxVehicleUtilTelemetry.h */, + FFFDb31bfbb07feab31bfbb0 /* PxVehicleWheels.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBfc0d10887fbcfc0d1088 /* src */ = { + FFFBb2fd0e387feab2fd0e38 /* src */ = { isa = PBXGroup; children = ( - FFFDfc83d4007fbcfc83d400 /* PxVehicleDefaults.h */, - FFFDfc83d4687fbcfc83d468 /* PxVehicleLinearMath.h */, - FFFDfc83d4d07fbcfc83d4d0 /* PxVehicleSerialization.h */, - FFFDfc83d5387fbcfc83d538 /* PxVehicleSuspLimitConstraintShader.h */, - FFFDfc83d5a07fbcfc83d5a0 /* PxVehicleSuspWheelTire4.h */, - FFFDfc83d6087fbcfc83d608 /* PxVehicleComponents.cpp */, - FFFDfc83d6707fbcfc83d670 /* PxVehicleDrive.cpp */, - FFFDfc83d6d87fbcfc83d6d8 /* PxVehicleDrive4W.cpp */, - FFFDfc83d7407fbcfc83d740 /* PxVehicleDriveNW.cpp */, - FFFDfc83d7a87fbcfc83d7a8 /* PxVehicleDriveTank.cpp */, - FFFDfc83d8107fbcfc83d810 /* PxVehicleMetaData.cpp */, - FFFDfc83d8787fbcfc83d878 /* PxVehicleNoDrive.cpp */, - FFFDfc83d8e07fbcfc83d8e0 /* PxVehicleSDK.cpp */, - FFFDfc83d9487fbcfc83d948 /* PxVehicleSerialization.cpp */, - FFFDfc83d9b07fbcfc83d9b0 /* PxVehicleSuspWheelTire4.cpp */, - FFFDfc83da187fbcfc83da18 /* PxVehicleTireFriction.cpp */, - FFFDfc83da807fbcfc83da80 /* PxVehicleUpdate.cpp */, - FFFDfc83dae87fbcfc83dae8 /* PxVehicleWheels.cpp */, - FFFDfc83db507fbcfc83db50 /* VehicleUtilControl.cpp */, - FFFDfc83dbb87fbcfc83dbb8 /* VehicleUtilSetup.cpp */, - FFFDfc83dc207fbcfc83dc20 /* VehicleUtilTelemetry.cpp */, + FFFDb31c14007feab31c1400 /* PxVehicleDefaults.h */, + FFFDb31c14687feab31c1468 /* PxVehicleLinearMath.h */, + FFFDb31c14d07feab31c14d0 /* PxVehicleSerialization.h */, + FFFDb31c15387feab31c1538 /* PxVehicleSuspLimitConstraintShader.h */, + FFFDb31c15a07feab31c15a0 /* PxVehicleSuspWheelTire4.h */, + FFFDb31c16087feab31c1608 /* PxVehicleComponents.cpp */, + FFFDb31c16707feab31c1670 /* PxVehicleDrive.cpp */, + FFFDb31c16d87feab31c16d8 /* PxVehicleDrive4W.cpp */, + FFFDb31c17407feab31c1740 /* PxVehicleDriveNW.cpp */, + FFFDb31c17a87feab31c17a8 /* PxVehicleDriveTank.cpp */, + FFFDb31c18107feab31c1810 /* PxVehicleMetaData.cpp */, + FFFDb31c18787feab31c1878 /* PxVehicleNoDrive.cpp */, + FFFDb31c18e07feab31c18e0 /* PxVehicleSDK.cpp */, + FFFDb31c19487feab31c1948 /* PxVehicleSerialization.cpp */, + FFFDb31c19b07feab31c19b0 /* PxVehicleSuspWheelTire4.cpp */, + FFFDb31c1a187feab31c1a18 /* PxVehicleTireFriction.cpp */, + FFFDb31c1a807feab31c1a80 /* PxVehicleUpdate.cpp */, + FFFDb31c1ae87feab31c1ae8 /* PxVehicleWheels.cpp */, + FFFDb31c1b507feab31c1b50 /* VehicleUtilControl.cpp */, + FFFDb31c1bb87feab31c1bb8 /* VehicleUtilSetup.cpp */, + FFFDb31c1c207feab31c1c20 /* VehicleUtilTelemetry.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBfc0d10b07fbcfc0d10b0 /* metadata */ = { + FFFBb2fd0e607feab2fd0e60 /* metadata */ = { isa = PBXGroup; children = ( - FFFDfc0c76907fbcfc0c7690 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */, - FFFDfc0c76f87fbcfc0c76f8 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */, - FFFDfc0c77607fbcfc0c7760 /* include/PxVehicleMetaDataObjects.h */, - FFFDfc0c77c87fbcfc0c77c8 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */, - FFFDfc0c78307fbcfc0c7830 /* src/PxVehicleMetaDataObjects.cpp */, + FFFDb2fd2f407feab2fd2f40 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */, + FFFDb2fd2fa87feab2fd2fa8 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */, + FFFDb2fd30107feab2fd3010 /* include/PxVehicleMetaDataObjects.h */, + FFFDb2fd30787feab2fd3078 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */, + FFFDb2fd30e07feab2fd30e0 /* src/PxVehicleMetaDataObjects.cpp */, ); name = "metadata"; sourceTree = SOURCE_ROOT; }; - FFFBfc0c74907fbcfc0c7490 /* PhysXExtensions */ = { + FFFBb2fd2b007feab2fd2b00 /* PhysXExtensions */ = { isa = PBXGroup; children = ( - FFFBfc0c20d07fbcfc0c20d0 /* include */, - FFFBfc0c20f87fbcfc0c20f8 /* src */, - FFFBfc0c21207fbcfc0c2120 /* serialization */, - FFFBfc0c21487fbcfc0c2148 /* metadata */, + FFFBb2fda2f07feab2fda2f0 /* include */, + FFFBb2fda3187feab2fda318 /* src */, + FFFBb2fda3407feab2fda340 /* serialization */, + FFFBb2fda3687feab2fda368 /* metadata */, ); name = "PhysXExtensions"; sourceTree = "<group>"; }; - FFFBfc0c20d07fbcfc0c20d0 /* include */ = { + FFFBb2fda2f07feab2fda2f0 /* include */ = { isa = PBXGroup; children = ( - FFFDfc8404007fbcfc840400 /* PxBinaryConverter.h */, - FFFDfc8404687fbcfc840468 /* PxBroadPhaseExt.h */, - FFFDfc8404d07fbcfc8404d0 /* PxClothFabricCooker.h */, - FFFDfc8405387fbcfc840538 /* PxClothMeshDesc.h */, - FFFDfc8405a07fbcfc8405a0 /* PxClothMeshQuadifier.h */, - FFFDfc8406087fbcfc840608 /* PxClothTetherCooker.h */, - FFFDfc8406707fbcfc840670 /* PxCollectionExt.h */, - FFFDfc8406d87fbcfc8406d8 /* PxConstraintExt.h */, - FFFDfc8407407fbcfc840740 /* PxConvexMeshExt.h */, - FFFDfc8407a87fbcfc8407a8 /* PxD6Joint.h */, - FFFDfc8408107fbcfc840810 /* PxDefaultAllocator.h */, - FFFDfc8408787fbcfc840878 /* PxDefaultCpuDispatcher.h */, - FFFDfc8408e07fbcfc8408e0 /* PxDefaultErrorCallback.h */, - FFFDfc8409487fbcfc840948 /* PxDefaultSimulationFilterShader.h */, - FFFDfc8409b07fbcfc8409b0 /* PxDefaultStreams.h */, - FFFDfc840a187fbcfc840a18 /* PxDistanceJoint.h */, - FFFDfc840a807fbcfc840a80 /* PxExtensionsAPI.h */, - FFFDfc840ae87fbcfc840ae8 /* PxFixedJoint.h */, - FFFDfc840b507fbcfc840b50 /* PxJoint.h */, - FFFDfc840bb87fbcfc840bb8 /* PxJointLimit.h */, - FFFDfc840c207fbcfc840c20 /* PxJointRepXSerializer.h */, - FFFDfc840c887fbcfc840c88 /* PxMassProperties.h */, - FFFDfc840cf07fbcfc840cf0 /* PxParticleExt.h */, - FFFDfc840d587fbcfc840d58 /* PxPrismaticJoint.h */, - FFFDfc840dc07fbcfc840dc0 /* PxRaycastCCD.h */, - FFFDfc840e287fbcfc840e28 /* PxRepXSerializer.h */, - FFFDfc840e907fbcfc840e90 /* PxRepXSimpleType.h */, - FFFDfc840ef87fbcfc840ef8 /* PxRevoluteJoint.h */, - FFFDfc840f607fbcfc840f60 /* PxRigidActorExt.h */, - FFFDfc840fc87fbcfc840fc8 /* PxRigidBodyExt.h */, - FFFDfc8410307fbcfc841030 /* PxSceneQueryExt.h */, - FFFDfc8410987fbcfc841098 /* PxSerialization.h */, - FFFDfc8411007fbcfc841100 /* PxShapeExt.h */, - FFFDfc8411687fbcfc841168 /* PxSimpleFactory.h */, - FFFDfc8411d07fbcfc8411d0 /* PxSmoothNormals.h */, - FFFDfc8412387fbcfc841238 /* PxSphericalJoint.h */, - FFFDfc8412a07fbcfc8412a0 /* PxStringTableExt.h */, - FFFDfc8413087fbcfc841308 /* PxTriangleMeshExt.h */, + FFFDb31c4c007feab31c4c00 /* PxBinaryConverter.h */, + FFFDb31c4c687feab31c4c68 /* PxBroadPhaseExt.h */, + FFFDb31c4cd07feab31c4cd0 /* PxClothFabricCooker.h */, + FFFDb31c4d387feab31c4d38 /* PxClothMeshDesc.h */, + FFFDb31c4da07feab31c4da0 /* PxClothMeshQuadifier.h */, + FFFDb31c4e087feab31c4e08 /* PxClothTetherCooker.h */, + FFFDb31c4e707feab31c4e70 /* PxCollectionExt.h */, + FFFDb31c4ed87feab31c4ed8 /* PxConstraintExt.h */, + FFFDb31c4f407feab31c4f40 /* PxConvexMeshExt.h */, + FFFDb31c4fa87feab31c4fa8 /* PxD6Joint.h */, + FFFDb31c50107feab31c5010 /* PxDefaultAllocator.h */, + FFFDb31c50787feab31c5078 /* PxDefaultCpuDispatcher.h */, + FFFDb31c50e07feab31c50e0 /* PxDefaultErrorCallback.h */, + FFFDb31c51487feab31c5148 /* PxDefaultSimulationFilterShader.h */, + FFFDb31c51b07feab31c51b0 /* PxDefaultStreams.h */, + FFFDb31c52187feab31c5218 /* PxDistanceJoint.h */, + FFFDb31c52807feab31c5280 /* PxExtensionsAPI.h */, + FFFDb31c52e87feab31c52e8 /* PxFixedJoint.h */, + FFFDb31c53507feab31c5350 /* PxJoint.h */, + FFFDb31c53b87feab31c53b8 /* PxJointLimit.h */, + FFFDb31c54207feab31c5420 /* PxMassProperties.h */, + FFFDb31c54887feab31c5488 /* PxParticleExt.h */, + FFFDb31c54f07feab31c54f0 /* PxPrismaticJoint.h */, + FFFDb31c55587feab31c5558 /* PxRaycastCCD.h */, + FFFDb31c55c07feab31c55c0 /* PxRepXSerializer.h */, + FFFDb31c56287feab31c5628 /* PxRepXSimpleType.h */, + FFFDb31c56907feab31c5690 /* PxRevoluteJoint.h */, + FFFDb31c56f87feab31c56f8 /* PxRigidActorExt.h */, + FFFDb31c57607feab31c5760 /* PxRigidBodyExt.h */, + FFFDb31c57c87feab31c57c8 /* PxSceneQueryExt.h */, + FFFDb31c58307feab31c5830 /* PxSerialization.h */, + FFFDb31c58987feab31c5898 /* PxShapeExt.h */, + FFFDb31c59007feab31c5900 /* PxSimpleFactory.h */, + FFFDb31c59687feab31c5968 /* PxSmoothNormals.h */, + FFFDb31c59d07feab31c59d0 /* PxSphericalJoint.h */, + FFFDb31c5a387feab31c5a38 /* PxStringTableExt.h */, + FFFDb31c5aa07feab31c5aa0 /* PxTriangleMeshExt.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBfc0c20f87fbcfc0c20f8 /* src */ = { + FFFBb2fda3187feab2fda318 /* src */ = { isa = PBXGroup; children = ( - FFFDfc83ee007fbcfc83ee00 /* ExtConstraintHelper.h */, - FFFDfc83ee687fbcfc83ee68 /* ExtCpuWorkerThread.h */, - FFFDfc83eed07fbcfc83eed0 /* ExtD6Joint.h */, - FFFDfc83ef387fbcfc83ef38 /* ExtDefaultCpuDispatcher.h */, - FFFDfc83efa07fbcfc83efa0 /* ExtDistanceJoint.h */, - FFFDfc83f0087fbcfc83f008 /* ExtFixedJoint.h */, - FFFDfc83f0707fbcfc83f070 /* ExtInertiaTensor.h */, - FFFDfc83f0d87fbcfc83f0d8 /* ExtJoint.h */, - FFFDfc83f1407fbcfc83f140 /* ExtJointMetaDataExtensions.h */, - FFFDfc83f1a87fbcfc83f1a8 /* ExtPlatform.h */, - FFFDfc83f2107fbcfc83f210 /* ExtPrismaticJoint.h */, - FFFDfc83f2787fbcfc83f278 /* ExtPvd.h */, - FFFDfc83f2e07fbcfc83f2e0 /* ExtRevoluteJoint.h */, - FFFDfc83f3487fbcfc83f348 /* ExtSerialization.h */, - FFFDfc83f3b07fbcfc83f3b0 /* ExtSharedQueueEntryPool.h */, - FFFDfc83f4187fbcfc83f418 /* ExtSphericalJoint.h */, - FFFDfc83f4807fbcfc83f480 /* ExtTaskQueueHelper.h */, - FFFDfc83f4e87fbcfc83f4e8 /* ExtBroadPhase.cpp */, - FFFDfc83f5507fbcfc83f550 /* ExtClothFabricCooker.cpp */, - FFFDfc83f5b87fbcfc83f5b8 /* ExtClothGeodesicTetherCooker.cpp */, - FFFDfc83f6207fbcfc83f620 /* ExtClothMeshQuadifier.cpp */, - FFFDfc83f6887fbcfc83f688 /* ExtClothSimpleTetherCooker.cpp */, - FFFDfc83f6f07fbcfc83f6f0 /* ExtCollection.cpp */, - FFFDfc83f7587fbcfc83f758 /* ExtConvexMeshExt.cpp */, - FFFDfc83f7c07fbcfc83f7c0 /* ExtCpuWorkerThread.cpp */, - FFFDfc83f8287fbcfc83f828 /* ExtD6Joint.cpp */, - FFFDfc83f8907fbcfc83f890 /* ExtD6JointSolverPrep.cpp */, - FFFDfc83f8f87fbcfc83f8f8 /* ExtDefaultCpuDispatcher.cpp */, - FFFDfc83f9607fbcfc83f960 /* ExtDefaultErrorCallback.cpp */, - FFFDfc83f9c87fbcfc83f9c8 /* ExtDefaultSimulationFilterShader.cpp */, - FFFDfc83fa307fbcfc83fa30 /* ExtDefaultStreams.cpp */, - FFFDfc83fa987fbcfc83fa98 /* ExtDistanceJoint.cpp */, - FFFDfc83fb007fbcfc83fb00 /* ExtDistanceJointSolverPrep.cpp */, - FFFDfc83fb687fbcfc83fb68 /* ExtExtensions.cpp */, - FFFDfc83fbd07fbcfc83fbd0 /* ExtFixedJoint.cpp */, - FFFDfc83fc387fbcfc83fc38 /* ExtFixedJointSolverPrep.cpp */, - FFFDfc83fca07fbcfc83fca0 /* ExtJoint.cpp */, - FFFDfc83fd087fbcfc83fd08 /* ExtMetaData.cpp */, - FFFDfc83fd707fbcfc83fd70 /* ExtParticleExt.cpp */, - FFFDfc83fdd87fbcfc83fdd8 /* ExtPrismaticJoint.cpp */, - FFFDfc83fe407fbcfc83fe40 /* ExtPrismaticJointSolverPrep.cpp */, - FFFDfc83fea87fbcfc83fea8 /* ExtPvd.cpp */, - FFFDfc83ff107fbcfc83ff10 /* ExtPxStringTable.cpp */, - FFFDfc83ff787fbcfc83ff78 /* ExtRaycastCCD.cpp */, - FFFDfc83ffe07fbcfc83ffe0 /* ExtRevoluteJoint.cpp */, - FFFDfc8400487fbcfc840048 /* ExtRevoluteJointSolverPrep.cpp */, - FFFDfc8400b07fbcfc8400b0 /* ExtRigidBodyExt.cpp */, - FFFDfc8401187fbcfc840118 /* ExtSceneQueryExt.cpp */, - FFFDfc8401807fbcfc840180 /* ExtSimpleFactory.cpp */, - FFFDfc8401e87fbcfc8401e8 /* ExtSmoothNormals.cpp */, - FFFDfc8402507fbcfc840250 /* ExtSphericalJoint.cpp */, - FFFDfc8402b87fbcfc8402b8 /* ExtSphericalJointSolverPrep.cpp */, - FFFDfc8403207fbcfc840320 /* ExtTriangleMeshExt.cpp */, + FFFDb31c36007feab31c3600 /* ExtConstraintHelper.h */, + FFFDb31c36687feab31c3668 /* ExtCpuWorkerThread.h */, + FFFDb31c36d07feab31c36d0 /* ExtD6Joint.h */, + FFFDb31c37387feab31c3738 /* ExtDefaultCpuDispatcher.h */, + FFFDb31c37a07feab31c37a0 /* ExtDistanceJoint.h */, + FFFDb31c38087feab31c3808 /* ExtFixedJoint.h */, + FFFDb31c38707feab31c3870 /* ExtInertiaTensor.h */, + FFFDb31c38d87feab31c38d8 /* ExtJoint.h */, + FFFDb31c39407feab31c3940 /* ExtJointMetaDataExtensions.h */, + FFFDb31c39a87feab31c39a8 /* ExtPlatform.h */, + FFFDb31c3a107feab31c3a10 /* ExtPrismaticJoint.h */, + FFFDb31c3a787feab31c3a78 /* ExtPvd.h */, + FFFDb31c3ae07feab31c3ae0 /* ExtRevoluteJoint.h */, + FFFDb31c3b487feab31c3b48 /* ExtSerialization.h */, + FFFDb31c3bb07feab31c3bb0 /* ExtSharedQueueEntryPool.h */, + FFFDb31c3c187feab31c3c18 /* ExtSphericalJoint.h */, + FFFDb31c3c807feab31c3c80 /* ExtTaskQueueHelper.h */, + FFFDb31c3ce87feab31c3ce8 /* ExtBroadPhase.cpp */, + FFFDb31c3d507feab31c3d50 /* ExtClothFabricCooker.cpp */, + FFFDb31c3db87feab31c3db8 /* ExtClothGeodesicTetherCooker.cpp */, + FFFDb31c3e207feab31c3e20 /* ExtClothMeshQuadifier.cpp */, + FFFDb31c3e887feab31c3e88 /* ExtClothSimpleTetherCooker.cpp */, + FFFDb31c3ef07feab31c3ef0 /* ExtCollection.cpp */, + FFFDb31c3f587feab31c3f58 /* ExtConvexMeshExt.cpp */, + FFFDb31c3fc07feab31c3fc0 /* ExtCpuWorkerThread.cpp */, + FFFDb31c40287feab31c4028 /* ExtD6Joint.cpp */, + FFFDb31c40907feab31c4090 /* ExtD6JointSolverPrep.cpp */, + FFFDb31c40f87feab31c40f8 /* ExtDefaultCpuDispatcher.cpp */, + FFFDb31c41607feab31c4160 /* ExtDefaultErrorCallback.cpp */, + FFFDb31c41c87feab31c41c8 /* ExtDefaultSimulationFilterShader.cpp */, + FFFDb31c42307feab31c4230 /* ExtDefaultStreams.cpp */, + FFFDb31c42987feab31c4298 /* ExtDistanceJoint.cpp */, + FFFDb31c43007feab31c4300 /* ExtDistanceJointSolverPrep.cpp */, + FFFDb31c43687feab31c4368 /* ExtExtensions.cpp */, + FFFDb31c43d07feab31c43d0 /* ExtFixedJoint.cpp */, + FFFDb31c44387feab31c4438 /* ExtFixedJointSolverPrep.cpp */, + FFFDb31c44a07feab31c44a0 /* ExtJoint.cpp */, + FFFDb31c45087feab31c4508 /* ExtMetaData.cpp */, + FFFDb31c45707feab31c4570 /* ExtParticleExt.cpp */, + FFFDb31c45d87feab31c45d8 /* ExtPrismaticJoint.cpp */, + FFFDb31c46407feab31c4640 /* ExtPrismaticJointSolverPrep.cpp */, + FFFDb31c46a87feab31c46a8 /* ExtPvd.cpp */, + FFFDb31c47107feab31c4710 /* ExtPxStringTable.cpp */, + FFFDb31c47787feab31c4778 /* ExtRaycastCCD.cpp */, + FFFDb31c47e07feab31c47e0 /* ExtRevoluteJoint.cpp */, + FFFDb31c48487feab31c4848 /* ExtRevoluteJointSolverPrep.cpp */, + FFFDb31c48b07feab31c48b0 /* ExtRigidBodyExt.cpp */, + FFFDb31c49187feab31c4918 /* ExtSceneQueryExt.cpp */, + FFFDb31c49807feab31c4980 /* ExtSimpleFactory.cpp */, + FFFDb31c49e87feab31c49e8 /* ExtSmoothNormals.cpp */, + FFFDb31c4a507feab31c4a50 /* ExtSphericalJoint.cpp */, + FFFDb31c4ab87feab31c4ab8 /* ExtSphericalJointSolverPrep.cpp */, + FFFDb31c4b207feab31c4b20 /* ExtTriangleMeshExt.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBfc0c21207fbcfc0c2120 /* serialization */ = { + FFFBb2fda3407feab2fda340 /* serialization */ = { isa = PBXGroup; children = ( - FFFDfc8438007fbcfc843800 /* SnSerialUtils.h */, - FFFDfc8438687fbcfc843868 /* SnSerializationRegistry.h */, - FFFDfc8438d07fbcfc8438d0 /* SnSerialUtils.cpp */, - FFFDfc8439387fbcfc843938 /* SnSerialization.cpp */, - FFFDfc8439a07fbcfc8439a0 /* SnSerializationRegistry.cpp */, - FFFDfc843a087fbcfc843a08 /* Binary/SnConvX.h */, - FFFDfc843a707fbcfc843a70 /* Binary/SnConvX_Align.h */, - FFFDfc843ad87fbcfc843ad8 /* Binary/SnConvX_Common.h */, - FFFDfc843b407fbcfc843b40 /* Binary/SnConvX_MetaData.h */, - FFFDfc843ba87fbcfc843ba8 /* Binary/SnConvX_Output.h */, - FFFDfc843c107fbcfc843c10 /* Binary/SnConvX_Union.h */, - FFFDfc843c787fbcfc843c78 /* Binary/SnSerializationContext.h */, - FFFDfc843ce07fbcfc843ce0 /* Binary/SnBinaryDeserialization.cpp */, - FFFDfc843d487fbcfc843d48 /* Binary/SnBinarySerialization.cpp */, - FFFDfc843db07fbcfc843db0 /* Binary/SnConvX.cpp */, - FFFDfc843e187fbcfc843e18 /* Binary/SnConvX_Align.cpp */, - FFFDfc843e807fbcfc843e80 /* Binary/SnConvX_Convert.cpp */, - FFFDfc843ee87fbcfc843ee8 /* Binary/SnConvX_Error.cpp */, - FFFDfc843f507fbcfc843f50 /* Binary/SnConvX_MetaData.cpp */, - FFFDfc843fb87fbcfc843fb8 /* Binary/SnConvX_Output.cpp */, - FFFDfc8440207fbcfc844020 /* Binary/SnConvX_Union.cpp */, - FFFDfc8440887fbcfc844088 /* Binary/SnSerializationContext.cpp */, - FFFDfc8440f07fbcfc8440f0 /* Xml/SnPxStreamOperators.h */, - FFFDfc8441587fbcfc844158 /* Xml/SnRepX1_0Defaults.h */, - FFFDfc8441c07fbcfc8441c0 /* Xml/SnRepX3_1Defaults.h */, - FFFDfc8442287fbcfc844228 /* Xml/SnRepX3_2Defaults.h */, - FFFDfc8442907fbcfc844290 /* Xml/SnRepXCollection.h */, - FFFDfc8442f87fbcfc8442f8 /* Xml/SnRepXCoreSerializer.h */, - FFFDfc8443607fbcfc844360 /* Xml/SnRepXSerializerImpl.h */, - FFFDfc8443c87fbcfc8443c8 /* Xml/SnRepXUpgrader.h */, - FFFDfc8444307fbcfc844430 /* Xml/SnSimpleXmlWriter.h */, - FFFDfc8444987fbcfc844498 /* Xml/SnXmlDeserializer.h */, - FFFDfc8445007fbcfc844500 /* Xml/SnXmlImpl.h */, - FFFDfc8445687fbcfc844568 /* Xml/SnXmlMemoryAllocator.h */, - FFFDfc8445d07fbcfc8445d0 /* Xml/SnXmlMemoryPool.h */, - FFFDfc8446387fbcfc844638 /* Xml/SnXmlMemoryPoolStreams.h */, - FFFDfc8446a07fbcfc8446a0 /* Xml/SnXmlReader.h */, - FFFDfc8447087fbcfc844708 /* Xml/SnXmlSerializer.h */, - FFFDfc8447707fbcfc844770 /* Xml/SnXmlSimpleXmlWriter.h */, - FFFDfc8447d87fbcfc8447d8 /* Xml/SnXmlStringToType.h */, - FFFDfc8448407fbcfc844840 /* Xml/SnXmlVisitorReader.h */, - FFFDfc8448a87fbcfc8448a8 /* Xml/SnXmlVisitorWriter.h */, - FFFDfc8449107fbcfc844910 /* Xml/SnXmlWriter.h */, - FFFDfc8449787fbcfc844978 /* Xml/SnJointRepXSerializer.cpp */, - FFFDfc8449e07fbcfc8449e0 /* Xml/SnRepXCoreSerializer.cpp */, - FFFDfc844a487fbcfc844a48 /* Xml/SnRepXUpgrader.cpp */, - FFFDfc844ab07fbcfc844ab0 /* Xml/SnXmlSerialization.cpp */, - FFFDfc844b187fbcfc844b18 /* File/SnFile.h */, + FFFDb31c80007feab31c8000 /* SnSerialUtils.h */, + FFFDb31c80687feab31c8068 /* SnSerializationRegistry.h */, + FFFDb31c80d07feab31c80d0 /* SnSerialUtils.cpp */, + FFFDb31c81387feab31c8138 /* SnSerialization.cpp */, + FFFDb31c81a07feab31c81a0 /* SnSerializationRegistry.cpp */, + FFFDb31c82087feab31c8208 /* Binary/SnConvX.h */, + FFFDb31c82707feab31c8270 /* Binary/SnConvX_Align.h */, + FFFDb31c82d87feab31c82d8 /* Binary/SnConvX_Common.h */, + FFFDb31c83407feab31c8340 /* Binary/SnConvX_MetaData.h */, + FFFDb31c83a87feab31c83a8 /* Binary/SnConvX_Output.h */, + FFFDb31c84107feab31c8410 /* Binary/SnConvX_Union.h */, + FFFDb31c84787feab31c8478 /* Binary/SnSerializationContext.h */, + FFFDb31c84e07feab31c84e0 /* Binary/SnBinaryDeserialization.cpp */, + FFFDb31c85487feab31c8548 /* Binary/SnBinarySerialization.cpp */, + FFFDb31c85b07feab31c85b0 /* Binary/SnConvX.cpp */, + FFFDb31c86187feab31c8618 /* Binary/SnConvX_Align.cpp */, + FFFDb31c86807feab31c8680 /* Binary/SnConvX_Convert.cpp */, + FFFDb31c86e87feab31c86e8 /* Binary/SnConvX_Error.cpp */, + FFFDb31c87507feab31c8750 /* Binary/SnConvX_MetaData.cpp */, + FFFDb31c87b87feab31c87b8 /* Binary/SnConvX_Output.cpp */, + FFFDb31c88207feab31c8820 /* Binary/SnConvX_Union.cpp */, + FFFDb31c88887feab31c8888 /* Binary/SnSerializationContext.cpp */, + FFFDb31c88f07feab31c88f0 /* Xml/SnJointRepXSerializer.h */, + FFFDb31c89587feab31c8958 /* Xml/SnPxStreamOperators.h */, + FFFDb31c89c07feab31c89c0 /* Xml/SnRepX1_0Defaults.h */, + FFFDb31c8a287feab31c8a28 /* Xml/SnRepX3_1Defaults.h */, + FFFDb31c8a907feab31c8a90 /* Xml/SnRepX3_2Defaults.h */, + FFFDb31c8af87feab31c8af8 /* Xml/SnRepXCollection.h */, + FFFDb31c8b607feab31c8b60 /* Xml/SnRepXCoreSerializer.h */, + FFFDb31c8bc87feab31c8bc8 /* Xml/SnRepXSerializerImpl.h */, + FFFDb31c8c307feab31c8c30 /* Xml/SnRepXUpgrader.h */, + FFFDb31c8c987feab31c8c98 /* Xml/SnSimpleXmlWriter.h */, + FFFDb31c8d007feab31c8d00 /* Xml/SnXmlDeserializer.h */, + FFFDb31c8d687feab31c8d68 /* Xml/SnXmlImpl.h */, + FFFDb31c8dd07feab31c8dd0 /* Xml/SnXmlMemoryAllocator.h */, + FFFDb31c8e387feab31c8e38 /* Xml/SnXmlMemoryPool.h */, + FFFDb31c8ea07feab31c8ea0 /* Xml/SnXmlMemoryPoolStreams.h */, + FFFDb31c8f087feab31c8f08 /* Xml/SnXmlReader.h */, + FFFDb31c8f707feab31c8f70 /* Xml/SnXmlSerializer.h */, + FFFDb31c8fd87feab31c8fd8 /* Xml/SnXmlSimpleXmlWriter.h */, + FFFDb31c90407feab31c9040 /* Xml/SnXmlStringToType.h */, + FFFDb31c90a87feab31c90a8 /* Xml/SnXmlVisitorReader.h */, + FFFDb31c91107feab31c9110 /* Xml/SnXmlVisitorWriter.h */, + FFFDb31c91787feab31c9178 /* Xml/SnXmlWriter.h */, + FFFDb31c91e07feab31c91e0 /* Xml/SnJointRepXSerializer.cpp */, + FFFDb31c92487feab31c9248 /* Xml/SnRepXCoreSerializer.cpp */, + FFFDb31c92b07feab31c92b0 /* Xml/SnRepXUpgrader.cpp */, + FFFDb31c93187feab31c9318 /* Xml/SnXmlSerialization.cpp */, + FFFDb31c93807feab31c9380 /* File/SnFile.h */, ); name = "serialization"; sourceTree = SOURCE_ROOT; }; - FFFBfc0c21487fbcfc0c2148 /* metadata */ = { + FFFBb2fda3687feab2fda368 /* metadata */ = { isa = PBXGroup; children = ( - FFFDfc8414007fbcfc841400 /* core/include/PvdMetaDataDefineProperties.h */, - FFFDfc8414687fbcfc841468 /* core/include/PvdMetaDataExtensions.h */, - FFFDfc8414d07fbcfc8414d0 /* core/include/PvdMetaDataPropertyVisitor.h */, - FFFDfc8415387fbcfc841538 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */, - FFFDfc8415a07fbcfc8415a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */, - FFFDfc8416087fbcfc841608 /* core/include/PxMetaDataCompare.h */, - FFFDfc8416707fbcfc841670 /* core/include/PxMetaDataCppPrefix.h */, - FFFDfc8416d87fbcfc8416d8 /* core/include/PxMetaDataObjects.h */, - FFFDfc8417407fbcfc841740 /* core/include/RepXMetaDataPropertyVisitor.h */, - FFFDfc8417a87fbcfc8417a8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */, - FFFDfc8418107fbcfc841810 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */, - FFFDfc8418787fbcfc841878 /* extensions/include/PxExtensionMetaDataObjects.h */, - FFFDfc8418e07fbcfc8418e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */, + FFFDb31c5c007feab31c5c00 /* core/include/PvdMetaDataDefineProperties.h */, + FFFDb31c5c687feab31c5c68 /* core/include/PvdMetaDataExtensions.h */, + FFFDb31c5cd07feab31c5cd0 /* core/include/PvdMetaDataPropertyVisitor.h */, + FFFDb31c5d387feab31c5d38 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */, + FFFDb31c5da07feab31c5da0 /* core/include/PxAutoGeneratedMetaDataObjects.h */, + FFFDb31c5e087feab31c5e08 /* core/include/PxMetaDataCompare.h */, + FFFDb31c5e707feab31c5e70 /* core/include/PxMetaDataCppPrefix.h */, + FFFDb31c5ed87feab31c5ed8 /* core/include/PxMetaDataObjects.h */, + FFFDb31c5f407feab31c5f40 /* core/include/RepXMetaDataPropertyVisitor.h */, + FFFDb31c5fa87feab31c5fa8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */, + FFFDb31c60107feab31c6010 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */, + FFFDb31c60787feab31c6078 /* extensions/include/PxExtensionMetaDataObjects.h */, + FFFDb31c60e07feab31c60e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */, ); name = "metadata"; sourceTree = SOURCE_ROOT; }; - FFFBfc0985207fbcfc098520 /* SceneQuery */ = { + FFFBb2fe3bd07feab2fe3bd0 /* SceneQuery */ = { isa = PBXGroup; children = ( - FFFBfc094d007fbcfc094d00 /* src */, - FFFBfc094d287fbcfc094d28 /* include */, + FFFBb2fe5dc07feab2fe5dc0 /* src */, + FFFBb2fe5de87feab2fe5de8 /* include */, ); name = "SceneQuery"; sourceTree = "<group>"; }; - FFFBfc094d007fbcfc094d00 /* src */ = { + FFFBb2fe5dc07feab2fe5dc0 /* src */ = { isa = PBXGroup; children = ( - FFFDfc8478007fbcfc847800 /* SqAABBPruner.cpp */, - FFFDfc8478687fbcfc847868 /* SqAABBTree.cpp */, - FFFDfc8478d07fbcfc8478d0 /* SqAABBTreeUpdateMap.cpp */, - FFFDfc8479387fbcfc847938 /* SqBounds.cpp */, - FFFDfc8479a07fbcfc8479a0 /* SqBucketPruner.cpp */, - FFFDfc847a087fbcfc847a08 /* SqExtendedBucketPruner.cpp */, - FFFDfc847a707fbcfc847a70 /* SqMetaData.cpp */, - FFFDfc847ad87fbcfc847ad8 /* SqPruningPool.cpp */, - FFFDfc847b407fbcfc847b40 /* SqPruningStructure.cpp */, - FFFDfc847ba87fbcfc847ba8 /* SqSceneQueryManager.cpp */, - FFFDfc847c107fbcfc847c10 /* SqAABBPruner.h */, - FFFDfc847c787fbcfc847c78 /* SqAABBTree.h */, - FFFDfc847ce07fbcfc847ce0 /* SqAABBTreeQuery.h */, - FFFDfc847d487fbcfc847d48 /* SqAABBTreeUpdateMap.h */, - FFFDfc847db07fbcfc847db0 /* SqBounds.h */, - FFFDfc847e187fbcfc847e18 /* SqBucketPruner.h */, - FFFDfc847e807fbcfc847e80 /* SqExtendedBucketPruner.h */, - FFFDfc847ee87fbcfc847ee8 /* SqPrunerTestsSIMD.h */, - FFFDfc847f507fbcfc847f50 /* SqPruningPool.h */, - FFFDfc847fb87fbcfc847fb8 /* SqTypedef.h */, + FFFDb31cc0007feab31cc000 /* SqAABBPruner.cpp */, + FFFDb31cc0687feab31cc068 /* SqAABBTree.cpp */, + FFFDb31cc0d07feab31cc0d0 /* SqAABBTreeUpdateMap.cpp */, + FFFDb31cc1387feab31cc138 /* SqBounds.cpp */, + FFFDb31cc1a07feab31cc1a0 /* SqBucketPruner.cpp */, + FFFDb31cc2087feab31cc208 /* SqExtendedBucketPruner.cpp */, + FFFDb31cc2707feab31cc270 /* SqMetaData.cpp */, + FFFDb31cc2d87feab31cc2d8 /* SqPruningPool.cpp */, + FFFDb31cc3407feab31cc340 /* SqPruningStructure.cpp */, + FFFDb31cc3a87feab31cc3a8 /* SqSceneQueryManager.cpp */, + FFFDb31cc4107feab31cc410 /* SqAABBPruner.h */, + FFFDb31cc4787feab31cc478 /* SqAABBTree.h */, + FFFDb31cc4e07feab31cc4e0 /* SqAABBTreeQuery.h */, + FFFDb31cc5487feab31cc548 /* SqAABBTreeUpdateMap.h */, + FFFDb31cc5b07feab31cc5b0 /* SqBounds.h */, + FFFDb31cc6187feab31cc618 /* SqBucketPruner.h */, + FFFDb31cc6807feab31cc680 /* SqExtendedBucketPruner.h */, + FFFDb31cc6e87feab31cc6e8 /* SqPrunerTestsSIMD.h */, + FFFDb31cc7507feab31cc750 /* SqPruningPool.h */, + FFFDb31cc7b87feab31cc7b8 /* SqTypedef.h */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBfc094d287fbcfc094d28 /* include */ = { + FFFBb2fe5de87feab2fe5de8 /* include */ = { isa = PBXGroup; children = ( - FFFDfc08d1907fbcfc08d190 /* SqPruner.h */, - FFFDfc08d1f87fbcfc08d1f8 /* SqPrunerMergeData.h */, - FFFDfc08d2607fbcfc08d260 /* SqPruningStructure.h */, - FFFDfc08d2c87fbcfc08d2c8 /* SqSceneQueryManager.h */, + FFFDb2fe80007feab2fe8000 /* SqPruner.h */, + FFFDb2fe80687feab2fe8068 /* SqPrunerMergeData.h */, + FFFDb2fe80d07feab2fe80d0 /* SqPruningStructure.h */, + FFFDb2fe81387feab2fe8138 /* SqSceneQueryManager.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBfc08d4e07fbcfc08d4e0 /* SimulationController */ = { + FFFBb2fe82c07feab2fe82c0 /* SimulationController */ = { isa = PBXGroup; children = ( - FFFBfc0878707fbcfc087870 /* include */, - FFFBfc0878987fbcfc087898 /* src */, + FFFBb2fea2007feab2fea200 /* include */, + FFFBb2fea2287feab2fea228 /* src */, ); name = "SimulationController"; sourceTree = "<group>"; }; - FFFBfc0878707fbcfc087870 /* include */ = { + FFFBb2fea2007feab2fea200 /* include */ = { isa = PBXGroup; children = ( - FFFDfc84a2007fbcfc84a200 /* ScActorCore.h */, - FFFDfc84a2687fbcfc84a268 /* ScArticulationCore.h */, - FFFDfc84a2d07fbcfc84a2d0 /* ScArticulationJointCore.h */, - FFFDfc84a3387fbcfc84a338 /* ScBodyCore.h */, - FFFDfc84a3a07fbcfc84a3a0 /* ScClothCore.h */, - FFFDfc84a4087fbcfc84a408 /* ScClothFabricCore.h */, - FFFDfc84a4707fbcfc84a470 /* ScConstraintCore.h */, - FFFDfc84a4d87fbcfc84a4d8 /* ScIterators.h */, - FFFDfc84a5407fbcfc84a540 /* ScMaterialCore.h */, - FFFDfc84a5a87fbcfc84a5a8 /* ScParticleSystemCore.h */, - FFFDfc84a6107fbcfc84a610 /* ScPhysics.h */, - FFFDfc84a6787fbcfc84a678 /* ScRigidCore.h */, - FFFDfc84a6e07fbcfc84a6e0 /* ScScene.h */, - FFFDfc84a7487fbcfc84a748 /* ScShapeCore.h */, - FFFDfc84a7b07fbcfc84a7b0 /* ScStaticCore.h */, + FFFDb31cea007feab31cea00 /* ScActorCore.h */, + FFFDb31cea687feab31cea68 /* ScArticulationCore.h */, + FFFDb31cead07feab31cead0 /* ScArticulationJointCore.h */, + FFFDb31ceb387feab31ceb38 /* ScBodyCore.h */, + FFFDb31ceba07feab31ceba0 /* ScClothCore.h */, + FFFDb31cec087feab31cec08 /* ScClothFabricCore.h */, + FFFDb31cec707feab31cec70 /* ScConstraintCore.h */, + FFFDb31cecd87feab31cecd8 /* ScIterators.h */, + FFFDb31ced407feab31ced40 /* ScMaterialCore.h */, + FFFDb31ceda87feab31ceda8 /* ScParticleSystemCore.h */, + FFFDb31cee107feab31cee10 /* ScPhysics.h */, + FFFDb31cee787feab31cee78 /* ScRigidCore.h */, + FFFDb31ceee07feab31ceee0 /* ScScene.h */, + FFFDb31cef487feab31cef48 /* ScShapeCore.h */, + FFFDb31cefb07feab31cefb0 /* ScStaticCore.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBfc0878987fbcfc087898 /* src */ = { + FFFBb2fea2287feab2fea228 /* src */ = { isa = PBXGroup; children = ( - FFFDfc84d4007fbcfc84d400 /* ScActorElementPair.h */, - FFFDfc84d4687fbcfc84d468 /* ScActorInteraction.h */, - FFFDfc84d4d07fbcfc84d4d0 /* ScActorPair.h */, - FFFDfc84d5387fbcfc84d538 /* ScActorSim.h */, - FFFDfc84d5a07fbcfc84d5a0 /* ScArticulationJointSim.h */, - FFFDfc84d6087fbcfc84d608 /* ScArticulationSim.h */, - FFFDfc84d6707fbcfc84d670 /* ScBodySim.h */, - FFFDfc84d6d87fbcfc84d6d8 /* ScClient.h */, - FFFDfc84d7407fbcfc84d740 /* ScConstraintGroupNode.h */, - FFFDfc84d7a87fbcfc84d7a8 /* ScConstraintInteraction.h */, - FFFDfc84d8107fbcfc84d810 /* ScConstraintProjectionManager.h */, - FFFDfc84d8787fbcfc84d878 /* ScConstraintProjectionTree.h */, - FFFDfc84d8e07fbcfc84d8e0 /* ScConstraintSim.h */, - FFFDfc84d9487fbcfc84d948 /* ScContactReportBuffer.h */, - FFFDfc84d9b07fbcfc84d9b0 /* ScContactStream.h */, - FFFDfc84da187fbcfc84da18 /* ScElementInteractionMarker.h */, - FFFDfc84da807fbcfc84da80 /* ScElementSim.h */, - FFFDfc84dae87fbcfc84dae8 /* ScElementSimInteraction.h */, - FFFDfc84db507fbcfc84db50 /* ScInteraction.h */, - FFFDfc84dbb87fbcfc84dbb8 /* ScInteractionFlags.h */, - FFFDfc84dc207fbcfc84dc20 /* ScNPhaseCore.h */, - FFFDfc84dc887fbcfc84dc88 /* ScObjectIDTracker.h */, - FFFDfc84dcf07fbcfc84dcf0 /* ScRbElementInteraction.h */, - FFFDfc84dd587fbcfc84dd58 /* ScRigidSim.h */, - FFFDfc84ddc07fbcfc84ddc0 /* ScShapeInteraction.h */, - FFFDfc84de287fbcfc84de28 /* ScShapeIterator.h */, - FFFDfc84de907fbcfc84de90 /* ScShapeSim.h */, - FFFDfc84def87fbcfc84def8 /* ScSimStateData.h */, - FFFDfc84df607fbcfc84df60 /* ScSimStats.h */, - FFFDfc84dfc87fbcfc84dfc8 /* ScSimulationController.h */, - FFFDfc84e0307fbcfc84e030 /* ScSqBoundsManager.h */, - FFFDfc84e0987fbcfc84e098 /* ScStaticSim.h */, - FFFDfc84e1007fbcfc84e100 /* ScTriggerInteraction.h */, - FFFDfc84e1687fbcfc84e168 /* ScTriggerPairs.h */, - FFFDfc84e1d07fbcfc84e1d0 /* ScActorCore.cpp */, - FFFDfc84e2387fbcfc84e238 /* ScActorSim.cpp */, - FFFDfc84e2a07fbcfc84e2a0 /* ScArticulationCore.cpp */, - FFFDfc84e3087fbcfc84e308 /* ScArticulationJointCore.cpp */, - FFFDfc84e3707fbcfc84e370 /* ScArticulationJointSim.cpp */, - FFFDfc84e3d87fbcfc84e3d8 /* ScArticulationSim.cpp */, - FFFDfc84e4407fbcfc84e440 /* ScBodyCore.cpp */, - FFFDfc84e4a87fbcfc84e4a8 /* ScBodyCoreKinematic.cpp */, - FFFDfc84e5107fbcfc84e510 /* ScBodySim.cpp */, - FFFDfc84e5787fbcfc84e578 /* ScConstraintCore.cpp */, - FFFDfc84e5e07fbcfc84e5e0 /* ScConstraintGroupNode.cpp */, - FFFDfc84e6487fbcfc84e648 /* ScConstraintInteraction.cpp */, - FFFDfc84e6b07fbcfc84e6b0 /* ScConstraintProjectionManager.cpp */, - FFFDfc84e7187fbcfc84e718 /* ScConstraintProjectionTree.cpp */, - FFFDfc84e7807fbcfc84e780 /* ScConstraintSim.cpp */, - FFFDfc84e7e87fbcfc84e7e8 /* ScElementInteractionMarker.cpp */, - FFFDfc84e8507fbcfc84e850 /* ScElementSim.cpp */, - FFFDfc84e8b87fbcfc84e8b8 /* ScInteraction.cpp */, - FFFDfc84e9207fbcfc84e920 /* ScIterators.cpp */, - FFFDfc84e9887fbcfc84e988 /* ScMaterialCore.cpp */, - FFFDfc84e9f07fbcfc84e9f0 /* ScMetaData.cpp */, - FFFDfc84ea587fbcfc84ea58 /* ScNPhaseCore.cpp */, - FFFDfc84eac07fbcfc84eac0 /* ScPhysics.cpp */, - FFFDfc84eb287fbcfc84eb28 /* ScRigidCore.cpp */, - FFFDfc84eb907fbcfc84eb90 /* ScRigidSim.cpp */, - FFFDfc84ebf87fbcfc84ebf8 /* ScScene.cpp */, - FFFDfc84ec607fbcfc84ec60 /* ScShapeCore.cpp */, - FFFDfc84ecc87fbcfc84ecc8 /* ScShapeInteraction.cpp */, - FFFDfc84ed307fbcfc84ed30 /* ScShapeSim.cpp */, - FFFDfc84ed987fbcfc84ed98 /* ScSimStats.cpp */, - FFFDfc84ee007fbcfc84ee00 /* ScSimulationController.cpp */, - FFFDfc84ee687fbcfc84ee68 /* ScSqBoundsManager.cpp */, - FFFDfc84eed07fbcfc84eed0 /* ScStaticCore.cpp */, - FFFDfc84ef387fbcfc84ef38 /* ScStaticSim.cpp */, - FFFDfc84efa07fbcfc84efa0 /* ScTriggerInteraction.cpp */, - FFFDfc84f0087fbcfc84f008 /* particles/ScParticleBodyInteraction.h */, - FFFDfc84f0707fbcfc84f070 /* particles/ScParticlePacketShape.h */, - FFFDfc84f0d87fbcfc84f0d8 /* particles/ScParticleSystemSim.h */, - FFFDfc84f1407fbcfc84f140 /* particles/ScParticleBodyInteraction.cpp */, - FFFDfc84f1a87fbcfc84f1a8 /* particles/ScParticlePacketShape.cpp */, - FFFDfc84f2107fbcfc84f210 /* particles/ScParticleSystemCore.cpp */, - FFFDfc84f2787fbcfc84f278 /* particles/ScParticleSystemSim.cpp */, - FFFDfc84f2e07fbcfc84f2e0 /* cloth/ScClothShape.h */, - FFFDfc84f3487fbcfc84f348 /* cloth/ScClothSim.h */, - FFFDfc84f3b07fbcfc84f3b0 /* cloth/ScClothCore.cpp */, - FFFDfc84f4187fbcfc84f418 /* cloth/ScClothFabricCore.cpp */, - FFFDfc84f4807fbcfc84f480 /* cloth/ScClothShape.cpp */, - FFFDfc84f4e87fbcfc84f4e8 /* cloth/ScClothSim.cpp */, + FFFDb31d1c007feab31d1c00 /* ScActorElementPair.h */, + FFFDb31d1c687feab31d1c68 /* ScActorInteraction.h */, + FFFDb31d1cd07feab31d1cd0 /* ScActorPair.h */, + FFFDb31d1d387feab31d1d38 /* ScActorSim.h */, + FFFDb31d1da07feab31d1da0 /* ScArticulationJointSim.h */, + FFFDb31d1e087feab31d1e08 /* ScArticulationSim.h */, + FFFDb31d1e707feab31d1e70 /* ScBodySim.h */, + FFFDb31d1ed87feab31d1ed8 /* ScClient.h */, + FFFDb31d1f407feab31d1f40 /* ScConstraintGroupNode.h */, + FFFDb31d1fa87feab31d1fa8 /* ScConstraintInteraction.h */, + FFFDb31d20107feab31d2010 /* ScConstraintProjectionManager.h */, + FFFDb31d20787feab31d2078 /* ScConstraintProjectionTree.h */, + FFFDb31d20e07feab31d20e0 /* ScConstraintSim.h */, + FFFDb31d21487feab31d2148 /* ScContactReportBuffer.h */, + FFFDb31d21b07feab31d21b0 /* ScContactStream.h */, + FFFDb31d22187feab31d2218 /* ScElementInteractionMarker.h */, + FFFDb31d22807feab31d2280 /* ScElementSim.h */, + FFFDb31d22e87feab31d22e8 /* ScElementSimInteraction.h */, + FFFDb31d23507feab31d2350 /* ScInteraction.h */, + FFFDb31d23b87feab31d23b8 /* ScInteractionFlags.h */, + FFFDb31d24207feab31d2420 /* ScNPhaseCore.h */, + FFFDb31d24887feab31d2488 /* ScObjectIDTracker.h */, + FFFDb31d24f07feab31d24f0 /* ScRbElementInteraction.h */, + FFFDb31d25587feab31d2558 /* ScRigidSim.h */, + FFFDb31d25c07feab31d25c0 /* ScShapeInteraction.h */, + FFFDb31d26287feab31d2628 /* ScShapeIterator.h */, + FFFDb31d26907feab31d2690 /* ScShapeSim.h */, + FFFDb31d26f87feab31d26f8 /* ScSimStateData.h */, + FFFDb31d27607feab31d2760 /* ScSimStats.h */, + FFFDb31d27c87feab31d27c8 /* ScSimulationController.h */, + FFFDb31d28307feab31d2830 /* ScSqBoundsManager.h */, + FFFDb31d28987feab31d2898 /* ScStaticSim.h */, + FFFDb31d29007feab31d2900 /* ScTriggerInteraction.h */, + FFFDb31d29687feab31d2968 /* ScTriggerPairs.h */, + FFFDb31d29d07feab31d29d0 /* ScActorCore.cpp */, + FFFDb31d2a387feab31d2a38 /* ScActorSim.cpp */, + FFFDb31d2aa07feab31d2aa0 /* ScArticulationCore.cpp */, + FFFDb31d2b087feab31d2b08 /* ScArticulationJointCore.cpp */, + FFFDb31d2b707feab31d2b70 /* ScArticulationJointSim.cpp */, + FFFDb31d2bd87feab31d2bd8 /* ScArticulationSim.cpp */, + FFFDb31d2c407feab31d2c40 /* ScBodyCore.cpp */, + FFFDb31d2ca87feab31d2ca8 /* ScBodyCoreKinematic.cpp */, + FFFDb31d2d107feab31d2d10 /* ScBodySim.cpp */, + FFFDb31d2d787feab31d2d78 /* ScConstraintCore.cpp */, + FFFDb31d2de07feab31d2de0 /* ScConstraintGroupNode.cpp */, + FFFDb31d2e487feab31d2e48 /* ScConstraintInteraction.cpp */, + FFFDb31d2eb07feab31d2eb0 /* ScConstraintProjectionManager.cpp */, + FFFDb31d2f187feab31d2f18 /* ScConstraintProjectionTree.cpp */, + FFFDb31d2f807feab31d2f80 /* ScConstraintSim.cpp */, + FFFDb31d2fe87feab31d2fe8 /* ScElementInteractionMarker.cpp */, + FFFDb31d30507feab31d3050 /* ScElementSim.cpp */, + FFFDb31d30b87feab31d30b8 /* ScInteraction.cpp */, + FFFDb31d31207feab31d3120 /* ScIterators.cpp */, + FFFDb31d31887feab31d3188 /* ScMaterialCore.cpp */, + FFFDb31d31f07feab31d31f0 /* ScMetaData.cpp */, + FFFDb31d32587feab31d3258 /* ScNPhaseCore.cpp */, + FFFDb31d32c07feab31d32c0 /* ScPhysics.cpp */, + FFFDb31d33287feab31d3328 /* ScRigidCore.cpp */, + FFFDb31d33907feab31d3390 /* ScRigidSim.cpp */, + FFFDb31d33f87feab31d33f8 /* ScScene.cpp */, + FFFDb31d34607feab31d3460 /* ScShapeCore.cpp */, + FFFDb31d34c87feab31d34c8 /* ScShapeInteraction.cpp */, + FFFDb31d35307feab31d3530 /* ScShapeSim.cpp */, + FFFDb31d35987feab31d3598 /* ScSimStats.cpp */, + FFFDb31d36007feab31d3600 /* ScSimulationController.cpp */, + FFFDb31d36687feab31d3668 /* ScSqBoundsManager.cpp */, + FFFDb31d36d07feab31d36d0 /* ScStaticCore.cpp */, + FFFDb31d37387feab31d3738 /* ScStaticSim.cpp */, + FFFDb31d37a07feab31d37a0 /* ScTriggerInteraction.cpp */, + FFFDb31d38087feab31d3808 /* particles/ScParticleBodyInteraction.h */, + FFFDb31d38707feab31d3870 /* particles/ScParticlePacketShape.h */, + FFFDb31d38d87feab31d38d8 /* particles/ScParticleSystemSim.h */, + FFFDb31d39407feab31d3940 /* particles/ScParticleBodyInteraction.cpp */, + FFFDb31d39a87feab31d39a8 /* particles/ScParticlePacketShape.cpp */, + FFFDb31d3a107feab31d3a10 /* particles/ScParticleSystemCore.cpp */, + FFFDb31d3a787feab31d3a78 /* particles/ScParticleSystemSim.cpp */, + FFFDb31d3ae07feab31d3ae0 /* cloth/ScClothShape.h */, + FFFDb31d3b487feab31d3b48 /* cloth/ScClothSim.h */, + FFFDb31d3bb07feab31d3bb0 /* cloth/ScClothCore.cpp */, + FFFDb31d3c187feab31d3c18 /* cloth/ScClothFabricCore.cpp */, + FFFDb31d3c807feab31d3c80 /* cloth/ScClothShape.cpp */, + FFFDb31d3ce87feab31d3ce8 /* cloth/ScClothSim.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBfc07fd407fbcfc07fd40 /* PhysXCooking */ = { + FFFBb2feca707feab2feca70 /* PhysXCooking */ = { isa = PBXGroup; children = ( - FFFBfc07a0e07fbcfc07a0e0 /* include */, - FFFBfc07a1087fbcfc07a108 /* src */, + FFFBb2ff0d007feab2ff0d00 /* include */, + FFFBb2ff0d287feab2ff0d28 /* src */, ); name = "PhysXCooking"; sourceTree = "<group>"; }; - FFFBfc07a0e07fbcfc07a0e0 /* include */ = { + FFFBb2ff0d007feab2ff0d00 /* include */ = { isa = PBXGroup; children = ( - FFFDfc1bb2907fbcfc1bb290 /* PxBVH33MidphaseDesc.h */, - FFFDfc1bb2f87fbcfc1bb2f8 /* PxBVH34MidphaseDesc.h */, - FFFDfc1bb3607fbcfc1bb360 /* PxConvexMeshDesc.h */, - FFFDfc1bb3c87fbcfc1bb3c8 /* PxCooking.h */, - FFFDfc1bb4307fbcfc1bb430 /* PxMidphaseDesc.h */, - FFFDfc1bb4987fbcfc1bb498 /* PxTriangleMeshDesc.h */, - FFFDfc1bb5007fbcfc1bb500 /* Pxc.h */, + FFFDb2ff6b707feab2ff6b70 /* PxBVH33MidphaseDesc.h */, + FFFDb2ff6bd87feab2ff6bd8 /* PxBVH34MidphaseDesc.h */, + FFFDb2ff6c407feab2ff6c40 /* PxConvexMeshDesc.h */, + FFFDb2ff6ca87feab2ff6ca8 /* PxCooking.h */, + FFFDb2ff6d107feab2ff6d10 /* PxMidphaseDesc.h */, + FFFDb2ff6d787feab2ff6d78 /* PxTriangleMeshDesc.h */, + FFFDb2ff6de07feab2ff6de0 /* Pxc.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBfc07a1087fbcfc07a108 /* src */ = { + FFFBb2ff0d287feab2ff0d28 /* src */ = { isa = PBXGroup; children = ( - FFFDfc8516007fbcfc851600 /* Adjacencies.cpp */, - FFFDfc8516687fbcfc851668 /* Cooking.cpp */, - FFFDfc8516d07fbcfc8516d0 /* CookingUtils.cpp */, - FFFDfc8517387fbcfc851738 /* EdgeList.cpp */, - FFFDfc8517a07fbcfc8517a0 /* MeshCleaner.cpp */, - FFFDfc8518087fbcfc851808 /* Quantizer.cpp */, - FFFDfc8518707fbcfc851870 /* Adjacencies.h */, - FFFDfc8518d87fbcfc8518d8 /* Cooking.h */, - FFFDfc8519407fbcfc851940 /* CookingUtils.h */, - FFFDfc8519a87fbcfc8519a8 /* EdgeList.h */, - FFFDfc851a107fbcfc851a10 /* MeshCleaner.h */, - FFFDfc851a787fbcfc851a78 /* Quantizer.h */, - FFFDfc851ae07fbcfc851ae0 /* mesh/GrbTriangleMeshCooking.cpp */, - FFFDfc851b487fbcfc851b48 /* mesh/HeightFieldCooking.cpp */, - FFFDfc851bb07fbcfc851bb0 /* mesh/RTreeCooking.cpp */, - FFFDfc851c187fbcfc851c18 /* mesh/TriangleMeshBuilder.cpp */, - FFFDfc851c807fbcfc851c80 /* mesh/GrbTriangleMeshCooking.h */, - FFFDfc851ce87fbcfc851ce8 /* mesh/HeightFieldCooking.h */, - FFFDfc851d507fbcfc851d50 /* mesh/QuickSelect.h */, - FFFDfc851db87fbcfc851db8 /* mesh/RTreeCooking.h */, - FFFDfc851e207fbcfc851e20 /* mesh/TriangleMeshBuilder.h */, - FFFDfc851e887fbcfc851e88 /* convex/BigConvexDataBuilder.cpp */, - FFFDfc851ef07fbcfc851ef0 /* convex/ConvexHullBuilder.cpp */, - FFFDfc851f587fbcfc851f58 /* convex/ConvexHullLib.cpp */, - FFFDfc851fc07fbcfc851fc0 /* convex/ConvexHullUtils.cpp */, - FFFDfc8520287fbcfc852028 /* convex/ConvexMeshBuilder.cpp */, - FFFDfc8520907fbcfc852090 /* convex/ConvexPolygonsBuilder.cpp */, - FFFDfc8520f87fbcfc8520f8 /* convex/InflationConvexHullLib.cpp */, - FFFDfc8521607fbcfc852160 /* convex/QuickHullConvexHullLib.cpp */, - FFFDfc8521c87fbcfc8521c8 /* convex/VolumeIntegration.cpp */, - FFFDfc8522307fbcfc852230 /* convex/BigConvexDataBuilder.h */, - FFFDfc8522987fbcfc852298 /* convex/ConvexHullBuilder.h */, - FFFDfc8523007fbcfc852300 /* convex/ConvexHullLib.h */, - FFFDfc8523687fbcfc852368 /* convex/ConvexHullUtils.h */, - FFFDfc8523d07fbcfc8523d0 /* convex/ConvexMeshBuilder.h */, - FFFDfc8524387fbcfc852438 /* convex/ConvexPolygonsBuilder.h */, - FFFDfc8524a07fbcfc8524a0 /* convex/InflationConvexHullLib.h */, - FFFDfc8525087fbcfc852508 /* convex/QuickHullConvexHullLib.h */, - FFFDfc8525707fbcfc852570 /* convex/VolumeIntegration.h */, + FFFDb31d5e007feab31d5e00 /* Adjacencies.cpp */, + FFFDb31d5e687feab31d5e68 /* Cooking.cpp */, + FFFDb31d5ed07feab31d5ed0 /* CookingUtils.cpp */, + FFFDb31d5f387feab31d5f38 /* EdgeList.cpp */, + FFFDb31d5fa07feab31d5fa0 /* MeshCleaner.cpp */, + FFFDb31d60087feab31d6008 /* Quantizer.cpp */, + FFFDb31d60707feab31d6070 /* Adjacencies.h */, + FFFDb31d60d87feab31d60d8 /* Cooking.h */, + FFFDb31d61407feab31d6140 /* CookingUtils.h */, + FFFDb31d61a87feab31d61a8 /* EdgeList.h */, + FFFDb31d62107feab31d6210 /* MeshCleaner.h */, + FFFDb31d62787feab31d6278 /* Quantizer.h */, + FFFDb31d62e07feab31d62e0 /* mesh/GrbTriangleMeshCooking.cpp */, + FFFDb31d63487feab31d6348 /* mesh/HeightFieldCooking.cpp */, + FFFDb31d63b07feab31d63b0 /* mesh/RTreeCooking.cpp */, + FFFDb31d64187feab31d6418 /* mesh/TriangleMeshBuilder.cpp */, + FFFDb31d64807feab31d6480 /* mesh/GrbTriangleMeshCooking.h */, + FFFDb31d64e87feab31d64e8 /* mesh/HeightFieldCooking.h */, + FFFDb31d65507feab31d6550 /* mesh/QuickSelect.h */, + FFFDb31d65b87feab31d65b8 /* mesh/RTreeCooking.h */, + FFFDb31d66207feab31d6620 /* mesh/TriangleMeshBuilder.h */, + FFFDb31d66887feab31d6688 /* convex/BigConvexDataBuilder.cpp */, + FFFDb31d66f07feab31d66f0 /* convex/ConvexHullBuilder.cpp */, + FFFDb31d67587feab31d6758 /* convex/ConvexHullLib.cpp */, + FFFDb31d67c07feab31d67c0 /* convex/ConvexHullUtils.cpp */, + FFFDb31d68287feab31d6828 /* convex/ConvexMeshBuilder.cpp */, + FFFDb31d68907feab31d6890 /* convex/ConvexPolygonsBuilder.cpp */, + FFFDb31d68f87feab31d68f8 /* convex/InflationConvexHullLib.cpp */, + FFFDb31d69607feab31d6960 /* convex/QuickHullConvexHullLib.cpp */, + FFFDb31d69c87feab31d69c8 /* convex/VolumeIntegration.cpp */, + FFFDb31d6a307feab31d6a30 /* convex/BigConvexDataBuilder.h */, + FFFDb31d6a987feab31d6a98 /* convex/ConvexHullBuilder.h */, + FFFDb31d6b007feab31d6b00 /* convex/ConvexHullLib.h */, + FFFDb31d6b687feab31d6b68 /* convex/ConvexHullUtils.h */, + FFFDb31d6bd07feab31d6bd0 /* convex/ConvexMeshBuilder.h */, + FFFDb31d6c387feab31d6c38 /* convex/ConvexPolygonsBuilder.h */, + FFFDb31d6ca07feab31d6ca0 /* convex/InflationConvexHullLib.h */, + FFFDb31d6d087feab31d6d08 /* convex/QuickHullConvexHullLib.h */, + FFFDb31d6d707feab31d6d70 /* convex/VolumeIntegration.h */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBfa8913407fbcfa891340 /* PhysXCommon */ = { + FFFBb2a152c07feab2a152c0 /* PhysXCommon */ = { isa = PBXGroup; children = ( - FFFBfaaf85507fbcfaaf8550 /* include */, - FFFBfaaf85787fbcfaaf8578 /* common */, - FFFBfaaf85a07fbcfaaf85a0 /* geomutils */, + FFFBb2a04d407feab2a04d40 /* include */, + FFFBb2a04d687feab2a04d68 /* common */, + FFFBb2a04d907feab2a04d90 /* geomutils */, ); name = "PhysXCommon"; sourceTree = "<group>"; }; - FFFBfaaf85507fbcfaaf8550 /* include */ = { + FFFBb2a04d407feab2a04d40 /* include */ = { isa = PBXGroup; children = ( - FFFDfb00ec007fbcfb00ec00 /* common/PxBase.h */, - FFFDfb00ec687fbcfb00ec68 /* common/PxCollection.h */, - FFFDfb00ecd07fbcfb00ecd0 /* common/PxCoreUtilityTypes.h */, - FFFDfb00ed387fbcfb00ed38 /* common/PxMetaData.h */, - FFFDfb00eda07fbcfb00eda0 /* common/PxMetaDataFlags.h */, - FFFDfb00ee087fbcfb00ee08 /* common/PxPhysXCommonConfig.h */, - FFFDfb00ee707fbcfb00ee70 /* common/PxPhysicsInsertionCallback.h */, - FFFDfb00eed87fbcfb00eed8 /* common/PxRenderBuffer.h */, - FFFDfb00ef407fbcfb00ef40 /* common/PxSerialFramework.h */, - FFFDfb00efa87fbcfb00efa8 /* common/PxSerializer.h */, - FFFDfb00f0107fbcfb00f010 /* common/PxStringTable.h */, - FFFDfb00f0787fbcfb00f078 /* common/PxTolerancesScale.h */, - FFFDfb00f0e07fbcfb00f0e0 /* common/PxTypeInfo.h */, - FFFDfb00f1487fbcfb00f148 /* geometry/PxBoxGeometry.h */, - FFFDfb00f1b07fbcfb00f1b0 /* geometry/PxCapsuleGeometry.h */, - FFFDfb00f2187fbcfb00f218 /* geometry/PxConvexMesh.h */, - FFFDfb00f2807fbcfb00f280 /* geometry/PxConvexMeshGeometry.h */, - FFFDfb00f2e87fbcfb00f2e8 /* geometry/PxGeometry.h */, - FFFDfb00f3507fbcfb00f350 /* geometry/PxGeometryHelpers.h */, - FFFDfb00f3b87fbcfb00f3b8 /* geometry/PxGeometryQuery.h */, - FFFDfb00f4207fbcfb00f420 /* geometry/PxHeightField.h */, - FFFDfb00f4887fbcfb00f488 /* geometry/PxHeightFieldDesc.h */, - FFFDfb00f4f07fbcfb00f4f0 /* geometry/PxHeightFieldFlag.h */, - FFFDfb00f5587fbcfb00f558 /* geometry/PxHeightFieldGeometry.h */, - FFFDfb00f5c07fbcfb00f5c0 /* geometry/PxHeightFieldSample.h */, - FFFDfb00f6287fbcfb00f628 /* geometry/PxMeshQuery.h */, - FFFDfb00f6907fbcfb00f690 /* geometry/PxMeshScale.h */, - FFFDfb00f6f87fbcfb00f6f8 /* geometry/PxPlaneGeometry.h */, - FFFDfb00f7607fbcfb00f760 /* geometry/PxSimpleTriangleMesh.h */, - FFFDfb00f7c87fbcfb00f7c8 /* geometry/PxSphereGeometry.h */, - FFFDfb00f8307fbcfb00f830 /* geometry/PxTriangle.h */, - FFFDfb00f8987fbcfb00f898 /* geometry/PxTriangleMesh.h */, - FFFDfb00f9007fbcfb00f900 /* geometry/PxTriangleMeshGeometry.h */, + FFFDb380ec007feab380ec00 /* common/PxBase.h */, + FFFDb380ec687feab380ec68 /* common/PxCollection.h */, + FFFDb380ecd07feab380ecd0 /* common/PxCoreUtilityTypes.h */, + FFFDb380ed387feab380ed38 /* common/PxMetaData.h */, + FFFDb380eda07feab380eda0 /* common/PxMetaDataFlags.h */, + FFFDb380ee087feab380ee08 /* common/PxPhysXCommonConfig.h */, + FFFDb380ee707feab380ee70 /* common/PxPhysicsInsertionCallback.h */, + FFFDb380eed87feab380eed8 /* common/PxRenderBuffer.h */, + FFFDb380ef407feab380ef40 /* common/PxSerialFramework.h */, + FFFDb380efa87feab380efa8 /* common/PxSerializer.h */, + FFFDb380f0107feab380f010 /* common/PxStringTable.h */, + FFFDb380f0787feab380f078 /* common/PxTolerancesScale.h */, + FFFDb380f0e07feab380f0e0 /* common/PxTypeInfo.h */, + FFFDb380f1487feab380f148 /* geometry/PxBoxGeometry.h */, + FFFDb380f1b07feab380f1b0 /* geometry/PxCapsuleGeometry.h */, + FFFDb380f2187feab380f218 /* geometry/PxConvexMesh.h */, + FFFDb380f2807feab380f280 /* geometry/PxConvexMeshGeometry.h */, + FFFDb380f2e87feab380f2e8 /* geometry/PxGeometry.h */, + FFFDb380f3507feab380f350 /* geometry/PxGeometryHelpers.h */, + FFFDb380f3b87feab380f3b8 /* geometry/PxGeometryQuery.h */, + FFFDb380f4207feab380f420 /* geometry/PxHeightField.h */, + FFFDb380f4887feab380f488 /* geometry/PxHeightFieldDesc.h */, + FFFDb380f4f07feab380f4f0 /* geometry/PxHeightFieldFlag.h */, + FFFDb380f5587feab380f558 /* geometry/PxHeightFieldGeometry.h */, + FFFDb380f5c07feab380f5c0 /* geometry/PxHeightFieldSample.h */, + FFFDb380f6287feab380f628 /* geometry/PxMeshQuery.h */, + FFFDb380f6907feab380f690 /* geometry/PxMeshScale.h */, + FFFDb380f6f87feab380f6f8 /* geometry/PxPlaneGeometry.h */, + FFFDb380f7607feab380f760 /* geometry/PxSimpleTriangleMesh.h */, + FFFDb380f7c87feab380f7c8 /* geometry/PxSphereGeometry.h */, + FFFDb380f8307feab380f830 /* geometry/PxTriangle.h */, + FFFDb380f8987feab380f898 /* geometry/PxTriangleMesh.h */, + FFFDb380f9007feab380f900 /* geometry/PxTriangleMeshGeometry.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBfaaf85787fbcfaaf8578 /* common */ = { + FFFBb2a04d687feab2a04d68 /* common */ = { isa = PBXGroup; children = ( - FFFDfa18ee007fbcfa18ee00 /* src/CmBoxPruning.cpp */, - FFFDfa18ee687fbcfa18ee68 /* src/CmCollection.cpp */, - FFFDfa18eed07fbcfa18eed0 /* src/CmMathUtils.cpp */, - FFFDfa18ef387fbcfa18ef38 /* src/CmPtrTable.cpp */, - FFFDfa18efa07fbcfa18efa0 /* src/CmRadixSort.cpp */, - FFFDfa18f0087fbcfa18f008 /* src/CmRadixSortBuffered.cpp */, - FFFDfa18f0707fbcfa18f070 /* src/CmRenderOutput.cpp */, - FFFDfa18f0d87fbcfa18f0d8 /* src/CmVisualization.cpp */, - FFFDfa18f1407fbcfa18f140 /* src/CmBitMap.h */, - FFFDfa18f1a87fbcfa18f1a8 /* src/CmBoxPruning.h */, - FFFDfa18f2107fbcfa18f210 /* src/CmCollection.h */, - FFFDfa18f2787fbcfa18f278 /* src/CmConeLimitHelper.h */, - FFFDfa18f2e07fbcfa18f2e0 /* src/CmFlushPool.h */, - FFFDfa18f3487fbcfa18f348 /* src/CmIDPool.h */, - FFFDfa18f3b07fbcfa18f3b0 /* src/CmIO.h */, - FFFDfa18f4187fbcfa18f418 /* src/CmMatrix34.h */, - FFFDfa18f4807fbcfa18f480 /* src/CmPhysXCommon.h */, - FFFDfa18f4e87fbcfa18f4e8 /* src/CmPool.h */, - FFFDfa18f5507fbcfa18f550 /* src/CmPreallocatingPool.h */, - FFFDfa18f5b87fbcfa18f5b8 /* src/CmPriorityQueue.h */, - FFFDfa18f6207fbcfa18f620 /* src/CmPtrTable.h */, - FFFDfa18f6887fbcfa18f688 /* src/CmQueue.h */, - FFFDfa18f6f07fbcfa18f6f0 /* src/CmRadixSort.h */, - FFFDfa18f7587fbcfa18f758 /* src/CmRadixSortBuffered.h */, - FFFDfa18f7c07fbcfa18f7c0 /* src/CmReaderWriterLock.h */, - FFFDfa18f8287fbcfa18f828 /* src/CmRefCountable.h */, - FFFDfa18f8907fbcfa18f890 /* src/CmRenderBuffer.h */, - FFFDfa18f8f87fbcfa18f8f8 /* src/CmRenderOutput.h */, - FFFDfa18f9607fbcfa18f960 /* src/CmScaling.h */, - FFFDfa18f9c87fbcfa18f9c8 /* src/CmSpatialVector.h */, - FFFDfa18fa307fbcfa18fa30 /* src/CmTask.h */, - FFFDfa18fa987fbcfa18fa98 /* src/CmTaskPool.h */, - FFFDfa18fb007fbcfa18fb00 /* src/CmTmpMem.h */, - FFFDfa18fb687fbcfa18fb68 /* src/CmTransformUtils.h */, - FFFDfa18fbd07fbcfa18fbd0 /* src/CmUtils.h */, - FFFDfa18fc387fbcfa18fc38 /* src/CmVisualization.h */, + FFFDb31766007feab3176600 /* src/CmBoxPruning.cpp */, + FFFDb31766687feab3176668 /* src/CmCollection.cpp */, + FFFDb31766d07feab31766d0 /* src/CmMathUtils.cpp */, + FFFDb31767387feab3176738 /* src/CmPtrTable.cpp */, + FFFDb31767a07feab31767a0 /* src/CmRadixSort.cpp */, + FFFDb31768087feab3176808 /* src/CmRadixSortBuffered.cpp */, + FFFDb31768707feab3176870 /* src/CmRenderOutput.cpp */, + FFFDb31768d87feab31768d8 /* src/CmVisualization.cpp */, + FFFDb31769407feab3176940 /* src/CmBitMap.h */, + FFFDb31769a87feab31769a8 /* src/CmBoxPruning.h */, + FFFDb3176a107feab3176a10 /* src/CmCollection.h */, + FFFDb3176a787feab3176a78 /* src/CmConeLimitHelper.h */, + FFFDb3176ae07feab3176ae0 /* src/CmFlushPool.h */, + FFFDb3176b487feab3176b48 /* src/CmIDPool.h */, + FFFDb3176bb07feab3176bb0 /* src/CmIO.h */, + FFFDb3176c187feab3176c18 /* src/CmMatrix34.h */, + FFFDb3176c807feab3176c80 /* src/CmPhysXCommon.h */, + FFFDb3176ce87feab3176ce8 /* src/CmPool.h */, + FFFDb3176d507feab3176d50 /* src/CmPreallocatingPool.h */, + FFFDb3176db87feab3176db8 /* src/CmPriorityQueue.h */, + FFFDb3176e207feab3176e20 /* src/CmPtrTable.h */, + FFFDb3176e887feab3176e88 /* src/CmQueue.h */, + FFFDb3176ef07feab3176ef0 /* src/CmRadixSort.h */, + FFFDb3176f587feab3176f58 /* src/CmRadixSortBuffered.h */, + FFFDb3176fc07feab3176fc0 /* src/CmReaderWriterLock.h */, + FFFDb31770287feab3177028 /* src/CmRefCountable.h */, + FFFDb31770907feab3177090 /* src/CmRenderBuffer.h */, + FFFDb31770f87feab31770f8 /* src/CmRenderOutput.h */, + FFFDb31771607feab3177160 /* src/CmScaling.h */, + FFFDb31771c87feab31771c8 /* src/CmSpatialVector.h */, + FFFDb31772307feab3177230 /* src/CmTask.h */, + FFFDb31772987feab3177298 /* src/CmTaskPool.h */, + FFFDb31773007feab3177300 /* src/CmTmpMem.h */, + FFFDb31773687feab3177368 /* src/CmTransformUtils.h */, + FFFDb31773d07feab31773d0 /* src/CmUtils.h */, + FFFDb31774387feab3177438 /* src/CmVisualization.h */, ); name = "common"; sourceTree = SOURCE_ROOT; }; - FFFBfaaf85a07fbcfaaf85a0 /* geomutils */ = { + FFFBb2a04d907feab2a04d90 /* geomutils */ = { isa = PBXGroup; children = ( - FFFDfb0010007fbcfb001000 /* headers/GuAxes.h */, - FFFDfb0010687fbcfb001068 /* headers/GuBox.h */, - FFFDfb0010d07fbcfb0010d0 /* headers/GuDistanceSegmentBox.h */, - FFFDfb0011387fbcfb001138 /* headers/GuDistanceSegmentSegment.h */, - FFFDfb0011a07fbcfb0011a0 /* headers/GuIntersectionBoxBox.h */, - FFFDfb0012087fbcfb001208 /* headers/GuIntersectionTriangleBox.h */, - FFFDfb0012707fbcfb001270 /* headers/GuRaycastTests.h */, - FFFDfb0012d87fbcfb0012d8 /* headers/GuSIMDHelpers.h */, - FFFDfb0013407fbcfb001340 /* headers/GuSegment.h */, - FFFDfb0013a87fbcfb0013a8 /* ../../Include/GeomUtils */, - FFFDfb0014107fbcfb001410 /* src/GuBounds.h */, - FFFDfb0014787fbcfb001478 /* src/GuCapsule.h */, - FFFDfb0014e07fbcfb0014e0 /* src/GuCenterExtents.h */, - FFFDfb0015487fbcfb001548 /* src/GuGeometryUnion.h */, - FFFDfb0015b07fbcfb0015b0 /* src/GuInternal.h */, - FFFDfb0016187fbcfb001618 /* src/GuMTD.h */, - FFFDfb0016807fbcfb001680 /* src/GuMeshFactory.h */, - FFFDfb0016e87fbcfb0016e8 /* src/GuOverlapTests.h */, - FFFDfb0017507fbcfb001750 /* src/GuSerialize.h */, - FFFDfb0017b87fbcfb0017b8 /* src/GuSphere.h */, - FFFDfb0018207fbcfb001820 /* src/GuSweepMTD.h */, - FFFDfb0018887fbcfb001888 /* src/GuSweepSharedTests.h */, - FFFDfb0018f07fbcfb0018f0 /* src/GuSweepTests.h */, - FFFDfb0019587fbcfb001958 /* src/contact/GuContactMethodImpl.h */, - FFFDfb0019c07fbcfb0019c0 /* src/contact/GuContactPolygonPolygon.h */, - FFFDfb001a287fbcfb001a28 /* src/contact/GuFeatureCode.h */, - FFFDfb001a907fbcfb001a90 /* src/contact/GuLegacyTraceLineCallback.h */, - FFFDfb001af87fbcfb001af8 /* src/common/GuBarycentricCoordinates.h */, - FFFDfb001b607fbcfb001b60 /* src/common/GuBoxConversion.h */, - FFFDfb001bc87fbcfb001bc8 /* src/common/GuEdgeCache.h */, - FFFDfb001c307fbcfb001c30 /* src/common/GuEdgeListData.h */, - FFFDfb001c987fbcfb001c98 /* src/common/GuSeparatingAxes.h */, - FFFDfb001d007fbcfb001d00 /* src/convex/GuBigConvexData.h */, - FFFDfb001d687fbcfb001d68 /* src/convex/GuBigConvexData2.h */, - FFFDfb001dd07fbcfb001dd0 /* src/convex/GuConvexEdgeFlags.h */, - FFFDfb001e387fbcfb001e38 /* src/convex/GuConvexHelper.h */, - FFFDfb001ea07fbcfb001ea0 /* src/convex/GuConvexMesh.h */, - FFFDfb001f087fbcfb001f08 /* src/convex/GuConvexMeshData.h */, - FFFDfb001f707fbcfb001f70 /* src/convex/GuConvexSupportTable.h */, - FFFDfb001fd87fbcfb001fd8 /* src/convex/GuConvexUtilsInternal.h */, - FFFDfb0020407fbcfb002040 /* src/convex/GuCubeIndex.h */, - FFFDfb0020a87fbcfb0020a8 /* src/convex/GuHillClimbing.h */, - FFFDfb0021107fbcfb002110 /* src/convex/GuShapeConvex.h */, - FFFDfb0021787fbcfb002178 /* src/distance/GuDistancePointBox.h */, - FFFDfb0021e07fbcfb0021e0 /* src/distance/GuDistancePointSegment.h */, - FFFDfb0022487fbcfb002248 /* src/distance/GuDistancePointTriangle.h */, - FFFDfb0022b07fbcfb0022b0 /* src/distance/GuDistancePointTriangleSIMD.h */, - FFFDfb0023187fbcfb002318 /* src/distance/GuDistanceSegmentSegmentSIMD.h */, - FFFDfb0023807fbcfb002380 /* src/distance/GuDistanceSegmentTriangle.h */, - FFFDfb0023e87fbcfb0023e8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */, - FFFDfb0024507fbcfb002450 /* src/sweep/GuSweepBoxBox.h */, - FFFDfb0024b87fbcfb0024b8 /* src/sweep/GuSweepBoxSphere.h */, - FFFDfb0025207fbcfb002520 /* src/sweep/GuSweepBoxTriangle_FeatureBased.h */, - FFFDfb0025887fbcfb002588 /* src/sweep/GuSweepBoxTriangle_SAT.h */, - FFFDfb0025f07fbcfb0025f0 /* src/sweep/GuSweepCapsuleBox.h */, - FFFDfb0026587fbcfb002658 /* src/sweep/GuSweepCapsuleCapsule.h */, - FFFDfb0026c07fbcfb0026c0 /* src/sweep/GuSweepCapsuleTriangle.h */, - FFFDfb0027287fbcfb002728 /* src/sweep/GuSweepSphereCapsule.h */, - FFFDfb0027907fbcfb002790 /* src/sweep/GuSweepSphereSphere.h */, - FFFDfb0027f87fbcfb0027f8 /* src/sweep/GuSweepSphereTriangle.h */, - FFFDfb0028607fbcfb002860 /* src/sweep/GuSweepTriangleUtils.h */, - FFFDfb0028c87fbcfb0028c8 /* src/gjk/GuEPA.h */, - FFFDfb0029307fbcfb002930 /* src/gjk/GuEPAFacet.h */, - FFFDfb0029987fbcfb002998 /* src/gjk/GuGJK.h */, - FFFDfb002a007fbcfb002a00 /* src/gjk/GuGJKPenetration.h */, - FFFDfb002a687fbcfb002a68 /* src/gjk/GuGJKRaycast.h */, - FFFDfb002ad07fbcfb002ad0 /* src/gjk/GuGJKSimplex.h */, - FFFDfb002b387fbcfb002b38 /* src/gjk/GuGJKTest.h */, - FFFDfb002ba07fbcfb002ba0 /* src/gjk/GuGJKType.h */, - FFFDfb002c087fbcfb002c08 /* src/gjk/GuGJKUtil.h */, - FFFDfb002c707fbcfb002c70 /* src/gjk/GuVecBox.h */, - FFFDfb002cd87fbcfb002cd8 /* src/gjk/GuVecCapsule.h */, - FFFDfb002d407fbcfb002d40 /* src/gjk/GuVecConvex.h */, - FFFDfb002da87fbcfb002da8 /* src/gjk/GuVecConvexHull.h */, - FFFDfb002e107fbcfb002e10 /* src/gjk/GuVecConvexHullNoScale.h */, - FFFDfb002e787fbcfb002e78 /* src/gjk/GuVecPlane.h */, - FFFDfb002ee07fbcfb002ee0 /* src/gjk/GuVecShrunkBox.h */, - FFFDfb002f487fbcfb002f48 /* src/gjk/GuVecShrunkConvexHull.h */, - FFFDfb002fb07fbcfb002fb0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */, - FFFDfb0030187fbcfb003018 /* src/gjk/GuVecSphere.h */, - FFFDfb0030807fbcfb003080 /* src/gjk/GuVecTriangle.h */, - FFFDfb0030e87fbcfb0030e8 /* src/intersection/GuIntersectionCapsuleTriangle.h */, - FFFDfb0031507fbcfb003150 /* src/intersection/GuIntersectionEdgeEdge.h */, - FFFDfb0031b87fbcfb0031b8 /* src/intersection/GuIntersectionRay.h */, - FFFDfb0032207fbcfb003220 /* src/intersection/GuIntersectionRayBox.h */, - FFFDfb0032887fbcfb003288 /* src/intersection/GuIntersectionRayBoxSIMD.h */, - FFFDfb0032f07fbcfb0032f0 /* src/intersection/GuIntersectionRayCapsule.h */, - FFFDfb0033587fbcfb003358 /* src/intersection/GuIntersectionRayPlane.h */, - FFFDfb0033c07fbcfb0033c0 /* src/intersection/GuIntersectionRaySphere.h */, - FFFDfb0034287fbcfb003428 /* src/intersection/GuIntersectionRayTriangle.h */, - FFFDfb0034907fbcfb003490 /* src/intersection/GuIntersectionSphereBox.h */, - FFFDfb0034f87fbcfb0034f8 /* src/mesh/GuBV32.h */, - FFFDfb0035607fbcfb003560 /* src/mesh/GuBV32Build.h */, - FFFDfb0035c87fbcfb0035c8 /* src/mesh/GuBV4.h */, - FFFDfb0036307fbcfb003630 /* src/mesh/GuBV4Build.h */, - FFFDfb0036987fbcfb003698 /* src/mesh/GuBV4Settings.h */, - FFFDfb0037007fbcfb003700 /* src/mesh/GuBV4_AABBAABBSweepTest.h */, - FFFDfb0037687fbcfb003768 /* src/mesh/GuBV4_BoxBoxOverlapTest.h */, - FFFDfb0037d07fbcfb0037d0 /* src/mesh/GuBV4_BoxOverlap_Internal.h */, - FFFDfb0038387fbcfb003838 /* src/mesh/GuBV4_BoxSweep_Internal.h */, - FFFDfb0038a07fbcfb0038a0 /* src/mesh/GuBV4_BoxSweep_Params.h */, - FFFDfb0039087fbcfb003908 /* src/mesh/GuBV4_CapsuleSweep_Internal.h */, - FFFDfb0039707fbcfb003970 /* src/mesh/GuBV4_Common.h */, - FFFDfb0039d87fbcfb0039d8 /* src/mesh/GuBV4_Internal.h */, - FFFDfb003a407fbcfb003a40 /* src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h */, - FFFDfb003aa87fbcfb003aa8 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h */, - FFFDfb003b107fbcfb003b10 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h */, - FFFDfb003b787fbcfb003b78 /* src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h */, - FFFDfb003be07fbcfb003be0 /* src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h */, - FFFDfb003c487fbcfb003c48 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h */, - FFFDfb003cb07fbcfb003cb0 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h */, - FFFDfb003d187fbcfb003d18 /* src/mesh/GuBV4_Slabs.h */, - FFFDfb003d807fbcfb003d80 /* src/mesh/GuBV4_Slabs_KajiyaNoOrder.h */, - FFFDfb003de87fbcfb003de8 /* src/mesh/GuBV4_Slabs_KajiyaOrdered.h */, - FFFDfb003e507fbcfb003e50 /* src/mesh/GuBV4_Slabs_SwizzledNoOrder.h */, - FFFDfb003eb87fbcfb003eb8 /* src/mesh/GuBV4_Slabs_SwizzledOrdered.h */, - FFFDfb003f207fbcfb003f20 /* src/mesh/GuBVConstants.h */, - FFFDfb003f887fbcfb003f88 /* src/mesh/GuMeshData.h */, - FFFDfb003ff07fbcfb003ff0 /* src/mesh/GuMidphaseInterface.h */, - FFFDfb0040587fbcfb004058 /* src/mesh/GuRTree.h */, - FFFDfb0040c07fbcfb0040c0 /* src/mesh/GuSweepConvexTri.h */, - FFFDfb0041287fbcfb004128 /* src/mesh/GuSweepMesh.h */, - FFFDfb0041907fbcfb004190 /* src/mesh/GuTriangle32.h */, - FFFDfb0041f87fbcfb0041f8 /* src/mesh/GuTriangleCache.h */, - FFFDfb0042607fbcfb004260 /* src/mesh/GuTriangleMesh.h */, - FFFDfb0042c87fbcfb0042c8 /* src/mesh/GuTriangleMeshBV4.h */, - FFFDfb0043307fbcfb004330 /* src/mesh/GuTriangleMeshRTree.h */, - FFFDfb0043987fbcfb004398 /* src/mesh/GuTriangleVertexPointers.h */, - FFFDfb0044007fbcfb004400 /* src/hf/GuEntityReport.h */, - FFFDfb0044687fbcfb004468 /* src/hf/GuHeightField.h */, - FFFDfb0044d07fbcfb0044d0 /* src/hf/GuHeightFieldData.h */, - FFFDfb0045387fbcfb004538 /* src/hf/GuHeightFieldUtil.h */, - FFFDfb0045a07fbcfb0045a0 /* src/pcm/GuPCMContactConvexCommon.h */, - FFFDfb0046087fbcfb004608 /* src/pcm/GuPCMContactGen.h */, - FFFDfb0046707fbcfb004670 /* src/pcm/GuPCMContactGenUtil.h */, - FFFDfb0046d87fbcfb0046d8 /* src/pcm/GuPCMContactMeshCallback.h */, - FFFDfb0047407fbcfb004740 /* src/pcm/GuPCMShapeConvex.h */, - FFFDfb0047a87fbcfb0047a8 /* src/pcm/GuPCMTriangleContactGen.h */, - FFFDfb0048107fbcfb004810 /* src/pcm/GuPersistentContactManifold.h */, - FFFDfb0048787fbcfb004878 /* src/ccd/GuCCDSweepConvexMesh.h */, - FFFDfb0048e07fbcfb0048e0 /* src/GuBounds.cpp */, - FFFDfb0049487fbcfb004948 /* src/GuBox.cpp */, - FFFDfb0049b07fbcfb0049b0 /* src/GuCCTSweepTests.cpp */, - FFFDfb004a187fbcfb004a18 /* src/GuCapsule.cpp */, - FFFDfb004a807fbcfb004a80 /* src/GuGeometryQuery.cpp */, - FFFDfb004ae87fbcfb004ae8 /* src/GuGeometryUnion.cpp */, - FFFDfb004b507fbcfb004b50 /* src/GuInternal.cpp */, - FFFDfb004bb87fbcfb004bb8 /* src/GuMTD.cpp */, - FFFDfb004c207fbcfb004c20 /* src/GuMeshFactory.cpp */, - FFFDfb004c887fbcfb004c88 /* src/GuMetaData.cpp */, - FFFDfb004cf07fbcfb004cf0 /* src/GuOverlapTests.cpp */, - FFFDfb004d587fbcfb004d58 /* src/GuRaycastTests.cpp */, - FFFDfb004dc07fbcfb004dc0 /* src/GuSerialize.cpp */, - FFFDfb004e287fbcfb004e28 /* src/GuSweepMTD.cpp */, - FFFDfb004e907fbcfb004e90 /* src/GuSweepSharedTests.cpp */, - FFFDfb004ef87fbcfb004ef8 /* src/GuSweepTests.cpp */, - FFFDfb004f607fbcfb004f60 /* src/contact/GuContactBoxBox.cpp */, - FFFDfb004fc87fbcfb004fc8 /* src/contact/GuContactCapsuleBox.cpp */, - FFFDfb0050307fbcfb005030 /* src/contact/GuContactCapsuleCapsule.cpp */, - FFFDfb0050987fbcfb005098 /* src/contact/GuContactCapsuleConvex.cpp */, - FFFDfb0051007fbcfb005100 /* src/contact/GuContactCapsuleMesh.cpp */, - FFFDfb0051687fbcfb005168 /* src/contact/GuContactConvexConvex.cpp */, - FFFDfb0051d07fbcfb0051d0 /* src/contact/GuContactConvexMesh.cpp */, - FFFDfb0052387fbcfb005238 /* src/contact/GuContactPlaneBox.cpp */, - FFFDfb0052a07fbcfb0052a0 /* src/contact/GuContactPlaneCapsule.cpp */, - FFFDfb0053087fbcfb005308 /* src/contact/GuContactPlaneConvex.cpp */, - FFFDfb0053707fbcfb005370 /* src/contact/GuContactPolygonPolygon.cpp */, - FFFDfb0053d87fbcfb0053d8 /* src/contact/GuContactSphereBox.cpp */, - FFFDfb0054407fbcfb005440 /* src/contact/GuContactSphereCapsule.cpp */, - FFFDfb0054a87fbcfb0054a8 /* src/contact/GuContactSphereMesh.cpp */, - FFFDfb0055107fbcfb005510 /* src/contact/GuContactSpherePlane.cpp */, - FFFDfb0055787fbcfb005578 /* src/contact/GuContactSphereSphere.cpp */, - FFFDfb0055e07fbcfb0055e0 /* src/contact/GuFeatureCode.cpp */, - FFFDfb0056487fbcfb005648 /* src/contact/GuLegacyContactBoxHeightField.cpp */, - FFFDfb0056b07fbcfb0056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */, - FFFDfb0057187fbcfb005718 /* src/contact/GuLegacyContactConvexHeightField.cpp */, - FFFDfb0057807fbcfb005780 /* src/contact/GuLegacyContactSphereHeightField.cpp */, - FFFDfb0057e87fbcfb0057e8 /* src/common/GuBarycentricCoordinates.cpp */, - FFFDfb0058507fbcfb005850 /* src/common/GuSeparatingAxes.cpp */, - FFFDfb0058b87fbcfb0058b8 /* src/convex/GuBigConvexData.cpp */, - FFFDfb0059207fbcfb005920 /* src/convex/GuConvexHelper.cpp */, - FFFDfb0059887fbcfb005988 /* src/convex/GuConvexMesh.cpp */, - FFFDfb0059f07fbcfb0059f0 /* src/convex/GuConvexSupportTable.cpp */, - FFFDfb005a587fbcfb005a58 /* src/convex/GuConvexUtilsInternal.cpp */, - FFFDfb005ac07fbcfb005ac0 /* src/convex/GuHillClimbing.cpp */, - FFFDfb005b287fbcfb005b28 /* src/convex/GuShapeConvex.cpp */, - FFFDfb005b907fbcfb005b90 /* src/distance/GuDistancePointBox.cpp */, - FFFDfb005bf87fbcfb005bf8 /* src/distance/GuDistancePointTriangle.cpp */, - FFFDfb005c607fbcfb005c60 /* src/distance/GuDistanceSegmentBox.cpp */, - FFFDfb005cc87fbcfb005cc8 /* src/distance/GuDistanceSegmentSegment.cpp */, - FFFDfb005d307fbcfb005d30 /* src/distance/GuDistanceSegmentTriangle.cpp */, - FFFDfb005d987fbcfb005d98 /* src/sweep/GuSweepBoxBox.cpp */, - FFFDfb005e007fbcfb005e00 /* src/sweep/GuSweepBoxSphere.cpp */, - FFFDfb005e687fbcfb005e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */, - FFFDfb005ed07fbcfb005ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */, - FFFDfb005f387fbcfb005f38 /* src/sweep/GuSweepCapsuleBox.cpp */, - FFFDfb005fa07fbcfb005fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */, - FFFDfb0060087fbcfb006008 /* src/sweep/GuSweepCapsuleTriangle.cpp */, - FFFDfb0060707fbcfb006070 /* src/sweep/GuSweepSphereCapsule.cpp */, - FFFDfb0060d87fbcfb0060d8 /* src/sweep/GuSweepSphereSphere.cpp */, - FFFDfb0061407fbcfb006140 /* src/sweep/GuSweepSphereTriangle.cpp */, - FFFDfb0061a87fbcfb0061a8 /* src/sweep/GuSweepTriangleUtils.cpp */, - FFFDfb0062107fbcfb006210 /* src/gjk/GuEPA.cpp */, - FFFDfb0062787fbcfb006278 /* src/gjk/GuGJKSimplex.cpp */, - FFFDfb0062e07fbcfb0062e0 /* src/gjk/GuGJKTest.cpp */, - FFFDfb0063487fbcfb006348 /* src/intersection/GuIntersectionBoxBox.cpp */, - FFFDfb0063b07fbcfb0063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */, - FFFDfb0064187fbcfb006418 /* src/intersection/GuIntersectionEdgeEdge.cpp */, - FFFDfb0064807fbcfb006480 /* src/intersection/GuIntersectionRayBox.cpp */, - FFFDfb0064e87fbcfb0064e8 /* src/intersection/GuIntersectionRayCapsule.cpp */, - FFFDfb0065507fbcfb006550 /* src/intersection/GuIntersectionRaySphere.cpp */, - FFFDfb0065b87fbcfb0065b8 /* src/intersection/GuIntersectionSphereBox.cpp */, - FFFDfb0066207fbcfb006620 /* src/intersection/GuIntersectionTriangleBox.cpp */, - FFFDfb0066887fbcfb006688 /* src/mesh/GuBV32.cpp */, - FFFDfb0066f07fbcfb0066f0 /* src/mesh/GuBV32Build.cpp */, - FFFDfb0067587fbcfb006758 /* src/mesh/GuBV4.cpp */, - FFFDfb0067c07fbcfb0067c0 /* src/mesh/GuBV4Build.cpp */, - FFFDfb0068287fbcfb006828 /* src/mesh/GuBV4_AABBSweep.cpp */, - FFFDfb0068907fbcfb006890 /* src/mesh/GuBV4_BoxOverlap.cpp */, - FFFDfb0068f87fbcfb0068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */, - FFFDfb0069607fbcfb006960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */, - FFFDfb0069c87fbcfb0069c8 /* src/mesh/GuBV4_OBBSweep.cpp */, - FFFDfb006a307fbcfb006a30 /* src/mesh/GuBV4_Raycast.cpp */, - FFFDfb006a987fbcfb006a98 /* src/mesh/GuBV4_SphereOverlap.cpp */, - FFFDfb006b007fbcfb006b00 /* src/mesh/GuBV4_SphereSweep.cpp */, - FFFDfb006b687fbcfb006b68 /* src/mesh/GuMeshQuery.cpp */, - FFFDfb006bd07fbcfb006bd0 /* src/mesh/GuMidphaseBV4.cpp */, - FFFDfb006c387fbcfb006c38 /* src/mesh/GuMidphaseRTree.cpp */, - FFFDfb006ca07fbcfb006ca0 /* src/mesh/GuOverlapTestsMesh.cpp */, - FFFDfb006d087fbcfb006d08 /* src/mesh/GuRTree.cpp */, - FFFDfb006d707fbcfb006d70 /* src/mesh/GuRTreeQueries.cpp */, - FFFDfb006dd87fbcfb006dd8 /* src/mesh/GuSweepsMesh.cpp */, - FFFDfb006e407fbcfb006e40 /* src/mesh/GuTriangleMesh.cpp */, - FFFDfb006ea87fbcfb006ea8 /* src/mesh/GuTriangleMeshBV4.cpp */, - FFFDfb006f107fbcfb006f10 /* src/mesh/GuTriangleMeshRTree.cpp */, - FFFDfb006f787fbcfb006f78 /* src/hf/GuHeightField.cpp */, - FFFDfb006fe07fbcfb006fe0 /* src/hf/GuHeightFieldUtil.cpp */, - FFFDfb0070487fbcfb007048 /* src/hf/GuOverlapTestsHF.cpp */, - FFFDfb0070b07fbcfb0070b0 /* src/hf/GuSweepsHF.cpp */, - FFFDfb0071187fbcfb007118 /* src/pcm/GuPCMContactBoxBox.cpp */, - FFFDfb0071807fbcfb007180 /* src/pcm/GuPCMContactBoxConvex.cpp */, - FFFDfb0071e87fbcfb0071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */, - FFFDfb0072507fbcfb007250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */, - FFFDfb0072b87fbcfb0072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */, - FFFDfb0073207fbcfb007320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */, - FFFDfb0073887fbcfb007388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */, - FFFDfb0073f07fbcfb0073f0 /* src/pcm/GuPCMContactConvexCommon.cpp */, - FFFDfb0074587fbcfb007458 /* src/pcm/GuPCMContactConvexConvex.cpp */, - FFFDfb0074c07fbcfb0074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */, - FFFDfb0075287fbcfb007528 /* src/pcm/GuPCMContactConvexMesh.cpp */, - FFFDfb0075907fbcfb007590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */, - FFFDfb0075f87fbcfb0075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */, - FFFDfb0076607fbcfb007660 /* src/pcm/GuPCMContactPlaneBox.cpp */, - FFFDfb0076c87fbcfb0076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */, - FFFDfb0077307fbcfb007730 /* src/pcm/GuPCMContactPlaneConvex.cpp */, - FFFDfb0077987fbcfb007798 /* src/pcm/GuPCMContactSphereBox.cpp */, - FFFDfb0078007fbcfb007800 /* src/pcm/GuPCMContactSphereCapsule.cpp */, - FFFDfb0078687fbcfb007868 /* src/pcm/GuPCMContactSphereConvex.cpp */, - FFFDfb0078d07fbcfb0078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */, - FFFDfb0079387fbcfb007938 /* src/pcm/GuPCMContactSphereMesh.cpp */, - FFFDfb0079a07fbcfb0079a0 /* src/pcm/GuPCMContactSpherePlane.cpp */, - FFFDfb007a087fbcfb007a08 /* src/pcm/GuPCMContactSphereSphere.cpp */, - FFFDfb007a707fbcfb007a70 /* src/pcm/GuPCMShapeConvex.cpp */, - FFFDfb007ad87fbcfb007ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */, - FFFDfb007b407fbcfb007b40 /* src/pcm/GuPersistentContactManifold.cpp */, - FFFDfb007ba87fbcfb007ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */, - FFFDfb007c107fbcfb007c10 /* src/ccd/GuCCDSweepPrimitives.cpp */, + FFFDb38010007feab3801000 /* headers/GuAxes.h */, + FFFDb38010687feab3801068 /* headers/GuBox.h */, + FFFDb38010d07feab38010d0 /* headers/GuDistanceSegmentBox.h */, + FFFDb38011387feab3801138 /* headers/GuDistanceSegmentSegment.h */, + FFFDb38011a07feab38011a0 /* headers/GuIntersectionBoxBox.h */, + FFFDb38012087feab3801208 /* headers/GuIntersectionTriangleBox.h */, + FFFDb38012707feab3801270 /* headers/GuRaycastTests.h */, + FFFDb38012d87feab38012d8 /* headers/GuSIMDHelpers.h */, + FFFDb38013407feab3801340 /* headers/GuSegment.h */, + FFFDb38013a87feab38013a8 /* ../../Include/GeomUtils */, + FFFDb38014107feab3801410 /* src/GuBounds.h */, + FFFDb38014787feab3801478 /* src/GuCapsule.h */, + FFFDb38014e07feab38014e0 /* src/GuCenterExtents.h */, + FFFDb38015487feab3801548 /* src/GuGeometryUnion.h */, + FFFDb38015b07feab38015b0 /* src/GuInternal.h */, + FFFDb38016187feab3801618 /* src/GuMTD.h */, + FFFDb38016807feab3801680 /* src/GuMeshFactory.h */, + FFFDb38016e87feab38016e8 /* src/GuOverlapTests.h */, + FFFDb38017507feab3801750 /* src/GuSerialize.h */, + FFFDb38017b87feab38017b8 /* src/GuSphere.h */, + FFFDb38018207feab3801820 /* src/GuSweepMTD.h */, + FFFDb38018887feab3801888 /* src/GuSweepSharedTests.h */, + FFFDb38018f07feab38018f0 /* src/GuSweepTests.h */, + FFFDb38019587feab3801958 /* src/contact/GuContactMethodImpl.h */, + FFFDb38019c07feab38019c0 /* src/contact/GuContactPolygonPolygon.h */, + FFFDb3801a287feab3801a28 /* src/contact/GuFeatureCode.h */, + FFFDb3801a907feab3801a90 /* src/contact/GuLegacyTraceLineCallback.h */, + FFFDb3801af87feab3801af8 /* src/common/GuBarycentricCoordinates.h */, + FFFDb3801b607feab3801b60 /* src/common/GuBoxConversion.h */, + FFFDb3801bc87feab3801bc8 /* src/common/GuEdgeCache.h */, + FFFDb3801c307feab3801c30 /* src/common/GuEdgeListData.h */, + FFFDb3801c987feab3801c98 /* src/common/GuSeparatingAxes.h */, + FFFDb3801d007feab3801d00 /* src/convex/GuBigConvexData.h */, + FFFDb3801d687feab3801d68 /* src/convex/GuBigConvexData2.h */, + FFFDb3801dd07feab3801dd0 /* src/convex/GuConvexEdgeFlags.h */, + FFFDb3801e387feab3801e38 /* src/convex/GuConvexHelper.h */, + FFFDb3801ea07feab3801ea0 /* src/convex/GuConvexMesh.h */, + FFFDb3801f087feab3801f08 /* src/convex/GuConvexMeshData.h */, + FFFDb3801f707feab3801f70 /* src/convex/GuConvexSupportTable.h */, + FFFDb3801fd87feab3801fd8 /* src/convex/GuConvexUtilsInternal.h */, + FFFDb38020407feab3802040 /* src/convex/GuCubeIndex.h */, + FFFDb38020a87feab38020a8 /* src/convex/GuHillClimbing.h */, + FFFDb38021107feab3802110 /* src/convex/GuShapeConvex.h */, + FFFDb38021787feab3802178 /* src/distance/GuDistancePointBox.h */, + FFFDb38021e07feab38021e0 /* src/distance/GuDistancePointSegment.h */, + FFFDb38022487feab3802248 /* src/distance/GuDistancePointTriangle.h */, + FFFDb38022b07feab38022b0 /* src/distance/GuDistancePointTriangleSIMD.h */, + FFFDb38023187feab3802318 /* src/distance/GuDistanceSegmentSegmentSIMD.h */, + FFFDb38023807feab3802380 /* src/distance/GuDistanceSegmentTriangle.h */, + FFFDb38023e87feab38023e8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */, + FFFDb38024507feab3802450 /* src/sweep/GuSweepBoxBox.h */, + FFFDb38024b87feab38024b8 /* src/sweep/GuSweepBoxSphere.h */, + FFFDb38025207feab3802520 /* src/sweep/GuSweepBoxTriangle_FeatureBased.h */, + FFFDb38025887feab3802588 /* src/sweep/GuSweepBoxTriangle_SAT.h */, + FFFDb38025f07feab38025f0 /* src/sweep/GuSweepCapsuleBox.h */, + FFFDb38026587feab3802658 /* src/sweep/GuSweepCapsuleCapsule.h */, + FFFDb38026c07feab38026c0 /* src/sweep/GuSweepCapsuleTriangle.h */, + FFFDb38027287feab3802728 /* src/sweep/GuSweepSphereCapsule.h */, + FFFDb38027907feab3802790 /* src/sweep/GuSweepSphereSphere.h */, + FFFDb38027f87feab38027f8 /* src/sweep/GuSweepSphereTriangle.h */, + FFFDb38028607feab3802860 /* src/sweep/GuSweepTriangleUtils.h */, + FFFDb38028c87feab38028c8 /* src/gjk/GuEPA.h */, + FFFDb38029307feab3802930 /* src/gjk/GuEPAFacet.h */, + FFFDb38029987feab3802998 /* src/gjk/GuGJK.h */, + FFFDb3802a007feab3802a00 /* src/gjk/GuGJKPenetration.h */, + FFFDb3802a687feab3802a68 /* src/gjk/GuGJKRaycast.h */, + FFFDb3802ad07feab3802ad0 /* src/gjk/GuGJKSimplex.h */, + FFFDb3802b387feab3802b38 /* src/gjk/GuGJKTest.h */, + FFFDb3802ba07feab3802ba0 /* src/gjk/GuGJKType.h */, + FFFDb3802c087feab3802c08 /* src/gjk/GuGJKUtil.h */, + FFFDb3802c707feab3802c70 /* src/gjk/GuVecBox.h */, + FFFDb3802cd87feab3802cd8 /* src/gjk/GuVecCapsule.h */, + FFFDb3802d407feab3802d40 /* src/gjk/GuVecConvex.h */, + FFFDb3802da87feab3802da8 /* src/gjk/GuVecConvexHull.h */, + FFFDb3802e107feab3802e10 /* src/gjk/GuVecConvexHullNoScale.h */, + FFFDb3802e787feab3802e78 /* src/gjk/GuVecPlane.h */, + FFFDb3802ee07feab3802ee0 /* src/gjk/GuVecShrunkBox.h */, + FFFDb3802f487feab3802f48 /* src/gjk/GuVecShrunkConvexHull.h */, + FFFDb3802fb07feab3802fb0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */, + FFFDb38030187feab3803018 /* src/gjk/GuVecSphere.h */, + FFFDb38030807feab3803080 /* src/gjk/GuVecTriangle.h */, + FFFDb38030e87feab38030e8 /* src/intersection/GuIntersectionCapsuleTriangle.h */, + FFFDb38031507feab3803150 /* src/intersection/GuIntersectionEdgeEdge.h */, + FFFDb38031b87feab38031b8 /* src/intersection/GuIntersectionRay.h */, + FFFDb38032207feab3803220 /* src/intersection/GuIntersectionRayBox.h */, + FFFDb38032887feab3803288 /* src/intersection/GuIntersectionRayBoxSIMD.h */, + FFFDb38032f07feab38032f0 /* src/intersection/GuIntersectionRayCapsule.h */, + FFFDb38033587feab3803358 /* src/intersection/GuIntersectionRayPlane.h */, + FFFDb38033c07feab38033c0 /* src/intersection/GuIntersectionRaySphere.h */, + FFFDb38034287feab3803428 /* src/intersection/GuIntersectionRayTriangle.h */, + FFFDb38034907feab3803490 /* src/intersection/GuIntersectionSphereBox.h */, + FFFDb38034f87feab38034f8 /* src/mesh/GuBV32.h */, + FFFDb38035607feab3803560 /* src/mesh/GuBV32Build.h */, + FFFDb38035c87feab38035c8 /* src/mesh/GuBV4.h */, + FFFDb38036307feab3803630 /* src/mesh/GuBV4Build.h */, + FFFDb38036987feab3803698 /* src/mesh/GuBV4Settings.h */, + FFFDb38037007feab3803700 /* src/mesh/GuBV4_AABBAABBSweepTest.h */, + FFFDb38037687feab3803768 /* src/mesh/GuBV4_BoxBoxOverlapTest.h */, + FFFDb38037d07feab38037d0 /* src/mesh/GuBV4_BoxOverlap_Internal.h */, + FFFDb38038387feab3803838 /* src/mesh/GuBV4_BoxSweep_Internal.h */, + FFFDb38038a07feab38038a0 /* src/mesh/GuBV4_BoxSweep_Params.h */, + FFFDb38039087feab3803908 /* src/mesh/GuBV4_CapsuleSweep_Internal.h */, + FFFDb38039707feab3803970 /* src/mesh/GuBV4_Common.h */, + FFFDb38039d87feab38039d8 /* src/mesh/GuBV4_Internal.h */, + FFFDb3803a407feab3803a40 /* src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h */, + FFFDb3803aa87feab3803aa8 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h */, + FFFDb3803b107feab3803b10 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h */, + FFFDb3803b787feab3803b78 /* src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h */, + FFFDb3803be07feab3803be0 /* src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h */, + FFFDb3803c487feab3803c48 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h */, + FFFDb3803cb07feab3803cb0 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h */, + FFFDb3803d187feab3803d18 /* src/mesh/GuBV4_Slabs.h */, + FFFDb3803d807feab3803d80 /* src/mesh/GuBV4_Slabs_KajiyaNoOrder.h */, + FFFDb3803de87feab3803de8 /* src/mesh/GuBV4_Slabs_KajiyaOrdered.h */, + FFFDb3803e507feab3803e50 /* src/mesh/GuBV4_Slabs_SwizzledNoOrder.h */, + FFFDb3803eb87feab3803eb8 /* src/mesh/GuBV4_Slabs_SwizzledOrdered.h */, + FFFDb3803f207feab3803f20 /* src/mesh/GuBVConstants.h */, + FFFDb3803f887feab3803f88 /* src/mesh/GuMeshData.h */, + FFFDb3803ff07feab3803ff0 /* src/mesh/GuMidphaseInterface.h */, + FFFDb38040587feab3804058 /* src/mesh/GuRTree.h */, + FFFDb38040c07feab38040c0 /* src/mesh/GuSweepConvexTri.h */, + FFFDb38041287feab3804128 /* src/mesh/GuSweepMesh.h */, + FFFDb38041907feab3804190 /* src/mesh/GuTriangle32.h */, + FFFDb38041f87feab38041f8 /* src/mesh/GuTriangleCache.h */, + FFFDb38042607feab3804260 /* src/mesh/GuTriangleMesh.h */, + FFFDb38042c87feab38042c8 /* src/mesh/GuTriangleMeshBV4.h */, + FFFDb38043307feab3804330 /* src/mesh/GuTriangleMeshRTree.h */, + FFFDb38043987feab3804398 /* src/mesh/GuTriangleVertexPointers.h */, + FFFDb38044007feab3804400 /* src/hf/GuEntityReport.h */, + FFFDb38044687feab3804468 /* src/hf/GuHeightField.h */, + FFFDb38044d07feab38044d0 /* src/hf/GuHeightFieldData.h */, + FFFDb38045387feab3804538 /* src/hf/GuHeightFieldUtil.h */, + FFFDb38045a07feab38045a0 /* src/pcm/GuPCMContactConvexCommon.h */, + FFFDb38046087feab3804608 /* src/pcm/GuPCMContactGen.h */, + FFFDb38046707feab3804670 /* src/pcm/GuPCMContactGenUtil.h */, + FFFDb38046d87feab38046d8 /* src/pcm/GuPCMContactMeshCallback.h */, + FFFDb38047407feab3804740 /* src/pcm/GuPCMShapeConvex.h */, + FFFDb38047a87feab38047a8 /* src/pcm/GuPCMTriangleContactGen.h */, + FFFDb38048107feab3804810 /* src/pcm/GuPersistentContactManifold.h */, + FFFDb38048787feab3804878 /* src/ccd/GuCCDSweepConvexMesh.h */, + FFFDb38048e07feab38048e0 /* src/GuBounds.cpp */, + FFFDb38049487feab3804948 /* src/GuBox.cpp */, + FFFDb38049b07feab38049b0 /* src/GuCCTSweepTests.cpp */, + FFFDb3804a187feab3804a18 /* src/GuCapsule.cpp */, + FFFDb3804a807feab3804a80 /* src/GuGeometryQuery.cpp */, + FFFDb3804ae87feab3804ae8 /* src/GuGeometryUnion.cpp */, + FFFDb3804b507feab3804b50 /* src/GuInternal.cpp */, + FFFDb3804bb87feab3804bb8 /* src/GuMTD.cpp */, + FFFDb3804c207feab3804c20 /* src/GuMeshFactory.cpp */, + FFFDb3804c887feab3804c88 /* src/GuMetaData.cpp */, + FFFDb3804cf07feab3804cf0 /* src/GuOverlapTests.cpp */, + FFFDb3804d587feab3804d58 /* src/GuRaycastTests.cpp */, + FFFDb3804dc07feab3804dc0 /* src/GuSerialize.cpp */, + FFFDb3804e287feab3804e28 /* src/GuSweepMTD.cpp */, + FFFDb3804e907feab3804e90 /* src/GuSweepSharedTests.cpp */, + FFFDb3804ef87feab3804ef8 /* src/GuSweepTests.cpp */, + FFFDb3804f607feab3804f60 /* src/contact/GuContactBoxBox.cpp */, + FFFDb3804fc87feab3804fc8 /* src/contact/GuContactCapsuleBox.cpp */, + FFFDb38050307feab3805030 /* src/contact/GuContactCapsuleCapsule.cpp */, + FFFDb38050987feab3805098 /* src/contact/GuContactCapsuleConvex.cpp */, + FFFDb38051007feab3805100 /* src/contact/GuContactCapsuleMesh.cpp */, + FFFDb38051687feab3805168 /* src/contact/GuContactConvexConvex.cpp */, + FFFDb38051d07feab38051d0 /* src/contact/GuContactConvexMesh.cpp */, + FFFDb38052387feab3805238 /* src/contact/GuContactPlaneBox.cpp */, + FFFDb38052a07feab38052a0 /* src/contact/GuContactPlaneCapsule.cpp */, + FFFDb38053087feab3805308 /* src/contact/GuContactPlaneConvex.cpp */, + FFFDb38053707feab3805370 /* src/contact/GuContactPolygonPolygon.cpp */, + FFFDb38053d87feab38053d8 /* src/contact/GuContactSphereBox.cpp */, + FFFDb38054407feab3805440 /* src/contact/GuContactSphereCapsule.cpp */, + FFFDb38054a87feab38054a8 /* src/contact/GuContactSphereMesh.cpp */, + FFFDb38055107feab3805510 /* src/contact/GuContactSpherePlane.cpp */, + FFFDb38055787feab3805578 /* src/contact/GuContactSphereSphere.cpp */, + FFFDb38055e07feab38055e0 /* src/contact/GuFeatureCode.cpp */, + FFFDb38056487feab3805648 /* src/contact/GuLegacyContactBoxHeightField.cpp */, + FFFDb38056b07feab38056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */, + FFFDb38057187feab3805718 /* src/contact/GuLegacyContactConvexHeightField.cpp */, + FFFDb38057807feab3805780 /* src/contact/GuLegacyContactSphereHeightField.cpp */, + FFFDb38057e87feab38057e8 /* src/common/GuBarycentricCoordinates.cpp */, + FFFDb38058507feab3805850 /* src/common/GuSeparatingAxes.cpp */, + FFFDb38058b87feab38058b8 /* src/convex/GuBigConvexData.cpp */, + FFFDb38059207feab3805920 /* src/convex/GuConvexHelper.cpp */, + FFFDb38059887feab3805988 /* src/convex/GuConvexMesh.cpp */, + FFFDb38059f07feab38059f0 /* src/convex/GuConvexSupportTable.cpp */, + FFFDb3805a587feab3805a58 /* src/convex/GuConvexUtilsInternal.cpp */, + FFFDb3805ac07feab3805ac0 /* src/convex/GuHillClimbing.cpp */, + FFFDb3805b287feab3805b28 /* src/convex/GuShapeConvex.cpp */, + FFFDb3805b907feab3805b90 /* src/distance/GuDistancePointBox.cpp */, + FFFDb3805bf87feab3805bf8 /* src/distance/GuDistancePointTriangle.cpp */, + FFFDb3805c607feab3805c60 /* src/distance/GuDistanceSegmentBox.cpp */, + FFFDb3805cc87feab3805cc8 /* src/distance/GuDistanceSegmentSegment.cpp */, + FFFDb3805d307feab3805d30 /* src/distance/GuDistanceSegmentTriangle.cpp */, + FFFDb3805d987feab3805d98 /* src/sweep/GuSweepBoxBox.cpp */, + FFFDb3805e007feab3805e00 /* src/sweep/GuSweepBoxSphere.cpp */, + FFFDb3805e687feab3805e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */, + FFFDb3805ed07feab3805ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */, + FFFDb3805f387feab3805f38 /* src/sweep/GuSweepCapsuleBox.cpp */, + FFFDb3805fa07feab3805fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */, + FFFDb38060087feab3806008 /* src/sweep/GuSweepCapsuleTriangle.cpp */, + FFFDb38060707feab3806070 /* src/sweep/GuSweepSphereCapsule.cpp */, + FFFDb38060d87feab38060d8 /* src/sweep/GuSweepSphereSphere.cpp */, + FFFDb38061407feab3806140 /* src/sweep/GuSweepSphereTriangle.cpp */, + FFFDb38061a87feab38061a8 /* src/sweep/GuSweepTriangleUtils.cpp */, + FFFDb38062107feab3806210 /* src/gjk/GuEPA.cpp */, + FFFDb38062787feab3806278 /* src/gjk/GuGJKSimplex.cpp */, + FFFDb38062e07feab38062e0 /* src/gjk/GuGJKTest.cpp */, + FFFDb38063487feab3806348 /* src/intersection/GuIntersectionBoxBox.cpp */, + FFFDb38063b07feab38063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */, + FFFDb38064187feab3806418 /* src/intersection/GuIntersectionEdgeEdge.cpp */, + FFFDb38064807feab3806480 /* src/intersection/GuIntersectionRayBox.cpp */, + FFFDb38064e87feab38064e8 /* src/intersection/GuIntersectionRayCapsule.cpp */, + FFFDb38065507feab3806550 /* src/intersection/GuIntersectionRaySphere.cpp */, + FFFDb38065b87feab38065b8 /* src/intersection/GuIntersectionSphereBox.cpp */, + FFFDb38066207feab3806620 /* src/intersection/GuIntersectionTriangleBox.cpp */, + FFFDb38066887feab3806688 /* src/mesh/GuBV32.cpp */, + FFFDb38066f07feab38066f0 /* src/mesh/GuBV32Build.cpp */, + FFFDb38067587feab3806758 /* src/mesh/GuBV4.cpp */, + FFFDb38067c07feab38067c0 /* src/mesh/GuBV4Build.cpp */, + FFFDb38068287feab3806828 /* src/mesh/GuBV4_AABBSweep.cpp */, + FFFDb38068907feab3806890 /* src/mesh/GuBV4_BoxOverlap.cpp */, + FFFDb38068f87feab38068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */, + FFFDb38069607feab3806960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */, + FFFDb38069c87feab38069c8 /* src/mesh/GuBV4_OBBSweep.cpp */, + FFFDb3806a307feab3806a30 /* src/mesh/GuBV4_Raycast.cpp */, + FFFDb3806a987feab3806a98 /* src/mesh/GuBV4_SphereOverlap.cpp */, + FFFDb3806b007feab3806b00 /* src/mesh/GuBV4_SphereSweep.cpp */, + FFFDb3806b687feab3806b68 /* src/mesh/GuMeshQuery.cpp */, + FFFDb3806bd07feab3806bd0 /* src/mesh/GuMidphaseBV4.cpp */, + FFFDb3806c387feab3806c38 /* src/mesh/GuMidphaseRTree.cpp */, + FFFDb3806ca07feab3806ca0 /* src/mesh/GuOverlapTestsMesh.cpp */, + FFFDb3806d087feab3806d08 /* src/mesh/GuRTree.cpp */, + FFFDb3806d707feab3806d70 /* src/mesh/GuRTreeQueries.cpp */, + FFFDb3806dd87feab3806dd8 /* src/mesh/GuSweepsMesh.cpp */, + FFFDb3806e407feab3806e40 /* src/mesh/GuTriangleMesh.cpp */, + FFFDb3806ea87feab3806ea8 /* src/mesh/GuTriangleMeshBV4.cpp */, + FFFDb3806f107feab3806f10 /* src/mesh/GuTriangleMeshRTree.cpp */, + FFFDb3806f787feab3806f78 /* src/hf/GuHeightField.cpp */, + FFFDb3806fe07feab3806fe0 /* src/hf/GuHeightFieldUtil.cpp */, + FFFDb38070487feab3807048 /* src/hf/GuOverlapTestsHF.cpp */, + FFFDb38070b07feab38070b0 /* src/hf/GuSweepsHF.cpp */, + FFFDb38071187feab3807118 /* src/pcm/GuPCMContactBoxBox.cpp */, + FFFDb38071807feab3807180 /* src/pcm/GuPCMContactBoxConvex.cpp */, + FFFDb38071e87feab38071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */, + FFFDb38072507feab3807250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */, + FFFDb38072b87feab38072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */, + FFFDb38073207feab3807320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */, + FFFDb38073887feab3807388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */, + FFFDb38073f07feab38073f0 /* src/pcm/GuPCMContactConvexCommon.cpp */, + FFFDb38074587feab3807458 /* src/pcm/GuPCMContactConvexConvex.cpp */, + FFFDb38074c07feab38074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */, + FFFDb38075287feab3807528 /* src/pcm/GuPCMContactConvexMesh.cpp */, + FFFDb38075907feab3807590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */, + FFFDb38075f87feab38075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */, + FFFDb38076607feab3807660 /* src/pcm/GuPCMContactPlaneBox.cpp */, + FFFDb38076c87feab38076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */, + FFFDb38077307feab3807730 /* src/pcm/GuPCMContactPlaneConvex.cpp */, + FFFDb38077987feab3807798 /* src/pcm/GuPCMContactSphereBox.cpp */, + FFFDb38078007feab3807800 /* src/pcm/GuPCMContactSphereCapsule.cpp */, + FFFDb38078687feab3807868 /* src/pcm/GuPCMContactSphereConvex.cpp */, + FFFDb38078d07feab38078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */, + FFFDb38079387feab3807938 /* src/pcm/GuPCMContactSphereMesh.cpp */, + FFFDb38079a07feab38079a0 /* src/pcm/GuPCMContactSpherePlane.cpp */, + FFFDb3807a087feab3807a08 /* src/pcm/GuPCMContactSphereSphere.cpp */, + FFFDb3807a707feab3807a70 /* src/pcm/GuPCMShapeConvex.cpp */, + FFFDb3807ad87feab3807ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */, + FFFDb3807b407feab3807b40 /* src/pcm/GuPersistentContactManifold.cpp */, + FFFDb3807ba87feab3807ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */, + FFFDb3807c107feab3807c10 /* src/ccd/GuCCDSweepPrimitives.cpp */, ); name = "geomutils"; sourceTree = SOURCE_ROOT; }; - FFFBfa87f5207fbcfa87f520 /* PxFoundation */ = { + FFFBb2a669507feab2a66950 /* PxFoundation */ = { isa = PBXGroup; children = ( - FFFBfa87fb007fbcfa87fb00 /* include */, - FFFBfa87fb287fbcfa87fb28 /* src */, + FFFBb2a67f707feab2a67f70 /* include */, + FFFBb2a67f987feab2a67f98 /* src */, ); name = "PxFoundation"; sourceTree = "<group>"; }; - FFFBfa87fb007fbcfa87fb00 /* include */ = { + FFFBb2a67f707feab2a67f70 /* include */ = { isa = PBXGroup; children = ( - FFFDfa18b6007fbcfa18b600 /* Px.h */, - FFFDfa18b6687fbcfa18b668 /* PxAllocatorCallback.h */, - FFFDfa18b6d07fbcfa18b6d0 /* PxAssert.h */, - FFFDfa18b7387fbcfa18b738 /* PxBitAndData.h */, - FFFDfa18b7a07fbcfa18b7a0 /* PxBounds3.h */, - FFFDfa18b8087fbcfa18b808 /* PxErrorCallback.h */, - FFFDfa18b8707fbcfa18b870 /* PxErrors.h */, - FFFDfa18b8d87fbcfa18b8d8 /* PxFlags.h */, - FFFDfa18b9407fbcfa18b940 /* PxFoundation.h */, - FFFDfa18b9a87fbcfa18b9a8 /* PxFoundationVersion.h */, - FFFDfa18ba107fbcfa18ba10 /* PxIO.h */, - FFFDfa18ba787fbcfa18ba78 /* PxIntrinsics.h */, - FFFDfa18bae07fbcfa18bae0 /* PxMat33.h */, - FFFDfa18bb487fbcfa18bb48 /* PxMat44.h */, - FFFDfa18bbb07fbcfa18bbb0 /* PxMath.h */, - FFFDfa18bc187fbcfa18bc18 /* PxMathUtils.h */, - FFFDfa18bc807fbcfa18bc80 /* PxMemory.h */, - FFFDfa18bce87fbcfa18bce8 /* PxPlane.h */, - FFFDfa18bd507fbcfa18bd50 /* PxPreprocessor.h */, - FFFDfa18bdb87fbcfa18bdb8 /* PxProfiler.h */, - FFFDfa18be207fbcfa18be20 /* PxQuat.h */, - FFFDfa18be887fbcfa18be88 /* PxSimpleTypes.h */, - FFFDfa18bef07fbcfa18bef0 /* PxStrideIterator.h */, - FFFDfa18bf587fbcfa18bf58 /* PxTransform.h */, - FFFDfa18bfc07fbcfa18bfc0 /* PxUnionCast.h */, - FFFDfa18c0287fbcfa18c028 /* PxVec2.h */, - FFFDfa18c0907fbcfa18c090 /* PxVec3.h */, - FFFDfa18c0f87fbcfa18c0f8 /* PxVec4.h */, - FFFDfa18c1607fbcfa18c160 /* unix/PxUnixIntrinsics.h */, + FFFDb3172e007feab3172e00 /* Px.h */, + FFFDb3172e687feab3172e68 /* PxAllocatorCallback.h */, + FFFDb3172ed07feab3172ed0 /* PxAssert.h */, + FFFDb3172f387feab3172f38 /* PxBitAndData.h */, + FFFDb3172fa07feab3172fa0 /* PxBounds3.h */, + FFFDb31730087feab3173008 /* PxErrorCallback.h */, + FFFDb31730707feab3173070 /* PxErrors.h */, + FFFDb31730d87feab31730d8 /* PxFlags.h */, + FFFDb31731407feab3173140 /* PxFoundation.h */, + FFFDb31731a87feab31731a8 /* PxFoundationVersion.h */, + FFFDb31732107feab3173210 /* PxIO.h */, + FFFDb31732787feab3173278 /* PxIntrinsics.h */, + FFFDb31732e07feab31732e0 /* PxMat33.h */, + FFFDb31733487feab3173348 /* PxMat44.h */, + FFFDb31733b07feab31733b0 /* PxMath.h */, + FFFDb31734187feab3173418 /* PxMathUtils.h */, + FFFDb31734807feab3173480 /* PxMemory.h */, + FFFDb31734e87feab31734e8 /* PxPlane.h */, + FFFDb31735507feab3173550 /* PxPreprocessor.h */, + FFFDb31735b87feab31735b8 /* PxProfiler.h */, + FFFDb31736207feab3173620 /* PxQuat.h */, + FFFDb31736887feab3173688 /* PxSimpleTypes.h */, + FFFDb31736f07feab31736f0 /* PxStrideIterator.h */, + FFFDb31737587feab3173758 /* PxTransform.h */, + FFFDb31737c07feab31737c0 /* PxUnionCast.h */, + FFFDb31738287feab3173828 /* PxVec2.h */, + FFFDb31738907feab3173890 /* PxVec3.h */, + FFFDb31738f87feab31738f8 /* PxVec4.h */, + FFFDb31739607feab3173960 /* unix/PxUnixIntrinsics.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBfa87fb287fbcfa87fb28 /* src */ = { + FFFBb2a67f987feab2a67f98 /* src */ = { isa = PBXGroup; children = ( - FFFDfa1806007fbcfa180600 /* include/Ps.h */, - FFFDfa1806687fbcfa180668 /* include/PsAlignedMalloc.h */, - FFFDfa1806d07fbcfa1806d0 /* include/PsAlloca.h */, - FFFDfa1807387fbcfa180738 /* include/PsAllocator.h */, - FFFDfa1807a07fbcfa1807a0 /* include/PsAoS.h */, - FFFDfa1808087fbcfa180808 /* include/PsArray.h */, - FFFDfa1808707fbcfa180870 /* include/PsAtomic.h */, - FFFDfa1808d87fbcfa1808d8 /* include/PsBasicTemplates.h */, - FFFDfa1809407fbcfa180940 /* include/PsBitUtils.h */, - FFFDfa1809a87fbcfa1809a8 /* include/PsBroadcast.h */, - FFFDfa180a107fbcfa180a10 /* include/PsCpu.h */, - FFFDfa180a787fbcfa180a78 /* include/PsFPU.h */, - FFFDfa180ae07fbcfa180ae0 /* include/PsFoundation.h */, - FFFDfa180b487fbcfa180b48 /* include/PsHash.h */, - FFFDfa180bb07fbcfa180bb0 /* include/PsHashInternals.h */, - FFFDfa180c187fbcfa180c18 /* include/PsHashMap.h */, - FFFDfa180c807fbcfa180c80 /* include/PsHashSet.h */, - FFFDfa180ce87fbcfa180ce8 /* include/PsInlineAllocator.h */, - FFFDfa180d507fbcfa180d50 /* include/PsInlineAoS.h */, - FFFDfa180db87fbcfa180db8 /* include/PsInlineArray.h */, - FFFDfa180e207fbcfa180e20 /* include/PsIntrinsics.h */, - FFFDfa180e887fbcfa180e88 /* include/PsMathUtils.h */, - FFFDfa180ef07fbcfa180ef0 /* include/PsMutex.h */, - FFFDfa180f587fbcfa180f58 /* include/PsPool.h */, - FFFDfa180fc07fbcfa180fc0 /* include/PsSList.h */, - FFFDfa1810287fbcfa181028 /* include/PsSocket.h */, - FFFDfa1810907fbcfa181090 /* include/PsSort.h */, - FFFDfa1810f87fbcfa1810f8 /* include/PsSortInternals.h */, - FFFDfa1811607fbcfa181160 /* include/PsString.h */, - FFFDfa1811c87fbcfa1811c8 /* include/PsSync.h */, - FFFDfa1812307fbcfa181230 /* include/PsTempAllocator.h */, - FFFDfa1812987fbcfa181298 /* include/PsThread.h */, - FFFDfa1813007fbcfa181300 /* include/PsTime.h */, - FFFDfa1813687fbcfa181368 /* include/PsUserAllocated.h */, - FFFDfa1813d07fbcfa1813d0 /* include/PsUtilities.h */, - FFFDfa1814387fbcfa181438 /* include/PsVecMath.h */, - FFFDfa1814a07fbcfa1814a0 /* include/PsVecMathAoSScalar.h */, - FFFDfa1815087fbcfa181508 /* include/PsVecMathAoSScalarInline.h */, - FFFDfa1815707fbcfa181570 /* include/PsVecMathSSE.h */, - FFFDfa1815d87fbcfa1815d8 /* include/PsVecMathUtilities.h */, - FFFDfa1816407fbcfa181640 /* include/PsVecQuat.h */, - FFFDfa1816a87fbcfa1816a8 /* include/PsVecTransform.h */, - FFFDfa1817107fbcfa181710 /* include/unix/PsUnixAoS.h */, - FFFDfa1817787fbcfa181778 /* include/unix/PsUnixFPU.h */, - FFFDfa1817e07fbcfa1817e0 /* include/unix/PsUnixInlineAoS.h */, - FFFDfa1818487fbcfa181848 /* include/unix/PsUnixIntrinsics.h */, - FFFDfa1818b07fbcfa1818b0 /* include/unix/PsUnixTrigConstants.h */, - FFFDfa1819187fbcfa181918 /* src/PsAllocator.cpp */, - FFFDfa1819807fbcfa181980 /* src/PsAssert.cpp */, - FFFDfa1819e87fbcfa1819e8 /* src/PsFoundation.cpp */, - FFFDfa181a507fbcfa181a50 /* src/PsMathUtils.cpp */, - FFFDfa181ab87fbcfa181ab8 /* src/PsString.cpp */, - FFFDfa181b207fbcfa181b20 /* src/PsTempAllocator.cpp */, - FFFDfa181b887fbcfa181b88 /* src/PsUtilities.cpp */, - FFFDfa181bf07fbcfa181bf0 /* src/unix/PsUnixAtomic.cpp */, - FFFDfa181c587fbcfa181c58 /* src/unix/PsUnixCpu.cpp */, - FFFDfa181cc07fbcfa181cc0 /* src/unix/PsUnixFPU.cpp */, - FFFDfa181d287fbcfa181d28 /* src/unix/PsUnixMutex.cpp */, - FFFDfa181d907fbcfa181d90 /* src/unix/PsUnixPrintString.cpp */, - FFFDfa181df87fbcfa181df8 /* src/unix/PsUnixSList.cpp */, - FFFDfa181e607fbcfa181e60 /* src/unix/PsUnixSocket.cpp */, - FFFDfa181ec87fbcfa181ec8 /* src/unix/PsUnixSync.cpp */, - FFFDfa181f307fbcfa181f30 /* src/unix/PsUnixThread.cpp */, - FFFDfa181f987fbcfa181f98 /* src/unix/PsUnixTime.cpp */, + FFFDb3167e007feab3167e00 /* include/Ps.h */, + FFFDb3167e687feab3167e68 /* include/PsAlignedMalloc.h */, + FFFDb3167ed07feab3167ed0 /* include/PsAlloca.h */, + FFFDb3167f387feab3167f38 /* include/PsAllocator.h */, + FFFDb3167fa07feab3167fa0 /* include/PsAoS.h */, + FFFDb31680087feab3168008 /* include/PsArray.h */, + FFFDb31680707feab3168070 /* include/PsAtomic.h */, + FFFDb31680d87feab31680d8 /* include/PsBasicTemplates.h */, + FFFDb31681407feab3168140 /* include/PsBitUtils.h */, + FFFDb31681a87feab31681a8 /* include/PsBroadcast.h */, + FFFDb31682107feab3168210 /* include/PsCpu.h */, + FFFDb31682787feab3168278 /* include/PsFPU.h */, + FFFDb31682e07feab31682e0 /* include/PsFoundation.h */, + FFFDb31683487feab3168348 /* include/PsHash.h */, + FFFDb31683b07feab31683b0 /* include/PsHashInternals.h */, + FFFDb31684187feab3168418 /* include/PsHashMap.h */, + FFFDb31684807feab3168480 /* include/PsHashSet.h */, + FFFDb31684e87feab31684e8 /* include/PsInlineAllocator.h */, + FFFDb31685507feab3168550 /* include/PsInlineAoS.h */, + FFFDb31685b87feab31685b8 /* include/PsInlineArray.h */, + FFFDb31686207feab3168620 /* include/PsIntrinsics.h */, + FFFDb31686887feab3168688 /* include/PsMathUtils.h */, + FFFDb31686f07feab31686f0 /* include/PsMutex.h */, + FFFDb31687587feab3168758 /* include/PsPool.h */, + FFFDb31687c07feab31687c0 /* include/PsSList.h */, + FFFDb31688287feab3168828 /* include/PsSocket.h */, + FFFDb31688907feab3168890 /* include/PsSort.h */, + FFFDb31688f87feab31688f8 /* include/PsSortInternals.h */, + FFFDb31689607feab3168960 /* include/PsString.h */, + FFFDb31689c87feab31689c8 /* include/PsSync.h */, + FFFDb3168a307feab3168a30 /* include/PsTempAllocator.h */, + FFFDb3168a987feab3168a98 /* include/PsThread.h */, + FFFDb3168b007feab3168b00 /* include/PsTime.h */, + FFFDb3168b687feab3168b68 /* include/PsUserAllocated.h */, + FFFDb3168bd07feab3168bd0 /* include/PsUtilities.h */, + FFFDb3168c387feab3168c38 /* include/PsVecMath.h */, + FFFDb3168ca07feab3168ca0 /* include/PsVecMathAoSScalar.h */, + FFFDb3168d087feab3168d08 /* include/PsVecMathAoSScalarInline.h */, + FFFDb3168d707feab3168d70 /* include/PsVecMathSSE.h */, + FFFDb3168dd87feab3168dd8 /* include/PsVecMathUtilities.h */, + FFFDb3168e407feab3168e40 /* include/PsVecQuat.h */, + FFFDb3168ea87feab3168ea8 /* include/PsVecTransform.h */, + FFFDb3168f107feab3168f10 /* include/unix/PsUnixAoS.h */, + FFFDb3168f787feab3168f78 /* include/unix/PsUnixFPU.h */, + FFFDb3168fe07feab3168fe0 /* include/unix/PsUnixInlineAoS.h */, + FFFDb31690487feab3169048 /* include/unix/PsUnixIntrinsics.h */, + FFFDb31690b07feab31690b0 /* include/unix/PsUnixTrigConstants.h */, + FFFDb31691187feab3169118 /* src/PsAllocator.cpp */, + FFFDb31691807feab3169180 /* src/PsAssert.cpp */, + FFFDb31691e87feab31691e8 /* src/PsFoundation.cpp */, + FFFDb31692507feab3169250 /* src/PsMathUtils.cpp */, + FFFDb31692b87feab31692b8 /* src/PsString.cpp */, + FFFDb31693207feab3169320 /* src/PsTempAllocator.cpp */, + FFFDb31693887feab3169388 /* src/PsUtilities.cpp */, + FFFDb31693f07feab31693f0 /* src/unix/PsUnixAtomic.cpp */, + FFFDb31694587feab3169458 /* src/unix/PsUnixCpu.cpp */, + FFFDb31694c07feab31694c0 /* src/unix/PsUnixFPU.cpp */, + FFFDb31695287feab3169528 /* src/unix/PsUnixMutex.cpp */, + FFFDb31695907feab3169590 /* src/unix/PsUnixPrintString.cpp */, + FFFDb31695f87feab31695f8 /* src/unix/PsUnixSList.cpp */, + FFFDb31696607feab3169660 /* src/unix/PsUnixSocket.cpp */, + FFFDb31696c87feab31696c8 /* src/unix/PsUnixSync.cpp */, + FFFDb31697307feab3169730 /* src/unix/PsUnixThread.cpp */, + FFFDb31697987feab3169798 /* src/unix/PsUnixTime.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBfab095c07fbcfab095c0 /* PxPvdSDK */ = { + FFFBb147f4707feab147f470 /* PxPvdSDK */ = { isa = PBXGroup; children = ( - FFFBfa8934f07fbcfa8934f0 /* include */, - FFFBfa8935187fbcfa893518 /* src */, + FFFBb14785807feab1478580 /* include */, + FFFBb14785a87feab14785a8 /* src */, ); name = "PxPvdSDK"; sourceTree = "<group>"; }; - FFFBfa8934f07fbcfa8934f0 /* include */ = { + FFFBb14785807feab1478580 /* include */ = { isa = PBXGroup; children = ( - FFFDfab09df07fbcfab09df0 /* PxPvd.h */, - FFFDfab09e587fbcfab09e58 /* PxPvdTransport.h */, + FFFDb147bad07feab147bad0 /* PxPvd.h */, + FFFDb147bb387feab147bb38 /* PxPvdTransport.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBfa8935187fbcfa893518 /* src */ = { + FFFBb14785a87feab14785a8 /* src */ = { isa = PBXGroup; children = ( - FFFDfa1b3c007fbcfa1b3c00 /* include/PsPvd.h */, - FFFDfa1b3c687fbcfa1b3c68 /* include/PxProfileAllocatorWrapper.h */, - FFFDfa1b3cd07fbcfa1b3cd0 /* include/PxPvdClient.h */, - FFFDfa1b3d387fbcfa1b3d38 /* include/PxPvdDataStream.h */, - FFFDfa1b3da07fbcfa1b3da0 /* include/PxPvdDataStreamHelpers.h */, - FFFDfa1b3e087fbcfa1b3e08 /* include/PxPvdErrorCodes.h */, - FFFDfa1b3e707fbcfa1b3e70 /* include/PxPvdObjectModelBaseTypes.h */, - FFFDfa1b3ed87fbcfa1b3ed8 /* include/PxPvdRenderBuffer.h */, - FFFDfa1b3f407fbcfa1b3f40 /* include/PxPvdUserRenderer.h */, - FFFDfa1b3fa87fbcfa1b3fa8 /* src/PxProfileEventImpl.cpp */, - FFFDfa1b40107fbcfa1b4010 /* src/PxPvd.cpp */, - FFFDfa1b40787fbcfa1b4078 /* src/PxPvdDataStream.cpp */, - FFFDfa1b40e07fbcfa1b40e0 /* src/PxPvdDefaultFileTransport.cpp */, - FFFDfa1b41487fbcfa1b4148 /* src/PxPvdDefaultSocketTransport.cpp */, - FFFDfa1b41b07fbcfa1b41b0 /* src/PxPvdImpl.cpp */, - FFFDfa1b42187fbcfa1b4218 /* src/PxPvdMemClient.cpp */, - FFFDfa1b42807fbcfa1b4280 /* src/PxPvdObjectModelMetaData.cpp */, - FFFDfa1b42e87fbcfa1b42e8 /* src/PxPvdObjectRegistrar.cpp */, - FFFDfa1b43507fbcfa1b4350 /* src/PxPvdProfileZoneClient.cpp */, - FFFDfa1b43b87fbcfa1b43b8 /* src/PxPvdUserRenderer.cpp */, - FFFDfa1b44207fbcfa1b4420 /* src/PxProfileBase.h */, - FFFDfa1b44887fbcfa1b4488 /* src/PxProfileCompileTimeEventFilter.h */, - FFFDfa1b44f07fbcfa1b44f0 /* src/PxProfileContextProvider.h */, - FFFDfa1b45587fbcfa1b4558 /* src/PxProfileContextProviderImpl.h */, - FFFDfa1b45c07fbcfa1b45c0 /* src/PxProfileDataBuffer.h */, - FFFDfa1b46287fbcfa1b4628 /* src/PxProfileDataParsing.h */, - FFFDfa1b46907fbcfa1b4690 /* src/PxProfileEventBuffer.h */, - FFFDfa1b46f87fbcfa1b46f8 /* src/PxProfileEventBufferAtomic.h */, - FFFDfa1b47607fbcfa1b4760 /* src/PxProfileEventBufferClient.h */, - FFFDfa1b47c87fbcfa1b47c8 /* src/PxProfileEventBufferClientManager.h */, - FFFDfa1b48307fbcfa1b4830 /* src/PxProfileEventFilter.h */, - FFFDfa1b48987fbcfa1b4898 /* src/PxProfileEventHandler.h */, - FFFDfa1b49007fbcfa1b4900 /* src/PxProfileEventId.h */, - FFFDfa1b49687fbcfa1b4968 /* src/PxProfileEventMutex.h */, - FFFDfa1b49d07fbcfa1b49d0 /* src/PxProfileEventNames.h */, - FFFDfa1b4a387fbcfa1b4a38 /* src/PxProfileEventParser.h */, - FFFDfa1b4aa07fbcfa1b4aa0 /* src/PxProfileEventSender.h */, - FFFDfa1b4b087fbcfa1b4b08 /* src/PxProfileEventSerialization.h */, - FFFDfa1b4b707fbcfa1b4b70 /* src/PxProfileEventSystem.h */, - FFFDfa1b4bd87fbcfa1b4bd8 /* src/PxProfileEvents.h */, - FFFDfa1b4c407fbcfa1b4c40 /* src/PxProfileMemory.h */, - FFFDfa1b4ca87fbcfa1b4ca8 /* src/PxProfileMemoryBuffer.h */, - FFFDfa1b4d107fbcfa1b4d10 /* src/PxProfileMemoryEventBuffer.h */, - FFFDfa1b4d787fbcfa1b4d78 /* src/PxProfileMemoryEventParser.h */, - FFFDfa1b4de07fbcfa1b4de0 /* src/PxProfileMemoryEventRecorder.h */, - FFFDfa1b4e487fbcfa1b4e48 /* src/PxProfileMemoryEventReflexiveWriter.h */, - FFFDfa1b4eb07fbcfa1b4eb0 /* src/PxProfileMemoryEventSummarizer.h */, - FFFDfa1b4f187fbcfa1b4f18 /* src/PxProfileMemoryEventTypes.h */, - FFFDfa1b4f807fbcfa1b4f80 /* src/PxProfileMemoryEvents.h */, - FFFDfa1b4fe87fbcfa1b4fe8 /* src/PxProfileScopedEvent.h */, - FFFDfa1b50507fbcfa1b5050 /* src/PxProfileScopedMutexLock.h */, - FFFDfa1b50b87fbcfa1b50b8 /* src/PxProfileZone.h */, - FFFDfa1b51207fbcfa1b5120 /* src/PxProfileZoneImpl.h */, - FFFDfa1b51887fbcfa1b5188 /* src/PxProfileZoneManager.h */, - FFFDfa1b51f07fbcfa1b51f0 /* src/PxProfileZoneManagerImpl.h */, - FFFDfa1b52587fbcfa1b5258 /* src/PxPvdBits.h */, - FFFDfa1b52c07fbcfa1b52c0 /* src/PxPvdByteStreams.h */, - FFFDfa1b53287fbcfa1b5328 /* src/PxPvdCommStreamEventSink.h */, - FFFDfa1b53907fbcfa1b5390 /* src/PxPvdCommStreamEvents.h */, - FFFDfa1b53f87fbcfa1b53f8 /* src/PxPvdCommStreamSDKEventTypes.h */, - FFFDfa1b54607fbcfa1b5460 /* src/PxPvdCommStreamTypes.h */, - FFFDfa1b54c87fbcfa1b54c8 /* src/PxPvdDefaultFileTransport.h */, - FFFDfa1b55307fbcfa1b5530 /* src/PxPvdDefaultSocketTransport.h */, - FFFDfa1b55987fbcfa1b5598 /* src/PxPvdFoundation.h */, - FFFDfa1b56007fbcfa1b5600 /* src/PxPvdImpl.h */, - FFFDfa1b56687fbcfa1b5668 /* src/PxPvdInternalByteStreams.h */, - FFFDfa1b56d07fbcfa1b56d0 /* src/PxPvdMarshalling.h */, - FFFDfa1b57387fbcfa1b5738 /* src/PxPvdMemClient.h */, - FFFDfa1b57a07fbcfa1b57a0 /* src/PxPvdObjectModel.h */, - FFFDfa1b58087fbcfa1b5808 /* src/PxPvdObjectModelInternalTypeDefs.h */, - FFFDfa1b58707fbcfa1b5870 /* src/PxPvdObjectModelInternalTypes.h */, - FFFDfa1b58d87fbcfa1b58d8 /* src/PxPvdObjectModelMetaData.h */, - FFFDfa1b59407fbcfa1b5940 /* src/PxPvdObjectRegistrar.h */, - FFFDfa1b59a87fbcfa1b59a8 /* src/PxPvdProfileZoneClient.h */, - FFFDfa1b5a107fbcfa1b5a10 /* src/PxPvdUserRenderImpl.h */, - FFFDfa1b5a787fbcfa1b5a78 /* src/PxPvdUserRenderTypes.h */, + FFFDb18120007feab1812000 /* include/PsPvd.h */, + FFFDb18120687feab1812068 /* include/PxProfileAllocatorWrapper.h */, + FFFDb18120d07feab18120d0 /* include/PxPvdClient.h */, + FFFDb18121387feab1812138 /* include/PxPvdDataStream.h */, + FFFDb18121a07feab18121a0 /* include/PxPvdDataStreamHelpers.h */, + FFFDb18122087feab1812208 /* include/PxPvdErrorCodes.h */, + FFFDb18122707feab1812270 /* include/PxPvdObjectModelBaseTypes.h */, + FFFDb18122d87feab18122d8 /* include/PxPvdRenderBuffer.h */, + FFFDb18123407feab1812340 /* include/PxPvdUserRenderer.h */, + FFFDb18123a87feab18123a8 /* src/PxProfileEventImpl.cpp */, + FFFDb18124107feab1812410 /* src/PxPvd.cpp */, + FFFDb18124787feab1812478 /* src/PxPvdDataStream.cpp */, + FFFDb18124e07feab18124e0 /* src/PxPvdDefaultFileTransport.cpp */, + FFFDb18125487feab1812548 /* src/PxPvdDefaultSocketTransport.cpp */, + FFFDb18125b07feab18125b0 /* src/PxPvdImpl.cpp */, + FFFDb18126187feab1812618 /* src/PxPvdMemClient.cpp */, + FFFDb18126807feab1812680 /* src/PxPvdObjectModelMetaData.cpp */, + FFFDb18126e87feab18126e8 /* src/PxPvdObjectRegistrar.cpp */, + FFFDb18127507feab1812750 /* src/PxPvdProfileZoneClient.cpp */, + FFFDb18127b87feab18127b8 /* src/PxPvdUserRenderer.cpp */, + FFFDb18128207feab1812820 /* src/PxProfileBase.h */, + FFFDb18128887feab1812888 /* src/PxProfileCompileTimeEventFilter.h */, + FFFDb18128f07feab18128f0 /* src/PxProfileContextProvider.h */, + FFFDb18129587feab1812958 /* src/PxProfileContextProviderImpl.h */, + FFFDb18129c07feab18129c0 /* src/PxProfileDataBuffer.h */, + FFFDb1812a287feab1812a28 /* src/PxProfileDataParsing.h */, + FFFDb1812a907feab1812a90 /* src/PxProfileEventBuffer.h */, + FFFDb1812af87feab1812af8 /* src/PxProfileEventBufferAtomic.h */, + FFFDb1812b607feab1812b60 /* src/PxProfileEventBufferClient.h */, + FFFDb1812bc87feab1812bc8 /* src/PxProfileEventBufferClientManager.h */, + FFFDb1812c307feab1812c30 /* src/PxProfileEventFilter.h */, + FFFDb1812c987feab1812c98 /* src/PxProfileEventHandler.h */, + FFFDb1812d007feab1812d00 /* src/PxProfileEventId.h */, + FFFDb1812d687feab1812d68 /* src/PxProfileEventMutex.h */, + FFFDb1812dd07feab1812dd0 /* src/PxProfileEventNames.h */, + FFFDb1812e387feab1812e38 /* src/PxProfileEventParser.h */, + FFFDb1812ea07feab1812ea0 /* src/PxProfileEventSender.h */, + FFFDb1812f087feab1812f08 /* src/PxProfileEventSerialization.h */, + FFFDb1812f707feab1812f70 /* src/PxProfileEventSystem.h */, + FFFDb1812fd87feab1812fd8 /* src/PxProfileEvents.h */, + FFFDb18130407feab1813040 /* src/PxProfileMemory.h */, + FFFDb18130a87feab18130a8 /* src/PxProfileMemoryBuffer.h */, + FFFDb18131107feab1813110 /* src/PxProfileMemoryEventBuffer.h */, + FFFDb18131787feab1813178 /* src/PxProfileMemoryEventParser.h */, + FFFDb18131e07feab18131e0 /* src/PxProfileMemoryEventRecorder.h */, + FFFDb18132487feab1813248 /* src/PxProfileMemoryEventReflexiveWriter.h */, + FFFDb18132b07feab18132b0 /* src/PxProfileMemoryEventSummarizer.h */, + FFFDb18133187feab1813318 /* src/PxProfileMemoryEventTypes.h */, + FFFDb18133807feab1813380 /* src/PxProfileMemoryEvents.h */, + FFFDb18133e87feab18133e8 /* src/PxProfileScopedEvent.h */, + FFFDb18134507feab1813450 /* src/PxProfileScopedMutexLock.h */, + FFFDb18134b87feab18134b8 /* src/PxProfileZone.h */, + FFFDb18135207feab1813520 /* src/PxProfileZoneImpl.h */, + FFFDb18135887feab1813588 /* src/PxProfileZoneManager.h */, + FFFDb18135f07feab18135f0 /* src/PxProfileZoneManagerImpl.h */, + FFFDb18136587feab1813658 /* src/PxPvdBits.h */, + FFFDb18136c07feab18136c0 /* src/PxPvdByteStreams.h */, + FFFDb18137287feab1813728 /* src/PxPvdCommStreamEventSink.h */, + FFFDb18137907feab1813790 /* src/PxPvdCommStreamEvents.h */, + FFFDb18137f87feab18137f8 /* src/PxPvdCommStreamSDKEventTypes.h */, + FFFDb18138607feab1813860 /* src/PxPvdCommStreamTypes.h */, + FFFDb18138c87feab18138c8 /* src/PxPvdDefaultFileTransport.h */, + FFFDb18139307feab1813930 /* src/PxPvdDefaultSocketTransport.h */, + FFFDb18139987feab1813998 /* src/PxPvdFoundation.h */, + FFFDb1813a007feab1813a00 /* src/PxPvdImpl.h */, + FFFDb1813a687feab1813a68 /* src/PxPvdInternalByteStreams.h */, + FFFDb1813ad07feab1813ad0 /* src/PxPvdMarshalling.h */, + FFFDb1813b387feab1813b38 /* src/PxPvdMemClient.h */, + FFFDb1813ba07feab1813ba0 /* src/PxPvdObjectModel.h */, + FFFDb1813c087feab1813c08 /* src/PxPvdObjectModelInternalTypeDefs.h */, + FFFDb1813c707feab1813c70 /* src/PxPvdObjectModelInternalTypes.h */, + FFFDb1813cd87feab1813cd8 /* src/PxPvdObjectModelMetaData.h */, + FFFDb1813d407feab1813d40 /* src/PxPvdObjectRegistrar.h */, + FFFDb1813da87feab1813da8 /* src/PxPvdProfileZoneClient.h */, + FFFDb1813e107feab1813e10 /* src/PxPvdUserRenderImpl.h */, + FFFDb1813e787feab1813e78 /* src/PxPvdUserRenderTypes.h */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBfab277107fbcfab27710 /* LowLevel */ = { + FFFBb2d343407feab2d34340 /* LowLevel */ = { isa = PBXGroup; children = ( - FFFBfab242d07fbcfab242d0 /* API Source */, - FFFBfab242f87fbcfab242f8 /* API Includes */, - FFFBfab243207fbcfab24320 /* Software Source */, - FFFBfab243487fbcfab24348 /* Software Includes */, - FFFBfab243707fbcfab24370 /* Common Source */, - FFFBfab243987fbcfab24398 /* Common Includes */, + FFFBb2d3b1107feab2d3b110 /* API Source */, + FFFBb2d3b1387feab2d3b138 /* API Includes */, + FFFBb2d3b1607feab2d3b160 /* Software Source */, + FFFBb2d3b1887feab2d3b188 /* Software Includes */, + FFFBb2d3b1b07feab2d3b1b0 /* Common Source */, + FFFBb2d3b1d87feab2d3b1d8 /* Common Includes */, ); name = "LowLevel"; sourceTree = "<group>"; }; - FFFBfab242d07fbcfab242d0 /* API Source */ = { + FFFBb2d3b1107feab2d3b110 /* API Source */ = { isa = PBXGroup; children = ( - FFFDfab2a4b07fbcfab2a4b0 /* px_globals.cpp */, + FFFDb2d3e8f07feab2d3e8f0 /* px_globals.cpp */, ); name = "API Source"; sourceTree = SOURCE_ROOT; }; - FFFBfab242f87fbcfab242f8 /* API Includes */ = { + FFFBb2d3b1387feab2d3b138 /* API Includes */ = { isa = PBXGroup; children = ( - FFFDfab316007fbcfab31600 /* PxsMaterialCore.h */, - FFFDfab316687fbcfab31668 /* PxsMaterialManager.h */, - FFFDfab316d07fbcfab316d0 /* PxvConfig.h */, - FFFDfab317387fbcfab31738 /* PxvContext.h */, - FFFDfab317a07fbcfab317a0 /* PxvDynamics.h */, - FFFDfab318087fbcfab31808 /* PxvGeometry.h */, - FFFDfab318707fbcfab31870 /* PxvGlobals.h */, - FFFDfab318d87fbcfab318d8 /* PxvManager.h */, - FFFDfab319407fbcfab31940 /* PxvSimStats.h */, + FFFDb2d3ab407feab2d3ab40 /* PxsMaterialCore.h */, + FFFDb2d3aba87feab2d3aba8 /* PxsMaterialManager.h */, + FFFDb2d3ac107feab2d3ac10 /* PxvConfig.h */, + FFFDb2d3ac787feab2d3ac78 /* PxvContext.h */, + FFFDb2d3ace07feab2d3ace0 /* PxvDynamics.h */, + FFFDb2d3ad487feab2d3ad48 /* PxvGeometry.h */, + FFFDb2d3adb07feab2d3adb0 /* PxvGlobals.h */, + FFFDb2d3ae187feab2d3ae18 /* PxvManager.h */, + FFFDb2d3ae807feab2d3ae80 /* PxvSimStats.h */, ); name = "API Includes"; sourceTree = SOURCE_ROOT; }; - FFFBfab243207fbcfab24320 /* Software Source */ = { + FFFBb2d3b1607feab2d3b160 /* Software Source */ = { isa = PBXGroup; children = ( - FFFDfab328007fbcfab32800 /* PxsCCD.cpp */, - FFFDfab328687fbcfab32868 /* PxsContactManager.cpp */, - FFFDfab328d07fbcfab328d0 /* PxsContext.cpp */, - FFFDfab329387fbcfab32938 /* PxsDefaultMemoryManager.cpp */, - FFFDfab329a07fbcfab329a0 /* PxsIslandSim.cpp */, - FFFDfab32a087fbcfab32a08 /* PxsMaterialCombiner.cpp */, - FFFDfab32a707fbcfab32a70 /* PxsNphaseImplementationContext.cpp */, - FFFDfab32ad87fbcfab32ad8 /* PxsSimpleIslandManager.cpp */, + FFFDb2d3e2107feab2d3e210 /* PxsCCD.cpp */, + FFFDb2d3e2787feab2d3e278 /* PxsContactManager.cpp */, + FFFDb2d3e2e07feab2d3e2e0 /* PxsContext.cpp */, + FFFDb2d3e3487feab2d3e348 /* PxsDefaultMemoryManager.cpp */, + FFFDb2d3e3b07feab2d3e3b0 /* PxsIslandSim.cpp */, + FFFDb2d3e4187feab2d3e418 /* PxsMaterialCombiner.cpp */, + FFFDb2d3e4807feab2d3e480 /* PxsNphaseImplementationContext.cpp */, + FFFDb2d3e4e87feab2d3e4e8 /* PxsSimpleIslandManager.cpp */, ); name = "Software Source"; sourceTree = SOURCE_ROOT; }; - FFFBfab243487fbcfab24348 /* Software Includes */ = { + FFFBb2d3b1887feab2d3b188 /* Software Includes */ = { isa = PBXGroup; children = ( - FFFDfa1bd6007fbcfa1bd600 /* PxsBodySim.h */, - FFFDfa1bd6687fbcfa1bd668 /* PxsCCD.h */, - FFFDfa1bd6d07fbcfa1bd6d0 /* PxsContactManager.h */, - FFFDfa1bd7387fbcfa1bd738 /* PxsContactManagerState.h */, - FFFDfa1bd7a07fbcfa1bd7a0 /* PxsContext.h */, - FFFDfa1bd8087fbcfa1bd808 /* PxsDefaultMemoryManager.h */, - FFFDfa1bd8707fbcfa1bd870 /* PxsHeapMemoryAllocator.h */, - FFFDfa1bd8d87fbcfa1bd8d8 /* PxsIncrementalConstraintPartitioning.h */, - FFFDfa1bd9407fbcfa1bd940 /* PxsIslandManagerTypes.h */, - FFFDfa1bd9a87fbcfa1bd9a8 /* PxsIslandSim.h */, - FFFDfa1bda107fbcfa1bda10 /* PxsKernelWrangler.h */, - FFFDfa1bda787fbcfa1bda78 /* PxsMaterialCombiner.h */, - FFFDfa1bdae07fbcfa1bdae0 /* PxsMemoryManager.h */, - FFFDfa1bdb487fbcfa1bdb48 /* PxsNphaseImplementationContext.h */, - FFFDfa1bdbb07fbcfa1bdbb0 /* PxsRigidBody.h */, - FFFDfa1bdc187fbcfa1bdc18 /* PxsShapeSim.h */, - FFFDfa1bdc807fbcfa1bdc80 /* PxsSimpleIslandManager.h */, - FFFDfa1bdce87fbcfa1bdce8 /* PxsSimulationController.h */, - FFFDfa1bdd507fbcfa1bdd50 /* PxsTransformCache.h */, - FFFDfa1bddb87fbcfa1bddb8 /* PxvNphaseImplementationContext.h */, + FFFDb3819e007feab3819e00 /* PxsBodySim.h */, + FFFDb3819e687feab3819e68 /* PxsCCD.h */, + FFFDb3819ed07feab3819ed0 /* PxsContactManager.h */, + FFFDb3819f387feab3819f38 /* PxsContactManagerState.h */, + FFFDb3819fa07feab3819fa0 /* PxsContext.h */, + FFFDb381a0087feab381a008 /* PxsDefaultMemoryManager.h */, + FFFDb381a0707feab381a070 /* PxsHeapMemoryAllocator.h */, + FFFDb381a0d87feab381a0d8 /* PxsIncrementalConstraintPartitioning.h */, + FFFDb381a1407feab381a140 /* PxsIslandManagerTypes.h */, + FFFDb381a1a87feab381a1a8 /* PxsIslandSim.h */, + FFFDb381a2107feab381a210 /* PxsKernelWrangler.h */, + FFFDb381a2787feab381a278 /* PxsMaterialCombiner.h */, + FFFDb381a2e07feab381a2e0 /* PxsMemoryManager.h */, + FFFDb381a3487feab381a348 /* PxsNphaseImplementationContext.h */, + FFFDb381a3b07feab381a3b0 /* PxsRigidBody.h */, + FFFDb381a4187feab381a418 /* PxsShapeSim.h */, + FFFDb381a4807feab381a480 /* PxsSimpleIslandManager.h */, + FFFDb381a4e87feab381a4e8 /* PxsSimulationController.h */, + FFFDb381a5507feab381a550 /* PxsTransformCache.h */, + FFFDb381a5b87feab381a5b8 /* PxvNphaseImplementationContext.h */, ); name = "Software Includes"; sourceTree = SOURCE_ROOT; }; - FFFBfab243707fbcfab24370 /* Common Source */ = { + FFFBb2d3b1b07feab2d3b1b0 /* Common Source */ = { isa = PBXGroup; children = ( - FFFDfa1bc0007fbcfa1bc000 /* collision/PxcContact.cpp */, - FFFDfa1bc0687fbcfa1bc068 /* pipeline/PxcContactCache.cpp */, - FFFDfa1bc0d07fbcfa1bc0d0 /* pipeline/PxcContactMethodImpl.cpp */, - FFFDfa1bc1387fbcfa1bc138 /* pipeline/PxcMaterialHeightField.cpp */, - FFFDfa1bc1a07fbcfa1bc1a0 /* pipeline/PxcMaterialMesh.cpp */, - FFFDfa1bc2087fbcfa1bc208 /* pipeline/PxcMaterialMethodImpl.cpp */, - FFFDfa1bc2707fbcfa1bc270 /* pipeline/PxcMaterialShape.cpp */, - FFFDfa1bc2d87fbcfa1bc2d8 /* pipeline/PxcNpBatch.cpp */, - FFFDfa1bc3407fbcfa1bc340 /* pipeline/PxcNpCacheStreamPair.cpp */, - FFFDfa1bc3a87fbcfa1bc3a8 /* pipeline/PxcNpContactPrepShared.cpp */, - FFFDfa1bc4107fbcfa1bc410 /* pipeline/PxcNpMemBlockPool.cpp */, - FFFDfa1bc4787fbcfa1bc478 /* pipeline/PxcNpThreadContext.cpp */, + FFFDb38188007feab3818800 /* collision/PxcContact.cpp */, + FFFDb38188687feab3818868 /* pipeline/PxcContactCache.cpp */, + FFFDb38188d07feab38188d0 /* pipeline/PxcContactMethodImpl.cpp */, + FFFDb38189387feab3818938 /* pipeline/PxcMaterialHeightField.cpp */, + FFFDb38189a07feab38189a0 /* pipeline/PxcMaterialMesh.cpp */, + FFFDb3818a087feab3818a08 /* pipeline/PxcMaterialMethodImpl.cpp */, + FFFDb3818a707feab3818a70 /* pipeline/PxcMaterialShape.cpp */, + FFFDb3818ad87feab3818ad8 /* pipeline/PxcNpBatch.cpp */, + FFFDb3818b407feab3818b40 /* pipeline/PxcNpCacheStreamPair.cpp */, + FFFDb3818ba87feab3818ba8 /* pipeline/PxcNpContactPrepShared.cpp */, + FFFDb3818c107feab3818c10 /* pipeline/PxcNpMemBlockPool.cpp */, + FFFDb3818c787feab3818c78 /* pipeline/PxcNpThreadContext.cpp */, ); name = "Common Source"; sourceTree = SOURCE_ROOT; }; - FFFBfab243987fbcfab24398 /* Common Includes */ = { + FFFBb2d3b1d87feab2d3b1d8 /* Common Includes */ = { isa = PBXGroup; children = ( - FFFDfa1bc8007fbcfa1bc800 /* collision/PxcContactMethodImpl.h */, - FFFDfa1bc8687fbcfa1bc868 /* pipeline/PxcCCDStateStreamPair.h */, - FFFDfa1bc8d07fbcfa1bc8d0 /* pipeline/PxcConstraintBlockStream.h */, - FFFDfa1bc9387fbcfa1bc938 /* pipeline/PxcContactCache.h */, - FFFDfa1bc9a07fbcfa1bc9a0 /* pipeline/PxcMaterialMethodImpl.h */, - FFFDfa1bca087fbcfa1bca08 /* pipeline/PxcNpBatch.h */, - FFFDfa1bca707fbcfa1bca70 /* pipeline/PxcNpCache.h */, - FFFDfa1bcad87fbcfa1bcad8 /* pipeline/PxcNpCacheStreamPair.h */, - FFFDfa1bcb407fbcfa1bcb40 /* pipeline/PxcNpContactPrepShared.h */, - FFFDfa1bcba87fbcfa1bcba8 /* pipeline/PxcNpMemBlockPool.h */, - FFFDfa1bcc107fbcfa1bcc10 /* pipeline/PxcNpThreadContext.h */, - FFFDfa1bcc787fbcfa1bcc78 /* pipeline/PxcNpWorkUnit.h */, - FFFDfa1bcce07fbcfa1bcce0 /* pipeline/PxcRigidBody.h */, - FFFDfa1bcd487fbcfa1bcd48 /* utils/PxcScratchAllocator.h */, - FFFDfa1bcdb07fbcfa1bcdb0 /* utils/PxcThreadCoherentCache.h */, + FFFDb38190007feab3819000 /* collision/PxcContactMethodImpl.h */, + FFFDb38190687feab3819068 /* pipeline/PxcCCDStateStreamPair.h */, + FFFDb38190d07feab38190d0 /* pipeline/PxcConstraintBlockStream.h */, + FFFDb38191387feab3819138 /* pipeline/PxcContactCache.h */, + FFFDb38191a07feab38191a0 /* pipeline/PxcMaterialMethodImpl.h */, + FFFDb38192087feab3819208 /* pipeline/PxcNpBatch.h */, + FFFDb38192707feab3819270 /* pipeline/PxcNpCache.h */, + FFFDb38192d87feab38192d8 /* pipeline/PxcNpCacheStreamPair.h */, + FFFDb38193407feab3819340 /* pipeline/PxcNpContactPrepShared.h */, + FFFDb38193a87feab38193a8 /* pipeline/PxcNpMemBlockPool.h */, + FFFDb38194107feab3819410 /* pipeline/PxcNpThreadContext.h */, + FFFDb38194787feab3819478 /* pipeline/PxcNpWorkUnit.h */, + FFFDb38194e07feab38194e0 /* pipeline/PxcRigidBody.h */, + FFFDb38195487feab3819548 /* utils/PxcScratchAllocator.h */, + FFFDb38195b07feab38195b0 /* utils/PxcThreadCoherentCache.h */, ); name = "Common Includes"; sourceTree = SOURCE_ROOT; }; - FFFBfab514407fbcfab51440 /* LowLevelAABB */ = { + FFFBb17424907feab1742490 /* LowLevelAABB */ = { isa = PBXGroup; children = ( - FFFBfab4ba407fbcfab4ba40 /* include */, - FFFBfab4ba687fbcfab4ba68 /* src */, + FFFBb17260107feab1726010 /* include */, + FFFBb17260387feab1726038 /* src */, ); name = "LowLevelAABB"; sourceTree = "<group>"; }; - FFFBfab4ba407fbcfab4ba40 /* include */ = { + FFFBb17260107feab1726010 /* include */ = { isa = PBXGroup; children = ( - FFFDfab4c6b07fbcfab4c6b0 /* BpAABBManagerTasks.h */, - FFFDfab4c7187fbcfab4c718 /* BpBroadPhase.h */, - FFFDfab4c7807fbcfab4c780 /* BpBroadPhaseUpdate.h */, - FFFDfab4c7e87fbcfab4c7e8 /* BpSimpleAABBManager.h */, + FFFDb17438407feab1743840 /* BpAABBManagerTasks.h */, + FFFDb17438a87feab17438a8 /* BpBroadPhase.h */, + FFFDb17439107feab1743910 /* BpBroadPhaseUpdate.h */, + FFFDb17439787feab1743978 /* BpSimpleAABBManager.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBfab4ba687fbcfab4ba68 /* src */ = { + FFFBb17260387feab1726038 /* src */ = { isa = PBXGroup; children = ( - FFFDfa1c64007fbcfa1c6400 /* BpBroadPhaseMBP.h */, - FFFDfa1c64687fbcfa1c6468 /* BpBroadPhaseMBPCommon.h */, - FFFDfa1c64d07fbcfa1c64d0 /* BpBroadPhaseSap.h */, - FFFDfa1c65387fbcfa1c6538 /* BpBroadPhaseSapAux.h */, - FFFDfa1c65a07fbcfa1c65a0 /* BpMBPTasks.h */, - FFFDfa1c66087fbcfa1c6608 /* BpSAPTasks.h */, - FFFDfa1c66707fbcfa1c6670 /* BpBroadPhase.cpp */, - FFFDfa1c66d87fbcfa1c66d8 /* BpBroadPhaseMBP.cpp */, - FFFDfa1c67407fbcfa1c6740 /* BpBroadPhaseSap.cpp */, - FFFDfa1c67a87fbcfa1c67a8 /* BpBroadPhaseSapAux.cpp */, - FFFDfa1c68107fbcfa1c6810 /* BpMBPTasks.cpp */, - FFFDfa1c68787fbcfa1c6878 /* BpSAPTasks.cpp */, - FFFDfa1c68e07fbcfa1c68e0 /* BpSimpleAABBManager.cpp */, + FFFDb201d4007feab201d400 /* BpBroadPhaseMBP.h */, + FFFDb201d4687feab201d468 /* BpBroadPhaseMBPCommon.h */, + FFFDb201d4d07feab201d4d0 /* BpBroadPhaseSap.h */, + FFFDb201d5387feab201d538 /* BpBroadPhaseSapAux.h */, + FFFDb201d5a07feab201d5a0 /* BpMBPTasks.h */, + FFFDb201d6087feab201d608 /* BpSAPTasks.h */, + FFFDb201d6707feab201d670 /* BpBroadPhase.cpp */, + FFFDb201d6d87feab201d6d8 /* BpBroadPhaseMBP.cpp */, + FFFDb201d7407feab201d740 /* BpBroadPhaseSap.cpp */, + FFFDb201d7a87feab201d7a8 /* BpBroadPhaseSapAux.cpp */, + FFFDb201d8107feab201d810 /* BpMBPTasks.cpp */, + FFFDb201d8787feab201d878 /* BpSAPTasks.cpp */, + FFFDb201d8e07feab201d8e0 /* BpSimpleAABBManager.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBfaef20807fbcfaef2080 /* LowLevelDynamics */ = { + FFFBb1761b707feab1761b70 /* LowLevelDynamics */ = { isa = PBXGroup; children = ( - FFFBfaf055d07fbcfaf055d0 /* Dynamics Source */, - FFFBfaf055f87fbcfaf055f8 /* Dynamics Includes */, - FFFBfaf056207fbcfaf05620 /* Dynamics Internal Includes */, + FFFBb175b2507feab175b250 /* Dynamics Source */, + FFFBb175b2787feab175b278 /* Dynamics Includes */, + FFFBb175b2a07feab175b2a0 /* Dynamics Internal Includes */, ); name = "LowLevelDynamics"; sourceTree = "<group>"; }; - FFFBfaf055d07fbcfaf055d0 /* Dynamics Source */ = { + FFFBb175b2507feab175b250 /* Dynamics Source */ = { isa = PBXGroup; children = ( - FFFDfb820e007fbcfb820e00 /* DyArticulation.cpp */, - FFFDfb820e687fbcfb820e68 /* DyArticulationContactPrep.cpp */, - FFFDfb820ed07fbcfb820ed0 /* DyArticulationContactPrepPF.cpp */, - FFFDfb820f387fbcfb820f38 /* DyArticulationHelper.cpp */, - FFFDfb820fa07fbcfb820fa0 /* DyArticulationSIMD.cpp */, - FFFDfb8210087fbcfb821008 /* DyArticulationScalar.cpp */, - FFFDfb8210707fbcfb821070 /* DyConstraintPartition.cpp */, - FFFDfb8210d87fbcfb8210d8 /* DyConstraintSetup.cpp */, - FFFDfb8211407fbcfb821140 /* DyConstraintSetupBlock.cpp */, - FFFDfb8211a87fbcfb8211a8 /* DyContactPrep.cpp */, - FFFDfb8212107fbcfb821210 /* DyContactPrep4.cpp */, - FFFDfb8212787fbcfb821278 /* DyContactPrep4PF.cpp */, - FFFDfb8212e07fbcfb8212e0 /* DyContactPrepPF.cpp */, - FFFDfb8213487fbcfb821348 /* DyDynamics.cpp */, - FFFDfb8213b07fbcfb8213b0 /* DyFrictionCorrelation.cpp */, - FFFDfb8214187fbcfb821418 /* DyRigidBodyToSolverBody.cpp */, - FFFDfb8214807fbcfb821480 /* DySolverConstraints.cpp */, - FFFDfb8214e87fbcfb8214e8 /* DySolverConstraintsBlock.cpp */, - FFFDfb8215507fbcfb821550 /* DySolverControl.cpp */, - FFFDfb8215b87fbcfb8215b8 /* DySolverControlPF.cpp */, - FFFDfb8216207fbcfb821620 /* DySolverPFConstraints.cpp */, - FFFDfb8216887fbcfb821688 /* DySolverPFConstraintsBlock.cpp */, - FFFDfb8216f07fbcfb8216f0 /* DyThreadContext.cpp */, - FFFDfb8217587fbcfb821758 /* DyThresholdTable.cpp */, + FFFDb20266007feab2026600 /* DyArticulation.cpp */, + FFFDb20266687feab2026668 /* DyArticulationContactPrep.cpp */, + FFFDb20266d07feab20266d0 /* DyArticulationContactPrepPF.cpp */, + FFFDb20267387feab2026738 /* DyArticulationHelper.cpp */, + FFFDb20267a07feab20267a0 /* DyArticulationSIMD.cpp */, + FFFDb20268087feab2026808 /* DyArticulationScalar.cpp */, + FFFDb20268707feab2026870 /* DyConstraintPartition.cpp */, + FFFDb20268d87feab20268d8 /* DyConstraintSetup.cpp */, + FFFDb20269407feab2026940 /* DyConstraintSetupBlock.cpp */, + FFFDb20269a87feab20269a8 /* DyContactPrep.cpp */, + FFFDb2026a107feab2026a10 /* DyContactPrep4.cpp */, + FFFDb2026a787feab2026a78 /* DyContactPrep4PF.cpp */, + FFFDb2026ae07feab2026ae0 /* DyContactPrepPF.cpp */, + FFFDb2026b487feab2026b48 /* DyDynamics.cpp */, + FFFDb2026bb07feab2026bb0 /* DyFrictionCorrelation.cpp */, + FFFDb2026c187feab2026c18 /* DyRigidBodyToSolverBody.cpp */, + FFFDb2026c807feab2026c80 /* DySolverConstraints.cpp */, + FFFDb2026ce87feab2026ce8 /* DySolverConstraintsBlock.cpp */, + FFFDb2026d507feab2026d50 /* DySolverControl.cpp */, + FFFDb2026db87feab2026db8 /* DySolverControlPF.cpp */, + FFFDb2026e207feab2026e20 /* DySolverPFConstraints.cpp */, + FFFDb2026e887feab2026e88 /* DySolverPFConstraintsBlock.cpp */, + FFFDb2026ef07feab2026ef0 /* DyThreadContext.cpp */, + FFFDb2026f587feab2026f58 /* DyThresholdTable.cpp */, ); name = "Dynamics Source"; sourceTree = SOURCE_ROOT; }; - FFFBfaf055f87fbcfaf055f8 /* Dynamics Includes */ = { + FFFBb175b2787feab175b278 /* Dynamics Includes */ = { isa = PBXGroup; children = ( - FFFDfaf0b7b07fbcfaf0b7b0 /* DyArticulation.h */, - FFFDfaf0b8187fbcfaf0b818 /* DyConstraint.h */, - FFFDfaf0b8807fbcfaf0b880 /* DyConstraintWriteBack.h */, - FFFDfaf0b8e87fbcfaf0b8e8 /* DyContext.h */, - FFFDfaf0b9507fbcfaf0b950 /* DyGpuAPI.h */, - FFFDfaf0b9b87fbcfaf0b9b8 /* DySleepingConfigulation.h */, - FFFDfaf0ba207fbcfaf0ba20 /* DyThresholdTable.h */, + FFFDb17584b07feab17584b0 /* DyArticulation.h */, + FFFDb17585187feab1758518 /* DyConstraint.h */, + FFFDb17585807feab1758580 /* DyConstraintWriteBack.h */, + FFFDb17585e87feab17585e8 /* DyContext.h */, + FFFDb17586507feab1758650 /* DyGpuAPI.h */, + FFFDb17586b87feab17586b8 /* DySleepingConfigulation.h */, + FFFDb17587207feab1758720 /* DyThresholdTable.h */, ); name = "Dynamics Includes"; sourceTree = SOURCE_ROOT; }; - FFFBfaf056207fbcfaf05620 /* Dynamics Internal Includes */ = { + FFFBb175b2a07feab175b2a0 /* Dynamics Internal Includes */ = { isa = PBXGroup; children = ( - FFFDfb8220007fbcfb822000 /* DyArticulationContactPrep.h */, - FFFDfb8220687fbcfb822068 /* DyArticulationFnsDebug.h */, - FFFDfb8220d07fbcfb8220d0 /* DyArticulationFnsScalar.h */, - FFFDfb8221387fbcfb822138 /* DyArticulationFnsSimd.h */, - FFFDfb8221a07fbcfb8221a0 /* DyArticulationHelper.h */, - FFFDfb8222087fbcfb822208 /* DyArticulationPImpl.h */, - FFFDfb8222707fbcfb822270 /* DyArticulationReference.h */, - FFFDfb8222d87fbcfb8222d8 /* DyArticulationScalar.h */, - FFFDfb8223407fbcfb822340 /* DyArticulationUtils.h */, - FFFDfb8223a87fbcfb8223a8 /* DyBodyCoreIntegrator.h */, - FFFDfb8224107fbcfb822410 /* DyConstraintPartition.h */, - FFFDfb8224787fbcfb822478 /* DyConstraintPrep.h */, - FFFDfb8224e07fbcfb8224e0 /* DyContactPrep.h */, - FFFDfb8225487fbcfb822548 /* DyContactPrepShared.h */, - FFFDfb8225b07fbcfb8225b0 /* DyContactReduction.h */, - FFFDfb8226187fbcfb822618 /* DyCorrelationBuffer.h */, - FFFDfb8226807fbcfb822680 /* DyDynamics.h */, - FFFDfb8226e87fbcfb8226e8 /* DyFrictionPatch.h */, - FFFDfb8227507fbcfb822750 /* DyFrictionPatchStreamPair.h */, - FFFDfb8227b87fbcfb8227b8 /* DySolverBody.h */, - FFFDfb8228207fbcfb822820 /* DySolverConstraint1D.h */, - FFFDfb8228887fbcfb822888 /* DySolverConstraint1D4.h */, - FFFDfb8228f07fbcfb8228f0 /* DySolverConstraintDesc.h */, - FFFDfb8229587fbcfb822958 /* DySolverConstraintExtShared.h */, - FFFDfb8229c07fbcfb8229c0 /* DySolverConstraintTypes.h */, - FFFDfb822a287fbcfb822a28 /* DySolverConstraintsShared.h */, - FFFDfb822a907fbcfb822a90 /* DySolverContact.h */, - FFFDfb822af87fbcfb822af8 /* DySolverContact4.h */, - FFFDfb822b607fbcfb822b60 /* DySolverContactPF.h */, - FFFDfb822bc87fbcfb822bc8 /* DySolverContactPF4.h */, - FFFDfb822c307fbcfb822c30 /* DySolverContext.h */, - FFFDfb822c987fbcfb822c98 /* DySolverControl.h */, - FFFDfb822d007fbcfb822d00 /* DySolverControlPF.h */, - FFFDfb822d687fbcfb822d68 /* DySolverCore.h */, - FFFDfb822dd07fbcfb822dd0 /* DySolverExt.h */, - FFFDfb822e387fbcfb822e38 /* DySpatial.h */, - FFFDfb822ea07fbcfb822ea0 /* DyThreadContext.h */, + FFFDb20278007feab2027800 /* DyArticulationContactPrep.h */, + FFFDb20278687feab2027868 /* DyArticulationFnsDebug.h */, + FFFDb20278d07feab20278d0 /* DyArticulationFnsScalar.h */, + FFFDb20279387feab2027938 /* DyArticulationFnsSimd.h */, + FFFDb20279a07feab20279a0 /* DyArticulationHelper.h */, + FFFDb2027a087feab2027a08 /* DyArticulationPImpl.h */, + FFFDb2027a707feab2027a70 /* DyArticulationReference.h */, + FFFDb2027ad87feab2027ad8 /* DyArticulationScalar.h */, + FFFDb2027b407feab2027b40 /* DyArticulationUtils.h */, + FFFDb2027ba87feab2027ba8 /* DyBodyCoreIntegrator.h */, + FFFDb2027c107feab2027c10 /* DyConstraintPartition.h */, + FFFDb2027c787feab2027c78 /* DyConstraintPrep.h */, + FFFDb2027ce07feab2027ce0 /* DyContactPrep.h */, + FFFDb2027d487feab2027d48 /* DyContactPrepShared.h */, + FFFDb2027db07feab2027db0 /* DyContactReduction.h */, + FFFDb2027e187feab2027e18 /* DyCorrelationBuffer.h */, + FFFDb2027e807feab2027e80 /* DyDynamics.h */, + FFFDb2027ee87feab2027ee8 /* DyFrictionPatch.h */, + FFFDb2027f507feab2027f50 /* DyFrictionPatchStreamPair.h */, + FFFDb2027fb87feab2027fb8 /* DySolverBody.h */, + FFFDb20280207feab2028020 /* DySolverConstraint1D.h */, + FFFDb20280887feab2028088 /* DySolverConstraint1D4.h */, + FFFDb20280f07feab20280f0 /* DySolverConstraintDesc.h */, + FFFDb20281587feab2028158 /* DySolverConstraintExtShared.h */, + FFFDb20281c07feab20281c0 /* DySolverConstraintTypes.h */, + FFFDb20282287feab2028228 /* DySolverConstraintsShared.h */, + FFFDb20282907feab2028290 /* DySolverContact.h */, + FFFDb20282f87feab20282f8 /* DySolverContact4.h */, + FFFDb20283607feab2028360 /* DySolverContactPF.h */, + FFFDb20283c87feab20283c8 /* DySolverContactPF4.h */, + FFFDb20284307feab2028430 /* DySolverContext.h */, + FFFDb20284987feab2028498 /* DySolverControl.h */, + FFFDb20285007feab2028500 /* DySolverControlPF.h */, + FFFDb20285687feab2028568 /* DySolverCore.h */, + FFFDb20285d07feab20285d0 /* DySolverExt.h */, + FFFDb20286387feab2028638 /* DySpatial.h */, + FFFDb20286a07feab20286a0 /* DyThreadContext.h */, ); name = "Dynamics Internal Includes"; sourceTree = SOURCE_ROOT; }; - FFFBfab48c407fbcfab48c40 /* LowLevelCloth */ = { + FFFBb2d607707feab2d60770 /* LowLevelCloth */ = { isa = PBXGroup; children = ( - FFFBfab5b9807fbcfab5b980 /* include */, - FFFBfab5b9a87fbcfab5b9a8 /* src */, + FFFBb2d4b5807feab2d4b580 /* include */, + FFFBb2d4b5a87feab2d4b5a8 /* src */, ); name = "LowLevelCloth"; sourceTree = "<group>"; }; - FFFBfab5b9807fbcfab5b980 /* include */ = { + FFFBb2d4b5807feab2d4b580 /* include */ = { isa = PBXGroup; children = ( - FFFDfab60ea07fbcfab60ea0 /* Cloth.h */, - FFFDfab60f087fbcfab60f08 /* Fabric.h */, - FFFDfab60f707fbcfab60f70 /* Factory.h */, - FFFDfab60fd87fbcfab60fd8 /* PhaseConfig.h */, - FFFDfab610407fbcfab61040 /* Range.h */, - FFFDfab610a87fbcfab610a8 /* Solver.h */, - FFFDfab611107fbcfab61110 /* Types.h */, + FFFDb2d4c6c07feab2d4c6c0 /* Cloth.h */, + FFFDb2d4c7287feab2d4c728 /* Fabric.h */, + FFFDb2d4c7907feab2d4c790 /* Factory.h */, + FFFDb2d4c7f87feab2d4c7f8 /* PhaseConfig.h */, + FFFDb2d4c8607feab2d4c860 /* Range.h */, + FFFDb2d4c8c87feab2d4c8c8 /* Solver.h */, + FFFDb2d4c9307feab2d4c930 /* Types.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBfab5b9a87fbcfab5b9a8 /* src */ = { + FFFBb2d4b5a87feab2d4b5a8 /* src */ = { isa = PBXGroup; children = ( - FFFDfa1d02007fbcfa1d0200 /* Allocator.h */, - FFFDfa1d02687fbcfa1d0268 /* Array.h */, - FFFDfa1d02d07fbcfa1d02d0 /* BoundingBox.h */, - FFFDfa1d03387fbcfa1d0338 /* ClothBase.h */, - FFFDfa1d03a07fbcfa1d03a0 /* ClothImpl.h */, - FFFDfa1d04087fbcfa1d0408 /* IndexPair.h */, - FFFDfa1d04707fbcfa1d0470 /* IterationState.h */, - FFFDfa1d04d87fbcfa1d04d8 /* MovingAverage.h */, - FFFDfa1d05407fbcfa1d0540 /* PointInterpolator.h */, - FFFDfa1d05a87fbcfa1d05a8 /* Simd.h */, - FFFDfa1d06107fbcfa1d0610 /* StackAllocator.h */, - FFFDfa1d06787fbcfa1d0678 /* SwCloth.h */, - FFFDfa1d06e07fbcfa1d06e0 /* SwClothData.h */, - FFFDfa1d07487fbcfa1d0748 /* SwCollision.h */, - FFFDfa1d07b07fbcfa1d07b0 /* SwCollisionHelpers.h */, - FFFDfa1d08187fbcfa1d0818 /* SwFabric.h */, - FFFDfa1d08807fbcfa1d0880 /* SwFactory.h */, - FFFDfa1d08e87fbcfa1d08e8 /* SwInterCollision.h */, - FFFDfa1d09507fbcfa1d0950 /* SwSelfCollision.h */, - FFFDfa1d09b87fbcfa1d09b8 /* SwSolver.h */, - FFFDfa1d0a207fbcfa1d0a20 /* SwSolverKernel.h */, - FFFDfa1d0a887fbcfa1d0a88 /* TripletScheduler.h */, - FFFDfa1d0af07fbcfa1d0af0 /* Vec4T.h */, - FFFDfa1d0b587fbcfa1d0b58 /* Allocator.cpp */, - FFFDfa1d0bc07fbcfa1d0bc0 /* Factory.cpp */, - FFFDfa1d0c287fbcfa1d0c28 /* PhaseConfig.cpp */, - FFFDfa1d0c907fbcfa1d0c90 /* SwCloth.cpp */, - FFFDfa1d0cf87fbcfa1d0cf8 /* SwClothData.cpp */, - FFFDfa1d0d607fbcfa1d0d60 /* SwCollision.cpp */, - FFFDfa1d0dc87fbcfa1d0dc8 /* SwFabric.cpp */, - FFFDfa1d0e307fbcfa1d0e30 /* SwFactory.cpp */, - FFFDfa1d0e987fbcfa1d0e98 /* SwInterCollision.cpp */, - FFFDfa1d0f007fbcfa1d0f00 /* SwSelfCollision.cpp */, - FFFDfa1d0f687fbcfa1d0f68 /* SwSolver.cpp */, - FFFDfa1d0fd07fbcfa1d0fd0 /* SwSolverKernel.cpp */, - FFFDfa1d10387fbcfa1d1038 /* TripletScheduler.cpp */, + FFFDb3823a007feab3823a00 /* Allocator.h */, + FFFDb3823a687feab3823a68 /* Array.h */, + FFFDb3823ad07feab3823ad0 /* BoundingBox.h */, + FFFDb3823b387feab3823b38 /* ClothBase.h */, + FFFDb3823ba07feab3823ba0 /* ClothImpl.h */, + FFFDb3823c087feab3823c08 /* IndexPair.h */, + FFFDb3823c707feab3823c70 /* IterationState.h */, + FFFDb3823cd87feab3823cd8 /* MovingAverage.h */, + FFFDb3823d407feab3823d40 /* PointInterpolator.h */, + FFFDb3823da87feab3823da8 /* Simd.h */, + FFFDb3823e107feab3823e10 /* StackAllocator.h */, + FFFDb3823e787feab3823e78 /* SwCloth.h */, + FFFDb3823ee07feab3823ee0 /* SwClothData.h */, + FFFDb3823f487feab3823f48 /* SwCollision.h */, + FFFDb3823fb07feab3823fb0 /* SwCollisionHelpers.h */, + FFFDb38240187feab3824018 /* SwFabric.h */, + FFFDb38240807feab3824080 /* SwFactory.h */, + FFFDb38240e87feab38240e8 /* SwInterCollision.h */, + FFFDb38241507feab3824150 /* SwSelfCollision.h */, + FFFDb38241b87feab38241b8 /* SwSolver.h */, + FFFDb38242207feab3824220 /* SwSolverKernel.h */, + FFFDb38242887feab3824288 /* TripletScheduler.h */, + FFFDb38242f07feab38242f0 /* Vec4T.h */, + FFFDb38243587feab3824358 /* Allocator.cpp */, + FFFDb38243c07feab38243c0 /* Factory.cpp */, + FFFDb38244287feab3824428 /* PhaseConfig.cpp */, + FFFDb38244907feab3824490 /* SwCloth.cpp */, + FFFDb38244f87feab38244f8 /* SwClothData.cpp */, + FFFDb38245607feab3824560 /* SwCollision.cpp */, + FFFDb38245c87feab38245c8 /* SwFabric.cpp */, + FFFDb38246307feab3824630 /* SwFactory.cpp */, + FFFDb38246987feab3824698 /* SwInterCollision.cpp */, + FFFDb38247007feab3824700 /* SwSelfCollision.cpp */, + FFFDb38247687feab3824768 /* SwSolver.cpp */, + FFFDb38247d07feab38247d0 /* SwSolverKernel.cpp */, + FFFDb38248387feab3824838 /* TripletScheduler.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBfc003cb07fbcfc003cb0 /* LowLevelParticles */ = { + FFFBb14554c07feab14554c0 /* LowLevelParticles */ = { isa = PBXGroup; children = ( - FFFBfc0058307fbcfc005830 /* include */, - FFFBfc0058587fbcfc005858 /* src */, + FFFBb145b9207feab145b920 /* include */, + FFFBb145b9487feab145b948 /* src */, ); name = "LowLevelParticles"; sourceTree = "<group>"; }; - FFFBfc0058307fbcfc005830 /* include */ = { + FFFBb145b9207feab145b920 /* include */ = { isa = PBXGroup; children = ( - FFFDfc802e007fbcfc802e00 /* PtBodyTransformVault.h */, - FFFDfc802e687fbcfc802e68 /* PtContext.h */, - FFFDfc802ed07fbcfc802ed0 /* PtGridCellVector.h */, - FFFDfc802f387fbcfc802f38 /* PtParticle.h */, - FFFDfc802fa07fbcfc802fa0 /* PtParticleContactManagerStream.h */, - FFFDfc8030087fbcfc803008 /* PtParticleData.h */, - FFFDfc8030707fbcfc803070 /* PtParticleShape.h */, - FFFDfc8030d87fbcfc8030d8 /* PtParticleSystemCore.h */, - FFFDfc8031407fbcfc803140 /* PtParticleSystemFlags.h */, - FFFDfc8031a87fbcfc8031a8 /* PtParticleSystemSim.h */, + FFFDb1811a007feab1811a00 /* PtBodyTransformVault.h */, + FFFDb1811a687feab1811a68 /* PtContext.h */, + FFFDb1811ad07feab1811ad0 /* PtGridCellVector.h */, + FFFDb1811b387feab1811b38 /* PtParticle.h */, + FFFDb1811ba07feab1811ba0 /* PtParticleContactManagerStream.h */, + FFFDb1811c087feab1811c08 /* PtParticleData.h */, + FFFDb1811c707feab1811c70 /* PtParticleShape.h */, + FFFDb1811cd87feab1811cd8 /* PtParticleSystemCore.h */, + FFFDb1811d407feab1811d40 /* PtParticleSystemFlags.h */, + FFFDb1811da87feab1811da8 /* PtParticleSystemSim.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBfc0058587fbcfc005858 /* src */ = { + FFFBb145b9487feab145b948 /* src */ = { isa = PBXGroup; children = ( - FFFDfc808e007fbcfc808e00 /* PtBatcher.h */, - FFFDfc808e687fbcfc808e68 /* PtCollision.h */, - FFFDfc808ed07fbcfc808ed0 /* PtCollisionData.h */, - FFFDfc808f387fbcfc808f38 /* PtCollisionHelper.h */, - FFFDfc808fa07fbcfc808fa0 /* PtCollisionMethods.h */, - FFFDfc8090087fbcfc809008 /* PtCollisionParameters.h */, - FFFDfc8090707fbcfc809070 /* PtConfig.h */, - FFFDfc8090d87fbcfc8090d8 /* PtConstants.h */, - FFFDfc8091407fbcfc809140 /* PtContextCpu.h */, - FFFDfc8091a87fbcfc8091a8 /* PtDynamicHelper.h */, - FFFDfc8092107fbcfc809210 /* PtDynamics.h */, - FFFDfc8092787fbcfc809278 /* PtDynamicsKernels.h */, - FFFDfc8092e07fbcfc8092e0 /* PtDynamicsParameters.h */, - FFFDfc8093487fbcfc809348 /* PtDynamicsTempBuffers.h */, - FFFDfc8093b07fbcfc8093b0 /* PtHeightFieldAabbTest.h */, - FFFDfc8094187fbcfc809418 /* PtPacketSections.h */, - FFFDfc8094807fbcfc809480 /* PtParticleCell.h */, - FFFDfc8094e87fbcfc8094e8 /* PtParticleOpcodeCache.h */, - FFFDfc8095507fbcfc809550 /* PtParticleShapeCpu.h */, - FFFDfc8095b87fbcfc8095b8 /* PtParticleSystemSimCpu.h */, - FFFDfc8096207fbcfc809620 /* PtSpatialHash.h */, - FFFDfc8096887fbcfc809688 /* PtSpatialHashHelper.h */, - FFFDfc8096f07fbcfc8096f0 /* PtTwoWayData.h */, - FFFDfc8097587fbcfc809758 /* PtBatcher.cpp */, - FFFDfc8097c07fbcfc8097c0 /* PtBodyTransformVault.cpp */, - FFFDfc8098287fbcfc809828 /* PtCollision.cpp */, - FFFDfc8098907fbcfc809890 /* PtCollisionBox.cpp */, - FFFDfc8098f87fbcfc8098f8 /* PtCollisionCapsule.cpp */, - FFFDfc8099607fbcfc809960 /* PtCollisionConvex.cpp */, - FFFDfc8099c87fbcfc8099c8 /* PtCollisionMesh.cpp */, - FFFDfc809a307fbcfc809a30 /* PtCollisionPlane.cpp */, - FFFDfc809a987fbcfc809a98 /* PtCollisionSphere.cpp */, - FFFDfc809b007fbcfc809b00 /* PtContextCpu.cpp */, - FFFDfc809b687fbcfc809b68 /* PtDynamics.cpp */, - FFFDfc809bd07fbcfc809bd0 /* PtParticleData.cpp */, - FFFDfc809c387fbcfc809c38 /* PtParticleShapeCpu.cpp */, - FFFDfc809ca07fbcfc809ca0 /* PtParticleSystemSimCpu.cpp */, - FFFDfc809d087fbcfc809d08 /* PtSpatialHash.cpp */, - FFFDfc809d707fbcfc809d70 /* PtSpatialLocalHash.cpp */, + FFFDb181a0007feab181a000 /* PtBatcher.h */, + FFFDb181a0687feab181a068 /* PtCollision.h */, + FFFDb181a0d07feab181a0d0 /* PtCollisionData.h */, + FFFDb181a1387feab181a138 /* PtCollisionHelper.h */, + FFFDb181a1a07feab181a1a0 /* PtCollisionMethods.h */, + FFFDb181a2087feab181a208 /* PtCollisionParameters.h */, + FFFDb181a2707feab181a270 /* PtConfig.h */, + FFFDb181a2d87feab181a2d8 /* PtConstants.h */, + FFFDb181a3407feab181a340 /* PtContextCpu.h */, + FFFDb181a3a87feab181a3a8 /* PtDynamicHelper.h */, + FFFDb181a4107feab181a410 /* PtDynamics.h */, + FFFDb181a4787feab181a478 /* PtDynamicsKernels.h */, + FFFDb181a4e07feab181a4e0 /* PtDynamicsParameters.h */, + FFFDb181a5487feab181a548 /* PtDynamicsTempBuffers.h */, + FFFDb181a5b07feab181a5b0 /* PtHeightFieldAabbTest.h */, + FFFDb181a6187feab181a618 /* PtPacketSections.h */, + FFFDb181a6807feab181a680 /* PtParticleCell.h */, + FFFDb181a6e87feab181a6e8 /* PtParticleOpcodeCache.h */, + FFFDb181a7507feab181a750 /* PtParticleShapeCpu.h */, + FFFDb181a7b87feab181a7b8 /* PtParticleSystemSimCpu.h */, + FFFDb181a8207feab181a820 /* PtSpatialHash.h */, + FFFDb181a8887feab181a888 /* PtSpatialHashHelper.h */, + FFFDb181a8f07feab181a8f0 /* PtTwoWayData.h */, + FFFDb181a9587feab181a958 /* PtBatcher.cpp */, + FFFDb181a9c07feab181a9c0 /* PtBodyTransformVault.cpp */, + FFFDb181aa287feab181aa28 /* PtCollision.cpp */, + FFFDb181aa907feab181aa90 /* PtCollisionBox.cpp */, + FFFDb181aaf87feab181aaf8 /* PtCollisionCapsule.cpp */, + FFFDb181ab607feab181ab60 /* PtCollisionConvex.cpp */, + FFFDb181abc87feab181abc8 /* PtCollisionMesh.cpp */, + FFFDb181ac307feab181ac30 /* PtCollisionPlane.cpp */, + FFFDb181ac987feab181ac98 /* PtCollisionSphere.cpp */, + FFFDb181ad007feab181ad00 /* PtContextCpu.cpp */, + FFFDb181ad687feab181ad68 /* PtDynamics.cpp */, + FFFDb181add07feab181add0 /* PtParticleData.cpp */, + FFFDb181ae387feab181ae38 /* PtParticleShapeCpu.cpp */, + FFFDb181aea07feab181aea0 /* PtParticleSystemSimCpu.cpp */, + FFFDb181af087feab181af08 /* PtSpatialHash.cpp */, + FFFDb181af707feab181af70 /* PtSpatialLocalHash.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBfc2149407fbcfc214940 /* PxTask */ = { + FFFBb2d743307feab2d74330 /* PxTask */ = { isa = PBXGroup; children = ( - FFFBfc214d007fbcfc214d00 /* include */, - FFFBfc214d287fbcfc214d28 /* src */, + FFFBb2d94f407feab2d94f40 /* include */, + FFFBb2d94f687feab2d94f68 /* src */, ); name = "PxTask"; sourceTree = "<group>"; }; - FFFBfc214d007fbcfc214d00 /* include */ = { + FFFBb2d94f407feab2d94f40 /* include */ = { isa = PBXGroup; children = ( - FFFDfc212e807fbcfc212e80 /* PxCpuDispatcher.h */, - FFFDfc212ee87fbcfc212ee8 /* PxGpuDispatcher.h */, - FFFDfc212f507fbcfc212f50 /* PxGpuTask.h */, - FFFDfc212fb87fbcfc212fb8 /* PxTask.h */, - FFFDfc2130207fbcfc213020 /* PxTaskDefine.h */, - FFFDfc2130887fbcfc213088 /* PxTaskManager.h */, + FFFDb2d736407feab2d73640 /* PxCpuDispatcher.h */, + FFFDb2d736a87feab2d736a8 /* PxGpuDispatcher.h */, + FFFDb2d737107feab2d73710 /* PxGpuTask.h */, + FFFDb2d737787feab2d73778 /* PxTask.h */, + FFFDb2d737e07feab2d737e0 /* PxTaskDefine.h */, + FFFDb2d738487feab2d73848 /* PxTaskManager.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBfc214d287fbcfc214d28 /* src */ = { + FFFBb2d94f687feab2d94f68 /* src */ = { isa = PBXGroup; children = ( - FFFDfc2128307fbcfc212830 /* src/TaskManager.cpp */, + FFFDb2da00f07feab2da00f0 /* src/TaskManager.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFBfc0657b07fbcfc0657b0 /* PsFastXml */ = { + FFFBb2fac9c07feab2fac9c0 /* PsFastXml */ = { isa = PBXGroup; children = ( - FFFBfc065d107fbcfc065d10 /* include */, - FFFBfc065d387fbcfc065d38 /* src */, + FFFBb2facf507feab2facf50 /* include */, + FFFBb2facf787feab2facf78 /* src */, ); name = "PsFastXml"; sourceTree = "<group>"; }; - FFFBfc065d107fbcfc065d10 /* include */ = { + FFFBb2facf507feab2facf50 /* include */ = { isa = PBXGroup; children = ( - FFFDfc065ea07fbcfc065ea0 /* PsFastXml.h */, + FFFDb2fad0e07feab2fad0e0 /* PsFastXml.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFBfc065d387fbcfc065d38 /* src */ = { + FFFBb2facf787feab2facf78 /* src */ = { isa = PBXGroup; children = ( - FFFDfc065fa07fbcfc065fa0 /* PsFastXml.cpp */, + FFFDb2fad1e07feab2fad1e0 /* PsFastXml.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; @@ -4991,61 +4991,61 @@ /* End PBXGroup section */ /* Begin PBXNativeTarget section */ - FFFAfc0690807fbcfc069080 /* PhysX */ = { + FFFAb2fb02907feab2fb0290 /* PhysX */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6fc0690807fbcfc069080 /* Build configuration list for PBXNativeTarget "PhysX" */; + buildConfigurationList = FFF6b2fb02907feab2fb0290 /* Build configuration list for PBXNativeTarget "PhysX" */; buildPhases = ( - FFF2fc0690807fbcfc069080, - FFF8fc0690807fbcfc069080, - FFFCfc0690807fbcfc069080, + FFF2b2fb02907feab2fb0290, + FFF8b2fb02907feab2fb0290, + FFFCb2fb02907feab2fb0290, ); buildRules = ( ); dependencies = ( - FFF4fc0721c07fbcfc0721c0, /* LowLevel */ - FFF4fc0727407fbcfc072740, /* LowLevelAABB */ - FFF4fc0716c07fbcfc0716c0, /* LowLevelCloth */ - FFF4fc0727a07fbcfc0727a0, /* LowLevelDynamics */ - FFF4fc0d6b507fbcfc0d6b50, /* LowLevelParticles */ - FFF4fc0750707fbcfc075070, /* PhysXCommon */ - FFF4fc0693707fbcfc069370, /* PxFoundation */ - FFF4fc0690207fbcfc069020, /* PxPvdSDK */ - FFF4fc0e5aa07fbcfc0e5aa0, /* PxTask */ - FFF4fc0d6bb07fbcfc0d6bb0, /* SceneQuery */ - FFF4fc0e5a707fbcfc0e5a70, /* SimulationController */ + FFF4b2fc30c07feab2fc30c0, /* LowLevel */ + FFF4b2fbe2e07feab2fbe2e0, /* LowLevelAABB */ + FFF4b2fc3a007feab2fc3a00, /* LowLevelCloth */ + FFF4b2fc39a07feab2fc39a0, /* LowLevelDynamics */ + FFF4b2fc04d07feab2fc04d0, /* LowLevelParticles */ + FFF4b2fc30607feab2fc3060, /* PhysXCommon */ + FFF4b2fb02607feab2fb0260, /* PxFoundation */ + FFF4b2fb02007feab2fb0200, /* PxPvdSDK */ + FFF4b2fc41507feab2fc4150, /* PxTask */ + FFF4b2fc05307feab2fc0530, /* SceneQuery */ + FFF4b2fc05907feab2fc0590, /* SimulationController */ ); name = "PhysX"; productName = "PhysX"; - productReference = FFFDfc0690807fbcfc069080 /* PhysX */; + productReference = FFFDb2fb02907feab2fb0290 /* PhysX */; productType = "com.apple.product-type.library.static"; }; - FFFAfc0717b07fbcfc0717b0 /* PhysXCharacterKinematic */ = { + FFFAb2fc41607feab2fc4160 /* PhysXCharacterKinematic */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6fc0717b07fbcfc0717b0 /* Build configuration list for PBXNativeTarget "PhysXCharacterKinematic" */; + buildConfigurationList = FFF6b2fc41607feab2fc4160 /* Build configuration list for PBXNativeTarget "PhysXCharacterKinematic" */; buildPhases = ( - FFF2fc0717b07fbcfc0717b0, - FFF8fc0717b07fbcfc0717b0, - FFFCfc0717b07fbcfc0717b0, + FFF2b2fc41607feab2fc4160, + FFF8b2fc41607feab2fc4160, + FFFCb2fc41607feab2fc4160, ); buildRules = ( ); dependencies = ( - FFF4fc0760107fbcfc076010, /* PhysXCommon */ - FFF4fc0e71107fbcfc0e7110, /* PhysXExtensions */ - FFF4fc0733907fbcfc073390, /* PxFoundation */ + FFF4b2fc67907feab2fc6790, /* PhysXCommon */ + FFF4b2fc58b07feab2fc58b0, /* PhysXExtensions */ + FFF4b2fc5ee07feab2fc5ee0, /* PxFoundation */ ); name = "PhysXCharacterKinematic"; productName = "PhysXCharacterKinematic"; - productReference = FFFDfc0717b07fbcfc0717b0 /* PhysXCharacterKinematic */; + productReference = FFFDb2fc41607feab2fc4160 /* PhysXCharacterKinematic */; productType = "com.apple.product-type.library.static"; }; - FFFAfc0771907fbcfc077190 /* PhysXVehicle */ = { + FFFAb2fc15c07feab2fc15c0 /* PhysXVehicle */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6fc0771907fbcfc077190 /* Build configuration list for PBXNativeTarget "PhysXVehicle" */; + buildConfigurationList = FFF6b2fc15c07feab2fc15c0 /* Build configuration list for PBXNativeTarget "PhysXVehicle" */; buildPhases = ( - FFF2fc0771907fbcfc077190, - FFF8fc0771907fbcfc077190, - FFFCfc0771907fbcfc077190, + FFF2b2fc15c07feab2fc15c0, + FFF8b2fc15c07feab2fc15c0, + FFFCb2fc15c07feab2fc15c0, ); buildRules = ( ); @@ -5053,34 +5053,34 @@ ); name = "PhysXVehicle"; productName = "PhysXVehicle"; - productReference = FFFDfc0771907fbcfc077190 /* PhysXVehicle */; + productReference = FFFDb2fc15c07feab2fc15c0 /* PhysXVehicle */; productType = "com.apple.product-type.library.static"; }; - FFFAfc0c74907fbcfc0c7490 /* PhysXExtensions */ = { + FFFAb2fd2b007feab2fd2b00 /* PhysXExtensions */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6fc0c74907fbcfc0c7490 /* Build configuration list for PBXNativeTarget "PhysXExtensions" */; + buildConfigurationList = FFF6b2fd2b007feab2fd2b00 /* Build configuration list for PBXNativeTarget "PhysXExtensions" */; buildPhases = ( - FFF2fc0c74907fbcfc0c7490, - FFF8fc0c74907fbcfc0c7490, - FFFCfc0c74907fbcfc0c7490, + FFF2b2fd2b007feab2fd2b00, + FFF8b2fd2b007feab2fd2b00, + FFFCb2fd2b007feab2fd2b00, ); buildRules = ( ); dependencies = ( - FFF4fc0c97b07fbcfc0c97b0, /* PsFastXml */ + FFF4b2fd33c07feab2fd33c0, /* PsFastXml */ ); name = "PhysXExtensions"; productName = "PhysXExtensions"; - productReference = FFFDfc0c74907fbcfc0c7490 /* PhysXExtensions */; + productReference = FFFDb2fd2b007feab2fd2b00 /* PhysXExtensions */; productType = "com.apple.product-type.library.static"; }; - FFFAfc0985207fbcfc098520 /* SceneQuery */ = { + FFFAb2fe3bd07feab2fe3bd0 /* SceneQuery */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6fc0985207fbcfc098520 /* Build configuration list for PBXNativeTarget "SceneQuery" */; + buildConfigurationList = FFF6b2fe3bd07feab2fe3bd0 /* Build configuration list for PBXNativeTarget "SceneQuery" */; buildPhases = ( - FFF2fc0985207fbcfc098520, - FFF8fc0985207fbcfc098520, - FFFCfc0985207fbcfc098520, + FFF2b2fe3bd07feab2fe3bd0, + FFF8b2fe3bd07feab2fe3bd0, + FFFCb2fe3bd07feab2fe3bd0, ); buildRules = ( ); @@ -5088,16 +5088,16 @@ ); name = "SceneQuery"; productName = "SceneQuery"; - productReference = FFFDfc0985207fbcfc098520 /* SceneQuery */; + productReference = FFFDb2fe3bd07feab2fe3bd0 /* SceneQuery */; productType = "com.apple.product-type.library.static"; }; - FFFAfc08d4e07fbcfc08d4e0 /* SimulationController */ = { + FFFAb2fe82c07feab2fe82c0 /* SimulationController */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6fc08d4e07fbcfc08d4e0 /* Build configuration list for PBXNativeTarget "SimulationController" */; + buildConfigurationList = FFF6b2fe82c07feab2fe82c0 /* Build configuration list for PBXNativeTarget "SimulationController" */; buildPhases = ( - FFF2fc08d4e07fbcfc08d4e0, - FFF8fc08d4e07fbcfc08d4e0, - FFFCfc08d4e07fbcfc08d4e0, + FFF2b2fe82c07feab2fe82c0, + FFF8b2fe82c07feab2fe82c0, + FFFCb2fe82c07feab2fe82c0, ); buildRules = ( ); @@ -5105,54 +5105,54 @@ ); name = "SimulationController"; productName = "SimulationController"; - productReference = FFFDfc08d4e07fbcfc08d4e0 /* SimulationController */; + productReference = FFFDb2fe82c07feab2fe82c0 /* SimulationController */; productType = "com.apple.product-type.library.static"; }; - FFFAfc07fd407fbcfc07fd40 /* PhysXCooking */ = { + FFFAb2feca707feab2feca70 /* PhysXCooking */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6fc07fd407fbcfc07fd40 /* Build configuration list for PBXNativeTarget "PhysXCooking" */; + buildConfigurationList = FFF6b2feca707feab2feca70 /* Build configuration list for PBXNativeTarget "PhysXCooking" */; buildPhases = ( - FFF2fc07fd407fbcfc07fd40, - FFF8fc07fd407fbcfc07fd40, - FFFCfc07fd407fbcfc07fd40, + FFF2b2feca707feab2feca70, + FFF8b2feca707feab2feca70, + FFFCb2feca707feab2feca70, ); buildRules = ( ); dependencies = ( - FFF4fc1bc8107fbcfc1bc810, /* PhysXCommon */ - FFF4fc1bc6b07fbcfc1bc6b0, /* PhysXExtensions */ - FFF4fc0897807fbcfc089780, /* PxFoundation */ + FFF4b2ff62c07feab2ff62c0, /* PhysXCommon */ + FFF4b2ff61e07feab2ff61e0, /* PhysXExtensions */ + FFF4b2ff19f07feab2ff19f0, /* PxFoundation */ ); name = "PhysXCooking"; productName = "PhysXCooking"; - productReference = FFFDfc07fd407fbcfc07fd40 /* PhysXCooking */; + productReference = FFFDb2feca707feab2feca70 /* PhysXCooking */; productType = "com.apple.product-type.library.static"; }; - FFFAfa8913407fbcfa891340 /* PhysXCommon */ = { + FFFAb2a152c07feab2a152c0 /* PhysXCommon */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6fa8913407fbcfa891340 /* Build configuration list for PBXNativeTarget "PhysXCommon" */; + buildConfigurationList = FFF6b2a152c07feab2a152c0 /* Build configuration list for PBXNativeTarget "PhysXCommon" */; buildPhases = ( - FFF2fa8913407fbcfa891340, - FFF8fa8913407fbcfa891340, - FFFCfa8913407fbcfa891340, + FFF2b2a152c07feab2a152c0, + FFF8b2a152c07feab2a152c0, + FFFCb2a152c07feab2a152c0, ); buildRules = ( ); dependencies = ( - FFF4faaf34f07fbcfaaf34f0, /* PxFoundation */ + FFF4b2a0ee507feab2a0ee50, /* PxFoundation */ ); name = "PhysXCommon"; productName = "PhysXCommon"; - productReference = FFFDfa8913407fbcfa891340 /* PhysXCommon */; + productReference = FFFDb2a152c07feab2a152c0 /* PhysXCommon */; productType = "com.apple.product-type.library.static"; }; - FFFAfa87f5207fbcfa87f520 /* PxFoundation */ = { + FFFAb2a669507feab2a66950 /* PxFoundation */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6fa87f5207fbcfa87f520 /* Build configuration list for PBXNativeTarget "PxFoundation" */; + buildConfigurationList = FFF6b2a669507feab2a66950 /* Build configuration list for PBXNativeTarget "PxFoundation" */; buildPhases = ( - FFF2fa87f5207fbcfa87f520, - FFF8fa87f5207fbcfa87f520, - FFFCfa87f5207fbcfa87f520, + FFF2b2a669507feab2a66950, + FFF8b2a669507feab2a66950, + FFFCb2a669507feab2a66950, ); buildRules = ( ); @@ -5160,34 +5160,34 @@ ); name = "PxFoundation"; productName = "PxFoundation"; - productReference = FFFDfa87f5207fbcfa87f520 /* PxFoundation */; + productReference = FFFDb2a669507feab2a66950 /* PxFoundation */; productType = "com.apple.product-type.library.static"; }; - FFFAfab095c07fbcfab095c0 /* PxPvdSDK */ = { + FFFAb147f4707feab147f470 /* PxPvdSDK */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6fab095c07fbcfab095c0 /* Build configuration list for PBXNativeTarget "PxPvdSDK" */; + buildConfigurationList = FFF6b147f4707feab147f470 /* Build configuration list for PBXNativeTarget "PxPvdSDK" */; buildPhases = ( - FFF2fab095c07fbcfab095c0, - FFF8fab095c07fbcfab095c0, - FFFCfab095c07fbcfab095c0, + FFF2b147f4707feab147f470, + FFF8b147f4707feab147f470, + FFFCb147f4707feab147f470, ); buildRules = ( ); dependencies = ( - FFF4fa88f5e07fbcfa88f5e0, /* PxFoundation */ + FFF4b147fe107feab147fe10, /* PxFoundation */ ); name = "PxPvdSDK"; productName = "PxPvdSDK"; - productReference = FFFDfab095c07fbcfab095c0 /* PxPvdSDK */; + productReference = FFFDb147f4707feab147f470 /* PxPvdSDK */; productType = "com.apple.product-type.library.static"; }; - FFFAfab277107fbcfab27710 /* LowLevel */ = { + FFFAb2d343407feab2d34340 /* LowLevel */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6fab277107fbcfab27710 /* Build configuration list for PBXNativeTarget "LowLevel" */; + buildConfigurationList = FFF6b2d343407feab2d34340 /* Build configuration list for PBXNativeTarget "LowLevel" */; buildPhases = ( - FFF2fab277107fbcfab27710, - FFF8fab277107fbcfab27710, - FFFCfab277107fbcfab27710, + FFF2b2d343407feab2d34340, + FFF8b2d343407feab2d34340, + FFFCb2d343407feab2d34340, ); buildRules = ( ); @@ -5195,16 +5195,16 @@ ); name = "LowLevel"; productName = "LowLevel"; - productReference = FFFDfab277107fbcfab27710 /* LowLevel */; + productReference = FFFDb2d343407feab2d34340 /* LowLevel */; productType = "com.apple.product-type.library.static"; }; - FFFAfab514407fbcfab51440 /* LowLevelAABB */ = { + FFFAb17424907feab1742490 /* LowLevelAABB */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6fab514407fbcfab51440 /* Build configuration list for PBXNativeTarget "LowLevelAABB" */; + buildConfigurationList = FFF6b17424907feab1742490 /* Build configuration list for PBXNativeTarget "LowLevelAABB" */; buildPhases = ( - FFF2fab514407fbcfab51440, - FFF8fab514407fbcfab51440, - FFFCfab514407fbcfab51440, + FFF2b17424907feab1742490, + FFF8b17424907feab1742490, + FFFCb17424907feab1742490, ); buildRules = ( ); @@ -5212,16 +5212,16 @@ ); name = "LowLevelAABB"; productName = "LowLevelAABB"; - productReference = FFFDfab514407fbcfab51440 /* LowLevelAABB */; + productReference = FFFDb17424907feab1742490 /* LowLevelAABB */; productType = "com.apple.product-type.library.static"; }; - FFFAfaef20807fbcfaef2080 /* LowLevelDynamics */ = { + FFFAb1761b707feab1761b70 /* LowLevelDynamics */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6faef20807fbcfaef2080 /* Build configuration list for PBXNativeTarget "LowLevelDynamics" */; + buildConfigurationList = FFF6b1761b707feab1761b70 /* Build configuration list for PBXNativeTarget "LowLevelDynamics" */; buildPhases = ( - FFF2faef20807fbcfaef2080, - FFF8faef20807fbcfaef2080, - FFFCfaef20807fbcfaef2080, + FFF2b1761b707feab1761b70, + FFF8b1761b707feab1761b70, + FFFCb1761b707feab1761b70, ); buildRules = ( ); @@ -5229,16 +5229,16 @@ ); name = "LowLevelDynamics"; productName = "LowLevelDynamics"; - productReference = FFFDfaef20807fbcfaef2080 /* LowLevelDynamics */; + productReference = FFFDb1761b707feab1761b70 /* LowLevelDynamics */; productType = "com.apple.product-type.library.static"; }; - FFFAfab48c407fbcfab48c40 /* LowLevelCloth */ = { + FFFAb2d607707feab2d60770 /* LowLevelCloth */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6fab48c407fbcfab48c40 /* Build configuration list for PBXNativeTarget "LowLevelCloth" */; + buildConfigurationList = FFF6b2d607707feab2d60770 /* Build configuration list for PBXNativeTarget "LowLevelCloth" */; buildPhases = ( - FFF2fab48c407fbcfab48c40, - FFF8fab48c407fbcfab48c40, - FFFCfab48c407fbcfab48c40, + FFF2b2d607707feab2d60770, + FFF8b2d607707feab2d60770, + FFFCb2d607707feab2d60770, ); buildRules = ( ); @@ -5246,16 +5246,16 @@ ); name = "LowLevelCloth"; productName = "LowLevelCloth"; - productReference = FFFDfab48c407fbcfab48c40 /* LowLevelCloth */; + productReference = FFFDb2d607707feab2d60770 /* LowLevelCloth */; productType = "com.apple.product-type.library.static"; }; - FFFAfc003cb07fbcfc003cb0 /* LowLevelParticles */ = { + FFFAb14554c07feab14554c0 /* LowLevelParticles */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6fc003cb07fbcfc003cb0 /* Build configuration list for PBXNativeTarget "LowLevelParticles" */; + buildConfigurationList = FFF6b14554c07feab14554c0 /* Build configuration list for PBXNativeTarget "LowLevelParticles" */; buildPhases = ( - FFF2fc003cb07fbcfc003cb0, - FFF8fc003cb07fbcfc003cb0, - FFFCfc003cb07fbcfc003cb0, + FFF2b14554c07feab14554c0, + FFF8b14554c07feab14554c0, + FFFCb14554c07feab14554c0, ); buildRules = ( ); @@ -5263,16 +5263,16 @@ ); name = "LowLevelParticles"; productName = "LowLevelParticles"; - productReference = FFFDfc003cb07fbcfc003cb0 /* LowLevelParticles */; + productReference = FFFDb14554c07feab14554c0 /* LowLevelParticles */; productType = "com.apple.product-type.library.static"; }; - FFFAfc2149407fbcfc214940 /* PxTask */ = { + FFFAb2d743307feab2d74330 /* PxTask */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6fc2149407fbcfc214940 /* Build configuration list for PBXNativeTarget "PxTask" */; + buildConfigurationList = FFF6b2d743307feab2d74330 /* Build configuration list for PBXNativeTarget "PxTask" */; buildPhases = ( - FFF2fc2149407fbcfc214940, - FFF8fc2149407fbcfc214940, - FFFCfc2149407fbcfc214940, + FFF2b2d743307feab2d74330, + FFF8b2d743307feab2d74330, + FFFCb2d743307feab2d74330, ); buildRules = ( ); @@ -5280,16 +5280,16 @@ ); name = "PxTask"; productName = "PxTask"; - productReference = FFFDfc2149407fbcfc214940 /* PxTask */; + productReference = FFFDb2d743307feab2d74330 /* PxTask */; productType = "com.apple.product-type.library.static"; }; - FFFAfc0657b07fbcfc0657b0 /* PsFastXml */ = { + FFFAb2fac9c07feab2fac9c0 /* PsFastXml */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6fc0657b07fbcfc0657b0 /* Build configuration list for PBXNativeTarget "PsFastXml" */; + buildConfigurationList = FFF6b2fac9c07feab2fac9c0 /* Build configuration list for PBXNativeTarget "PsFastXml" */; buildPhases = ( - FFF2fc0657b07fbcfc0657b0, - FFF8fc0657b07fbcfc0657b0, - FFFCfc0657b07fbcfc0657b0, + FFF2b2fac9c07feab2fac9c0, + FFF8b2fac9c07feab2fac9c0, + FFFCb2fac9c07feab2fac9c0, ); buildRules = ( ); @@ -5297,213 +5297,213 @@ ); name = "PsFastXml"; productName = "PsFastXml"; - productReference = FFFDfc0657b07fbcfc0657b0 /* PsFastXml */; + productReference = FFFDb2fac9c07feab2fac9c0 /* PsFastXml */; productType = "com.apple.product-type.library.static"; }; /* End PBXNativeTarget section */ /* Begin XCConfigurationList section */ - FFF6fc0690807fbcfc069080 = { + FFF6b2fb02907feab2fb0290 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7fc8530007fbcfc853000, - FFF7fc8536f07fbcfc8536f0, - FFF7fc853de07fbcfc853de0, - FFF7fc8544d07fbcfc8544d0, + FFF7b31d78007feab31d7800, + FFF7b31d7ef07feab31d7ef0, + FFF7b31d85e07feab31d85e0, + FFF7b31d8cd07feab31d8cd0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "release"; }; - FFF6fc0717b07fbcfc0717b0 = { + FFF6b2fc41607feab2fc4160 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7fc854c007fbcfc854c00, - FFF7fc8552f07fbcfc8552f0, - FFF7fc8559e07fbcfc8559e0, - FFF7fc8560d07fbcfc8560d0, + FFF7b31d94007feab31d9400, + FFF7b31d9af07feab31d9af0, + FFF7b31da1e07feab31da1e0, + FFF7b31da8d07feab31da8d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6fc0771907fbcfc077190 = { + FFF6b2fc15c07feab2fc15c0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7fc8568007fbcfc856800, - FFF7fc856ef07fbcfc856ef0, - FFF7fc8575e07fbcfc8575e0, - FFF7fc857cd07fbcfc857cd0, + FFF7b31db0007feab31db000, + FFF7b31db6f07feab31db6f0, + FFF7b31dbde07feab31dbde0, + FFF7b31dc4d07feab31dc4d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6fc0c74907fbcfc0c7490 = { + FFF6b2fd2b007feab2fd2b00 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7fc8584007fbcfc858400, - FFF7fc858af07fbcfc858af0, - FFF7fc8591e07fbcfc8591e0, - FFF7fc8598d07fbcfc8598d0, + FFF7b31dcc007feab31dcc00, + FFF7b31dd2f07feab31dd2f0, + FFF7b31dd9e07feab31dd9e0, + FFF7b31de0d07feab31de0d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6fc0985207fbcfc098520 = { + FFF6b2fe3bd07feab2fe3bd0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7fc85a0007fbcfc85a000, - FFF7fc85a6f07fbcfc85a6f0, - FFF7fc85ade07fbcfc85ade0, - FFF7fc85b4d07fbcfc85b4d0, + FFF7b31de8007feab31de800, + FFF7b31deef07feab31deef0, + FFF7b31df5e07feab31df5e0, + FFF7b31dfcd07feab31dfcd0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6fc08d4e07fbcfc08d4e0 = { + FFF6b2fe82c07feab2fe82c0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7fc85bc007fbcfc85bc00, - FFF7fc85c2f07fbcfc85c2f0, - FFF7fc85c9e07fbcfc85c9e0, - FFF7fc85d0d07fbcfc85d0d0, + FFF7b31e04007feab31e0400, + FFF7b31e0af07feab31e0af0, + FFF7b31e11e07feab31e11e0, + FFF7b31e18d07feab31e18d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6fc07fd407fbcfc07fd40 = { + FFF6b2feca707feab2feca70 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7fc85d8007fbcfc85d800, - FFF7fc85def07fbcfc85def0, - FFF7fc85e5e07fbcfc85e5e0, - FFF7fc85ecd07fbcfc85ecd0, + FFF7b31e20007feab31e2000, + FFF7b31e26f07feab31e26f0, + FFF7b31e2de07feab31e2de0, + FFF7b31e34d07feab31e34d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "release"; }; - FFF6fa8913407fbcfa891340 = { + FFF6b2a152c07feab2a152c0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7fb0110007fbcfb011000, - FFF7fb0116f07fbcfb0116f0, - FFF7fb011de07fbcfb011de0, - FFF7fb0124d07fbcfb0124d0, + FFF7b38110007feab3811000, + FFF7b38116f07feab38116f0, + FFF7b3811de07feab3811de0, + FFF7b38124d07feab38124d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "release"; }; - FFF6fa87f5207fbcfa87f520 = { + FFF6b2a669507feab2a66950 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7fa18d2007fbcfa18d200, - FFF7fa18d8f07fbcfa18d8f0, - FFF7fa18dfe07fbcfa18dfe0, - FFF7fa18e6d07fbcfa18e6d0, + FFF7b3174a007feab3174a00, + FFF7b31750f07feab31750f0, + FFF7b31757e07feab31757e0, + FFF7b3175ed07feab3175ed0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6fab095c07fbcfab095c0 = { + FFF6b147f4707feab147f470 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7fa1b12007fbcfa1b1200, - FFF7fa1b18f07fbcfa1b18f0, - FFF7fa1b1fe07fbcfa1b1fe0, - FFF7fa1b26d07fbcfa1b26d0, + FFF7b18154007feab1815400, + FFF7b1815af07feab1815af0, + FFF7b18161e07feab18161e0, + FFF7b18168d07feab18168d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6fab277107fbcfab27710 = { + FFF6b2d343407feab2d34340 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7fa1bf6007fbcfa1bf600, - FFF7fa1bfcf07fbcfa1bfcf0, - FFF7fa1c03e07fbcfa1c03e0, - FFF7fa1c0ad07fbcfa1c0ad0, + FFF7b381be007feab381be00, + FFF7b381c4f07feab381c4f0, + FFF7b381cbe07feab381cbe0, + FFF7b381d2d07feab381d2d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6fab514407fbcfab51440 = { + FFF6b17424907feab1742490 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7fa1c82007fbcfa1c8200, - FFF7fa1c88f07fbcfa1c88f0, - FFF7fa1c8fe07fbcfa1c8fe0, - FFF7fa1c96d07fbcfa1c96d0, + FFF7b201fa007feab201fa00, + FFF7b20200f07feab20200f0, + FFF7b20207e07feab20207e0, + FFF7b2020ed07feab2020ed0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6faef20807fbcfaef2080 = { + FFF6b1761b707feab1761b70 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7fb823a007fbcfb823a00, - FFF7fb8240f07fbcfb8240f0, - FFF7fb8247e07fbcfb8247e0, - FFF7fb824ed07fbcfb824ed0, + FFF7b20292007feab2029200, + FFF7b20298f07feab20298f0, + FFF7b2029fe07feab2029fe0, + FFF7b202a6d07feab202a6d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6fab48c407fbcfab48c40 = { + FFF6b2d607707feab2d60770 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7fa1d1c007fbcfa1d1c00, - FFF7fa1d22f07fbcfa1d22f0, - FFF7fa1d29e07fbcfa1d29e0, - FFF7fa1d30d07fbcfa1d30d0, + FFF7b38254007feab3825400, + FFF7b3825af07feab3825af0, + FFF7b38261e07feab38261e0, + FFF7b38268d07feab38268d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6fc003cb07fbcfc003cb0 = { + FFF6b14554c07feab14554c0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7fc80a8007fbcfc80a800, - FFF7fc80aef07fbcfc80aef0, - FFF7fc80b5e07fbcfc80b5e0, - FFF7fc80bcd07fbcfc80bcd0, + FFF7b181ba007feab181ba00, + FFF7b181c0f07feab181c0f0, + FFF7b181c7e07feab181c7e0, + FFF7b181ced07feab181ced0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6fc2149407fbcfc214940 = { + FFF6b2d743307feab2d74330 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7fa1daa007fbcfa1daa00, - FFF7fa1db0f07fbcfa1db0f0, - FFF7fa1db7e07fbcfa1db7e0, - FFF7fa1dbed07fbcfa1dbed0, + FFF7b382d6007feab382d600, + FFF7b382dcf07feab382dcf0, + FFF7b382e3e07feab382e3e0, + FFF7b382ead07feab382ead0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6fc0657b07fbcfc0657b0 = { + FFF6b2fac9c07feab2fac9c0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7fc82d6007fbcfc82d600, - FFF7fc82dcf07fbcfc82dcf0, - FFF7fc82e3e07fbcfc82e3e0, - FFF7fc82ead07fbcfc82ead0, + FFF7b31b12007feab31b1200, + FFF7b31b18f07feab31b18f0, + FFF7b31b1fe07feab31b1fe0, + FFF7b31b26d07feab31b26d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6f9c822807fbcf9c82280 = { + FFF6b28088407feab2808840 = { isa = XCConfigurationList; buildConfigurations = ( - FFF3fc8530007fbcfc853000 /* release */, - FFF3fc8536f07fbcfc8536f0 /* debug */, - FFF3fc853de07fbcfc853de0 /* checked */, - FFF3fc8544d07fbcfc8544d0 /* profile */, + FFF3b31d78007feab31d7800 /* release */, + FFF3b31d7ef07feab31d7ef0 /* debug */, + FFF3b31d85e07feab31d85e0 /* checked */, + FFF3b31d8cd07feab31d8cd0 /* profile */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "release"; }; /* End XCConfigurationList section */ /* Begin XCBuildConfiguration section */ - FFF7fc8530007fbcfc853000 /* release */ = { + FFF7b31d78007feab31d7800 /* 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; @@ -5518,7 +5518,7 @@ "-lLowLevel", "-lLowLevelAABB", "-lLowLevelCloth", "-lLowLevelDynamics", "-lLowLevelParticles", "-lPhysX3Common", "-lPxFoundation", "-lPxPvdSDK", "-lPxTask", "-lSceneQuery", "-lSimulationController", ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../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/particles", "../../../Include/cloth", "../../../Include", "../../Common/src", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../LowLevel/API/include", "../../LowLevel/software/include", "../../LowLevel/common/include/pipeline", "../../LowLevelAABB/include", "../../LowLevelDynamics/include", "../../LowLevelDynamics/src", "../../LowLevelParticles/include", "../../PhysX/src", "../../PhysX/src/buffering", "../../PhysX/src/particles", "../../PhysX/src/cloth", "../../SimulationController/include", "../../SimulationController/src", "../../SimulationController/src/particles", "../../PhysXCooking/src", "../../PhysXCooking/src/mesh", "../../PhysXCooking/src/convex", "../../SceneQuery/include", "../../PhysXMetaData/core/include", @@ -5533,7 +5533,7 @@ }; name = "release"; }; - FFF7fc8536f07fbcfc8536f0 /* debug */ = { + FFF7b31d7ef07feab31d7ef0 /* 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; @@ -5548,7 +5548,7 @@ "-lLowLevelDEBUG", "-lLowLevelAABBDEBUG", "-lLowLevelClothDEBUG", "-lLowLevelDynamicsDEBUG", "-lLowLevelParticlesDEBUG", "-lPhysX3CommonDEBUG", "-lPxFoundationDEBUG", "-lPxPvdSDKDEBUG", "-lPxTaskDEBUG", "-lSceneQueryDEBUG", "-lSimulationControllerDEBUG", ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O0", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0", ); HEADER_SEARCH_PATHS = ( "../../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/particles", "../../../Include/cloth", "../../../Include", "../../Common/src", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../LowLevel/API/include", "../../LowLevel/software/include", "../../LowLevel/common/include/pipeline", "../../LowLevelAABB/include", "../../LowLevelDynamics/include", "../../LowLevelDynamics/src", "../../LowLevelParticles/include", "../../PhysX/src", "../../PhysX/src/buffering", "../../PhysX/src/particles", "../../PhysX/src/cloth", "../../SimulationController/include", "../../SimulationController/src", "../../SimulationController/src/particles", "../../PhysXCooking/src", "../../PhysXCooking/src/mesh", "../../PhysXCooking/src/convex", "../../SceneQuery/include", "../../PhysXMetaData/core/include", @@ -5563,7 +5563,7 @@ }; name = "debug"; }; - FFF7fc853de07fbcfc853de0 /* checked */ = { + FFF7b31d85e07feab31d85e0 /* 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; @@ -5578,7 +5578,7 @@ "-lLowLevelCHECKED", "-lLowLevelAABBCHECKED", "-lLowLevelClothCHECKED", "-lLowLevelDynamicsCHECKED", "-lLowLevelParticlesCHECKED", "-lPhysX3CommonCHECKED", "-lPxFoundationCHECKED", "-lPxPvdSDKCHECKED", "-lPxTaskCHECKED", "-lSceneQueryCHECKED", "-lSimulationControllerCHECKED", ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../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/particles", "../../../Include/cloth", "../../../Include", "../../Common/src", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../LowLevel/API/include", "../../LowLevel/software/include", "../../LowLevel/common/include/pipeline", "../../LowLevelAABB/include", "../../LowLevelDynamics/include", "../../LowLevelDynamics/src", "../../LowLevelParticles/include", "../../PhysX/src", "../../PhysX/src/buffering", "../../PhysX/src/particles", "../../PhysX/src/cloth", "../../SimulationController/include", "../../SimulationController/src", "../../SimulationController/src/particles", "../../PhysXCooking/src", "../../PhysXCooking/src/mesh", "../../PhysXCooking/src/convex", "../../SceneQuery/include", "../../PhysXMetaData/core/include", @@ -5593,7 +5593,7 @@ }; name = "checked"; }; - FFF7fc8544d07fbcfc8544d0 /* profile */ = { + FFF7b31d8cd07feab31d8cd0 /* 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; @@ -5608,7 +5608,7 @@ "-lLowLevelPROFILE", "-lLowLevelAABBPROFILE", "-lLowLevelClothPROFILE", "-lLowLevelDynamicsPROFILE", "-lLowLevelParticlesPROFILE", "-lPhysX3CommonPROFILE", "-lPxFoundationPROFILE", "-lPxPvdSDKPROFILE", "-lPxTaskPROFILE", "-lSceneQueryPROFILE", "-lSimulationControllerPROFILE", ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../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/particles", "../../../Include/cloth", "../../../Include", "../../Common/src", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../LowLevel/API/include", "../../LowLevel/software/include", "../../LowLevel/common/include/pipeline", "../../LowLevelAABB/include", "../../LowLevelDynamics/include", "../../LowLevelDynamics/src", "../../LowLevelParticles/include", "../../PhysX/src", "../../PhysX/src/buffering", "../../PhysX/src/particles", "../../PhysX/src/cloth", "../../SimulationController/include", "../../SimulationController/src", "../../SimulationController/src/particles", "../../PhysXCooking/src", "../../PhysXCooking/src/mesh", "../../PhysXCooking/src/convex", "../../SceneQuery/include", "../../PhysXMetaData/core/include", @@ -5623,7 +5623,7 @@ }; name = "profile"; }; - FFF7fc854c007fbcfc854c00 /* debug */ = { + FFF7b31d94007feab31d9400 /* 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; @@ -5638,7 +5638,7 @@ "-lPhysX3CommonDEBUG", "-lPhysX3ExtensionsDEBUG", "-lPxFoundationDEBUG", ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O0", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/characterkinematic", "../../../Include/common", "../../../Include/geometry", "../../../Include/extensions", "../../../Include", "../../GeomUtils/headers", "../../Common/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", @@ -5653,7 +5653,7 @@ }; name = "debug"; }; - FFF7fc8552f07fbcfc8552f0 /* checked */ = { + FFF7b31d9af07feab31d9af0 /* 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; @@ -5668,7 +5668,7 @@ "-lPhysX3CommonCHECKED", "-lPhysX3ExtensionsCHECKED", "-lPxFoundationCHECKED", ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/characterkinematic", "../../../Include/common", "../../../Include/geometry", "../../../Include/extensions", "../../../Include", "../../GeomUtils/headers", "../../Common/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", @@ -5683,7 +5683,7 @@ }; name = "checked"; }; - FFF7fc8559e07fbcfc8559e0 /* profile */ = { + FFF7b31da1e07feab31da1e0 /* 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; @@ -5698,7 +5698,7 @@ "-lPhysX3CommonPROFILE", "-lPhysX3ExtensionsPROFILE", "-lPxFoundationPROFILE", ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/characterkinematic", "../../../Include/common", "../../../Include/geometry", "../../../Include/extensions", "../../../Include", "../../GeomUtils/headers", "../../Common/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", @@ -5713,7 +5713,7 @@ }; name = "profile"; }; - FFF7fc8560d07fbcfc8560d0 /* release */ = { + FFF7b31da8d07feab31da8d0 /* 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; @@ -5728,7 +5728,7 @@ "-lPhysX3Common", "-lPhysX3Extensions", "-lPxFoundation", ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/characterkinematic", "../../../Include/common", "../../../Include/geometry", "../../../Include/extensions", "../../../Include", "../../GeomUtils/headers", "../../Common/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", @@ -5743,7 +5743,7 @@ }; name = "release"; }; - FFF7fc8568007fbcfc856800 /* debug */ = { + FFF7b31db0007feab31db000 /* 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; @@ -5758,7 +5758,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O0", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/vehicle", "../../../Include/common", "../../../Include/geometry", "../../../Include/extensions", "../../../Include/cloth", "../../../Include", "../../../Include/pvd", "../../../Include/physxprofilesdk", "../../Common/src", "../../PhysXVehicle/src", "../../PhysXMetaData/extensions/include", "../../PhysXExtensions/src/serialization/Xml", "../../PhysXMetaData/core/include", "../../PhysXVehicle/src/PhysXMetaData/include", "../../PvdSDK/src", @@ -5773,7 +5773,7 @@ }; name = "debug"; }; - FFF7fc856ef07fbcfc856ef0 /* checked */ = { + FFF7b31db6f07feab31db6f0 /* 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; @@ -5788,7 +5788,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/vehicle", "../../../Include/common", "../../../Include/geometry", "../../../Include/extensions", "../../../Include/cloth", "../../../Include", "../../../Include/pvd", "../../../Include/physxprofilesdk", "../../Common/src", "../../PhysXVehicle/src", "../../PhysXMetaData/extensions/include", "../../PhysXExtensions/src/serialization/Xml", "../../PhysXMetaData/core/include", "../../PhysXVehicle/src/PhysXMetaData/include", "../../PvdSDK/src", @@ -5803,7 +5803,7 @@ }; name = "checked"; }; - FFF7fc8575e07fbcfc8575e0 /* profile */ = { + FFF7b31dbde07feab31dbde0 /* 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; @@ -5818,7 +5818,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/vehicle", "../../../Include/common", "../../../Include/geometry", "../../../Include/extensions", "../../../Include/cloth", "../../../Include", "../../../Include/pvd", "../../../Include/physxprofilesdk", "../../Common/src", "../../PhysXVehicle/src", "../../PhysXMetaData/extensions/include", "../../PhysXExtensions/src/serialization/Xml", "../../PhysXMetaData/core/include", "../../PhysXVehicle/src/PhysXMetaData/include", "../../PvdSDK/src", @@ -5833,7 +5833,7 @@ }; name = "profile"; }; - FFF7fc857cd07fbcfc857cd0 /* release */ = { + FFF7b31dc4d07feab31dc4d0 /* 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; @@ -5848,7 +5848,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/vehicle", "../../../Include/common", "../../../Include/geometry", "../../../Include/extensions", "../../../Include/cloth", "../../../Include", "../../../Include/pvd", "../../../Include/physxprofilesdk", "../../Common/src", "../../PhysXVehicle/src", "../../PhysXMetaData/extensions/include", "../../PhysXExtensions/src/serialization/Xml", "../../PhysXMetaData/core/include", "../../PhysXVehicle/src/PhysXMetaData/include", "../../PvdSDK/src", @@ -5863,7 +5863,7 @@ }; name = "release"; }; - FFF7fc8584007fbcfc858400 /* debug */ = { + FFF7b31dcc007feab31dcc00 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -5871,14 +5871,14 @@ ALWAYS_SEARCH_USER_PATHS = NO; USE_HEADERMAP = NO; GCC_PREPROCESSOR_DEFINITIONS = ( - "PX_BUILD_NUMBER=21749494", "PX_PHYSX_STATIC_LIB", "_DEBUG", "PX_DEBUG=1", "PX_CHECKED=1", "PX_SUPPORT_PVD=1", + "PX_BUILD_NUMBER=22017532", "PX_PHYSX_STATIC_LIB", "_DEBUG", "PX_DEBUG=1", "PX_CHECKED=1", "PX_SUPPORT_PVD=1", ); GCC_ENABLE_EXCEPTIONS = NO; OTHER_LDFLAGS = ( "-lPsFastXmlDEBUG", ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O0", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0", ); HEADER_SEARCH_PATHS = ( "../../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", @@ -5893,7 +5893,7 @@ }; name = "debug"; }; - FFF7fc858af07fbcfc858af0 /* checked */ = { + FFF7b31dd2f07feab31dd2f0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -5901,14 +5901,14 @@ ALWAYS_SEARCH_USER_PATHS = NO; USE_HEADERMAP = NO; GCC_PREPROCESSOR_DEFINITIONS = ( - "PX_BUILD_NUMBER=21749494", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_CHECKED=1", "PX_SUPPORT_PVD=1", + "PX_BUILD_NUMBER=22017532", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_CHECKED=1", "PX_SUPPORT_PVD=1", ); GCC_ENABLE_EXCEPTIONS = NO; OTHER_LDFLAGS = ( "-lPsFastXmlCHECKED", ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../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", @@ -5923,7 +5923,7 @@ }; name = "checked"; }; - FFF7fc8591e07fbcfc8591e0 /* profile */ = { + FFF7b31dd9e07feab31dd9e0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -5931,14 +5931,14 @@ ALWAYS_SEARCH_USER_PATHS = NO; USE_HEADERMAP = NO; GCC_PREPROCESSOR_DEFINITIONS = ( - "PX_BUILD_NUMBER=21749494", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_PROFILE=1", "PX_SUPPORT_PVD=1", + "PX_BUILD_NUMBER=22017532", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_PROFILE=1", "PX_SUPPORT_PVD=1", ); GCC_ENABLE_EXCEPTIONS = NO; OTHER_LDFLAGS = ( "-lPsFastXmlPROFILE", ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../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", @@ -5953,7 +5953,7 @@ }; name = "profile"; }; - FFF7fc8598d07fbcfc8598d0 /* release */ = { + FFF7b31de0d07feab31de0d0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -5961,14 +5961,14 @@ ALWAYS_SEARCH_USER_PATHS = NO; USE_HEADERMAP = NO; GCC_PREPROCESSOR_DEFINITIONS = ( - "PX_BUILD_NUMBER=21749494", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_SUPPORT_PVD=0", + "PX_BUILD_NUMBER=22017532", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_SUPPORT_PVD=0", ); GCC_ENABLE_EXCEPTIONS = NO; OTHER_LDFLAGS = ( "-lPsFastXml", ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../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", @@ -5983,7 +5983,7 @@ }; name = "release"; }; - FFF7fc85a0007fbcfc85a000 /* debug */ = { + FFF7b31de8007feab31de800 /* 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; @@ -5998,7 +5998,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O0", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0", ); HEADER_SEARCH_PATHS = ( "../../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", "../../Common/src", "../../Common/src/unix", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../SceneQuery/include", "../../SimulationController/include", "../../LowLevel/API/include", "../../PhysX/src", "../../PhysX/src/buffering", @@ -6013,7 +6013,7 @@ }; name = "debug"; }; - FFF7fc85a6f07fbcfc85a6f0 /* checked */ = { + FFF7b31deef07feab31deef0 /* 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; @@ -6028,7 +6028,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../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", "../../Common/src", "../../Common/src/unix", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../SceneQuery/include", "../../SimulationController/include", "../../LowLevel/API/include", "../../PhysX/src", "../../PhysX/src/buffering", @@ -6043,7 +6043,7 @@ }; name = "checked"; }; - FFF7fc85ade07fbcfc85ade0 /* profile */ = { + FFF7b31df5e07feab31df5e0 /* 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; @@ -6058,7 +6058,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../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", "../../Common/src", "../../Common/src/unix", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../SceneQuery/include", "../../SimulationController/include", "../../LowLevel/API/include", "../../PhysX/src", "../../PhysX/src/buffering", @@ -6073,7 +6073,7 @@ }; name = "profile"; }; - FFF7fc85b4d07fbcfc85b4d0 /* release */ = { + FFF7b31dfcd07feab31dfcd0 /* 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; @@ -6088,7 +6088,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../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", "../../Common/src", "../../Common/src/unix", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../SceneQuery/include", "../../SimulationController/include", "../../LowLevel/API/include", "../../PhysX/src", "../../PhysX/src/buffering", @@ -6103,7 +6103,7 @@ }; name = "release"; }; - FFF7fc85bc007fbcfc85bc00 /* debug */ = { + FFF7b31e04007feab31e0400 /* 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; @@ -6118,7 +6118,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O0", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0", ); HEADER_SEARCH_PATHS = ( "../../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/particles", "../../../Include/cloth", "../../../Include", "../../Common/src", "../../Common/src/unix", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../SimulationController/include", "../../SimulationController/src", "../../SimulationController/src/particles", "../../SimulationController/src/cloth", "../../LowLevel/unix/include", "../../LowLevel/API/include", "../../LowLevel/software/include", "../../LowLevel/common/include/math", "../../LowLevel/common/include/utils", "../../LowLevel/common/include/collision", "../../LowLevel/common/include/pipeline", "../../LowLevelCloth/include", "../../LowLevelAABB/include", "../../LowLevelDynamics/include", "../../LowLevelParticles/include", @@ -6133,7 +6133,7 @@ }; name = "debug"; }; - FFF7fc85c2f07fbcfc85c2f0 /* checked */ = { + FFF7b31e0af07feab31e0af0 /* 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; @@ -6148,7 +6148,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../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/particles", "../../../Include/cloth", "../../../Include", "../../Common/src", "../../Common/src/unix", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../SimulationController/include", "../../SimulationController/src", "../../SimulationController/src/particles", "../../SimulationController/src/cloth", "../../LowLevel/unix/include", "../../LowLevel/API/include", "../../LowLevel/software/include", "../../LowLevel/common/include/math", "../../LowLevel/common/include/utils", "../../LowLevel/common/include/collision", "../../LowLevel/common/include/pipeline", "../../LowLevelCloth/include", "../../LowLevelAABB/include", "../../LowLevelDynamics/include", "../../LowLevelParticles/include", @@ -6163,7 +6163,7 @@ }; name = "checked"; }; - FFF7fc85c9e07fbcfc85c9e0 /* profile */ = { + FFF7b31e11e07feab31e11e0 /* 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; @@ -6178,7 +6178,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../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/particles", "../../../Include/cloth", "../../../Include", "../../Common/src", "../../Common/src/unix", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../SimulationController/include", "../../SimulationController/src", "../../SimulationController/src/particles", "../../SimulationController/src/cloth", "../../LowLevel/unix/include", "../../LowLevel/API/include", "../../LowLevel/software/include", "../../LowLevel/common/include/math", "../../LowLevel/common/include/utils", "../../LowLevel/common/include/collision", "../../LowLevel/common/include/pipeline", "../../LowLevelCloth/include", "../../LowLevelAABB/include", "../../LowLevelDynamics/include", "../../LowLevelParticles/include", @@ -6193,7 +6193,7 @@ }; name = "profile"; }; - FFF7fc85d0d07fbcfc85d0d0 /* release */ = { + FFF7b31e18d07feab31e18d0 /* 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; @@ -6208,7 +6208,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../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/particles", "../../../Include/cloth", "../../../Include", "../../Common/src", "../../Common/src/unix", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../SimulationController/include", "../../SimulationController/src", "../../SimulationController/src/particles", "../../SimulationController/src/cloth", "../../LowLevel/unix/include", "../../LowLevel/API/include", "../../LowLevel/software/include", "../../LowLevel/common/include/math", "../../LowLevel/common/include/utils", "../../LowLevel/common/include/collision", "../../LowLevel/common/include/pipeline", "../../LowLevelCloth/include", "../../LowLevelAABB/include", "../../LowLevelDynamics/include", "../../LowLevelParticles/include", @@ -6223,7 +6223,7 @@ }; name = "release"; }; - FFF7fc85d8007fbcfc85d800 /* release */ = { + FFF7b31e20007feab31e2000 /* 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; @@ -6238,7 +6238,7 @@ "-lPhysX3Common", "-lPhysX3Extensions", "-lPxFoundation", ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../../Include/cloth", "../../../Include/cooking", "../../../Include", "../../Common/src", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../PhysXCooking/src", "../../PhysXCooking/src/mesh", "../../PhysXCooking/src/convex", "../../PhysXExtensions/src", "../../PhysXGpu/include", @@ -6253,7 +6253,7 @@ }; name = "release"; }; - FFF7fc85def07fbcfc85def0 /* debug */ = { + FFF7b31e26f07feab31e26f0 /* 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; @@ -6268,7 +6268,7 @@ "-lPhysX3CommonDEBUG", "-lPhysX3ExtensionsDEBUG", "-lPxFoundationDEBUG", ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O0", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../../Include/cloth", "../../../Include/cooking", "../../../Include", "../../Common/src", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../PhysXCooking/src", "../../PhysXCooking/src/mesh", "../../PhysXCooking/src/convex", "../../PhysXExtensions/src", "../../PhysXGpu/include", @@ -6283,7 +6283,7 @@ }; name = "debug"; }; - FFF7fc85e5e07fbcfc85e5e0 /* checked */ = { + FFF7b31e2de07feab31e2de0 /* 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; @@ -6298,7 +6298,7 @@ "-lPhysX3CommonCHECKED", "-lPhysX3ExtensionsCHECKED", "-lPxFoundationCHECKED", ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../../Include/cloth", "../../../Include/cooking", "../../../Include", "../../Common/src", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../PhysXCooking/src", "../../PhysXCooking/src/mesh", "../../PhysXCooking/src/convex", "../../PhysXExtensions/src", "../../PhysXGpu/include", @@ -6313,7 +6313,7 @@ }; name = "checked"; }; - FFF7fc85ecd07fbcfc85ecd0 /* profile */ = { + FFF7b31e34d07feab31e34d0 /* 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; @@ -6328,7 +6328,7 @@ "-lPhysX3CommonPROFILE", "-lPhysX3ExtensionsPROFILE", "-lPxFoundationPROFILE", ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../../Include/cloth", "../../../Include/cooking", "../../../Include", "../../Common/src", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../PhysXCooking/src", "../../PhysXCooking/src/mesh", "../../PhysXCooking/src/convex", "../../PhysXExtensions/src", "../../PhysXGpu/include", @@ -6343,7 +6343,7 @@ }; name = "profile"; }; - FFF7fb0110007fbcfb011000 /* release */ = { + FFF7b38110007feab3811000 /* 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; @@ -6358,7 +6358,7 @@ "-lPxFoundation", ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include", "../../Common/src", "../../Common/src/unix", "../../PhysXProfile/include", "../../PhysXProfile/src", "../../PhysXGpu/include", "../../../Include/geometry", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../../Include/GeomUtils", @@ -6373,7 +6373,7 @@ }; name = "release"; }; - FFF7fb0116f07fbcfb0116f0 /* debug */ = { + FFF7b38116f07feab38116f0 /* 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; @@ -6388,7 +6388,7 @@ "-lPxFoundationDEBUG", ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O0", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include", "../../Common/src", "../../Common/src/unix", "../../PhysXProfile/include", "../../PhysXProfile/src", "../../PhysXGpu/include", "../../../Include/geometry", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../../Include/GeomUtils", @@ -6403,7 +6403,7 @@ }; name = "debug"; }; - FFF7fb011de07fbcfb011de0 /* checked */ = { + FFF7b3811de07feab3811de0 /* 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; @@ -6418,7 +6418,7 @@ "-lPxFoundationCHECKED", ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include", "../../Common/src", "../../Common/src/unix", "../../PhysXProfile/include", "../../PhysXProfile/src", "../../PhysXGpu/include", "../../../Include/geometry", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../../Include/GeomUtils", @@ -6433,7 +6433,7 @@ }; name = "checked"; }; - FFF7fb0124d07fbcfb0124d0 /* profile */ = { + FFF7b38124d07feab38124d0 /* 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; @@ -6448,7 +6448,7 @@ "-lPxFoundationPROFILE", ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include", "../../Common/src", "../../Common/src/unix", "../../PhysXProfile/include", "../../PhysXProfile/src", "../../PhysXGpu/include", "../../../Include/geometry", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../../Include/GeomUtils", @@ -6463,7 +6463,7 @@ }; name = "profile"; }; - FFF7fa18d2007fbcfa18d200 /* debug */ = { + FFF7b3174a007feab3174a00 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6493,7 +6493,7 @@ }; name = "debug"; }; - FFF7fa18d8f07fbcfa18d8f0 /* release */ = { + FFF7b31750f07feab31750f0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6523,7 +6523,7 @@ }; name = "release"; }; - FFF7fa18dfe07fbcfa18dfe0 /* checked */ = { + FFF7b31757e07feab31757e0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6553,7 +6553,7 @@ }; name = "checked"; }; - FFF7fa18e6d07fbcfa18e6d0 /* profile */ = { + FFF7b3175ed07feab3175ed0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6583,7 +6583,7 @@ }; name = "profile"; }; - FFF7fa1b12007fbcfa1b1200 /* debug */ = { + FFF7b18154007feab1815400 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6613,7 +6613,7 @@ }; name = "debug"; }; - FFF7fa1b18f07fbcfa1b18f0 /* release */ = { + FFF7b1815af07feab1815af0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6643,7 +6643,7 @@ }; name = "release"; }; - FFF7fa1b1fe07fbcfa1b1fe0 /* checked */ = { + FFF7b18161e07feab18161e0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6673,7 +6673,7 @@ }; name = "checked"; }; - FFF7fa1b26d07fbcfa1b26d0 /* profile */ = { + FFF7b18168d07feab18168d0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6703,7 +6703,7 @@ }; name = "profile"; }; - FFF7fa1bf6007fbcfa1bf600 /* debug */ = { + FFF7b381be007feab381be00 /* 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; @@ -6718,7 +6718,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O0", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include", "../../../Include/GeomUtils", "../../Common/src", "../../Common/src/unix", "../../PhysXProfile/src", "../../PhysXProfile/include", "../../GeomUtils/headers", "../../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", "../../GeomUtils/src/ccd", "../../GeomUtils/src", "../../LowLevel/API/include", "../../LowLevel/common/include", "../../LowLevel/common/include/collision", "../../LowLevel/common/include/pipeline", "../../LowLevel/common/include/pipeline/unix", "../../LowLevel/common/include/utils", "../../LowLevel/software/include", "../../LowLevel/software/include/unix", "../../LowLevelDynamics/include", "../../LowLevelDynamics/include/unix", @@ -6733,7 +6733,7 @@ }; name = "debug"; }; - FFF7fa1bfcf07fbcfa1bfcf0 /* checked */ = { + FFF7b381c4f07feab381c4f0 /* 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; @@ -6748,7 +6748,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include", "../../../Include/GeomUtils", "../../Common/src", "../../Common/src/unix", "../../PhysXProfile/src", "../../PhysXProfile/include", "../../GeomUtils/headers", "../../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", "../../GeomUtils/src/ccd", "../../GeomUtils/src", "../../LowLevel/API/include", "../../LowLevel/common/include", "../../LowLevel/common/include/collision", "../../LowLevel/common/include/pipeline", "../../LowLevel/common/include/pipeline/unix", "../../LowLevel/common/include/utils", "../../LowLevel/software/include", "../../LowLevel/software/include/unix", "../../LowLevelDynamics/include", "../../LowLevelDynamics/include/unix", @@ -6763,7 +6763,7 @@ }; name = "checked"; }; - FFF7fa1c03e07fbcfa1c03e0 /* profile */ = { + FFF7b381cbe07feab381cbe0 /* 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; @@ -6778,7 +6778,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include", "../../../Include/GeomUtils", "../../Common/src", "../../Common/src/unix", "../../PhysXProfile/src", "../../PhysXProfile/include", "../../GeomUtils/headers", "../../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", "../../GeomUtils/src/ccd", "../../GeomUtils/src", "../../LowLevel/API/include", "../../LowLevel/common/include", "../../LowLevel/common/include/collision", "../../LowLevel/common/include/pipeline", "../../LowLevel/common/include/pipeline/unix", "../../LowLevel/common/include/utils", "../../LowLevel/software/include", "../../LowLevel/software/include/unix", "../../LowLevelDynamics/include", "../../LowLevelDynamics/include/unix", @@ -6793,7 +6793,7 @@ }; name = "profile"; }; - FFF7fa1c0ad07fbcfa1c0ad0 /* release */ = { + FFF7b381d2d07feab381d2d0 /* 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; @@ -6808,7 +6808,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include", "../../../Include/GeomUtils", "../../Common/src", "../../Common/src/unix", "../../PhysXProfile/src", "../../PhysXProfile/include", "../../GeomUtils/headers", "../../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", "../../GeomUtils/src/ccd", "../../GeomUtils/src", "../../LowLevel/API/include", "../../LowLevel/common/include", "../../LowLevel/common/include/collision", "../../LowLevel/common/include/pipeline", "../../LowLevel/common/include/pipeline/unix", "../../LowLevel/common/include/utils", "../../LowLevel/software/include", "../../LowLevel/software/include/unix", "../../LowLevelDynamics/include", "../../LowLevelDynamics/include/unix", @@ -6823,7 +6823,7 @@ }; name = "release"; }; - FFF7fa1c82007fbcfa1c8200 /* debug */ = { + FFF7b201fa007feab201fa00 /* 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; @@ -6838,7 +6838,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O0", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../Common/src/unix", "../../GeomUtils/headers", "../../GeomUtils/src", "../../Common/src", "../../LowLevel/API/include", "../../LowLevel/common/include/utils", "../../LowLevel/common/include/pipeline", "../../LowLevelAABB/include", "../../LowLevelAABB/src", "../../GpuBroadPhase/include", "../../GpuBroadPhase/src", "../../LowLevelAABB/unix/include", @@ -6853,7 +6853,7 @@ }; name = "debug"; }; - FFF7fa1c88f07fbcfa1c88f0 /* checked */ = { + FFF7b20200f07feab20200f0 /* 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; @@ -6868,7 +6868,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../Common/src/unix", "../../GeomUtils/headers", "../../GeomUtils/src", "../../Common/src", "../../LowLevel/API/include", "../../LowLevel/common/include/utils", "../../LowLevel/common/include/pipeline", "../../LowLevelAABB/include", "../../LowLevelAABB/src", "../../GpuBroadPhase/include", "../../GpuBroadPhase/src", "../../LowLevelAABB/unix/include", @@ -6883,7 +6883,7 @@ }; name = "checked"; }; - FFF7fa1c8fe07fbcfa1c8fe0 /* profile */ = { + FFF7b20207e07feab20207e0 /* 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; @@ -6898,7 +6898,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../Common/src/unix", "../../GeomUtils/headers", "../../GeomUtils/src", "../../Common/src", "../../LowLevel/API/include", "../../LowLevel/common/include/utils", "../../LowLevel/common/include/pipeline", "../../LowLevelAABB/include", "../../LowLevelAABB/src", "../../GpuBroadPhase/include", "../../GpuBroadPhase/src", "../../LowLevelAABB/unix/include", @@ -6913,7 +6913,7 @@ }; name = "profile"; }; - FFF7fa1c96d07fbcfa1c96d0 /* release */ = { + FFF7b2020ed07feab2020ed0 /* 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; @@ -6928,7 +6928,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../Common/src/unix", "../../GeomUtils/headers", "../../GeomUtils/src", "../../Common/src", "../../LowLevel/API/include", "../../LowLevel/common/include/utils", "../../LowLevel/common/include/pipeline", "../../LowLevelAABB/include", "../../LowLevelAABB/src", "../../GpuBroadPhase/include", "../../GpuBroadPhase/src", "../../LowLevelAABB/unix/include", @@ -6943,7 +6943,7 @@ }; name = "release"; }; - FFF7fb823a007fbcfb823a00 /* debug */ = { + FFF7b20292007feab2029200 /* 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; @@ -6958,7 +6958,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O0", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include", "../../../Include/GeomUtils", "../../Common/src", "../../Common/src/unix", "../../PhysXProfile/src", "../../PhysXProfile/include", "../../GeomUtils/src/contact", "../../LowLevel/API/include", "../../LowLevel/common/include", "../../LowLevel/common/include/pipeline", "../../LowLevel/common/include/pipeline/unix", "../../LowLevel/common/include/math", "../../LowLevel/common/include/utils", "../../LowLevel/software/include", "../../LowLevel/software/include/unix", "../../LowLevelDynamics/include", "../../LowLevelDynamics/src", "../../LowLevelDynamics/include/unix", @@ -6973,7 +6973,7 @@ }; name = "debug"; }; - FFF7fb8240f07fbcfb8240f0 /* checked */ = { + FFF7b20298f07feab20298f0 /* 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; @@ -6988,7 +6988,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include", "../../../Include/GeomUtils", "../../Common/src", "../../Common/src/unix", "../../PhysXProfile/src", "../../PhysXProfile/include", "../../GeomUtils/src/contact", "../../LowLevel/API/include", "../../LowLevel/common/include", "../../LowLevel/common/include/pipeline", "../../LowLevel/common/include/pipeline/unix", "../../LowLevel/common/include/math", "../../LowLevel/common/include/utils", "../../LowLevel/software/include", "../../LowLevel/software/include/unix", "../../LowLevelDynamics/include", "../../LowLevelDynamics/src", "../../LowLevelDynamics/include/unix", @@ -7003,7 +7003,7 @@ }; name = "checked"; }; - FFF7fb8247e07fbcfb8247e0 /* profile */ = { + FFF7b2029fe07feab2029fe0 /* 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; @@ -7018,7 +7018,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include", "../../../Include/GeomUtils", "../../Common/src", "../../Common/src/unix", "../../PhysXProfile/src", "../../PhysXProfile/include", "../../GeomUtils/src/contact", "../../LowLevel/API/include", "../../LowLevel/common/include", "../../LowLevel/common/include/pipeline", "../../LowLevel/common/include/pipeline/unix", "../../LowLevel/common/include/math", "../../LowLevel/common/include/utils", "../../LowLevel/software/include", "../../LowLevel/software/include/unix", "../../LowLevelDynamics/include", "../../LowLevelDynamics/src", "../../LowLevelDynamics/include/unix", @@ -7033,7 +7033,7 @@ }; name = "profile"; }; - FFF7fb824ed07fbcfb824ed0 /* release */ = { + FFF7b202a6d07feab202a6d0 /* 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; @@ -7048,7 +7048,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include", "../../../Include/GeomUtils", "../../Common/src", "../../Common/src/unix", "../../PhysXProfile/src", "../../PhysXProfile/include", "../../GeomUtils/src/contact", "../../LowLevel/API/include", "../../LowLevel/common/include", "../../LowLevel/common/include/pipeline", "../../LowLevel/common/include/pipeline/unix", "../../LowLevel/common/include/math", "../../LowLevel/common/include/utils", "../../LowLevel/software/include", "../../LowLevel/software/include/unix", "../../LowLevelDynamics/include", "../../LowLevelDynamics/src", "../../LowLevelDynamics/include/unix", @@ -7063,7 +7063,7 @@ }; name = "release"; }; - FFF7fa1d1c007fbcfa1d1c00 /* debug */ = { + FFF7b38254007feab3825400 /* 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; @@ -7078,7 +7078,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O0", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include", "../../../Include/common", "../../Common/src", "../../LowLevelCloth/include", "../../LowLevelCloth/src", "../../../../PxShared/src/NvSimd/include", @@ -7093,7 +7093,7 @@ }; name = "debug"; }; - FFF7fa1d22f07fbcfa1d22f0 /* checked */ = { + FFF7b3825af07feab3825af0 /* 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; @@ -7108,7 +7108,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include", "../../../Include/common", "../../Common/src", "../../LowLevelCloth/include", "../../LowLevelCloth/src", "../../../../PxShared/src/NvSimd/include", @@ -7123,7 +7123,7 @@ }; name = "checked"; }; - FFF7fa1d29e07fbcfa1d29e0 /* profile */ = { + FFF7b38261e07feab38261e0 /* 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; @@ -7138,7 +7138,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include", "../../../Include/common", "../../Common/src", "../../LowLevelCloth/include", "../../LowLevelCloth/src", "../../../../PxShared/src/NvSimd/include", @@ -7153,7 +7153,7 @@ }; name = "profile"; }; - FFF7fa1d30d07fbcfa1d30d0 /* release */ = { + FFF7b38268d07feab38268d0 /* 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; @@ -7168,7 +7168,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include", "../../../Include/common", "../../Common/src", "../../LowLevelCloth/include", "../../LowLevelCloth/src", "../../../../PxShared/src/NvSimd/include", @@ -7183,7 +7183,7 @@ }; name = "release"; }; - FFF7fc80a8007fbcfc80a800 /* debug */ = { + FFF7b181ba007feab181ba00 /* 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; @@ -7198,7 +7198,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O0", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../Common/src", "../../LowLevelParticles/include", "../../LowLevelParticles/src", "../../LowLevel/API/include", "../../LowLevel/common/include/utils", "../../GeomUtils/src", "../../GeomUtils/src/convex", "../../GeomUtils/src/hf", "../../GeomUtils/src/mesh", "../../GeomUtils/headers", @@ -7213,7 +7213,7 @@ }; name = "debug"; }; - FFF7fc80aef07fbcfc80aef0 /* checked */ = { + FFF7b181c0f07feab181c0f0 /* 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; @@ -7228,7 +7228,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../Common/src", "../../LowLevelParticles/include", "../../LowLevelParticles/src", "../../LowLevel/API/include", "../../LowLevel/common/include/utils", "../../GeomUtils/src", "../../GeomUtils/src/convex", "../../GeomUtils/src/hf", "../../GeomUtils/src/mesh", "../../GeomUtils/headers", @@ -7243,7 +7243,7 @@ }; name = "checked"; }; - FFF7fc80b5e07fbcfc80b5e0 /* profile */ = { + FFF7b181c7e07feab181c7e0 /* 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; @@ -7258,7 +7258,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../Common/src", "../../LowLevelParticles/include", "../../LowLevelParticles/src", "../../LowLevel/API/include", "../../LowLevel/common/include/utils", "../../GeomUtils/src", "../../GeomUtils/src/convex", "../../GeomUtils/src/hf", "../../GeomUtils/src/mesh", "../../GeomUtils/headers", @@ -7273,7 +7273,7 @@ }; name = "profile"; }; - FFF7fc80bcd07fbcfc80bcd0 /* release */ = { + FFF7b181ced07feab181ced0 /* 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; @@ -7288,7 +7288,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../Common/src", "../../LowLevelParticles/include", "../../LowLevelParticles/src", "../../LowLevel/API/include", "../../LowLevel/common/include/utils", "../../GeomUtils/src", "../../GeomUtils/src/convex", "../../GeomUtils/src/hf", "../../GeomUtils/src/mesh", "../../GeomUtils/headers", @@ -7303,7 +7303,7 @@ }; name = "release"; }; - FFF7fa1daa007fbcfa1daa00 /* debug */ = { + FFF7b382d6007feab382d600 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -7333,7 +7333,7 @@ }; name = "debug"; }; - FFF7fa1db0f07fbcfa1db0f0 /* release */ = { + FFF7b382dcf07feab382dcf0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -7363,7 +7363,7 @@ }; name = "release"; }; - FFF7fa1db7e07fbcfa1db7e0 /* checked */ = { + FFF7b382e3e07feab382e3e0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -7393,7 +7393,7 @@ }; name = "checked"; }; - FFF7fa1dbed07fbcfa1dbed0 /* profile */ = { + FFF7b382ead07feab382ead0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -7423,7 +7423,7 @@ }; name = "profile"; }; - FFF7fc82d6007fbcfc82d600 /* debug */ = { + FFF7b31b12007feab31b1200 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -7453,7 +7453,7 @@ }; name = "debug"; }; - FFF7fc82dcf07fbcfc82dcf0 /* release */ = { + FFF7b31b18f07feab31b18f0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -7483,7 +7483,7 @@ }; name = "release"; }; - FFF7fc82e3e07fbcfc82e3e0 /* checked */ = { + FFF7b31b1fe07feab31b1fe0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -7513,7 +7513,7 @@ }; name = "checked"; }; - FFF7fc82ead07fbcfc82ead0 /* profile */ = { + FFF7b31b26d07feab31b26d0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -7543,25 +7543,25 @@ }; name = "profile"; }; - FFF3fc8530007fbcfc853000 /* release */ = { + FFF3b31d78007feab31d7800 /* release */ = { isa = XCBuildConfiguration; buildSettings = { }; name = "release"; }; - FFF3fc8536f07fbcfc8536f0 /* debug */ = { + FFF3b31d7ef07feab31d7ef0 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { }; name = "debug"; }; - FFF3fc853de07fbcfc853de0 /* checked */ = { + FFF3b31d85e07feab31d85e0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { }; name = "checked"; }; - FFF3fc8544d07fbcfc8544d0 /* profile */ = { + FFF3b31d8cd07feab31d8cd0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { }; @@ -7570,34 +7570,34 @@ /* End XCBuildConfiguration section */ /* Begin PBXProject section */ - FFF9f9c822807fbcf9c82280 /* Project object */ = { + FFF9b28088407feab2808840 /* Project object */ = { isa = PBXProject; - buildConfigurationList = FFF6f9c822807fbcf9c82280 /* Build configuration list for PBXProject PhysX */; + buildConfigurationList = FFF6b28088407feab2808840 /* Build configuration list for PBXProject PhysX */; compatibilityVersion = "Xcode 3.2"; hasScannedForEncodings = 1; - mainGroup = FFFBf9c822e87fbcf9c822e8 /* PhysX */; + mainGroup = FFFBb28088a87feab28088a8 /* PhysX */; targets = ( - FFFAfc0690807fbcfc069080, - FFFAfc0717b07fbcfc0717b0, - FFFAfc0771907fbcfc077190, - FFFAfc0c74907fbcfc0c7490, - FFFAfc0985207fbcfc098520, - FFFAfc08d4e07fbcfc08d4e0, - FFFAfc07fd407fbcfc07fd40, - FFFAfa8913407fbcfa891340, - FFFAfa87f5207fbcfa87f520, - FFFAfab095c07fbcfab095c0, - FFFAfab277107fbcfab27710, - FFFAfab514407fbcfab51440, - FFFAfaef20807fbcfaef2080, - FFFAfab48c407fbcfab48c40, - FFFAfc003cb07fbcfc003cb0, - FFFAfc2149407fbcfc214940, - FFFAfc0657b07fbcfc0657b0, + FFFAb2fb02907feab2fb0290, + FFFAb2fc41607feab2fc4160, + FFFAb2fc15c07feab2fc15c0, + FFFAb2fd2b007feab2fd2b00, + FFFAb2fe3bd07feab2fe3bd0, + FFFAb2fe82c07feab2fe82c0, + FFFAb2feca707feab2feca70, + FFFAb2a152c07feab2a152c0, + FFFAb2a669507feab2a66950, + FFFAb147f4707feab147f470, + FFFAb2d343407feab2d34340, + FFFAb17424907feab1742490, + FFFAb1761b707feab1761b70, + FFFAb2d607707feab2d60770, + FFFAb14554c07feab14554c0, + FFFAb2d743307feab2d74330, + FFFAb2fac9c07feab2fac9c0, ); }; /* End PBXProject section */ }; - rootObject = FFF9f9c822807fbcf9c82280 /* Project object */; + rootObject = FFF9b28088407feab2808840 /* 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 5051d0ce..28045173 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 */ - FFFF126754407fe812675440 /* SceneQuery in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD12694cb07fe812694cb0 /* SceneQuery */; }; - FFFF126754a07fe8126754a0 /* SimulationController in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD126992107fe812699210 /* SimulationController */; }; - FFFF12828c387fe812828c38 /* NpActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12828c387fe812828c38 /* NpActor.cpp */; }; - FFFF12828ca07fe812828ca0 /* NpAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12828ca07fe812828ca0 /* NpAggregate.cpp */; }; - FFFF12828d087fe812828d08 /* NpArticulation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12828d087fe812828d08 /* NpArticulation.cpp */; }; - FFFF12828d707fe812828d70 /* NpArticulationJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12828d707fe812828d70 /* NpArticulationJoint.cpp */; }; - FFFF12828dd87fe812828dd8 /* NpArticulationLink.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12828dd87fe812828dd8 /* NpArticulationLink.cpp */; }; - FFFF12828e407fe812828e40 /* NpBatchQuery.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12828e407fe812828e40 /* NpBatchQuery.cpp */; }; - FFFF12828ea87fe812828ea8 /* NpConstraint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12828ea87fe812828ea8 /* NpConstraint.cpp */; }; - FFFF12828f107fe812828f10 /* NpFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12828f107fe812828f10 /* NpFactory.cpp */; }; - FFFF12828f787fe812828f78 /* NpMaterial.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12828f787fe812828f78 /* NpMaterial.cpp */; }; - FFFF12828fe07fe812828fe0 /* NpMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12828fe07fe812828fe0 /* NpMetaData.cpp */; }; - FFFF128290487fe812829048 /* NpPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128290487fe812829048 /* NpPhysics.cpp */; }; - FFFF128290b07fe8128290b0 /* NpPvdSceneQueryCollector.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128290b07fe8128290b0 /* NpPvdSceneQueryCollector.cpp */; }; - FFFF128291187fe812829118 /* NpReadCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128291187fe812829118 /* NpReadCheck.cpp */; }; - FFFF128291807fe812829180 /* NpRigidDynamic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128291807fe812829180 /* NpRigidDynamic.cpp */; }; - FFFF128291e87fe8128291e8 /* NpRigidStatic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128291e87fe8128291e8 /* NpRigidStatic.cpp */; }; - FFFF128292507fe812829250 /* NpScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128292507fe812829250 /* NpScene.cpp */; }; - FFFF128292b87fe8128292b8 /* NpSceneQueries.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128292b87fe8128292b8 /* NpSceneQueries.cpp */; }; - FFFF128293207fe812829320 /* NpSerializerAdapter.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128293207fe812829320 /* NpSerializerAdapter.cpp */; }; - FFFF128293887fe812829388 /* NpShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128293887fe812829388 /* NpShape.cpp */; }; - FFFF128293f07fe8128293f0 /* NpShapeManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128293f07fe8128293f0 /* NpShapeManager.cpp */; }; - FFFF128294587fe812829458 /* NpSpatialIndex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128294587fe812829458 /* NpSpatialIndex.cpp */; }; - FFFF128294c07fe8128294c0 /* NpVolumeCache.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128294c07fe8128294c0 /* NpVolumeCache.cpp */; }; - FFFF128295287fe812829528 /* NpWriteCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128295287fe812829528 /* NpWriteCheck.cpp */; }; - FFFF128295907fe812829590 /* PvdMetaDataPvdBinding.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128295907fe812829590 /* PvdMetaDataPvdBinding.cpp */; }; - FFFF128295f87fe8128295f8 /* PvdPhysicsClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128295f87fe8128295f8 /* PvdPhysicsClient.cpp */; }; - FFFF128298007fe812829800 /* particles/NpParticleFluid.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128298007fe812829800 /* particles/NpParticleFluid.cpp */; }; - FFFF128298687fe812829868 /* particles/NpParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128298687fe812829868 /* particles/NpParticleSystem.cpp */; }; - FFFF1282a0207fe81282a020 /* buffering/ScbActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1282a0207fe81282a020 /* buffering/ScbActor.cpp */; }; - FFFF1282a0887fe81282a088 /* buffering/ScbAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1282a0887fe81282a088 /* buffering/ScbAggregate.cpp */; }; - FFFF1282a0f07fe81282a0f0 /* buffering/ScbBase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1282a0f07fe81282a0f0 /* buffering/ScbBase.cpp */; }; - FFFF1282a1587fe81282a158 /* buffering/ScbCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1282a1587fe81282a158 /* buffering/ScbCloth.cpp */; }; - FFFF1282a1c07fe81282a1c0 /* buffering/ScbMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1282a1c07fe81282a1c0 /* buffering/ScbMetaData.cpp */; }; - FFFF1282a2287fe81282a228 /* buffering/ScbParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1282a2287fe81282a228 /* buffering/ScbParticleSystem.cpp */; }; - FFFF1282a2907fe81282a290 /* buffering/ScbScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1282a2907fe81282a290 /* buffering/ScbScene.cpp */; }; - FFFF1282a2f87fe81282a2f8 /* buffering/ScbScenePvdClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1282a2f87fe81282a2f8 /* buffering/ScbScenePvdClient.cpp */; }; - FFFF1282a3607fe81282a360 /* buffering/ScbShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1282a3607fe81282a360 /* buffering/ScbShape.cpp */; }; - FFFF1282a5007fe81282a500 /* cloth/NpCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1282a5007fe81282a500 /* cloth/NpCloth.cpp */; }; - FFFF1282a5687fe81282a568 /* cloth/NpClothFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1282a5687fe81282a568 /* cloth/NpClothFabric.cpp */; }; - FFFF1282a5d07fe81282a5d0 /* cloth/NpClothParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1282a5d07fe81282a5d0 /* cloth/NpClothParticleData.cpp */; }; - FFFF1282a6387fe81282a638 /* ../../ImmediateMode/src/NpImmediateMode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1282a6387fe81282a638 /* ../../ImmediateMode/src/NpImmediateMode.cpp */; }; - FFFF12822da87fe812822da8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD12822da87fe812822da8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */; }; - FFFF12822e107fe812822e10 /* core/src/PxMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD12822e107fe812822e10 /* core/src/PxMetaDataObjects.cpp */; }; + FFFF4550dc207f8c4550dc20 /* SceneQuery in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD455314507f8c45531450 /* SceneQuery */; }; + FFFF4550dc807f8c4550dc80 /* SimulationController in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD455359d07f8c455359d0 /* SimulationController */; }; + FFFF458116387f8c45811638 /* NpActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458116387f8c45811638 /* NpActor.cpp */; }; + FFFF458116a07f8c458116a0 /* NpAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458116a07f8c458116a0 /* NpAggregate.cpp */; }; + FFFF458117087f8c45811708 /* NpArticulation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458117087f8c45811708 /* NpArticulation.cpp */; }; + FFFF458117707f8c45811770 /* NpArticulationJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458117707f8c45811770 /* NpArticulationJoint.cpp */; }; + FFFF458117d87f8c458117d8 /* NpArticulationLink.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458117d87f8c458117d8 /* NpArticulationLink.cpp */; }; + FFFF458118407f8c45811840 /* NpBatchQuery.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458118407f8c45811840 /* NpBatchQuery.cpp */; }; + FFFF458118a87f8c458118a8 /* NpConstraint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458118a87f8c458118a8 /* NpConstraint.cpp */; }; + FFFF458119107f8c45811910 /* NpFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458119107f8c45811910 /* NpFactory.cpp */; }; + FFFF458119787f8c45811978 /* NpMaterial.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458119787f8c45811978 /* NpMaterial.cpp */; }; + FFFF458119e07f8c458119e0 /* NpMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458119e07f8c458119e0 /* NpMetaData.cpp */; }; + FFFF45811a487f8c45811a48 /* NpPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45811a487f8c45811a48 /* NpPhysics.cpp */; }; + FFFF45811ab07f8c45811ab0 /* NpPvdSceneQueryCollector.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45811ab07f8c45811ab0 /* NpPvdSceneQueryCollector.cpp */; }; + FFFF45811b187f8c45811b18 /* NpReadCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45811b187f8c45811b18 /* NpReadCheck.cpp */; }; + FFFF45811b807f8c45811b80 /* NpRigidDynamic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45811b807f8c45811b80 /* NpRigidDynamic.cpp */; }; + FFFF45811be87f8c45811be8 /* NpRigidStatic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45811be87f8c45811be8 /* NpRigidStatic.cpp */; }; + FFFF45811c507f8c45811c50 /* NpScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45811c507f8c45811c50 /* NpScene.cpp */; }; + FFFF45811cb87f8c45811cb8 /* NpSceneQueries.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45811cb87f8c45811cb8 /* NpSceneQueries.cpp */; }; + FFFF45811d207f8c45811d20 /* NpSerializerAdapter.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45811d207f8c45811d20 /* NpSerializerAdapter.cpp */; }; + FFFF45811d887f8c45811d88 /* NpShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45811d887f8c45811d88 /* NpShape.cpp */; }; + FFFF45811df07f8c45811df0 /* NpShapeManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45811df07f8c45811df0 /* NpShapeManager.cpp */; }; + FFFF45811e587f8c45811e58 /* NpSpatialIndex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45811e587f8c45811e58 /* NpSpatialIndex.cpp */; }; + FFFF45811ec07f8c45811ec0 /* NpVolumeCache.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45811ec07f8c45811ec0 /* NpVolumeCache.cpp */; }; + FFFF45811f287f8c45811f28 /* NpWriteCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45811f287f8c45811f28 /* NpWriteCheck.cpp */; }; + FFFF45811f907f8c45811f90 /* PvdMetaDataPvdBinding.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45811f907f8c45811f90 /* PvdMetaDataPvdBinding.cpp */; }; + FFFF45811ff87f8c45811ff8 /* PvdPhysicsClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45811ff87f8c45811ff8 /* PvdPhysicsClient.cpp */; }; + FFFF458122007f8c45812200 /* particles/NpParticleFluid.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458122007f8c45812200 /* particles/NpParticleFluid.cpp */; }; + FFFF458122687f8c45812268 /* particles/NpParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458122687f8c45812268 /* particles/NpParticleSystem.cpp */; }; + FFFF45812a207f8c45812a20 /* buffering/ScbActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45812a207f8c45812a20 /* buffering/ScbActor.cpp */; }; + FFFF45812a887f8c45812a88 /* buffering/ScbAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45812a887f8c45812a88 /* buffering/ScbAggregate.cpp */; }; + FFFF45812af07f8c45812af0 /* buffering/ScbBase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45812af07f8c45812af0 /* buffering/ScbBase.cpp */; }; + FFFF45812b587f8c45812b58 /* buffering/ScbCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45812b587f8c45812b58 /* buffering/ScbCloth.cpp */; }; + FFFF45812bc07f8c45812bc0 /* buffering/ScbMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45812bc07f8c45812bc0 /* buffering/ScbMetaData.cpp */; }; + FFFF45812c287f8c45812c28 /* buffering/ScbParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45812c287f8c45812c28 /* buffering/ScbParticleSystem.cpp */; }; + FFFF45812c907f8c45812c90 /* buffering/ScbScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45812c907f8c45812c90 /* buffering/ScbScene.cpp */; }; + FFFF45812cf87f8c45812cf8 /* buffering/ScbScenePvdClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45812cf87f8c45812cf8 /* buffering/ScbScenePvdClient.cpp */; }; + FFFF45812d607f8c45812d60 /* buffering/ScbShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45812d607f8c45812d60 /* buffering/ScbShape.cpp */; }; + FFFF45812f007f8c45812f00 /* cloth/NpCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45812f007f8c45812f00 /* cloth/NpCloth.cpp */; }; + FFFF45812f687f8c45812f68 /* cloth/NpClothFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45812f687f8c45812f68 /* cloth/NpClothFabric.cpp */; }; + FFFF45812fd07f8c45812fd0 /* cloth/NpClothParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45812fd07f8c45812fd0 /* cloth/NpClothParticleData.cpp */; }; + FFFF458130387f8c45813038 /* ../../ImmediateMode/src/NpImmediateMode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458130387f8c45813038 /* ../../ImmediateMode/src/NpImmediateMode.cpp */; }; + FFFF4580d5a87f8c4580d5a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD4580d5a87f8c4580d5a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */; }; + FFFF4580d6107f8c4580d610 /* core/src/PxMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD4580d6107f8c4580d610 /* core/src/PxMetaDataObjects.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD1266ac007fe81266ac00 /* PhysX */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysX"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD12827e007fe812827e00 /* NpActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.h"; path = "../../PhysX/src/NpActor.h"; sourceTree = SOURCE_ROOT; }; - FFFD12827e687fe812827e68 /* NpActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActorTemplate.h"; path = "../../PhysX/src/NpActorTemplate.h"; sourceTree = SOURCE_ROOT; }; - FFFD12827ed07fe812827ed0 /* NpAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.h"; path = "../../PhysX/src/NpAggregate.h"; sourceTree = SOURCE_ROOT; }; - FFFD12827f387fe812827f38 /* NpArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.h"; path = "../../PhysX/src/NpArticulation.h"; sourceTree = SOURCE_ROOT; }; - FFFD12827fa07fe812827fa0 /* NpArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.h"; path = "../../PhysX/src/NpArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD128280087fe812828008 /* NpArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.h"; path = "../../PhysX/src/NpArticulationLink.h"; sourceTree = SOURCE_ROOT; }; - FFFD128280707fe812828070 /* NpBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.h"; path = "../../PhysX/src/NpBatchQuery.h"; sourceTree = SOURCE_ROOT; }; - FFFD128280d87fe8128280d8 /* NpCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpCast.h"; path = "../../PhysX/src/NpCast.h"; sourceTree = SOURCE_ROOT; }; - FFFD128281407fe812828140 /* NpConnector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConnector.h"; path = "../../PhysX/src/NpConnector.h"; sourceTree = SOURCE_ROOT; }; - FFFD128281a87fe8128281a8 /* NpConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.h"; path = "../../PhysX/src/NpConstraint.h"; sourceTree = SOURCE_ROOT; }; - FFFD128282107fe812828210 /* NpFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.h"; path = "../../PhysX/src/NpFactory.h"; sourceTree = SOURCE_ROOT; }; - FFFD128282787fe812828278 /* NpMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.h"; path = "../../PhysX/src/NpMaterial.h"; sourceTree = SOURCE_ROOT; }; - FFFD128282e07fe8128282e0 /* NpMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterialManager.h"; path = "../../PhysX/src/NpMaterialManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD128283487fe812828348 /* NpPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.h"; path = "../../PhysX/src/NpPhysics.h"; sourceTree = SOURCE_ROOT; }; - FFFD128283b07fe8128283b0 /* NpPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysicsInsertionCallback.h"; path = "../../PhysX/src/NpPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFD128284187fe812828418 /* NpPtrTableStorageManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPtrTableStorageManager.h"; path = "../../PhysX/src/NpPtrTableStorageManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD128284807fe812828480 /* NpPvdSceneQueryCollector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.h"; path = "../../PhysX/src/NpPvdSceneQueryCollector.h"; sourceTree = SOURCE_ROOT; }; - FFFD128284e87fe8128284e8 /* NpQueryShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpQueryShared.h"; path = "../../PhysX/src/NpQueryShared.h"; sourceTree = SOURCE_ROOT; }; - FFFD128285507fe812828550 /* NpReadCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.h"; path = "../../PhysX/src/NpReadCheck.h"; sourceTree = SOURCE_ROOT; }; - FFFD128285b87fe8128285b8 /* NpRigidActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplate.h"; path = "../../PhysX/src/NpRigidActorTemplate.h"; sourceTree = SOURCE_ROOT; }; - FFFD128286207fe812828620 /* NpRigidActorTemplateInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplateInternal.h"; path = "../../PhysX/src/NpRigidActorTemplateInternal.h"; sourceTree = SOURCE_ROOT; }; - FFFD128286887fe812828688 /* NpRigidBodyTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidBodyTemplate.h"; path = "../../PhysX/src/NpRigidBodyTemplate.h"; sourceTree = SOURCE_ROOT; }; - FFFD128286f07fe8128286f0 /* NpRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.h"; path = "../../PhysX/src/NpRigidDynamic.h"; sourceTree = SOURCE_ROOT; }; - FFFD128287587fe812828758 /* NpRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.h"; path = "../../PhysX/src/NpRigidStatic.h"; sourceTree = SOURCE_ROOT; }; - FFFD128287c07fe8128287c0 /* NpScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.h"; path = "../../PhysX/src/NpScene.h"; sourceTree = SOURCE_ROOT; }; - FFFD128288287fe812828828 /* NpSceneQueries.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.h"; path = "../../PhysX/src/NpSceneQueries.h"; sourceTree = SOURCE_ROOT; }; - FFFD128288907fe812828890 /* NpShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.h"; path = "../../PhysX/src/NpShape.h"; sourceTree = SOURCE_ROOT; }; - FFFD128288f87fe8128288f8 /* NpShapeManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.h"; path = "../../PhysX/src/NpShapeManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD128289607fe812828960 /* NpSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.h"; path = "../../PhysX/src/NpSpatialIndex.h"; sourceTree = SOURCE_ROOT; }; - FFFD128289c87fe8128289c8 /* NpVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.h"; path = "../../PhysX/src/NpVolumeCache.h"; sourceTree = SOURCE_ROOT; }; - FFFD12828a307fe812828a30 /* NpWriteCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.h"; path = "../../PhysX/src/NpWriteCheck.h"; sourceTree = SOURCE_ROOT; }; - FFFD12828a987fe812828a98 /* PvdMetaDataBindingData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataBindingData.h"; path = "../../PhysX/src/PvdMetaDataBindingData.h"; sourceTree = SOURCE_ROOT; }; - FFFD12828b007fe812828b00 /* PvdMetaDataPvdBinding.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.h"; path = "../../PhysX/src/PvdMetaDataPvdBinding.h"; sourceTree = SOURCE_ROOT; }; - FFFD12828b687fe812828b68 /* PvdPhysicsClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.h"; path = "../../PhysX/src/PvdPhysicsClient.h"; sourceTree = SOURCE_ROOT; }; - FFFD12828bd07fe812828bd0 /* PvdTypeNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdTypeNames.h"; path = "../../PhysX/src/PvdTypeNames.h"; sourceTree = SOURCE_ROOT; }; - FFFD12828c387fe812828c38 /* NpActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.cpp"; path = "../../PhysX/src/NpActor.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD12828ca07fe812828ca0 /* NpAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.cpp"; path = "../../PhysX/src/NpAggregate.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD12828d087fe812828d08 /* NpArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.cpp"; path = "../../PhysX/src/NpArticulation.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD12828d707fe812828d70 /* NpArticulationJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.cpp"; path = "../../PhysX/src/NpArticulationJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD12828dd87fe812828dd8 /* NpArticulationLink.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.cpp"; path = "../../PhysX/src/NpArticulationLink.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD12828e407fe812828e40 /* NpBatchQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.cpp"; path = "../../PhysX/src/NpBatchQuery.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD12828ea87fe812828ea8 /* NpConstraint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.cpp"; path = "../../PhysX/src/NpConstraint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD12828f107fe812828f10 /* NpFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.cpp"; path = "../../PhysX/src/NpFactory.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD12828f787fe812828f78 /* NpMaterial.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.cpp"; path = "../../PhysX/src/NpMaterial.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD12828fe07fe812828fe0 /* NpMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMetaData.cpp"; path = "../../PhysX/src/NpMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128290487fe812829048 /* NpPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.cpp"; path = "../../PhysX/src/NpPhysics.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128290b07fe8128290b0 /* NpPvdSceneQueryCollector.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.cpp"; path = "../../PhysX/src/NpPvdSceneQueryCollector.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128291187fe812829118 /* NpReadCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.cpp"; path = "../../PhysX/src/NpReadCheck.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128291807fe812829180 /* NpRigidDynamic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.cpp"; path = "../../PhysX/src/NpRigidDynamic.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128291e87fe8128291e8 /* NpRigidStatic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.cpp"; path = "../../PhysX/src/NpRigidStatic.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128292507fe812829250 /* NpScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.cpp"; path = "../../PhysX/src/NpScene.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128292b87fe8128292b8 /* NpSceneQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.cpp"; path = "../../PhysX/src/NpSceneQueries.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128293207fe812829320 /* NpSerializerAdapter.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSerializerAdapter.cpp"; path = "../../PhysX/src/NpSerializerAdapter.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128293887fe812829388 /* NpShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.cpp"; path = "../../PhysX/src/NpShape.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128293f07fe8128293f0 /* NpShapeManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.cpp"; path = "../../PhysX/src/NpShapeManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128294587fe812829458 /* NpSpatialIndex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.cpp"; path = "../../PhysX/src/NpSpatialIndex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128294c07fe8128294c0 /* NpVolumeCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.cpp"; path = "../../PhysX/src/NpVolumeCache.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128295287fe812829528 /* NpWriteCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.cpp"; path = "../../PhysX/src/NpWriteCheck.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128295907fe812829590 /* PvdMetaDataPvdBinding.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.cpp"; path = "../../PhysX/src/PvdMetaDataPvdBinding.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128295f87fe8128295f8 /* PvdPhysicsClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.cpp"; path = "../../PhysX/src/PvdPhysicsClient.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128296607fe812829660 /* particles/NpParticleBaseTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleBaseTemplate.h"; path = "../../PhysX/src/particles/NpParticleBaseTemplate.h"; sourceTree = SOURCE_ROOT; }; - FFFD128296c87fe8128296c8 /* particles/NpParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.h"; path = "../../PhysX/src/particles/NpParticleFluid.h"; sourceTree = SOURCE_ROOT; }; - FFFD128297307fe812829730 /* particles/NpParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluidReadData.h"; path = "../../PhysX/src/particles/NpParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; }; - FFFD128297987fe812829798 /* particles/NpParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.h"; path = "../../PhysX/src/particles/NpParticleSystem.h"; sourceTree = SOURCE_ROOT; }; - FFFD128298007fe812829800 /* particles/NpParticleFluid.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.cpp"; path = "../../PhysX/src/particles/NpParticleFluid.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128298687fe812829868 /* particles/NpParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.cpp"; path = "../../PhysX/src/particles/NpParticleSystem.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128298d07fe8128298d0 /* buffering/ScbActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.h"; path = "../../PhysX/src/buffering/ScbActor.h"; sourceTree = SOURCE_ROOT; }; - FFFD128299387fe812829938 /* buffering/ScbAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.h"; path = "../../PhysX/src/buffering/ScbAggregate.h"; sourceTree = SOURCE_ROOT; }; - FFFD128299a07fe8128299a0 /* buffering/ScbArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulation.h"; path = "../../PhysX/src/buffering/ScbArticulation.h"; sourceTree = SOURCE_ROOT; }; - FFFD12829a087fe812829a08 /* buffering/ScbArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulationJoint.h"; path = "../../PhysX/src/buffering/ScbArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD12829a707fe812829a70 /* buffering/ScbBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.h"; path = "../../PhysX/src/buffering/ScbBase.h"; sourceTree = SOURCE_ROOT; }; - FFFD12829ad87fe812829ad8 /* buffering/ScbBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBody.h"; path = "../../PhysX/src/buffering/ScbBody.h"; sourceTree = SOURCE_ROOT; }; - FFFD12829b407fe812829b40 /* buffering/ScbCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.h"; path = "../../PhysX/src/buffering/ScbCloth.h"; sourceTree = SOURCE_ROOT; }; - FFFD12829ba87fe812829ba8 /* buffering/ScbConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbConstraint.h"; path = "../../PhysX/src/buffering/ScbConstraint.h"; sourceTree = SOURCE_ROOT; }; - FFFD12829c107fe812829c10 /* buffering/ScbDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbDefs.h"; path = "../../PhysX/src/buffering/ScbDefs.h"; sourceTree = SOURCE_ROOT; }; - FFFD12829c787fe812829c78 /* buffering/ScbNpDeps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbNpDeps.h"; path = "../../PhysX/src/buffering/ScbNpDeps.h"; sourceTree = SOURCE_ROOT; }; - FFFD12829ce07fe812829ce0 /* buffering/ScbParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.h"; path = "../../PhysX/src/buffering/ScbParticleSystem.h"; sourceTree = SOURCE_ROOT; }; - FFFD12829d487fe812829d48 /* buffering/ScbRigidObject.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidObject.h"; path = "../../PhysX/src/buffering/ScbRigidObject.h"; sourceTree = SOURCE_ROOT; }; - FFFD12829db07fe812829db0 /* buffering/ScbRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidStatic.h"; path = "../../PhysX/src/buffering/ScbRigidStatic.h"; sourceTree = SOURCE_ROOT; }; - FFFD12829e187fe812829e18 /* buffering/ScbScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.h"; path = "../../PhysX/src/buffering/ScbScene.h"; sourceTree = SOURCE_ROOT; }; - FFFD12829e807fe812829e80 /* buffering/ScbSceneBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbSceneBuffer.h"; path = "../../PhysX/src/buffering/ScbSceneBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD12829ee87fe812829ee8 /* buffering/ScbScenePvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.h"; path = "../../PhysX/src/buffering/ScbScenePvdClient.h"; sourceTree = SOURCE_ROOT; }; - FFFD12829f507fe812829f50 /* buffering/ScbShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.h"; path = "../../PhysX/src/buffering/ScbShape.h"; sourceTree = SOURCE_ROOT; }; - FFFD12829fb87fe812829fb8 /* buffering/ScbType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbType.h"; path = "../../PhysX/src/buffering/ScbType.h"; sourceTree = SOURCE_ROOT; }; - FFFD1282a0207fe81282a020 /* buffering/ScbActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.cpp"; path = "../../PhysX/src/buffering/ScbActor.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1282a0887fe81282a088 /* buffering/ScbAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.cpp"; path = "../../PhysX/src/buffering/ScbAggregate.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1282a0f07fe81282a0f0 /* buffering/ScbBase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.cpp"; path = "../../PhysX/src/buffering/ScbBase.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1282a1587fe81282a158 /* buffering/ScbCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.cpp"; path = "../../PhysX/src/buffering/ScbCloth.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1282a1c07fe81282a1c0 /* buffering/ScbMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbMetaData.cpp"; path = "../../PhysX/src/buffering/ScbMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1282a2287fe81282a228 /* buffering/ScbParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.cpp"; path = "../../PhysX/src/buffering/ScbParticleSystem.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1282a2907fe81282a290 /* buffering/ScbScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.cpp"; path = "../../PhysX/src/buffering/ScbScene.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1282a2f87fe81282a2f8 /* buffering/ScbScenePvdClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.cpp"; path = "../../PhysX/src/buffering/ScbScenePvdClient.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1282a3607fe81282a360 /* buffering/ScbShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.cpp"; path = "../../PhysX/src/buffering/ScbShape.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1282a3c87fe81282a3c8 /* cloth/NpCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.h"; path = "../../PhysX/src/cloth/NpCloth.h"; sourceTree = SOURCE_ROOT; }; - FFFD1282a4307fe81282a430 /* cloth/NpClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.h"; path = "../../PhysX/src/cloth/NpClothFabric.h"; sourceTree = SOURCE_ROOT; }; - FFFD1282a4987fe81282a498 /* cloth/NpClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.h"; path = "../../PhysX/src/cloth/NpClothParticleData.h"; sourceTree = SOURCE_ROOT; }; - FFFD1282a5007fe81282a500 /* cloth/NpCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.cpp"; path = "../../PhysX/src/cloth/NpCloth.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1282a5687fe81282a568 /* cloth/NpClothFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.cpp"; path = "../../PhysX/src/cloth/NpClothFabric.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1282a5d07fe81282a5d0 /* cloth/NpClothParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.cpp"; path = "../../PhysX/src/cloth/NpClothParticleData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1282a6387fe81282a638 /* ../../ImmediateMode/src/NpImmediateMode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "../../ImmediateMode/src/NpImmediateMode.cpp"; path = "../../ImmediateMode/src/NpImmediateMode.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1282a8007fe81282a800 /* PxActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxActor.h"; path = "../../../Include/PxActor.h"; sourceTree = SOURCE_ROOT; }; - FFFD1282a8687fe81282a868 /* PxAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAggregate.h"; path = "../../../Include/PxAggregate.h"; sourceTree = SOURCE_ROOT; }; - FFFD1282a8d07fe81282a8d0 /* PxArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulation.h"; path = "../../../Include/PxArticulation.h"; sourceTree = SOURCE_ROOT; }; - FFFD1282a9387fe81282a938 /* PxArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationJoint.h"; path = "../../../Include/PxArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD1282a9a07fe81282a9a0 /* PxArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationLink.h"; path = "../../../Include/PxArticulationLink.h"; sourceTree = SOURCE_ROOT; }; - FFFD1282aa087fe81282aa08 /* PxBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQuery.h"; path = "../../../Include/PxBatchQuery.h"; sourceTree = SOURCE_ROOT; }; - FFFD1282aa707fe81282aa70 /* PxBatchQueryDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQueryDesc.h"; path = "../../../Include/PxBatchQueryDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD1282aad87fe81282aad8 /* PxBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhase.h"; path = "../../../Include/PxBroadPhase.h"; sourceTree = SOURCE_ROOT; }; - FFFD1282ab407fe81282ab40 /* PxClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClient.h"; path = "../../../Include/PxClient.h"; sourceTree = SOURCE_ROOT; }; - FFFD1282aba87fe81282aba8 /* PxConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraint.h"; path = "../../../Include/PxConstraint.h"; sourceTree = SOURCE_ROOT; }; - FFFD1282ac107fe81282ac10 /* PxConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintDesc.h"; path = "../../../Include/PxConstraintDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD1282ac787fe81282ac78 /* PxContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContact.h"; path = "../../../Include/PxContact.h"; sourceTree = SOURCE_ROOT; }; - FFFD1282ace07fe81282ace0 /* PxContactModifyCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContactModifyCallback.h"; path = "../../../Include/PxContactModifyCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFD1282ad487fe81282ad48 /* PxDeletionListener.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDeletionListener.h"; path = "../../../Include/PxDeletionListener.h"; sourceTree = SOURCE_ROOT; }; - FFFD1282adb07fe81282adb0 /* PxFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFiltering.h"; path = "../../../Include/PxFiltering.h"; sourceTree = SOURCE_ROOT; }; - FFFD1282ae187fe81282ae18 /* PxForceMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxForceMode.h"; path = "../../../Include/PxForceMode.h"; sourceTree = SOURCE_ROOT; }; - FFFD1282ae807fe81282ae80 /* PxImmediateMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxImmediateMode.h"; path = "../../../Include/PxImmediateMode.h"; sourceTree = SOURCE_ROOT; }; - FFFD1282aee87fe81282aee8 /* PxLockedData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxLockedData.h"; path = "../../../Include/PxLockedData.h"; sourceTree = SOURCE_ROOT; }; - FFFD1282af507fe81282af50 /* PxMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMaterial.h"; path = "../../../Include/PxMaterial.h"; sourceTree = SOURCE_ROOT; }; - FFFD1282afb87fe81282afb8 /* PxPhysXConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysXConfig.h"; path = "../../../Include/PxPhysXConfig.h"; sourceTree = SOURCE_ROOT; }; - FFFD1282b0207fe81282b020 /* PxPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysics.h"; path = "../../../Include/PxPhysics.h"; sourceTree = SOURCE_ROOT; }; - FFFD1282b0887fe81282b088 /* PxPhysicsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsAPI.h"; path = "../../../Include/PxPhysicsAPI.h"; sourceTree = SOURCE_ROOT; }; - FFFD1282b0f07fe81282b0f0 /* PxPhysicsSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsSerialization.h"; path = "../../../Include/PxPhysicsSerialization.h"; sourceTree = SOURCE_ROOT; }; - FFFD1282b1587fe81282b158 /* PxPhysicsVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsVersion.h"; path = "../../../Include/PxPhysicsVersion.h"; sourceTree = SOURCE_ROOT; }; - FFFD1282b1c07fe81282b1c0 /* PxPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPruningStructure.h"; path = "../../../Include/PxPruningStructure.h"; sourceTree = SOURCE_ROOT; }; - FFFD1282b2287fe81282b228 /* PxQueryFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryFiltering.h"; path = "../../../Include/PxQueryFiltering.h"; sourceTree = SOURCE_ROOT; }; - FFFD1282b2907fe81282b290 /* PxQueryReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryReport.h"; path = "../../../Include/PxQueryReport.h"; sourceTree = SOURCE_ROOT; }; - FFFD1282b2f87fe81282b2f8 /* PxRigidActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActor.h"; path = "../../../Include/PxRigidActor.h"; sourceTree = SOURCE_ROOT; }; - FFFD1282b3607fe81282b360 /* PxRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBody.h"; path = "../../../Include/PxRigidBody.h"; sourceTree = SOURCE_ROOT; }; - FFFD1282b3c87fe81282b3c8 /* PxRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidDynamic.h"; path = "../../../Include/PxRigidDynamic.h"; sourceTree = SOURCE_ROOT; }; - FFFD1282b4307fe81282b430 /* PxRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidStatic.h"; path = "../../../Include/PxRigidStatic.h"; sourceTree = SOURCE_ROOT; }; - FFFD1282b4987fe81282b498 /* PxScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxScene.h"; path = "../../../Include/PxScene.h"; sourceTree = SOURCE_ROOT; }; - FFFD1282b5007fe81282b500 /* PxSceneDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneDesc.h"; path = "../../../Include/PxSceneDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD1282b5687fe81282b568 /* PxSceneLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneLock.h"; path = "../../../Include/PxSceneLock.h"; sourceTree = SOURCE_ROOT; }; - FFFD1282b5d07fe81282b5d0 /* PxShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShape.h"; path = "../../../Include/PxShape.h"; sourceTree = SOURCE_ROOT; }; - FFFD1282b6387fe81282b638 /* PxSimulationEventCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationEventCallback.h"; path = "../../../Include/PxSimulationEventCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFD1282b6a07fe81282b6a0 /* PxSimulationStatistics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationStatistics.h"; path = "../../../Include/PxSimulationStatistics.h"; sourceTree = SOURCE_ROOT; }; - FFFD1282b7087fe81282b708 /* PxSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSpatialIndex.h"; path = "../../../Include/PxSpatialIndex.h"; sourceTree = SOURCE_ROOT; }; - FFFD1282b7707fe81282b770 /* PxVisualizationParameter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVisualizationParameter.h"; path = "../../../Include/PxVisualizationParameter.h"; sourceTree = SOURCE_ROOT; }; - FFFD1282b7d87fe81282b7d8 /* PxVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVolumeCache.h"; path = "../../../Include/PxVolumeCache.h"; sourceTree = SOURCE_ROOT; }; - FFFD1282b8407fe81282b840 /* particles/PxParticleBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBase.h"; path = "../../../Include/particles/PxParticleBase.h"; sourceTree = SOURCE_ROOT; }; - FFFD1282b8a87fe81282b8a8 /* particles/PxParticleBaseFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBaseFlag.h"; path = "../../../Include/particles/PxParticleBaseFlag.h"; sourceTree = SOURCE_ROOT; }; - FFFD1282b9107fe81282b910 /* particles/PxParticleCreationData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleCreationData.h"; path = "../../../Include/particles/PxParticleCreationData.h"; sourceTree = SOURCE_ROOT; }; - FFFD1282b9787fe81282b978 /* particles/PxParticleFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFlag.h"; path = "../../../Include/particles/PxParticleFlag.h"; sourceTree = SOURCE_ROOT; }; - FFFD1282b9e07fe81282b9e0 /* particles/PxParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluid.h"; path = "../../../Include/particles/PxParticleFluid.h"; sourceTree = SOURCE_ROOT; }; - FFFD1282ba487fe81282ba48 /* particles/PxParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluidReadData.h"; path = "../../../Include/particles/PxParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; }; - FFFD1282bab07fe81282bab0 /* particles/PxParticleReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleReadData.h"; path = "../../../Include/particles/PxParticleReadData.h"; sourceTree = SOURCE_ROOT; }; - FFFD1282bb187fe81282bb18 /* particles/PxParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleSystem.h"; path = "../../../Include/particles/PxParticleSystem.h"; sourceTree = SOURCE_ROOT; }; - FFFD1282bb807fe81282bb80 /* pvd/PxPvdSceneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pvd/PxPvdSceneClient.h"; path = "../../../Include/pvd/PxPvdSceneClient.h"; sourceTree = SOURCE_ROOT; }; - FFFD1282bbe87fe81282bbe8 /* cloth/PxCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxCloth.h"; path = "../../../Include/cloth/PxCloth.h"; sourceTree = SOURCE_ROOT; }; - FFFD1282bc507fe81282bc50 /* cloth/PxClothCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothCollisionData.h"; path = "../../../Include/cloth/PxClothCollisionData.h"; sourceTree = SOURCE_ROOT; }; - FFFD1282bcb87fe81282bcb8 /* cloth/PxClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothFabric.h"; path = "../../../Include/cloth/PxClothFabric.h"; sourceTree = SOURCE_ROOT; }; - FFFD1282bd207fe81282bd20 /* cloth/PxClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothParticleData.h"; path = "../../../Include/cloth/PxClothParticleData.h"; sourceTree = SOURCE_ROOT; }; - FFFD1282bd887fe81282bd88 /* cloth/PxClothTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothTypes.h"; path = "../../../Include/cloth/PxClothTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD12822a007fe812822a00 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; }; - FFFD12822a687fe812822a68 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; - FFFD12822ad07fe812822ad0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; - FFFD12822b387fe812822b38 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; - FFFD12822ba07fe812822ba0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFD12822c087fe812822c08 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; }; - FFFD12822c707fe812822c70 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; }; - FFFD12822cd87fe812822cd8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFD12822d407fe812822d40 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; - FFFD12822da87fe812822da8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "core/src/PxAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXMetaData/core/src/PxAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD12822e107fe812822e10 /* core/src/PxMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "core/src/PxMetaDataObjects.cpp"; path = "../../PhysXMetaData/core/src/PxMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45504df07f8c45504df0 /* PhysX */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysX"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD458108007f8c45810800 /* NpActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.h"; path = "../../PhysX/src/NpActor.h"; sourceTree = SOURCE_ROOT; }; + FFFD458108687f8c45810868 /* NpActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActorTemplate.h"; path = "../../PhysX/src/NpActorTemplate.h"; sourceTree = SOURCE_ROOT; }; + FFFD458108d07f8c458108d0 /* NpAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.h"; path = "../../PhysX/src/NpAggregate.h"; sourceTree = SOURCE_ROOT; }; + FFFD458109387f8c45810938 /* NpArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.h"; path = "../../PhysX/src/NpArticulation.h"; sourceTree = SOURCE_ROOT; }; + FFFD458109a07f8c458109a0 /* NpArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.h"; path = "../../PhysX/src/NpArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD45810a087f8c45810a08 /* NpArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.h"; path = "../../PhysX/src/NpArticulationLink.h"; sourceTree = SOURCE_ROOT; }; + FFFD45810a707f8c45810a70 /* NpBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.h"; path = "../../PhysX/src/NpBatchQuery.h"; sourceTree = SOURCE_ROOT; }; + FFFD45810ad87f8c45810ad8 /* NpCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpCast.h"; path = "../../PhysX/src/NpCast.h"; sourceTree = SOURCE_ROOT; }; + FFFD45810b407f8c45810b40 /* NpConnector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConnector.h"; path = "../../PhysX/src/NpConnector.h"; sourceTree = SOURCE_ROOT; }; + FFFD45810ba87f8c45810ba8 /* NpConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.h"; path = "../../PhysX/src/NpConstraint.h"; sourceTree = SOURCE_ROOT; }; + FFFD45810c107f8c45810c10 /* NpFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.h"; path = "../../PhysX/src/NpFactory.h"; sourceTree = SOURCE_ROOT; }; + FFFD45810c787f8c45810c78 /* NpMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.h"; path = "../../PhysX/src/NpMaterial.h"; sourceTree = SOURCE_ROOT; }; + FFFD45810ce07f8c45810ce0 /* NpMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterialManager.h"; path = "../../PhysX/src/NpMaterialManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD45810d487f8c45810d48 /* NpPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.h"; path = "../../PhysX/src/NpPhysics.h"; sourceTree = SOURCE_ROOT; }; + FFFD45810db07f8c45810db0 /* NpPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysicsInsertionCallback.h"; path = "../../PhysX/src/NpPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFD45810e187f8c45810e18 /* NpPtrTableStorageManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPtrTableStorageManager.h"; path = "../../PhysX/src/NpPtrTableStorageManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD45810e807f8c45810e80 /* NpPvdSceneQueryCollector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.h"; path = "../../PhysX/src/NpPvdSceneQueryCollector.h"; sourceTree = SOURCE_ROOT; }; + FFFD45810ee87f8c45810ee8 /* NpQueryShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpQueryShared.h"; path = "../../PhysX/src/NpQueryShared.h"; sourceTree = SOURCE_ROOT; }; + FFFD45810f507f8c45810f50 /* NpReadCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.h"; path = "../../PhysX/src/NpReadCheck.h"; sourceTree = SOURCE_ROOT; }; + FFFD45810fb87f8c45810fb8 /* NpRigidActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplate.h"; path = "../../PhysX/src/NpRigidActorTemplate.h"; sourceTree = SOURCE_ROOT; }; + FFFD458110207f8c45811020 /* NpRigidActorTemplateInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplateInternal.h"; path = "../../PhysX/src/NpRigidActorTemplateInternal.h"; sourceTree = SOURCE_ROOT; }; + FFFD458110887f8c45811088 /* NpRigidBodyTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidBodyTemplate.h"; path = "../../PhysX/src/NpRigidBodyTemplate.h"; sourceTree = SOURCE_ROOT; }; + FFFD458110f07f8c458110f0 /* NpRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.h"; path = "../../PhysX/src/NpRigidDynamic.h"; sourceTree = SOURCE_ROOT; }; + FFFD458111587f8c45811158 /* NpRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.h"; path = "../../PhysX/src/NpRigidStatic.h"; sourceTree = SOURCE_ROOT; }; + FFFD458111c07f8c458111c0 /* NpScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.h"; path = "../../PhysX/src/NpScene.h"; sourceTree = SOURCE_ROOT; }; + FFFD458112287f8c45811228 /* NpSceneQueries.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.h"; path = "../../PhysX/src/NpSceneQueries.h"; sourceTree = SOURCE_ROOT; }; + FFFD458112907f8c45811290 /* NpShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.h"; path = "../../PhysX/src/NpShape.h"; sourceTree = SOURCE_ROOT; }; + FFFD458112f87f8c458112f8 /* NpShapeManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.h"; path = "../../PhysX/src/NpShapeManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD458113607f8c45811360 /* NpSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.h"; path = "../../PhysX/src/NpSpatialIndex.h"; sourceTree = SOURCE_ROOT; }; + FFFD458113c87f8c458113c8 /* NpVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.h"; path = "../../PhysX/src/NpVolumeCache.h"; sourceTree = SOURCE_ROOT; }; + FFFD458114307f8c45811430 /* NpWriteCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.h"; path = "../../PhysX/src/NpWriteCheck.h"; sourceTree = SOURCE_ROOT; }; + FFFD458114987f8c45811498 /* PvdMetaDataBindingData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataBindingData.h"; path = "../../PhysX/src/PvdMetaDataBindingData.h"; sourceTree = SOURCE_ROOT; }; + FFFD458115007f8c45811500 /* PvdMetaDataPvdBinding.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.h"; path = "../../PhysX/src/PvdMetaDataPvdBinding.h"; sourceTree = SOURCE_ROOT; }; + FFFD458115687f8c45811568 /* PvdPhysicsClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.h"; path = "../../PhysX/src/PvdPhysicsClient.h"; sourceTree = SOURCE_ROOT; }; + FFFD458115d07f8c458115d0 /* PvdTypeNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdTypeNames.h"; path = "../../PhysX/src/PvdTypeNames.h"; sourceTree = SOURCE_ROOT; }; + FFFD458116387f8c45811638 /* NpActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.cpp"; path = "../../PhysX/src/NpActor.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458116a07f8c458116a0 /* NpAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.cpp"; path = "../../PhysX/src/NpAggregate.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458117087f8c45811708 /* NpArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.cpp"; path = "../../PhysX/src/NpArticulation.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458117707f8c45811770 /* NpArticulationJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.cpp"; path = "../../PhysX/src/NpArticulationJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458117d87f8c458117d8 /* NpArticulationLink.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.cpp"; path = "../../PhysX/src/NpArticulationLink.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458118407f8c45811840 /* NpBatchQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.cpp"; path = "../../PhysX/src/NpBatchQuery.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458118a87f8c458118a8 /* NpConstraint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.cpp"; path = "../../PhysX/src/NpConstraint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458119107f8c45811910 /* NpFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.cpp"; path = "../../PhysX/src/NpFactory.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458119787f8c45811978 /* NpMaterial.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.cpp"; path = "../../PhysX/src/NpMaterial.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458119e07f8c458119e0 /* NpMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMetaData.cpp"; path = "../../PhysX/src/NpMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45811a487f8c45811a48 /* NpPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.cpp"; path = "../../PhysX/src/NpPhysics.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45811ab07f8c45811ab0 /* NpPvdSceneQueryCollector.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.cpp"; path = "../../PhysX/src/NpPvdSceneQueryCollector.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45811b187f8c45811b18 /* NpReadCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.cpp"; path = "../../PhysX/src/NpReadCheck.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45811b807f8c45811b80 /* NpRigidDynamic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.cpp"; path = "../../PhysX/src/NpRigidDynamic.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45811be87f8c45811be8 /* NpRigidStatic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.cpp"; path = "../../PhysX/src/NpRigidStatic.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45811c507f8c45811c50 /* NpScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.cpp"; path = "../../PhysX/src/NpScene.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45811cb87f8c45811cb8 /* NpSceneQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.cpp"; path = "../../PhysX/src/NpSceneQueries.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45811d207f8c45811d20 /* NpSerializerAdapter.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSerializerAdapter.cpp"; path = "../../PhysX/src/NpSerializerAdapter.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45811d887f8c45811d88 /* NpShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.cpp"; path = "../../PhysX/src/NpShape.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45811df07f8c45811df0 /* NpShapeManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.cpp"; path = "../../PhysX/src/NpShapeManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45811e587f8c45811e58 /* NpSpatialIndex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.cpp"; path = "../../PhysX/src/NpSpatialIndex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45811ec07f8c45811ec0 /* NpVolumeCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.cpp"; path = "../../PhysX/src/NpVolumeCache.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45811f287f8c45811f28 /* NpWriteCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.cpp"; path = "../../PhysX/src/NpWriteCheck.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45811f907f8c45811f90 /* PvdMetaDataPvdBinding.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.cpp"; path = "../../PhysX/src/PvdMetaDataPvdBinding.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45811ff87f8c45811ff8 /* PvdPhysicsClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.cpp"; path = "../../PhysX/src/PvdPhysicsClient.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458120607f8c45812060 /* particles/NpParticleBaseTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleBaseTemplate.h"; path = "../../PhysX/src/particles/NpParticleBaseTemplate.h"; sourceTree = SOURCE_ROOT; }; + FFFD458120c87f8c458120c8 /* particles/NpParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.h"; path = "../../PhysX/src/particles/NpParticleFluid.h"; sourceTree = SOURCE_ROOT; }; + FFFD458121307f8c45812130 /* particles/NpParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluidReadData.h"; path = "../../PhysX/src/particles/NpParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; }; + FFFD458121987f8c45812198 /* particles/NpParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.h"; path = "../../PhysX/src/particles/NpParticleSystem.h"; sourceTree = SOURCE_ROOT; }; + FFFD458122007f8c45812200 /* particles/NpParticleFluid.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.cpp"; path = "../../PhysX/src/particles/NpParticleFluid.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458122687f8c45812268 /* particles/NpParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.cpp"; path = "../../PhysX/src/particles/NpParticleSystem.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458122d07f8c458122d0 /* buffering/ScbActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.h"; path = "../../PhysX/src/buffering/ScbActor.h"; sourceTree = SOURCE_ROOT; }; + FFFD458123387f8c45812338 /* buffering/ScbAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.h"; path = "../../PhysX/src/buffering/ScbAggregate.h"; sourceTree = SOURCE_ROOT; }; + FFFD458123a07f8c458123a0 /* buffering/ScbArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulation.h"; path = "../../PhysX/src/buffering/ScbArticulation.h"; sourceTree = SOURCE_ROOT; }; + FFFD458124087f8c45812408 /* buffering/ScbArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulationJoint.h"; path = "../../PhysX/src/buffering/ScbArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD458124707f8c45812470 /* buffering/ScbBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.h"; path = "../../PhysX/src/buffering/ScbBase.h"; sourceTree = SOURCE_ROOT; }; + FFFD458124d87f8c458124d8 /* buffering/ScbBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBody.h"; path = "../../PhysX/src/buffering/ScbBody.h"; sourceTree = SOURCE_ROOT; }; + FFFD458125407f8c45812540 /* buffering/ScbCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.h"; path = "../../PhysX/src/buffering/ScbCloth.h"; sourceTree = SOURCE_ROOT; }; + FFFD458125a87f8c458125a8 /* buffering/ScbConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbConstraint.h"; path = "../../PhysX/src/buffering/ScbConstraint.h"; sourceTree = SOURCE_ROOT; }; + FFFD458126107f8c45812610 /* buffering/ScbDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbDefs.h"; path = "../../PhysX/src/buffering/ScbDefs.h"; sourceTree = SOURCE_ROOT; }; + FFFD458126787f8c45812678 /* buffering/ScbNpDeps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbNpDeps.h"; path = "../../PhysX/src/buffering/ScbNpDeps.h"; sourceTree = SOURCE_ROOT; }; + FFFD458126e07f8c458126e0 /* buffering/ScbParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.h"; path = "../../PhysX/src/buffering/ScbParticleSystem.h"; sourceTree = SOURCE_ROOT; }; + FFFD458127487f8c45812748 /* buffering/ScbRigidObject.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidObject.h"; path = "../../PhysX/src/buffering/ScbRigidObject.h"; sourceTree = SOURCE_ROOT; }; + FFFD458127b07f8c458127b0 /* buffering/ScbRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidStatic.h"; path = "../../PhysX/src/buffering/ScbRigidStatic.h"; sourceTree = SOURCE_ROOT; }; + FFFD458128187f8c45812818 /* buffering/ScbScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.h"; path = "../../PhysX/src/buffering/ScbScene.h"; sourceTree = SOURCE_ROOT; }; + FFFD458128807f8c45812880 /* buffering/ScbSceneBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbSceneBuffer.h"; path = "../../PhysX/src/buffering/ScbSceneBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD458128e87f8c458128e8 /* buffering/ScbScenePvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.h"; path = "../../PhysX/src/buffering/ScbScenePvdClient.h"; sourceTree = SOURCE_ROOT; }; + FFFD458129507f8c45812950 /* buffering/ScbShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.h"; path = "../../PhysX/src/buffering/ScbShape.h"; sourceTree = SOURCE_ROOT; }; + FFFD458129b87f8c458129b8 /* buffering/ScbType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbType.h"; path = "../../PhysX/src/buffering/ScbType.h"; sourceTree = SOURCE_ROOT; }; + FFFD45812a207f8c45812a20 /* buffering/ScbActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.cpp"; path = "../../PhysX/src/buffering/ScbActor.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45812a887f8c45812a88 /* buffering/ScbAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.cpp"; path = "../../PhysX/src/buffering/ScbAggregate.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45812af07f8c45812af0 /* buffering/ScbBase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.cpp"; path = "../../PhysX/src/buffering/ScbBase.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45812b587f8c45812b58 /* buffering/ScbCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.cpp"; path = "../../PhysX/src/buffering/ScbCloth.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45812bc07f8c45812bc0 /* buffering/ScbMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbMetaData.cpp"; path = "../../PhysX/src/buffering/ScbMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45812c287f8c45812c28 /* buffering/ScbParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.cpp"; path = "../../PhysX/src/buffering/ScbParticleSystem.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45812c907f8c45812c90 /* buffering/ScbScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.cpp"; path = "../../PhysX/src/buffering/ScbScene.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45812cf87f8c45812cf8 /* buffering/ScbScenePvdClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.cpp"; path = "../../PhysX/src/buffering/ScbScenePvdClient.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45812d607f8c45812d60 /* buffering/ScbShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.cpp"; path = "../../PhysX/src/buffering/ScbShape.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45812dc87f8c45812dc8 /* cloth/NpCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.h"; path = "../../PhysX/src/cloth/NpCloth.h"; sourceTree = SOURCE_ROOT; }; + FFFD45812e307f8c45812e30 /* cloth/NpClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.h"; path = "../../PhysX/src/cloth/NpClothFabric.h"; sourceTree = SOURCE_ROOT; }; + FFFD45812e987f8c45812e98 /* cloth/NpClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.h"; path = "../../PhysX/src/cloth/NpClothParticleData.h"; sourceTree = SOURCE_ROOT; }; + FFFD45812f007f8c45812f00 /* cloth/NpCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.cpp"; path = "../../PhysX/src/cloth/NpCloth.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45812f687f8c45812f68 /* cloth/NpClothFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.cpp"; path = "../../PhysX/src/cloth/NpClothFabric.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45812fd07f8c45812fd0 /* cloth/NpClothParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.cpp"; path = "../../PhysX/src/cloth/NpClothParticleData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458130387f8c45813038 /* ../../ImmediateMode/src/NpImmediateMode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "../../ImmediateMode/src/NpImmediateMode.cpp"; path = "../../ImmediateMode/src/NpImmediateMode.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4580e2007f8c4580e200 /* PxActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxActor.h"; path = "../../../Include/PxActor.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580e2687f8c4580e268 /* PxAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAggregate.h"; path = "../../../Include/PxAggregate.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580e2d07f8c4580e2d0 /* PxArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulation.h"; path = "../../../Include/PxArticulation.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580e3387f8c4580e338 /* PxArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationJoint.h"; path = "../../../Include/PxArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580e3a07f8c4580e3a0 /* PxArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationLink.h"; path = "../../../Include/PxArticulationLink.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580e4087f8c4580e408 /* PxBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQuery.h"; path = "../../../Include/PxBatchQuery.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580e4707f8c4580e470 /* PxBatchQueryDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQueryDesc.h"; path = "../../../Include/PxBatchQueryDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580e4d87f8c4580e4d8 /* PxBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhase.h"; path = "../../../Include/PxBroadPhase.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580e5407f8c4580e540 /* PxClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClient.h"; path = "../../../Include/PxClient.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580e5a87f8c4580e5a8 /* PxConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraint.h"; path = "../../../Include/PxConstraint.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580e6107f8c4580e610 /* PxConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintDesc.h"; path = "../../../Include/PxConstraintDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580e6787f8c4580e678 /* PxContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContact.h"; path = "../../../Include/PxContact.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580e6e07f8c4580e6e0 /* PxContactModifyCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContactModifyCallback.h"; path = "../../../Include/PxContactModifyCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580e7487f8c4580e748 /* PxDeletionListener.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDeletionListener.h"; path = "../../../Include/PxDeletionListener.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580e7b07f8c4580e7b0 /* PxFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFiltering.h"; path = "../../../Include/PxFiltering.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580e8187f8c4580e818 /* PxForceMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxForceMode.h"; path = "../../../Include/PxForceMode.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580e8807f8c4580e880 /* PxImmediateMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxImmediateMode.h"; path = "../../../Include/PxImmediateMode.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580e8e87f8c4580e8e8 /* PxLockedData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxLockedData.h"; path = "../../../Include/PxLockedData.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580e9507f8c4580e950 /* PxMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMaterial.h"; path = "../../../Include/PxMaterial.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580e9b87f8c4580e9b8 /* PxPhysXConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysXConfig.h"; path = "../../../Include/PxPhysXConfig.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580ea207f8c4580ea20 /* PxPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysics.h"; path = "../../../Include/PxPhysics.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580ea887f8c4580ea88 /* PxPhysicsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsAPI.h"; path = "../../../Include/PxPhysicsAPI.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580eaf07f8c4580eaf0 /* PxPhysicsSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsSerialization.h"; path = "../../../Include/PxPhysicsSerialization.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580eb587f8c4580eb58 /* PxPhysicsVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsVersion.h"; path = "../../../Include/PxPhysicsVersion.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580ebc07f8c4580ebc0 /* PxPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPruningStructure.h"; path = "../../../Include/PxPruningStructure.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580ec287f8c4580ec28 /* PxQueryFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryFiltering.h"; path = "../../../Include/PxQueryFiltering.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580ec907f8c4580ec90 /* PxQueryReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryReport.h"; path = "../../../Include/PxQueryReport.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580ecf87f8c4580ecf8 /* PxRigidActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActor.h"; path = "../../../Include/PxRigidActor.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580ed607f8c4580ed60 /* PxRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBody.h"; path = "../../../Include/PxRigidBody.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580edc87f8c4580edc8 /* PxRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidDynamic.h"; path = "../../../Include/PxRigidDynamic.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580ee307f8c4580ee30 /* PxRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidStatic.h"; path = "../../../Include/PxRigidStatic.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580ee987f8c4580ee98 /* PxScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxScene.h"; path = "../../../Include/PxScene.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580ef007f8c4580ef00 /* PxSceneDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneDesc.h"; path = "../../../Include/PxSceneDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580ef687f8c4580ef68 /* PxSceneLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneLock.h"; path = "../../../Include/PxSceneLock.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580efd07f8c4580efd0 /* PxShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShape.h"; path = "../../../Include/PxShape.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580f0387f8c4580f038 /* PxSimulationEventCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationEventCallback.h"; path = "../../../Include/PxSimulationEventCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580f0a07f8c4580f0a0 /* PxSimulationStatistics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationStatistics.h"; path = "../../../Include/PxSimulationStatistics.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580f1087f8c4580f108 /* PxSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSpatialIndex.h"; path = "../../../Include/PxSpatialIndex.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580f1707f8c4580f170 /* PxVisualizationParameter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVisualizationParameter.h"; path = "../../../Include/PxVisualizationParameter.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580f1d87f8c4580f1d8 /* PxVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVolumeCache.h"; path = "../../../Include/PxVolumeCache.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580f2407f8c4580f240 /* particles/PxParticleBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBase.h"; path = "../../../Include/particles/PxParticleBase.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580f2a87f8c4580f2a8 /* particles/PxParticleBaseFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBaseFlag.h"; path = "../../../Include/particles/PxParticleBaseFlag.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580f3107f8c4580f310 /* particles/PxParticleCreationData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleCreationData.h"; path = "../../../Include/particles/PxParticleCreationData.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580f3787f8c4580f378 /* particles/PxParticleFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFlag.h"; path = "../../../Include/particles/PxParticleFlag.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580f3e07f8c4580f3e0 /* particles/PxParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluid.h"; path = "../../../Include/particles/PxParticleFluid.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580f4487f8c4580f448 /* particles/PxParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluidReadData.h"; path = "../../../Include/particles/PxParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580f4b07f8c4580f4b0 /* particles/PxParticleReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleReadData.h"; path = "../../../Include/particles/PxParticleReadData.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580f5187f8c4580f518 /* particles/PxParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleSystem.h"; path = "../../../Include/particles/PxParticleSystem.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580f5807f8c4580f580 /* pvd/PxPvdSceneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pvd/PxPvdSceneClient.h"; path = "../../../Include/pvd/PxPvdSceneClient.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580f5e87f8c4580f5e8 /* cloth/PxCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxCloth.h"; path = "../../../Include/cloth/PxCloth.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580f6507f8c4580f650 /* cloth/PxClothCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothCollisionData.h"; path = "../../../Include/cloth/PxClothCollisionData.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580f6b87f8c4580f6b8 /* cloth/PxClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothFabric.h"; path = "../../../Include/cloth/PxClothFabric.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580f7207f8c4580f720 /* cloth/PxClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothParticleData.h"; path = "../../../Include/cloth/PxClothParticleData.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580f7887f8c4580f788 /* cloth/PxClothTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothTypes.h"; path = "../../../Include/cloth/PxClothTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580d2007f8c4580d200 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580d2687f8c4580d268 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580d2d07f8c4580d2d0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580d3387f8c4580d338 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580d3a07f8c4580d3a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580d4087f8c4580d408 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580d4707f8c4580d470 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580d4d87f8c4580d4d8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580d5407f8c4580d540 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580d5a87f8c4580d5a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "core/src/PxAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXMetaData/core/src/PxAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4580d6107f8c4580d610 /* 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 */ - FFF21266ac007fe81266ac00 /* Resources */ = { + FFF245504df07f8c45504df0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -233,7 +233,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC1266ac007fe81266ac00 /* Frameworks */ = { + FFFC45504df07f8c45504df0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -243,52 +243,52 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF81266ac007fe81266ac00 /* Sources */ = { + FFF845504df07f8c45504df0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF12828c387fe812828c38, - FFFF12828ca07fe812828ca0, - FFFF12828d087fe812828d08, - FFFF12828d707fe812828d70, - FFFF12828dd87fe812828dd8, - FFFF12828e407fe812828e40, - FFFF12828ea87fe812828ea8, - FFFF12828f107fe812828f10, - FFFF12828f787fe812828f78, - FFFF12828fe07fe812828fe0, - FFFF128290487fe812829048, - FFFF128290b07fe8128290b0, - FFFF128291187fe812829118, - FFFF128291807fe812829180, - FFFF128291e87fe8128291e8, - FFFF128292507fe812829250, - FFFF128292b87fe8128292b8, - FFFF128293207fe812829320, - FFFF128293887fe812829388, - FFFF128293f07fe8128293f0, - FFFF128294587fe812829458, - FFFF128294c07fe8128294c0, - FFFF128295287fe812829528, - FFFF128295907fe812829590, - FFFF128295f87fe8128295f8, - FFFF128298007fe812829800, - FFFF128298687fe812829868, - FFFF1282a0207fe81282a020, - FFFF1282a0887fe81282a088, - FFFF1282a0f07fe81282a0f0, - FFFF1282a1587fe81282a158, - FFFF1282a1c07fe81282a1c0, - FFFF1282a2287fe81282a228, - FFFF1282a2907fe81282a290, - FFFF1282a2f87fe81282a2f8, - FFFF1282a3607fe81282a360, - FFFF1282a5007fe81282a500, - FFFF1282a5687fe81282a568, - FFFF1282a5d07fe81282a5d0, - FFFF1282a6387fe81282a638, - FFFF12822da87fe812822da8, - FFFF12822e107fe812822e10, + FFFF458116387f8c45811638, + FFFF458116a07f8c458116a0, + FFFF458117087f8c45811708, + FFFF458117707f8c45811770, + FFFF458117d87f8c458117d8, + FFFF458118407f8c45811840, + FFFF458118a87f8c458118a8, + FFFF458119107f8c45811910, + FFFF458119787f8c45811978, + FFFF458119e07f8c458119e0, + FFFF45811a487f8c45811a48, + FFFF45811ab07f8c45811ab0, + FFFF45811b187f8c45811b18, + FFFF45811b807f8c45811b80, + FFFF45811be87f8c45811be8, + FFFF45811c507f8c45811c50, + FFFF45811cb87f8c45811cb8, + FFFF45811d207f8c45811d20, + FFFF45811d887f8c45811d88, + FFFF45811df07f8c45811df0, + FFFF45811e587f8c45811e58, + FFFF45811ec07f8c45811ec0, + FFFF45811f287f8c45811f28, + FFFF45811f907f8c45811f90, + FFFF45811ff87f8c45811ff8, + FFFF458122007f8c45812200, + FFFF458122687f8c45812268, + FFFF45812a207f8c45812a20, + FFFF45812a887f8c45812a88, + FFFF45812af07f8c45812af0, + FFFF45812b587f8c45812b58, + FFFF45812bc07f8c45812bc0, + FFFF45812c287f8c45812c28, + FFFF45812c907f8c45812c90, + FFFF45812cf87f8c45812cf8, + FFFF45812d607f8c45812d60, + FFFF45812f007f8c45812f00, + FFFF45812f687f8c45812f68, + FFFF45812fd07f8c45812fd0, + FFFF458130387f8c45813038, + FFFF4580d5a87f8c4580d5a8, + FFFF4580d6107f8c4580d610, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -297,112 +297,112 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF4126713b07fe8126713b0 /* PBXTargetDependency */ = { + FFF44550e5907f8c4550e590 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA125b5b707fe8125b5b70 /* LowLevel */; - targetProxy = FFF5125b5b707fe8125b5b70 /* PBXContainerItemProxy */; + target = FFFA43c513407f8c43c51340 /* LowLevel */; + targetProxy = FFF543c513407f8c43c51340 /* PBXContainerItemProxy */; }; - FFF4126714107fe812671410 /* PBXTargetDependency */ = { + FFF445507da07f8c45507da0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA1261e8907fe81261e890 /* LowLevelAABB */; - targetProxy = FFF51261e8907fe81261e890 /* PBXContainerItemProxy */; + target = FFFA43ef63707f8c43ef6370 /* LowLevelAABB */; + targetProxy = FFF543ef63707f8c43ef6370 /* PBXContainerItemProxy */; }; - FFF412670fd07fe812670fd0 /* PBXTargetDependency */ = { + FFF44550d7907f8c4550d790 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA130090807fe813009080 /* LowLevelCloth */; - targetProxy = FFF5130090807fe813009080 /* PBXContainerItemProxy */; + target = FFFA43ca21407f8c43ca2140 /* LowLevelCloth */; + targetProxy = FFF543ca21407f8c43ca2140 /* PBXContainerItemProxy */; }; - FFF412670f707fe812670f70 /* PBXTargetDependency */ = { + FFF445507e007f8c45507e00 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA125e9ce07fe8125e9ce0 /* LowLevelDynamics */; - targetProxy = FFF5125e9ce07fe8125e9ce0 /* PBXContainerItemProxy */; + target = FFFA43c7c3807f8c43c7c380 /* LowLevelDynamics */; + targetProxy = FFF543c7c3807f8c43c7c380 /* PBXContainerItemProxy */; }; - FFF4126710307fe812671030 /* PBXTargetDependency */ = { + FFF44550d7f07f8c4550d7f0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA12708bc07fe812708bc0 /* LowLevelParticles */; - targetProxy = FFF512708bc07fe812708bc0 /* PBXContainerItemProxy */; + target = FFFA43f22f607f8c43f22f60 /* LowLevelParticles */; + targetProxy = FFF543f22f607f8c43f22f60 /* PBXContainerItemProxy */; }; - FFF4126750107fe812675010 /* PBXTargetDependency */ = { + FFF44550e5307f8c4550e530 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA12128d507fe812128d50 /* PhysXCommon */; - targetProxy = FFF512128d507fe812128d50 /* PBXContainerItemProxy */; + target = FFFA4389f1b07f8c4389f1b0 /* PhysXCommon */; + targetProxy = FFF54389f1b07f8c4389f1b0 /* PBXContainerItemProxy */; }; - FFF41266aef07fe81266aef0 /* PBXTargetDependency */ = { + FFF445504dc07f8c45504dc0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA121657c07fe8121657c0 /* PxFoundation */; - targetProxy = FFF5121657c07fe8121657c0 /* PBXContainerItemProxy */; + target = FFFA438816407f8c43881640 /* PxFoundation */; + targetProxy = FFF5438816407f8c43881640 /* PBXContainerItemProxy */; }; - FFF41266aba07fe81266aba0 /* PBXTargetDependency */ = { + FFF445504d607f8c45504d60 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA12609f207fe812609f20 /* PxPvdSDK */; - targetProxy = FFF512609f207fe812609f20 /* PBXContainerItemProxy */; + target = FFFA43c33f507f8c43c33f50 /* PxPvdSDK */; + targetProxy = FFF543c33f507f8c43c33f50 /* PBXContainerItemProxy */; }; - FFF4126754d07fe8126754d0 /* PBXTargetDependency */ = { + FFF44550dcb07f8c4550dcb0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA132a0da07fe8132a0da0 /* PxTask */; - targetProxy = FFF5132a0da07fe8132a0da0 /* PBXContainerItemProxy */; + target = FFFA43cdb0507f8c43cdb050 /* PxTask */; + targetProxy = FFF543cdb0507f8c43cdb050 /* PBXContainerItemProxy */; }; - FFF4126754407fe812675440 /* PBXTargetDependency */ = { + FFF44550dc207f8c4550dc20 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA12694cb07fe812694cb0 /* SceneQuery */; - targetProxy = FFF512694cb07fe812694cb0 /* PBXContainerItemProxy */; + target = FFFA455314507f8c45531450 /* SceneQuery */; + targetProxy = FFF5455314507f8c45531450 /* PBXContainerItemProxy */; }; - FFF4126754a07fe8126754a0 /* PBXTargetDependency */ = { + FFF44550dc807f8c4550dc80 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA126992107fe812699210 /* SimulationController */; - targetProxy = FFF5126992107fe812699210 /* PBXContainerItemProxy */; + target = FFFA455359d07f8c455359d0 /* SimulationController */; + targetProxy = FFF5455359d07f8c455359d0 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PhysXCharacterKinematic */ - FFFF12675e107fe812675e10 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD12683c607fe812683c60 /* PhysXExtensions */; }; - FFFF128246787fe812824678 /* CctBoxController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128246787fe812824678 /* CctBoxController.cpp */; }; - FFFF128246e07fe8128246e0 /* CctCapsuleController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128246e07fe8128246e0 /* CctCapsuleController.cpp */; }; - FFFF128247487fe812824748 /* CctCharacterController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128247487fe812824748 /* CctCharacterController.cpp */; }; - FFFF128247b07fe8128247b0 /* CctCharacterControllerCallbacks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128247b07fe8128247b0 /* CctCharacterControllerCallbacks.cpp */; }; - FFFF128248187fe812824818 /* CctCharacterControllerManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128248187fe812824818 /* CctCharacterControllerManager.cpp */; }; - FFFF128248807fe812824880 /* CctController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128248807fe812824880 /* CctController.cpp */; }; - FFFF128248e87fe8128248e8 /* CctObstacleContext.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128248e87fe8128248e8 /* CctObstacleContext.cpp */; }; - FFFF128249507fe812824950 /* CctSweptBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128249507fe812824950 /* CctSweptBox.cpp */; }; - FFFF128249b87fe8128249b8 /* CctSweptCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128249b87fe8128249b8 /* CctSweptCapsule.cpp */; }; - FFFF12824a207fe812824a20 /* CctSweptVolume.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12824a207fe812824a20 /* CctSweptVolume.cpp */; }; + FFFF455141207f8c45514120 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD4551eaf07f8c4551eaf0 /* PhysXExtensions */; }; + FFFF4580ac787f8c4580ac78 /* CctBoxController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4580ac787f8c4580ac78 /* CctBoxController.cpp */; }; + FFFF4580ace07f8c4580ace0 /* CctCapsuleController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4580ace07f8c4580ace0 /* CctCapsuleController.cpp */; }; + FFFF4580ad487f8c4580ad48 /* CctCharacterController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4580ad487f8c4580ad48 /* CctCharacterController.cpp */; }; + FFFF4580adb07f8c4580adb0 /* CctCharacterControllerCallbacks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4580adb07f8c4580adb0 /* CctCharacterControllerCallbacks.cpp */; }; + FFFF4580ae187f8c4580ae18 /* CctCharacterControllerManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4580ae187f8c4580ae18 /* CctCharacterControllerManager.cpp */; }; + FFFF4580ae807f8c4580ae80 /* CctController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4580ae807f8c4580ae80 /* CctController.cpp */; }; + FFFF4580aee87f8c4580aee8 /* CctObstacleContext.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4580aee87f8c4580aee8 /* CctObstacleContext.cpp */; }; + FFFF4580af507f8c4580af50 /* CctSweptBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4580af507f8c4580af50 /* CctSweptBox.cpp */; }; + FFFF4580afb87f8c4580afb8 /* CctSweptCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4580afb87f8c4580afb8 /* CctSweptCapsule.cpp */; }; + FFFF4580b0207f8c4580b020 /* CctSweptVolume.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4580b0207f8c4580b020 /* CctSweptVolume.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD126754e07fe8126754e0 /* PhysXCharacterKinematic */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCharacterKinematic"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD126783e07fe8126783e0 /* PxBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBoxController.h"; path = "../../../Include/characterkinematic/PxBoxController.h"; sourceTree = SOURCE_ROOT; }; - FFFD126784487fe812678448 /* PxCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCapsuleController.h"; path = "../../../Include/characterkinematic/PxCapsuleController.h"; sourceTree = SOURCE_ROOT; }; - FFFD126784b07fe8126784b0 /* PxCharacter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCharacter.h"; path = "../../../Include/characterkinematic/PxCharacter.h"; sourceTree = SOURCE_ROOT; }; - FFFD126785187fe812678518 /* PxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxController.h"; path = "../../../Include/characterkinematic/PxController.h"; sourceTree = SOURCE_ROOT; }; - FFFD126785807fe812678580 /* PxControllerBehavior.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerBehavior.h"; path = "../../../Include/characterkinematic/PxControllerBehavior.h"; sourceTree = SOURCE_ROOT; }; - FFFD126785e87fe8126785e8 /* PxControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerManager.h"; path = "../../../Include/characterkinematic/PxControllerManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD126786507fe812678650 /* PxControllerObstacles.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerObstacles.h"; path = "../../../Include/characterkinematic/PxControllerObstacles.h"; sourceTree = SOURCE_ROOT; }; - FFFD126786b87fe8126786b8 /* PxExtended.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtended.h"; path = "../../../Include/characterkinematic/PxExtended.h"; sourceTree = SOURCE_ROOT; }; - FFFD128242007fe812824200 /* CctBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.h"; path = "../../PhysXCharacterKinematic/src/CctBoxController.h"; sourceTree = SOURCE_ROOT; }; - FFFD128242687fe812824268 /* CctCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.h"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.h"; sourceTree = SOURCE_ROOT; }; - FFFD128242d07fe8128242d0 /* CctCharacterController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.h"; sourceTree = SOURCE_ROOT; }; - FFFD128243387fe812824338 /* CctCharacterControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD128243a07fe8128243a0 /* CctController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.h"; path = "../../PhysXCharacterKinematic/src/CctController.h"; sourceTree = SOURCE_ROOT; }; - FFFD128244087fe812824408 /* CctInternalStructs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctInternalStructs.h"; path = "../../PhysXCharacterKinematic/src/CctInternalStructs.h"; sourceTree = SOURCE_ROOT; }; - FFFD128244707fe812824470 /* CctObstacleContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.h"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD128244d87fe8128244d8 /* CctSweptBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.h"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD128245407fe812824540 /* CctSweptCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.h"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFD128245a87fe8128245a8 /* CctSweptVolume.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.h"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.h"; sourceTree = SOURCE_ROOT; }; - FFFD128246107fe812824610 /* CctUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctUtils.h"; path = "../../PhysXCharacterKinematic/src/CctUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD128246787fe812824678 /* CctBoxController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.cpp"; path = "../../PhysXCharacterKinematic/src/CctBoxController.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128246e07fe8128246e0 /* CctCapsuleController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128247487fe812824748 /* CctCharacterController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128247b07fe8128247b0 /* CctCharacterControllerCallbacks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerCallbacks.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerCallbacks.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128248187fe812824818 /* CctCharacterControllerManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128248807fe812824880 /* CctController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.cpp"; path = "../../PhysXCharacterKinematic/src/CctController.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128248e87fe8128248e8 /* CctObstacleContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.cpp"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128249507fe812824950 /* CctSweptBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128249b87fe8128249b8 /* CctSweptCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD12824a207fe812824a20 /* CctSweptVolume.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4550d8c07f8c4550d8c0 /* PhysXCharacterKinematic */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCharacterKinematic"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD45514ae07f8c45514ae0 /* PxBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBoxController.h"; path = "../../../Include/characterkinematic/PxBoxController.h"; sourceTree = SOURCE_ROOT; }; + FFFD45514b487f8c45514b48 /* PxCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCapsuleController.h"; path = "../../../Include/characterkinematic/PxCapsuleController.h"; sourceTree = SOURCE_ROOT; }; + FFFD45514bb07f8c45514bb0 /* PxCharacter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCharacter.h"; path = "../../../Include/characterkinematic/PxCharacter.h"; sourceTree = SOURCE_ROOT; }; + FFFD45514c187f8c45514c18 /* PxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxController.h"; path = "../../../Include/characterkinematic/PxController.h"; sourceTree = SOURCE_ROOT; }; + FFFD45514c807f8c45514c80 /* PxControllerBehavior.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerBehavior.h"; path = "../../../Include/characterkinematic/PxControllerBehavior.h"; sourceTree = SOURCE_ROOT; }; + FFFD45514ce87f8c45514ce8 /* PxControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerManager.h"; path = "../../../Include/characterkinematic/PxControllerManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD45514d507f8c45514d50 /* PxControllerObstacles.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerObstacles.h"; path = "../../../Include/characterkinematic/PxControllerObstacles.h"; sourceTree = SOURCE_ROOT; }; + FFFD45514db87f8c45514db8 /* PxExtended.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtended.h"; path = "../../../Include/characterkinematic/PxExtended.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580a8007f8c4580a800 /* CctBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.h"; path = "../../PhysXCharacterKinematic/src/CctBoxController.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580a8687f8c4580a868 /* CctCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.h"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580a8d07f8c4580a8d0 /* CctCharacterController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580a9387f8c4580a938 /* CctCharacterControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580a9a07f8c4580a9a0 /* CctController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.h"; path = "../../PhysXCharacterKinematic/src/CctController.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580aa087f8c4580aa08 /* CctInternalStructs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctInternalStructs.h"; path = "../../PhysXCharacterKinematic/src/CctInternalStructs.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580aa707f8c4580aa70 /* CctObstacleContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.h"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580aad87f8c4580aad8 /* CctSweptBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.h"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580ab407f8c4580ab40 /* CctSweptCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.h"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580aba87f8c4580aba8 /* CctSweptVolume.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.h"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580ac107f8c4580ac10 /* CctUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctUtils.h"; path = "../../PhysXCharacterKinematic/src/CctUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580ac787f8c4580ac78 /* CctBoxController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.cpp"; path = "../../PhysXCharacterKinematic/src/CctBoxController.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4580ace07f8c4580ace0 /* CctCapsuleController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4580ad487f8c4580ad48 /* CctCharacterController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4580adb07f8c4580adb0 /* CctCharacterControllerCallbacks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerCallbacks.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerCallbacks.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4580ae187f8c4580ae18 /* CctCharacterControllerManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4580ae807f8c4580ae80 /* CctController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.cpp"; path = "../../PhysXCharacterKinematic/src/CctController.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4580aee87f8c4580aee8 /* CctObstacleContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.cpp"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4580af507f8c4580af50 /* CctSweptBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4580afb87f8c4580afb8 /* CctSweptCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4580b0207f8c4580b020 /* CctSweptVolume.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2126754e07fe8126754e0 /* Resources */ = { + FFF24550d8c07f8c4550d8c0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -412,7 +412,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC126754e07fe8126754e0 /* Frameworks */ = { + FFFC4550d8c07f8c4550d8c0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -422,20 +422,20 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8126754e07fe8126754e0 /* Sources */ = { + FFF84550d8c07f8c4550d8c0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF128246787fe812824678, - FFFF128246e07fe8128246e0, - FFFF128247487fe812824748, - FFFF128247b07fe8128247b0, - FFFF128248187fe812824818, - FFFF128248807fe812824880, - FFFF128248e87fe8128248e8, - FFFF128249507fe812824950, - FFFF128249b87fe8128249b8, - FFFF12824a207fe812824a20, + FFFF4580ac787f8c4580ac78, + FFFF4580ace07f8c4580ace0, + FFFF4580ad487f8c4580ad48, + FFFF4580adb07f8c4580adb0, + FFFF4580ae187f8c4580ae18, + FFFF4580ae807f8c4580ae80, + FFFF4580aee87f8c4580aee8, + FFFF4580af507f8c4580af50, + FFFF4580afb87f8c4580afb8, + FFFF4580b0207f8c4580b020, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -444,91 +444,91 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF412677ec07fe812677ec0 /* PBXTargetDependency */ = { + FFF4455132f07f8c455132f0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA12128d507fe812128d50 /* PhysXCommon */; - targetProxy = FFF512128d507fe812128d50 /* PBXContainerItemProxy */; + target = FFFA4389f1b07f8c4389f1b0 /* PhysXCommon */; + targetProxy = FFF54389f1b07f8c4389f1b0 /* PBXContainerItemProxy */; }; - FFF412675e107fe812675e10 /* PBXTargetDependency */ = { + FFF4455141207f8c45514120 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA12683c607fe812683c60 /* PhysXExtensions */; - targetProxy = FFF512683c607fe812683c60 /* PBXContainerItemProxy */; + target = FFFA4551eaf07f8c4551eaf0 /* PhysXExtensions */; + targetProxy = FFF54551eaf07f8c4551eaf0 /* PBXContainerItemProxy */; }; - FFF4126724907fe812672490 /* PBXTargetDependency */ = { + FFF4455149607f8c45514960 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA121657c07fe8121657c0 /* PxFoundation */; - targetProxy = FFF5121657c07fe8121657c0 /* PBXContainerItemProxy */; + target = FFFA438816407f8c43881640 /* PxFoundation */; + targetProxy = FFF5438816407f8c43881640 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PhysXVehicle */ - FFFF128308087fe812830808 /* PxVehicleComponents.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128308087fe812830808 /* PxVehicleComponents.cpp */; }; - FFFF128308707fe812830870 /* PxVehicleDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128308707fe812830870 /* PxVehicleDrive.cpp */; }; - FFFF128308d87fe8128308d8 /* PxVehicleDrive4W.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128308d87fe8128308d8 /* PxVehicleDrive4W.cpp */; }; - FFFF128309407fe812830940 /* PxVehicleDriveNW.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128309407fe812830940 /* PxVehicleDriveNW.cpp */; }; - FFFF128309a87fe8128309a8 /* PxVehicleDriveTank.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128309a87fe8128309a8 /* PxVehicleDriveTank.cpp */; }; - FFFF12830a107fe812830a10 /* PxVehicleMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12830a107fe812830a10 /* PxVehicleMetaData.cpp */; }; - FFFF12830a787fe812830a78 /* PxVehicleNoDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12830a787fe812830a78 /* PxVehicleNoDrive.cpp */; }; - FFFF12830ae07fe812830ae0 /* PxVehicleSDK.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12830ae07fe812830ae0 /* PxVehicleSDK.cpp */; }; - FFFF12830b487fe812830b48 /* PxVehicleSerialization.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12830b487fe812830b48 /* PxVehicleSerialization.cpp */; }; - FFFF12830bb07fe812830bb0 /* PxVehicleSuspWheelTire4.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12830bb07fe812830bb0 /* PxVehicleSuspWheelTire4.cpp */; }; - FFFF12830c187fe812830c18 /* PxVehicleTireFriction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12830c187fe812830c18 /* PxVehicleTireFriction.cpp */; }; - FFFF12830c807fe812830c80 /* PxVehicleUpdate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12830c807fe812830c80 /* PxVehicleUpdate.cpp */; }; - FFFF12830ce87fe812830ce8 /* PxVehicleWheels.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12830ce87fe812830ce8 /* PxVehicleWheels.cpp */; }; - FFFF12830d507fe812830d50 /* VehicleUtilControl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12830d507fe812830d50 /* VehicleUtilControl.cpp */; }; - FFFF12830db87fe812830db8 /* VehicleUtilSetup.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12830db87fe812830db8 /* VehicleUtilSetup.cpp */; }; - FFFF12830e207fe812830e20 /* VehicleUtilTelemetry.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12830e207fe812830e20 /* VehicleUtilTelemetry.cpp */; }; - FFFF126823387fe812682338 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD126823387fe812682338 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */; }; - FFFF126823a07fe8126823a0 /* src/PxVehicleMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD126823a07fe8126823a0 /* src/PxVehicleMetaDataObjects.cpp */; }; + FFFF45815a087f8c45815a08 /* PxVehicleComponents.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45815a087f8c45815a08 /* PxVehicleComponents.cpp */; }; + FFFF45815a707f8c45815a70 /* PxVehicleDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45815a707f8c45815a70 /* PxVehicleDrive.cpp */; }; + FFFF45815ad87f8c45815ad8 /* PxVehicleDrive4W.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45815ad87f8c45815ad8 /* PxVehicleDrive4W.cpp */; }; + FFFF45815b407f8c45815b40 /* PxVehicleDriveNW.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45815b407f8c45815b40 /* PxVehicleDriveNW.cpp */; }; + FFFF45815ba87f8c45815ba8 /* PxVehicleDriveTank.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45815ba87f8c45815ba8 /* PxVehicleDriveTank.cpp */; }; + FFFF45815c107f8c45815c10 /* PxVehicleMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45815c107f8c45815c10 /* PxVehicleMetaData.cpp */; }; + FFFF45815c787f8c45815c78 /* PxVehicleNoDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45815c787f8c45815c78 /* PxVehicleNoDrive.cpp */; }; + FFFF45815ce07f8c45815ce0 /* PxVehicleSDK.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45815ce07f8c45815ce0 /* PxVehicleSDK.cpp */; }; + FFFF45815d487f8c45815d48 /* PxVehicleSerialization.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45815d487f8c45815d48 /* PxVehicleSerialization.cpp */; }; + FFFF45815db07f8c45815db0 /* PxVehicleSuspWheelTire4.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45815db07f8c45815db0 /* PxVehicleSuspWheelTire4.cpp */; }; + FFFF45815e187f8c45815e18 /* PxVehicleTireFriction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45815e187f8c45815e18 /* PxVehicleTireFriction.cpp */; }; + FFFF45815e807f8c45815e80 /* PxVehicleUpdate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45815e807f8c45815e80 /* PxVehicleUpdate.cpp */; }; + FFFF45815ee87f8c45815ee8 /* PxVehicleWheels.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45815ee87f8c45815ee8 /* PxVehicleWheels.cpp */; }; + FFFF45815f507f8c45815f50 /* VehicleUtilControl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45815f507f8c45815f50 /* VehicleUtilControl.cpp */; }; + FFFF45815fb87f8c45815fb8 /* VehicleUtilSetup.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45815fb87f8c45815fb8 /* VehicleUtilSetup.cpp */; }; + FFFF458160207f8c45816020 /* VehicleUtilTelemetry.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458160207f8c45816020 /* VehicleUtilTelemetry.cpp */; }; + FFFF455209c87f8c455209c8 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD455209c87f8c455209c8 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */; }; + FFFF45520a307f8c45520a30 /* src/PxVehicleMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD45520a307f8c45520a30 /* src/PxVehicleMetaDataObjects.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD126728307fe812672830 /* PhysXVehicle */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXVehicle"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD128268007fe812826800 /* PxVehicleComponents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.h"; path = "../../../Include/vehicle/PxVehicleComponents.h"; sourceTree = SOURCE_ROOT; }; - FFFD128268687fe812826868 /* PxVehicleDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.h"; path = "../../../Include/vehicle/PxVehicleDrive.h"; sourceTree = SOURCE_ROOT; }; - FFFD128268d07fe8128268d0 /* PxVehicleDrive4W.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.h"; path = "../../../Include/vehicle/PxVehicleDrive4W.h"; sourceTree = SOURCE_ROOT; }; - FFFD128269387fe812826938 /* PxVehicleDriveNW.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.h"; path = "../../../Include/vehicle/PxVehicleDriveNW.h"; sourceTree = SOURCE_ROOT; }; - FFFD128269a07fe8128269a0 /* PxVehicleDriveTank.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.h"; path = "../../../Include/vehicle/PxVehicleDriveTank.h"; sourceTree = SOURCE_ROOT; }; - FFFD12826a087fe812826a08 /* PxVehicleNoDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.h"; path = "../../../Include/vehicle/PxVehicleNoDrive.h"; sourceTree = SOURCE_ROOT; }; - FFFD12826a707fe812826a70 /* PxVehicleSDK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.h"; path = "../../../Include/vehicle/PxVehicleSDK.h"; sourceTree = SOURCE_ROOT; }; - FFFD12826ad87fe812826ad8 /* PxVehicleShaders.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleShaders.h"; path = "../../../Include/vehicle/PxVehicleShaders.h"; sourceTree = SOURCE_ROOT; }; - FFFD12826b407fe812826b40 /* PxVehicleTireFriction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.h"; path = "../../../Include/vehicle/PxVehicleTireFriction.h"; sourceTree = SOURCE_ROOT; }; - FFFD12826ba87fe812826ba8 /* PxVehicleUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.h"; path = "../../../Include/vehicle/PxVehicleUpdate.h"; sourceTree = SOURCE_ROOT; }; - FFFD12826c107fe812826c10 /* PxVehicleUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtil.h"; path = "../../../Include/vehicle/PxVehicleUtil.h"; sourceTree = SOURCE_ROOT; }; - FFFD12826c787fe812826c78 /* PxVehicleUtilControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilControl.h"; path = "../../../Include/vehicle/PxVehicleUtilControl.h"; sourceTree = SOURCE_ROOT; }; - FFFD12826ce07fe812826ce0 /* PxVehicleUtilSetup.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilSetup.h"; path = "../../../Include/vehicle/PxVehicleUtilSetup.h"; sourceTree = SOURCE_ROOT; }; - FFFD12826d487fe812826d48 /* PxVehicleUtilTelemetry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilTelemetry.h"; path = "../../../Include/vehicle/PxVehicleUtilTelemetry.h"; sourceTree = SOURCE_ROOT; }; - FFFD12826db07fe812826db0 /* PxVehicleWheels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.h"; path = "../../../Include/vehicle/PxVehicleWheels.h"; sourceTree = SOURCE_ROOT; }; - FFFD128306007fe812830600 /* PxVehicleDefaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDefaults.h"; path = "../../PhysXVehicle/src/PxVehicleDefaults.h"; sourceTree = SOURCE_ROOT; }; - FFFD128306687fe812830668 /* PxVehicleLinearMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleLinearMath.h"; path = "../../PhysXVehicle/src/PxVehicleLinearMath.h"; sourceTree = SOURCE_ROOT; }; - FFFD128306d07fe8128306d0 /* PxVehicleSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.h"; path = "../../PhysXVehicle/src/PxVehicleSerialization.h"; sourceTree = SOURCE_ROOT; }; - FFFD128307387fe812830738 /* PxVehicleSuspLimitConstraintShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspLimitConstraintShader.h"; path = "../../PhysXVehicle/src/PxVehicleSuspLimitConstraintShader.h"; sourceTree = SOURCE_ROOT; }; - FFFD128307a07fe8128307a0 /* PxVehicleSuspWheelTire4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.h"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.h"; sourceTree = SOURCE_ROOT; }; - FFFD128308087fe812830808 /* PxVehicleComponents.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.cpp"; path = "../../PhysXVehicle/src/PxVehicleComponents.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128308707fe812830870 /* PxVehicleDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128308d87fe8128308d8 /* PxVehicleDrive4W.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive4W.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128309407fe812830940 /* PxVehicleDriveNW.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveNW.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128309a87fe8128309a8 /* PxVehicleDriveTank.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveTank.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD12830a107fe812830a10 /* PxVehicleMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleMetaData.cpp"; path = "../../PhysXVehicle/src/PxVehicleMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD12830a787fe812830a78 /* PxVehicleNoDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleNoDrive.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD12830ae07fe812830ae0 /* PxVehicleSDK.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.cpp"; path = "../../PhysXVehicle/src/PxVehicleSDK.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD12830b487fe812830b48 /* PxVehicleSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.cpp"; path = "../../PhysXVehicle/src/PxVehicleSerialization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD12830bb07fe812830bb0 /* PxVehicleSuspWheelTire4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.cpp"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD12830c187fe812830c18 /* PxVehicleTireFriction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.cpp"; path = "../../PhysXVehicle/src/PxVehicleTireFriction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD12830c807fe812830c80 /* PxVehicleUpdate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.cpp"; path = "../../PhysXVehicle/src/PxVehicleUpdate.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD12830ce87fe812830ce8 /* PxVehicleWheels.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.cpp"; path = "../../PhysXVehicle/src/PxVehicleWheels.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD12830d507fe812830d50 /* VehicleUtilControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilControl.cpp"; path = "../../PhysXVehicle/src/VehicleUtilControl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD12830db87fe812830db8 /* VehicleUtilSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilSetup.cpp"; path = "../../PhysXVehicle/src/VehicleUtilSetup.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD12830e207fe812830e20 /* VehicleUtilTelemetry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilTelemetry.cpp"; path = "../../PhysXVehicle/src/VehicleUtilTelemetry.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD126822007fe812682200 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; - FFFD126822687fe812682268 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFD126822d07fe8126822d0 /* include/PxVehicleMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFD126823387fe812682338 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXVehicle/src/PhysXMetaData/src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD126823a07fe8126823a0 /* src/PxVehicleMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxVehicleMetaDataObjects.cpp"; path = "../../PhysXVehicle/src/PhysXMetaData/src/PxVehicleMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4550ed307f8c4550ed30 /* PhysXVehicle */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXVehicle"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD4580c6007f8c4580c600 /* PxVehicleComponents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.h"; path = "../../../Include/vehicle/PxVehicleComponents.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580c6687f8c4580c668 /* PxVehicleDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.h"; path = "../../../Include/vehicle/PxVehicleDrive.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580c6d07f8c4580c6d0 /* PxVehicleDrive4W.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.h"; path = "../../../Include/vehicle/PxVehicleDrive4W.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580c7387f8c4580c738 /* PxVehicleDriveNW.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.h"; path = "../../../Include/vehicle/PxVehicleDriveNW.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580c7a07f8c4580c7a0 /* PxVehicleDriveTank.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.h"; path = "../../../Include/vehicle/PxVehicleDriveTank.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580c8087f8c4580c808 /* PxVehicleNoDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.h"; path = "../../../Include/vehicle/PxVehicleNoDrive.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580c8707f8c4580c870 /* PxVehicleSDK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.h"; path = "../../../Include/vehicle/PxVehicleSDK.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580c8d87f8c4580c8d8 /* PxVehicleShaders.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleShaders.h"; path = "../../../Include/vehicle/PxVehicleShaders.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580c9407f8c4580c940 /* PxVehicleTireFriction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.h"; path = "../../../Include/vehicle/PxVehicleTireFriction.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580c9a87f8c4580c9a8 /* PxVehicleUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.h"; path = "../../../Include/vehicle/PxVehicleUpdate.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580ca107f8c4580ca10 /* PxVehicleUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtil.h"; path = "../../../Include/vehicle/PxVehicleUtil.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580ca787f8c4580ca78 /* PxVehicleUtilControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilControl.h"; path = "../../../Include/vehicle/PxVehicleUtilControl.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580cae07f8c4580cae0 /* PxVehicleUtilSetup.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilSetup.h"; path = "../../../Include/vehicle/PxVehicleUtilSetup.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580cb487f8c4580cb48 /* PxVehicleUtilTelemetry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilTelemetry.h"; path = "../../../Include/vehicle/PxVehicleUtilTelemetry.h"; sourceTree = SOURCE_ROOT; }; + FFFD4580cbb07f8c4580cbb0 /* PxVehicleWheels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.h"; path = "../../../Include/vehicle/PxVehicleWheels.h"; sourceTree = SOURCE_ROOT; }; + FFFD458158007f8c45815800 /* PxVehicleDefaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDefaults.h"; path = "../../PhysXVehicle/src/PxVehicleDefaults.h"; sourceTree = SOURCE_ROOT; }; + FFFD458158687f8c45815868 /* PxVehicleLinearMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleLinearMath.h"; path = "../../PhysXVehicle/src/PxVehicleLinearMath.h"; sourceTree = SOURCE_ROOT; }; + FFFD458158d07f8c458158d0 /* PxVehicleSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.h"; path = "../../PhysXVehicle/src/PxVehicleSerialization.h"; sourceTree = SOURCE_ROOT; }; + FFFD458159387f8c45815938 /* PxVehicleSuspLimitConstraintShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspLimitConstraintShader.h"; path = "../../PhysXVehicle/src/PxVehicleSuspLimitConstraintShader.h"; sourceTree = SOURCE_ROOT; }; + FFFD458159a07f8c458159a0 /* PxVehicleSuspWheelTire4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.h"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.h"; sourceTree = SOURCE_ROOT; }; + FFFD45815a087f8c45815a08 /* PxVehicleComponents.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.cpp"; path = "../../PhysXVehicle/src/PxVehicleComponents.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45815a707f8c45815a70 /* PxVehicleDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45815ad87f8c45815ad8 /* PxVehicleDrive4W.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive4W.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45815b407f8c45815b40 /* PxVehicleDriveNW.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveNW.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45815ba87f8c45815ba8 /* PxVehicleDriveTank.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveTank.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45815c107f8c45815c10 /* PxVehicleMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleMetaData.cpp"; path = "../../PhysXVehicle/src/PxVehicleMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45815c787f8c45815c78 /* PxVehicleNoDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleNoDrive.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45815ce07f8c45815ce0 /* PxVehicleSDK.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.cpp"; path = "../../PhysXVehicle/src/PxVehicleSDK.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45815d487f8c45815d48 /* PxVehicleSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.cpp"; path = "../../PhysXVehicle/src/PxVehicleSerialization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45815db07f8c45815db0 /* PxVehicleSuspWheelTire4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.cpp"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45815e187f8c45815e18 /* PxVehicleTireFriction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.cpp"; path = "../../PhysXVehicle/src/PxVehicleTireFriction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45815e807f8c45815e80 /* PxVehicleUpdate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.cpp"; path = "../../PhysXVehicle/src/PxVehicleUpdate.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45815ee87f8c45815ee8 /* PxVehicleWheels.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.cpp"; path = "../../PhysXVehicle/src/PxVehicleWheels.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45815f507f8c45815f50 /* VehicleUtilControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilControl.cpp"; path = "../../PhysXVehicle/src/VehicleUtilControl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45815fb87f8c45815fb8 /* VehicleUtilSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilSetup.cpp"; path = "../../PhysXVehicle/src/VehicleUtilSetup.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458160207f8c45816020 /* VehicleUtilTelemetry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilTelemetry.cpp"; path = "../../PhysXVehicle/src/VehicleUtilTelemetry.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD455208907f8c45520890 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; + FFFD455208f87f8c455208f8 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFD455209607f8c45520960 /* include/PxVehicleMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFD455209c87f8c455209c8 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXVehicle/src/PhysXMetaData/src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45520a307f8c45520a30 /* 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 */ - FFF2126728307fe812672830 /* Resources */ = { + FFF24550ed307f8c4550ed30 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -538,7 +538,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC126728307fe812672830 /* Frameworks */ = { + FFFC4550ed307f8c4550ed30 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -548,28 +548,28 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8126728307fe812672830 /* Sources */ = { + FFF84550ed307f8c4550ed30 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF128308087fe812830808, - FFFF128308707fe812830870, - FFFF128308d87fe8128308d8, - FFFF128309407fe812830940, - FFFF128309a87fe8128309a8, - FFFF12830a107fe812830a10, - FFFF12830a787fe812830a78, - FFFF12830ae07fe812830ae0, - FFFF12830b487fe812830b48, - FFFF12830bb07fe812830bb0, - FFFF12830c187fe812830c18, - FFFF12830c807fe812830c80, - FFFF12830ce87fe812830ce8, - FFFF12830d507fe812830d50, - FFFF12830db87fe812830db8, - FFFF12830e207fe812830e20, - FFFF126823387fe812682338, - FFFF126823a07fe8126823a0, + FFFF45815a087f8c45815a08, + FFFF45815a707f8c45815a70, + FFFF45815ad87f8c45815ad8, + FFFF45815b407f8c45815b40, + FFFF45815ba87f8c45815ba8, + FFFF45815c107f8c45815c10, + FFFF45815c787f8c45815c78, + FFFF45815ce07f8c45815ce0, + FFFF45815d487f8c45815d48, + FFFF45815db07f8c45815db0, + FFFF45815e187f8c45815e18, + FFFF45815e807f8c45815e80, + FFFF45815ee87f8c45815ee8, + FFFF45815f507f8c45815f50, + FFFF45815fb87f8c45815fb8, + FFFF458160207f8c45816020, + FFFF455209c87f8c455209c8, + FFFF45520a307f8c45520a30, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -581,220 +581,220 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PhysXExtensions */ - FFFF128326e87fe8128326e8 /* ExtBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128326e87fe8128326e8 /* ExtBroadPhase.cpp */; }; - FFFF128327507fe812832750 /* ExtClothFabricCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128327507fe812832750 /* ExtClothFabricCooker.cpp */; }; - FFFF128327b87fe8128327b8 /* ExtClothGeodesicTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128327b87fe8128327b8 /* ExtClothGeodesicTetherCooker.cpp */; }; - FFFF128328207fe812832820 /* ExtClothMeshQuadifier.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128328207fe812832820 /* ExtClothMeshQuadifier.cpp */; }; - FFFF128328887fe812832888 /* ExtClothSimpleTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128328887fe812832888 /* ExtClothSimpleTetherCooker.cpp */; }; - FFFF128328f07fe8128328f0 /* ExtCollection.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128328f07fe8128328f0 /* ExtCollection.cpp */; }; - FFFF128329587fe812832958 /* ExtConvexMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128329587fe812832958 /* ExtConvexMeshExt.cpp */; }; - FFFF128329c07fe8128329c0 /* ExtCpuWorkerThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128329c07fe8128329c0 /* ExtCpuWorkerThread.cpp */; }; - FFFF12832a287fe812832a28 /* ExtD6Joint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12832a287fe812832a28 /* ExtD6Joint.cpp */; }; - FFFF12832a907fe812832a90 /* ExtD6JointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12832a907fe812832a90 /* ExtD6JointSolverPrep.cpp */; }; - FFFF12832af87fe812832af8 /* ExtDefaultCpuDispatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12832af87fe812832af8 /* ExtDefaultCpuDispatcher.cpp */; }; - FFFF12832b607fe812832b60 /* ExtDefaultErrorCallback.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12832b607fe812832b60 /* ExtDefaultErrorCallback.cpp */; }; - FFFF12832bc87fe812832bc8 /* ExtDefaultSimulationFilterShader.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12832bc87fe812832bc8 /* ExtDefaultSimulationFilterShader.cpp */; }; - FFFF12832c307fe812832c30 /* ExtDefaultStreams.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12832c307fe812832c30 /* ExtDefaultStreams.cpp */; }; - FFFF12832c987fe812832c98 /* ExtDistanceJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12832c987fe812832c98 /* ExtDistanceJoint.cpp */; }; - FFFF12832d007fe812832d00 /* ExtDistanceJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12832d007fe812832d00 /* ExtDistanceJointSolverPrep.cpp */; }; - FFFF12832d687fe812832d68 /* ExtExtensions.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12832d687fe812832d68 /* ExtExtensions.cpp */; }; - FFFF12832dd07fe812832dd0 /* ExtFixedJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12832dd07fe812832dd0 /* ExtFixedJoint.cpp */; }; - FFFF12832e387fe812832e38 /* ExtFixedJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12832e387fe812832e38 /* ExtFixedJointSolverPrep.cpp */; }; - FFFF12832ea07fe812832ea0 /* ExtJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12832ea07fe812832ea0 /* ExtJoint.cpp */; }; - FFFF12832f087fe812832f08 /* ExtMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12832f087fe812832f08 /* ExtMetaData.cpp */; }; - FFFF12832f707fe812832f70 /* ExtParticleExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12832f707fe812832f70 /* ExtParticleExt.cpp */; }; - FFFF12832fd87fe812832fd8 /* ExtPrismaticJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12832fd87fe812832fd8 /* ExtPrismaticJoint.cpp */; }; - FFFF128330407fe812833040 /* ExtPrismaticJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128330407fe812833040 /* ExtPrismaticJointSolverPrep.cpp */; }; - FFFF128330a87fe8128330a8 /* ExtPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128330a87fe8128330a8 /* ExtPvd.cpp */; }; - FFFF128331107fe812833110 /* ExtPxStringTable.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128331107fe812833110 /* ExtPxStringTable.cpp */; }; - FFFF128331787fe812833178 /* ExtRaycastCCD.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128331787fe812833178 /* ExtRaycastCCD.cpp */; }; - FFFF128331e07fe8128331e0 /* ExtRevoluteJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128331e07fe8128331e0 /* ExtRevoluteJoint.cpp */; }; - FFFF128332487fe812833248 /* ExtRevoluteJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128332487fe812833248 /* ExtRevoluteJointSolverPrep.cpp */; }; - FFFF128332b07fe8128332b0 /* ExtRigidBodyExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128332b07fe8128332b0 /* ExtRigidBodyExt.cpp */; }; - FFFF128333187fe812833318 /* ExtSceneQueryExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128333187fe812833318 /* ExtSceneQueryExt.cpp */; }; - FFFF128333807fe812833380 /* ExtSimpleFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128333807fe812833380 /* ExtSimpleFactory.cpp */; }; - FFFF128333e87fe8128333e8 /* ExtSmoothNormals.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128333e87fe8128333e8 /* ExtSmoothNormals.cpp */; }; - FFFF128334507fe812833450 /* ExtSphericalJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128334507fe812833450 /* ExtSphericalJoint.cpp */; }; - FFFF128334b87fe8128334b8 /* ExtSphericalJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128334b87fe8128334b8 /* ExtSphericalJointSolverPrep.cpp */; }; - FFFF128335207fe812833520 /* ExtTriangleMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128335207fe812833520 /* ExtTriangleMeshExt.cpp */; }; - FFFF12836ad07fe812836ad0 /* SnSerialUtils.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD12836ad07fe812836ad0 /* SnSerialUtils.cpp */; }; - FFFF12836b387fe812836b38 /* SnSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD12836b387fe812836b38 /* SnSerialization.cpp */; }; - FFFF12836ba07fe812836ba0 /* SnSerializationRegistry.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD12836ba07fe812836ba0 /* SnSerializationRegistry.cpp */; }; - FFFF12836ee07fe812836ee0 /* Binary/SnBinaryDeserialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD12836ee07fe812836ee0 /* Binary/SnBinaryDeserialization.cpp */; }; - FFFF12836f487fe812836f48 /* Binary/SnBinarySerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD12836f487fe812836f48 /* Binary/SnBinarySerialization.cpp */; }; - FFFF12836fb07fe812836fb0 /* Binary/SnConvX.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD12836fb07fe812836fb0 /* Binary/SnConvX.cpp */; }; - FFFF128370187fe812837018 /* Binary/SnConvX_Align.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD128370187fe812837018 /* Binary/SnConvX_Align.cpp */; }; - FFFF128370807fe812837080 /* Binary/SnConvX_Convert.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD128370807fe812837080 /* Binary/SnConvX_Convert.cpp */; }; - FFFF128370e87fe8128370e8 /* Binary/SnConvX_Error.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD128370e87fe8128370e8 /* Binary/SnConvX_Error.cpp */; }; - FFFF128371507fe812837150 /* Binary/SnConvX_MetaData.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD128371507fe812837150 /* Binary/SnConvX_MetaData.cpp */; }; - FFFF128371b87fe8128371b8 /* Binary/SnConvX_Output.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD128371b87fe8128371b8 /* Binary/SnConvX_Output.cpp */; }; - FFFF128372207fe812837220 /* Binary/SnConvX_Union.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD128372207fe812837220 /* Binary/SnConvX_Union.cpp */; }; - FFFF128372887fe812837288 /* Binary/SnSerializationContext.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD128372887fe812837288 /* Binary/SnSerializationContext.cpp */; }; - FFFF12837b787fe812837b78 /* Xml/SnJointRepXSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD12837b787fe812837b78 /* Xml/SnJointRepXSerializer.cpp */; }; - FFFF12837be07fe812837be0 /* Xml/SnRepXCoreSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD12837be07fe812837be0 /* Xml/SnRepXCoreSerializer.cpp */; }; - FFFF12837c487fe812837c48 /* Xml/SnRepXUpgrader.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD12837c487fe812837c48 /* Xml/SnRepXUpgrader.cpp */; }; - FFFF12837cb07fe812837cb0 /* Xml/SnXmlSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD12837cb07fe812837cb0 /* Xml/SnXmlSerialization.cpp */; }; - FFFF12834ae07fe812834ae0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD12834ae07fe812834ae0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */; }; + FFFF458180e87f8c458180e8 /* ExtBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458180e87f8c458180e8 /* ExtBroadPhase.cpp */; }; + FFFF458181507f8c45818150 /* ExtClothFabricCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458181507f8c45818150 /* ExtClothFabricCooker.cpp */; }; + FFFF458181b87f8c458181b8 /* ExtClothGeodesicTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458181b87f8c458181b8 /* ExtClothGeodesicTetherCooker.cpp */; }; + FFFF458182207f8c45818220 /* ExtClothMeshQuadifier.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458182207f8c45818220 /* ExtClothMeshQuadifier.cpp */; }; + FFFF458182887f8c45818288 /* ExtClothSimpleTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458182887f8c45818288 /* ExtClothSimpleTetherCooker.cpp */; }; + FFFF458182f07f8c458182f0 /* ExtCollection.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458182f07f8c458182f0 /* ExtCollection.cpp */; }; + FFFF458183587f8c45818358 /* ExtConvexMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458183587f8c45818358 /* ExtConvexMeshExt.cpp */; }; + FFFF458183c07f8c458183c0 /* ExtCpuWorkerThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458183c07f8c458183c0 /* ExtCpuWorkerThread.cpp */; }; + FFFF458184287f8c45818428 /* ExtD6Joint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458184287f8c45818428 /* ExtD6Joint.cpp */; }; + FFFF458184907f8c45818490 /* ExtD6JointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458184907f8c45818490 /* ExtD6JointSolverPrep.cpp */; }; + FFFF458184f87f8c458184f8 /* ExtDefaultCpuDispatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458184f87f8c458184f8 /* ExtDefaultCpuDispatcher.cpp */; }; + FFFF458185607f8c45818560 /* ExtDefaultErrorCallback.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458185607f8c45818560 /* ExtDefaultErrorCallback.cpp */; }; + FFFF458185c87f8c458185c8 /* ExtDefaultSimulationFilterShader.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458185c87f8c458185c8 /* ExtDefaultSimulationFilterShader.cpp */; }; + FFFF458186307f8c45818630 /* ExtDefaultStreams.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458186307f8c45818630 /* ExtDefaultStreams.cpp */; }; + FFFF458186987f8c45818698 /* ExtDistanceJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458186987f8c45818698 /* ExtDistanceJoint.cpp */; }; + FFFF458187007f8c45818700 /* ExtDistanceJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458187007f8c45818700 /* ExtDistanceJointSolverPrep.cpp */; }; + FFFF458187687f8c45818768 /* ExtExtensions.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458187687f8c45818768 /* ExtExtensions.cpp */; }; + FFFF458187d07f8c458187d0 /* ExtFixedJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458187d07f8c458187d0 /* ExtFixedJoint.cpp */; }; + FFFF458188387f8c45818838 /* ExtFixedJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458188387f8c45818838 /* ExtFixedJointSolverPrep.cpp */; }; + FFFF458188a07f8c458188a0 /* ExtJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458188a07f8c458188a0 /* ExtJoint.cpp */; }; + FFFF458189087f8c45818908 /* ExtMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458189087f8c45818908 /* ExtMetaData.cpp */; }; + FFFF458189707f8c45818970 /* ExtParticleExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458189707f8c45818970 /* ExtParticleExt.cpp */; }; + FFFF458189d87f8c458189d8 /* ExtPrismaticJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458189d87f8c458189d8 /* ExtPrismaticJoint.cpp */; }; + FFFF45818a407f8c45818a40 /* ExtPrismaticJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45818a407f8c45818a40 /* ExtPrismaticJointSolverPrep.cpp */; }; + FFFF45818aa87f8c45818aa8 /* ExtPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45818aa87f8c45818aa8 /* ExtPvd.cpp */; }; + FFFF45818b107f8c45818b10 /* ExtPxStringTable.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45818b107f8c45818b10 /* ExtPxStringTable.cpp */; }; + FFFF45818b787f8c45818b78 /* ExtRaycastCCD.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45818b787f8c45818b78 /* ExtRaycastCCD.cpp */; }; + FFFF45818be07f8c45818be0 /* ExtRevoluteJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45818be07f8c45818be0 /* ExtRevoluteJoint.cpp */; }; + FFFF45818c487f8c45818c48 /* ExtRevoluteJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45818c487f8c45818c48 /* ExtRevoluteJointSolverPrep.cpp */; }; + FFFF45818cb07f8c45818cb0 /* ExtRigidBodyExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45818cb07f8c45818cb0 /* ExtRigidBodyExt.cpp */; }; + FFFF45818d187f8c45818d18 /* ExtSceneQueryExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45818d187f8c45818d18 /* ExtSceneQueryExt.cpp */; }; + FFFF45818d807f8c45818d80 /* ExtSimpleFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45818d807f8c45818d80 /* ExtSimpleFactory.cpp */; }; + FFFF45818de87f8c45818de8 /* ExtSmoothNormals.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45818de87f8c45818de8 /* ExtSmoothNormals.cpp */; }; + FFFF45818e507f8c45818e50 /* ExtSphericalJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45818e507f8c45818e50 /* ExtSphericalJoint.cpp */; }; + FFFF45818eb87f8c45818eb8 /* ExtSphericalJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45818eb87f8c45818eb8 /* ExtSphericalJointSolverPrep.cpp */; }; + FFFF45818f207f8c45818f20 /* ExtTriangleMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45818f207f8c45818f20 /* ExtTriangleMeshExt.cpp */; }; + FFFF4581c4d07f8c4581c4d0 /* SnSerialUtils.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD4581c4d07f8c4581c4d0 /* SnSerialUtils.cpp */; }; + FFFF4581c5387f8c4581c538 /* SnSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD4581c5387f8c4581c538 /* SnSerialization.cpp */; }; + FFFF4581c5a07f8c4581c5a0 /* SnSerializationRegistry.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD4581c5a07f8c4581c5a0 /* SnSerializationRegistry.cpp */; }; + FFFF4581c8e07f8c4581c8e0 /* Binary/SnBinaryDeserialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD4581c8e07f8c4581c8e0 /* Binary/SnBinaryDeserialization.cpp */; }; + FFFF4581c9487f8c4581c948 /* Binary/SnBinarySerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD4581c9487f8c4581c948 /* Binary/SnBinarySerialization.cpp */; }; + FFFF4581c9b07f8c4581c9b0 /* Binary/SnConvX.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD4581c9b07f8c4581c9b0 /* Binary/SnConvX.cpp */; }; + FFFF4581ca187f8c4581ca18 /* Binary/SnConvX_Align.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD4581ca187f8c4581ca18 /* Binary/SnConvX_Align.cpp */; }; + FFFF4581ca807f8c4581ca80 /* Binary/SnConvX_Convert.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD4581ca807f8c4581ca80 /* Binary/SnConvX_Convert.cpp */; }; + FFFF4581cae87f8c4581cae8 /* Binary/SnConvX_Error.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD4581cae87f8c4581cae8 /* Binary/SnConvX_Error.cpp */; }; + FFFF4581cb507f8c4581cb50 /* Binary/SnConvX_MetaData.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD4581cb507f8c4581cb50 /* Binary/SnConvX_MetaData.cpp */; }; + FFFF4581cbb87f8c4581cbb8 /* Binary/SnConvX_Output.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD4581cbb87f8c4581cbb8 /* Binary/SnConvX_Output.cpp */; }; + FFFF4581cc207f8c4581cc20 /* Binary/SnConvX_Union.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD4581cc207f8c4581cc20 /* Binary/SnConvX_Union.cpp */; }; + FFFF4581cc887f8c4581cc88 /* Binary/SnSerializationContext.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD4581cc887f8c4581cc88 /* Binary/SnSerializationContext.cpp */; }; + FFFF4581d5e07f8c4581d5e0 /* Xml/SnJointRepXSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD4581d5e07f8c4581d5e0 /* Xml/SnJointRepXSerializer.cpp */; }; + FFFF4581d6487f8c4581d648 /* Xml/SnRepXCoreSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD4581d6487f8c4581d648 /* Xml/SnRepXCoreSerializer.cpp */; }; + FFFF4581d6b07f8c4581d6b0 /* Xml/SnRepXUpgrader.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD4581d6b07f8c4581d6b0 /* Xml/SnRepXUpgrader.cpp */; }; + FFFF4581d7187f8c4581d718 /* Xml/SnXmlSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD4581d7187f8c4581d718 /* Xml/SnXmlSerialization.cpp */; }; + FFFF4581a4e07f8c4581a4e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD4581a4e07f8c4581a4e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD12683c607fe812683c60 /* PhysXExtensions */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXExtensions"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD128336007fe812833600 /* PxBinaryConverter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBinaryConverter.h"; path = "../../../Include/extensions/PxBinaryConverter.h"; sourceTree = SOURCE_ROOT; }; - FFFD128336687fe812833668 /* PxBroadPhaseExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhaseExt.h"; path = "../../../Include/extensions/PxBroadPhaseExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD128336d07fe8128336d0 /* PxClothFabricCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothFabricCooker.h"; path = "../../../Include/extensions/PxClothFabricCooker.h"; sourceTree = SOURCE_ROOT; }; - FFFD128337387fe812833738 /* PxClothMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshDesc.h"; path = "../../../Include/extensions/PxClothMeshDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD128337a07fe8128337a0 /* PxClothMeshQuadifier.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshQuadifier.h"; path = "../../../Include/extensions/PxClothMeshQuadifier.h"; sourceTree = SOURCE_ROOT; }; - FFFD128338087fe812833808 /* PxClothTetherCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothTetherCooker.h"; path = "../../../Include/extensions/PxClothTetherCooker.h"; sourceTree = SOURCE_ROOT; }; - FFFD128338707fe812833870 /* PxCollectionExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCollectionExt.h"; path = "../../../Include/extensions/PxCollectionExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD128338d87fe8128338d8 /* PxConstraintExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintExt.h"; path = "../../../Include/extensions/PxConstraintExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD128339407fe812833940 /* PxConvexMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshExt.h"; path = "../../../Include/extensions/PxConvexMeshExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD128339a87fe8128339a8 /* PxD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxD6Joint.h"; path = "../../../Include/extensions/PxD6Joint.h"; sourceTree = SOURCE_ROOT; }; - FFFD12833a107fe812833a10 /* PxDefaultAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultAllocator.h"; path = "../../../Include/extensions/PxDefaultAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFD12833a787fe812833a78 /* PxDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultCpuDispatcher.h"; path = "../../../Include/extensions/PxDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; - FFFD12833ae07fe812833ae0 /* PxDefaultErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultErrorCallback.h"; path = "../../../Include/extensions/PxDefaultErrorCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFD12833b487fe812833b48 /* PxDefaultSimulationFilterShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultSimulationFilterShader.h"; path = "../../../Include/extensions/PxDefaultSimulationFilterShader.h"; sourceTree = SOURCE_ROOT; }; - FFFD12833bb07fe812833bb0 /* PxDefaultStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultStreams.h"; path = "../../../Include/extensions/PxDefaultStreams.h"; sourceTree = SOURCE_ROOT; }; - FFFD12833c187fe812833c18 /* PxDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDistanceJoint.h"; path = "../../../Include/extensions/PxDistanceJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD12833c807fe812833c80 /* PxExtensionsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtensionsAPI.h"; path = "../../../Include/extensions/PxExtensionsAPI.h"; sourceTree = SOURCE_ROOT; }; - FFFD12833ce87fe812833ce8 /* PxFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFixedJoint.h"; path = "../../../Include/extensions/PxFixedJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD12833d507fe812833d50 /* PxJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJoint.h"; path = "../../../Include/extensions/PxJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD12833db87fe812833db8 /* PxJointLimit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJointLimit.h"; path = "../../../Include/extensions/PxJointLimit.h"; sourceTree = SOURCE_ROOT; }; - FFFD12833e207fe812833e20 /* PxJointRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJointRepXSerializer.h"; path = "../../../Include/extensions/PxJointRepXSerializer.h"; sourceTree = SOURCE_ROOT; }; - FFFD12833e887fe812833e88 /* PxMassProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMassProperties.h"; path = "../../../Include/extensions/PxMassProperties.h"; sourceTree = SOURCE_ROOT; }; - FFFD12833ef07fe812833ef0 /* PxParticleExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxParticleExt.h"; path = "../../../Include/extensions/PxParticleExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD12833f587fe812833f58 /* PxPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPrismaticJoint.h"; path = "../../../Include/extensions/PxPrismaticJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD12833fc07fe812833fc0 /* PxRaycastCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRaycastCCD.h"; path = "../../../Include/extensions/PxRaycastCCD.h"; sourceTree = SOURCE_ROOT; }; - FFFD128340287fe812834028 /* PxRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSerializer.h"; path = "../../../Include/extensions/PxRepXSerializer.h"; sourceTree = SOURCE_ROOT; }; - FFFD128340907fe812834090 /* PxRepXSimpleType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSimpleType.h"; path = "../../../Include/extensions/PxRepXSimpleType.h"; sourceTree = SOURCE_ROOT; }; - FFFD128340f87fe8128340f8 /* PxRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRevoluteJoint.h"; path = "../../../Include/extensions/PxRevoluteJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD128341607fe812834160 /* PxRigidActorExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActorExt.h"; path = "../../../Include/extensions/PxRigidActorExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD128341c87fe8128341c8 /* PxRigidBodyExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBodyExt.h"; path = "../../../Include/extensions/PxRigidBodyExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD128342307fe812834230 /* PxSceneQueryExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneQueryExt.h"; path = "../../../Include/extensions/PxSceneQueryExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD128342987fe812834298 /* PxSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSerialization.h"; path = "../../../Include/extensions/PxSerialization.h"; sourceTree = SOURCE_ROOT; }; - FFFD128343007fe812834300 /* PxShapeExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShapeExt.h"; path = "../../../Include/extensions/PxShapeExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD128343687fe812834368 /* PxSimpleFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleFactory.h"; path = "../../../Include/extensions/PxSimpleFactory.h"; sourceTree = SOURCE_ROOT; }; - FFFD128343d07fe8128343d0 /* PxSmoothNormals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSmoothNormals.h"; path = "../../../Include/extensions/PxSmoothNormals.h"; sourceTree = SOURCE_ROOT; }; - FFFD128344387fe812834438 /* PxSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSphericalJoint.h"; path = "../../../Include/extensions/PxSphericalJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD128344a07fe8128344a0 /* PxStringTableExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStringTableExt.h"; path = "../../../Include/extensions/PxStringTableExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD128345087fe812834508 /* PxTriangleMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshExt.h"; path = "../../../Include/extensions/PxTriangleMeshExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD128320007fe812832000 /* ExtConstraintHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConstraintHelper.h"; path = "../../PhysXExtensions/src/ExtConstraintHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFD128320687fe812832068 /* ExtCpuWorkerThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.h"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.h"; sourceTree = SOURCE_ROOT; }; - FFFD128320d07fe8128320d0 /* ExtD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.h"; path = "../../PhysXExtensions/src/ExtD6Joint.h"; sourceTree = SOURCE_ROOT; }; - FFFD128321387fe812832138 /* ExtDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.h"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; - FFFD128321a07fe8128321a0 /* ExtDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.h"; path = "../../PhysXExtensions/src/ExtDistanceJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD128322087fe812832208 /* ExtFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.h"; path = "../../PhysXExtensions/src/ExtFixedJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD128322707fe812832270 /* ExtInertiaTensor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtInertiaTensor.h"; path = "../../PhysXExtensions/src/ExtInertiaTensor.h"; sourceTree = SOURCE_ROOT; }; - FFFD128322d87fe8128322d8 /* ExtJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.h"; path = "../../PhysXExtensions/src/ExtJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD128323407fe812832340 /* ExtJointMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJointMetaDataExtensions.h"; path = "../../PhysXExtensions/src/ExtJointMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; - FFFD128323a87fe8128323a8 /* ExtPlatform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPlatform.h"; path = "../../PhysXExtensions/src/ExtPlatform.h"; sourceTree = SOURCE_ROOT; }; - FFFD128324107fe812832410 /* ExtPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.h"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD128324787fe812832478 /* ExtPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.h"; path = "../../PhysXExtensions/src/ExtPvd.h"; sourceTree = SOURCE_ROOT; }; - FFFD128324e07fe8128324e0 /* ExtRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.h"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD128325487fe812832548 /* ExtSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSerialization.h"; path = "../../PhysXExtensions/src/ExtSerialization.h"; sourceTree = SOURCE_ROOT; }; - FFFD128325b07fe8128325b0 /* ExtSharedQueueEntryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSharedQueueEntryPool.h"; path = "../../PhysXExtensions/src/ExtSharedQueueEntryPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD128326187fe812832618 /* ExtSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.h"; path = "../../PhysXExtensions/src/ExtSphericalJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD128326807fe812832680 /* ExtTaskQueueHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTaskQueueHelper.h"; path = "../../PhysXExtensions/src/ExtTaskQueueHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFD128326e87fe8128326e8 /* ExtBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtBroadPhase.cpp"; path = "../../PhysXExtensions/src/ExtBroadPhase.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128327507fe812832750 /* ExtClothFabricCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothFabricCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothFabricCooker.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128327b87fe8128327b8 /* ExtClothGeodesicTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothGeodesicTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothGeodesicTetherCooker.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128328207fe812832820 /* ExtClothMeshQuadifier.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothMeshQuadifier.cpp"; path = "../../PhysXExtensions/src/ExtClothMeshQuadifier.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128328887fe812832888 /* ExtClothSimpleTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothSimpleTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothSimpleTetherCooker.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128328f07fe8128328f0 /* ExtCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCollection.cpp"; path = "../../PhysXExtensions/src/ExtCollection.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128329587fe812832958 /* ExtConvexMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConvexMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtConvexMeshExt.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128329c07fe8128329c0 /* ExtCpuWorkerThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.cpp"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD12832a287fe812832a28 /* ExtD6Joint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.cpp"; path = "../../PhysXExtensions/src/ExtD6Joint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD12832a907fe812832a90 /* ExtD6JointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6JointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtD6JointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD12832af87fe812832af8 /* ExtDefaultCpuDispatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.cpp"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD12832b607fe812832b60 /* ExtDefaultErrorCallback.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultErrorCallback.cpp"; path = "../../PhysXExtensions/src/ExtDefaultErrorCallback.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD12832bc87fe812832bc8 /* ExtDefaultSimulationFilterShader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultSimulationFilterShader.cpp"; path = "../../PhysXExtensions/src/ExtDefaultSimulationFilterShader.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD12832c307fe812832c30 /* ExtDefaultStreams.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultStreams.cpp"; path = "../../PhysXExtensions/src/ExtDefaultStreams.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD12832c987fe812832c98 /* ExtDistanceJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD12832d007fe812832d00 /* ExtDistanceJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD12832d687fe812832d68 /* ExtExtensions.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtExtensions.cpp"; path = "../../PhysXExtensions/src/ExtExtensions.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD12832dd07fe812832dd0 /* ExtFixedJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.cpp"; path = "../../PhysXExtensions/src/ExtFixedJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD12832e387fe812832e38 /* ExtFixedJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtFixedJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD12832ea07fe812832ea0 /* ExtJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.cpp"; path = "../../PhysXExtensions/src/ExtJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD12832f087fe812832f08 /* ExtMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtMetaData.cpp"; path = "../../PhysXExtensions/src/ExtMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD12832f707fe812832f70 /* ExtParticleExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtParticleExt.cpp"; path = "../../PhysXExtensions/src/ExtParticleExt.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD12832fd87fe812832fd8 /* ExtPrismaticJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128330407fe812833040 /* ExtPrismaticJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128330a87fe8128330a8 /* ExtPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.cpp"; path = "../../PhysXExtensions/src/ExtPvd.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128331107fe812833110 /* ExtPxStringTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPxStringTable.cpp"; path = "../../PhysXExtensions/src/ExtPxStringTable.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128331787fe812833178 /* ExtRaycastCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRaycastCCD.cpp"; path = "../../PhysXExtensions/src/ExtRaycastCCD.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128331e07fe8128331e0 /* ExtRevoluteJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128332487fe812833248 /* ExtRevoluteJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128332b07fe8128332b0 /* ExtRigidBodyExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRigidBodyExt.cpp"; path = "../../PhysXExtensions/src/ExtRigidBodyExt.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128333187fe812833318 /* ExtSceneQueryExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSceneQueryExt.cpp"; path = "../../PhysXExtensions/src/ExtSceneQueryExt.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128333807fe812833380 /* ExtSimpleFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSimpleFactory.cpp"; path = "../../PhysXExtensions/src/ExtSimpleFactory.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128333e87fe8128333e8 /* ExtSmoothNormals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSmoothNormals.cpp"; path = "../../PhysXExtensions/src/ExtSmoothNormals.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128334507fe812833450 /* ExtSphericalJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128334b87fe8128334b8 /* ExtSphericalJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128335207fe812833520 /* ExtTriangleMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTriangleMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtTriangleMeshExt.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD12836a007fe812836a00 /* SnSerialUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.h"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD12836a687fe812836a68 /* SnSerializationRegistry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.h"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.h"; sourceTree = SOURCE_ROOT; }; - FFFD12836ad07fe812836ad0 /* SnSerialUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD12836b387fe812836b38 /* SnSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD12836ba07fe812836ba0 /* SnSerializationRegistry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD12836c087fe812836c08 /* Binary/SnConvX.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.h"; sourceTree = SOURCE_ROOT; }; - FFFD12836c707fe812836c70 /* Binary/SnConvX_Align.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.h"; sourceTree = SOURCE_ROOT; }; - FFFD12836cd87fe812836cd8 /* Binary/SnConvX_Common.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Common.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Common.h"; sourceTree = SOURCE_ROOT; }; - FFFD12836d407fe812836d40 /* Binary/SnConvX_MetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.h"; sourceTree = SOURCE_ROOT; }; - FFFD12836da87fe812836da8 /* Binary/SnConvX_Output.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.h"; sourceTree = SOURCE_ROOT; }; - FFFD12836e107fe812836e10 /* Binary/SnConvX_Union.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.h"; sourceTree = SOURCE_ROOT; }; - FFFD12836e787fe812836e78 /* Binary/SnSerializationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD12836ee07fe812836ee0 /* Binary/SnBinaryDeserialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinaryDeserialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinaryDeserialization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD12836f487fe812836f48 /* Binary/SnBinarySerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinarySerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinarySerialization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD12836fb07fe812836fb0 /* Binary/SnConvX.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128370187fe812837018 /* Binary/SnConvX_Align.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128370807fe812837080 /* Binary/SnConvX_Convert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Convert.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Convert.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128370e87fe8128370e8 /* Binary/SnConvX_Error.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Error.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Error.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128371507fe812837150 /* Binary/SnConvX_MetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128371b87fe8128371b8 /* Binary/SnConvX_Output.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128372207fe812837220 /* Binary/SnConvX_Union.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128372887fe812837288 /* Binary/SnSerializationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128372f07fe8128372f0 /* Xml/SnPxStreamOperators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnPxStreamOperators.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnPxStreamOperators.h"; sourceTree = SOURCE_ROOT; }; - FFFD128373587fe812837358 /* Xml/SnRepX1_0Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX1_0Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX1_0Defaults.h"; sourceTree = SOURCE_ROOT; }; - FFFD128373c07fe8128373c0 /* Xml/SnRepX3_1Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_1Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_1Defaults.h"; sourceTree = SOURCE_ROOT; }; - FFFD128374287fe812837428 /* Xml/SnRepX3_2Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_2Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_2Defaults.h"; sourceTree = SOURCE_ROOT; }; - FFFD128374907fe812837490 /* Xml/SnRepXCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCollection.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCollection.h"; sourceTree = SOURCE_ROOT; }; - FFFD128374f87fe8128374f8 /* Xml/SnRepXCoreSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.h"; sourceTree = SOURCE_ROOT; }; - FFFD128375607fe812837560 /* Xml/SnRepXSerializerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXSerializerImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXSerializerImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD128375c87fe8128375c8 /* Xml/SnRepXUpgrader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.h"; sourceTree = SOURCE_ROOT; }; - FFFD128376307fe812837630 /* Xml/SnSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; }; - FFFD128376987fe812837698 /* Xml/SnXmlDeserializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlDeserializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlDeserializer.h"; sourceTree = SOURCE_ROOT; }; - FFFD128377007fe812837700 /* Xml/SnXmlImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD128377687fe812837768 /* Xml/SnXmlMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryAllocator.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFD128377d07fe8128377d0 /* Xml/SnXmlMemoryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPool.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD128378387fe812837838 /* Xml/SnXmlMemoryPoolStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPoolStreams.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPoolStreams.h"; sourceTree = SOURCE_ROOT; }; - FFFD128378a07fe8128378a0 /* Xml/SnXmlReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlReader.h"; sourceTree = SOURCE_ROOT; }; - FFFD128379087fe812837908 /* Xml/SnXmlSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerializer.h"; sourceTree = SOURCE_ROOT; }; - FFFD128379707fe812837970 /* Xml/SnXmlSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; }; - FFFD128379d87fe8128379d8 /* Xml/SnXmlStringToType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlStringToType.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlStringToType.h"; sourceTree = SOURCE_ROOT; }; - FFFD12837a407fe812837a40 /* Xml/SnXmlVisitorReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorReader.h"; sourceTree = SOURCE_ROOT; }; - FFFD12837aa87fe812837aa8 /* Xml/SnXmlVisitorWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorWriter.h"; sourceTree = SOURCE_ROOT; }; - FFFD12837b107fe812837b10 /* Xml/SnXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlWriter.h"; sourceTree = SOURCE_ROOT; }; - FFFD12837b787fe812837b78 /* Xml/SnJointRepXSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnJointRepXSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD12837be07fe812837be0 /* Xml/SnRepXCoreSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD12837c487fe812837c48 /* Xml/SnRepXUpgrader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD12837cb07fe812837cb0 /* Xml/SnXmlSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerialization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD12837d187fe812837d18 /* File/SnFile.h */= { isa = PBXFileReference; fileEncoding = 4; name = "File/SnFile.h"; path = "../../PhysXExtensions/src/serialization/File/SnFile.h"; sourceTree = SOURCE_ROOT; }; - FFFD128346007fe812834600 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; }; - FFFD128346687fe812834668 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; - FFFD128346d07fe8128346d0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; - FFFD128347387fe812834738 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; - FFFD128347a07fe8128347a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFD128348087fe812834808 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; }; - FFFD128348707fe812834870 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; }; - FFFD128348d87fe8128348d8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFD128349407fe812834940 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; - FFFD128349a87fe8128349a8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; - FFFD12834a107fe812834a10 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFD12834a787fe812834a78 /* extensions/include/PxExtensionMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFD12834ae07fe812834ae0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXMetaData/extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4551eaf07f8c4551eaf0 /* PhysXExtensions */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXExtensions"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD458190007f8c45819000 /* PxBinaryConverter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBinaryConverter.h"; path = "../../../Include/extensions/PxBinaryConverter.h"; sourceTree = SOURCE_ROOT; }; + FFFD458190687f8c45819068 /* PxBroadPhaseExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhaseExt.h"; path = "../../../Include/extensions/PxBroadPhaseExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD458190d07f8c458190d0 /* PxClothFabricCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothFabricCooker.h"; path = "../../../Include/extensions/PxClothFabricCooker.h"; sourceTree = SOURCE_ROOT; }; + FFFD458191387f8c45819138 /* PxClothMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshDesc.h"; path = "../../../Include/extensions/PxClothMeshDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD458191a07f8c458191a0 /* PxClothMeshQuadifier.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshQuadifier.h"; path = "../../../Include/extensions/PxClothMeshQuadifier.h"; sourceTree = SOURCE_ROOT; }; + FFFD458192087f8c45819208 /* PxClothTetherCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothTetherCooker.h"; path = "../../../Include/extensions/PxClothTetherCooker.h"; sourceTree = SOURCE_ROOT; }; + FFFD458192707f8c45819270 /* PxCollectionExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCollectionExt.h"; path = "../../../Include/extensions/PxCollectionExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD458192d87f8c458192d8 /* PxConstraintExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintExt.h"; path = "../../../Include/extensions/PxConstraintExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD458193407f8c45819340 /* PxConvexMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshExt.h"; path = "../../../Include/extensions/PxConvexMeshExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD458193a87f8c458193a8 /* PxD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxD6Joint.h"; path = "../../../Include/extensions/PxD6Joint.h"; sourceTree = SOURCE_ROOT; }; + FFFD458194107f8c45819410 /* PxDefaultAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultAllocator.h"; path = "../../../Include/extensions/PxDefaultAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFD458194787f8c45819478 /* PxDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultCpuDispatcher.h"; path = "../../../Include/extensions/PxDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; + FFFD458194e07f8c458194e0 /* PxDefaultErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultErrorCallback.h"; path = "../../../Include/extensions/PxDefaultErrorCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFD458195487f8c45819548 /* PxDefaultSimulationFilterShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultSimulationFilterShader.h"; path = "../../../Include/extensions/PxDefaultSimulationFilterShader.h"; sourceTree = SOURCE_ROOT; }; + FFFD458195b07f8c458195b0 /* PxDefaultStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultStreams.h"; path = "../../../Include/extensions/PxDefaultStreams.h"; sourceTree = SOURCE_ROOT; }; + FFFD458196187f8c45819618 /* PxDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDistanceJoint.h"; path = "../../../Include/extensions/PxDistanceJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD458196807f8c45819680 /* PxExtensionsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtensionsAPI.h"; path = "../../../Include/extensions/PxExtensionsAPI.h"; sourceTree = SOURCE_ROOT; }; + FFFD458196e87f8c458196e8 /* PxFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFixedJoint.h"; path = "../../../Include/extensions/PxFixedJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD458197507f8c45819750 /* PxJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJoint.h"; path = "../../../Include/extensions/PxJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD458197b87f8c458197b8 /* PxJointLimit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJointLimit.h"; path = "../../../Include/extensions/PxJointLimit.h"; sourceTree = SOURCE_ROOT; }; + FFFD458198207f8c45819820 /* PxMassProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMassProperties.h"; path = "../../../Include/extensions/PxMassProperties.h"; sourceTree = SOURCE_ROOT; }; + FFFD458198887f8c45819888 /* PxParticleExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxParticleExt.h"; path = "../../../Include/extensions/PxParticleExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD458198f07f8c458198f0 /* PxPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPrismaticJoint.h"; path = "../../../Include/extensions/PxPrismaticJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD458199587f8c45819958 /* PxRaycastCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRaycastCCD.h"; path = "../../../Include/extensions/PxRaycastCCD.h"; sourceTree = SOURCE_ROOT; }; + FFFD458199c07f8c458199c0 /* PxRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSerializer.h"; path = "../../../Include/extensions/PxRepXSerializer.h"; sourceTree = SOURCE_ROOT; }; + FFFD45819a287f8c45819a28 /* PxRepXSimpleType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSimpleType.h"; path = "../../../Include/extensions/PxRepXSimpleType.h"; sourceTree = SOURCE_ROOT; }; + FFFD45819a907f8c45819a90 /* PxRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRevoluteJoint.h"; path = "../../../Include/extensions/PxRevoluteJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD45819af87f8c45819af8 /* PxRigidActorExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActorExt.h"; path = "../../../Include/extensions/PxRigidActorExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD45819b607f8c45819b60 /* PxRigidBodyExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBodyExt.h"; path = "../../../Include/extensions/PxRigidBodyExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD45819bc87f8c45819bc8 /* PxSceneQueryExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneQueryExt.h"; path = "../../../Include/extensions/PxSceneQueryExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD45819c307f8c45819c30 /* PxSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSerialization.h"; path = "../../../Include/extensions/PxSerialization.h"; sourceTree = SOURCE_ROOT; }; + FFFD45819c987f8c45819c98 /* PxShapeExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShapeExt.h"; path = "../../../Include/extensions/PxShapeExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD45819d007f8c45819d00 /* PxSimpleFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleFactory.h"; path = "../../../Include/extensions/PxSimpleFactory.h"; sourceTree = SOURCE_ROOT; }; + FFFD45819d687f8c45819d68 /* PxSmoothNormals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSmoothNormals.h"; path = "../../../Include/extensions/PxSmoothNormals.h"; sourceTree = SOURCE_ROOT; }; + FFFD45819dd07f8c45819dd0 /* PxSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSphericalJoint.h"; path = "../../../Include/extensions/PxSphericalJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD45819e387f8c45819e38 /* PxStringTableExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStringTableExt.h"; path = "../../../Include/extensions/PxStringTableExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD45819ea07f8c45819ea0 /* PxTriangleMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshExt.h"; path = "../../../Include/extensions/PxTriangleMeshExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD45817a007f8c45817a00 /* ExtConstraintHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConstraintHelper.h"; path = "../../PhysXExtensions/src/ExtConstraintHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFD45817a687f8c45817a68 /* ExtCpuWorkerThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.h"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.h"; sourceTree = SOURCE_ROOT; }; + FFFD45817ad07f8c45817ad0 /* ExtD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.h"; path = "../../PhysXExtensions/src/ExtD6Joint.h"; sourceTree = SOURCE_ROOT; }; + FFFD45817b387f8c45817b38 /* ExtDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.h"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; + FFFD45817ba07f8c45817ba0 /* ExtDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.h"; path = "../../PhysXExtensions/src/ExtDistanceJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD45817c087f8c45817c08 /* ExtFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.h"; path = "../../PhysXExtensions/src/ExtFixedJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD45817c707f8c45817c70 /* ExtInertiaTensor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtInertiaTensor.h"; path = "../../PhysXExtensions/src/ExtInertiaTensor.h"; sourceTree = SOURCE_ROOT; }; + FFFD45817cd87f8c45817cd8 /* ExtJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.h"; path = "../../PhysXExtensions/src/ExtJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD45817d407f8c45817d40 /* ExtJointMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJointMetaDataExtensions.h"; path = "../../PhysXExtensions/src/ExtJointMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; + FFFD45817da87f8c45817da8 /* ExtPlatform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPlatform.h"; path = "../../PhysXExtensions/src/ExtPlatform.h"; sourceTree = SOURCE_ROOT; }; + FFFD45817e107f8c45817e10 /* ExtPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.h"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD45817e787f8c45817e78 /* ExtPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.h"; path = "../../PhysXExtensions/src/ExtPvd.h"; sourceTree = SOURCE_ROOT; }; + FFFD45817ee07f8c45817ee0 /* ExtRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.h"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD45817f487f8c45817f48 /* ExtSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSerialization.h"; path = "../../PhysXExtensions/src/ExtSerialization.h"; sourceTree = SOURCE_ROOT; }; + FFFD45817fb07f8c45817fb0 /* ExtSharedQueueEntryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSharedQueueEntryPool.h"; path = "../../PhysXExtensions/src/ExtSharedQueueEntryPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD458180187f8c45818018 /* ExtSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.h"; path = "../../PhysXExtensions/src/ExtSphericalJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD458180807f8c45818080 /* ExtTaskQueueHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTaskQueueHelper.h"; path = "../../PhysXExtensions/src/ExtTaskQueueHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFD458180e87f8c458180e8 /* ExtBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtBroadPhase.cpp"; path = "../../PhysXExtensions/src/ExtBroadPhase.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458181507f8c45818150 /* ExtClothFabricCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothFabricCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothFabricCooker.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458181b87f8c458181b8 /* ExtClothGeodesicTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothGeodesicTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothGeodesicTetherCooker.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458182207f8c45818220 /* ExtClothMeshQuadifier.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothMeshQuadifier.cpp"; path = "../../PhysXExtensions/src/ExtClothMeshQuadifier.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458182887f8c45818288 /* ExtClothSimpleTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothSimpleTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothSimpleTetherCooker.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458182f07f8c458182f0 /* ExtCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCollection.cpp"; path = "../../PhysXExtensions/src/ExtCollection.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458183587f8c45818358 /* ExtConvexMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConvexMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtConvexMeshExt.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458183c07f8c458183c0 /* ExtCpuWorkerThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.cpp"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458184287f8c45818428 /* ExtD6Joint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.cpp"; path = "../../PhysXExtensions/src/ExtD6Joint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458184907f8c45818490 /* ExtD6JointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6JointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtD6JointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458184f87f8c458184f8 /* ExtDefaultCpuDispatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.cpp"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458185607f8c45818560 /* ExtDefaultErrorCallback.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultErrorCallback.cpp"; path = "../../PhysXExtensions/src/ExtDefaultErrorCallback.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458185c87f8c458185c8 /* ExtDefaultSimulationFilterShader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultSimulationFilterShader.cpp"; path = "../../PhysXExtensions/src/ExtDefaultSimulationFilterShader.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458186307f8c45818630 /* ExtDefaultStreams.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultStreams.cpp"; path = "../../PhysXExtensions/src/ExtDefaultStreams.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458186987f8c45818698 /* ExtDistanceJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458187007f8c45818700 /* ExtDistanceJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458187687f8c45818768 /* ExtExtensions.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtExtensions.cpp"; path = "../../PhysXExtensions/src/ExtExtensions.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458187d07f8c458187d0 /* ExtFixedJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.cpp"; path = "../../PhysXExtensions/src/ExtFixedJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458188387f8c45818838 /* ExtFixedJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtFixedJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458188a07f8c458188a0 /* ExtJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.cpp"; path = "../../PhysXExtensions/src/ExtJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458189087f8c45818908 /* ExtMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtMetaData.cpp"; path = "../../PhysXExtensions/src/ExtMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458189707f8c45818970 /* ExtParticleExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtParticleExt.cpp"; path = "../../PhysXExtensions/src/ExtParticleExt.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458189d87f8c458189d8 /* ExtPrismaticJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45818a407f8c45818a40 /* ExtPrismaticJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45818aa87f8c45818aa8 /* ExtPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.cpp"; path = "../../PhysXExtensions/src/ExtPvd.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45818b107f8c45818b10 /* ExtPxStringTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPxStringTable.cpp"; path = "../../PhysXExtensions/src/ExtPxStringTable.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45818b787f8c45818b78 /* ExtRaycastCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRaycastCCD.cpp"; path = "../../PhysXExtensions/src/ExtRaycastCCD.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45818be07f8c45818be0 /* ExtRevoluteJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45818c487f8c45818c48 /* ExtRevoluteJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45818cb07f8c45818cb0 /* ExtRigidBodyExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRigidBodyExt.cpp"; path = "../../PhysXExtensions/src/ExtRigidBodyExt.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45818d187f8c45818d18 /* ExtSceneQueryExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSceneQueryExt.cpp"; path = "../../PhysXExtensions/src/ExtSceneQueryExt.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45818d807f8c45818d80 /* ExtSimpleFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSimpleFactory.cpp"; path = "../../PhysXExtensions/src/ExtSimpleFactory.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45818de87f8c45818de8 /* ExtSmoothNormals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSmoothNormals.cpp"; path = "../../PhysXExtensions/src/ExtSmoothNormals.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45818e507f8c45818e50 /* ExtSphericalJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45818eb87f8c45818eb8 /* ExtSphericalJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45818f207f8c45818f20 /* ExtTriangleMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTriangleMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtTriangleMeshExt.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4581c4007f8c4581c400 /* SnSerialUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.h"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD4581c4687f8c4581c468 /* SnSerializationRegistry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.h"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.h"; sourceTree = SOURCE_ROOT; }; + FFFD4581c4d07f8c4581c4d0 /* SnSerialUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4581c5387f8c4581c538 /* SnSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4581c5a07f8c4581c5a0 /* SnSerializationRegistry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4581c6087f8c4581c608 /* Binary/SnConvX.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.h"; sourceTree = SOURCE_ROOT; }; + FFFD4581c6707f8c4581c670 /* Binary/SnConvX_Align.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.h"; sourceTree = SOURCE_ROOT; }; + FFFD4581c6d87f8c4581c6d8 /* Binary/SnConvX_Common.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Common.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Common.h"; sourceTree = SOURCE_ROOT; }; + FFFD4581c7407f8c4581c740 /* Binary/SnConvX_MetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.h"; sourceTree = SOURCE_ROOT; }; + FFFD4581c7a87f8c4581c7a8 /* Binary/SnConvX_Output.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.h"; sourceTree = SOURCE_ROOT; }; + FFFD4581c8107f8c4581c810 /* Binary/SnConvX_Union.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.h"; sourceTree = SOURCE_ROOT; }; + FFFD4581c8787f8c4581c878 /* Binary/SnSerializationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD4581c8e07f8c4581c8e0 /* Binary/SnBinaryDeserialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinaryDeserialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinaryDeserialization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4581c9487f8c4581c948 /* Binary/SnBinarySerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinarySerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinarySerialization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4581c9b07f8c4581c9b0 /* Binary/SnConvX.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4581ca187f8c4581ca18 /* Binary/SnConvX_Align.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4581ca807f8c4581ca80 /* Binary/SnConvX_Convert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Convert.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Convert.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4581cae87f8c4581cae8 /* Binary/SnConvX_Error.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Error.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Error.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4581cb507f8c4581cb50 /* Binary/SnConvX_MetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4581cbb87f8c4581cbb8 /* Binary/SnConvX_Output.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4581cc207f8c4581cc20 /* Binary/SnConvX_Union.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4581cc887f8c4581cc88 /* Binary/SnSerializationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4581ccf07f8c4581ccf0 /* Xml/SnJointRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnJointRepXSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.h"; sourceTree = SOURCE_ROOT; }; + FFFD4581cd587f8c4581cd58 /* Xml/SnPxStreamOperators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnPxStreamOperators.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnPxStreamOperators.h"; sourceTree = SOURCE_ROOT; }; + FFFD4581cdc07f8c4581cdc0 /* Xml/SnRepX1_0Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX1_0Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX1_0Defaults.h"; sourceTree = SOURCE_ROOT; }; + FFFD4581ce287f8c4581ce28 /* Xml/SnRepX3_1Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_1Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_1Defaults.h"; sourceTree = SOURCE_ROOT; }; + FFFD4581ce907f8c4581ce90 /* Xml/SnRepX3_2Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_2Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_2Defaults.h"; sourceTree = SOURCE_ROOT; }; + FFFD4581cef87f8c4581cef8 /* Xml/SnRepXCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCollection.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCollection.h"; sourceTree = SOURCE_ROOT; }; + FFFD4581cf607f8c4581cf60 /* Xml/SnRepXCoreSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.h"; sourceTree = SOURCE_ROOT; }; + FFFD4581cfc87f8c4581cfc8 /* Xml/SnRepXSerializerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXSerializerImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXSerializerImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD4581d0307f8c4581d030 /* Xml/SnRepXUpgrader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.h"; sourceTree = SOURCE_ROOT; }; + FFFD4581d0987f8c4581d098 /* Xml/SnSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; }; + FFFD4581d1007f8c4581d100 /* Xml/SnXmlDeserializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlDeserializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlDeserializer.h"; sourceTree = SOURCE_ROOT; }; + FFFD4581d1687f8c4581d168 /* Xml/SnXmlImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD4581d1d07f8c4581d1d0 /* Xml/SnXmlMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryAllocator.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFD4581d2387f8c4581d238 /* Xml/SnXmlMemoryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPool.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD4581d2a07f8c4581d2a0 /* Xml/SnXmlMemoryPoolStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPoolStreams.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPoolStreams.h"; sourceTree = SOURCE_ROOT; }; + FFFD4581d3087f8c4581d308 /* Xml/SnXmlReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlReader.h"; sourceTree = SOURCE_ROOT; }; + FFFD4581d3707f8c4581d370 /* Xml/SnXmlSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerializer.h"; sourceTree = SOURCE_ROOT; }; + FFFD4581d3d87f8c4581d3d8 /* Xml/SnXmlSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; }; + FFFD4581d4407f8c4581d440 /* Xml/SnXmlStringToType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlStringToType.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlStringToType.h"; sourceTree = SOURCE_ROOT; }; + FFFD4581d4a87f8c4581d4a8 /* Xml/SnXmlVisitorReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorReader.h"; sourceTree = SOURCE_ROOT; }; + FFFD4581d5107f8c4581d510 /* Xml/SnXmlVisitorWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorWriter.h"; sourceTree = SOURCE_ROOT; }; + FFFD4581d5787f8c4581d578 /* Xml/SnXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlWriter.h"; sourceTree = SOURCE_ROOT; }; + FFFD4581d5e07f8c4581d5e0 /* Xml/SnJointRepXSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnJointRepXSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4581d6487f8c4581d648 /* Xml/SnRepXCoreSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4581d6b07f8c4581d6b0 /* Xml/SnRepXUpgrader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4581d7187f8c4581d718 /* Xml/SnXmlSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerialization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4581d7807f8c4581d780 /* File/SnFile.h */= { isa = PBXFileReference; fileEncoding = 4; name = "File/SnFile.h"; path = "../../PhysXExtensions/src/serialization/File/SnFile.h"; sourceTree = SOURCE_ROOT; }; + FFFD4581a0007f8c4581a000 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; }; + FFFD4581a0687f8c4581a068 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; + FFFD4581a0d07f8c4581a0d0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; + FFFD4581a1387f8c4581a138 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; + FFFD4581a1a07f8c4581a1a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFD4581a2087f8c4581a208 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; }; + FFFD4581a2707f8c4581a270 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; }; + FFFD4581a2d87f8c4581a2d8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFD4581a3407f8c4581a340 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; + FFFD4581a3a87f8c4581a3a8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; + FFFD4581a4107f8c4581a410 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFD4581a4787f8c4581a478 /* extensions/include/PxExtensionMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFD4581a4e07f8c4581a4e0 /* 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 */ - FFF212683c607fe812683c60 /* Resources */ = { + FFF24551eaf07f8c4551eaf0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -804,7 +804,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC12683c607fe812683c60 /* Frameworks */ = { + FFFC4551eaf07f8c4551eaf0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -814,64 +814,64 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF812683c607fe812683c60 /* Sources */ = { + FFF84551eaf07f8c4551eaf0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF128326e87fe8128326e8, - FFFF128327507fe812832750, - FFFF128327b87fe8128327b8, - FFFF128328207fe812832820, - FFFF128328887fe812832888, - FFFF128328f07fe8128328f0, - FFFF128329587fe812832958, - FFFF128329c07fe8128329c0, - FFFF12832a287fe812832a28, - FFFF12832a907fe812832a90, - FFFF12832af87fe812832af8, - FFFF12832b607fe812832b60, - FFFF12832bc87fe812832bc8, - FFFF12832c307fe812832c30, - FFFF12832c987fe812832c98, - FFFF12832d007fe812832d00, - FFFF12832d687fe812832d68, - FFFF12832dd07fe812832dd0, - FFFF12832e387fe812832e38, - FFFF12832ea07fe812832ea0, - FFFF12832f087fe812832f08, - FFFF12832f707fe812832f70, - FFFF12832fd87fe812832fd8, - FFFF128330407fe812833040, - FFFF128330a87fe8128330a8, - FFFF128331107fe812833110, - FFFF128331787fe812833178, - FFFF128331e07fe8128331e0, - FFFF128332487fe812833248, - FFFF128332b07fe8128332b0, - FFFF128333187fe812833318, - FFFF128333807fe812833380, - FFFF128333e87fe8128333e8, - FFFF128334507fe812833450, - FFFF128334b87fe8128334b8, - FFFF128335207fe812833520, - FFFF12836ad07fe812836ad0, - FFFF12836b387fe812836b38, - FFFF12836ba07fe812836ba0, - FFFF12836ee07fe812836ee0, - FFFF12836f487fe812836f48, - FFFF12836fb07fe812836fb0, - FFFF128370187fe812837018, - FFFF128370807fe812837080, - FFFF128370e87fe8128370e8, - FFFF128371507fe812837150, - FFFF128371b87fe8128371b8, - FFFF128372207fe812837220, - FFFF128372887fe812837288, - FFFF12837b787fe812837b78, - FFFF12837be07fe812837be0, - FFFF12837c487fe812837c48, - FFFF12837cb07fe812837cb0, - FFFF12834ae07fe812834ae0, + FFFF458180e87f8c458180e8, + FFFF458181507f8c45818150, + FFFF458181b87f8c458181b8, + FFFF458182207f8c45818220, + FFFF458182887f8c45818288, + FFFF458182f07f8c458182f0, + FFFF458183587f8c45818358, + FFFF458183c07f8c458183c0, + FFFF458184287f8c45818428, + FFFF458184907f8c45818490, + FFFF458184f87f8c458184f8, + FFFF458185607f8c45818560, + FFFF458185c87f8c458185c8, + FFFF458186307f8c45818630, + FFFF458186987f8c45818698, + FFFF458187007f8c45818700, + FFFF458187687f8c45818768, + FFFF458187d07f8c458187d0, + FFFF458188387f8c45818838, + FFFF458188a07f8c458188a0, + FFFF458189087f8c45818908, + FFFF458189707f8c45818970, + FFFF458189d87f8c458189d8, + FFFF45818a407f8c45818a40, + FFFF45818aa87f8c45818aa8, + FFFF45818b107f8c45818b10, + FFFF45818b787f8c45818b78, + FFFF45818be07f8c45818be0, + FFFF45818c487f8c45818c48, + FFFF45818cb07f8c45818cb0, + FFFF45818d187f8c45818d18, + FFFF45818d807f8c45818d80, + FFFF45818de87f8c45818de8, + FFFF45818e507f8c45818e50, + FFFF45818eb87f8c45818eb8, + FFFF45818f207f8c45818f20, + FFFF4581c4d07f8c4581c4d0, + FFFF4581c5387f8c4581c538, + FFFF4581c5a07f8c4581c5a0, + FFFF4581c8e07f8c4581c8e0, + FFFF4581c9487f8c4581c948, + FFFF4581c9b07f8c4581c9b0, + FFFF4581ca187f8c4581ca18, + FFFF4581ca807f8c4581ca80, + FFFF4581cae87f8c4581cae8, + FFFF4581cb507f8c4581cb50, + FFFF4581cbb87f8c4581cbb8, + FFFF4581cc207f8c4581cc20, + FFFF4581cc887f8c4581cc88, + FFFF4581d5e07f8c4581d5e0, + FFFF4581d6487f8c4581d648, + FFFF4581d6b07f8c4581d6b0, + FFFF4581d7187f8c4581d718, + FFFF4581a4e07f8c4581a4e0, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -880,56 +880,56 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF412681b107fe812681b10 /* PBXTargetDependency */ = { + FFF44551ef707f8c4551ef70 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA1265b4d07fe81265b4d0 /* PsFastXml */; - targetProxy = FFF51265b4d07fe81265b4d0 /* PBXContainerItemProxy */; + target = FFFA455011f07f8c455011f0 /* PsFastXml */; + targetProxy = FFF5455011f07f8c455011f0 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of SceneQuery */ - FFFF1283aa007fe81283aa00 /* SqAABBPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1283aa007fe81283aa00 /* SqAABBPruner.cpp */; }; - FFFF1283aa687fe81283aa68 /* SqAABBTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1283aa687fe81283aa68 /* SqAABBTree.cpp */; }; - FFFF1283aad07fe81283aad0 /* SqAABBTreeUpdateMap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1283aad07fe81283aad0 /* SqAABBTreeUpdateMap.cpp */; }; - FFFF1283ab387fe81283ab38 /* SqBounds.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1283ab387fe81283ab38 /* SqBounds.cpp */; }; - FFFF1283aba07fe81283aba0 /* SqBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1283aba07fe81283aba0 /* SqBucketPruner.cpp */; }; - FFFF1283ac087fe81283ac08 /* SqExtendedBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1283ac087fe81283ac08 /* SqExtendedBucketPruner.cpp */; }; - FFFF1283ac707fe81283ac70 /* SqMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1283ac707fe81283ac70 /* SqMetaData.cpp */; }; - FFFF1283acd87fe81283acd8 /* SqPruningPool.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1283acd87fe81283acd8 /* SqPruningPool.cpp */; }; - FFFF1283ad407fe81283ad40 /* SqPruningStructure.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1283ad407fe81283ad40 /* SqPruningStructure.cpp */; }; - FFFF1283ada87fe81283ada8 /* SqSceneQueryManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1283ada87fe81283ada8 /* SqSceneQueryManager.cpp */; }; + FFFF458204007f8c45820400 /* SqAABBPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458204007f8c45820400 /* SqAABBPruner.cpp */; }; + FFFF458204687f8c45820468 /* SqAABBTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458204687f8c45820468 /* SqAABBTree.cpp */; }; + FFFF458204d07f8c458204d0 /* SqAABBTreeUpdateMap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458204d07f8c458204d0 /* SqAABBTreeUpdateMap.cpp */; }; + FFFF458205387f8c45820538 /* SqBounds.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458205387f8c45820538 /* SqBounds.cpp */; }; + FFFF458205a07f8c458205a0 /* SqBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458205a07f8c458205a0 /* SqBucketPruner.cpp */; }; + FFFF458206087f8c45820608 /* SqExtendedBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458206087f8c45820608 /* SqExtendedBucketPruner.cpp */; }; + FFFF458206707f8c45820670 /* SqMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458206707f8c45820670 /* SqMetaData.cpp */; }; + FFFF458206d87f8c458206d8 /* SqPruningPool.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458206d87f8c458206d8 /* SqPruningPool.cpp */; }; + FFFF458207407f8c45820740 /* SqPruningStructure.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458207407f8c45820740 /* SqPruningStructure.cpp */; }; + FFFF458207a87f8c458207a8 /* SqSceneQueryManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458207a87f8c458207a8 /* SqSceneQueryManager.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD12694cb07fe812694cb0 /* SceneQuery */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SceneQuery"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD1283aa007fe81283aa00 /* SqAABBPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.cpp"; path = "../../SceneQuery/src/SqAABBPruner.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1283aa687fe81283aa68 /* SqAABBTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.cpp"; path = "../../SceneQuery/src/SqAABBTree.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1283aad07fe81283aad0 /* SqAABBTreeUpdateMap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.cpp"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1283ab387fe81283ab38 /* SqBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.cpp"; path = "../../SceneQuery/src/SqBounds.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1283aba07fe81283aba0 /* SqBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.cpp"; path = "../../SceneQuery/src/SqBucketPruner.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1283ac087fe81283ac08 /* SqExtendedBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.cpp"; path = "../../SceneQuery/src/SqExtendedBucketPruner.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1283ac707fe81283ac70 /* SqMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqMetaData.cpp"; path = "../../SceneQuery/src/SqMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1283acd87fe81283acd8 /* SqPruningPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.cpp"; path = "../../SceneQuery/src/SqPruningPool.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1283ad407fe81283ad40 /* SqPruningStructure.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.cpp"; path = "../../SceneQuery/src/SqPruningStructure.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1283ada87fe81283ada8 /* SqSceneQueryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.cpp"; path = "../../SceneQuery/src/SqSceneQueryManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1283ae107fe81283ae10 /* SqAABBPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.h"; path = "../../SceneQuery/src/SqAABBPruner.h"; sourceTree = SOURCE_ROOT; }; - FFFD1283ae787fe81283ae78 /* SqAABBTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.h"; path = "../../SceneQuery/src/SqAABBTree.h"; sourceTree = SOURCE_ROOT; }; - FFFD1283aee07fe81283aee0 /* SqAABBTreeQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeQuery.h"; path = "../../SceneQuery/src/SqAABBTreeQuery.h"; sourceTree = SOURCE_ROOT; }; - FFFD1283af487fe81283af48 /* SqAABBTreeUpdateMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.h"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.h"; sourceTree = SOURCE_ROOT; }; - FFFD1283afb07fe81283afb0 /* SqBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.h"; path = "../../SceneQuery/src/SqBounds.h"; sourceTree = SOURCE_ROOT; }; - FFFD1283b0187fe81283b018 /* SqBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.h"; path = "../../SceneQuery/src/SqBucketPruner.h"; sourceTree = SOURCE_ROOT; }; - FFFD1283b0807fe81283b080 /* SqExtendedBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.h"; path = "../../SceneQuery/src/SqExtendedBucketPruner.h"; sourceTree = SOURCE_ROOT; }; - FFFD1283b0e87fe81283b0e8 /* SqPrunerTestsSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerTestsSIMD.h"; path = "../../SceneQuery/src/SqPrunerTestsSIMD.h"; sourceTree = SOURCE_ROOT; }; - FFFD1283b1507fe81283b150 /* SqPruningPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.h"; path = "../../SceneQuery/src/SqPruningPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD1283b1b87fe81283b1b8 /* SqTypedef.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqTypedef.h"; path = "../../SceneQuery/src/SqTypedef.h"; sourceTree = SOURCE_ROOT; }; - FFFD12698f507fe812698f50 /* SqPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruner.h"; path = "../../SceneQuery/include/SqPruner.h"; sourceTree = SOURCE_ROOT; }; - FFFD12698fb87fe812698fb8 /* SqPrunerMergeData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerMergeData.h"; path = "../../SceneQuery/include/SqPrunerMergeData.h"; sourceTree = SOURCE_ROOT; }; - FFFD126990207fe812699020 /* SqPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.h"; path = "../../SceneQuery/include/SqPruningStructure.h"; sourceTree = SOURCE_ROOT; }; - FFFD126990887fe812699088 /* SqSceneQueryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.h"; path = "../../SceneQuery/include/SqSceneQueryManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD455314507f8c45531450 /* SceneQuery */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SceneQuery"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD458204007f8c45820400 /* SqAABBPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.cpp"; path = "../../SceneQuery/src/SqAABBPruner.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458204687f8c45820468 /* SqAABBTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.cpp"; path = "../../SceneQuery/src/SqAABBTree.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458204d07f8c458204d0 /* SqAABBTreeUpdateMap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.cpp"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458205387f8c45820538 /* SqBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.cpp"; path = "../../SceneQuery/src/SqBounds.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458205a07f8c458205a0 /* SqBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.cpp"; path = "../../SceneQuery/src/SqBucketPruner.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458206087f8c45820608 /* SqExtendedBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.cpp"; path = "../../SceneQuery/src/SqExtendedBucketPruner.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458206707f8c45820670 /* SqMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqMetaData.cpp"; path = "../../SceneQuery/src/SqMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458206d87f8c458206d8 /* SqPruningPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.cpp"; path = "../../SceneQuery/src/SqPruningPool.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458207407f8c45820740 /* SqPruningStructure.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.cpp"; path = "../../SceneQuery/src/SqPruningStructure.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458207a87f8c458207a8 /* SqSceneQueryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.cpp"; path = "../../SceneQuery/src/SqSceneQueryManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458208107f8c45820810 /* SqAABBPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.h"; path = "../../SceneQuery/src/SqAABBPruner.h"; sourceTree = SOURCE_ROOT; }; + FFFD458208787f8c45820878 /* SqAABBTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.h"; path = "../../SceneQuery/src/SqAABBTree.h"; sourceTree = SOURCE_ROOT; }; + FFFD458208e07f8c458208e0 /* SqAABBTreeQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeQuery.h"; path = "../../SceneQuery/src/SqAABBTreeQuery.h"; sourceTree = SOURCE_ROOT; }; + FFFD458209487f8c45820948 /* SqAABBTreeUpdateMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.h"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.h"; sourceTree = SOURCE_ROOT; }; + FFFD458209b07f8c458209b0 /* SqBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.h"; path = "../../SceneQuery/src/SqBounds.h"; sourceTree = SOURCE_ROOT; }; + FFFD45820a187f8c45820a18 /* SqBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.h"; path = "../../SceneQuery/src/SqBucketPruner.h"; sourceTree = SOURCE_ROOT; }; + FFFD45820a807f8c45820a80 /* SqExtendedBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.h"; path = "../../SceneQuery/src/SqExtendedBucketPruner.h"; sourceTree = SOURCE_ROOT; }; + FFFD45820ae87f8c45820ae8 /* SqPrunerTestsSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerTestsSIMD.h"; path = "../../SceneQuery/src/SqPrunerTestsSIMD.h"; sourceTree = SOURCE_ROOT; }; + FFFD45820b507f8c45820b50 /* SqPruningPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.h"; path = "../../SceneQuery/src/SqPruningPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD45820bb87f8c45820bb8 /* SqTypedef.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqTypedef.h"; path = "../../SceneQuery/src/SqTypedef.h"; sourceTree = SOURCE_ROOT; }; + FFFD455357107f8c45535710 /* SqPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruner.h"; path = "../../SceneQuery/include/SqPruner.h"; sourceTree = SOURCE_ROOT; }; + FFFD455357787f8c45535778 /* SqPrunerMergeData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerMergeData.h"; path = "../../SceneQuery/include/SqPrunerMergeData.h"; sourceTree = SOURCE_ROOT; }; + FFFD455357e07f8c455357e0 /* SqPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.h"; path = "../../SceneQuery/include/SqPruningStructure.h"; sourceTree = SOURCE_ROOT; }; + FFFD455358487f8c45535848 /* SqSceneQueryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.h"; path = "../../SceneQuery/include/SqSceneQueryManager.h"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF212694cb07fe812694cb0 /* Resources */ = { + FFF2455314507f8c45531450 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -939,7 +939,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC12694cb07fe812694cb0 /* Frameworks */ = { + FFFC455314507f8c45531450 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -949,20 +949,20 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF812694cb07fe812694cb0 /* Sources */ = { + FFF8455314507f8c45531450 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF1283aa007fe81283aa00, - FFFF1283aa687fe81283aa68, - FFFF1283aad07fe81283aad0, - FFFF1283ab387fe81283ab38, - FFFF1283aba07fe81283aba0, - FFFF1283ac087fe81283ac08, - FFFF1283ac707fe81283ac70, - FFFF1283acd87fe81283acd8, - FFFF1283ad407fe81283ad40, - FFFF1283ada87fe81283ada8, + FFFF458204007f8c45820400, + FFFF458204687f8c45820468, + FFFF458204d07f8c458204d0, + FFFF458205387f8c45820538, + FFFF458205a07f8c458205a0, + FFFF458206087f8c45820608, + FFFF458206707f8c45820670, + FFFF458206d87f8c458206d8, + FFFF458207407f8c45820740, + FFFF458207a87f8c458207a8, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -974,154 +974,154 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of SimulationController */ - FFFF1106a5d07fe81106a5d0 /* ScActorCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106a5d07fe81106a5d0 /* ScActorCore.cpp */; }; - FFFF1106a6387fe81106a638 /* ScActorSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106a6387fe81106a638 /* ScActorSim.cpp */; }; - FFFF1106a6a07fe81106a6a0 /* ScArticulationCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106a6a07fe81106a6a0 /* ScArticulationCore.cpp */; }; - FFFF1106a7087fe81106a708 /* ScArticulationJointCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106a7087fe81106a708 /* ScArticulationJointCore.cpp */; }; - FFFF1106a7707fe81106a770 /* ScArticulationJointSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106a7707fe81106a770 /* ScArticulationJointSim.cpp */; }; - FFFF1106a7d87fe81106a7d8 /* ScArticulationSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106a7d87fe81106a7d8 /* ScArticulationSim.cpp */; }; - FFFF1106a8407fe81106a840 /* ScBodyCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106a8407fe81106a840 /* ScBodyCore.cpp */; }; - FFFF1106a8a87fe81106a8a8 /* ScBodyCoreKinematic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106a8a87fe81106a8a8 /* ScBodyCoreKinematic.cpp */; }; - FFFF1106a9107fe81106a910 /* ScBodySim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106a9107fe81106a910 /* ScBodySim.cpp */; }; - FFFF1106a9787fe81106a978 /* ScConstraintCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106a9787fe81106a978 /* ScConstraintCore.cpp */; }; - FFFF1106a9e07fe81106a9e0 /* ScConstraintGroupNode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106a9e07fe81106a9e0 /* ScConstraintGroupNode.cpp */; }; - FFFF1106aa487fe81106aa48 /* ScConstraintInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106aa487fe81106aa48 /* ScConstraintInteraction.cpp */; }; - FFFF1106aab07fe81106aab0 /* ScConstraintProjectionManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106aab07fe81106aab0 /* ScConstraintProjectionManager.cpp */; }; - FFFF1106ab187fe81106ab18 /* ScConstraintProjectionTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106ab187fe81106ab18 /* ScConstraintProjectionTree.cpp */; }; - FFFF1106ab807fe81106ab80 /* ScConstraintSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106ab807fe81106ab80 /* ScConstraintSim.cpp */; }; - FFFF1106abe87fe81106abe8 /* ScElementInteractionMarker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106abe87fe81106abe8 /* ScElementInteractionMarker.cpp */; }; - FFFF1106ac507fe81106ac50 /* ScElementSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106ac507fe81106ac50 /* ScElementSim.cpp */; }; - FFFF1106acb87fe81106acb8 /* ScInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106acb87fe81106acb8 /* ScInteraction.cpp */; }; - FFFF1106ad207fe81106ad20 /* ScIterators.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106ad207fe81106ad20 /* ScIterators.cpp */; }; - FFFF1106ad887fe81106ad88 /* ScMaterialCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106ad887fe81106ad88 /* ScMaterialCore.cpp */; }; - FFFF1106adf07fe81106adf0 /* ScMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106adf07fe81106adf0 /* ScMetaData.cpp */; }; - FFFF1106ae587fe81106ae58 /* ScNPhaseCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106ae587fe81106ae58 /* ScNPhaseCore.cpp */; }; - FFFF1106aec07fe81106aec0 /* ScPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106aec07fe81106aec0 /* ScPhysics.cpp */; }; - FFFF1106af287fe81106af28 /* ScRigidCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106af287fe81106af28 /* ScRigidCore.cpp */; }; - FFFF1106af907fe81106af90 /* ScRigidSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106af907fe81106af90 /* ScRigidSim.cpp */; }; - FFFF1106aff87fe81106aff8 /* ScScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106aff87fe81106aff8 /* ScScene.cpp */; }; - FFFF1106b0607fe81106b060 /* ScShapeCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106b0607fe81106b060 /* ScShapeCore.cpp */; }; - FFFF1106b0c87fe81106b0c8 /* ScShapeInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106b0c87fe81106b0c8 /* ScShapeInteraction.cpp */; }; - FFFF1106b1307fe81106b130 /* ScShapeSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106b1307fe81106b130 /* ScShapeSim.cpp */; }; - FFFF1106b1987fe81106b198 /* ScSimStats.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106b1987fe81106b198 /* ScSimStats.cpp */; }; - FFFF1106b2007fe81106b200 /* ScSimulationController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106b2007fe81106b200 /* ScSimulationController.cpp */; }; - FFFF1106b2687fe81106b268 /* ScSqBoundsManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106b2687fe81106b268 /* ScSqBoundsManager.cpp */; }; - FFFF1106b2d07fe81106b2d0 /* ScStaticCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106b2d07fe81106b2d0 /* ScStaticCore.cpp */; }; - FFFF1106b3387fe81106b338 /* ScStaticSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106b3387fe81106b338 /* ScStaticSim.cpp */; }; - FFFF1106b3a07fe81106b3a0 /* ScTriggerInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106b3a07fe81106b3a0 /* ScTriggerInteraction.cpp */; }; - FFFF1106b5407fe81106b540 /* particles/ScParticleBodyInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106b5407fe81106b540 /* particles/ScParticleBodyInteraction.cpp */; }; - FFFF1106b5a87fe81106b5a8 /* particles/ScParticlePacketShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106b5a87fe81106b5a8 /* particles/ScParticlePacketShape.cpp */; }; - FFFF1106b6107fe81106b610 /* particles/ScParticleSystemCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106b6107fe81106b610 /* particles/ScParticleSystemCore.cpp */; }; - FFFF1106b6787fe81106b678 /* particles/ScParticleSystemSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106b6787fe81106b678 /* particles/ScParticleSystemSim.cpp */; }; - FFFF1106b7b07fe81106b7b0 /* cloth/ScClothCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106b7b07fe81106b7b0 /* cloth/ScClothCore.cpp */; }; - FFFF1106b8187fe81106b818 /* cloth/ScClothFabricCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106b8187fe81106b818 /* cloth/ScClothFabricCore.cpp */; }; - FFFF1106b8807fe81106b880 /* cloth/ScClothShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106b8807fe81106b880 /* cloth/ScClothShape.cpp */; }; - FFFF1106b8e87fe81106b8e8 /* cloth/ScClothSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1106b8e87fe81106b8e8 /* cloth/ScClothSim.cpp */; }; + FFFF45826dd07f8c45826dd0 /* ScActorCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45826dd07f8c45826dd0 /* ScActorCore.cpp */; }; + FFFF45826e387f8c45826e38 /* ScActorSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45826e387f8c45826e38 /* ScActorSim.cpp */; }; + FFFF45826ea07f8c45826ea0 /* ScArticulationCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45826ea07f8c45826ea0 /* ScArticulationCore.cpp */; }; + FFFF45826f087f8c45826f08 /* ScArticulationJointCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45826f087f8c45826f08 /* ScArticulationJointCore.cpp */; }; + FFFF45826f707f8c45826f70 /* ScArticulationJointSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45826f707f8c45826f70 /* ScArticulationJointSim.cpp */; }; + FFFF45826fd87f8c45826fd8 /* ScArticulationSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45826fd87f8c45826fd8 /* ScArticulationSim.cpp */; }; + FFFF458270407f8c45827040 /* ScBodyCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458270407f8c45827040 /* ScBodyCore.cpp */; }; + FFFF458270a87f8c458270a8 /* ScBodyCoreKinematic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458270a87f8c458270a8 /* ScBodyCoreKinematic.cpp */; }; + FFFF458271107f8c45827110 /* ScBodySim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458271107f8c45827110 /* ScBodySim.cpp */; }; + FFFF458271787f8c45827178 /* ScConstraintCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458271787f8c45827178 /* ScConstraintCore.cpp */; }; + FFFF458271e07f8c458271e0 /* ScConstraintGroupNode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458271e07f8c458271e0 /* ScConstraintGroupNode.cpp */; }; + FFFF458272487f8c45827248 /* ScConstraintInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458272487f8c45827248 /* ScConstraintInteraction.cpp */; }; + FFFF458272b07f8c458272b0 /* ScConstraintProjectionManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458272b07f8c458272b0 /* ScConstraintProjectionManager.cpp */; }; + FFFF458273187f8c45827318 /* ScConstraintProjectionTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458273187f8c45827318 /* ScConstraintProjectionTree.cpp */; }; + FFFF458273807f8c45827380 /* ScConstraintSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458273807f8c45827380 /* ScConstraintSim.cpp */; }; + FFFF458273e87f8c458273e8 /* ScElementInteractionMarker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458273e87f8c458273e8 /* ScElementInteractionMarker.cpp */; }; + FFFF458274507f8c45827450 /* ScElementSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458274507f8c45827450 /* ScElementSim.cpp */; }; + FFFF458274b87f8c458274b8 /* ScInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458274b87f8c458274b8 /* ScInteraction.cpp */; }; + FFFF458275207f8c45827520 /* ScIterators.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458275207f8c45827520 /* ScIterators.cpp */; }; + FFFF458275887f8c45827588 /* ScMaterialCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458275887f8c45827588 /* ScMaterialCore.cpp */; }; + FFFF458275f07f8c458275f0 /* ScMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458275f07f8c458275f0 /* ScMetaData.cpp */; }; + FFFF458276587f8c45827658 /* ScNPhaseCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458276587f8c45827658 /* ScNPhaseCore.cpp */; }; + FFFF458276c07f8c458276c0 /* ScPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458276c07f8c458276c0 /* ScPhysics.cpp */; }; + FFFF458277287f8c45827728 /* ScRigidCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458277287f8c45827728 /* ScRigidCore.cpp */; }; + FFFF458277907f8c45827790 /* ScRigidSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458277907f8c45827790 /* ScRigidSim.cpp */; }; + FFFF458277f87f8c458277f8 /* ScScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458277f87f8c458277f8 /* ScScene.cpp */; }; + FFFF458278607f8c45827860 /* ScShapeCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458278607f8c45827860 /* ScShapeCore.cpp */; }; + FFFF458278c87f8c458278c8 /* ScShapeInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458278c87f8c458278c8 /* ScShapeInteraction.cpp */; }; + FFFF458279307f8c45827930 /* ScShapeSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458279307f8c45827930 /* ScShapeSim.cpp */; }; + FFFF458279987f8c45827998 /* ScSimStats.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458279987f8c45827998 /* ScSimStats.cpp */; }; + FFFF45827a007f8c45827a00 /* ScSimulationController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45827a007f8c45827a00 /* ScSimulationController.cpp */; }; + FFFF45827a687f8c45827a68 /* ScSqBoundsManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45827a687f8c45827a68 /* ScSqBoundsManager.cpp */; }; + FFFF45827ad07f8c45827ad0 /* ScStaticCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45827ad07f8c45827ad0 /* ScStaticCore.cpp */; }; + FFFF45827b387f8c45827b38 /* ScStaticSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45827b387f8c45827b38 /* ScStaticSim.cpp */; }; + FFFF45827ba07f8c45827ba0 /* ScTriggerInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45827ba07f8c45827ba0 /* ScTriggerInteraction.cpp */; }; + FFFF45827d407f8c45827d40 /* particles/ScParticleBodyInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45827d407f8c45827d40 /* particles/ScParticleBodyInteraction.cpp */; }; + FFFF45827da87f8c45827da8 /* particles/ScParticlePacketShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45827da87f8c45827da8 /* particles/ScParticlePacketShape.cpp */; }; + FFFF45827e107f8c45827e10 /* particles/ScParticleSystemCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45827e107f8c45827e10 /* particles/ScParticleSystemCore.cpp */; }; + FFFF45827e787f8c45827e78 /* particles/ScParticleSystemSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45827e787f8c45827e78 /* particles/ScParticleSystemSim.cpp */; }; + FFFF45827fb07f8c45827fb0 /* cloth/ScClothCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45827fb07f8c45827fb0 /* cloth/ScClothCore.cpp */; }; + FFFF458280187f8c45828018 /* cloth/ScClothFabricCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458280187f8c45828018 /* cloth/ScClothFabricCore.cpp */; }; + FFFF458280807f8c45828080 /* cloth/ScClothShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458280807f8c45828080 /* cloth/ScClothShape.cpp */; }; + FFFF458280e87f8c458280e8 /* cloth/ScClothSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD458280e87f8c458280e8 /* cloth/ScClothSim.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD126992107fe812699210 /* SimulationController */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SimulationController"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD1283d4007fe81283d400 /* ScActorCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.h"; path = "../../SimulationController/include/ScActorCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD1283d4687fe81283d468 /* ScArticulationCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.h"; path = "../../SimulationController/include/ScArticulationCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD1283d4d07fe81283d4d0 /* ScArticulationJointCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.h"; path = "../../SimulationController/include/ScArticulationJointCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD1283d5387fe81283d538 /* ScBodyCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.h"; path = "../../SimulationController/include/ScBodyCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD1283d5a07fe81283d5a0 /* ScClothCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothCore.h"; path = "../../SimulationController/include/ScClothCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD1283d6087fe81283d608 /* ScClothFabricCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothFabricCore.h"; path = "../../SimulationController/include/ScClothFabricCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD1283d6707fe81283d670 /* ScConstraintCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.h"; path = "../../SimulationController/include/ScConstraintCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD1283d6d87fe81283d6d8 /* ScIterators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.h"; path = "../../SimulationController/include/ScIterators.h"; sourceTree = SOURCE_ROOT; }; - FFFD1283d7407fe81283d740 /* ScMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.h"; path = "../../SimulationController/include/ScMaterialCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD1283d7a87fe81283d7a8 /* ScParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScParticleSystemCore.h"; path = "../../SimulationController/include/ScParticleSystemCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD1283d8107fe81283d810 /* ScPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.h"; path = "../../SimulationController/include/ScPhysics.h"; sourceTree = SOURCE_ROOT; }; - FFFD1283d8787fe81283d878 /* ScRigidCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.h"; path = "../../SimulationController/include/ScRigidCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD1283d8e07fe81283d8e0 /* ScScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.h"; path = "../../SimulationController/include/ScScene.h"; sourceTree = SOURCE_ROOT; }; - FFFD1283d9487fe81283d948 /* ScShapeCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.h"; path = "../../SimulationController/include/ScShapeCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD1283d9b07fe81283d9b0 /* ScStaticCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.h"; path = "../../SimulationController/include/ScStaticCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD110698007fe811069800 /* ScActorElementPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorElementPair.h"; path = "../../SimulationController/src/ScActorElementPair.h"; sourceTree = SOURCE_ROOT; }; - FFFD110698687fe811069868 /* ScActorInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorInteraction.h"; path = "../../SimulationController/src/ScActorInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFD110698d07fe8110698d0 /* ScActorPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorPair.h"; path = "../../SimulationController/src/ScActorPair.h"; sourceTree = SOURCE_ROOT; }; - FFFD110699387fe811069938 /* ScActorSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.h"; path = "../../SimulationController/src/ScActorSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD110699a07fe8110699a0 /* ScArticulationJointSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.h"; path = "../../SimulationController/src/ScArticulationJointSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD11069a087fe811069a08 /* ScArticulationSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.h"; path = "../../SimulationController/src/ScArticulationSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD11069a707fe811069a70 /* ScBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.h"; path = "../../SimulationController/src/ScBodySim.h"; sourceTree = SOURCE_ROOT; }; - FFFD11069ad87fe811069ad8 /* ScClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClient.h"; path = "../../SimulationController/src/ScClient.h"; sourceTree = SOURCE_ROOT; }; - FFFD11069b407fe811069b40 /* ScConstraintGroupNode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.h"; path = "../../SimulationController/src/ScConstraintGroupNode.h"; sourceTree = SOURCE_ROOT; }; - FFFD11069ba87fe811069ba8 /* ScConstraintInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.h"; path = "../../SimulationController/src/ScConstraintInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFD11069c107fe811069c10 /* ScConstraintProjectionManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.h"; path = "../../SimulationController/src/ScConstraintProjectionManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD11069c787fe811069c78 /* ScConstraintProjectionTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.h"; path = "../../SimulationController/src/ScConstraintProjectionTree.h"; sourceTree = SOURCE_ROOT; }; - FFFD11069ce07fe811069ce0 /* ScConstraintSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.h"; path = "../../SimulationController/src/ScConstraintSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD11069d487fe811069d48 /* ScContactReportBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactReportBuffer.h"; path = "../../SimulationController/src/ScContactReportBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD11069db07fe811069db0 /* ScContactStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactStream.h"; path = "../../SimulationController/src/ScContactStream.h"; sourceTree = SOURCE_ROOT; }; - FFFD11069e187fe811069e18 /* ScElementInteractionMarker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.h"; path = "../../SimulationController/src/ScElementInteractionMarker.h"; sourceTree = SOURCE_ROOT; }; - FFFD11069e807fe811069e80 /* ScElementSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.h"; path = "../../SimulationController/src/ScElementSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD11069ee87fe811069ee8 /* ScElementSimInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSimInteraction.h"; path = "../../SimulationController/src/ScElementSimInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFD11069f507fe811069f50 /* ScInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.h"; path = "../../SimulationController/src/ScInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFD11069fb87fe811069fb8 /* ScInteractionFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteractionFlags.h"; path = "../../SimulationController/src/ScInteractionFlags.h"; sourceTree = SOURCE_ROOT; }; - FFFD1106a0207fe81106a020 /* ScNPhaseCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.h"; path = "../../SimulationController/src/ScNPhaseCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD1106a0887fe81106a088 /* ScObjectIDTracker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScObjectIDTracker.h"; path = "../../SimulationController/src/ScObjectIDTracker.h"; sourceTree = SOURCE_ROOT; }; - FFFD1106a0f07fe81106a0f0 /* ScRbElementInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRbElementInteraction.h"; path = "../../SimulationController/src/ScRbElementInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFD1106a1587fe81106a158 /* ScRigidSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.h"; path = "../../SimulationController/src/ScRigidSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD1106a1c07fe81106a1c0 /* ScShapeInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.h"; path = "../../SimulationController/src/ScShapeInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFD1106a2287fe81106a228 /* ScShapeIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeIterator.h"; path = "../../SimulationController/src/ScShapeIterator.h"; sourceTree = SOURCE_ROOT; }; - FFFD1106a2907fe81106a290 /* ScShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.h"; path = "../../SimulationController/src/ScShapeSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD1106a2f87fe81106a2f8 /* ScSimStateData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStateData.h"; path = "../../SimulationController/src/ScSimStateData.h"; sourceTree = SOURCE_ROOT; }; - FFFD1106a3607fe81106a360 /* ScSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.h"; path = "../../SimulationController/src/ScSimStats.h"; sourceTree = SOURCE_ROOT; }; - FFFD1106a3c87fe81106a3c8 /* ScSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.h"; path = "../../SimulationController/src/ScSimulationController.h"; sourceTree = SOURCE_ROOT; }; - FFFD1106a4307fe81106a430 /* ScSqBoundsManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.h"; path = "../../SimulationController/src/ScSqBoundsManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD1106a4987fe81106a498 /* ScStaticSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.h"; path = "../../SimulationController/src/ScStaticSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD1106a5007fe81106a500 /* ScTriggerInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.h"; path = "../../SimulationController/src/ScTriggerInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFD1106a5687fe81106a568 /* ScTriggerPairs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerPairs.h"; path = "../../SimulationController/src/ScTriggerPairs.h"; sourceTree = SOURCE_ROOT; }; - FFFD1106a5d07fe81106a5d0 /* ScActorCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.cpp"; path = "../../SimulationController/src/ScActorCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1106a6387fe81106a638 /* ScActorSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.cpp"; path = "../../SimulationController/src/ScActorSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1106a6a07fe81106a6a0 /* ScArticulationCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.cpp"; path = "../../SimulationController/src/ScArticulationCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1106a7087fe81106a708 /* ScArticulationJointCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.cpp"; path = "../../SimulationController/src/ScArticulationJointCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1106a7707fe81106a770 /* ScArticulationJointSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.cpp"; path = "../../SimulationController/src/ScArticulationJointSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1106a7d87fe81106a7d8 /* ScArticulationSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.cpp"; path = "../../SimulationController/src/ScArticulationSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1106a8407fe81106a840 /* ScBodyCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.cpp"; path = "../../SimulationController/src/ScBodyCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1106a8a87fe81106a8a8 /* ScBodyCoreKinematic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCoreKinematic.cpp"; path = "../../SimulationController/src/ScBodyCoreKinematic.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1106a9107fe81106a910 /* ScBodySim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.cpp"; path = "../../SimulationController/src/ScBodySim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1106a9787fe81106a978 /* ScConstraintCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.cpp"; path = "../../SimulationController/src/ScConstraintCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1106a9e07fe81106a9e0 /* ScConstraintGroupNode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.cpp"; path = "../../SimulationController/src/ScConstraintGroupNode.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1106aa487fe81106aa48 /* ScConstraintInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.cpp"; path = "../../SimulationController/src/ScConstraintInteraction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1106aab07fe81106aab0 /* ScConstraintProjectionManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.cpp"; path = "../../SimulationController/src/ScConstraintProjectionManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1106ab187fe81106ab18 /* ScConstraintProjectionTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.cpp"; path = "../../SimulationController/src/ScConstraintProjectionTree.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1106ab807fe81106ab80 /* ScConstraintSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.cpp"; path = "../../SimulationController/src/ScConstraintSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1106abe87fe81106abe8 /* ScElementInteractionMarker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.cpp"; path = "../../SimulationController/src/ScElementInteractionMarker.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1106ac507fe81106ac50 /* ScElementSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.cpp"; path = "../../SimulationController/src/ScElementSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1106acb87fe81106acb8 /* ScInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.cpp"; path = "../../SimulationController/src/ScInteraction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1106ad207fe81106ad20 /* ScIterators.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.cpp"; path = "../../SimulationController/src/ScIterators.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1106ad887fe81106ad88 /* ScMaterialCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.cpp"; path = "../../SimulationController/src/ScMaterialCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1106adf07fe81106adf0 /* ScMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMetaData.cpp"; path = "../../SimulationController/src/ScMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1106ae587fe81106ae58 /* ScNPhaseCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.cpp"; path = "../../SimulationController/src/ScNPhaseCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1106aec07fe81106aec0 /* ScPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.cpp"; path = "../../SimulationController/src/ScPhysics.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1106af287fe81106af28 /* ScRigidCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.cpp"; path = "../../SimulationController/src/ScRigidCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1106af907fe81106af90 /* ScRigidSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.cpp"; path = "../../SimulationController/src/ScRigidSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1106aff87fe81106aff8 /* ScScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.cpp"; path = "../../SimulationController/src/ScScene.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1106b0607fe81106b060 /* ScShapeCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.cpp"; path = "../../SimulationController/src/ScShapeCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1106b0c87fe81106b0c8 /* ScShapeInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.cpp"; path = "../../SimulationController/src/ScShapeInteraction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1106b1307fe81106b130 /* ScShapeSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.cpp"; path = "../../SimulationController/src/ScShapeSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1106b1987fe81106b198 /* ScSimStats.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.cpp"; path = "../../SimulationController/src/ScSimStats.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1106b2007fe81106b200 /* ScSimulationController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.cpp"; path = "../../SimulationController/src/ScSimulationController.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1106b2687fe81106b268 /* ScSqBoundsManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.cpp"; path = "../../SimulationController/src/ScSqBoundsManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1106b2d07fe81106b2d0 /* ScStaticCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.cpp"; path = "../../SimulationController/src/ScStaticCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1106b3387fe81106b338 /* ScStaticSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.cpp"; path = "../../SimulationController/src/ScStaticSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1106b3a07fe81106b3a0 /* ScTriggerInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.cpp"; path = "../../SimulationController/src/ScTriggerInteraction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1106b4087fe81106b408 /* particles/ScParticleBodyInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.h"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFD1106b4707fe81106b470 /* particles/ScParticlePacketShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.h"; path = "../../SimulationController/src/particles/ScParticlePacketShape.h"; sourceTree = SOURCE_ROOT; }; - FFFD1106b4d87fe81106b4d8 /* particles/ScParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.h"; path = "../../SimulationController/src/particles/ScParticleSystemSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD1106b5407fe81106b540 /* particles/ScParticleBodyInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.cpp"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1106b5a87fe81106b5a8 /* particles/ScParticlePacketShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.cpp"; path = "../../SimulationController/src/particles/ScParticlePacketShape.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1106b6107fe81106b610 /* particles/ScParticleSystemCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemCore.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1106b6787fe81106b678 /* particles/ScParticleSystemSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1106b6e07fe81106b6e0 /* cloth/ScClothShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.h"; path = "../../SimulationController/src/cloth/ScClothShape.h"; sourceTree = SOURCE_ROOT; }; - FFFD1106b7487fe81106b748 /* cloth/ScClothSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothSim.h"; path = "../../SimulationController/src/cloth/ScClothSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD1106b7b07fe81106b7b0 /* cloth/ScClothCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothCore.cpp"; path = "../../SimulationController/src/cloth/ScClothCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1106b8187fe81106b818 /* cloth/ScClothFabricCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothFabricCore.cpp"; path = "../../SimulationController/src/cloth/ScClothFabricCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1106b8807fe81106b880 /* cloth/ScClothShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.cpp"; path = "../../SimulationController/src/cloth/ScClothShape.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1106b8e87fe81106b8e8 /* cloth/ScClothSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothSim.cpp"; path = "../../SimulationController/src/cloth/ScClothSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD455359d07f8c455359d0 /* SimulationController */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SimulationController"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD45822e007f8c45822e00 /* ScActorCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.h"; path = "../../SimulationController/include/ScActorCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD45822e687f8c45822e68 /* ScArticulationCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.h"; path = "../../SimulationController/include/ScArticulationCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD45822ed07f8c45822ed0 /* ScArticulationJointCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.h"; path = "../../SimulationController/include/ScArticulationJointCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD45822f387f8c45822f38 /* ScBodyCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.h"; path = "../../SimulationController/include/ScBodyCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD45822fa07f8c45822fa0 /* ScClothCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothCore.h"; path = "../../SimulationController/include/ScClothCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD458230087f8c45823008 /* ScClothFabricCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothFabricCore.h"; path = "../../SimulationController/include/ScClothFabricCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD458230707f8c45823070 /* ScConstraintCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.h"; path = "../../SimulationController/include/ScConstraintCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD458230d87f8c458230d8 /* ScIterators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.h"; path = "../../SimulationController/include/ScIterators.h"; sourceTree = SOURCE_ROOT; }; + FFFD458231407f8c45823140 /* ScMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.h"; path = "../../SimulationController/include/ScMaterialCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD458231a87f8c458231a8 /* ScParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScParticleSystemCore.h"; path = "../../SimulationController/include/ScParticleSystemCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD458232107f8c45823210 /* ScPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.h"; path = "../../SimulationController/include/ScPhysics.h"; sourceTree = SOURCE_ROOT; }; + FFFD458232787f8c45823278 /* ScRigidCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.h"; path = "../../SimulationController/include/ScRigidCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD458232e07f8c458232e0 /* ScScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.h"; path = "../../SimulationController/include/ScScene.h"; sourceTree = SOURCE_ROOT; }; + FFFD458233487f8c45823348 /* ScShapeCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.h"; path = "../../SimulationController/include/ScShapeCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD458233b07f8c458233b0 /* ScStaticCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.h"; path = "../../SimulationController/include/ScStaticCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD458260007f8c45826000 /* ScActorElementPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorElementPair.h"; path = "../../SimulationController/src/ScActorElementPair.h"; sourceTree = SOURCE_ROOT; }; + FFFD458260687f8c45826068 /* ScActorInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorInteraction.h"; path = "../../SimulationController/src/ScActorInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFD458260d07f8c458260d0 /* ScActorPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorPair.h"; path = "../../SimulationController/src/ScActorPair.h"; sourceTree = SOURCE_ROOT; }; + FFFD458261387f8c45826138 /* ScActorSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.h"; path = "../../SimulationController/src/ScActorSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD458261a07f8c458261a0 /* ScArticulationJointSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.h"; path = "../../SimulationController/src/ScArticulationJointSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD458262087f8c45826208 /* ScArticulationSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.h"; path = "../../SimulationController/src/ScArticulationSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD458262707f8c45826270 /* ScBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.h"; path = "../../SimulationController/src/ScBodySim.h"; sourceTree = SOURCE_ROOT; }; + FFFD458262d87f8c458262d8 /* ScClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClient.h"; path = "../../SimulationController/src/ScClient.h"; sourceTree = SOURCE_ROOT; }; + FFFD458263407f8c45826340 /* ScConstraintGroupNode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.h"; path = "../../SimulationController/src/ScConstraintGroupNode.h"; sourceTree = SOURCE_ROOT; }; + FFFD458263a87f8c458263a8 /* ScConstraintInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.h"; path = "../../SimulationController/src/ScConstraintInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFD458264107f8c45826410 /* ScConstraintProjectionManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.h"; path = "../../SimulationController/src/ScConstraintProjectionManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD458264787f8c45826478 /* ScConstraintProjectionTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.h"; path = "../../SimulationController/src/ScConstraintProjectionTree.h"; sourceTree = SOURCE_ROOT; }; + FFFD458264e07f8c458264e0 /* ScConstraintSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.h"; path = "../../SimulationController/src/ScConstraintSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD458265487f8c45826548 /* ScContactReportBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactReportBuffer.h"; path = "../../SimulationController/src/ScContactReportBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD458265b07f8c458265b0 /* ScContactStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactStream.h"; path = "../../SimulationController/src/ScContactStream.h"; sourceTree = SOURCE_ROOT; }; + FFFD458266187f8c45826618 /* ScElementInteractionMarker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.h"; path = "../../SimulationController/src/ScElementInteractionMarker.h"; sourceTree = SOURCE_ROOT; }; + FFFD458266807f8c45826680 /* ScElementSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.h"; path = "../../SimulationController/src/ScElementSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD458266e87f8c458266e8 /* ScElementSimInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSimInteraction.h"; path = "../../SimulationController/src/ScElementSimInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFD458267507f8c45826750 /* ScInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.h"; path = "../../SimulationController/src/ScInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFD458267b87f8c458267b8 /* ScInteractionFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteractionFlags.h"; path = "../../SimulationController/src/ScInteractionFlags.h"; sourceTree = SOURCE_ROOT; }; + FFFD458268207f8c45826820 /* ScNPhaseCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.h"; path = "../../SimulationController/src/ScNPhaseCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD458268887f8c45826888 /* ScObjectIDTracker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScObjectIDTracker.h"; path = "../../SimulationController/src/ScObjectIDTracker.h"; sourceTree = SOURCE_ROOT; }; + FFFD458268f07f8c458268f0 /* ScRbElementInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRbElementInteraction.h"; path = "../../SimulationController/src/ScRbElementInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFD458269587f8c45826958 /* ScRigidSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.h"; path = "../../SimulationController/src/ScRigidSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD458269c07f8c458269c0 /* ScShapeInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.h"; path = "../../SimulationController/src/ScShapeInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFD45826a287f8c45826a28 /* ScShapeIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeIterator.h"; path = "../../SimulationController/src/ScShapeIterator.h"; sourceTree = SOURCE_ROOT; }; + FFFD45826a907f8c45826a90 /* ScShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.h"; path = "../../SimulationController/src/ScShapeSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD45826af87f8c45826af8 /* ScSimStateData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStateData.h"; path = "../../SimulationController/src/ScSimStateData.h"; sourceTree = SOURCE_ROOT; }; + FFFD45826b607f8c45826b60 /* ScSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.h"; path = "../../SimulationController/src/ScSimStats.h"; sourceTree = SOURCE_ROOT; }; + FFFD45826bc87f8c45826bc8 /* ScSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.h"; path = "../../SimulationController/src/ScSimulationController.h"; sourceTree = SOURCE_ROOT; }; + FFFD45826c307f8c45826c30 /* ScSqBoundsManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.h"; path = "../../SimulationController/src/ScSqBoundsManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD45826c987f8c45826c98 /* ScStaticSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.h"; path = "../../SimulationController/src/ScStaticSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD45826d007f8c45826d00 /* ScTriggerInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.h"; path = "../../SimulationController/src/ScTriggerInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFD45826d687f8c45826d68 /* ScTriggerPairs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerPairs.h"; path = "../../SimulationController/src/ScTriggerPairs.h"; sourceTree = SOURCE_ROOT; }; + FFFD45826dd07f8c45826dd0 /* ScActorCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.cpp"; path = "../../SimulationController/src/ScActorCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45826e387f8c45826e38 /* ScActorSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.cpp"; path = "../../SimulationController/src/ScActorSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45826ea07f8c45826ea0 /* ScArticulationCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.cpp"; path = "../../SimulationController/src/ScArticulationCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45826f087f8c45826f08 /* ScArticulationJointCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.cpp"; path = "../../SimulationController/src/ScArticulationJointCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45826f707f8c45826f70 /* ScArticulationJointSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.cpp"; path = "../../SimulationController/src/ScArticulationJointSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45826fd87f8c45826fd8 /* ScArticulationSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.cpp"; path = "../../SimulationController/src/ScArticulationSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458270407f8c45827040 /* ScBodyCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.cpp"; path = "../../SimulationController/src/ScBodyCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458270a87f8c458270a8 /* ScBodyCoreKinematic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCoreKinematic.cpp"; path = "../../SimulationController/src/ScBodyCoreKinematic.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458271107f8c45827110 /* ScBodySim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.cpp"; path = "../../SimulationController/src/ScBodySim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458271787f8c45827178 /* ScConstraintCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.cpp"; path = "../../SimulationController/src/ScConstraintCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458271e07f8c458271e0 /* ScConstraintGroupNode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.cpp"; path = "../../SimulationController/src/ScConstraintGroupNode.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458272487f8c45827248 /* ScConstraintInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.cpp"; path = "../../SimulationController/src/ScConstraintInteraction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458272b07f8c458272b0 /* ScConstraintProjectionManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.cpp"; path = "../../SimulationController/src/ScConstraintProjectionManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458273187f8c45827318 /* ScConstraintProjectionTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.cpp"; path = "../../SimulationController/src/ScConstraintProjectionTree.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458273807f8c45827380 /* ScConstraintSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.cpp"; path = "../../SimulationController/src/ScConstraintSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458273e87f8c458273e8 /* ScElementInteractionMarker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.cpp"; path = "../../SimulationController/src/ScElementInteractionMarker.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458274507f8c45827450 /* ScElementSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.cpp"; path = "../../SimulationController/src/ScElementSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458274b87f8c458274b8 /* ScInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.cpp"; path = "../../SimulationController/src/ScInteraction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458275207f8c45827520 /* ScIterators.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.cpp"; path = "../../SimulationController/src/ScIterators.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458275887f8c45827588 /* ScMaterialCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.cpp"; path = "../../SimulationController/src/ScMaterialCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458275f07f8c458275f0 /* ScMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMetaData.cpp"; path = "../../SimulationController/src/ScMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458276587f8c45827658 /* ScNPhaseCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.cpp"; path = "../../SimulationController/src/ScNPhaseCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458276c07f8c458276c0 /* ScPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.cpp"; path = "../../SimulationController/src/ScPhysics.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458277287f8c45827728 /* ScRigidCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.cpp"; path = "../../SimulationController/src/ScRigidCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458277907f8c45827790 /* ScRigidSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.cpp"; path = "../../SimulationController/src/ScRigidSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458277f87f8c458277f8 /* ScScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.cpp"; path = "../../SimulationController/src/ScScene.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458278607f8c45827860 /* ScShapeCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.cpp"; path = "../../SimulationController/src/ScShapeCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458278c87f8c458278c8 /* ScShapeInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.cpp"; path = "../../SimulationController/src/ScShapeInteraction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458279307f8c45827930 /* ScShapeSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.cpp"; path = "../../SimulationController/src/ScShapeSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458279987f8c45827998 /* ScSimStats.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.cpp"; path = "../../SimulationController/src/ScSimStats.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45827a007f8c45827a00 /* ScSimulationController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.cpp"; path = "../../SimulationController/src/ScSimulationController.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45827a687f8c45827a68 /* ScSqBoundsManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.cpp"; path = "../../SimulationController/src/ScSqBoundsManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45827ad07f8c45827ad0 /* ScStaticCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.cpp"; path = "../../SimulationController/src/ScStaticCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45827b387f8c45827b38 /* ScStaticSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.cpp"; path = "../../SimulationController/src/ScStaticSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45827ba07f8c45827ba0 /* ScTriggerInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.cpp"; path = "../../SimulationController/src/ScTriggerInteraction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45827c087f8c45827c08 /* particles/ScParticleBodyInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.h"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFD45827c707f8c45827c70 /* particles/ScParticlePacketShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.h"; path = "../../SimulationController/src/particles/ScParticlePacketShape.h"; sourceTree = SOURCE_ROOT; }; + FFFD45827cd87f8c45827cd8 /* particles/ScParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.h"; path = "../../SimulationController/src/particles/ScParticleSystemSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD45827d407f8c45827d40 /* particles/ScParticleBodyInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.cpp"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45827da87f8c45827da8 /* particles/ScParticlePacketShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.cpp"; path = "../../SimulationController/src/particles/ScParticlePacketShape.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45827e107f8c45827e10 /* particles/ScParticleSystemCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemCore.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45827e787f8c45827e78 /* particles/ScParticleSystemSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD45827ee07f8c45827ee0 /* cloth/ScClothShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.h"; path = "../../SimulationController/src/cloth/ScClothShape.h"; sourceTree = SOURCE_ROOT; }; + FFFD45827f487f8c45827f48 /* cloth/ScClothSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothSim.h"; path = "../../SimulationController/src/cloth/ScClothSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD45827fb07f8c45827fb0 /* cloth/ScClothCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothCore.cpp"; path = "../../SimulationController/src/cloth/ScClothCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458280187f8c45828018 /* cloth/ScClothFabricCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothFabricCore.cpp"; path = "../../SimulationController/src/cloth/ScClothFabricCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458280807f8c45828080 /* cloth/ScClothShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.cpp"; path = "../../SimulationController/src/cloth/ScClothShape.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD458280e87f8c458280e8 /* 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 */ - FFF2126992107fe812699210 /* Resources */ = { + FFF2455359d07f8c455359d0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -1131,7 +1131,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC126992107fe812699210 /* Frameworks */ = { + FFFC455359d07f8c455359d0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -1141,53 +1141,53 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8126992107fe812699210 /* Sources */ = { + FFF8455359d07f8c455359d0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF1106a5d07fe81106a5d0, - FFFF1106a6387fe81106a638, - FFFF1106a6a07fe81106a6a0, - FFFF1106a7087fe81106a708, - FFFF1106a7707fe81106a770, - FFFF1106a7d87fe81106a7d8, - FFFF1106a8407fe81106a840, - FFFF1106a8a87fe81106a8a8, - FFFF1106a9107fe81106a910, - FFFF1106a9787fe81106a978, - FFFF1106a9e07fe81106a9e0, - FFFF1106aa487fe81106aa48, - FFFF1106aab07fe81106aab0, - FFFF1106ab187fe81106ab18, - FFFF1106ab807fe81106ab80, - FFFF1106abe87fe81106abe8, - FFFF1106ac507fe81106ac50, - FFFF1106acb87fe81106acb8, - FFFF1106ad207fe81106ad20, - FFFF1106ad887fe81106ad88, - FFFF1106adf07fe81106adf0, - FFFF1106ae587fe81106ae58, - FFFF1106aec07fe81106aec0, - FFFF1106af287fe81106af28, - FFFF1106af907fe81106af90, - FFFF1106aff87fe81106aff8, - FFFF1106b0607fe81106b060, - FFFF1106b0c87fe81106b0c8, - FFFF1106b1307fe81106b130, - FFFF1106b1987fe81106b198, - FFFF1106b2007fe81106b200, - FFFF1106b2687fe81106b268, - FFFF1106b2d07fe81106b2d0, - FFFF1106b3387fe81106b338, - FFFF1106b3a07fe81106b3a0, - FFFF1106b5407fe81106b540, - FFFF1106b5a87fe81106b5a8, - FFFF1106b6107fe81106b610, - FFFF1106b6787fe81106b678, - FFFF1106b7b07fe81106b7b0, - FFFF1106b8187fe81106b818, - FFFF1106b8807fe81106b880, - FFFF1106b8e87fe81106b8e8, + FFFF45826dd07f8c45826dd0, + FFFF45826e387f8c45826e38, + FFFF45826ea07f8c45826ea0, + FFFF45826f087f8c45826f08, + FFFF45826f707f8c45826f70, + FFFF45826fd87f8c45826fd8, + FFFF458270407f8c45827040, + FFFF458270a87f8c458270a8, + FFFF458271107f8c45827110, + FFFF458271787f8c45827178, + FFFF458271e07f8c458271e0, + FFFF458272487f8c45827248, + FFFF458272b07f8c458272b0, + FFFF458273187f8c45827318, + FFFF458273807f8c45827380, + FFFF458273e87f8c458273e8, + FFFF458274507f8c45827450, + FFFF458274b87f8c458274b8, + FFFF458275207f8c45827520, + FFFF458275887f8c45827588, + FFFF458275f07f8c458275f0, + FFFF458276587f8c45827658, + FFFF458276c07f8c458276c0, + FFFF458277287f8c45827728, + FFFF458277907f8c45827790, + FFFF458277f87f8c458277f8, + FFFF458278607f8c45827860, + FFFF458278c87f8c458278c8, + FFFF458279307f8c45827930, + FFFF458279987f8c45827998, + FFFF45827a007f8c45827a00, + FFFF45827a687f8c45827a68, + FFFF45827ad07f8c45827ad0, + FFFF45827b387f8c45827b38, + FFFF45827ba07f8c45827ba0, + FFFF45827d407f8c45827d40, + FFFF45827da87f8c45827da8, + FFFF45827e107f8c45827e10, + FFFF45827e787f8c45827e78, + FFFF45827fb07f8c45827fb0, + FFFF458280187f8c45828018, + FFFF458280807f8c45828080, + FFFF458280e87f8c458280e8, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1199,80 +1199,80 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PhysXCooking */ - FFFF134eef007fe8134eef00 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD12683c607fe812683c60 /* PhysXExtensions */; }; - FFFF11071a007fe811071a00 /* Adjacencies.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD11071a007fe811071a00 /* Adjacencies.cpp */; }; - FFFF11071a687fe811071a68 /* Cooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD11071a687fe811071a68 /* Cooking.cpp */; }; - FFFF11071ad07fe811071ad0 /* CookingUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD11071ad07fe811071ad0 /* CookingUtils.cpp */; }; - FFFF11071b387fe811071b38 /* EdgeList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD11071b387fe811071b38 /* EdgeList.cpp */; }; - FFFF11071ba07fe811071ba0 /* MeshCleaner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD11071ba07fe811071ba0 /* MeshCleaner.cpp */; }; - FFFF11071c087fe811071c08 /* Quantizer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD11071c087fe811071c08 /* Quantizer.cpp */; }; - FFFF11071ee07fe811071ee0 /* mesh/GrbTriangleMeshCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD11071ee07fe811071ee0 /* mesh/GrbTriangleMeshCooking.cpp */; }; - FFFF11071f487fe811071f48 /* mesh/HeightFieldCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD11071f487fe811071f48 /* mesh/HeightFieldCooking.cpp */; }; - FFFF11071fb07fe811071fb0 /* mesh/RTreeCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD11071fb07fe811071fb0 /* mesh/RTreeCooking.cpp */; }; - FFFF110720187fe811072018 /* mesh/TriangleMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD110720187fe811072018 /* mesh/TriangleMeshBuilder.cpp */; }; - FFFF110722887fe811072288 /* convex/BigConvexDataBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD110722887fe811072288 /* convex/BigConvexDataBuilder.cpp */; }; - FFFF110722f07fe8110722f0 /* convex/ConvexHullBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD110722f07fe8110722f0 /* convex/ConvexHullBuilder.cpp */; }; - FFFF110723587fe811072358 /* convex/ConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD110723587fe811072358 /* convex/ConvexHullLib.cpp */; }; - FFFF110723c07fe8110723c0 /* convex/ConvexHullUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD110723c07fe8110723c0 /* convex/ConvexHullUtils.cpp */; }; - FFFF110724287fe811072428 /* convex/ConvexMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD110724287fe811072428 /* convex/ConvexMeshBuilder.cpp */; }; - FFFF110724907fe811072490 /* convex/ConvexPolygonsBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD110724907fe811072490 /* convex/ConvexPolygonsBuilder.cpp */; }; - FFFF110724f87fe8110724f8 /* convex/InflationConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD110724f87fe8110724f8 /* convex/InflationConvexHullLib.cpp */; }; - FFFF110725607fe811072560 /* convex/QuickHullConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD110725607fe811072560 /* convex/QuickHullConvexHullLib.cpp */; }; - FFFF110725c87fe8110725c8 /* convex/VolumeIntegration.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD110725c87fe8110725c8 /* convex/VolumeIntegration.cpp */; }; + FFFF455438f07f8c455438f0 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD4551eaf07f8c4551eaf0 /* PhysXExtensions */; }; + FFFF4582a2007f8c4582a200 /* Adjacencies.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4582a2007f8c4582a200 /* Adjacencies.cpp */; }; + FFFF4582a2687f8c4582a268 /* Cooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4582a2687f8c4582a268 /* Cooking.cpp */; }; + FFFF4582a2d07f8c4582a2d0 /* CookingUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4582a2d07f8c4582a2d0 /* CookingUtils.cpp */; }; + FFFF4582a3387f8c4582a338 /* EdgeList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4582a3387f8c4582a338 /* EdgeList.cpp */; }; + FFFF4582a3a07f8c4582a3a0 /* MeshCleaner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4582a3a07f8c4582a3a0 /* MeshCleaner.cpp */; }; + FFFF4582a4087f8c4582a408 /* Quantizer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4582a4087f8c4582a408 /* Quantizer.cpp */; }; + FFFF4582a6e07f8c4582a6e0 /* mesh/GrbTriangleMeshCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4582a6e07f8c4582a6e0 /* mesh/GrbTriangleMeshCooking.cpp */; }; + FFFF4582a7487f8c4582a748 /* mesh/HeightFieldCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4582a7487f8c4582a748 /* mesh/HeightFieldCooking.cpp */; }; + FFFF4582a7b07f8c4582a7b0 /* mesh/RTreeCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4582a7b07f8c4582a7b0 /* mesh/RTreeCooking.cpp */; }; + FFFF4582a8187f8c4582a818 /* mesh/TriangleMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4582a8187f8c4582a818 /* mesh/TriangleMeshBuilder.cpp */; }; + FFFF4582aa887f8c4582aa88 /* convex/BigConvexDataBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4582aa887f8c4582aa88 /* convex/BigConvexDataBuilder.cpp */; }; + FFFF4582aaf07f8c4582aaf0 /* convex/ConvexHullBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4582aaf07f8c4582aaf0 /* convex/ConvexHullBuilder.cpp */; }; + FFFF4582ab587f8c4582ab58 /* convex/ConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4582ab587f8c4582ab58 /* convex/ConvexHullLib.cpp */; }; + FFFF4582abc07f8c4582abc0 /* convex/ConvexHullUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4582abc07f8c4582abc0 /* convex/ConvexHullUtils.cpp */; }; + FFFF4582ac287f8c4582ac28 /* convex/ConvexMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4582ac287f8c4582ac28 /* convex/ConvexMeshBuilder.cpp */; }; + FFFF4582ac907f8c4582ac90 /* convex/ConvexPolygonsBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4582ac907f8c4582ac90 /* convex/ConvexPolygonsBuilder.cpp */; }; + FFFF4582acf87f8c4582acf8 /* convex/InflationConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4582acf87f8c4582acf8 /* convex/InflationConvexHullLib.cpp */; }; + FFFF4582ad607f8c4582ad60 /* convex/QuickHullConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4582ad607f8c4582ad60 /* convex/QuickHullConvexHullLib.cpp */; }; + FFFF4582adc87f8c4582adc8 /* convex/VolumeIntegration.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4582adc87f8c4582adc8 /* convex/VolumeIntegration.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD134ec9b07fe8134ec9b0 /* PhysXCooking */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCooking"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD134ef7507fe8134ef750 /* PxBVH33MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH33MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH33MidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD134ef7b87fe8134ef7b8 /* PxBVH34MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH34MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH34MidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD134ef8207fe8134ef820 /* PxConvexMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshDesc.h"; path = "../../../Include/cooking/PxConvexMeshDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD134ef8887fe8134ef888 /* PxCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCooking.h"; path = "../../../Include/cooking/PxCooking.h"; sourceTree = SOURCE_ROOT; }; - FFFD134ef8f07fe8134ef8f0 /* PxMidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMidphaseDesc.h"; path = "../../../Include/cooking/PxMidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD134ef9587fe8134ef958 /* PxTriangleMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshDesc.h"; path = "../../../Include/cooking/PxTriangleMeshDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD134ef9c07fe8134ef9c0 /* Pxc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Pxc.h"; path = "../../../Include/cooking/Pxc.h"; sourceTree = SOURCE_ROOT; }; - FFFD11071a007fe811071a00 /* Adjacencies.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.cpp"; path = "../../PhysXCooking/src/Adjacencies.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD11071a687fe811071a68 /* Cooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.cpp"; path = "../../PhysXCooking/src/Cooking.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD11071ad07fe811071ad0 /* CookingUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.cpp"; path = "../../PhysXCooking/src/CookingUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD11071b387fe811071b38 /* EdgeList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.cpp"; path = "../../PhysXCooking/src/EdgeList.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD11071ba07fe811071ba0 /* MeshCleaner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.cpp"; path = "../../PhysXCooking/src/MeshCleaner.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD11071c087fe811071c08 /* Quantizer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.cpp"; path = "../../PhysXCooking/src/Quantizer.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD11071c707fe811071c70 /* Adjacencies.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.h"; path = "../../PhysXCooking/src/Adjacencies.h"; sourceTree = SOURCE_ROOT; }; - FFFD11071cd87fe811071cd8 /* Cooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.h"; path = "../../PhysXCooking/src/Cooking.h"; sourceTree = SOURCE_ROOT; }; - FFFD11071d407fe811071d40 /* CookingUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.h"; path = "../../PhysXCooking/src/CookingUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD11071da87fe811071da8 /* EdgeList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.h"; path = "../../PhysXCooking/src/EdgeList.h"; sourceTree = SOURCE_ROOT; }; - FFFD11071e107fe811071e10 /* MeshCleaner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.h"; path = "../../PhysXCooking/src/MeshCleaner.h"; sourceTree = SOURCE_ROOT; }; - FFFD11071e787fe811071e78 /* Quantizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.h"; path = "../../PhysXCooking/src/Quantizer.h"; sourceTree = SOURCE_ROOT; }; - FFFD11071ee07fe811071ee0 /* mesh/GrbTriangleMeshCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.cpp"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD11071f487fe811071f48 /* mesh/HeightFieldCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.cpp"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD11071fb07fe811071fb0 /* mesh/RTreeCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.cpp"; path = "../../PhysXCooking/src/mesh/RTreeCooking.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD110720187fe811072018 /* mesh/TriangleMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.cpp"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD110720807fe811072080 /* mesh/GrbTriangleMeshCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.h"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.h"; sourceTree = SOURCE_ROOT; }; - FFFD110720e87fe8110720e8 /* mesh/HeightFieldCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.h"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.h"; sourceTree = SOURCE_ROOT; }; - FFFD110721507fe811072150 /* mesh/QuickSelect.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/QuickSelect.h"; path = "../../PhysXCooking/src/mesh/QuickSelect.h"; sourceTree = SOURCE_ROOT; }; - FFFD110721b87fe8110721b8 /* mesh/RTreeCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.h"; path = "../../PhysXCooking/src/mesh/RTreeCooking.h"; sourceTree = SOURCE_ROOT; }; - FFFD110722207fe811072220 /* mesh/TriangleMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.h"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.h"; sourceTree = SOURCE_ROOT; }; - FFFD110722887fe811072288 /* convex/BigConvexDataBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.cpp"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD110722f07fe8110722f0 /* convex/ConvexHullBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD110723587fe811072358 /* convex/ConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD110723c07fe8110723c0 /* convex/ConvexHullUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD110724287fe811072428 /* convex/ConvexMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD110724907fe811072490 /* convex/ConvexPolygonsBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD110724f87fe8110724f8 /* convex/InflationConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD110725607fe811072560 /* convex/QuickHullConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD110725c87fe8110725c8 /* convex/VolumeIntegration.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/VolumeIntegration.cpp"; path = "../../PhysXCooking/src/convex/VolumeIntegration.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD110726307fe811072630 /* convex/BigConvexDataBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.h"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.h"; sourceTree = SOURCE_ROOT; }; - FFFD110726987fe811072698 /* convex/ConvexHullBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.h"; sourceTree = SOURCE_ROOT; }; - FFFD110727007fe811072700 /* convex/ConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.h"; path = "../../PhysXCooking/src/convex/ConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; - FFFD110727687fe811072768 /* convex/ConvexHullUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.h"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD110727d07fe8110727d0 /* convex/ConvexMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.h"; sourceTree = SOURCE_ROOT; }; - FFFD110728387fe811072838 /* convex/ConvexPolygonsBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.h"; sourceTree = SOURCE_ROOT; }; - FFFD110728a07fe8110728a0 /* convex/InflationConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.h"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; - FFFD110729087fe811072908 /* convex/QuickHullConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.h"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; - FFFD110729707fe811072970 /* convex/VolumeIntegration.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/VolumeIntegration.h"; path = "../../PhysXCooking/src/convex/VolumeIntegration.h"; sourceTree = SOURCE_ROOT; }; + FFFD4553a1807f8c4553a180 /* PhysXCooking */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCooking"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD455442807f8c45544280 /* PxBVH33MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH33MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH33MidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD455442e87f8c455442e8 /* PxBVH34MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH34MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH34MidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD455443507f8c45544350 /* PxConvexMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshDesc.h"; path = "../../../Include/cooking/PxConvexMeshDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD455443b87f8c455443b8 /* PxCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCooking.h"; path = "../../../Include/cooking/PxCooking.h"; sourceTree = SOURCE_ROOT; }; + FFFD455444207f8c45544420 /* PxMidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMidphaseDesc.h"; path = "../../../Include/cooking/PxMidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD455444887f8c45544488 /* PxTriangleMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshDesc.h"; path = "../../../Include/cooking/PxTriangleMeshDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD455444f07f8c455444f0 /* Pxc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Pxc.h"; path = "../../../Include/cooking/Pxc.h"; sourceTree = SOURCE_ROOT; }; + FFFD4582a2007f8c4582a200 /* Adjacencies.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.cpp"; path = "../../PhysXCooking/src/Adjacencies.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4582a2687f8c4582a268 /* Cooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.cpp"; path = "../../PhysXCooking/src/Cooking.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4582a2d07f8c4582a2d0 /* CookingUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.cpp"; path = "../../PhysXCooking/src/CookingUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4582a3387f8c4582a338 /* EdgeList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.cpp"; path = "../../PhysXCooking/src/EdgeList.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4582a3a07f8c4582a3a0 /* MeshCleaner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.cpp"; path = "../../PhysXCooking/src/MeshCleaner.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4582a4087f8c4582a408 /* Quantizer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.cpp"; path = "../../PhysXCooking/src/Quantizer.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4582a4707f8c4582a470 /* Adjacencies.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.h"; path = "../../PhysXCooking/src/Adjacencies.h"; sourceTree = SOURCE_ROOT; }; + FFFD4582a4d87f8c4582a4d8 /* Cooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.h"; path = "../../PhysXCooking/src/Cooking.h"; sourceTree = SOURCE_ROOT; }; + FFFD4582a5407f8c4582a540 /* CookingUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.h"; path = "../../PhysXCooking/src/CookingUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD4582a5a87f8c4582a5a8 /* EdgeList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.h"; path = "../../PhysXCooking/src/EdgeList.h"; sourceTree = SOURCE_ROOT; }; + FFFD4582a6107f8c4582a610 /* MeshCleaner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.h"; path = "../../PhysXCooking/src/MeshCleaner.h"; sourceTree = SOURCE_ROOT; }; + FFFD4582a6787f8c4582a678 /* Quantizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.h"; path = "../../PhysXCooking/src/Quantizer.h"; sourceTree = SOURCE_ROOT; }; + FFFD4582a6e07f8c4582a6e0 /* mesh/GrbTriangleMeshCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.cpp"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4582a7487f8c4582a748 /* mesh/HeightFieldCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.cpp"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4582a7b07f8c4582a7b0 /* mesh/RTreeCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.cpp"; path = "../../PhysXCooking/src/mesh/RTreeCooking.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4582a8187f8c4582a818 /* mesh/TriangleMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.cpp"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4582a8807f8c4582a880 /* mesh/GrbTriangleMeshCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.h"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.h"; sourceTree = SOURCE_ROOT; }; + FFFD4582a8e87f8c4582a8e8 /* mesh/HeightFieldCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.h"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.h"; sourceTree = SOURCE_ROOT; }; + FFFD4582a9507f8c4582a950 /* mesh/QuickSelect.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/QuickSelect.h"; path = "../../PhysXCooking/src/mesh/QuickSelect.h"; sourceTree = SOURCE_ROOT; }; + FFFD4582a9b87f8c4582a9b8 /* mesh/RTreeCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.h"; path = "../../PhysXCooking/src/mesh/RTreeCooking.h"; sourceTree = SOURCE_ROOT; }; + FFFD4582aa207f8c4582aa20 /* mesh/TriangleMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.h"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.h"; sourceTree = SOURCE_ROOT; }; + FFFD4582aa887f8c4582aa88 /* convex/BigConvexDataBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.cpp"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4582aaf07f8c4582aaf0 /* convex/ConvexHullBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4582ab587f8c4582ab58 /* convex/ConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4582abc07f8c4582abc0 /* convex/ConvexHullUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4582ac287f8c4582ac28 /* convex/ConvexMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4582ac907f8c4582ac90 /* convex/ConvexPolygonsBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4582acf87f8c4582acf8 /* convex/InflationConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4582ad607f8c4582ad60 /* convex/QuickHullConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4582adc87f8c4582adc8 /* convex/VolumeIntegration.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/VolumeIntegration.cpp"; path = "../../PhysXCooking/src/convex/VolumeIntegration.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4582ae307f8c4582ae30 /* convex/BigConvexDataBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.h"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.h"; sourceTree = SOURCE_ROOT; }; + FFFD4582ae987f8c4582ae98 /* convex/ConvexHullBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.h"; sourceTree = SOURCE_ROOT; }; + FFFD4582af007f8c4582af00 /* convex/ConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.h"; path = "../../PhysXCooking/src/convex/ConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; + FFFD4582af687f8c4582af68 /* convex/ConvexHullUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.h"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD4582afd07f8c4582afd0 /* convex/ConvexMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.h"; sourceTree = SOURCE_ROOT; }; + FFFD4582b0387f8c4582b038 /* convex/ConvexPolygonsBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.h"; sourceTree = SOURCE_ROOT; }; + FFFD4582b0a07f8c4582b0a0 /* convex/InflationConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.h"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; + FFFD4582b1087f8c4582b108 /* convex/QuickHullConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.h"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; + FFFD4582b1707f8c4582b170 /* 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 */ - FFF2134ec9b07fe8134ec9b0 /* Resources */ = { + FFF24553a1807f8c4553a180 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -1282,7 +1282,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC134ec9b07fe8134ec9b0 /* Frameworks */ = { + FFFC4553a1807f8c4553a180 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -1292,29 +1292,29 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8134ec9b07fe8134ec9b0 /* Sources */ = { + FFF84553a1807f8c4553a180 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF11071a007fe811071a00, - FFFF11071a687fe811071a68, - FFFF11071ad07fe811071ad0, - FFFF11071b387fe811071b38, - FFFF11071ba07fe811071ba0, - FFFF11071c087fe811071c08, - FFFF11071ee07fe811071ee0, - FFFF11071f487fe811071f48, - FFFF11071fb07fe811071fb0, - FFFF110720187fe811072018, - FFFF110722887fe811072288, - FFFF110722f07fe8110722f0, - FFFF110723587fe811072358, - FFFF110723c07fe8110723c0, - FFFF110724287fe811072428, - FFFF110724907fe811072490, - FFFF110724f87fe8110724f8, - FFFF110725607fe811072560, - FFFF110725c87fe8110725c8, + FFFF4582a2007f8c4582a200, + FFFF4582a2687f8c4582a268, + FFFF4582a2d07f8c4582a2d0, + FFFF4582a3387f8c4582a338, + FFFF4582a3a07f8c4582a3a0, + FFFF4582a4087f8c4582a408, + FFFF4582a6e07f8c4582a6e0, + FFFF4582a7487f8c4582a748, + FFFF4582a7b07f8c4582a7b0, + FFFF4582a8187f8c4582a818, + FFFF4582aa887f8c4582aa88, + FFFF4582aaf07f8c4582aaf0, + FFFF4582ab587f8c4582ab58, + FFFF4582abc07f8c4582abc0, + FFFF4582ac287f8c4582ac28, + FFFF4582ac907f8c4582ac90, + FFFF4582acf87f8c4582acf8, + FFFF4582ad607f8c4582ad60, + FFFF4582adc87f8c4582adc8, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1323,515 +1323,515 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF4134edd807fe8134edd80 /* PBXTargetDependency */ = { + FFF4455439d07f8c455439d0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA12128d507fe812128d50 /* PhysXCommon */; - targetProxy = FFF512128d507fe812128d50 /* PBXContainerItemProxy */; + target = FFFA4389f1b07f8c4389f1b0 /* PhysXCommon */; + targetProxy = FFF54389f1b07f8c4389f1b0 /* PBXContainerItemProxy */; }; - FFF4134eef007fe8134eef00 /* PBXTargetDependency */ = { + FFF4455438f07f8c455438f0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA12683c607fe812683c60 /* PhysXExtensions */; - targetProxy = FFF512683c607fe812683c60 /* PBXContainerItemProxy */; + target = FFFA4551eaf07f8c4551eaf0 /* PhysXExtensions */; + targetProxy = FFF54551eaf07f8c4551eaf0 /* PBXContainerItemProxy */; }; - FFF4134ec8807fe8134ec880 /* PBXTargetDependency */ = { + FFF44553f1007f8c4553f100 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA121657c07fe8121657c0 /* PxFoundation */; - targetProxy = FFF5121657c07fe8121657c0 /* PBXContainerItemProxy */; + target = FFFA438816407f8c43881640 /* PxFoundation */; + targetProxy = FFF5438816407f8c43881640 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PhysXCommon */ - FFFF1198a0007fe81198a000 /* src/CmBoxPruning.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD1198a0007fe81198a000 /* src/CmBoxPruning.cpp */; }; - FFFF1198a0687fe81198a068 /* src/CmCollection.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD1198a0687fe81198a068 /* src/CmCollection.cpp */; }; - FFFF1198a0d07fe81198a0d0 /* src/CmMathUtils.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD1198a0d07fe81198a0d0 /* src/CmMathUtils.cpp */; }; - FFFF1198a1387fe81198a138 /* src/CmPtrTable.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD1198a1387fe81198a138 /* src/CmPtrTable.cpp */; }; - FFFF1198a1a07fe81198a1a0 /* src/CmRadixSort.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD1198a1a07fe81198a1a0 /* src/CmRadixSort.cpp */; }; - FFFF1198a2087fe81198a208 /* src/CmRadixSortBuffered.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD1198a2087fe81198a208 /* src/CmRadixSortBuffered.cpp */; }; - FFFF1198a2707fe81198a270 /* src/CmRenderOutput.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD1198a2707fe81198a270 /* src/CmRenderOutput.cpp */; }; - FFFF1198a2d87fe81198a2d8 /* src/CmVisualization.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD1198a2d87fe81198a2d8 /* src/CmVisualization.cpp */; }; - FFFF110185a87fe8110185a8 /* ../../Include/GeomUtils in geomutils */= { isa = PBXBuildFile; fileRef = FFFD110185a87fe8110185a8 /* ../../Include/GeomUtils */; }; - FFFF1101bae07fe81101bae0 /* src/GuBounds.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101bae07fe81101bae0 /* src/GuBounds.cpp */; }; - FFFF1101bb487fe81101bb48 /* src/GuBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101bb487fe81101bb48 /* src/GuBox.cpp */; }; - FFFF1101bbb07fe81101bbb0 /* src/GuCCTSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101bbb07fe81101bbb0 /* src/GuCCTSweepTests.cpp */; }; - FFFF1101bc187fe81101bc18 /* src/GuCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101bc187fe81101bc18 /* src/GuCapsule.cpp */; }; - FFFF1101bc807fe81101bc80 /* src/GuGeometryQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101bc807fe81101bc80 /* src/GuGeometryQuery.cpp */; }; - FFFF1101bce87fe81101bce8 /* src/GuGeometryUnion.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101bce87fe81101bce8 /* src/GuGeometryUnion.cpp */; }; - FFFF1101bd507fe81101bd50 /* src/GuInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101bd507fe81101bd50 /* src/GuInternal.cpp */; }; - FFFF1101bdb87fe81101bdb8 /* src/GuMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101bdb87fe81101bdb8 /* src/GuMTD.cpp */; }; - FFFF1101be207fe81101be20 /* src/GuMeshFactory.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101be207fe81101be20 /* src/GuMeshFactory.cpp */; }; - FFFF1101be887fe81101be88 /* src/GuMetaData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101be887fe81101be88 /* src/GuMetaData.cpp */; }; - FFFF1101bef07fe81101bef0 /* src/GuOverlapTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101bef07fe81101bef0 /* src/GuOverlapTests.cpp */; }; - FFFF1101bf587fe81101bf58 /* src/GuRaycastTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101bf587fe81101bf58 /* src/GuRaycastTests.cpp */; }; - FFFF1101bfc07fe81101bfc0 /* src/GuSerialize.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101bfc07fe81101bfc0 /* src/GuSerialize.cpp */; }; - FFFF1101c0287fe81101c028 /* src/GuSweepMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101c0287fe81101c028 /* src/GuSweepMTD.cpp */; }; - FFFF1101c0907fe81101c090 /* src/GuSweepSharedTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101c0907fe81101c090 /* src/GuSweepSharedTests.cpp */; }; - FFFF1101c0f87fe81101c0f8 /* src/GuSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101c0f87fe81101c0f8 /* src/GuSweepTests.cpp */; }; - FFFF1101c1607fe81101c160 /* src/contact/GuContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101c1607fe81101c160 /* src/contact/GuContactBoxBox.cpp */; }; - FFFF1101c1c87fe81101c1c8 /* src/contact/GuContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101c1c87fe81101c1c8 /* src/contact/GuContactCapsuleBox.cpp */; }; - FFFF1101c2307fe81101c230 /* src/contact/GuContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101c2307fe81101c230 /* src/contact/GuContactCapsuleCapsule.cpp */; }; - FFFF1101c2987fe81101c298 /* src/contact/GuContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101c2987fe81101c298 /* src/contact/GuContactCapsuleConvex.cpp */; }; - FFFF1101c3007fe81101c300 /* src/contact/GuContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101c3007fe81101c300 /* src/contact/GuContactCapsuleMesh.cpp */; }; - FFFF1101c3687fe81101c368 /* src/contact/GuContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101c3687fe81101c368 /* src/contact/GuContactConvexConvex.cpp */; }; - FFFF1101c3d07fe81101c3d0 /* src/contact/GuContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101c3d07fe81101c3d0 /* src/contact/GuContactConvexMesh.cpp */; }; - FFFF1101c4387fe81101c438 /* src/contact/GuContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101c4387fe81101c438 /* src/contact/GuContactPlaneBox.cpp */; }; - FFFF1101c4a07fe81101c4a0 /* src/contact/GuContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101c4a07fe81101c4a0 /* src/contact/GuContactPlaneCapsule.cpp */; }; - FFFF1101c5087fe81101c508 /* src/contact/GuContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101c5087fe81101c508 /* src/contact/GuContactPlaneConvex.cpp */; }; - FFFF1101c5707fe81101c570 /* src/contact/GuContactPolygonPolygon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101c5707fe81101c570 /* src/contact/GuContactPolygonPolygon.cpp */; }; - FFFF1101c5d87fe81101c5d8 /* src/contact/GuContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101c5d87fe81101c5d8 /* src/contact/GuContactSphereBox.cpp */; }; - FFFF1101c6407fe81101c640 /* src/contact/GuContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101c6407fe81101c640 /* src/contact/GuContactSphereCapsule.cpp */; }; - FFFF1101c6a87fe81101c6a8 /* src/contact/GuContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101c6a87fe81101c6a8 /* src/contact/GuContactSphereMesh.cpp */; }; - FFFF1101c7107fe81101c710 /* src/contact/GuContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101c7107fe81101c710 /* src/contact/GuContactSpherePlane.cpp */; }; - FFFF1101c7787fe81101c778 /* src/contact/GuContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101c7787fe81101c778 /* src/contact/GuContactSphereSphere.cpp */; }; - FFFF1101c7e07fe81101c7e0 /* src/contact/GuFeatureCode.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101c7e07fe81101c7e0 /* src/contact/GuFeatureCode.cpp */; }; - FFFF1101c8487fe81101c848 /* src/contact/GuLegacyContactBoxHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101c8487fe81101c848 /* src/contact/GuLegacyContactBoxHeightField.cpp */; }; - FFFF1101c8b07fe81101c8b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101c8b07fe81101c8b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */; }; - FFFF1101c9187fe81101c918 /* src/contact/GuLegacyContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101c9187fe81101c918 /* src/contact/GuLegacyContactConvexHeightField.cpp */; }; - FFFF1101c9807fe81101c980 /* src/contact/GuLegacyContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101c9807fe81101c980 /* src/contact/GuLegacyContactSphereHeightField.cpp */; }; - FFFF1101c9e87fe81101c9e8 /* src/common/GuBarycentricCoordinates.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101c9e87fe81101c9e8 /* src/common/GuBarycentricCoordinates.cpp */; }; - FFFF1101ca507fe81101ca50 /* src/common/GuSeparatingAxes.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101ca507fe81101ca50 /* src/common/GuSeparatingAxes.cpp */; }; - FFFF1101cab87fe81101cab8 /* src/convex/GuBigConvexData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101cab87fe81101cab8 /* src/convex/GuBigConvexData.cpp */; }; - FFFF1101cb207fe81101cb20 /* src/convex/GuConvexHelper.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101cb207fe81101cb20 /* src/convex/GuConvexHelper.cpp */; }; - FFFF1101cb887fe81101cb88 /* src/convex/GuConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101cb887fe81101cb88 /* src/convex/GuConvexMesh.cpp */; }; - FFFF1101cbf07fe81101cbf0 /* src/convex/GuConvexSupportTable.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101cbf07fe81101cbf0 /* src/convex/GuConvexSupportTable.cpp */; }; - FFFF1101cc587fe81101cc58 /* src/convex/GuConvexUtilsInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101cc587fe81101cc58 /* src/convex/GuConvexUtilsInternal.cpp */; }; - FFFF1101ccc07fe81101ccc0 /* src/convex/GuHillClimbing.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101ccc07fe81101ccc0 /* src/convex/GuHillClimbing.cpp */; }; - FFFF1101cd287fe81101cd28 /* src/convex/GuShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101cd287fe81101cd28 /* src/convex/GuShapeConvex.cpp */; }; - FFFF1101cd907fe81101cd90 /* src/distance/GuDistancePointBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101cd907fe81101cd90 /* src/distance/GuDistancePointBox.cpp */; }; - FFFF1101cdf87fe81101cdf8 /* src/distance/GuDistancePointTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101cdf87fe81101cdf8 /* src/distance/GuDistancePointTriangle.cpp */; }; - FFFF1101ce607fe81101ce60 /* src/distance/GuDistanceSegmentBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101ce607fe81101ce60 /* src/distance/GuDistanceSegmentBox.cpp */; }; - FFFF1101cec87fe81101cec8 /* src/distance/GuDistanceSegmentSegment.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101cec87fe81101cec8 /* src/distance/GuDistanceSegmentSegment.cpp */; }; - FFFF1101cf307fe81101cf30 /* src/distance/GuDistanceSegmentTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101cf307fe81101cf30 /* src/distance/GuDistanceSegmentTriangle.cpp */; }; - FFFF1101cf987fe81101cf98 /* src/sweep/GuSweepBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101cf987fe81101cf98 /* src/sweep/GuSweepBoxBox.cpp */; }; - FFFF1101d0007fe81101d000 /* src/sweep/GuSweepBoxSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101d0007fe81101d000 /* src/sweep/GuSweepBoxSphere.cpp */; }; - FFFF1101d0687fe81101d068 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101d0687fe81101d068 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */; }; - FFFF1101d0d07fe81101d0d0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101d0d07fe81101d0d0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */; }; - FFFF1101d1387fe81101d138 /* src/sweep/GuSweepCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101d1387fe81101d138 /* src/sweep/GuSweepCapsuleBox.cpp */; }; - FFFF1101d1a07fe81101d1a0 /* src/sweep/GuSweepCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101d1a07fe81101d1a0 /* src/sweep/GuSweepCapsuleCapsule.cpp */; }; - FFFF1101d2087fe81101d208 /* src/sweep/GuSweepCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101d2087fe81101d208 /* src/sweep/GuSweepCapsuleTriangle.cpp */; }; - FFFF1101d2707fe81101d270 /* src/sweep/GuSweepSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101d2707fe81101d270 /* src/sweep/GuSweepSphereCapsule.cpp */; }; - FFFF1101d2d87fe81101d2d8 /* src/sweep/GuSweepSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101d2d87fe81101d2d8 /* src/sweep/GuSweepSphereSphere.cpp */; }; - FFFF1101d3407fe81101d340 /* src/sweep/GuSweepSphereTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101d3407fe81101d340 /* src/sweep/GuSweepSphereTriangle.cpp */; }; - FFFF1101d3a87fe81101d3a8 /* src/sweep/GuSweepTriangleUtils.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101d3a87fe81101d3a8 /* src/sweep/GuSweepTriangleUtils.cpp */; }; - FFFF1101d4107fe81101d410 /* src/gjk/GuEPA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101d4107fe81101d410 /* src/gjk/GuEPA.cpp */; }; - FFFF1101d4787fe81101d478 /* src/gjk/GuGJKSimplex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101d4787fe81101d478 /* src/gjk/GuGJKSimplex.cpp */; }; - FFFF1101d4e07fe81101d4e0 /* src/gjk/GuGJKTest.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101d4e07fe81101d4e0 /* src/gjk/GuGJKTest.cpp */; }; - FFFF1101d5487fe81101d548 /* src/intersection/GuIntersectionBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101d5487fe81101d548 /* src/intersection/GuIntersectionBoxBox.cpp */; }; - FFFF1101d5b07fe81101d5b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101d5b07fe81101d5b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */; }; - FFFF1101d6187fe81101d618 /* src/intersection/GuIntersectionEdgeEdge.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101d6187fe81101d618 /* src/intersection/GuIntersectionEdgeEdge.cpp */; }; - FFFF1101d6807fe81101d680 /* src/intersection/GuIntersectionRayBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101d6807fe81101d680 /* src/intersection/GuIntersectionRayBox.cpp */; }; - FFFF1101d6e87fe81101d6e8 /* src/intersection/GuIntersectionRayCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101d6e87fe81101d6e8 /* src/intersection/GuIntersectionRayCapsule.cpp */; }; - FFFF1101d7507fe81101d750 /* src/intersection/GuIntersectionRaySphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101d7507fe81101d750 /* src/intersection/GuIntersectionRaySphere.cpp */; }; - FFFF1101d7b87fe81101d7b8 /* src/intersection/GuIntersectionSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101d7b87fe81101d7b8 /* src/intersection/GuIntersectionSphereBox.cpp */; }; - FFFF1101d8207fe81101d820 /* src/intersection/GuIntersectionTriangleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101d8207fe81101d820 /* src/intersection/GuIntersectionTriangleBox.cpp */; }; - FFFF1101d8887fe81101d888 /* src/mesh/GuBV32.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101d8887fe81101d888 /* src/mesh/GuBV32.cpp */; }; - FFFF1101d8f07fe81101d8f0 /* src/mesh/GuBV32Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101d8f07fe81101d8f0 /* src/mesh/GuBV32Build.cpp */; }; - FFFF1101d9587fe81101d958 /* src/mesh/GuBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101d9587fe81101d958 /* src/mesh/GuBV4.cpp */; }; - FFFF1101d9c07fe81101d9c0 /* src/mesh/GuBV4Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101d9c07fe81101d9c0 /* src/mesh/GuBV4Build.cpp */; }; - FFFF1101da287fe81101da28 /* src/mesh/GuBV4_AABBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101da287fe81101da28 /* src/mesh/GuBV4_AABBSweep.cpp */; }; - FFFF1101da907fe81101da90 /* src/mesh/GuBV4_BoxOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101da907fe81101da90 /* src/mesh/GuBV4_BoxOverlap.cpp */; }; - FFFF1101daf87fe81101daf8 /* src/mesh/GuBV4_CapsuleSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101daf87fe81101daf8 /* src/mesh/GuBV4_CapsuleSweep.cpp */; }; - FFFF1101db607fe81101db60 /* src/mesh/GuBV4_CapsuleSweepAA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101db607fe81101db60 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */; }; - FFFF1101dbc87fe81101dbc8 /* src/mesh/GuBV4_OBBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101dbc87fe81101dbc8 /* src/mesh/GuBV4_OBBSweep.cpp */; }; - FFFF1101dc307fe81101dc30 /* src/mesh/GuBV4_Raycast.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101dc307fe81101dc30 /* src/mesh/GuBV4_Raycast.cpp */; }; - FFFF1101dc987fe81101dc98 /* src/mesh/GuBV4_SphereOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101dc987fe81101dc98 /* src/mesh/GuBV4_SphereOverlap.cpp */; }; - FFFF1101dd007fe81101dd00 /* src/mesh/GuBV4_SphereSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101dd007fe81101dd00 /* src/mesh/GuBV4_SphereSweep.cpp */; }; - FFFF1101dd687fe81101dd68 /* src/mesh/GuMeshQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101dd687fe81101dd68 /* src/mesh/GuMeshQuery.cpp */; }; - FFFF1101ddd07fe81101ddd0 /* src/mesh/GuMidphaseBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101ddd07fe81101ddd0 /* src/mesh/GuMidphaseBV4.cpp */; }; - FFFF1101de387fe81101de38 /* src/mesh/GuMidphaseRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101de387fe81101de38 /* src/mesh/GuMidphaseRTree.cpp */; }; - FFFF1101dea07fe81101dea0 /* src/mesh/GuOverlapTestsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101dea07fe81101dea0 /* src/mesh/GuOverlapTestsMesh.cpp */; }; - FFFF1101df087fe81101df08 /* src/mesh/GuRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101df087fe81101df08 /* src/mesh/GuRTree.cpp */; }; - FFFF1101df707fe81101df70 /* src/mesh/GuRTreeQueries.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101df707fe81101df70 /* src/mesh/GuRTreeQueries.cpp */; }; - FFFF1101dfd87fe81101dfd8 /* src/mesh/GuSweepsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101dfd87fe81101dfd8 /* src/mesh/GuSweepsMesh.cpp */; }; - FFFF1101e0407fe81101e040 /* src/mesh/GuTriangleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101e0407fe81101e040 /* src/mesh/GuTriangleMesh.cpp */; }; - FFFF1101e0a87fe81101e0a8 /* src/mesh/GuTriangleMeshBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101e0a87fe81101e0a8 /* src/mesh/GuTriangleMeshBV4.cpp */; }; - FFFF1101e1107fe81101e110 /* src/mesh/GuTriangleMeshRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101e1107fe81101e110 /* src/mesh/GuTriangleMeshRTree.cpp */; }; - FFFF1101e1787fe81101e178 /* src/hf/GuHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101e1787fe81101e178 /* src/hf/GuHeightField.cpp */; }; - FFFF1101e1e07fe81101e1e0 /* src/hf/GuHeightFieldUtil.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101e1e07fe81101e1e0 /* src/hf/GuHeightFieldUtil.cpp */; }; - FFFF1101e2487fe81101e248 /* src/hf/GuOverlapTestsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101e2487fe81101e248 /* src/hf/GuOverlapTestsHF.cpp */; }; - FFFF1101e2b07fe81101e2b0 /* src/hf/GuSweepsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101e2b07fe81101e2b0 /* src/hf/GuSweepsHF.cpp */; }; - FFFF1101e3187fe81101e318 /* src/pcm/GuPCMContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101e3187fe81101e318 /* src/pcm/GuPCMContactBoxBox.cpp */; }; - FFFF1101e3807fe81101e380 /* src/pcm/GuPCMContactBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101e3807fe81101e380 /* src/pcm/GuPCMContactBoxConvex.cpp */; }; - FFFF1101e3e87fe81101e3e8 /* src/pcm/GuPCMContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101e3e87fe81101e3e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */; }; - FFFF1101e4507fe81101e450 /* src/pcm/GuPCMContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101e4507fe81101e450 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */; }; - FFFF1101e4b87fe81101e4b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101e4b87fe81101e4b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */; }; - FFFF1101e5207fe81101e520 /* src/pcm/GuPCMContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101e5207fe81101e520 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */; }; - FFFF1101e5887fe81101e588 /* src/pcm/GuPCMContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101e5887fe81101e588 /* src/pcm/GuPCMContactCapsuleMesh.cpp */; }; - FFFF1101e5f07fe81101e5f0 /* src/pcm/GuPCMContactConvexCommon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101e5f07fe81101e5f0 /* src/pcm/GuPCMContactConvexCommon.cpp */; }; - FFFF1101e6587fe81101e658 /* src/pcm/GuPCMContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101e6587fe81101e658 /* src/pcm/GuPCMContactConvexConvex.cpp */; }; - FFFF1101e6c07fe81101e6c0 /* src/pcm/GuPCMContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101e6c07fe81101e6c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */; }; - FFFF1101e7287fe81101e728 /* src/pcm/GuPCMContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101e7287fe81101e728 /* src/pcm/GuPCMContactConvexMesh.cpp */; }; - FFFF1101e7907fe81101e790 /* src/pcm/GuPCMContactGenBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101e7907fe81101e790 /* src/pcm/GuPCMContactGenBoxConvex.cpp */; }; - FFFF1101e7f87fe81101e7f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101e7f87fe81101e7f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */; }; - FFFF1101e8607fe81101e860 /* src/pcm/GuPCMContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101e8607fe81101e860 /* src/pcm/GuPCMContactPlaneBox.cpp */; }; - FFFF1101e8c87fe81101e8c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101e8c87fe81101e8c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */; }; - FFFF1101e9307fe81101e930 /* src/pcm/GuPCMContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101e9307fe81101e930 /* src/pcm/GuPCMContactPlaneConvex.cpp */; }; - FFFF1101e9987fe81101e998 /* src/pcm/GuPCMContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101e9987fe81101e998 /* src/pcm/GuPCMContactSphereBox.cpp */; }; - FFFF1101ea007fe81101ea00 /* src/pcm/GuPCMContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101ea007fe81101ea00 /* src/pcm/GuPCMContactSphereCapsule.cpp */; }; - FFFF1101ea687fe81101ea68 /* src/pcm/GuPCMContactSphereConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101ea687fe81101ea68 /* src/pcm/GuPCMContactSphereConvex.cpp */; }; - FFFF1101ead07fe81101ead0 /* src/pcm/GuPCMContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101ead07fe81101ead0 /* src/pcm/GuPCMContactSphereHeightField.cpp */; }; - FFFF1101eb387fe81101eb38 /* src/pcm/GuPCMContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101eb387fe81101eb38 /* src/pcm/GuPCMContactSphereMesh.cpp */; }; - FFFF1101eba07fe81101eba0 /* src/pcm/GuPCMContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101eba07fe81101eba0 /* src/pcm/GuPCMContactSpherePlane.cpp */; }; - FFFF1101ec087fe81101ec08 /* src/pcm/GuPCMContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101ec087fe81101ec08 /* src/pcm/GuPCMContactSphereSphere.cpp */; }; - FFFF1101ec707fe81101ec70 /* src/pcm/GuPCMShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101ec707fe81101ec70 /* src/pcm/GuPCMShapeConvex.cpp */; }; - FFFF1101ecd87fe81101ecd8 /* src/pcm/GuPCMTriangleContactGen.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101ecd87fe81101ecd8 /* src/pcm/GuPCMTriangleContactGen.cpp */; }; - FFFF1101ed407fe81101ed40 /* src/pcm/GuPersistentContactManifold.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101ed407fe81101ed40 /* src/pcm/GuPersistentContactManifold.cpp */; }; - FFFF1101eda87fe81101eda8 /* src/ccd/GuCCDSweepConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101eda87fe81101eda8 /* src/ccd/GuCCDSweepConvexMesh.cpp */; }; - FFFF1101ee107fe81101ee10 /* src/ccd/GuCCDSweepPrimitives.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD1101ee107fe81101ee10 /* src/ccd/GuCCDSweepPrimitives.cpp */; }; + FFFF4319f4007f8c4319f400 /* src/CmBoxPruning.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD4319f4007f8c4319f400 /* src/CmBoxPruning.cpp */; }; + FFFF4319f4687f8c4319f468 /* src/CmCollection.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD4319f4687f8c4319f468 /* src/CmCollection.cpp */; }; + FFFF4319f4d07f8c4319f4d0 /* src/CmMathUtils.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD4319f4d07f8c4319f4d0 /* src/CmMathUtils.cpp */; }; + FFFF4319f5387f8c4319f538 /* src/CmPtrTable.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD4319f5387f8c4319f538 /* src/CmPtrTable.cpp */; }; + FFFF4319f5a07f8c4319f5a0 /* src/CmRadixSort.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD4319f5a07f8c4319f5a0 /* src/CmRadixSort.cpp */; }; + FFFF4319f6087f8c4319f608 /* src/CmRadixSortBuffered.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD4319f6087f8c4319f608 /* src/CmRadixSortBuffered.cpp */; }; + FFFF4319f6707f8c4319f670 /* src/CmRenderOutput.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD4319f6707f8c4319f670 /* src/CmRenderOutput.cpp */; }; + FFFF4319f6d87f8c4319f6d8 /* src/CmVisualization.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD4319f6d87f8c4319f6d8 /* src/CmVisualization.cpp */; }; + FFFF440013a87f8c440013a8 /* ../../Include/GeomUtils in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440013a87f8c440013a8 /* ../../Include/GeomUtils */; }; + FFFF440048e07f8c440048e0 /* src/GuBounds.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440048e07f8c440048e0 /* src/GuBounds.cpp */; }; + FFFF440049487f8c44004948 /* src/GuBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440049487f8c44004948 /* src/GuBox.cpp */; }; + FFFF440049b07f8c440049b0 /* src/GuCCTSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440049b07f8c440049b0 /* src/GuCCTSweepTests.cpp */; }; + FFFF44004a187f8c44004a18 /* src/GuCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD44004a187f8c44004a18 /* src/GuCapsule.cpp */; }; + FFFF44004a807f8c44004a80 /* src/GuGeometryQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD44004a807f8c44004a80 /* src/GuGeometryQuery.cpp */; }; + FFFF44004ae87f8c44004ae8 /* src/GuGeometryUnion.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD44004ae87f8c44004ae8 /* src/GuGeometryUnion.cpp */; }; + FFFF44004b507f8c44004b50 /* src/GuInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD44004b507f8c44004b50 /* src/GuInternal.cpp */; }; + FFFF44004bb87f8c44004bb8 /* src/GuMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD44004bb87f8c44004bb8 /* src/GuMTD.cpp */; }; + FFFF44004c207f8c44004c20 /* src/GuMeshFactory.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD44004c207f8c44004c20 /* src/GuMeshFactory.cpp */; }; + FFFF44004c887f8c44004c88 /* src/GuMetaData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD44004c887f8c44004c88 /* src/GuMetaData.cpp */; }; + FFFF44004cf07f8c44004cf0 /* src/GuOverlapTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD44004cf07f8c44004cf0 /* src/GuOverlapTests.cpp */; }; + FFFF44004d587f8c44004d58 /* src/GuRaycastTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD44004d587f8c44004d58 /* src/GuRaycastTests.cpp */; }; + FFFF44004dc07f8c44004dc0 /* src/GuSerialize.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD44004dc07f8c44004dc0 /* src/GuSerialize.cpp */; }; + FFFF44004e287f8c44004e28 /* src/GuSweepMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD44004e287f8c44004e28 /* src/GuSweepMTD.cpp */; }; + FFFF44004e907f8c44004e90 /* src/GuSweepSharedTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD44004e907f8c44004e90 /* src/GuSweepSharedTests.cpp */; }; + FFFF44004ef87f8c44004ef8 /* src/GuSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD44004ef87f8c44004ef8 /* src/GuSweepTests.cpp */; }; + FFFF44004f607f8c44004f60 /* src/contact/GuContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD44004f607f8c44004f60 /* src/contact/GuContactBoxBox.cpp */; }; + FFFF44004fc87f8c44004fc8 /* src/contact/GuContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD44004fc87f8c44004fc8 /* src/contact/GuContactCapsuleBox.cpp */; }; + FFFF440050307f8c44005030 /* src/contact/GuContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440050307f8c44005030 /* src/contact/GuContactCapsuleCapsule.cpp */; }; + FFFF440050987f8c44005098 /* src/contact/GuContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440050987f8c44005098 /* src/contact/GuContactCapsuleConvex.cpp */; }; + FFFF440051007f8c44005100 /* src/contact/GuContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440051007f8c44005100 /* src/contact/GuContactCapsuleMesh.cpp */; }; + FFFF440051687f8c44005168 /* src/contact/GuContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440051687f8c44005168 /* src/contact/GuContactConvexConvex.cpp */; }; + FFFF440051d07f8c440051d0 /* src/contact/GuContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440051d07f8c440051d0 /* src/contact/GuContactConvexMesh.cpp */; }; + FFFF440052387f8c44005238 /* src/contact/GuContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440052387f8c44005238 /* src/contact/GuContactPlaneBox.cpp */; }; + FFFF440052a07f8c440052a0 /* src/contact/GuContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440052a07f8c440052a0 /* src/contact/GuContactPlaneCapsule.cpp */; }; + FFFF440053087f8c44005308 /* src/contact/GuContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440053087f8c44005308 /* src/contact/GuContactPlaneConvex.cpp */; }; + FFFF440053707f8c44005370 /* src/contact/GuContactPolygonPolygon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440053707f8c44005370 /* src/contact/GuContactPolygonPolygon.cpp */; }; + FFFF440053d87f8c440053d8 /* src/contact/GuContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440053d87f8c440053d8 /* src/contact/GuContactSphereBox.cpp */; }; + FFFF440054407f8c44005440 /* src/contact/GuContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440054407f8c44005440 /* src/contact/GuContactSphereCapsule.cpp */; }; + FFFF440054a87f8c440054a8 /* src/contact/GuContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440054a87f8c440054a8 /* src/contact/GuContactSphereMesh.cpp */; }; + FFFF440055107f8c44005510 /* src/contact/GuContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440055107f8c44005510 /* src/contact/GuContactSpherePlane.cpp */; }; + FFFF440055787f8c44005578 /* src/contact/GuContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440055787f8c44005578 /* src/contact/GuContactSphereSphere.cpp */; }; + FFFF440055e07f8c440055e0 /* src/contact/GuFeatureCode.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440055e07f8c440055e0 /* src/contact/GuFeatureCode.cpp */; }; + FFFF440056487f8c44005648 /* src/contact/GuLegacyContactBoxHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440056487f8c44005648 /* src/contact/GuLegacyContactBoxHeightField.cpp */; }; + FFFF440056b07f8c440056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440056b07f8c440056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */; }; + FFFF440057187f8c44005718 /* src/contact/GuLegacyContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440057187f8c44005718 /* src/contact/GuLegacyContactConvexHeightField.cpp */; }; + FFFF440057807f8c44005780 /* src/contact/GuLegacyContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440057807f8c44005780 /* src/contact/GuLegacyContactSphereHeightField.cpp */; }; + FFFF440057e87f8c440057e8 /* src/common/GuBarycentricCoordinates.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440057e87f8c440057e8 /* src/common/GuBarycentricCoordinates.cpp */; }; + FFFF440058507f8c44005850 /* src/common/GuSeparatingAxes.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440058507f8c44005850 /* src/common/GuSeparatingAxes.cpp */; }; + FFFF440058b87f8c440058b8 /* src/convex/GuBigConvexData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440058b87f8c440058b8 /* src/convex/GuBigConvexData.cpp */; }; + FFFF440059207f8c44005920 /* src/convex/GuConvexHelper.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440059207f8c44005920 /* src/convex/GuConvexHelper.cpp */; }; + FFFF440059887f8c44005988 /* src/convex/GuConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440059887f8c44005988 /* src/convex/GuConvexMesh.cpp */; }; + FFFF440059f07f8c440059f0 /* src/convex/GuConvexSupportTable.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440059f07f8c440059f0 /* src/convex/GuConvexSupportTable.cpp */; }; + FFFF44005a587f8c44005a58 /* src/convex/GuConvexUtilsInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD44005a587f8c44005a58 /* src/convex/GuConvexUtilsInternal.cpp */; }; + FFFF44005ac07f8c44005ac0 /* src/convex/GuHillClimbing.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD44005ac07f8c44005ac0 /* src/convex/GuHillClimbing.cpp */; }; + FFFF44005b287f8c44005b28 /* src/convex/GuShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD44005b287f8c44005b28 /* src/convex/GuShapeConvex.cpp */; }; + FFFF44005b907f8c44005b90 /* src/distance/GuDistancePointBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD44005b907f8c44005b90 /* src/distance/GuDistancePointBox.cpp */; }; + FFFF44005bf87f8c44005bf8 /* src/distance/GuDistancePointTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD44005bf87f8c44005bf8 /* src/distance/GuDistancePointTriangle.cpp */; }; + FFFF44005c607f8c44005c60 /* src/distance/GuDistanceSegmentBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD44005c607f8c44005c60 /* src/distance/GuDistanceSegmentBox.cpp */; }; + FFFF44005cc87f8c44005cc8 /* src/distance/GuDistanceSegmentSegment.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD44005cc87f8c44005cc8 /* src/distance/GuDistanceSegmentSegment.cpp */; }; + FFFF44005d307f8c44005d30 /* src/distance/GuDistanceSegmentTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD44005d307f8c44005d30 /* src/distance/GuDistanceSegmentTriangle.cpp */; }; + FFFF44005d987f8c44005d98 /* src/sweep/GuSweepBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD44005d987f8c44005d98 /* src/sweep/GuSweepBoxBox.cpp */; }; + FFFF44005e007f8c44005e00 /* src/sweep/GuSweepBoxSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD44005e007f8c44005e00 /* src/sweep/GuSweepBoxSphere.cpp */; }; + FFFF44005e687f8c44005e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD44005e687f8c44005e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */; }; + FFFF44005ed07f8c44005ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD44005ed07f8c44005ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */; }; + FFFF44005f387f8c44005f38 /* src/sweep/GuSweepCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD44005f387f8c44005f38 /* src/sweep/GuSweepCapsuleBox.cpp */; }; + FFFF44005fa07f8c44005fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD44005fa07f8c44005fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */; }; + FFFF440060087f8c44006008 /* src/sweep/GuSweepCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440060087f8c44006008 /* src/sweep/GuSweepCapsuleTriangle.cpp */; }; + FFFF440060707f8c44006070 /* src/sweep/GuSweepSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440060707f8c44006070 /* src/sweep/GuSweepSphereCapsule.cpp */; }; + FFFF440060d87f8c440060d8 /* src/sweep/GuSweepSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440060d87f8c440060d8 /* src/sweep/GuSweepSphereSphere.cpp */; }; + FFFF440061407f8c44006140 /* src/sweep/GuSweepSphereTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440061407f8c44006140 /* src/sweep/GuSweepSphereTriangle.cpp */; }; + FFFF440061a87f8c440061a8 /* src/sweep/GuSweepTriangleUtils.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440061a87f8c440061a8 /* src/sweep/GuSweepTriangleUtils.cpp */; }; + FFFF440062107f8c44006210 /* src/gjk/GuEPA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440062107f8c44006210 /* src/gjk/GuEPA.cpp */; }; + FFFF440062787f8c44006278 /* src/gjk/GuGJKSimplex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440062787f8c44006278 /* src/gjk/GuGJKSimplex.cpp */; }; + FFFF440062e07f8c440062e0 /* src/gjk/GuGJKTest.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440062e07f8c440062e0 /* src/gjk/GuGJKTest.cpp */; }; + FFFF440063487f8c44006348 /* src/intersection/GuIntersectionBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440063487f8c44006348 /* src/intersection/GuIntersectionBoxBox.cpp */; }; + FFFF440063b07f8c440063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440063b07f8c440063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */; }; + FFFF440064187f8c44006418 /* src/intersection/GuIntersectionEdgeEdge.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440064187f8c44006418 /* src/intersection/GuIntersectionEdgeEdge.cpp */; }; + FFFF440064807f8c44006480 /* src/intersection/GuIntersectionRayBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440064807f8c44006480 /* src/intersection/GuIntersectionRayBox.cpp */; }; + FFFF440064e87f8c440064e8 /* src/intersection/GuIntersectionRayCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440064e87f8c440064e8 /* src/intersection/GuIntersectionRayCapsule.cpp */; }; + FFFF440065507f8c44006550 /* src/intersection/GuIntersectionRaySphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440065507f8c44006550 /* src/intersection/GuIntersectionRaySphere.cpp */; }; + FFFF440065b87f8c440065b8 /* src/intersection/GuIntersectionSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440065b87f8c440065b8 /* src/intersection/GuIntersectionSphereBox.cpp */; }; + FFFF440066207f8c44006620 /* src/intersection/GuIntersectionTriangleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440066207f8c44006620 /* src/intersection/GuIntersectionTriangleBox.cpp */; }; + FFFF440066887f8c44006688 /* src/mesh/GuBV32.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440066887f8c44006688 /* src/mesh/GuBV32.cpp */; }; + FFFF440066f07f8c440066f0 /* src/mesh/GuBV32Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440066f07f8c440066f0 /* src/mesh/GuBV32Build.cpp */; }; + FFFF440067587f8c44006758 /* src/mesh/GuBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440067587f8c44006758 /* src/mesh/GuBV4.cpp */; }; + FFFF440067c07f8c440067c0 /* src/mesh/GuBV4Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440067c07f8c440067c0 /* src/mesh/GuBV4Build.cpp */; }; + FFFF440068287f8c44006828 /* src/mesh/GuBV4_AABBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440068287f8c44006828 /* src/mesh/GuBV4_AABBSweep.cpp */; }; + FFFF440068907f8c44006890 /* src/mesh/GuBV4_BoxOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440068907f8c44006890 /* src/mesh/GuBV4_BoxOverlap.cpp */; }; + FFFF440068f87f8c440068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440068f87f8c440068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */; }; + FFFF440069607f8c44006960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440069607f8c44006960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */; }; + FFFF440069c87f8c440069c8 /* src/mesh/GuBV4_OBBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440069c87f8c440069c8 /* src/mesh/GuBV4_OBBSweep.cpp */; }; + FFFF44006a307f8c44006a30 /* src/mesh/GuBV4_Raycast.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD44006a307f8c44006a30 /* src/mesh/GuBV4_Raycast.cpp */; }; + FFFF44006a987f8c44006a98 /* src/mesh/GuBV4_SphereOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD44006a987f8c44006a98 /* src/mesh/GuBV4_SphereOverlap.cpp */; }; + FFFF44006b007f8c44006b00 /* src/mesh/GuBV4_SphereSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD44006b007f8c44006b00 /* src/mesh/GuBV4_SphereSweep.cpp */; }; + FFFF44006b687f8c44006b68 /* src/mesh/GuMeshQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD44006b687f8c44006b68 /* src/mesh/GuMeshQuery.cpp */; }; + FFFF44006bd07f8c44006bd0 /* src/mesh/GuMidphaseBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD44006bd07f8c44006bd0 /* src/mesh/GuMidphaseBV4.cpp */; }; + FFFF44006c387f8c44006c38 /* src/mesh/GuMidphaseRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD44006c387f8c44006c38 /* src/mesh/GuMidphaseRTree.cpp */; }; + FFFF44006ca07f8c44006ca0 /* src/mesh/GuOverlapTestsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD44006ca07f8c44006ca0 /* src/mesh/GuOverlapTestsMesh.cpp */; }; + FFFF44006d087f8c44006d08 /* src/mesh/GuRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD44006d087f8c44006d08 /* src/mesh/GuRTree.cpp */; }; + FFFF44006d707f8c44006d70 /* src/mesh/GuRTreeQueries.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD44006d707f8c44006d70 /* src/mesh/GuRTreeQueries.cpp */; }; + FFFF44006dd87f8c44006dd8 /* src/mesh/GuSweepsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD44006dd87f8c44006dd8 /* src/mesh/GuSweepsMesh.cpp */; }; + FFFF44006e407f8c44006e40 /* src/mesh/GuTriangleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD44006e407f8c44006e40 /* src/mesh/GuTriangleMesh.cpp */; }; + FFFF44006ea87f8c44006ea8 /* src/mesh/GuTriangleMeshBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD44006ea87f8c44006ea8 /* src/mesh/GuTriangleMeshBV4.cpp */; }; + FFFF44006f107f8c44006f10 /* src/mesh/GuTriangleMeshRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD44006f107f8c44006f10 /* src/mesh/GuTriangleMeshRTree.cpp */; }; + FFFF44006f787f8c44006f78 /* src/hf/GuHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD44006f787f8c44006f78 /* src/hf/GuHeightField.cpp */; }; + FFFF44006fe07f8c44006fe0 /* src/hf/GuHeightFieldUtil.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD44006fe07f8c44006fe0 /* src/hf/GuHeightFieldUtil.cpp */; }; + FFFF440070487f8c44007048 /* src/hf/GuOverlapTestsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440070487f8c44007048 /* src/hf/GuOverlapTestsHF.cpp */; }; + FFFF440070b07f8c440070b0 /* src/hf/GuSweepsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440070b07f8c440070b0 /* src/hf/GuSweepsHF.cpp */; }; + FFFF440071187f8c44007118 /* src/pcm/GuPCMContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440071187f8c44007118 /* src/pcm/GuPCMContactBoxBox.cpp */; }; + FFFF440071807f8c44007180 /* src/pcm/GuPCMContactBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440071807f8c44007180 /* src/pcm/GuPCMContactBoxConvex.cpp */; }; + FFFF440071e87f8c440071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440071e87f8c440071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */; }; + FFFF440072507f8c44007250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440072507f8c44007250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */; }; + FFFF440072b87f8c440072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440072b87f8c440072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */; }; + FFFF440073207f8c44007320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440073207f8c44007320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */; }; + FFFF440073887f8c44007388 /* src/pcm/GuPCMContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440073887f8c44007388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */; }; + FFFF440073f07f8c440073f0 /* src/pcm/GuPCMContactConvexCommon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440073f07f8c440073f0 /* src/pcm/GuPCMContactConvexCommon.cpp */; }; + FFFF440074587f8c44007458 /* src/pcm/GuPCMContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440074587f8c44007458 /* src/pcm/GuPCMContactConvexConvex.cpp */; }; + FFFF440074c07f8c440074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440074c07f8c440074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */; }; + FFFF440075287f8c44007528 /* src/pcm/GuPCMContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440075287f8c44007528 /* src/pcm/GuPCMContactConvexMesh.cpp */; }; + FFFF440075907f8c44007590 /* src/pcm/GuPCMContactGenBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440075907f8c44007590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */; }; + FFFF440075f87f8c440075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440075f87f8c440075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */; }; + FFFF440076607f8c44007660 /* src/pcm/GuPCMContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440076607f8c44007660 /* src/pcm/GuPCMContactPlaneBox.cpp */; }; + FFFF440076c87f8c440076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440076c87f8c440076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */; }; + FFFF440077307f8c44007730 /* src/pcm/GuPCMContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440077307f8c44007730 /* src/pcm/GuPCMContactPlaneConvex.cpp */; }; + FFFF440077987f8c44007798 /* src/pcm/GuPCMContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440077987f8c44007798 /* src/pcm/GuPCMContactSphereBox.cpp */; }; + FFFF440078007f8c44007800 /* src/pcm/GuPCMContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440078007f8c44007800 /* src/pcm/GuPCMContactSphereCapsule.cpp */; }; + FFFF440078687f8c44007868 /* src/pcm/GuPCMContactSphereConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440078687f8c44007868 /* src/pcm/GuPCMContactSphereConvex.cpp */; }; + FFFF440078d07f8c440078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440078d07f8c440078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */; }; + FFFF440079387f8c44007938 /* src/pcm/GuPCMContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440079387f8c44007938 /* src/pcm/GuPCMContactSphereMesh.cpp */; }; + FFFF440079a07f8c440079a0 /* src/pcm/GuPCMContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD440079a07f8c440079a0 /* src/pcm/GuPCMContactSpherePlane.cpp */; }; + FFFF44007a087f8c44007a08 /* src/pcm/GuPCMContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD44007a087f8c44007a08 /* src/pcm/GuPCMContactSphereSphere.cpp */; }; + FFFF44007a707f8c44007a70 /* src/pcm/GuPCMShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD44007a707f8c44007a70 /* src/pcm/GuPCMShapeConvex.cpp */; }; + FFFF44007ad87f8c44007ad8 /* src/pcm/GuPCMTriangleContactGen.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD44007ad87f8c44007ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */; }; + FFFF44007b407f8c44007b40 /* src/pcm/GuPersistentContactManifold.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD44007b407f8c44007b40 /* src/pcm/GuPersistentContactManifold.cpp */; }; + FFFF44007ba87f8c44007ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD44007ba87f8c44007ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */; }; + FFFF44007c107f8c44007c10 /* src/ccd/GuCCDSweepPrimitives.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD44007c107f8c44007c10 /* src/ccd/GuCCDSweepPrimitives.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD12128d507fe812128d50 /* PhysXCommon */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCommon"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD110252007fe811025200 /* common/PxBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxBase.h"; path = "../../../Include/common/PxBase.h"; sourceTree = SOURCE_ROOT; }; - FFFD110252687fe811025268 /* common/PxCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCollection.h"; path = "../../../Include/common/PxCollection.h"; sourceTree = SOURCE_ROOT; }; - FFFD110252d07fe8110252d0 /* common/PxCoreUtilityTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCoreUtilityTypes.h"; path = "../../../Include/common/PxCoreUtilityTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD110253387fe811025338 /* common/PxMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaData.h"; path = "../../../Include/common/PxMetaData.h"; sourceTree = SOURCE_ROOT; }; - FFFD110253a07fe8110253a0 /* common/PxMetaDataFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaDataFlags.h"; path = "../../../Include/common/PxMetaDataFlags.h"; sourceTree = SOURCE_ROOT; }; - FFFD110254087fe811025408 /* common/PxPhysXCommonConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysXCommonConfig.h"; path = "../../../Include/common/PxPhysXCommonConfig.h"; sourceTree = SOURCE_ROOT; }; - FFFD110254707fe811025470 /* common/PxPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysicsInsertionCallback.h"; path = "../../../Include/common/PxPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFD110254d87fe8110254d8 /* common/PxRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxRenderBuffer.h"; path = "../../../Include/common/PxRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD110255407fe811025540 /* common/PxSerialFramework.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerialFramework.h"; path = "../../../Include/common/PxSerialFramework.h"; sourceTree = SOURCE_ROOT; }; - FFFD110255a87fe8110255a8 /* common/PxSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerializer.h"; path = "../../../Include/common/PxSerializer.h"; sourceTree = SOURCE_ROOT; }; - FFFD110256107fe811025610 /* common/PxStringTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxStringTable.h"; path = "../../../Include/common/PxStringTable.h"; sourceTree = SOURCE_ROOT; }; - FFFD110256787fe811025678 /* common/PxTolerancesScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTolerancesScale.h"; path = "../../../Include/common/PxTolerancesScale.h"; sourceTree = SOURCE_ROOT; }; - FFFD110256e07fe8110256e0 /* common/PxTypeInfo.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTypeInfo.h"; path = "../../../Include/common/PxTypeInfo.h"; sourceTree = SOURCE_ROOT; }; - FFFD110257487fe811025748 /* geometry/PxBoxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxBoxGeometry.h"; path = "../../../Include/geometry/PxBoxGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFD110257b07fe8110257b0 /* geometry/PxCapsuleGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxCapsuleGeometry.h"; path = "../../../Include/geometry/PxCapsuleGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFD110258187fe811025818 /* geometry/PxConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMesh.h"; path = "../../../Include/geometry/PxConvexMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFD110258807fe811025880 /* geometry/PxConvexMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMeshGeometry.h"; path = "../../../Include/geometry/PxConvexMeshGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFD110258e87fe8110258e8 /* geometry/PxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometry.h"; path = "../../../Include/geometry/PxGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFD110259507fe811025950 /* geometry/PxGeometryHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryHelpers.h"; path = "../../../Include/geometry/PxGeometryHelpers.h"; sourceTree = SOURCE_ROOT; }; - FFFD110259b87fe8110259b8 /* geometry/PxGeometryQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryQuery.h"; path = "../../../Include/geometry/PxGeometryQuery.h"; sourceTree = SOURCE_ROOT; }; - FFFD11025a207fe811025a20 /* geometry/PxHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightField.h"; path = "../../../Include/geometry/PxHeightField.h"; sourceTree = SOURCE_ROOT; }; - FFFD11025a887fe811025a88 /* geometry/PxHeightFieldDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldDesc.h"; path = "../../../Include/geometry/PxHeightFieldDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD11025af07fe811025af0 /* geometry/PxHeightFieldFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldFlag.h"; path = "../../../Include/geometry/PxHeightFieldFlag.h"; sourceTree = SOURCE_ROOT; }; - FFFD11025b587fe811025b58 /* geometry/PxHeightFieldGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldGeometry.h"; path = "../../../Include/geometry/PxHeightFieldGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFD11025bc07fe811025bc0 /* geometry/PxHeightFieldSample.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldSample.h"; path = "../../../Include/geometry/PxHeightFieldSample.h"; sourceTree = SOURCE_ROOT; }; - FFFD11025c287fe811025c28 /* geometry/PxMeshQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshQuery.h"; path = "../../../Include/geometry/PxMeshQuery.h"; sourceTree = SOURCE_ROOT; }; - FFFD11025c907fe811025c90 /* geometry/PxMeshScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshScale.h"; path = "../../../Include/geometry/PxMeshScale.h"; sourceTree = SOURCE_ROOT; }; - FFFD11025cf87fe811025cf8 /* geometry/PxPlaneGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxPlaneGeometry.h"; path = "../../../Include/geometry/PxPlaneGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFD11025d607fe811025d60 /* geometry/PxSimpleTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSimpleTriangleMesh.h"; path = "../../../Include/geometry/PxSimpleTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFD11025dc87fe811025dc8 /* geometry/PxSphereGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSphereGeometry.h"; path = "../../../Include/geometry/PxSphereGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFD11025e307fe811025e30 /* geometry/PxTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangle.h"; path = "../../../Include/geometry/PxTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFD11025e987fe811025e98 /* geometry/PxTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMesh.h"; path = "../../../Include/geometry/PxTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFD11025f007fe811025f00 /* geometry/PxTriangleMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMeshGeometry.h"; path = "../../../Include/geometry/PxTriangleMeshGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFD1198a0007fe81198a000 /* src/CmBoxPruning.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.cpp"; path = "../../Common/src/CmBoxPruning.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1198a0687fe81198a068 /* src/CmCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.cpp"; path = "../../Common/src/CmCollection.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1198a0d07fe81198a0d0 /* src/CmMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMathUtils.cpp"; path = "../../Common/src/CmMathUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1198a1387fe81198a138 /* src/CmPtrTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.cpp"; path = "../../Common/src/CmPtrTable.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1198a1a07fe81198a1a0 /* src/CmRadixSort.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.cpp"; path = "../../Common/src/CmRadixSort.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1198a2087fe81198a208 /* src/CmRadixSortBuffered.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.cpp"; path = "../../Common/src/CmRadixSortBuffered.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1198a2707fe81198a270 /* src/CmRenderOutput.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.cpp"; path = "../../Common/src/CmRenderOutput.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1198a2d87fe81198a2d8 /* src/CmVisualization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.cpp"; path = "../../Common/src/CmVisualization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1198a3407fe81198a340 /* src/CmBitMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBitMap.h"; path = "../../Common/src/CmBitMap.h"; sourceTree = SOURCE_ROOT; }; - FFFD1198a3a87fe81198a3a8 /* src/CmBoxPruning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.h"; path = "../../Common/src/CmBoxPruning.h"; sourceTree = SOURCE_ROOT; }; - FFFD1198a4107fe81198a410 /* src/CmCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.h"; path = "../../Common/src/CmCollection.h"; sourceTree = SOURCE_ROOT; }; - FFFD1198a4787fe81198a478 /* src/CmConeLimitHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmConeLimitHelper.h"; path = "../../Common/src/CmConeLimitHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFD1198a4e07fe81198a4e0 /* src/CmFlushPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmFlushPool.h"; path = "../../Common/src/CmFlushPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD1198a5487fe81198a548 /* src/CmIDPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIDPool.h"; path = "../../Common/src/CmIDPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD1198a5b07fe81198a5b0 /* src/CmIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIO.h"; path = "../../Common/src/CmIO.h"; sourceTree = SOURCE_ROOT; }; - FFFD1198a6187fe81198a618 /* src/CmMatrix34.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMatrix34.h"; path = "../../Common/src/CmMatrix34.h"; sourceTree = SOURCE_ROOT; }; - FFFD1198a6807fe81198a680 /* src/CmPhysXCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPhysXCommon.h"; path = "../../Common/src/CmPhysXCommon.h"; sourceTree = SOURCE_ROOT; }; - FFFD1198a6e87fe81198a6e8 /* src/CmPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPool.h"; path = "../../Common/src/CmPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD1198a7507fe81198a750 /* src/CmPreallocatingPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPreallocatingPool.h"; path = "../../Common/src/CmPreallocatingPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD1198a7b87fe81198a7b8 /* src/CmPriorityQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPriorityQueue.h"; path = "../../Common/src/CmPriorityQueue.h"; sourceTree = SOURCE_ROOT; }; - FFFD1198a8207fe81198a820 /* src/CmPtrTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.h"; path = "../../Common/src/CmPtrTable.h"; sourceTree = SOURCE_ROOT; }; - FFFD1198a8887fe81198a888 /* src/CmQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmQueue.h"; path = "../../Common/src/CmQueue.h"; sourceTree = SOURCE_ROOT; }; - FFFD1198a8f07fe81198a8f0 /* src/CmRadixSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.h"; path = "../../Common/src/CmRadixSort.h"; sourceTree = SOURCE_ROOT; }; - FFFD1198a9587fe81198a958 /* src/CmRadixSortBuffered.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.h"; path = "../../Common/src/CmRadixSortBuffered.h"; sourceTree = SOURCE_ROOT; }; - FFFD1198a9c07fe81198a9c0 /* src/CmReaderWriterLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmReaderWriterLock.h"; path = "../../Common/src/CmReaderWriterLock.h"; sourceTree = SOURCE_ROOT; }; - FFFD1198aa287fe81198aa28 /* src/CmRefCountable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRefCountable.h"; path = "../../Common/src/CmRefCountable.h"; sourceTree = SOURCE_ROOT; }; - FFFD1198aa907fe81198aa90 /* src/CmRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderBuffer.h"; path = "../../Common/src/CmRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD1198aaf87fe81198aaf8 /* src/CmRenderOutput.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.h"; path = "../../Common/src/CmRenderOutput.h"; sourceTree = SOURCE_ROOT; }; - FFFD1198ab607fe81198ab60 /* src/CmScaling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmScaling.h"; path = "../../Common/src/CmScaling.h"; sourceTree = SOURCE_ROOT; }; - FFFD1198abc87fe81198abc8 /* src/CmSpatialVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmSpatialVector.h"; path = "../../Common/src/CmSpatialVector.h"; sourceTree = SOURCE_ROOT; }; - FFFD1198ac307fe81198ac30 /* src/CmTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTask.h"; path = "../../Common/src/CmTask.h"; sourceTree = SOURCE_ROOT; }; - FFFD1198ac987fe81198ac98 /* src/CmTaskPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTaskPool.h"; path = "../../Common/src/CmTaskPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD1198ad007fe81198ad00 /* src/CmTmpMem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTmpMem.h"; path = "../../Common/src/CmTmpMem.h"; sourceTree = SOURCE_ROOT; }; - FFFD1198ad687fe81198ad68 /* src/CmTransformUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTransformUtils.h"; path = "../../Common/src/CmTransformUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD1198add07fe81198add0 /* src/CmUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmUtils.h"; path = "../../Common/src/CmUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD1198ae387fe81198ae38 /* src/CmVisualization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.h"; path = "../../Common/src/CmVisualization.h"; sourceTree = SOURCE_ROOT; }; - FFFD110182007fe811018200 /* headers/GuAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuAxes.h"; path = "../../GeomUtils/headers/GuAxes.h"; sourceTree = SOURCE_ROOT; }; - FFFD110182687fe811018268 /* headers/GuBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuBox.h"; path = "../../GeomUtils/headers/GuBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD110182d07fe8110182d0 /* headers/GuDistanceSegmentBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentBox.h"; path = "../../GeomUtils/headers/GuDistanceSegmentBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD110183387fe811018338 /* headers/GuDistanceSegmentSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentSegment.h"; path = "../../GeomUtils/headers/GuDistanceSegmentSegment.h"; sourceTree = SOURCE_ROOT; }; - FFFD110183a07fe8110183a0 /* headers/GuIntersectionBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionBoxBox.h"; path = "../../GeomUtils/headers/GuIntersectionBoxBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD110184087fe811018408 /* headers/GuIntersectionTriangleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionTriangleBox.h"; path = "../../GeomUtils/headers/GuIntersectionTriangleBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD110184707fe811018470 /* headers/GuRaycastTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuRaycastTests.h"; path = "../../GeomUtils/headers/GuRaycastTests.h"; sourceTree = SOURCE_ROOT; }; - FFFD110184d87fe8110184d8 /* headers/GuSIMDHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSIMDHelpers.h"; path = "../../GeomUtils/headers/GuSIMDHelpers.h"; sourceTree = SOURCE_ROOT; }; - FFFD110185407fe811018540 /* headers/GuSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSegment.h"; path = "../../GeomUtils/headers/GuSegment.h"; sourceTree = SOURCE_ROOT; }; - FFFD110185a87fe8110185a8 /* ../../Include/GeomUtils */= { isa = PBXFileReference; fileEncoding = 4; name = "../../Include/GeomUtils"; path = "../../../Include/GeomUtils"; sourceTree = SOURCE_ROOT; }; - FFFD110186107fe811018610 /* src/GuBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.h"; path = "../../GeomUtils/src/GuBounds.h"; sourceTree = SOURCE_ROOT; }; - FFFD110186787fe811018678 /* src/GuCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.h"; path = "../../GeomUtils/src/GuCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFD110186e07fe8110186e0 /* src/GuCenterExtents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCenterExtents.h"; path = "../../GeomUtils/src/GuCenterExtents.h"; sourceTree = SOURCE_ROOT; }; - FFFD110187487fe811018748 /* src/GuGeometryUnion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.h"; path = "../../GeomUtils/src/GuGeometryUnion.h"; sourceTree = SOURCE_ROOT; }; - FFFD110187b07fe8110187b0 /* src/GuInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.h"; path = "../../GeomUtils/src/GuInternal.h"; sourceTree = SOURCE_ROOT; }; - FFFD110188187fe811018818 /* src/GuMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.h"; path = "../../GeomUtils/src/GuMTD.h"; sourceTree = SOURCE_ROOT; }; - FFFD110188807fe811018880 /* src/GuMeshFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.h"; path = "../../GeomUtils/src/GuMeshFactory.h"; sourceTree = SOURCE_ROOT; }; - FFFD110188e87fe8110188e8 /* src/GuOverlapTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.h"; path = "../../GeomUtils/src/GuOverlapTests.h"; sourceTree = SOURCE_ROOT; }; - FFFD110189507fe811018950 /* src/GuSerialize.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.h"; path = "../../GeomUtils/src/GuSerialize.h"; sourceTree = SOURCE_ROOT; }; - FFFD110189b87fe8110189b8 /* src/GuSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSphere.h"; path = "../../GeomUtils/src/GuSphere.h"; sourceTree = SOURCE_ROOT; }; - FFFD11018a207fe811018a20 /* src/GuSweepMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.h"; path = "../../GeomUtils/src/GuSweepMTD.h"; sourceTree = SOURCE_ROOT; }; - FFFD11018a887fe811018a88 /* src/GuSweepSharedTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.h"; path = "../../GeomUtils/src/GuSweepSharedTests.h"; sourceTree = SOURCE_ROOT; }; - FFFD11018af07fe811018af0 /* src/GuSweepTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.h"; path = "../../GeomUtils/src/GuSweepTests.h"; sourceTree = SOURCE_ROOT; }; - FFFD11018b587fe811018b58 /* src/contact/GuContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactMethodImpl.h"; path = "../../GeomUtils/src/contact/GuContactMethodImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD11018bc07fe811018bc0 /* src/contact/GuContactPolygonPolygon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.h"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.h"; sourceTree = SOURCE_ROOT; }; - FFFD11018c287fe811018c28 /* src/contact/GuFeatureCode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.h"; path = "../../GeomUtils/src/contact/GuFeatureCode.h"; sourceTree = SOURCE_ROOT; }; - FFFD11018c907fe811018c90 /* src/contact/GuLegacyTraceLineCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyTraceLineCallback.h"; path = "../../GeomUtils/src/contact/GuLegacyTraceLineCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFD11018cf87fe811018cf8 /* src/common/GuBarycentricCoordinates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.h"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.h"; sourceTree = SOURCE_ROOT; }; - FFFD11018d607fe811018d60 /* src/common/GuBoxConversion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBoxConversion.h"; path = "../../GeomUtils/src/common/GuBoxConversion.h"; sourceTree = SOURCE_ROOT; }; - FFFD11018dc87fe811018dc8 /* src/common/GuEdgeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeCache.h"; path = "../../GeomUtils/src/common/GuEdgeCache.h"; sourceTree = SOURCE_ROOT; }; - FFFD11018e307fe811018e30 /* src/common/GuEdgeListData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeListData.h"; path = "../../GeomUtils/src/common/GuEdgeListData.h"; sourceTree = SOURCE_ROOT; }; - FFFD11018e987fe811018e98 /* src/common/GuSeparatingAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.h"; path = "../../GeomUtils/src/common/GuSeparatingAxes.h"; sourceTree = SOURCE_ROOT; }; - FFFD11018f007fe811018f00 /* src/convex/GuBigConvexData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.h"; path = "../../GeomUtils/src/convex/GuBigConvexData.h"; sourceTree = SOURCE_ROOT; }; - FFFD11018f687fe811018f68 /* src/convex/GuBigConvexData2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData2.h"; path = "../../GeomUtils/src/convex/GuBigConvexData2.h"; sourceTree = SOURCE_ROOT; }; - FFFD11018fd07fe811018fd0 /* src/convex/GuConvexEdgeFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexEdgeFlags.h"; path = "../../GeomUtils/src/convex/GuConvexEdgeFlags.h"; sourceTree = SOURCE_ROOT; }; - FFFD110190387fe811019038 /* src/convex/GuConvexHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.h"; path = "../../GeomUtils/src/convex/GuConvexHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFD110190a07fe8110190a0 /* src/convex/GuConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.h"; path = "../../GeomUtils/src/convex/GuConvexMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFD110191087fe811019108 /* src/convex/GuConvexMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMeshData.h"; path = "../../GeomUtils/src/convex/GuConvexMeshData.h"; sourceTree = SOURCE_ROOT; }; - FFFD110191707fe811019170 /* src/convex/GuConvexSupportTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.h"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.h"; sourceTree = SOURCE_ROOT; }; - FFFD110191d87fe8110191d8 /* src/convex/GuConvexUtilsInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.h"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.h"; sourceTree = SOURCE_ROOT; }; - FFFD110192407fe811019240 /* src/convex/GuCubeIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuCubeIndex.h"; path = "../../GeomUtils/src/convex/GuCubeIndex.h"; sourceTree = SOURCE_ROOT; }; - FFFD110192a87fe8110192a8 /* src/convex/GuHillClimbing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.h"; path = "../../GeomUtils/src/convex/GuHillClimbing.h"; sourceTree = SOURCE_ROOT; }; - FFFD110193107fe811019310 /* src/convex/GuShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.h"; path = "../../GeomUtils/src/convex/GuShapeConvex.h"; sourceTree = SOURCE_ROOT; }; - FFFD110193787fe811019378 /* src/distance/GuDistancePointBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.h"; path = "../../GeomUtils/src/distance/GuDistancePointBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD110193e07fe8110193e0 /* src/distance/GuDistancePointSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointSegment.h"; path = "../../GeomUtils/src/distance/GuDistancePointSegment.h"; sourceTree = SOURCE_ROOT; }; - FFFD110194487fe811019448 /* src/distance/GuDistancePointTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFD110194b07fe8110194b0 /* src/distance/GuDistancePointTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangleSIMD.h"; sourceTree = SOURCE_ROOT; }; - FFFD110195187fe811019518 /* src/distance/GuDistanceSegmentSegmentSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegmentSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegmentSIMD.h"; sourceTree = SOURCE_ROOT; }; - FFFD110195807fe811019580 /* src/distance/GuDistanceSegmentTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFD110195e87fe8110195e8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangleSIMD.h"; sourceTree = SOURCE_ROOT; }; - FFFD110196507fe811019650 /* src/sweep/GuSweepBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD110196b87fe8110196b8 /* src/sweep/GuSweepBoxSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.h"; sourceTree = SOURCE_ROOT; }; - FFFD110197207fe811019720 /* src/sweep/GuSweepBoxTriangle_FeatureBased.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxTriangle_FeatureBased.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxTriangle_FeatureBased.h"; sourceTree = SOURCE_ROOT; }; - FFFD110197887fe811019788 /* src/sweep/GuSweepBoxTriangle_SAT.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxTriangle_SAT.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxTriangle_SAT.h"; sourceTree = SOURCE_ROOT; }; - FFFD110197f07fe8110197f0 /* src/sweep/GuSweepCapsuleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD110198587fe811019858 /* src/sweep/GuSweepCapsuleCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFD110198c07fe8110198c0 /* src/sweep/GuSweepCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFD110199287fe811019928 /* src/sweep/GuSweepSphereCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFD110199907fe811019990 /* src/sweep/GuSweepSphereSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.h"; sourceTree = SOURCE_ROOT; }; - FFFD110199f87fe8110199f8 /* src/sweep/GuSweepSphereTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFD11019a607fe811019a60 /* src/sweep/GuSweepTriangleUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.h"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD11019ac87fe811019ac8 /* src/gjk/GuEPA.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.h"; path = "../../GeomUtils/src/gjk/GuEPA.h"; sourceTree = SOURCE_ROOT; }; - FFFD11019b307fe811019b30 /* src/gjk/GuEPAFacet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPAFacet.h"; path = "../../GeomUtils/src/gjk/GuEPAFacet.h"; sourceTree = SOURCE_ROOT; }; - FFFD11019b987fe811019b98 /* src/gjk/GuGJK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJK.h"; path = "../../GeomUtils/src/gjk/GuGJK.h"; sourceTree = SOURCE_ROOT; }; - FFFD11019c007fe811019c00 /* src/gjk/GuGJKPenetration.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKPenetration.h"; path = "../../GeomUtils/src/gjk/GuGJKPenetration.h"; sourceTree = SOURCE_ROOT; }; - FFFD11019c687fe811019c68 /* src/gjk/GuGJKRaycast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKRaycast.h"; path = "../../GeomUtils/src/gjk/GuGJKRaycast.h"; sourceTree = SOURCE_ROOT; }; - FFFD11019cd07fe811019cd0 /* src/gjk/GuGJKSimplex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.h"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.h"; sourceTree = SOURCE_ROOT; }; - FFFD11019d387fe811019d38 /* src/gjk/GuGJKTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.h"; path = "../../GeomUtils/src/gjk/GuGJKTest.h"; sourceTree = SOURCE_ROOT; }; - FFFD11019da07fe811019da0 /* src/gjk/GuGJKType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKType.h"; path = "../../GeomUtils/src/gjk/GuGJKType.h"; sourceTree = SOURCE_ROOT; }; - FFFD11019e087fe811019e08 /* src/gjk/GuGJKUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKUtil.h"; path = "../../GeomUtils/src/gjk/GuGJKUtil.h"; sourceTree = SOURCE_ROOT; }; - FFFD11019e707fe811019e70 /* src/gjk/GuVecBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecBox.h"; path = "../../GeomUtils/src/gjk/GuVecBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD11019ed87fe811019ed8 /* src/gjk/GuVecCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecCapsule.h"; path = "../../GeomUtils/src/gjk/GuVecCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFD11019f407fe811019f40 /* src/gjk/GuVecConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvex.h"; path = "../../GeomUtils/src/gjk/GuVecConvex.h"; sourceTree = SOURCE_ROOT; }; - FFFD11019fa87fe811019fa8 /* src/gjk/GuVecConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHull.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101a0107fe81101a010 /* src/gjk/GuVecConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101a0787fe81101a078 /* src/gjk/GuVecPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecPlane.h"; path = "../../GeomUtils/src/gjk/GuVecPlane.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101a0e07fe81101a0e0 /* src/gjk/GuVecShrunkBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkBox.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101a1487fe81101a148 /* src/gjk/GuVecShrunkConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHull.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101a1b07fe81101a1b0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101a2187fe81101a218 /* src/gjk/GuVecSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecSphere.h"; path = "../../GeomUtils/src/gjk/GuVecSphere.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101a2807fe81101a280 /* src/gjk/GuVecTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecTriangle.h"; path = "../../GeomUtils/src/gjk/GuVecTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101a2e87fe81101a2e8 /* src/intersection/GuIntersectionCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101a3507fe81101a350 /* src/intersection/GuIntersectionEdgeEdge.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.h"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101a3b87fe81101a3b8 /* src/intersection/GuIntersectionRay.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRay.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRay.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101a4207fe81101a420 /* src/intersection/GuIntersectionRayBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101a4887fe81101a488 /* src/intersection/GuIntersectionRayBoxSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBoxSIMD.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBoxSIMD.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101a4f07fe81101a4f0 /* src/intersection/GuIntersectionRayCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101a5587fe81101a558 /* src/intersection/GuIntersectionRayPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayPlane.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayPlane.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101a5c07fe81101a5c0 /* src/intersection/GuIntersectionRaySphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101a6287fe81101a628 /* src/intersection/GuIntersectionRayTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101a6907fe81101a690 /* src/intersection/GuIntersectionSphereBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101a6f87fe81101a6f8 /* src/mesh/GuBV32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.h"; path = "../../GeomUtils/src/mesh/GuBV32.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101a7607fe81101a760 /* src/mesh/GuBV32Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.h"; path = "../../GeomUtils/src/mesh/GuBV32Build.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101a7c87fe81101a7c8 /* src/mesh/GuBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.h"; path = "../../GeomUtils/src/mesh/GuBV4.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101a8307fe81101a830 /* src/mesh/GuBV4Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.h"; path = "../../GeomUtils/src/mesh/GuBV4Build.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101a8987fe81101a898 /* src/mesh/GuBV4Settings.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Settings.h"; path = "../../GeomUtils/src/mesh/GuBV4Settings.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101a9007fe81101a900 /* src/mesh/GuBV4_AABBAABBSweepTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_AABBAABBSweepTest.h"; path = "../../GeomUtils/src/mesh/GuBV4_AABBAABBSweepTest.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101a9687fe81101a968 /* src/mesh/GuBV4_BoxBoxOverlapTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxBoxOverlapTest.h"; path = "../../GeomUtils/src/mesh/GuBV4_BoxBoxOverlapTest.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101a9d07fe81101a9d0 /* src/mesh/GuBV4_BoxOverlap_Internal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxOverlap_Internal.h"; path = "../../GeomUtils/src/mesh/GuBV4_BoxOverlap_Internal.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101aa387fe81101aa38 /* src/mesh/GuBV4_BoxSweep_Internal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxSweep_Internal.h"; path = "../../GeomUtils/src/mesh/GuBV4_BoxSweep_Internal.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101aaa07fe81101aaa0 /* src/mesh/GuBV4_BoxSweep_Params.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxSweep_Params.h"; path = "../../GeomUtils/src/mesh/GuBV4_BoxSweep_Params.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101ab087fe81101ab08 /* src/mesh/GuBV4_CapsuleSweep_Internal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_CapsuleSweep_Internal.h"; path = "../../GeomUtils/src/mesh/GuBV4_CapsuleSweep_Internal.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101ab707fe81101ab70 /* src/mesh/GuBV4_Common.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Common.h"; path = "../../GeomUtils/src/mesh/GuBV4_Common.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101abd87fe81101abd8 /* src/mesh/GuBV4_Internal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Internal.h"; path = "../../GeomUtils/src/mesh/GuBV4_Internal.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101ac407fe81101ac40 /* src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101aca87fe81101aca8 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101ad107fe81101ad10 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101ad787fe81101ad78 /* src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101ade07fe81101ade0 /* src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101ae487fe81101ae48 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101aeb07fe81101aeb0 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h"; path = "../../GeomUtils/src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101af187fe81101af18 /* src/mesh/GuBV4_Slabs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101af807fe81101af80 /* src/mesh/GuBV4_Slabs_KajiyaNoOrder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs_KajiyaNoOrder.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs_KajiyaNoOrder.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101afe87fe81101afe8 /* src/mesh/GuBV4_Slabs_KajiyaOrdered.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs_KajiyaOrdered.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs_KajiyaOrdered.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101b0507fe81101b050 /* src/mesh/GuBV4_Slabs_SwizzledNoOrder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs_SwizzledNoOrder.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs_SwizzledNoOrder.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101b0b87fe81101b0b8 /* src/mesh/GuBV4_Slabs_SwizzledOrdered.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Slabs_SwizzledOrdered.h"; path = "../../GeomUtils/src/mesh/GuBV4_Slabs_SwizzledOrdered.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101b1207fe81101b120 /* src/mesh/GuBVConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBVConstants.h"; path = "../../GeomUtils/src/mesh/GuBVConstants.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101b1887fe81101b188 /* src/mesh/GuMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshData.h"; path = "../../GeomUtils/src/mesh/GuMeshData.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101b1f07fe81101b1f0 /* src/mesh/GuMidphaseInterface.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseInterface.h"; path = "../../GeomUtils/src/mesh/GuMidphaseInterface.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101b2587fe81101b258 /* src/mesh/GuRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.h"; path = "../../GeomUtils/src/mesh/GuRTree.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101b2c07fe81101b2c0 /* src/mesh/GuSweepConvexTri.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepConvexTri.h"; path = "../../GeomUtils/src/mesh/GuSweepConvexTri.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101b3287fe81101b328 /* src/mesh/GuSweepMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepMesh.h"; path = "../../GeomUtils/src/mesh/GuSweepMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101b3907fe81101b390 /* src/mesh/GuTriangle32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangle32.h"; path = "../../GeomUtils/src/mesh/GuTriangle32.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101b3f87fe81101b3f8 /* src/mesh/GuTriangleCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleCache.h"; path = "../../GeomUtils/src/mesh/GuTriangleCache.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101b4607fe81101b460 /* src/mesh/GuTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.h"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101b4c87fe81101b4c8 /* src/mesh/GuTriangleMeshBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101b5307fe81101b530 /* src/mesh/GuTriangleMeshRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101b5987fe81101b598 /* src/mesh/GuTriangleVertexPointers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleVertexPointers.h"; path = "../../GeomUtils/src/mesh/GuTriangleVertexPointers.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101b6007fe81101b600 /* src/hf/GuEntityReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuEntityReport.h"; path = "../../GeomUtils/src/hf/GuEntityReport.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101b6687fe81101b668 /* src/hf/GuHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.h"; path = "../../GeomUtils/src/hf/GuHeightField.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101b6d07fe81101b6d0 /* src/hf/GuHeightFieldData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldData.h"; path = "../../GeomUtils/src/hf/GuHeightFieldData.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101b7387fe81101b738 /* src/hf/GuHeightFieldUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.h"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101b7a07fe81101b7a0 /* src/pcm/GuPCMContactConvexCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.h"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101b8087fe81101b808 /* src/pcm/GuPCMContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGen.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101b8707fe81101b870 /* src/pcm/GuPCMContactGenUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenUtil.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGenUtil.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101b8d87fe81101b8d8 /* src/pcm/GuPCMContactMeshCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactMeshCallback.h"; path = "../../GeomUtils/src/pcm/GuPCMContactMeshCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101b9407fe81101b940 /* src/pcm/GuPCMShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.h"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101b9a87fe81101b9a8 /* src/pcm/GuPCMTriangleContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101ba107fe81101ba10 /* src/pcm/GuPersistentContactManifold.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.h"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101ba787fe81101ba78 /* src/ccd/GuCCDSweepConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.h"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFD1101bae07fe81101bae0 /* src/GuBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.cpp"; path = "../../GeomUtils/src/GuBounds.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101bb487fe81101bb48 /* src/GuBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBox.cpp"; path = "../../GeomUtils/src/GuBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101bbb07fe81101bbb0 /* src/GuCCTSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCCTSweepTests.cpp"; path = "../../GeomUtils/src/GuCCTSweepTests.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101bc187fe81101bc18 /* src/GuCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.cpp"; path = "../../GeomUtils/src/GuCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101bc807fe81101bc80 /* src/GuGeometryQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryQuery.cpp"; path = "../../GeomUtils/src/GuGeometryQuery.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101bce87fe81101bce8 /* src/GuGeometryUnion.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.cpp"; path = "../../GeomUtils/src/GuGeometryUnion.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101bd507fe81101bd50 /* src/GuInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.cpp"; path = "../../GeomUtils/src/GuInternal.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101bdb87fe81101bdb8 /* src/GuMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.cpp"; path = "../../GeomUtils/src/GuMTD.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101be207fe81101be20 /* src/GuMeshFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.cpp"; path = "../../GeomUtils/src/GuMeshFactory.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101be887fe81101be88 /* src/GuMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMetaData.cpp"; path = "../../GeomUtils/src/GuMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101bef07fe81101bef0 /* src/GuOverlapTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.cpp"; path = "../../GeomUtils/src/GuOverlapTests.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101bf587fe81101bf58 /* src/GuRaycastTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuRaycastTests.cpp"; path = "../../GeomUtils/src/GuRaycastTests.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101bfc07fe81101bfc0 /* src/GuSerialize.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.cpp"; path = "../../GeomUtils/src/GuSerialize.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101c0287fe81101c028 /* src/GuSweepMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.cpp"; path = "../../GeomUtils/src/GuSweepMTD.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101c0907fe81101c090 /* src/GuSweepSharedTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.cpp"; path = "../../GeomUtils/src/GuSweepSharedTests.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101c0f87fe81101c0f8 /* src/GuSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.cpp"; path = "../../GeomUtils/src/GuSweepTests.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101c1607fe81101c160 /* src/contact/GuContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactBoxBox.cpp"; path = "../../GeomUtils/src/contact/GuContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101c1c87fe81101c1c8 /* src/contact/GuContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleBox.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101c2307fe81101c230 /* src/contact/GuContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101c2987fe81101c298 /* src/contact/GuContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101c3007fe81101c300 /* src/contact/GuContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101c3687fe81101c368 /* src/contact/GuContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101c3d07fe81101c3d0 /* src/contact/GuContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101c4387fe81101c438 /* src/contact/GuContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneBox.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101c4a07fe81101c4a0 /* src/contact/GuContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101c5087fe81101c508 /* src/contact/GuContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101c5707fe81101c570 /* src/contact/GuContactPolygonPolygon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.cpp"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101c5d87fe81101c5d8 /* src/contact/GuContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereBox.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101c6407fe81101c640 /* src/contact/GuContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101c6a87fe81101c6a8 /* src/contact/GuContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101c7107fe81101c710 /* src/contact/GuContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSpherePlane.cpp"; path = "../../GeomUtils/src/contact/GuContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101c7787fe81101c778 /* src/contact/GuContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereSphere.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101c7e07fe81101c7e0 /* src/contact/GuFeatureCode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.cpp"; path = "../../GeomUtils/src/contact/GuFeatureCode.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101c8487fe81101c848 /* src/contact/GuLegacyContactBoxHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactBoxHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactBoxHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101c8b07fe81101c8b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101c9187fe81101c918 /* src/contact/GuLegacyContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactConvexHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101c9807fe81101c980 /* src/contact/GuLegacyContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactSphereHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101c9e87fe81101c9e8 /* src/common/GuBarycentricCoordinates.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.cpp"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101ca507fe81101ca50 /* src/common/GuSeparatingAxes.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.cpp"; path = "../../GeomUtils/src/common/GuSeparatingAxes.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101cab87fe81101cab8 /* src/convex/GuBigConvexData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.cpp"; path = "../../GeomUtils/src/convex/GuBigConvexData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101cb207fe81101cb20 /* src/convex/GuConvexHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.cpp"; path = "../../GeomUtils/src/convex/GuConvexHelper.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101cb887fe81101cb88 /* src/convex/GuConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.cpp"; path = "../../GeomUtils/src/convex/GuConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101cbf07fe81101cbf0 /* src/convex/GuConvexSupportTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.cpp"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101cc587fe81101cc58 /* src/convex/GuConvexUtilsInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.cpp"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101ccc07fe81101ccc0 /* src/convex/GuHillClimbing.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.cpp"; path = "../../GeomUtils/src/convex/GuHillClimbing.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101cd287fe81101cd28 /* src/convex/GuShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.cpp"; path = "../../GeomUtils/src/convex/GuShapeConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101cd907fe81101cd90 /* src/distance/GuDistancePointBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101cdf87fe81101cdf8 /* src/distance/GuDistancePointTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101ce607fe81101ce60 /* src/distance/GuDistanceSegmentBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentBox.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101cec87fe81101cec8 /* src/distance/GuDistanceSegmentSegment.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegment.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegment.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101cf307fe81101cf30 /* src/distance/GuDistanceSegmentTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101cf987fe81101cf98 /* src/sweep/GuSweepBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101d0007fe81101d000 /* src/sweep/GuSweepBoxSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101d0687fe81101d068 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxTriangle_FeatureBased.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxTriangle_FeatureBased.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101d0d07fe81101d0d0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxTriangle_SAT.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxTriangle_SAT.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101d1387fe81101d138 /* src/sweep/GuSweepCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101d1a07fe81101d1a0 /* src/sweep/GuSweepCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101d2087fe81101d208 /* src/sweep/GuSweepCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101d2707fe81101d270 /* src/sweep/GuSweepSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101d2d87fe81101d2d8 /* src/sweep/GuSweepSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101d3407fe81101d340 /* src/sweep/GuSweepSphereTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101d3a87fe81101d3a8 /* src/sweep/GuSweepTriangleUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.cpp"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101d4107fe81101d410 /* src/gjk/GuEPA.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.cpp"; path = "../../GeomUtils/src/gjk/GuEPA.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101d4787fe81101d478 /* src/gjk/GuGJKSimplex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.cpp"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101d4e07fe81101d4e0 /* src/gjk/GuGJKTest.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.cpp"; path = "../../GeomUtils/src/gjk/GuGJKTest.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101d5487fe81101d548 /* src/intersection/GuIntersectionBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionBoxBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101d5b07fe81101d5b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101d6187fe81101d618 /* src/intersection/GuIntersectionEdgeEdge.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101d6807fe81101d680 /* src/intersection/GuIntersectionRayBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101d6e87fe81101d6e8 /* src/intersection/GuIntersectionRayCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101d7507fe81101d750 /* src/intersection/GuIntersectionRaySphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101d7b87fe81101d7b8 /* src/intersection/GuIntersectionSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101d8207fe81101d820 /* src/intersection/GuIntersectionTriangleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionTriangleBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionTriangleBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101d8887fe81101d888 /* src/mesh/GuBV32.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.cpp"; path = "../../GeomUtils/src/mesh/GuBV32.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101d8f07fe81101d8f0 /* src/mesh/GuBV32Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV32Build.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101d9587fe81101d958 /* src/mesh/GuBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.cpp"; path = "../../GeomUtils/src/mesh/GuBV4.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101d9c07fe81101d9c0 /* src/mesh/GuBV4Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV4Build.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101da287fe81101da28 /* src/mesh/GuBV4_AABBSweep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_AABBSweep.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_AABBSweep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101da907fe81101da90 /* src/mesh/GuBV4_BoxOverlap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_BoxOverlap.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_BoxOverlap.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101daf87fe81101daf8 /* src/mesh/GuBV4_CapsuleSweep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_CapsuleSweep.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_CapsuleSweep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101db607fe81101db60 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_CapsuleSweepAA.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_CapsuleSweepAA.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101dbc87fe81101dbc8 /* src/mesh/GuBV4_OBBSweep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_OBBSweep.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_OBBSweep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101dc307fe81101dc30 /* src/mesh/GuBV4_Raycast.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_Raycast.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_Raycast.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101dc987fe81101dc98 /* src/mesh/GuBV4_SphereOverlap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_SphereOverlap.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_SphereOverlap.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101dd007fe81101dd00 /* src/mesh/GuBV4_SphereSweep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4_SphereSweep.cpp"; path = "../../GeomUtils/src/mesh/GuBV4_SphereSweep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101dd687fe81101dd68 /* src/mesh/GuMeshQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshQuery.cpp"; path = "../../GeomUtils/src/mesh/GuMeshQuery.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101ddd07fe81101ddd0 /* src/mesh/GuMidphaseBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseBV4.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseBV4.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101de387fe81101de38 /* src/mesh/GuMidphaseRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseRTree.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseRTree.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101dea07fe81101dea0 /* src/mesh/GuOverlapTestsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuOverlapTestsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuOverlapTestsMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101df087fe81101df08 /* src/mesh/GuRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.cpp"; path = "../../GeomUtils/src/mesh/GuRTree.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101df707fe81101df70 /* src/mesh/GuRTreeQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTreeQueries.cpp"; path = "../../GeomUtils/src/mesh/GuRTreeQueries.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101dfd87fe81101dfd8 /* src/mesh/GuSweepsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuSweepsMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101e0407fe81101e040 /* src/mesh/GuTriangleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101e0a87fe81101e0a8 /* src/mesh/GuTriangleMeshBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101e1107fe81101e110 /* src/mesh/GuTriangleMeshRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101e1787fe81101e178 /* src/hf/GuHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.cpp"; path = "../../GeomUtils/src/hf/GuHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101e1e07fe81101e1e0 /* src/hf/GuHeightFieldUtil.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.cpp"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101e2487fe81101e248 /* src/hf/GuOverlapTestsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuOverlapTestsHF.cpp"; path = "../../GeomUtils/src/hf/GuOverlapTestsHF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101e2b07fe81101e2b0 /* src/hf/GuSweepsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuSweepsHF.cpp"; path = "../../GeomUtils/src/hf/GuSweepsHF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101e3187fe81101e318 /* src/pcm/GuPCMContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101e3807fe81101e380 /* src/pcm/GuPCMContactBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101e3e87fe81101e3e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101e4507fe81101e450 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101e4b87fe81101e4b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101e5207fe81101e520 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101e5887fe81101e588 /* src/pcm/GuPCMContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101e5f07fe81101e5f0 /* src/pcm/GuPCMContactConvexCommon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101e6587fe81101e658 /* src/pcm/GuPCMContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101e6c07fe81101e6c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101e7287fe81101e728 /* src/pcm/GuPCMContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101e7907fe81101e790 /* src/pcm/GuPCMContactGenBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenBoxConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101e7f87fe81101e7f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101e8607fe81101e860 /* src/pcm/GuPCMContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101e8c87fe81101e8c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101e9307fe81101e930 /* src/pcm/GuPCMContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101e9987fe81101e998 /* src/pcm/GuPCMContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101ea007fe81101ea00 /* src/pcm/GuPCMContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101ea687fe81101ea68 /* src/pcm/GuPCMContactSphereConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101ead07fe81101ead0 /* src/pcm/GuPCMContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101eb387fe81101eb38 /* src/pcm/GuPCMContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101eba07fe81101eba0 /* src/pcm/GuPCMContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSpherePlane.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101ec087fe81101ec08 /* src/pcm/GuPCMContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereSphere.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101ec707fe81101ec70 /* src/pcm/GuPCMShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101ecd87fe81101ecd8 /* src/pcm/GuPCMTriangleContactGen.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.cpp"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101ed407fe81101ed40 /* src/pcm/GuPersistentContactManifold.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.cpp"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101eda87fe81101eda8 /* src/ccd/GuCCDSweepConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.cpp"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD1101ee107fe81101ee10 /* src/ccd/GuCCDSweepPrimitives.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepPrimitives.cpp"; path = "../../GeomUtils/src/ccd/GuCCDSweepPrimitives.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4389f1b07f8c4389f1b0 /* PhysXCommon */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCommon"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD4400ec007f8c4400ec00 /* common/PxBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxBase.h"; path = "../../../Include/common/PxBase.h"; sourceTree = SOURCE_ROOT; }; + FFFD4400ec687f8c4400ec68 /* common/PxCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCollection.h"; path = "../../../Include/common/PxCollection.h"; sourceTree = SOURCE_ROOT; }; + FFFD4400ecd07f8c4400ecd0 /* common/PxCoreUtilityTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCoreUtilityTypes.h"; path = "../../../Include/common/PxCoreUtilityTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD4400ed387f8c4400ed38 /* common/PxMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaData.h"; path = "../../../Include/common/PxMetaData.h"; sourceTree = SOURCE_ROOT; }; + FFFD4400eda07f8c4400eda0 /* common/PxMetaDataFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaDataFlags.h"; path = "../../../Include/common/PxMetaDataFlags.h"; sourceTree = SOURCE_ROOT; }; + FFFD4400ee087f8c4400ee08 /* common/PxPhysXCommonConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysXCommonConfig.h"; path = "../../../Include/common/PxPhysXCommonConfig.h"; sourceTree = SOURCE_ROOT; }; + FFFD4400ee707f8c4400ee70 /* common/PxPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysicsInsertionCallback.h"; path = "../../../Include/common/PxPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFD4400eed87f8c4400eed8 /* common/PxRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxRenderBuffer.h"; path = "../../../Include/common/PxRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD4400ef407f8c4400ef40 /* common/PxSerialFramework.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerialFramework.h"; path = "../../../Include/common/PxSerialFramework.h"; sourceTree = SOURCE_ROOT; }; + FFFD4400efa87f8c4400efa8 /* common/PxSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerializer.h"; path = "../../../Include/common/PxSerializer.h"; sourceTree = SOURCE_ROOT; }; + FFFD4400f0107f8c4400f010 /* common/PxStringTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxStringTable.h"; path = "../../../Include/common/PxStringTable.h"; sourceTree = SOURCE_ROOT; }; + FFFD4400f0787f8c4400f078 /* common/PxTolerancesScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTolerancesScale.h"; path = "../../../Include/common/PxTolerancesScale.h"; sourceTree = SOURCE_ROOT; }; + FFFD4400f0e07f8c4400f0e0 /* common/PxTypeInfo.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTypeInfo.h"; path = "../../../Include/common/PxTypeInfo.h"; sourceTree = SOURCE_ROOT; }; + FFFD4400f1487f8c4400f148 /* geometry/PxBoxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxBoxGeometry.h"; path = "../../../Include/geometry/PxBoxGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFD4400f1b07f8c4400f1b0 /* geometry/PxCapsuleGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxCapsuleGeometry.h"; path = "../../../Include/geometry/PxCapsuleGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFD4400f2187f8c4400f218 /* geometry/PxConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMesh.h"; path = "../../../Include/geometry/PxConvexMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFD4400f2807f8c4400f280 /* geometry/PxConvexMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMeshGeometry.h"; path = "../../../Include/geometry/PxConvexMeshGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFD4400f2e87f8c4400f2e8 /* geometry/PxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometry.h"; path = "../../../Include/geometry/PxGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFD4400f3507f8c4400f350 /* geometry/PxGeometryHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryHelpers.h"; path = "../../../Include/geometry/PxGeometryHelpers.h"; sourceTree = SOURCE_ROOT; }; + FFFD4400f3b87f8c4400f3b8 /* geometry/PxGeometryQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryQuery.h"; path = "../../../Include/geometry/PxGeometryQuery.h"; sourceTree = SOURCE_ROOT; }; + FFFD4400f4207f8c4400f420 /* geometry/PxHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightField.h"; path = "../../../Include/geometry/PxHeightField.h"; sourceTree = SOURCE_ROOT; }; + FFFD4400f4887f8c4400f488 /* geometry/PxHeightFieldDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldDesc.h"; path = "../../../Include/geometry/PxHeightFieldDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD4400f4f07f8c4400f4f0 /* geometry/PxHeightFieldFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldFlag.h"; path = "../../../Include/geometry/PxHeightFieldFlag.h"; sourceTree = SOURCE_ROOT; }; + FFFD4400f5587f8c4400f558 /* geometry/PxHeightFieldGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldGeometry.h"; path = "../../../Include/geometry/PxHeightFieldGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFD4400f5c07f8c4400f5c0 /* geometry/PxHeightFieldSample.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldSample.h"; path = "../../../Include/geometry/PxHeightFieldSample.h"; sourceTree = SOURCE_ROOT; }; + FFFD4400f6287f8c4400f628 /* geometry/PxMeshQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshQuery.h"; path = "../../../Include/geometry/PxMeshQuery.h"; sourceTree = SOURCE_ROOT; }; + FFFD4400f6907f8c4400f690 /* geometry/PxMeshScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshScale.h"; path = "../../../Include/geometry/PxMeshScale.h"; sourceTree = SOURCE_ROOT; }; + FFFD4400f6f87f8c4400f6f8 /* geometry/PxPlaneGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxPlaneGeometry.h"; path = "../../../Include/geometry/PxPlaneGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFD4400f7607f8c4400f760 /* geometry/PxSimpleTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSimpleTriangleMesh.h"; path = "../../../Include/geometry/PxSimpleTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFD4400f7c87f8c4400f7c8 /* geometry/PxSphereGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSphereGeometry.h"; path = "../../../Include/geometry/PxSphereGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFD4400f8307f8c4400f830 /* geometry/PxTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangle.h"; path = "../../../Include/geometry/PxTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFD4400f8987f8c4400f898 /* geometry/PxTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMesh.h"; path = "../../../Include/geometry/PxTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFD4400f9007f8c4400f900 /* geometry/PxTriangleMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMeshGeometry.h"; path = "../../../Include/geometry/PxTriangleMeshGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFD4319f4007f8c4319f400 /* src/CmBoxPruning.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.cpp"; path = "../../Common/src/CmBoxPruning.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4319f4687f8c4319f468 /* src/CmCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.cpp"; path = "../../Common/src/CmCollection.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4319f4d07f8c4319f4d0 /* src/CmMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMathUtils.cpp"; path = "../../Common/src/CmMathUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4319f5387f8c4319f538 /* src/CmPtrTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.cpp"; path = "../../Common/src/CmPtrTable.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4319f5a07f8c4319f5a0 /* src/CmRadixSort.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.cpp"; path = "../../Common/src/CmRadixSort.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4319f6087f8c4319f608 /* src/CmRadixSortBuffered.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.cpp"; path = "../../Common/src/CmRadixSortBuffered.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4319f6707f8c4319f670 /* src/CmRenderOutput.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.cpp"; path = "../../Common/src/CmRenderOutput.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4319f6d87f8c4319f6d8 /* src/CmVisualization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.cpp"; path = "../../Common/src/CmVisualization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4319f7407f8c4319f740 /* src/CmBitMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBitMap.h"; path = "../../Common/src/CmBitMap.h"; sourceTree = SOURCE_ROOT; }; + FFFD4319f7a87f8c4319f7a8 /* src/CmBoxPruning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.h"; path = "../../Common/src/CmBoxPruning.h"; sourceTree = SOURCE_ROOT; }; + FFFD4319f8107f8c4319f810 /* src/CmCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.h"; path = "../../Common/src/CmCollection.h"; sourceTree = SOURCE_ROOT; }; + FFFD4319f8787f8c4319f878 /* src/CmConeLimitHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmConeLimitHelper.h"; path = "../../Common/src/CmConeLimitHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFD4319f8e07f8c4319f8e0 /* src/CmFlushPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmFlushPool.h"; path = "../../Common/src/CmFlushPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD4319f9487f8c4319f948 /* src/CmIDPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIDPool.h"; path = "../../Common/src/CmIDPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD4319f9b07f8c4319f9b0 /* src/CmIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIO.h"; path = "../../Common/src/CmIO.h"; sourceTree = SOURCE_ROOT; }; + FFFD4319fa187f8c4319fa18 /* src/CmMatrix34.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMatrix34.h"; path = "../../Common/src/CmMatrix34.h"; sourceTree = SOURCE_ROOT; }; + FFFD4319fa807f8c4319fa80 /* src/CmPhysXCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPhysXCommon.h"; path = "../../Common/src/CmPhysXCommon.h"; sourceTree = SOURCE_ROOT; }; + FFFD4319fae87f8c4319fae8 /* src/CmPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPool.h"; path = "../../Common/src/CmPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD4319fb507f8c4319fb50 /* src/CmPreallocatingPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPreallocatingPool.h"; path = "../../Common/src/CmPreallocatingPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD4319fbb87f8c4319fbb8 /* src/CmPriorityQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPriorityQueue.h"; path = "../../Common/src/CmPriorityQueue.h"; sourceTree = SOURCE_ROOT; }; + FFFD4319fc207f8c4319fc20 /* src/CmPtrTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.h"; path = "../../Common/src/CmPtrTable.h"; sourceTree = SOURCE_ROOT; }; + FFFD4319fc887f8c4319fc88 /* src/CmQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmQueue.h"; path = "../../Common/src/CmQueue.h"; sourceTree = SOURCE_ROOT; }; + FFFD4319fcf07f8c4319fcf0 /* src/CmRadixSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.h"; path = "../../Common/src/CmRadixSort.h"; sourceTree = SOURCE_ROOT; }; + FFFD4319fd587f8c4319fd58 /* src/CmRadixSortBuffered.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.h"; path = "../../Common/src/CmRadixSortBuffered.h"; sourceTree = SOURCE_ROOT; }; + FFFD4319fdc07f8c4319fdc0 /* src/CmReaderWriterLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmReaderWriterLock.h"; path = "../../Common/src/CmReaderWriterLock.h"; sourceTree = SOURCE_ROOT; }; + FFFD4319fe287f8c4319fe28 /* src/CmRefCountable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRefCountable.h"; path = "../../Common/src/CmRefCountable.h"; sourceTree = SOURCE_ROOT; }; + FFFD4319fe907f8c4319fe90 /* src/CmRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderBuffer.h"; path = "../../Common/src/CmRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD4319fef87f8c4319fef8 /* src/CmRenderOutput.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.h"; path = "../../Common/src/CmRenderOutput.h"; sourceTree = SOURCE_ROOT; }; + FFFD4319ff607f8c4319ff60 /* src/CmScaling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmScaling.h"; path = "../../Common/src/CmScaling.h"; sourceTree = SOURCE_ROOT; }; + FFFD4319ffc87f8c4319ffc8 /* src/CmSpatialVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmSpatialVector.h"; path = "../../Common/src/CmSpatialVector.h"; sourceTree = SOURCE_ROOT; }; + FFFD431a00307f8c431a0030 /* src/CmTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTask.h"; path = "../../Common/src/CmTask.h"; sourceTree = SOURCE_ROOT; }; + FFFD431a00987f8c431a0098 /* src/CmTaskPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTaskPool.h"; path = "../../Common/src/CmTaskPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD431a01007f8c431a0100 /* src/CmTmpMem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTmpMem.h"; path = "../../Common/src/CmTmpMem.h"; sourceTree = SOURCE_ROOT; }; + FFFD431a01687f8c431a0168 /* src/CmTransformUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTransformUtils.h"; path = "../../Common/src/CmTransformUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD431a01d07f8c431a01d0 /* src/CmUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmUtils.h"; path = "../../Common/src/CmUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD431a02387f8c431a0238 /* src/CmVisualization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.h"; path = "../../Common/src/CmVisualization.h"; sourceTree = SOURCE_ROOT; }; + FFFD440010007f8c44001000 /* headers/GuAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuAxes.h"; path = "../../GeomUtils/headers/GuAxes.h"; sourceTree = SOURCE_ROOT; }; + FFFD440010687f8c44001068 /* headers/GuBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuBox.h"; path = "../../GeomUtils/headers/GuBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD440010d07f8c440010d0 /* headers/GuDistanceSegmentBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentBox.h"; path = "../../GeomUtils/headers/GuDistanceSegmentBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD440011387f8c44001138 /* headers/GuDistanceSegmentSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentSegment.h"; path = "../../GeomUtils/headers/GuDistanceSegmentSegment.h"; sourceTree = SOURCE_ROOT; }; + FFFD440011a07f8c440011a0 /* headers/GuIntersectionBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionBoxBox.h"; path = "../../GeomUtils/headers/GuIntersectionBoxBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD440012087f8c44001208 /* headers/GuIntersectionTriangleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionTriangleBox.h"; path = "../../GeomUtils/headers/GuIntersectionTriangleBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD440012707f8c44001270 /* headers/GuRaycastTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuRaycastTests.h"; path = "../../GeomUtils/headers/GuRaycastTests.h"; sourceTree = SOURCE_ROOT; }; + FFFD440012d87f8c440012d8 /* headers/GuSIMDHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSIMDHelpers.h"; path = "../../GeomUtils/headers/GuSIMDHelpers.h"; sourceTree = SOURCE_ROOT; }; + FFFD440013407f8c44001340 /* headers/GuSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSegment.h"; path = "../../GeomUtils/headers/GuSegment.h"; sourceTree = SOURCE_ROOT; }; + FFFD440013a87f8c440013a8 /* ../../Include/GeomUtils */= { isa = PBXFileReference; fileEncoding = 4; name = "../../Include/GeomUtils"; path = "../../../Include/GeomUtils"; sourceTree = SOURCE_ROOT; }; + FFFD440014107f8c44001410 /* src/GuBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.h"; path = "../../GeomUtils/src/GuBounds.h"; sourceTree = SOURCE_ROOT; }; + FFFD440014787f8c44001478 /* src/GuCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.h"; path = "../../GeomUtils/src/GuCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFD440014e07f8c440014e0 /* src/GuCenterExtents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCenterExtents.h"; path = "../../GeomUtils/src/GuCenterExtents.h"; sourceTree = SOURCE_ROOT; }; + FFFD440015487f8c44001548 /* src/GuGeometryUnion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.h"; path = "../../GeomUtils/src/GuGeometryUnion.h"; sourceTree = SOURCE_ROOT; }; + FFFD440015b07f8c440015b0 /* src/GuInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.h"; path = "../../GeomUtils/src/GuInternal.h"; sourceTree = SOURCE_ROOT; }; + FFFD440016187f8c44001618 /* src/GuMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.h"; path = "../../GeomUtils/src/GuMTD.h"; sourceTree = SOURCE_ROOT; }; + FFFD440016807f8c44001680 /* src/GuMeshFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.h"; path = "../../GeomUtils/src/GuMeshFactory.h"; sourceTree = SOURCE_ROOT; }; + FFFD440016e87f8c440016e8 /* src/GuOverlapTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.h"; path = "../../GeomUtils/src/GuOverlapTests.h"; sourceTree = SOURCE_ROOT; }; + FFFD440017507f8c44001750 /* src/GuSerialize.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.h"; path = "../../GeomUtils/src/GuSerialize.h"; sourceTree = SOURCE_ROOT; }; + FFFD440017b87f8c440017b8 /* src/GuSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSphere.h"; path = "../../GeomUtils/src/GuSphere.h"; sourceTree = SOURCE_ROOT; }; + FFFD440018207f8c44001820 /* src/GuSweepMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.h"; path = "../../GeomUtils/src/GuSweepMTD.h"; sourceTree = SOURCE_ROOT; }; + FFFD440018887f8c44001888 /* src/GuSweepSharedTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.h"; path = "../../GeomUtils/src/GuSweepSharedTests.h"; sourceTree = SOURCE_ROOT; }; + FFFD440018f07f8c440018f0 /* src/GuSweepTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.h"; path = "../../GeomUtils/src/GuSweepTests.h"; sourceTree = SOURCE_ROOT; }; + FFFD440019587f8c44001958 /* src/contact/GuContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactMethodImpl.h"; path = "../../GeomUtils/src/contact/GuContactMethodImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD440019c07f8c440019c0 /* src/contact/GuContactPolygonPolygon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.h"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.h"; sourceTree = SOURCE_ROOT; }; + FFFD44001a287f8c44001a28 /* src/contact/GuFeatureCode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.h"; path = "../../GeomUtils/src/contact/GuFeatureCode.h"; sourceTree = SOURCE_ROOT; }; + FFFD44001a907f8c44001a90 /* src/contact/GuLegacyTraceLineCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyTraceLineCallback.h"; path = "../../GeomUtils/src/contact/GuLegacyTraceLineCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFD44001af87f8c44001af8 /* src/common/GuBarycentricCoordinates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.h"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.h"; sourceTree = SOURCE_ROOT; }; + FFFD44001b607f8c44001b60 /* src/common/GuBoxConversion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBoxConversion.h"; path = "../../GeomUtils/src/common/GuBoxConversion.h"; sourceTree = SOURCE_ROOT; }; + FFFD44001bc87f8c44001bc8 /* src/common/GuEdgeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeCache.h"; path = "../../GeomUtils/src/common/GuEdgeCache.h"; sourceTree = SOURCE_ROOT; }; + FFFD44001c307f8c44001c30 /* src/common/GuEdgeListData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeListData.h"; path = "../../GeomUtils/src/common/GuEdgeListData.h"; sourceTree = SOURCE_ROOT; }; + FFFD44001c987f8c44001c98 /* src/common/GuSeparatingAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.h"; path = "../../GeomUtils/src/common/GuSeparatingAxes.h"; sourceTree = SOURCE_ROOT; }; + FFFD44001d007f8c44001d00 /* src/convex/GuBigConvexData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.h"; path = "../../GeomUtils/src/convex/GuBigConvexData.h"; sourceTree = SOURCE_ROOT; }; + FFFD44001d687f8c44001d68 /* src/convex/GuBigConvexData2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData2.h"; path = "../../GeomUtils/src/convex/GuBigConvexData2.h"; sourceTree = SOURCE_ROOT; }; + FFFD44001dd07f8c44001dd0 /* src/convex/GuConvexEdgeFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexEdgeFlags.h"; path = "../../GeomUtils/src/convex/GuConvexEdgeFlags.h"; sourceTree = SOURCE_ROOT; }; + FFFD44001e387f8c44001e38 /* src/convex/GuConvexHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.h"; path = "../../GeomUtils/src/convex/GuConvexHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFD44001ea07f8c44001ea0 /* src/convex/GuConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.h"; path = "../../GeomUtils/src/convex/GuConvexMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFD44001f087f8c44001f08 /* src/convex/GuConvexMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMeshData.h"; path = "../../GeomUtils/src/convex/GuConvexMeshData.h"; sourceTree = SOURCE_ROOT; }; + FFFD44001f707f8c44001f70 /* src/convex/GuConvexSupportTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.h"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.h"; sourceTree = SOURCE_ROOT; }; + FFFD44001fd87f8c44001fd8 /* src/convex/GuConvexUtilsInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.h"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.h"; sourceTree = SOURCE_ROOT; }; + FFFD440020407f8c44002040 /* src/convex/GuCubeIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuCubeIndex.h"; path = "../../GeomUtils/src/convex/GuCubeIndex.h"; sourceTree = SOURCE_ROOT; }; + FFFD440020a87f8c440020a8 /* src/convex/GuHillClimbing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.h"; path = "../../GeomUtils/src/convex/GuHillClimbing.h"; sourceTree = SOURCE_ROOT; }; + FFFD440021107f8c44002110 /* src/convex/GuShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.h"; path = "../../GeomUtils/src/convex/GuShapeConvex.h"; sourceTree = SOURCE_ROOT; }; + FFFD440021787f8c44002178 /* src/distance/GuDistancePointBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.h"; path = "../../GeomUtils/src/distance/GuDistancePointBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD440021e07f8c440021e0 /* src/distance/GuDistancePointSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointSegment.h"; path = "../../GeomUtils/src/distance/GuDistancePointSegment.h"; sourceTree = SOURCE_ROOT; }; + FFFD440022487f8c44002248 /* src/distance/GuDistancePointTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFD440022b07f8c440022b0 /* src/distance/GuDistancePointTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangleSIMD.h"; sourceTree = SOURCE_ROOT; }; + FFFD440023187f8c44002318 /* src/distance/GuDistanceSegmentSegmentSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegmentSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegmentSIMD.h"; sourceTree = SOURCE_ROOT; }; + FFFD440023807f8c44002380 /* src/distance/GuDistanceSegmentTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFD440023e87f8c440023e8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangleSIMD.h"; sourceTree = SOURCE_ROOT; }; + FFFD440024507f8c44002450 /* src/sweep/GuSweepBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD440024b87f8c440024b8 /* src/sweep/GuSweepBoxSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.h"; sourceTree = SOURCE_ROOT; }; + FFFD440025207f8c44002520 /* 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; }; + FFFD440025887f8c44002588 /* 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; }; + FFFD440025f07f8c440025f0 /* src/sweep/GuSweepCapsuleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD440026587f8c44002658 /* src/sweep/GuSweepCapsuleCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFD440026c07f8c440026c0 /* src/sweep/GuSweepCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFD440027287f8c44002728 /* src/sweep/GuSweepSphereCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFD440027907f8c44002790 /* src/sweep/GuSweepSphereSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.h"; sourceTree = SOURCE_ROOT; }; + FFFD440027f87f8c440027f8 /* src/sweep/GuSweepSphereTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFD440028607f8c44002860 /* src/sweep/GuSweepTriangleUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.h"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD440028c87f8c440028c8 /* src/gjk/GuEPA.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.h"; path = "../../GeomUtils/src/gjk/GuEPA.h"; sourceTree = SOURCE_ROOT; }; + FFFD440029307f8c44002930 /* src/gjk/GuEPAFacet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPAFacet.h"; path = "../../GeomUtils/src/gjk/GuEPAFacet.h"; sourceTree = SOURCE_ROOT; }; + FFFD440029987f8c44002998 /* src/gjk/GuGJK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJK.h"; path = "../../GeomUtils/src/gjk/GuGJK.h"; sourceTree = SOURCE_ROOT; }; + FFFD44002a007f8c44002a00 /* src/gjk/GuGJKPenetration.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKPenetration.h"; path = "../../GeomUtils/src/gjk/GuGJKPenetration.h"; sourceTree = SOURCE_ROOT; }; + FFFD44002a687f8c44002a68 /* src/gjk/GuGJKRaycast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKRaycast.h"; path = "../../GeomUtils/src/gjk/GuGJKRaycast.h"; sourceTree = SOURCE_ROOT; }; + FFFD44002ad07f8c44002ad0 /* src/gjk/GuGJKSimplex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.h"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.h"; sourceTree = SOURCE_ROOT; }; + FFFD44002b387f8c44002b38 /* src/gjk/GuGJKTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.h"; path = "../../GeomUtils/src/gjk/GuGJKTest.h"; sourceTree = SOURCE_ROOT; }; + FFFD44002ba07f8c44002ba0 /* src/gjk/GuGJKType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKType.h"; path = "../../GeomUtils/src/gjk/GuGJKType.h"; sourceTree = SOURCE_ROOT; }; + FFFD44002c087f8c44002c08 /* src/gjk/GuGJKUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKUtil.h"; path = "../../GeomUtils/src/gjk/GuGJKUtil.h"; sourceTree = SOURCE_ROOT; }; + FFFD44002c707f8c44002c70 /* src/gjk/GuVecBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecBox.h"; path = "../../GeomUtils/src/gjk/GuVecBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD44002cd87f8c44002cd8 /* src/gjk/GuVecCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecCapsule.h"; path = "../../GeomUtils/src/gjk/GuVecCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFD44002d407f8c44002d40 /* src/gjk/GuVecConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvex.h"; path = "../../GeomUtils/src/gjk/GuVecConvex.h"; sourceTree = SOURCE_ROOT; }; + FFFD44002da87f8c44002da8 /* src/gjk/GuVecConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHull.h"; sourceTree = SOURCE_ROOT; }; + FFFD44002e107f8c44002e10 /* src/gjk/GuVecConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; }; + FFFD44002e787f8c44002e78 /* src/gjk/GuVecPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecPlane.h"; path = "../../GeomUtils/src/gjk/GuVecPlane.h"; sourceTree = SOURCE_ROOT; }; + FFFD44002ee07f8c44002ee0 /* src/gjk/GuVecShrunkBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkBox.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD44002f487f8c44002f48 /* src/gjk/GuVecShrunkConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHull.h"; sourceTree = SOURCE_ROOT; }; + FFFD44002fb07f8c44002fb0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; }; + FFFD440030187f8c44003018 /* src/gjk/GuVecSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecSphere.h"; path = "../../GeomUtils/src/gjk/GuVecSphere.h"; sourceTree = SOURCE_ROOT; }; + FFFD440030807f8c44003080 /* src/gjk/GuVecTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecTriangle.h"; path = "../../GeomUtils/src/gjk/GuVecTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFD440030e87f8c440030e8 /* src/intersection/GuIntersectionCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFD440031507f8c44003150 /* src/intersection/GuIntersectionEdgeEdge.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.h"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.h"; sourceTree = SOURCE_ROOT; }; + FFFD440031b87f8c440031b8 /* src/intersection/GuIntersectionRay.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRay.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRay.h"; sourceTree = SOURCE_ROOT; }; + FFFD440032207f8c44003220 /* src/intersection/GuIntersectionRayBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD440032887f8c44003288 /* src/intersection/GuIntersectionRayBoxSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBoxSIMD.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBoxSIMD.h"; sourceTree = SOURCE_ROOT; }; + FFFD440032f07f8c440032f0 /* src/intersection/GuIntersectionRayCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFD440033587f8c44003358 /* src/intersection/GuIntersectionRayPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayPlane.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayPlane.h"; sourceTree = SOURCE_ROOT; }; + FFFD440033c07f8c440033c0 /* src/intersection/GuIntersectionRaySphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.h"; sourceTree = SOURCE_ROOT; }; + FFFD440034287f8c44003428 /* src/intersection/GuIntersectionRayTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFD440034907f8c44003490 /* src/intersection/GuIntersectionSphereBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD440034f87f8c440034f8 /* src/mesh/GuBV32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.h"; path = "../../GeomUtils/src/mesh/GuBV32.h"; sourceTree = SOURCE_ROOT; }; + FFFD440035607f8c44003560 /* src/mesh/GuBV32Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.h"; path = "../../GeomUtils/src/mesh/GuBV32Build.h"; sourceTree = SOURCE_ROOT; }; + FFFD440035c87f8c440035c8 /* src/mesh/GuBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.h"; path = "../../GeomUtils/src/mesh/GuBV4.h"; sourceTree = SOURCE_ROOT; }; + FFFD440036307f8c44003630 /* src/mesh/GuBV4Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.h"; path = "../../GeomUtils/src/mesh/GuBV4Build.h"; sourceTree = SOURCE_ROOT; }; + FFFD440036987f8c44003698 /* src/mesh/GuBV4Settings.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Settings.h"; path = "../../GeomUtils/src/mesh/GuBV4Settings.h"; sourceTree = SOURCE_ROOT; }; + FFFD440037007f8c44003700 /* 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; }; + FFFD440037687f8c44003768 /* 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; }; + FFFD440037d07f8c440037d0 /* 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; }; + FFFD440038387f8c44003838 /* 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; }; + FFFD440038a07f8c440038a0 /* 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; }; + FFFD440039087f8c44003908 /* 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; }; + FFFD440039707f8c44003970 /* 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; }; + FFFD440039d87f8c440039d8 /* 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; }; + FFFD44003a407f8c44003a40 /* 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; }; + FFFD44003aa87f8c44003aa8 /* 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; }; + FFFD44003b107f8c44003b10 /* 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; }; + FFFD44003b787f8c44003b78 /* 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; }; + FFFD44003be07f8c44003be0 /* 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; }; + FFFD44003c487f8c44003c48 /* 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; }; + FFFD44003cb07f8c44003cb0 /* 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; }; + FFFD44003d187f8c44003d18 /* 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; }; + FFFD44003d807f8c44003d80 /* 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; }; + FFFD44003de87f8c44003de8 /* 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; }; + FFFD44003e507f8c44003e50 /* 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; }; + FFFD44003eb87f8c44003eb8 /* 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; }; + FFFD44003f207f8c44003f20 /* src/mesh/GuBVConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBVConstants.h"; path = "../../GeomUtils/src/mesh/GuBVConstants.h"; sourceTree = SOURCE_ROOT; }; + FFFD44003f887f8c44003f88 /* src/mesh/GuMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshData.h"; path = "../../GeomUtils/src/mesh/GuMeshData.h"; sourceTree = SOURCE_ROOT; }; + FFFD44003ff07f8c44003ff0 /* src/mesh/GuMidphaseInterface.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseInterface.h"; path = "../../GeomUtils/src/mesh/GuMidphaseInterface.h"; sourceTree = SOURCE_ROOT; }; + FFFD440040587f8c44004058 /* src/mesh/GuRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.h"; path = "../../GeomUtils/src/mesh/GuRTree.h"; sourceTree = SOURCE_ROOT; }; + FFFD440040c07f8c440040c0 /* src/mesh/GuSweepConvexTri.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepConvexTri.h"; path = "../../GeomUtils/src/mesh/GuSweepConvexTri.h"; sourceTree = SOURCE_ROOT; }; + FFFD440041287f8c44004128 /* src/mesh/GuSweepMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepMesh.h"; path = "../../GeomUtils/src/mesh/GuSweepMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFD440041907f8c44004190 /* src/mesh/GuTriangle32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangle32.h"; path = "../../GeomUtils/src/mesh/GuTriangle32.h"; sourceTree = SOURCE_ROOT; }; + FFFD440041f87f8c440041f8 /* src/mesh/GuTriangleCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleCache.h"; path = "../../GeomUtils/src/mesh/GuTriangleCache.h"; sourceTree = SOURCE_ROOT; }; + FFFD440042607f8c44004260 /* src/mesh/GuTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.h"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFD440042c87f8c440042c8 /* src/mesh/GuTriangleMeshBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.h"; sourceTree = SOURCE_ROOT; }; + FFFD440043307f8c44004330 /* src/mesh/GuTriangleMeshRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.h"; sourceTree = SOURCE_ROOT; }; + FFFD440043987f8c44004398 /* src/mesh/GuTriangleVertexPointers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleVertexPointers.h"; path = "../../GeomUtils/src/mesh/GuTriangleVertexPointers.h"; sourceTree = SOURCE_ROOT; }; + FFFD440044007f8c44004400 /* src/hf/GuEntityReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuEntityReport.h"; path = "../../GeomUtils/src/hf/GuEntityReport.h"; sourceTree = SOURCE_ROOT; }; + FFFD440044687f8c44004468 /* src/hf/GuHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.h"; path = "../../GeomUtils/src/hf/GuHeightField.h"; sourceTree = SOURCE_ROOT; }; + FFFD440044d07f8c440044d0 /* src/hf/GuHeightFieldData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldData.h"; path = "../../GeomUtils/src/hf/GuHeightFieldData.h"; sourceTree = SOURCE_ROOT; }; + FFFD440045387f8c44004538 /* src/hf/GuHeightFieldUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.h"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.h"; sourceTree = SOURCE_ROOT; }; + FFFD440045a07f8c440045a0 /* src/pcm/GuPCMContactConvexCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.h"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.h"; sourceTree = SOURCE_ROOT; }; + FFFD440046087f8c44004608 /* src/pcm/GuPCMContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGen.h"; sourceTree = SOURCE_ROOT; }; + FFFD440046707f8c44004670 /* src/pcm/GuPCMContactGenUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenUtil.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGenUtil.h"; sourceTree = SOURCE_ROOT; }; + FFFD440046d87f8c440046d8 /* src/pcm/GuPCMContactMeshCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactMeshCallback.h"; path = "../../GeomUtils/src/pcm/GuPCMContactMeshCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFD440047407f8c44004740 /* src/pcm/GuPCMShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.h"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.h"; sourceTree = SOURCE_ROOT; }; + FFFD440047a87f8c440047a8 /* src/pcm/GuPCMTriangleContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.h"; sourceTree = SOURCE_ROOT; }; + FFFD440048107f8c44004810 /* src/pcm/GuPersistentContactManifold.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.h"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.h"; sourceTree = SOURCE_ROOT; }; + FFFD440048787f8c44004878 /* src/ccd/GuCCDSweepConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.h"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFD440048e07f8c440048e0 /* src/GuBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.cpp"; path = "../../GeomUtils/src/GuBounds.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440049487f8c44004948 /* src/GuBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBox.cpp"; path = "../../GeomUtils/src/GuBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440049b07f8c440049b0 /* src/GuCCTSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCCTSweepTests.cpp"; path = "../../GeomUtils/src/GuCCTSweepTests.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD44004a187f8c44004a18 /* src/GuCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.cpp"; path = "../../GeomUtils/src/GuCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD44004a807f8c44004a80 /* src/GuGeometryQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryQuery.cpp"; path = "../../GeomUtils/src/GuGeometryQuery.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD44004ae87f8c44004ae8 /* src/GuGeometryUnion.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.cpp"; path = "../../GeomUtils/src/GuGeometryUnion.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD44004b507f8c44004b50 /* src/GuInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.cpp"; path = "../../GeomUtils/src/GuInternal.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD44004bb87f8c44004bb8 /* src/GuMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.cpp"; path = "../../GeomUtils/src/GuMTD.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD44004c207f8c44004c20 /* src/GuMeshFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.cpp"; path = "../../GeomUtils/src/GuMeshFactory.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD44004c887f8c44004c88 /* src/GuMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMetaData.cpp"; path = "../../GeomUtils/src/GuMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD44004cf07f8c44004cf0 /* src/GuOverlapTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.cpp"; path = "../../GeomUtils/src/GuOverlapTests.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD44004d587f8c44004d58 /* src/GuRaycastTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuRaycastTests.cpp"; path = "../../GeomUtils/src/GuRaycastTests.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD44004dc07f8c44004dc0 /* src/GuSerialize.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.cpp"; path = "../../GeomUtils/src/GuSerialize.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD44004e287f8c44004e28 /* src/GuSweepMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.cpp"; path = "../../GeomUtils/src/GuSweepMTD.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD44004e907f8c44004e90 /* src/GuSweepSharedTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.cpp"; path = "../../GeomUtils/src/GuSweepSharedTests.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD44004ef87f8c44004ef8 /* src/GuSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.cpp"; path = "../../GeomUtils/src/GuSweepTests.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD44004f607f8c44004f60 /* src/contact/GuContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactBoxBox.cpp"; path = "../../GeomUtils/src/contact/GuContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD44004fc87f8c44004fc8 /* src/contact/GuContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleBox.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440050307f8c44005030 /* src/contact/GuContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440050987f8c44005098 /* src/contact/GuContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440051007f8c44005100 /* src/contact/GuContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440051687f8c44005168 /* src/contact/GuContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440051d07f8c440051d0 /* src/contact/GuContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440052387f8c44005238 /* src/contact/GuContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneBox.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440052a07f8c440052a0 /* src/contact/GuContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440053087f8c44005308 /* src/contact/GuContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440053707f8c44005370 /* src/contact/GuContactPolygonPolygon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.cpp"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440053d87f8c440053d8 /* src/contact/GuContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereBox.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440054407f8c44005440 /* src/contact/GuContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440054a87f8c440054a8 /* src/contact/GuContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440055107f8c44005510 /* src/contact/GuContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSpherePlane.cpp"; path = "../../GeomUtils/src/contact/GuContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440055787f8c44005578 /* src/contact/GuContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereSphere.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440055e07f8c440055e0 /* src/contact/GuFeatureCode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.cpp"; path = "../../GeomUtils/src/contact/GuFeatureCode.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440056487f8c44005648 /* src/contact/GuLegacyContactBoxHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactBoxHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactBoxHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440056b07f8c440056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440057187f8c44005718 /* src/contact/GuLegacyContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactConvexHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440057807f8c44005780 /* src/contact/GuLegacyContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactSphereHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440057e87f8c440057e8 /* src/common/GuBarycentricCoordinates.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.cpp"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440058507f8c44005850 /* src/common/GuSeparatingAxes.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.cpp"; path = "../../GeomUtils/src/common/GuSeparatingAxes.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440058b87f8c440058b8 /* src/convex/GuBigConvexData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.cpp"; path = "../../GeomUtils/src/convex/GuBigConvexData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440059207f8c44005920 /* src/convex/GuConvexHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.cpp"; path = "../../GeomUtils/src/convex/GuConvexHelper.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440059887f8c44005988 /* src/convex/GuConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.cpp"; path = "../../GeomUtils/src/convex/GuConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440059f07f8c440059f0 /* src/convex/GuConvexSupportTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.cpp"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD44005a587f8c44005a58 /* src/convex/GuConvexUtilsInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.cpp"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD44005ac07f8c44005ac0 /* src/convex/GuHillClimbing.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.cpp"; path = "../../GeomUtils/src/convex/GuHillClimbing.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD44005b287f8c44005b28 /* src/convex/GuShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.cpp"; path = "../../GeomUtils/src/convex/GuShapeConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD44005b907f8c44005b90 /* src/distance/GuDistancePointBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD44005bf87f8c44005bf8 /* src/distance/GuDistancePointTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD44005c607f8c44005c60 /* src/distance/GuDistanceSegmentBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentBox.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD44005cc87f8c44005cc8 /* src/distance/GuDistanceSegmentSegment.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegment.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegment.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD44005d307f8c44005d30 /* src/distance/GuDistanceSegmentTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD44005d987f8c44005d98 /* src/sweep/GuSweepBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD44005e007f8c44005e00 /* src/sweep/GuSweepBoxSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD44005e687f8c44005e68 /* 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; }; + FFFD44005ed07f8c44005ed0 /* 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; }; + FFFD44005f387f8c44005f38 /* src/sweep/GuSweepCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD44005fa07f8c44005fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440060087f8c44006008 /* src/sweep/GuSweepCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440060707f8c44006070 /* src/sweep/GuSweepSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440060d87f8c440060d8 /* src/sweep/GuSweepSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440061407f8c44006140 /* src/sweep/GuSweepSphereTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440061a87f8c440061a8 /* src/sweep/GuSweepTriangleUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.cpp"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440062107f8c44006210 /* src/gjk/GuEPA.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.cpp"; path = "../../GeomUtils/src/gjk/GuEPA.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440062787f8c44006278 /* src/gjk/GuGJKSimplex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.cpp"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440062e07f8c440062e0 /* src/gjk/GuGJKTest.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.cpp"; path = "../../GeomUtils/src/gjk/GuGJKTest.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440063487f8c44006348 /* src/intersection/GuIntersectionBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionBoxBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440063b07f8c440063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440064187f8c44006418 /* src/intersection/GuIntersectionEdgeEdge.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440064807f8c44006480 /* src/intersection/GuIntersectionRayBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440064e87f8c440064e8 /* src/intersection/GuIntersectionRayCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440065507f8c44006550 /* src/intersection/GuIntersectionRaySphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440065b87f8c440065b8 /* src/intersection/GuIntersectionSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440066207f8c44006620 /* src/intersection/GuIntersectionTriangleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionTriangleBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionTriangleBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440066887f8c44006688 /* src/mesh/GuBV32.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.cpp"; path = "../../GeomUtils/src/mesh/GuBV32.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440066f07f8c440066f0 /* src/mesh/GuBV32Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV32Build.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440067587f8c44006758 /* src/mesh/GuBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.cpp"; path = "../../GeomUtils/src/mesh/GuBV4.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440067c07f8c440067c0 /* src/mesh/GuBV4Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV4Build.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440068287f8c44006828 /* 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; }; + FFFD440068907f8c44006890 /* 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; }; + FFFD440068f87f8c440068f8 /* 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; }; + FFFD440069607f8c44006960 /* 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; }; + FFFD440069c87f8c440069c8 /* 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; }; + FFFD44006a307f8c44006a30 /* 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; }; + FFFD44006a987f8c44006a98 /* 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; }; + FFFD44006b007f8c44006b00 /* 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; }; + FFFD44006b687f8c44006b68 /* src/mesh/GuMeshQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshQuery.cpp"; path = "../../GeomUtils/src/mesh/GuMeshQuery.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD44006bd07f8c44006bd0 /* src/mesh/GuMidphaseBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseBV4.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseBV4.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD44006c387f8c44006c38 /* src/mesh/GuMidphaseRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseRTree.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseRTree.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD44006ca07f8c44006ca0 /* src/mesh/GuOverlapTestsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuOverlapTestsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuOverlapTestsMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD44006d087f8c44006d08 /* src/mesh/GuRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.cpp"; path = "../../GeomUtils/src/mesh/GuRTree.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD44006d707f8c44006d70 /* src/mesh/GuRTreeQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTreeQueries.cpp"; path = "../../GeomUtils/src/mesh/GuRTreeQueries.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD44006dd87f8c44006dd8 /* src/mesh/GuSweepsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuSweepsMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD44006e407f8c44006e40 /* src/mesh/GuTriangleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD44006ea87f8c44006ea8 /* src/mesh/GuTriangleMeshBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD44006f107f8c44006f10 /* src/mesh/GuTriangleMeshRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD44006f787f8c44006f78 /* src/hf/GuHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.cpp"; path = "../../GeomUtils/src/hf/GuHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD44006fe07f8c44006fe0 /* src/hf/GuHeightFieldUtil.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.cpp"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440070487f8c44007048 /* src/hf/GuOverlapTestsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuOverlapTestsHF.cpp"; path = "../../GeomUtils/src/hf/GuOverlapTestsHF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440070b07f8c440070b0 /* src/hf/GuSweepsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuSweepsHF.cpp"; path = "../../GeomUtils/src/hf/GuSweepsHF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440071187f8c44007118 /* src/pcm/GuPCMContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440071807f8c44007180 /* src/pcm/GuPCMContactBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440071e87f8c440071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440072507f8c44007250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440072b87f8c440072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440073207f8c44007320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440073887f8c44007388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440073f07f8c440073f0 /* src/pcm/GuPCMContactConvexCommon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440074587f8c44007458 /* src/pcm/GuPCMContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440074c07f8c440074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440075287f8c44007528 /* src/pcm/GuPCMContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440075907f8c44007590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenBoxConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440075f87f8c440075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440076607f8c44007660 /* src/pcm/GuPCMContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440076c87f8c440076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440077307f8c44007730 /* src/pcm/GuPCMContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440077987f8c44007798 /* src/pcm/GuPCMContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440078007f8c44007800 /* src/pcm/GuPCMContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440078687f8c44007868 /* src/pcm/GuPCMContactSphereConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440078d07f8c440078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440079387f8c44007938 /* src/pcm/GuPCMContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440079a07f8c440079a0 /* src/pcm/GuPCMContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSpherePlane.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD44007a087f8c44007a08 /* src/pcm/GuPCMContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereSphere.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD44007a707f8c44007a70 /* src/pcm/GuPCMShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD44007ad87f8c44007ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.cpp"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD44007b407f8c44007b40 /* src/pcm/GuPersistentContactManifold.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.cpp"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD44007ba87f8c44007ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.cpp"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD44007c107f8c44007c10 /* 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 */ - FFF212128d507fe812128d50 /* Resources */ = { + FFF24389f1b07f8c4389f1b0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF110185a87fe8110185a8, + FFFF440013a87f8c440013a8, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC12128d507fe812128d50 /* Frameworks */ = { + FFFC4389f1b07f8c4389f1b0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -1841,145 +1841,145 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF812128d507fe812128d50 /* Sources */ = { + FFF84389f1b07f8c4389f1b0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF1198a0007fe81198a000, - FFFF1198a0687fe81198a068, - FFFF1198a0d07fe81198a0d0, - FFFF1198a1387fe81198a138, - FFFF1198a1a07fe81198a1a0, - FFFF1198a2087fe81198a208, - FFFF1198a2707fe81198a270, - FFFF1198a2d87fe81198a2d8, - FFFF1101bae07fe81101bae0, - FFFF1101bb487fe81101bb48, - FFFF1101bbb07fe81101bbb0, - FFFF1101bc187fe81101bc18, - FFFF1101bc807fe81101bc80, - FFFF1101bce87fe81101bce8, - FFFF1101bd507fe81101bd50, - FFFF1101bdb87fe81101bdb8, - FFFF1101be207fe81101be20, - FFFF1101be887fe81101be88, - FFFF1101bef07fe81101bef0, - FFFF1101bf587fe81101bf58, - FFFF1101bfc07fe81101bfc0, - FFFF1101c0287fe81101c028, - FFFF1101c0907fe81101c090, - FFFF1101c0f87fe81101c0f8, - FFFF1101c1607fe81101c160, - FFFF1101c1c87fe81101c1c8, - FFFF1101c2307fe81101c230, - FFFF1101c2987fe81101c298, - FFFF1101c3007fe81101c300, - FFFF1101c3687fe81101c368, - FFFF1101c3d07fe81101c3d0, - FFFF1101c4387fe81101c438, - FFFF1101c4a07fe81101c4a0, - FFFF1101c5087fe81101c508, - FFFF1101c5707fe81101c570, - FFFF1101c5d87fe81101c5d8, - FFFF1101c6407fe81101c640, - FFFF1101c6a87fe81101c6a8, - FFFF1101c7107fe81101c710, - FFFF1101c7787fe81101c778, - FFFF1101c7e07fe81101c7e0, - FFFF1101c8487fe81101c848, - FFFF1101c8b07fe81101c8b0, - FFFF1101c9187fe81101c918, - FFFF1101c9807fe81101c980, - FFFF1101c9e87fe81101c9e8, - FFFF1101ca507fe81101ca50, - FFFF1101cab87fe81101cab8, - FFFF1101cb207fe81101cb20, - FFFF1101cb887fe81101cb88, - FFFF1101cbf07fe81101cbf0, - FFFF1101cc587fe81101cc58, - FFFF1101ccc07fe81101ccc0, - FFFF1101cd287fe81101cd28, - FFFF1101cd907fe81101cd90, - FFFF1101cdf87fe81101cdf8, - FFFF1101ce607fe81101ce60, - FFFF1101cec87fe81101cec8, - FFFF1101cf307fe81101cf30, - FFFF1101cf987fe81101cf98, - FFFF1101d0007fe81101d000, - FFFF1101d0687fe81101d068, - FFFF1101d0d07fe81101d0d0, - FFFF1101d1387fe81101d138, - FFFF1101d1a07fe81101d1a0, - FFFF1101d2087fe81101d208, - FFFF1101d2707fe81101d270, - FFFF1101d2d87fe81101d2d8, - FFFF1101d3407fe81101d340, - FFFF1101d3a87fe81101d3a8, - FFFF1101d4107fe81101d410, - FFFF1101d4787fe81101d478, - FFFF1101d4e07fe81101d4e0, - FFFF1101d5487fe81101d548, - FFFF1101d5b07fe81101d5b0, - FFFF1101d6187fe81101d618, - FFFF1101d6807fe81101d680, - FFFF1101d6e87fe81101d6e8, - FFFF1101d7507fe81101d750, - FFFF1101d7b87fe81101d7b8, - FFFF1101d8207fe81101d820, - FFFF1101d8887fe81101d888, - FFFF1101d8f07fe81101d8f0, - FFFF1101d9587fe81101d958, - FFFF1101d9c07fe81101d9c0, - FFFF1101da287fe81101da28, - FFFF1101da907fe81101da90, - FFFF1101daf87fe81101daf8, - FFFF1101db607fe81101db60, - FFFF1101dbc87fe81101dbc8, - FFFF1101dc307fe81101dc30, - FFFF1101dc987fe81101dc98, - FFFF1101dd007fe81101dd00, - FFFF1101dd687fe81101dd68, - FFFF1101ddd07fe81101ddd0, - FFFF1101de387fe81101de38, - FFFF1101dea07fe81101dea0, - FFFF1101df087fe81101df08, - FFFF1101df707fe81101df70, - FFFF1101dfd87fe81101dfd8, - FFFF1101e0407fe81101e040, - FFFF1101e0a87fe81101e0a8, - FFFF1101e1107fe81101e110, - FFFF1101e1787fe81101e178, - FFFF1101e1e07fe81101e1e0, - FFFF1101e2487fe81101e248, - FFFF1101e2b07fe81101e2b0, - FFFF1101e3187fe81101e318, - FFFF1101e3807fe81101e380, - FFFF1101e3e87fe81101e3e8, - FFFF1101e4507fe81101e450, - FFFF1101e4b87fe81101e4b8, - FFFF1101e5207fe81101e520, - FFFF1101e5887fe81101e588, - FFFF1101e5f07fe81101e5f0, - FFFF1101e6587fe81101e658, - FFFF1101e6c07fe81101e6c0, - FFFF1101e7287fe81101e728, - FFFF1101e7907fe81101e790, - FFFF1101e7f87fe81101e7f8, - FFFF1101e8607fe81101e860, - FFFF1101e8c87fe81101e8c8, - FFFF1101e9307fe81101e930, - FFFF1101e9987fe81101e998, - FFFF1101ea007fe81101ea00, - FFFF1101ea687fe81101ea68, - FFFF1101ead07fe81101ead0, - FFFF1101eb387fe81101eb38, - FFFF1101eba07fe81101eba0, - FFFF1101ec087fe81101ec08, - FFFF1101ec707fe81101ec70, - FFFF1101ecd87fe81101ecd8, - FFFF1101ed407fe81101ed40, - FFFF1101eda87fe81101eda8, - FFFF1101ee107fe81101ee10, + FFFF4319f4007f8c4319f400, + FFFF4319f4687f8c4319f468, + FFFF4319f4d07f8c4319f4d0, + FFFF4319f5387f8c4319f538, + FFFF4319f5a07f8c4319f5a0, + FFFF4319f6087f8c4319f608, + FFFF4319f6707f8c4319f670, + FFFF4319f6d87f8c4319f6d8, + FFFF440048e07f8c440048e0, + FFFF440049487f8c44004948, + FFFF440049b07f8c440049b0, + FFFF44004a187f8c44004a18, + FFFF44004a807f8c44004a80, + FFFF44004ae87f8c44004ae8, + FFFF44004b507f8c44004b50, + FFFF44004bb87f8c44004bb8, + FFFF44004c207f8c44004c20, + FFFF44004c887f8c44004c88, + FFFF44004cf07f8c44004cf0, + FFFF44004d587f8c44004d58, + FFFF44004dc07f8c44004dc0, + FFFF44004e287f8c44004e28, + FFFF44004e907f8c44004e90, + FFFF44004ef87f8c44004ef8, + FFFF44004f607f8c44004f60, + FFFF44004fc87f8c44004fc8, + FFFF440050307f8c44005030, + FFFF440050987f8c44005098, + FFFF440051007f8c44005100, + FFFF440051687f8c44005168, + FFFF440051d07f8c440051d0, + FFFF440052387f8c44005238, + FFFF440052a07f8c440052a0, + FFFF440053087f8c44005308, + FFFF440053707f8c44005370, + FFFF440053d87f8c440053d8, + FFFF440054407f8c44005440, + FFFF440054a87f8c440054a8, + FFFF440055107f8c44005510, + FFFF440055787f8c44005578, + FFFF440055e07f8c440055e0, + FFFF440056487f8c44005648, + FFFF440056b07f8c440056b0, + FFFF440057187f8c44005718, + FFFF440057807f8c44005780, + FFFF440057e87f8c440057e8, + FFFF440058507f8c44005850, + FFFF440058b87f8c440058b8, + FFFF440059207f8c44005920, + FFFF440059887f8c44005988, + FFFF440059f07f8c440059f0, + FFFF44005a587f8c44005a58, + FFFF44005ac07f8c44005ac0, + FFFF44005b287f8c44005b28, + FFFF44005b907f8c44005b90, + FFFF44005bf87f8c44005bf8, + FFFF44005c607f8c44005c60, + FFFF44005cc87f8c44005cc8, + FFFF44005d307f8c44005d30, + FFFF44005d987f8c44005d98, + FFFF44005e007f8c44005e00, + FFFF44005e687f8c44005e68, + FFFF44005ed07f8c44005ed0, + FFFF44005f387f8c44005f38, + FFFF44005fa07f8c44005fa0, + FFFF440060087f8c44006008, + FFFF440060707f8c44006070, + FFFF440060d87f8c440060d8, + FFFF440061407f8c44006140, + FFFF440061a87f8c440061a8, + FFFF440062107f8c44006210, + FFFF440062787f8c44006278, + FFFF440062e07f8c440062e0, + FFFF440063487f8c44006348, + FFFF440063b07f8c440063b0, + FFFF440064187f8c44006418, + FFFF440064807f8c44006480, + FFFF440064e87f8c440064e8, + FFFF440065507f8c44006550, + FFFF440065b87f8c440065b8, + FFFF440066207f8c44006620, + FFFF440066887f8c44006688, + FFFF440066f07f8c440066f0, + FFFF440067587f8c44006758, + FFFF440067c07f8c440067c0, + FFFF440068287f8c44006828, + FFFF440068907f8c44006890, + FFFF440068f87f8c440068f8, + FFFF440069607f8c44006960, + FFFF440069c87f8c440069c8, + FFFF44006a307f8c44006a30, + FFFF44006a987f8c44006a98, + FFFF44006b007f8c44006b00, + FFFF44006b687f8c44006b68, + FFFF44006bd07f8c44006bd0, + FFFF44006c387f8c44006c38, + FFFF44006ca07f8c44006ca0, + FFFF44006d087f8c44006d08, + FFFF44006d707f8c44006d70, + FFFF44006dd87f8c44006dd8, + FFFF44006e407f8c44006e40, + FFFF44006ea87f8c44006ea8, + FFFF44006f107f8c44006f10, + FFFF44006f787f8c44006f78, + FFFF44006fe07f8c44006fe0, + FFFF440070487f8c44007048, + FFFF440070b07f8c440070b0, + FFFF440071187f8c44007118, + FFFF440071807f8c44007180, + FFFF440071e87f8c440071e8, + FFFF440072507f8c44007250, + FFFF440072b87f8c440072b8, + FFFF440073207f8c44007320, + FFFF440073887f8c44007388, + FFFF440073f07f8c440073f0, + FFFF440074587f8c44007458, + FFFF440074c07f8c440074c0, + FFFF440075287f8c44007528, + FFFF440075907f8c44007590, + FFFF440075f87f8c440075f8, + FFFF440076607f8c44007660, + FFFF440076c87f8c440076c8, + FFFF440077307f8c44007730, + FFFF440077987f8c44007798, + FFFF440078007f8c44007800, + FFFF440078687f8c44007868, + FFFF440078d07f8c440078d0, + FFFF440079387f8c44007938, + FFFF440079a07f8c440079a0, + FFFF44007a087f8c44007a08, + FFFF44007a707f8c44007a70, + FFFF44007ad87f8c44007ad8, + FFFF44007b407f8c44007b40, + FFFF44007ba87f8c44007ba8, + FFFF44007c107f8c44007c10, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1988,132 +1988,132 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF4121222807fe812122280 /* PBXTargetDependency */ = { + FFF443af42807f8c43af4280 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA121657c07fe8121657c0 /* PxFoundation */; - targetProxy = FFF5121657c07fe8121657c0 /* PBXContainerItemProxy */; + target = FFFA438816407f8c43881640 /* PxFoundation */; + targetProxy = FFF5438816407f8c43881640 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PxFoundation */ - FFFF11976f187fe811976f18 /* src/PsAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD11976f187fe811976f18 /* src/PsAllocator.cpp */; }; - FFFF11976f807fe811976f80 /* src/PsAssert.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD11976f807fe811976f80 /* src/PsAssert.cpp */; }; - FFFF11976fe87fe811976fe8 /* src/PsFoundation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD11976fe87fe811976fe8 /* src/PsFoundation.cpp */; }; - FFFF119770507fe811977050 /* src/PsMathUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD119770507fe811977050 /* src/PsMathUtils.cpp */; }; - FFFF119770b87fe8119770b8 /* src/PsString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD119770b87fe8119770b8 /* src/PsString.cpp */; }; - FFFF119771207fe811977120 /* src/PsTempAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD119771207fe811977120 /* src/PsTempAllocator.cpp */; }; - FFFF119771887fe811977188 /* src/PsUtilities.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD119771887fe811977188 /* src/PsUtilities.cpp */; }; - FFFF119771f07fe8119771f0 /* src/unix/PsUnixAtomic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD119771f07fe8119771f0 /* src/unix/PsUnixAtomic.cpp */; }; - FFFF119772587fe811977258 /* src/unix/PsUnixCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD119772587fe811977258 /* src/unix/PsUnixCpu.cpp */; }; - FFFF119772c07fe8119772c0 /* src/unix/PsUnixFPU.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD119772c07fe8119772c0 /* src/unix/PsUnixFPU.cpp */; }; - FFFF119773287fe811977328 /* src/unix/PsUnixMutex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD119773287fe811977328 /* src/unix/PsUnixMutex.cpp */; }; - FFFF119773907fe811977390 /* src/unix/PsUnixPrintString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD119773907fe811977390 /* src/unix/PsUnixPrintString.cpp */; }; - FFFF119773f87fe8119773f8 /* src/unix/PsUnixSList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD119773f87fe8119773f8 /* src/unix/PsUnixSList.cpp */; }; - FFFF119774607fe811977460 /* src/unix/PsUnixSocket.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD119774607fe811977460 /* src/unix/PsUnixSocket.cpp */; }; - FFFF119774c87fe8119774c8 /* src/unix/PsUnixSync.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD119774c87fe8119774c8 /* src/unix/PsUnixSync.cpp */; }; - FFFF119775307fe811977530 /* src/unix/PsUnixThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD119775307fe811977530 /* src/unix/PsUnixThread.cpp */; }; - FFFF119775987fe811977598 /* src/unix/PsUnixTime.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD119775987fe811977598 /* src/unix/PsUnixTime.cpp */; }; + FFFF4318c3187f8c4318c318 /* src/PsAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4318c3187f8c4318c318 /* src/PsAllocator.cpp */; }; + FFFF4318c3807f8c4318c380 /* src/PsAssert.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4318c3807f8c4318c380 /* src/PsAssert.cpp */; }; + FFFF4318c3e87f8c4318c3e8 /* src/PsFoundation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4318c3e87f8c4318c3e8 /* src/PsFoundation.cpp */; }; + FFFF4318c4507f8c4318c450 /* src/PsMathUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4318c4507f8c4318c450 /* src/PsMathUtils.cpp */; }; + FFFF4318c4b87f8c4318c4b8 /* src/PsString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4318c4b87f8c4318c4b8 /* src/PsString.cpp */; }; + FFFF4318c5207f8c4318c520 /* src/PsTempAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4318c5207f8c4318c520 /* src/PsTempAllocator.cpp */; }; + FFFF4318c5887f8c4318c588 /* src/PsUtilities.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4318c5887f8c4318c588 /* src/PsUtilities.cpp */; }; + FFFF4318c5f07f8c4318c5f0 /* src/unix/PsUnixAtomic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4318c5f07f8c4318c5f0 /* src/unix/PsUnixAtomic.cpp */; }; + FFFF4318c6587f8c4318c658 /* src/unix/PsUnixCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4318c6587f8c4318c658 /* src/unix/PsUnixCpu.cpp */; }; + FFFF4318c6c07f8c4318c6c0 /* src/unix/PsUnixFPU.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4318c6c07f8c4318c6c0 /* src/unix/PsUnixFPU.cpp */; }; + FFFF4318c7287f8c4318c728 /* src/unix/PsUnixMutex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4318c7287f8c4318c728 /* src/unix/PsUnixMutex.cpp */; }; + FFFF4318c7907f8c4318c790 /* src/unix/PsUnixPrintString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4318c7907f8c4318c790 /* src/unix/PsUnixPrintString.cpp */; }; + FFFF4318c7f87f8c4318c7f8 /* src/unix/PsUnixSList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4318c7f87f8c4318c7f8 /* src/unix/PsUnixSList.cpp */; }; + FFFF4318c8607f8c4318c860 /* src/unix/PsUnixSocket.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4318c8607f8c4318c860 /* src/unix/PsUnixSocket.cpp */; }; + FFFF4318c8c87f8c4318c8c8 /* src/unix/PsUnixSync.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4318c8c87f8c4318c8c8 /* src/unix/PsUnixSync.cpp */; }; + FFFF4318c9307f8c4318c930 /* src/unix/PsUnixThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4318c9307f8c4318c930 /* src/unix/PsUnixThread.cpp */; }; + FFFF4318c9987f8c4318c998 /* src/unix/PsUnixTime.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4318c9987f8c4318c998 /* src/unix/PsUnixTime.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD121657c07fe8121657c0 /* PxFoundation */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxFoundation"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD119688007fe811968800 /* Px.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Px.h"; path = "../../../../PxShared/include/foundation/Px.h"; sourceTree = SOURCE_ROOT; }; - FFFD119688687fe811968868 /* PxAllocatorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAllocatorCallback.h"; path = "../../../../PxShared/include/foundation/PxAllocatorCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFD119688d07fe8119688d0 /* PxAssert.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAssert.h"; path = "../../../../PxShared/include/foundation/PxAssert.h"; sourceTree = SOURCE_ROOT; }; - FFFD119689387fe811968938 /* PxBitAndData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBitAndData.h"; path = "../../../../PxShared/include/foundation/PxBitAndData.h"; sourceTree = SOURCE_ROOT; }; - FFFD119689a07fe8119689a0 /* PxBounds3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBounds3.h"; path = "../../../../PxShared/include/foundation/PxBounds3.h"; sourceTree = SOURCE_ROOT; }; - FFFD11968a087fe811968a08 /* PxErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrorCallback.h"; path = "../../../../PxShared/include/foundation/PxErrorCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFD11968a707fe811968a70 /* PxErrors.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrors.h"; path = "../../../../PxShared/include/foundation/PxErrors.h"; sourceTree = SOURCE_ROOT; }; - FFFD11968ad87fe811968ad8 /* PxFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFlags.h"; path = "../../../../PxShared/include/foundation/PxFlags.h"; sourceTree = SOURCE_ROOT; }; - FFFD11968b407fe811968b40 /* PxFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundation.h"; path = "../../../../PxShared/include/foundation/PxFoundation.h"; sourceTree = SOURCE_ROOT; }; - FFFD11968ba87fe811968ba8 /* PxFoundationVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundationVersion.h"; path = "../../../../PxShared/include/foundation/PxFoundationVersion.h"; sourceTree = SOURCE_ROOT; }; - FFFD11968c107fe811968c10 /* PxIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIO.h"; path = "../../../../PxShared/include/foundation/PxIO.h"; sourceTree = SOURCE_ROOT; }; - FFFD11968c787fe811968c78 /* PxIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIntrinsics.h"; path = "../../../../PxShared/include/foundation/PxIntrinsics.h"; sourceTree = SOURCE_ROOT; }; - FFFD11968ce07fe811968ce0 /* PxMat33.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat33.h"; path = "../../../../PxShared/include/foundation/PxMat33.h"; sourceTree = SOURCE_ROOT; }; - FFFD11968d487fe811968d48 /* PxMat44.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat44.h"; path = "../../../../PxShared/include/foundation/PxMat44.h"; sourceTree = SOURCE_ROOT; }; - FFFD11968db07fe811968db0 /* PxMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMath.h"; path = "../../../../PxShared/include/foundation/PxMath.h"; sourceTree = SOURCE_ROOT; }; - FFFD11968e187fe811968e18 /* PxMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMathUtils.h"; path = "../../../../PxShared/include/foundation/PxMathUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD11968e807fe811968e80 /* PxMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMemory.h"; path = "../../../../PxShared/include/foundation/PxMemory.h"; sourceTree = SOURCE_ROOT; }; - FFFD11968ee87fe811968ee8 /* PxPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPlane.h"; path = "../../../../PxShared/include/foundation/PxPlane.h"; sourceTree = SOURCE_ROOT; }; - FFFD11968f507fe811968f50 /* PxPreprocessor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPreprocessor.h"; path = "../../../../PxShared/include/foundation/PxPreprocessor.h"; sourceTree = SOURCE_ROOT; }; - FFFD11968fb87fe811968fb8 /* PxProfiler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxProfiler.h"; path = "../../../../PxShared/include/foundation/PxProfiler.h"; sourceTree = SOURCE_ROOT; }; - FFFD119690207fe811969020 /* PxQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQuat.h"; path = "../../../../PxShared/include/foundation/PxQuat.h"; sourceTree = SOURCE_ROOT; }; - FFFD119690887fe811969088 /* PxSimpleTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleTypes.h"; path = "../../../../PxShared/include/foundation/PxSimpleTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD119690f07fe8119690f0 /* PxStrideIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStrideIterator.h"; path = "../../../../PxShared/include/foundation/PxStrideIterator.h"; sourceTree = SOURCE_ROOT; }; - FFFD119691587fe811969158 /* PxTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTransform.h"; path = "../../../../PxShared/include/foundation/PxTransform.h"; sourceTree = SOURCE_ROOT; }; - FFFD119691c07fe8119691c0 /* PxUnionCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxUnionCast.h"; path = "../../../../PxShared/include/foundation/PxUnionCast.h"; sourceTree = SOURCE_ROOT; }; - FFFD119692287fe811969228 /* PxVec2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec2.h"; path = "../../../../PxShared/include/foundation/PxVec2.h"; sourceTree = SOURCE_ROOT; }; - FFFD119692907fe811969290 /* PxVec3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec3.h"; path = "../../../../PxShared/include/foundation/PxVec3.h"; sourceTree = SOURCE_ROOT; }; - FFFD119692f87fe8119692f8 /* PxVec4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec4.h"; path = "../../../../PxShared/include/foundation/PxVec4.h"; sourceTree = SOURCE_ROOT; }; - FFFD119693607fe811969360 /* unix/PxUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "unix/PxUnixIntrinsics.h"; path = "../../../../PxShared/include/foundation/unix/PxUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; }; - FFFD11975c007fe811975c00 /* include/Ps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/Ps.h"; path = "../../../../PxShared/src/foundation/include/Ps.h"; sourceTree = SOURCE_ROOT; }; - FFFD11975c687fe811975c68 /* include/PsAlignedMalloc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlignedMalloc.h"; path = "../../../../PxShared/src/foundation/include/PsAlignedMalloc.h"; sourceTree = SOURCE_ROOT; }; - FFFD11975cd07fe811975cd0 /* include/PsAlloca.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlloca.h"; path = "../../../../PxShared/src/foundation/include/PsAlloca.h"; sourceTree = SOURCE_ROOT; }; - FFFD11975d387fe811975d38 /* include/PsAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFD11975da07fe811975da0 /* include/PsAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAoS.h"; path = "../../../../PxShared/src/foundation/include/PsAoS.h"; sourceTree = SOURCE_ROOT; }; - FFFD11975e087fe811975e08 /* include/PsArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsArray.h"; path = "../../../../PxShared/src/foundation/include/PsArray.h"; sourceTree = SOURCE_ROOT; }; - FFFD11975e707fe811975e70 /* include/PsAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAtomic.h"; path = "../../../../PxShared/src/foundation/include/PsAtomic.h"; sourceTree = SOURCE_ROOT; }; - FFFD11975ed87fe811975ed8 /* include/PsBasicTemplates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBasicTemplates.h"; path = "../../../../PxShared/src/foundation/include/PsBasicTemplates.h"; sourceTree = SOURCE_ROOT; }; - FFFD11975f407fe811975f40 /* include/PsBitUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBitUtils.h"; path = "../../../../PxShared/src/foundation/include/PsBitUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD11975fa87fe811975fa8 /* include/PsBroadcast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBroadcast.h"; path = "../../../../PxShared/src/foundation/include/PsBroadcast.h"; sourceTree = SOURCE_ROOT; }; - FFFD119760107fe811976010 /* include/PsCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsCpu.h"; path = "../../../../PxShared/src/foundation/include/PsCpu.h"; sourceTree = SOURCE_ROOT; }; - FFFD119760787fe811976078 /* include/PsFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFPU.h"; path = "../../../../PxShared/src/foundation/include/PsFPU.h"; sourceTree = SOURCE_ROOT; }; - FFFD119760e07fe8119760e0 /* include/PsFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFoundation.h"; path = "../../../../PxShared/src/foundation/include/PsFoundation.h"; sourceTree = SOURCE_ROOT; }; - FFFD119761487fe811976148 /* include/PsHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHash.h"; path = "../../../../PxShared/src/foundation/include/PsHash.h"; sourceTree = SOURCE_ROOT; }; - FFFD119761b07fe8119761b0 /* include/PsHashInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashInternals.h"; path = "../../../../PxShared/src/foundation/include/PsHashInternals.h"; sourceTree = SOURCE_ROOT; }; - FFFD119762187fe811976218 /* include/PsHashMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashMap.h"; path = "../../../../PxShared/src/foundation/include/PsHashMap.h"; sourceTree = SOURCE_ROOT; }; - FFFD119762807fe811976280 /* include/PsHashSet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashSet.h"; path = "../../../../PxShared/src/foundation/include/PsHashSet.h"; sourceTree = SOURCE_ROOT; }; - FFFD119762e87fe8119762e8 /* include/PsInlineAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFD119763507fe811976350 /* include/PsInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAoS.h"; sourceTree = SOURCE_ROOT; }; - FFFD119763b87fe8119763b8 /* include/PsInlineArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineArray.h"; path = "../../../../PxShared/src/foundation/include/PsInlineArray.h"; sourceTree = SOURCE_ROOT; }; - FFFD119764207fe811976420 /* include/PsIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/PsIntrinsics.h"; sourceTree = SOURCE_ROOT; }; - FFFD119764887fe811976488 /* include/PsMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMathUtils.h"; path = "../../../../PxShared/src/foundation/include/PsMathUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD119764f07fe8119764f0 /* include/PsMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMutex.h"; path = "../../../../PxShared/src/foundation/include/PsMutex.h"; sourceTree = SOURCE_ROOT; }; - FFFD119765587fe811976558 /* include/PsPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPool.h"; path = "../../../../PxShared/src/foundation/include/PsPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD119765c07fe8119765c0 /* include/PsSList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSList.h"; path = "../../../../PxShared/src/foundation/include/PsSList.h"; sourceTree = SOURCE_ROOT; }; - FFFD119766287fe811976628 /* include/PsSocket.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSocket.h"; path = "../../../../PxShared/src/foundation/include/PsSocket.h"; sourceTree = SOURCE_ROOT; }; - FFFD119766907fe811976690 /* include/PsSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSort.h"; path = "../../../../PxShared/src/foundation/include/PsSort.h"; sourceTree = SOURCE_ROOT; }; - FFFD119766f87fe8119766f8 /* include/PsSortInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSortInternals.h"; path = "../../../../PxShared/src/foundation/include/PsSortInternals.h"; sourceTree = SOURCE_ROOT; }; - FFFD119767607fe811976760 /* include/PsString.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsString.h"; path = "../../../../PxShared/src/foundation/include/PsString.h"; sourceTree = SOURCE_ROOT; }; - FFFD119767c87fe8119767c8 /* include/PsSync.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSync.h"; path = "../../../../PxShared/src/foundation/include/PsSync.h"; sourceTree = SOURCE_ROOT; }; - FFFD119768307fe811976830 /* include/PsTempAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTempAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsTempAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFD119768987fe811976898 /* include/PsThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsThread.h"; path = "../../../../PxShared/src/foundation/include/PsThread.h"; sourceTree = SOURCE_ROOT; }; - FFFD119769007fe811976900 /* include/PsTime.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTime.h"; path = "../../../../PxShared/src/foundation/include/PsTime.h"; sourceTree = SOURCE_ROOT; }; - FFFD119769687fe811976968 /* include/PsUserAllocated.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUserAllocated.h"; path = "../../../../PxShared/src/foundation/include/PsUserAllocated.h"; sourceTree = SOURCE_ROOT; }; - FFFD119769d07fe8119769d0 /* include/PsUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsUtilities.h"; sourceTree = SOURCE_ROOT; }; - FFFD11976a387fe811976a38 /* include/PsVecMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMath.h"; path = "../../../../PxShared/src/foundation/include/PsVecMath.h"; sourceTree = SOURCE_ROOT; }; - FFFD11976aa07fe811976aa0 /* include/PsVecMathAoSScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalar.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalar.h"; sourceTree = SOURCE_ROOT; }; - FFFD11976b087fe811976b08 /* include/PsVecMathAoSScalarInline.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalarInline.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalarInline.h"; sourceTree = SOURCE_ROOT; }; - FFFD11976b707fe811976b70 /* include/PsVecMathSSE.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathSSE.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathSSE.h"; sourceTree = SOURCE_ROOT; }; - FFFD11976bd87fe811976bd8 /* include/PsVecMathUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathUtilities.h"; sourceTree = SOURCE_ROOT; }; - FFFD11976c407fe811976c40 /* include/PsVecQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecQuat.h"; path = "../../../../PxShared/src/foundation/include/PsVecQuat.h"; sourceTree = SOURCE_ROOT; }; - FFFD11976ca87fe811976ca8 /* include/PsVecTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecTransform.h"; path = "../../../../PxShared/src/foundation/include/PsVecTransform.h"; sourceTree = SOURCE_ROOT; }; - FFFD11976d107fe811976d10 /* include/unix/PsUnixAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixAoS.h"; sourceTree = SOURCE_ROOT; }; - FFFD11976d787fe811976d78 /* include/unix/PsUnixFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixFPU.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixFPU.h"; sourceTree = SOURCE_ROOT; }; - FFFD11976de07fe811976de0 /* include/unix/PsUnixInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixInlineAoS.h"; sourceTree = SOURCE_ROOT; }; - FFFD11976e487fe811976e48 /* include/unix/PsUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; }; - FFFD11976eb07fe811976eb0 /* include/unix/PsUnixTrigConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixTrigConstants.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixTrigConstants.h"; sourceTree = SOURCE_ROOT; }; - FFFD11976f187fe811976f18 /* src/PsAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsAllocator.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD11976f807fe811976f80 /* src/PsAssert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAssert.cpp"; path = "../../../../PxShared/src/foundation/src/PsAssert.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD11976fe87fe811976fe8 /* src/PsFoundation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsFoundation.cpp"; path = "../../../../PxShared/src/foundation/src/PsFoundation.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119770507fe811977050 /* src/PsMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsMathUtils.cpp"; path = "../../../../PxShared/src/foundation/src/PsMathUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119770b87fe8119770b8 /* src/PsString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsString.cpp"; path = "../../../../PxShared/src/foundation/src/PsString.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119771207fe811977120 /* src/PsTempAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsTempAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsTempAllocator.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119771887fe811977188 /* src/PsUtilities.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsUtilities.cpp"; path = "../../../../PxShared/src/foundation/src/PsUtilities.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119771f07fe8119771f0 /* src/unix/PsUnixAtomic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixAtomic.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixAtomic.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119772587fe811977258 /* src/unix/PsUnixCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixCpu.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixCpu.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119772c07fe8119772c0 /* src/unix/PsUnixFPU.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixFPU.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixFPU.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119773287fe811977328 /* src/unix/PsUnixMutex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixMutex.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixMutex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119773907fe811977390 /* src/unix/PsUnixPrintString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixPrintString.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixPrintString.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119773f87fe8119773f8 /* src/unix/PsUnixSList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSList.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSList.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119774607fe811977460 /* src/unix/PsUnixSocket.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSocket.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSocket.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119774c87fe8119774c8 /* src/unix/PsUnixSync.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSync.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSync.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119775307fe811977530 /* src/unix/PsUnixThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixThread.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixThread.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119775987fe811977598 /* src/unix/PsUnixTime.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixTime.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixTime.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD438816407f8c43881640 /* PxFoundation */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxFoundation"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD4317dc007f8c4317dc00 /* Px.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Px.h"; path = "../../../../PxShared/include/foundation/Px.h"; sourceTree = SOURCE_ROOT; }; + FFFD4317dc687f8c4317dc68 /* PxAllocatorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAllocatorCallback.h"; path = "../../../../PxShared/include/foundation/PxAllocatorCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFD4317dcd07f8c4317dcd0 /* PxAssert.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAssert.h"; path = "../../../../PxShared/include/foundation/PxAssert.h"; sourceTree = SOURCE_ROOT; }; + FFFD4317dd387f8c4317dd38 /* PxBitAndData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBitAndData.h"; path = "../../../../PxShared/include/foundation/PxBitAndData.h"; sourceTree = SOURCE_ROOT; }; + FFFD4317dda07f8c4317dda0 /* PxBounds3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBounds3.h"; path = "../../../../PxShared/include/foundation/PxBounds3.h"; sourceTree = SOURCE_ROOT; }; + FFFD4317de087f8c4317de08 /* PxErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrorCallback.h"; path = "../../../../PxShared/include/foundation/PxErrorCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFD4317de707f8c4317de70 /* PxErrors.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrors.h"; path = "../../../../PxShared/include/foundation/PxErrors.h"; sourceTree = SOURCE_ROOT; }; + FFFD4317ded87f8c4317ded8 /* PxFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFlags.h"; path = "../../../../PxShared/include/foundation/PxFlags.h"; sourceTree = SOURCE_ROOT; }; + FFFD4317df407f8c4317df40 /* PxFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundation.h"; path = "../../../../PxShared/include/foundation/PxFoundation.h"; sourceTree = SOURCE_ROOT; }; + FFFD4317dfa87f8c4317dfa8 /* PxFoundationVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundationVersion.h"; path = "../../../../PxShared/include/foundation/PxFoundationVersion.h"; sourceTree = SOURCE_ROOT; }; + FFFD4317e0107f8c4317e010 /* PxIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIO.h"; path = "../../../../PxShared/include/foundation/PxIO.h"; sourceTree = SOURCE_ROOT; }; + FFFD4317e0787f8c4317e078 /* PxIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIntrinsics.h"; path = "../../../../PxShared/include/foundation/PxIntrinsics.h"; sourceTree = SOURCE_ROOT; }; + FFFD4317e0e07f8c4317e0e0 /* PxMat33.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat33.h"; path = "../../../../PxShared/include/foundation/PxMat33.h"; sourceTree = SOURCE_ROOT; }; + FFFD4317e1487f8c4317e148 /* PxMat44.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat44.h"; path = "../../../../PxShared/include/foundation/PxMat44.h"; sourceTree = SOURCE_ROOT; }; + FFFD4317e1b07f8c4317e1b0 /* PxMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMath.h"; path = "../../../../PxShared/include/foundation/PxMath.h"; sourceTree = SOURCE_ROOT; }; + FFFD4317e2187f8c4317e218 /* PxMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMathUtils.h"; path = "../../../../PxShared/include/foundation/PxMathUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD4317e2807f8c4317e280 /* PxMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMemory.h"; path = "../../../../PxShared/include/foundation/PxMemory.h"; sourceTree = SOURCE_ROOT; }; + FFFD4317e2e87f8c4317e2e8 /* PxPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPlane.h"; path = "../../../../PxShared/include/foundation/PxPlane.h"; sourceTree = SOURCE_ROOT; }; + FFFD4317e3507f8c4317e350 /* PxPreprocessor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPreprocessor.h"; path = "../../../../PxShared/include/foundation/PxPreprocessor.h"; sourceTree = SOURCE_ROOT; }; + FFFD4317e3b87f8c4317e3b8 /* PxProfiler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxProfiler.h"; path = "../../../../PxShared/include/foundation/PxProfiler.h"; sourceTree = SOURCE_ROOT; }; + FFFD4317e4207f8c4317e420 /* PxQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQuat.h"; path = "../../../../PxShared/include/foundation/PxQuat.h"; sourceTree = SOURCE_ROOT; }; + FFFD4317e4887f8c4317e488 /* PxSimpleTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleTypes.h"; path = "../../../../PxShared/include/foundation/PxSimpleTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD4317e4f07f8c4317e4f0 /* PxStrideIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStrideIterator.h"; path = "../../../../PxShared/include/foundation/PxStrideIterator.h"; sourceTree = SOURCE_ROOT; }; + FFFD4317e5587f8c4317e558 /* PxTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTransform.h"; path = "../../../../PxShared/include/foundation/PxTransform.h"; sourceTree = SOURCE_ROOT; }; + FFFD4317e5c07f8c4317e5c0 /* PxUnionCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxUnionCast.h"; path = "../../../../PxShared/include/foundation/PxUnionCast.h"; sourceTree = SOURCE_ROOT; }; + FFFD4317e6287f8c4317e628 /* PxVec2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec2.h"; path = "../../../../PxShared/include/foundation/PxVec2.h"; sourceTree = SOURCE_ROOT; }; + FFFD4317e6907f8c4317e690 /* PxVec3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec3.h"; path = "../../../../PxShared/include/foundation/PxVec3.h"; sourceTree = SOURCE_ROOT; }; + FFFD4317e6f87f8c4317e6f8 /* PxVec4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec4.h"; path = "../../../../PxShared/include/foundation/PxVec4.h"; sourceTree = SOURCE_ROOT; }; + FFFD4317e7607f8c4317e760 /* unix/PxUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "unix/PxUnixIntrinsics.h"; path = "../../../../PxShared/include/foundation/unix/PxUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; }; + FFFD4318b0007f8c4318b000 /* include/Ps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/Ps.h"; path = "../../../../PxShared/src/foundation/include/Ps.h"; sourceTree = SOURCE_ROOT; }; + FFFD4318b0687f8c4318b068 /* include/PsAlignedMalloc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlignedMalloc.h"; path = "../../../../PxShared/src/foundation/include/PsAlignedMalloc.h"; sourceTree = SOURCE_ROOT; }; + FFFD4318b0d07f8c4318b0d0 /* include/PsAlloca.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlloca.h"; path = "../../../../PxShared/src/foundation/include/PsAlloca.h"; sourceTree = SOURCE_ROOT; }; + FFFD4318b1387f8c4318b138 /* include/PsAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFD4318b1a07f8c4318b1a0 /* include/PsAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAoS.h"; path = "../../../../PxShared/src/foundation/include/PsAoS.h"; sourceTree = SOURCE_ROOT; }; + FFFD4318b2087f8c4318b208 /* include/PsArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsArray.h"; path = "../../../../PxShared/src/foundation/include/PsArray.h"; sourceTree = SOURCE_ROOT; }; + FFFD4318b2707f8c4318b270 /* include/PsAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAtomic.h"; path = "../../../../PxShared/src/foundation/include/PsAtomic.h"; sourceTree = SOURCE_ROOT; }; + FFFD4318b2d87f8c4318b2d8 /* include/PsBasicTemplates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBasicTemplates.h"; path = "../../../../PxShared/src/foundation/include/PsBasicTemplates.h"; sourceTree = SOURCE_ROOT; }; + FFFD4318b3407f8c4318b340 /* include/PsBitUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBitUtils.h"; path = "../../../../PxShared/src/foundation/include/PsBitUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD4318b3a87f8c4318b3a8 /* include/PsBroadcast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBroadcast.h"; path = "../../../../PxShared/src/foundation/include/PsBroadcast.h"; sourceTree = SOURCE_ROOT; }; + FFFD4318b4107f8c4318b410 /* include/PsCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsCpu.h"; path = "../../../../PxShared/src/foundation/include/PsCpu.h"; sourceTree = SOURCE_ROOT; }; + FFFD4318b4787f8c4318b478 /* include/PsFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFPU.h"; path = "../../../../PxShared/src/foundation/include/PsFPU.h"; sourceTree = SOURCE_ROOT; }; + FFFD4318b4e07f8c4318b4e0 /* include/PsFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFoundation.h"; path = "../../../../PxShared/src/foundation/include/PsFoundation.h"; sourceTree = SOURCE_ROOT; }; + FFFD4318b5487f8c4318b548 /* include/PsHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHash.h"; path = "../../../../PxShared/src/foundation/include/PsHash.h"; sourceTree = SOURCE_ROOT; }; + FFFD4318b5b07f8c4318b5b0 /* include/PsHashInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashInternals.h"; path = "../../../../PxShared/src/foundation/include/PsHashInternals.h"; sourceTree = SOURCE_ROOT; }; + FFFD4318b6187f8c4318b618 /* include/PsHashMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashMap.h"; path = "../../../../PxShared/src/foundation/include/PsHashMap.h"; sourceTree = SOURCE_ROOT; }; + FFFD4318b6807f8c4318b680 /* include/PsHashSet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashSet.h"; path = "../../../../PxShared/src/foundation/include/PsHashSet.h"; sourceTree = SOURCE_ROOT; }; + FFFD4318b6e87f8c4318b6e8 /* include/PsInlineAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFD4318b7507f8c4318b750 /* include/PsInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAoS.h"; sourceTree = SOURCE_ROOT; }; + FFFD4318b7b87f8c4318b7b8 /* include/PsInlineArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineArray.h"; path = "../../../../PxShared/src/foundation/include/PsInlineArray.h"; sourceTree = SOURCE_ROOT; }; + FFFD4318b8207f8c4318b820 /* include/PsIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/PsIntrinsics.h"; sourceTree = SOURCE_ROOT; }; + FFFD4318b8887f8c4318b888 /* include/PsMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMathUtils.h"; path = "../../../../PxShared/src/foundation/include/PsMathUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD4318b8f07f8c4318b8f0 /* include/PsMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMutex.h"; path = "../../../../PxShared/src/foundation/include/PsMutex.h"; sourceTree = SOURCE_ROOT; }; + FFFD4318b9587f8c4318b958 /* include/PsPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPool.h"; path = "../../../../PxShared/src/foundation/include/PsPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD4318b9c07f8c4318b9c0 /* include/PsSList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSList.h"; path = "../../../../PxShared/src/foundation/include/PsSList.h"; sourceTree = SOURCE_ROOT; }; + FFFD4318ba287f8c4318ba28 /* include/PsSocket.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSocket.h"; path = "../../../../PxShared/src/foundation/include/PsSocket.h"; sourceTree = SOURCE_ROOT; }; + FFFD4318ba907f8c4318ba90 /* include/PsSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSort.h"; path = "../../../../PxShared/src/foundation/include/PsSort.h"; sourceTree = SOURCE_ROOT; }; + FFFD4318baf87f8c4318baf8 /* include/PsSortInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSortInternals.h"; path = "../../../../PxShared/src/foundation/include/PsSortInternals.h"; sourceTree = SOURCE_ROOT; }; + FFFD4318bb607f8c4318bb60 /* include/PsString.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsString.h"; path = "../../../../PxShared/src/foundation/include/PsString.h"; sourceTree = SOURCE_ROOT; }; + FFFD4318bbc87f8c4318bbc8 /* include/PsSync.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSync.h"; path = "../../../../PxShared/src/foundation/include/PsSync.h"; sourceTree = SOURCE_ROOT; }; + FFFD4318bc307f8c4318bc30 /* include/PsTempAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTempAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsTempAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFD4318bc987f8c4318bc98 /* include/PsThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsThread.h"; path = "../../../../PxShared/src/foundation/include/PsThread.h"; sourceTree = SOURCE_ROOT; }; + FFFD4318bd007f8c4318bd00 /* include/PsTime.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTime.h"; path = "../../../../PxShared/src/foundation/include/PsTime.h"; sourceTree = SOURCE_ROOT; }; + FFFD4318bd687f8c4318bd68 /* include/PsUserAllocated.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUserAllocated.h"; path = "../../../../PxShared/src/foundation/include/PsUserAllocated.h"; sourceTree = SOURCE_ROOT; }; + FFFD4318bdd07f8c4318bdd0 /* include/PsUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsUtilities.h"; sourceTree = SOURCE_ROOT; }; + FFFD4318be387f8c4318be38 /* include/PsVecMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMath.h"; path = "../../../../PxShared/src/foundation/include/PsVecMath.h"; sourceTree = SOURCE_ROOT; }; + FFFD4318bea07f8c4318bea0 /* include/PsVecMathAoSScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalar.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalar.h"; sourceTree = SOURCE_ROOT; }; + FFFD4318bf087f8c4318bf08 /* include/PsVecMathAoSScalarInline.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalarInline.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalarInline.h"; sourceTree = SOURCE_ROOT; }; + FFFD4318bf707f8c4318bf70 /* include/PsVecMathSSE.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathSSE.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathSSE.h"; sourceTree = SOURCE_ROOT; }; + FFFD4318bfd87f8c4318bfd8 /* include/PsVecMathUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathUtilities.h"; sourceTree = SOURCE_ROOT; }; + FFFD4318c0407f8c4318c040 /* include/PsVecQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecQuat.h"; path = "../../../../PxShared/src/foundation/include/PsVecQuat.h"; sourceTree = SOURCE_ROOT; }; + FFFD4318c0a87f8c4318c0a8 /* include/PsVecTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecTransform.h"; path = "../../../../PxShared/src/foundation/include/PsVecTransform.h"; sourceTree = SOURCE_ROOT; }; + FFFD4318c1107f8c4318c110 /* include/unix/PsUnixAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixAoS.h"; sourceTree = SOURCE_ROOT; }; + FFFD4318c1787f8c4318c178 /* include/unix/PsUnixFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixFPU.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixFPU.h"; sourceTree = SOURCE_ROOT; }; + FFFD4318c1e07f8c4318c1e0 /* include/unix/PsUnixInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixInlineAoS.h"; sourceTree = SOURCE_ROOT; }; + FFFD4318c2487f8c4318c248 /* include/unix/PsUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; }; + FFFD4318c2b07f8c4318c2b0 /* include/unix/PsUnixTrigConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixTrigConstants.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixTrigConstants.h"; sourceTree = SOURCE_ROOT; }; + FFFD4318c3187f8c4318c318 /* src/PsAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsAllocator.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4318c3807f8c4318c380 /* src/PsAssert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAssert.cpp"; path = "../../../../PxShared/src/foundation/src/PsAssert.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4318c3e87f8c4318c3e8 /* src/PsFoundation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsFoundation.cpp"; path = "../../../../PxShared/src/foundation/src/PsFoundation.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4318c4507f8c4318c450 /* src/PsMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsMathUtils.cpp"; path = "../../../../PxShared/src/foundation/src/PsMathUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4318c4b87f8c4318c4b8 /* src/PsString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsString.cpp"; path = "../../../../PxShared/src/foundation/src/PsString.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4318c5207f8c4318c520 /* src/PsTempAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsTempAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsTempAllocator.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4318c5887f8c4318c588 /* src/PsUtilities.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsUtilities.cpp"; path = "../../../../PxShared/src/foundation/src/PsUtilities.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4318c5f07f8c4318c5f0 /* src/unix/PsUnixAtomic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixAtomic.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixAtomic.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4318c6587f8c4318c658 /* src/unix/PsUnixCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixCpu.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixCpu.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4318c6c07f8c4318c6c0 /* src/unix/PsUnixFPU.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixFPU.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixFPU.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4318c7287f8c4318c728 /* src/unix/PsUnixMutex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixMutex.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixMutex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4318c7907f8c4318c790 /* src/unix/PsUnixPrintString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixPrintString.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixPrintString.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4318c7f87f8c4318c7f8 /* src/unix/PsUnixSList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSList.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSList.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4318c8607f8c4318c860 /* src/unix/PsUnixSocket.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSocket.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSocket.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4318c8c87f8c4318c8c8 /* src/unix/PsUnixSync.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSync.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSync.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4318c9307f8c4318c930 /* src/unix/PsUnixThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixThread.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixThread.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4318c9987f8c4318c998 /* 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 */ - FFF2121657c07fe8121657c0 /* Resources */ = { + FFF2438816407f8c43881640 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2123,7 +2123,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC121657c07fe8121657c0 /* Frameworks */ = { + FFFC438816407f8c43881640 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2133,27 +2133,27 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8121657c07fe8121657c0 /* Sources */ = { + FFF8438816407f8c43881640 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF11976f187fe811976f18, - FFFF11976f807fe811976f80, - FFFF11976fe87fe811976fe8, - FFFF119770507fe811977050, - FFFF119770b87fe8119770b8, - FFFF119771207fe811977120, - FFFF119771887fe811977188, - FFFF119771f07fe8119771f0, - FFFF119772587fe811977258, - FFFF119772c07fe8119772c0, - FFFF119773287fe811977328, - FFFF119773907fe811977390, - FFFF119773f87fe8119773f8, - FFFF119774607fe811977460, - FFFF119774c87fe8119774c8, - FFFF119775307fe811977530, - FFFF119775987fe811977598, + FFFF4318c3187f8c4318c318, + FFFF4318c3807f8c4318c380, + FFFF4318c3e87f8c4318c3e8, + FFFF4318c4507f8c4318c450, + FFFF4318c4b87f8c4318c4b8, + FFFF4318c5207f8c4318c520, + FFFF4318c5887f8c4318c588, + FFFF4318c5f07f8c4318c5f0, + FFFF4318c6587f8c4318c658, + FFFF4318c6c07f8c4318c6c0, + FFFF4318c7287f8c4318c728, + FFFF4318c7907f8c4318c790, + FFFF4318c7f87f8c4318c7f8, + FFFF4318c8607f8c4318c860, + FFFF4318c8c87f8c4318c8c8, + FFFF4318c9307f8c4318c930, + FFFF4318c9987f8c4318c998, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2165,103 +2165,103 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PxPvdSDK */ - FFFF128107a87fe8128107a8 /* src/PxProfileEventImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128107a87fe8128107a8 /* src/PxProfileEventImpl.cpp */; }; - FFFF128108107fe812810810 /* src/PxPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128108107fe812810810 /* src/PxPvd.cpp */; }; - FFFF128108787fe812810878 /* src/PxPvdDataStream.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128108787fe812810878 /* src/PxPvdDataStream.cpp */; }; - FFFF128108e07fe8128108e0 /* src/PxPvdDefaultFileTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128108e07fe8128108e0 /* src/PxPvdDefaultFileTransport.cpp */; }; - FFFF128109487fe812810948 /* src/PxPvdDefaultSocketTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128109487fe812810948 /* src/PxPvdDefaultSocketTransport.cpp */; }; - FFFF128109b07fe8128109b0 /* src/PxPvdImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128109b07fe8128109b0 /* src/PxPvdImpl.cpp */; }; - FFFF12810a187fe812810a18 /* src/PxPvdMemClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12810a187fe812810a18 /* src/PxPvdMemClient.cpp */; }; - FFFF12810a807fe812810a80 /* src/PxPvdObjectModelMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12810a807fe812810a80 /* src/PxPvdObjectModelMetaData.cpp */; }; - FFFF12810ae87fe812810ae8 /* src/PxPvdObjectRegistrar.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12810ae87fe812810ae8 /* src/PxPvdObjectRegistrar.cpp */; }; - FFFF12810b507fe812810b50 /* src/PxPvdProfileZoneClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12810b507fe812810b50 /* src/PxPvdProfileZoneClient.cpp */; }; - FFFF12810bb87fe812810bb8 /* src/PxPvdUserRenderer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD12810bb87fe812810bb8 /* src/PxPvdUserRenderer.cpp */; }; + FFFF440205a87f8c440205a8 /* src/PxProfileEventImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD440205a87f8c440205a8 /* src/PxProfileEventImpl.cpp */; }; + FFFF440206107f8c44020610 /* src/PxPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD440206107f8c44020610 /* src/PxPvd.cpp */; }; + FFFF440206787f8c44020678 /* src/PxPvdDataStream.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD440206787f8c44020678 /* src/PxPvdDataStream.cpp */; }; + FFFF440206e07f8c440206e0 /* src/PxPvdDefaultFileTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD440206e07f8c440206e0 /* src/PxPvdDefaultFileTransport.cpp */; }; + FFFF440207487f8c44020748 /* src/PxPvdDefaultSocketTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD440207487f8c44020748 /* src/PxPvdDefaultSocketTransport.cpp */; }; + FFFF440207b07f8c440207b0 /* src/PxPvdImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD440207b07f8c440207b0 /* src/PxPvdImpl.cpp */; }; + FFFF440208187f8c44020818 /* src/PxPvdMemClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD440208187f8c44020818 /* src/PxPvdMemClient.cpp */; }; + FFFF440208807f8c44020880 /* src/PxPvdObjectModelMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD440208807f8c44020880 /* src/PxPvdObjectModelMetaData.cpp */; }; + FFFF440208e87f8c440208e8 /* src/PxPvdObjectRegistrar.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD440208e87f8c440208e8 /* src/PxPvdObjectRegistrar.cpp */; }; + FFFF440209507f8c44020950 /* src/PxPvdProfileZoneClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD440209507f8c44020950 /* src/PxPvdProfileZoneClient.cpp */; }; + FFFF440209b87f8c440209b8 /* src/PxPvdUserRenderer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD440209b87f8c440209b8 /* src/PxPvdUserRenderer.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD12609f207fe812609f20 /* PxPvdSDK */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxPvdSDK"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD1260ccb07fe81260ccb0 /* PxPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvd.h"; path = "../../../../PxShared/include/pvd/PxPvd.h"; sourceTree = SOURCE_ROOT; }; - FFFD1260cd187fe81260cd18 /* PxPvdTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvdTransport.h"; path = "../../../../PxShared/include/pvd/PxPvdTransport.h"; sourceTree = SOURCE_ROOT; }; - FFFD128104007fe812810400 /* include/PsPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPvd.h"; path = "../../../../PxShared/src/pvd/include/PsPvd.h"; sourceTree = SOURCE_ROOT; }; - FFFD128104687fe812810468 /* include/PxProfileAllocatorWrapper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxProfileAllocatorWrapper.h"; path = "../../../../PxShared/src/pvd/include/PxProfileAllocatorWrapper.h"; sourceTree = SOURCE_ROOT; }; - FFFD128104d07fe8128104d0 /* include/PxPvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdClient.h"; path = "../../../../PxShared/src/pvd/include/PxPvdClient.h"; sourceTree = SOURCE_ROOT; }; - FFFD128105387fe812810538 /* include/PxPvdDataStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStream.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStream.h"; sourceTree = SOURCE_ROOT; }; - FFFD128105a07fe8128105a0 /* include/PxPvdDataStreamHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStreamHelpers.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStreamHelpers.h"; sourceTree = SOURCE_ROOT; }; - FFFD128106087fe812810608 /* include/PxPvdErrorCodes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdErrorCodes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdErrorCodes.h"; sourceTree = SOURCE_ROOT; }; - FFFD128106707fe812810670 /* include/PxPvdObjectModelBaseTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdObjectModelBaseTypes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdObjectModelBaseTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD128106d87fe8128106d8 /* include/PxPvdRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdRenderBuffer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD128107407fe812810740 /* include/PxPvdUserRenderer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdUserRenderer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdUserRenderer.h"; sourceTree = SOURCE_ROOT; }; - FFFD128107a87fe8128107a8 /* src/PxProfileEventImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxProfileEventImpl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128108107fe812810810 /* src/PxPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvd.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvd.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128108787fe812810878 /* src/PxPvdDataStream.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDataStream.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDataStream.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128108e07fe8128108e0 /* src/PxPvdDefaultFileTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128109487fe812810948 /* src/PxPvdDefaultSocketTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128109b07fe8128109b0 /* src/PxPvdImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD12810a187fe812810a18 /* src/PxPvdMemClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD12810a807fe812810a80 /* src/PxPvdObjectModelMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD12810ae87fe812810ae8 /* src/PxPvdObjectRegistrar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD12810b507fe812810b50 /* src/PxPvdProfileZoneClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD12810bb87fe812810bb8 /* src/PxPvdUserRenderer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderer.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderer.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD12810c207fe812810c20 /* src/PxProfileBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileBase.h"; path = "../../../../PxShared/src/pvd/src/PxProfileBase.h"; sourceTree = SOURCE_ROOT; }; - FFFD12810c887fe812810c88 /* src/PxProfileCompileTimeEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileCompileTimeEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileCompileTimeEventFilter.h"; sourceTree = SOURCE_ROOT; }; - FFFD12810cf07fe812810cf0 /* src/PxProfileContextProvider.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProvider.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProvider.h"; sourceTree = SOURCE_ROOT; }; - FFFD12810d587fe812810d58 /* src/PxProfileContextProviderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProviderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProviderImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD12810dc07fe812810dc0 /* src/PxProfileDataBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD12810e287fe812810e28 /* src/PxProfileDataParsing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataParsing.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataParsing.h"; sourceTree = SOURCE_ROOT; }; - FFFD12810e907fe812810e90 /* src/PxProfileEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD12810ef87fe812810ef8 /* src/PxProfileEventBufferAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferAtomic.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferAtomic.h"; sourceTree = SOURCE_ROOT; }; - FFFD12810f607fe812810f60 /* src/PxProfileEventBufferClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClient.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClient.h"; sourceTree = SOURCE_ROOT; }; - FFFD12810fc87fe812810fc8 /* src/PxProfileEventBufferClientManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClientManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClientManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD128110307fe812811030 /* src/PxProfileEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventFilter.h"; sourceTree = SOURCE_ROOT; }; - FFFD128110987fe812811098 /* src/PxProfileEventHandler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventHandler.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventHandler.h"; sourceTree = SOURCE_ROOT; }; - FFFD128111007fe812811100 /* src/PxProfileEventId.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventId.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventId.h"; sourceTree = SOURCE_ROOT; }; - FFFD128111687fe812811168 /* src/PxProfileEventMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventMutex.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventMutex.h"; sourceTree = SOURCE_ROOT; }; - FFFD128111d07fe8128111d0 /* src/PxProfileEventNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventNames.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventNames.h"; sourceTree = SOURCE_ROOT; }; - FFFD128112387fe812811238 /* src/PxProfileEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventParser.h"; sourceTree = SOURCE_ROOT; }; - FFFD128112a07fe8128112a0 /* src/PxProfileEventSender.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSender.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSender.h"; sourceTree = SOURCE_ROOT; }; - FFFD128113087fe812811308 /* src/PxProfileEventSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSerialization.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSerialization.h"; sourceTree = SOURCE_ROOT; }; - FFFD128113707fe812811370 /* src/PxProfileEventSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSystem.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSystem.h"; sourceTree = SOURCE_ROOT; }; - FFFD128113d87fe8128113d8 /* src/PxProfileEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEvents.h"; sourceTree = SOURCE_ROOT; }; - FFFD128114407fe812811440 /* src/PxProfileMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemory.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemory.h"; sourceTree = SOURCE_ROOT; }; - FFFD128114a87fe8128114a8 /* src/PxProfileMemoryBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD128115107fe812811510 /* src/PxProfileMemoryEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD128115787fe812811578 /* src/PxProfileMemoryEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventParser.h"; sourceTree = SOURCE_ROOT; }; - FFFD128115e07fe8128115e0 /* src/PxProfileMemoryEventRecorder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventRecorder.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventRecorder.h"; sourceTree = SOURCE_ROOT; }; - FFFD128116487fe812811648 /* src/PxProfileMemoryEventReflexiveWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventReflexiveWriter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventReflexiveWriter.h"; sourceTree = SOURCE_ROOT; }; - FFFD128116b07fe8128116b0 /* src/PxProfileMemoryEventSummarizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventSummarizer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventSummarizer.h"; sourceTree = SOURCE_ROOT; }; - FFFD128117187fe812811718 /* src/PxProfileMemoryEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD128117807fe812811780 /* src/PxProfileMemoryEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEvents.h"; sourceTree = SOURCE_ROOT; }; - FFFD128117e87fe8128117e8 /* src/PxProfileScopedEvent.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedEvent.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedEvent.h"; sourceTree = SOURCE_ROOT; }; - FFFD128118507fe812811850 /* src/PxProfileScopedMutexLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedMutexLock.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedMutexLock.h"; sourceTree = SOURCE_ROOT; }; - FFFD128118b87fe8128118b8 /* src/PxProfileZone.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZone.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZone.h"; sourceTree = SOURCE_ROOT; }; - FFFD128119207fe812811920 /* src/PxProfileZoneImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD128119887fe812811988 /* src/PxProfileZoneManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD128119f07fe8128119f0 /* src/PxProfileZoneManagerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManagerImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManagerImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD12811a587fe812811a58 /* src/PxPvdBits.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdBits.h"; path = "../../../../PxShared/src/pvd/src/PxPvdBits.h"; sourceTree = SOURCE_ROOT; }; - FFFD12811ac07fe812811ac0 /* src/PxPvdByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdByteStreams.h"; sourceTree = SOURCE_ROOT; }; - FFFD12811b287fe812811b28 /* src/PxPvdCommStreamEventSink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEventSink.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEventSink.h"; sourceTree = SOURCE_ROOT; }; - FFFD12811b907fe812811b90 /* src/PxPvdCommStreamEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEvents.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEvents.h"; sourceTree = SOURCE_ROOT; }; - FFFD12811bf87fe812811bf8 /* src/PxPvdCommStreamSDKEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamSDKEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamSDKEventTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD12811c607fe812811c60 /* src/PxPvdCommStreamTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD12811cc87fe812811cc8 /* src/PxPvdDefaultFileTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.h"; sourceTree = SOURCE_ROOT; }; - FFFD12811d307fe812811d30 /* src/PxPvdDefaultSocketTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.h"; sourceTree = SOURCE_ROOT; }; - FFFD12811d987fe812811d98 /* src/PxPvdFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdFoundation.h"; path = "../../../../PxShared/src/pvd/src/PxPvdFoundation.h"; sourceTree = SOURCE_ROOT; }; - FFFD12811e007fe812811e00 /* src/PxPvdImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD12811e687fe812811e68 /* src/PxPvdInternalByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdInternalByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdInternalByteStreams.h"; sourceTree = SOURCE_ROOT; }; - FFFD12811ed07fe812811ed0 /* src/PxPvdMarshalling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMarshalling.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMarshalling.h"; sourceTree = SOURCE_ROOT; }; - FFFD12811f387fe812811f38 /* src/PxPvdMemClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.h"; sourceTree = SOURCE_ROOT; }; - FFFD12811fa07fe812811fa0 /* src/PxPvdObjectModel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModel.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModel.h"; sourceTree = SOURCE_ROOT; }; - FFFD128120087fe812812008 /* src/PxPvdObjectModelInternalTypeDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypeDefs.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypeDefs.h"; sourceTree = SOURCE_ROOT; }; - FFFD128120707fe812812070 /* src/PxPvdObjectModelInternalTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD128120d87fe8128120d8 /* src/PxPvdObjectModelMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.h"; sourceTree = SOURCE_ROOT; }; - FFFD128121407fe812812140 /* src/PxPvdObjectRegistrar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.h"; sourceTree = SOURCE_ROOT; }; - FFFD128121a87fe8128121a8 /* src/PxPvdProfileZoneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.h"; sourceTree = SOURCE_ROOT; }; - FFFD128122107fe812812210 /* src/PxPvdUserRenderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD128122787fe812812278 /* src/PxPvdUserRenderTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD43c33f507f8c43c33f50 /* PxPvdSDK */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxPvdSDK"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD43c369207f8c43c36920 /* PxPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvd.h"; path = "../../../../PxShared/include/pvd/PxPvd.h"; sourceTree = SOURCE_ROOT; }; + FFFD43c369887f8c43c36988 /* PxPvdTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvdTransport.h"; path = "../../../../PxShared/include/pvd/PxPvdTransport.h"; sourceTree = SOURCE_ROOT; }; + FFFD440202007f8c44020200 /* include/PsPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPvd.h"; path = "../../../../PxShared/src/pvd/include/PsPvd.h"; sourceTree = SOURCE_ROOT; }; + FFFD440202687f8c44020268 /* include/PxProfileAllocatorWrapper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxProfileAllocatorWrapper.h"; path = "../../../../PxShared/src/pvd/include/PxProfileAllocatorWrapper.h"; sourceTree = SOURCE_ROOT; }; + FFFD440202d07f8c440202d0 /* include/PxPvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdClient.h"; path = "../../../../PxShared/src/pvd/include/PxPvdClient.h"; sourceTree = SOURCE_ROOT; }; + FFFD440203387f8c44020338 /* include/PxPvdDataStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStream.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStream.h"; sourceTree = SOURCE_ROOT; }; + FFFD440203a07f8c440203a0 /* include/PxPvdDataStreamHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStreamHelpers.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStreamHelpers.h"; sourceTree = SOURCE_ROOT; }; + FFFD440204087f8c44020408 /* include/PxPvdErrorCodes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdErrorCodes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdErrorCodes.h"; sourceTree = SOURCE_ROOT; }; + FFFD440204707f8c44020470 /* include/PxPvdObjectModelBaseTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdObjectModelBaseTypes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdObjectModelBaseTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD440204d87f8c440204d8 /* include/PxPvdRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdRenderBuffer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD440205407f8c44020540 /* include/PxPvdUserRenderer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdUserRenderer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdUserRenderer.h"; sourceTree = SOURCE_ROOT; }; + FFFD440205a87f8c440205a8 /* src/PxProfileEventImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxProfileEventImpl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440206107f8c44020610 /* src/PxPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvd.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvd.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440206787f8c44020678 /* src/PxPvdDataStream.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDataStream.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDataStream.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440206e07f8c440206e0 /* src/PxPvdDefaultFileTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440207487f8c44020748 /* src/PxPvdDefaultSocketTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440207b07f8c440207b0 /* src/PxPvdImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440208187f8c44020818 /* src/PxPvdMemClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440208807f8c44020880 /* src/PxPvdObjectModelMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440208e87f8c440208e8 /* src/PxPvdObjectRegistrar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440209507f8c44020950 /* src/PxPvdProfileZoneClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440209b87f8c440209b8 /* src/PxPvdUserRenderer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderer.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderer.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD44020a207f8c44020a20 /* src/PxProfileBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileBase.h"; path = "../../../../PxShared/src/pvd/src/PxProfileBase.h"; sourceTree = SOURCE_ROOT; }; + FFFD44020a887f8c44020a88 /* src/PxProfileCompileTimeEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileCompileTimeEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileCompileTimeEventFilter.h"; sourceTree = SOURCE_ROOT; }; + FFFD44020af07f8c44020af0 /* src/PxProfileContextProvider.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProvider.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProvider.h"; sourceTree = SOURCE_ROOT; }; + FFFD44020b587f8c44020b58 /* src/PxProfileContextProviderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProviderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProviderImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD44020bc07f8c44020bc0 /* src/PxProfileDataBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD44020c287f8c44020c28 /* src/PxProfileDataParsing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataParsing.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataParsing.h"; sourceTree = SOURCE_ROOT; }; + FFFD44020c907f8c44020c90 /* src/PxProfileEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD44020cf87f8c44020cf8 /* src/PxProfileEventBufferAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferAtomic.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferAtomic.h"; sourceTree = SOURCE_ROOT; }; + FFFD44020d607f8c44020d60 /* src/PxProfileEventBufferClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClient.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClient.h"; sourceTree = SOURCE_ROOT; }; + FFFD44020dc87f8c44020dc8 /* src/PxProfileEventBufferClientManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClientManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClientManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD44020e307f8c44020e30 /* src/PxProfileEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventFilter.h"; sourceTree = SOURCE_ROOT; }; + FFFD44020e987f8c44020e98 /* src/PxProfileEventHandler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventHandler.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventHandler.h"; sourceTree = SOURCE_ROOT; }; + FFFD44020f007f8c44020f00 /* src/PxProfileEventId.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventId.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventId.h"; sourceTree = SOURCE_ROOT; }; + FFFD44020f687f8c44020f68 /* src/PxProfileEventMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventMutex.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventMutex.h"; sourceTree = SOURCE_ROOT; }; + FFFD44020fd07f8c44020fd0 /* src/PxProfileEventNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventNames.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventNames.h"; sourceTree = SOURCE_ROOT; }; + FFFD440210387f8c44021038 /* src/PxProfileEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventParser.h"; sourceTree = SOURCE_ROOT; }; + FFFD440210a07f8c440210a0 /* src/PxProfileEventSender.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSender.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSender.h"; sourceTree = SOURCE_ROOT; }; + FFFD440211087f8c44021108 /* src/PxProfileEventSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSerialization.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSerialization.h"; sourceTree = SOURCE_ROOT; }; + FFFD440211707f8c44021170 /* src/PxProfileEventSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSystem.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSystem.h"; sourceTree = SOURCE_ROOT; }; + FFFD440211d87f8c440211d8 /* src/PxProfileEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEvents.h"; sourceTree = SOURCE_ROOT; }; + FFFD440212407f8c44021240 /* src/PxProfileMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemory.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemory.h"; sourceTree = SOURCE_ROOT; }; + FFFD440212a87f8c440212a8 /* src/PxProfileMemoryBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD440213107f8c44021310 /* src/PxProfileMemoryEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD440213787f8c44021378 /* src/PxProfileMemoryEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventParser.h"; sourceTree = SOURCE_ROOT; }; + FFFD440213e07f8c440213e0 /* src/PxProfileMemoryEventRecorder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventRecorder.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventRecorder.h"; sourceTree = SOURCE_ROOT; }; + FFFD440214487f8c44021448 /* src/PxProfileMemoryEventReflexiveWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventReflexiveWriter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventReflexiveWriter.h"; sourceTree = SOURCE_ROOT; }; + FFFD440214b07f8c440214b0 /* src/PxProfileMemoryEventSummarizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventSummarizer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventSummarizer.h"; sourceTree = SOURCE_ROOT; }; + FFFD440215187f8c44021518 /* src/PxProfileMemoryEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD440215807f8c44021580 /* src/PxProfileMemoryEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEvents.h"; sourceTree = SOURCE_ROOT; }; + FFFD440215e87f8c440215e8 /* src/PxProfileScopedEvent.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedEvent.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedEvent.h"; sourceTree = SOURCE_ROOT; }; + FFFD440216507f8c44021650 /* src/PxProfileScopedMutexLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedMutexLock.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedMutexLock.h"; sourceTree = SOURCE_ROOT; }; + FFFD440216b87f8c440216b8 /* src/PxProfileZone.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZone.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZone.h"; sourceTree = SOURCE_ROOT; }; + FFFD440217207f8c44021720 /* src/PxProfileZoneImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD440217887f8c44021788 /* src/PxProfileZoneManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD440217f07f8c440217f0 /* src/PxProfileZoneManagerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManagerImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManagerImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD440218587f8c44021858 /* src/PxPvdBits.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdBits.h"; path = "../../../../PxShared/src/pvd/src/PxPvdBits.h"; sourceTree = SOURCE_ROOT; }; + FFFD440218c07f8c440218c0 /* src/PxPvdByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdByteStreams.h"; sourceTree = SOURCE_ROOT; }; + FFFD440219287f8c44021928 /* src/PxPvdCommStreamEventSink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEventSink.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEventSink.h"; sourceTree = SOURCE_ROOT; }; + FFFD440219907f8c44021990 /* src/PxPvdCommStreamEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEvents.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEvents.h"; sourceTree = SOURCE_ROOT; }; + FFFD440219f87f8c440219f8 /* src/PxPvdCommStreamSDKEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamSDKEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamSDKEventTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD44021a607f8c44021a60 /* src/PxPvdCommStreamTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD44021ac87f8c44021ac8 /* src/PxPvdDefaultFileTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.h"; sourceTree = SOURCE_ROOT; }; + FFFD44021b307f8c44021b30 /* src/PxPvdDefaultSocketTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.h"; sourceTree = SOURCE_ROOT; }; + FFFD44021b987f8c44021b98 /* src/PxPvdFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdFoundation.h"; path = "../../../../PxShared/src/pvd/src/PxPvdFoundation.h"; sourceTree = SOURCE_ROOT; }; + FFFD44021c007f8c44021c00 /* src/PxPvdImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD44021c687f8c44021c68 /* src/PxPvdInternalByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdInternalByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdInternalByteStreams.h"; sourceTree = SOURCE_ROOT; }; + FFFD44021cd07f8c44021cd0 /* src/PxPvdMarshalling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMarshalling.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMarshalling.h"; sourceTree = SOURCE_ROOT; }; + FFFD44021d387f8c44021d38 /* src/PxPvdMemClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.h"; sourceTree = SOURCE_ROOT; }; + FFFD44021da07f8c44021da0 /* src/PxPvdObjectModel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModel.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModel.h"; sourceTree = SOURCE_ROOT; }; + FFFD44021e087f8c44021e08 /* src/PxPvdObjectModelInternalTypeDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypeDefs.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypeDefs.h"; sourceTree = SOURCE_ROOT; }; + FFFD44021e707f8c44021e70 /* src/PxPvdObjectModelInternalTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD44021ed87f8c44021ed8 /* src/PxPvdObjectModelMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.h"; sourceTree = SOURCE_ROOT; }; + FFFD44021f407f8c44021f40 /* src/PxPvdObjectRegistrar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.h"; sourceTree = SOURCE_ROOT; }; + FFFD44021fa87f8c44021fa8 /* src/PxPvdProfileZoneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.h"; sourceTree = SOURCE_ROOT; }; + FFFD440220107f8c44022010 /* src/PxPvdUserRenderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD440220787f8c44022078 /* 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 */ - FFF212609f207fe812609f20 /* Resources */ = { + FFF243c33f507f8c43c33f50 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2271,7 +2271,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC12609f207fe812609f20 /* Frameworks */ = { + FFFC43c33f507f8c43c33f50 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2281,21 +2281,21 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF812609f207fe812609f20 /* Sources */ = { + FFF843c33f507f8c43c33f50 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF128107a87fe8128107a8, - FFFF128108107fe812810810, - FFFF128108787fe812810878, - FFFF128108e07fe8128108e0, - FFFF128109487fe812810948, - FFFF128109b07fe8128109b0, - FFFF12810a187fe812810a18, - FFFF12810a807fe812810a80, - FFFF12810ae87fe812810ae8, - FFFF12810b507fe812810b50, - FFFF12810bb87fe812810bb8, + FFFF440205a87f8c440205a8, + FFFF440206107f8c44020610, + FFFF440206787f8c44020678, + FFFF440206e07f8c440206e0, + FFFF440207487f8c44020748, + FFFF440207b07f8c440207b0, + FFFF440208187f8c44020818, + FFFF440208807f8c44020880, + FFFF440208e87f8c440208e8, + FFFF440209507f8c44020950, + FFFF440209b87f8c440209b8, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2304,108 +2304,108 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF4126081907fe812608190 /* PBXTargetDependency */ = { + FFF443c046d07f8c43c046d0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA121657c07fe8121657c0 /* PxFoundation */; - targetProxy = FFF5121657c07fe8121657c0 /* PBXContainerItemProxy */; + target = FFFA438816407f8c43881640 /* PxFoundation */; + targetProxy = FFF5438816407f8c43881640 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of LowLevel */ - FFFF125cddd07fe8125cddd0 /* px_globals.cpp in API Source */= { isa = PBXBuildFile; fileRef = FFFD125cddd07fe8125cddd0 /* px_globals.cpp */; }; - FFFF12133aa07fe812133aa0 /* PxsCCD.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD12133aa07fe812133aa0 /* PxsCCD.cpp */; }; - FFFF12133b087fe812133b08 /* PxsContactManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD12133b087fe812133b08 /* PxsContactManager.cpp */; }; - FFFF12133b707fe812133b70 /* PxsContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD12133b707fe812133b70 /* PxsContext.cpp */; }; - FFFF12133bd87fe812133bd8 /* PxsDefaultMemoryManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD12133bd87fe812133bd8 /* PxsDefaultMemoryManager.cpp */; }; - FFFF12133c407fe812133c40 /* PxsIslandSim.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD12133c407fe812133c40 /* PxsIslandSim.cpp */; }; - FFFF12133ca87fe812133ca8 /* PxsMaterialCombiner.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD12133ca87fe812133ca8 /* PxsMaterialCombiner.cpp */; }; - FFFF12133d107fe812133d10 /* PxsNphaseImplementationContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD12133d107fe812133d10 /* PxsNphaseImplementationContext.cpp */; }; - FFFF12133d787fe812133d78 /* PxsSimpleIslandManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD12133d787fe812133d78 /* PxsSimpleIslandManager.cpp */; }; - FFFF119b56007fe8119b5600 /* collision/PxcContact.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD119b56007fe8119b5600 /* collision/PxcContact.cpp */; }; - FFFF119b56687fe8119b5668 /* pipeline/PxcContactCache.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD119b56687fe8119b5668 /* pipeline/PxcContactCache.cpp */; }; - FFFF119b56d07fe8119b56d0 /* pipeline/PxcContactMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD119b56d07fe8119b56d0 /* pipeline/PxcContactMethodImpl.cpp */; }; - FFFF119b57387fe8119b5738 /* pipeline/PxcMaterialHeightField.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD119b57387fe8119b5738 /* pipeline/PxcMaterialHeightField.cpp */; }; - FFFF119b57a07fe8119b57a0 /* pipeline/PxcMaterialMesh.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD119b57a07fe8119b57a0 /* pipeline/PxcMaterialMesh.cpp */; }; - FFFF119b58087fe8119b5808 /* pipeline/PxcMaterialMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD119b58087fe8119b5808 /* pipeline/PxcMaterialMethodImpl.cpp */; }; - FFFF119b58707fe8119b5870 /* pipeline/PxcMaterialShape.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD119b58707fe8119b5870 /* pipeline/PxcMaterialShape.cpp */; }; - FFFF119b58d87fe8119b58d8 /* pipeline/PxcNpBatch.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD119b58d87fe8119b58d8 /* pipeline/PxcNpBatch.cpp */; }; - FFFF119b59407fe8119b5940 /* pipeline/PxcNpCacheStreamPair.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD119b59407fe8119b5940 /* pipeline/PxcNpCacheStreamPair.cpp */; }; - FFFF119b59a87fe8119b59a8 /* pipeline/PxcNpContactPrepShared.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD119b59a87fe8119b59a8 /* pipeline/PxcNpContactPrepShared.cpp */; }; - FFFF119b5a107fe8119b5a10 /* pipeline/PxcNpMemBlockPool.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD119b5a107fe8119b5a10 /* pipeline/PxcNpMemBlockPool.cpp */; }; - FFFF119b5a787fe8119b5a78 /* pipeline/PxcNpThreadContext.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD119b5a787fe8119b5a78 /* pipeline/PxcNpThreadContext.cpp */; }; + FFFF43c54e107f8c43c54e10 /* px_globals.cpp in API Source */= { isa = PBXBuildFile; fileRef = FFFD43c54e107f8c43c54e10 /* px_globals.cpp */; }; + FFFF43c584507f8c43c58450 /* PxsCCD.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD43c584507f8c43c58450 /* PxsCCD.cpp */; }; + FFFF43c584b87f8c43c584b8 /* PxsContactManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD43c584b87f8c43c584b8 /* PxsContactManager.cpp */; }; + FFFF43c585207f8c43c58520 /* PxsContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD43c585207f8c43c58520 /* PxsContext.cpp */; }; + FFFF43c585887f8c43c58588 /* PxsDefaultMemoryManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD43c585887f8c43c58588 /* PxsDefaultMemoryManager.cpp */; }; + FFFF43c585f07f8c43c585f0 /* PxsIslandSim.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD43c585f07f8c43c585f0 /* PxsIslandSim.cpp */; }; + FFFF43c586587f8c43c58658 /* PxsMaterialCombiner.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD43c586587f8c43c58658 /* PxsMaterialCombiner.cpp */; }; + FFFF43c586c07f8c43c586c0 /* PxsNphaseImplementationContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD43c586c07f8c43c586c0 /* PxsNphaseImplementationContext.cpp */; }; + FFFF43c587287f8c43c58728 /* PxsSimpleIslandManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD43c587287f8c43c58728 /* PxsSimpleIslandManager.cpp */; }; + FFFF4401fa007f8c4401fa00 /* collision/PxcContact.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD4401fa007f8c4401fa00 /* collision/PxcContact.cpp */; }; + FFFF4401fa687f8c4401fa68 /* pipeline/PxcContactCache.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD4401fa687f8c4401fa68 /* pipeline/PxcContactCache.cpp */; }; + FFFF4401fad07f8c4401fad0 /* pipeline/PxcContactMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD4401fad07f8c4401fad0 /* pipeline/PxcContactMethodImpl.cpp */; }; + FFFF4401fb387f8c4401fb38 /* pipeline/PxcMaterialHeightField.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD4401fb387f8c4401fb38 /* pipeline/PxcMaterialHeightField.cpp */; }; + FFFF4401fba07f8c4401fba0 /* pipeline/PxcMaterialMesh.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD4401fba07f8c4401fba0 /* pipeline/PxcMaterialMesh.cpp */; }; + FFFF4401fc087f8c4401fc08 /* pipeline/PxcMaterialMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD4401fc087f8c4401fc08 /* pipeline/PxcMaterialMethodImpl.cpp */; }; + FFFF4401fc707f8c4401fc70 /* pipeline/PxcMaterialShape.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD4401fc707f8c4401fc70 /* pipeline/PxcMaterialShape.cpp */; }; + FFFF4401fcd87f8c4401fcd8 /* pipeline/PxcNpBatch.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD4401fcd87f8c4401fcd8 /* pipeline/PxcNpBatch.cpp */; }; + FFFF4401fd407f8c4401fd40 /* pipeline/PxcNpCacheStreamPair.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD4401fd407f8c4401fd40 /* pipeline/PxcNpCacheStreamPair.cpp */; }; + FFFF4401fda87f8c4401fda8 /* pipeline/PxcNpContactPrepShared.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD4401fda87f8c4401fda8 /* pipeline/PxcNpContactPrepShared.cpp */; }; + FFFF4401fe107f8c4401fe10 /* pipeline/PxcNpMemBlockPool.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD4401fe107f8c4401fe10 /* pipeline/PxcNpMemBlockPool.cpp */; }; + FFFF4401fe787f8c4401fe78 /* pipeline/PxcNpThreadContext.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD4401fe787f8c4401fe78 /* pipeline/PxcNpThreadContext.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD125b5b707fe8125b5b70 /* LowLevel */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevel"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD125cddd07fe8125cddd0 /* px_globals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "px_globals.cpp"; path = "../../LowLevel/API/src/px_globals.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD125ba2d07fe8125ba2d0 /* PxsMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCore.h"; path = "../../LowLevel/API/include/PxsMaterialCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD125ba3387fe8125ba338 /* PxsMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialManager.h"; path = "../../LowLevel/API/include/PxsMaterialManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD125ba3a07fe8125ba3a0 /* PxvConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvConfig.h"; path = "../../LowLevel/API/include/PxvConfig.h"; sourceTree = SOURCE_ROOT; }; - FFFD125ba4087fe8125ba408 /* PxvContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvContext.h"; path = "../../LowLevel/API/include/PxvContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD125ba4707fe8125ba470 /* PxvDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvDynamics.h"; path = "../../LowLevel/API/include/PxvDynamics.h"; sourceTree = SOURCE_ROOT; }; - FFFD125ba4d87fe8125ba4d8 /* PxvGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGeometry.h"; path = "../../LowLevel/API/include/PxvGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFD125ba5407fe8125ba540 /* PxvGlobals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGlobals.h"; path = "../../LowLevel/API/include/PxvGlobals.h"; sourceTree = SOURCE_ROOT; }; - FFFD125ba5a87fe8125ba5a8 /* PxvManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvManager.h"; path = "../../LowLevel/API/include/PxvManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD125ba6107fe8125ba610 /* PxvSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvSimStats.h"; path = "../../LowLevel/API/include/PxvSimStats.h"; sourceTree = SOURCE_ROOT; }; - FFFD12133aa07fe812133aa0 /* PxsCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.cpp"; path = "../../LowLevel/software/src/PxsCCD.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD12133b087fe812133b08 /* PxsContactManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.cpp"; path = "../../LowLevel/software/src/PxsContactManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD12133b707fe812133b70 /* PxsContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.cpp"; path = "../../LowLevel/software/src/PxsContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD12133bd87fe812133bd8 /* PxsDefaultMemoryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.cpp"; path = "../../LowLevel/software/src/PxsDefaultMemoryManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD12133c407fe812133c40 /* PxsIslandSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.cpp"; path = "../../LowLevel/software/src/PxsIslandSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD12133ca87fe812133ca8 /* PxsMaterialCombiner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.cpp"; path = "../../LowLevel/software/src/PxsMaterialCombiner.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD12133d107fe812133d10 /* PxsNphaseImplementationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.cpp"; path = "../../LowLevel/software/src/PxsNphaseImplementationContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD12133d787fe812133d78 /* PxsSimpleIslandManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.cpp"; path = "../../LowLevel/software/src/PxsSimpleIslandManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119af2007fe8119af200 /* PxsBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsBodySim.h"; path = "../../LowLevel/software/include/PxsBodySim.h"; sourceTree = SOURCE_ROOT; }; - FFFD119af2687fe8119af268 /* PxsCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.h"; path = "../../LowLevel/software/include/PxsCCD.h"; sourceTree = SOURCE_ROOT; }; - FFFD119af2d07fe8119af2d0 /* PxsContactManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.h"; path = "../../LowLevel/software/include/PxsContactManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD119af3387fe8119af338 /* PxsContactManagerState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManagerState.h"; path = "../../LowLevel/software/include/PxsContactManagerState.h"; sourceTree = SOURCE_ROOT; }; - FFFD119af3a07fe8119af3a0 /* PxsContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.h"; path = "../../LowLevel/software/include/PxsContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD119af4087fe8119af408 /* PxsDefaultMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.h"; path = "../../LowLevel/software/include/PxsDefaultMemoryManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD119af4707fe8119af470 /* PxsHeapMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsHeapMemoryAllocator.h"; path = "../../LowLevel/software/include/PxsHeapMemoryAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFD119af4d87fe8119af4d8 /* PxsIncrementalConstraintPartitioning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIncrementalConstraintPartitioning.h"; path = "../../LowLevel/software/include/PxsIncrementalConstraintPartitioning.h"; sourceTree = SOURCE_ROOT; }; - FFFD119af5407fe8119af540 /* PxsIslandManagerTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandManagerTypes.h"; path = "../../LowLevel/software/include/PxsIslandManagerTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD119af5a87fe8119af5a8 /* PxsIslandSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.h"; path = "../../LowLevel/software/include/PxsIslandSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD119af6107fe8119af610 /* PxsKernelWrangler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsKernelWrangler.h"; path = "../../LowLevel/software/include/PxsKernelWrangler.h"; sourceTree = SOURCE_ROOT; }; - FFFD119af6787fe8119af678 /* PxsMaterialCombiner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.h"; path = "../../LowLevel/software/include/PxsMaterialCombiner.h"; sourceTree = SOURCE_ROOT; }; - FFFD119af6e07fe8119af6e0 /* PxsMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMemoryManager.h"; path = "../../LowLevel/software/include/PxsMemoryManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD119af7487fe8119af748 /* PxsNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxsNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD119af7b07fe8119af7b0 /* PxsRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsRigidBody.h"; path = "../../LowLevel/software/include/PxsRigidBody.h"; sourceTree = SOURCE_ROOT; }; - FFFD119af8187fe8119af818 /* PxsShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsShapeSim.h"; path = "../../LowLevel/software/include/PxsShapeSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD119af8807fe8119af880 /* PxsSimpleIslandManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.h"; path = "../../LowLevel/software/include/PxsSimpleIslandManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD119af8e87fe8119af8e8 /* PxsSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimulationController.h"; path = "../../LowLevel/software/include/PxsSimulationController.h"; sourceTree = SOURCE_ROOT; }; - FFFD119af9507fe8119af950 /* PxsTransformCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsTransformCache.h"; path = "../../LowLevel/software/include/PxsTransformCache.h"; sourceTree = SOURCE_ROOT; }; - FFFD119af9b87fe8119af9b8 /* PxvNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxvNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD119b56007fe8119b5600 /* collision/PxcContact.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContact.cpp"; path = "../../LowLevel/common/src/collision/PxcContact.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119b56687fe8119b5668 /* pipeline/PxcContactCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactCache.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119b56d07fe8119b56d0 /* pipeline/PxcContactMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactMethodImpl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119b57387fe8119b5738 /* pipeline/PxcMaterialHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialHeightField.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119b57a07fe8119b57a0 /* pipeline/PxcMaterialMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMesh.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119b58087fe8119b5808 /* pipeline/PxcMaterialMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMethodImpl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119b58707fe8119b5870 /* pipeline/PxcMaterialShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialShape.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialShape.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119b58d87fe8119b58d8 /* pipeline/PxcNpBatch.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpBatch.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119b59407fe8119b5940 /* pipeline/PxcNpCacheStreamPair.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpCacheStreamPair.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119b59a87fe8119b59a8 /* pipeline/PxcNpContactPrepShared.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpContactPrepShared.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119b5a107fe8119b5a10 /* pipeline/PxcNpMemBlockPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpMemBlockPool.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119b5a787fe8119b5a78 /* pipeline/PxcNpThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpThreadContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119b5e007fe8119b5e00 /* collision/PxcContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContactMethodImpl.h"; path = "../../LowLevel/common/include/collision/PxcContactMethodImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD119b5e687fe8119b5e68 /* pipeline/PxcCCDStateStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcCCDStateStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcCCDStateStreamPair.h"; sourceTree = SOURCE_ROOT; }; - FFFD119b5ed07fe8119b5ed0 /* pipeline/PxcConstraintBlockStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcConstraintBlockStream.h"; path = "../../LowLevel/common/include/pipeline/PxcConstraintBlockStream.h"; sourceTree = SOURCE_ROOT; }; - FFFD119b5f387fe8119b5f38 /* pipeline/PxcContactCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.h"; path = "../../LowLevel/common/include/pipeline/PxcContactCache.h"; sourceTree = SOURCE_ROOT; }; - FFFD119b5fa07fe8119b5fa0 /* pipeline/PxcMaterialMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.h"; path = "../../LowLevel/common/include/pipeline/PxcMaterialMethodImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD119b60087fe8119b6008 /* pipeline/PxcNpBatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.h"; path = "../../LowLevel/common/include/pipeline/PxcNpBatch.h"; sourceTree = SOURCE_ROOT; }; - FFFD119b60707fe8119b6070 /* pipeline/PxcNpCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCache.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCache.h"; sourceTree = SOURCE_ROOT; }; - FFFD119b60d87fe8119b60d8 /* pipeline/PxcNpCacheStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCacheStreamPair.h"; sourceTree = SOURCE_ROOT; }; - FFFD119b61407fe8119b6140 /* pipeline/PxcNpContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.h"; path = "../../LowLevel/common/include/pipeline/PxcNpContactPrepShared.h"; sourceTree = SOURCE_ROOT; }; - FFFD119b61a87fe8119b61a8 /* pipeline/PxcNpMemBlockPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.h"; path = "../../LowLevel/common/include/pipeline/PxcNpMemBlockPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD119b62107fe8119b6210 /* pipeline/PxcNpThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.h"; path = "../../LowLevel/common/include/pipeline/PxcNpThreadContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD119b62787fe8119b6278 /* pipeline/PxcNpWorkUnit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpWorkUnit.h"; path = "../../LowLevel/common/include/pipeline/PxcNpWorkUnit.h"; sourceTree = SOURCE_ROOT; }; - FFFD119b62e07fe8119b62e0 /* pipeline/PxcRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcRigidBody.h"; path = "../../LowLevel/common/include/pipeline/PxcRigidBody.h"; sourceTree = SOURCE_ROOT; }; - FFFD119b63487fe8119b6348 /* utils/PxcScratchAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "utils/PxcScratchAllocator.h"; path = "../../LowLevel/common/include/utils/PxcScratchAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFD119b63b07fe8119b63b0 /* utils/PxcThreadCoherentCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "utils/PxcThreadCoherentCache.h"; path = "../../LowLevel/common/include/utils/PxcThreadCoherentCache.h"; sourceTree = SOURCE_ROOT; }; + FFFD43c513407f8c43c51340 /* LowLevel */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevel"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD43c54e107f8c43c54e10 /* px_globals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "px_globals.cpp"; path = "../../LowLevel/API/src/px_globals.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD43c573407f8c43c57340 /* PxsMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCore.h"; path = "../../LowLevel/API/include/PxsMaterialCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD43c573a87f8c43c573a8 /* PxsMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialManager.h"; path = "../../LowLevel/API/include/PxsMaterialManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD43c574107f8c43c57410 /* PxvConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvConfig.h"; path = "../../LowLevel/API/include/PxvConfig.h"; sourceTree = SOURCE_ROOT; }; + FFFD43c574787f8c43c57478 /* PxvContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvContext.h"; path = "../../LowLevel/API/include/PxvContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD43c574e07f8c43c574e0 /* PxvDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvDynamics.h"; path = "../../LowLevel/API/include/PxvDynamics.h"; sourceTree = SOURCE_ROOT; }; + FFFD43c575487f8c43c57548 /* PxvGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGeometry.h"; path = "../../LowLevel/API/include/PxvGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFD43c575b07f8c43c575b0 /* PxvGlobals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGlobals.h"; path = "../../LowLevel/API/include/PxvGlobals.h"; sourceTree = SOURCE_ROOT; }; + FFFD43c576187f8c43c57618 /* PxvManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvManager.h"; path = "../../LowLevel/API/include/PxvManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD43c576807f8c43c57680 /* PxvSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvSimStats.h"; path = "../../LowLevel/API/include/PxvSimStats.h"; sourceTree = SOURCE_ROOT; }; + FFFD43c584507f8c43c58450 /* PxsCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.cpp"; path = "../../LowLevel/software/src/PxsCCD.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD43c584b87f8c43c584b8 /* PxsContactManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.cpp"; path = "../../LowLevel/software/src/PxsContactManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD43c585207f8c43c58520 /* PxsContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.cpp"; path = "../../LowLevel/software/src/PxsContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD43c585887f8c43c58588 /* PxsDefaultMemoryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.cpp"; path = "../../LowLevel/software/src/PxsDefaultMemoryManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD43c585f07f8c43c585f0 /* PxsIslandSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.cpp"; path = "../../LowLevel/software/src/PxsIslandSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD43c586587f8c43c58658 /* PxsMaterialCombiner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.cpp"; path = "../../LowLevel/software/src/PxsMaterialCombiner.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD43c586c07f8c43c586c0 /* PxsNphaseImplementationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.cpp"; path = "../../LowLevel/software/src/PxsNphaseImplementationContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD43c587287f8c43c58728 /* PxsSimpleIslandManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.cpp"; path = "../../LowLevel/software/src/PxsSimpleIslandManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440290007f8c44029000 /* PxsBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsBodySim.h"; path = "../../LowLevel/software/include/PxsBodySim.h"; sourceTree = SOURCE_ROOT; }; + FFFD440290687f8c44029068 /* PxsCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.h"; path = "../../LowLevel/software/include/PxsCCD.h"; sourceTree = SOURCE_ROOT; }; + FFFD440290d07f8c440290d0 /* PxsContactManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.h"; path = "../../LowLevel/software/include/PxsContactManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD440291387f8c44029138 /* PxsContactManagerState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManagerState.h"; path = "../../LowLevel/software/include/PxsContactManagerState.h"; sourceTree = SOURCE_ROOT; }; + FFFD440291a07f8c440291a0 /* PxsContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.h"; path = "../../LowLevel/software/include/PxsContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD440292087f8c44029208 /* PxsDefaultMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.h"; path = "../../LowLevel/software/include/PxsDefaultMemoryManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD440292707f8c44029270 /* PxsHeapMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsHeapMemoryAllocator.h"; path = "../../LowLevel/software/include/PxsHeapMemoryAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFD440292d87f8c440292d8 /* PxsIncrementalConstraintPartitioning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIncrementalConstraintPartitioning.h"; path = "../../LowLevel/software/include/PxsIncrementalConstraintPartitioning.h"; sourceTree = SOURCE_ROOT; }; + FFFD440293407f8c44029340 /* PxsIslandManagerTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandManagerTypes.h"; path = "../../LowLevel/software/include/PxsIslandManagerTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD440293a87f8c440293a8 /* PxsIslandSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.h"; path = "../../LowLevel/software/include/PxsIslandSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD440294107f8c44029410 /* PxsKernelWrangler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsKernelWrangler.h"; path = "../../LowLevel/software/include/PxsKernelWrangler.h"; sourceTree = SOURCE_ROOT; }; + FFFD440294787f8c44029478 /* PxsMaterialCombiner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.h"; path = "../../LowLevel/software/include/PxsMaterialCombiner.h"; sourceTree = SOURCE_ROOT; }; + FFFD440294e07f8c440294e0 /* PxsMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMemoryManager.h"; path = "../../LowLevel/software/include/PxsMemoryManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD440295487f8c44029548 /* PxsNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxsNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD440295b07f8c440295b0 /* PxsRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsRigidBody.h"; path = "../../LowLevel/software/include/PxsRigidBody.h"; sourceTree = SOURCE_ROOT; }; + FFFD440296187f8c44029618 /* PxsShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsShapeSim.h"; path = "../../LowLevel/software/include/PxsShapeSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD440296807f8c44029680 /* PxsSimpleIslandManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.h"; path = "../../LowLevel/software/include/PxsSimpleIslandManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD440296e87f8c440296e8 /* PxsSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimulationController.h"; path = "../../LowLevel/software/include/PxsSimulationController.h"; sourceTree = SOURCE_ROOT; }; + FFFD440297507f8c44029750 /* PxsTransformCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsTransformCache.h"; path = "../../LowLevel/software/include/PxsTransformCache.h"; sourceTree = SOURCE_ROOT; }; + FFFD440297b87f8c440297b8 /* PxvNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxvNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD4401fa007f8c4401fa00 /* collision/PxcContact.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContact.cpp"; path = "../../LowLevel/common/src/collision/PxcContact.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4401fa687f8c4401fa68 /* pipeline/PxcContactCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactCache.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4401fad07f8c4401fad0 /* pipeline/PxcContactMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactMethodImpl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4401fb387f8c4401fb38 /* pipeline/PxcMaterialHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialHeightField.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4401fba07f8c4401fba0 /* pipeline/PxcMaterialMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMesh.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4401fc087f8c4401fc08 /* pipeline/PxcMaterialMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMethodImpl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4401fc707f8c4401fc70 /* pipeline/PxcMaterialShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialShape.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialShape.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4401fcd87f8c4401fcd8 /* pipeline/PxcNpBatch.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpBatch.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4401fd407f8c4401fd40 /* pipeline/PxcNpCacheStreamPair.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpCacheStreamPair.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4401fda87f8c4401fda8 /* pipeline/PxcNpContactPrepShared.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpContactPrepShared.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4401fe107f8c4401fe10 /* pipeline/PxcNpMemBlockPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpMemBlockPool.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4401fe787f8c4401fe78 /* pipeline/PxcNpThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpThreadContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440282007f8c44028200 /* collision/PxcContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContactMethodImpl.h"; path = "../../LowLevel/common/include/collision/PxcContactMethodImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD440282687f8c44028268 /* pipeline/PxcCCDStateStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcCCDStateStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcCCDStateStreamPair.h"; sourceTree = SOURCE_ROOT; }; + FFFD440282d07f8c440282d0 /* pipeline/PxcConstraintBlockStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcConstraintBlockStream.h"; path = "../../LowLevel/common/include/pipeline/PxcConstraintBlockStream.h"; sourceTree = SOURCE_ROOT; }; + FFFD440283387f8c44028338 /* pipeline/PxcContactCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.h"; path = "../../LowLevel/common/include/pipeline/PxcContactCache.h"; sourceTree = SOURCE_ROOT; }; + FFFD440283a07f8c440283a0 /* pipeline/PxcMaterialMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.h"; path = "../../LowLevel/common/include/pipeline/PxcMaterialMethodImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD440284087f8c44028408 /* pipeline/PxcNpBatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.h"; path = "../../LowLevel/common/include/pipeline/PxcNpBatch.h"; sourceTree = SOURCE_ROOT; }; + FFFD440284707f8c44028470 /* pipeline/PxcNpCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCache.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCache.h"; sourceTree = SOURCE_ROOT; }; + FFFD440284d87f8c440284d8 /* pipeline/PxcNpCacheStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCacheStreamPair.h"; sourceTree = SOURCE_ROOT; }; + FFFD440285407f8c44028540 /* pipeline/PxcNpContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.h"; path = "../../LowLevel/common/include/pipeline/PxcNpContactPrepShared.h"; sourceTree = SOURCE_ROOT; }; + FFFD440285a87f8c440285a8 /* pipeline/PxcNpMemBlockPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.h"; path = "../../LowLevel/common/include/pipeline/PxcNpMemBlockPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD440286107f8c44028610 /* pipeline/PxcNpThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.h"; path = "../../LowLevel/common/include/pipeline/PxcNpThreadContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD440286787f8c44028678 /* pipeline/PxcNpWorkUnit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpWorkUnit.h"; path = "../../LowLevel/common/include/pipeline/PxcNpWorkUnit.h"; sourceTree = SOURCE_ROOT; }; + FFFD440286e07f8c440286e0 /* pipeline/PxcRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcRigidBody.h"; path = "../../LowLevel/common/include/pipeline/PxcRigidBody.h"; sourceTree = SOURCE_ROOT; }; + FFFD440287487f8c44028748 /* utils/PxcScratchAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "utils/PxcScratchAllocator.h"; path = "../../LowLevel/common/include/utils/PxcScratchAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFD440287b07f8c440287b0 /* 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 */ - FFF2125b5b707fe8125b5b70 /* Resources */ = { + FFF243c513407f8c43c51340 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2415,7 +2415,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC125b5b707fe8125b5b70 /* Frameworks */ = { + FFFC43c513407f8c43c51340 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2425,31 +2425,31 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8125b5b707fe8125b5b70 /* Sources */ = { + FFF843c513407f8c43c51340 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF125cddd07fe8125cddd0, - FFFF12133aa07fe812133aa0, - FFFF12133b087fe812133b08, - FFFF12133b707fe812133b70, - FFFF12133bd87fe812133bd8, - FFFF12133c407fe812133c40, - FFFF12133ca87fe812133ca8, - FFFF12133d107fe812133d10, - FFFF12133d787fe812133d78, - FFFF119b56007fe8119b5600, - FFFF119b56687fe8119b5668, - FFFF119b56d07fe8119b56d0, - FFFF119b57387fe8119b5738, - FFFF119b57a07fe8119b57a0, - FFFF119b58087fe8119b5808, - FFFF119b58707fe8119b5870, - FFFF119b58d87fe8119b58d8, - FFFF119b59407fe8119b5940, - FFFF119b59a87fe8119b59a8, - FFFF119b5a107fe8119b5a10, - FFFF119b5a787fe8119b5a78, + FFFF43c54e107f8c43c54e10, + FFFF43c584507f8c43c58450, + FFFF43c584b87f8c43c584b8, + FFFF43c585207f8c43c58520, + FFFF43c585887f8c43c58588, + FFFF43c585f07f8c43c585f0, + FFFF43c586587f8c43c58658, + FFFF43c586c07f8c43c586c0, + FFFF43c587287f8c43c58728, + FFFF4401fa007f8c4401fa00, + FFFF4401fa687f8c4401fa68, + FFFF4401fad07f8c4401fad0, + FFFF4401fb387f8c4401fb38, + FFFF4401fba07f8c4401fba0, + FFFF4401fc087f8c4401fc08, + FFFF4401fc707f8c4401fc70, + FFFF4401fcd87f8c4401fcd8, + FFFF4401fd407f8c4401fd40, + FFFF4401fda87f8c4401fda8, + FFFF4401fe107f8c4401fe10, + FFFF4401fe787f8c4401fe78, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2461,38 +2461,38 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of LowLevelAABB */ - FFFF128176707fe812817670 /* BpBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128176707fe812817670 /* BpBroadPhase.cpp */; }; - FFFF128176d87fe8128176d8 /* BpBroadPhaseMBP.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128176d87fe8128176d8 /* BpBroadPhaseMBP.cpp */; }; - FFFF128177407fe812817740 /* BpBroadPhaseSap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128177407fe812817740 /* BpBroadPhaseSap.cpp */; }; - FFFF128177a87fe8128177a8 /* BpBroadPhaseSapAux.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128177a87fe8128177a8 /* BpBroadPhaseSapAux.cpp */; }; - FFFF128178107fe812817810 /* BpMBPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128178107fe812817810 /* BpMBPTasks.cpp */; }; - FFFF128178787fe812817878 /* BpSAPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128178787fe812817878 /* BpSAPTasks.cpp */; }; - FFFF128178e07fe8128178e0 /* BpSimpleAABBManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD128178e07fe8128178e0 /* BpSimpleAABBManager.cpp */; }; + FFFF448200707f8c44820070 /* BpBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448200707f8c44820070 /* BpBroadPhase.cpp */; }; + FFFF448200d87f8c448200d8 /* BpBroadPhaseMBP.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448200d87f8c448200d8 /* BpBroadPhaseMBP.cpp */; }; + FFFF448201407f8c44820140 /* BpBroadPhaseSap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448201407f8c44820140 /* BpBroadPhaseSap.cpp */; }; + FFFF448201a87f8c448201a8 /* BpBroadPhaseSapAux.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448201a87f8c448201a8 /* BpBroadPhaseSapAux.cpp */; }; + FFFF448202107f8c44820210 /* BpMBPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448202107f8c44820210 /* BpMBPTasks.cpp */; }; + FFFF448202787f8c44820278 /* BpSAPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448202787f8c44820278 /* BpSAPTasks.cpp */; }; + FFFF448202e07f8c448202e0 /* BpSimpleAABBManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448202e07f8c448202e0 /* BpSimpleAABBManager.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD1261e8907fe81261e890 /* LowLevelAABB */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelAABB"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD1262e5707fe81262e570 /* BpAABBManagerTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpAABBManagerTasks.h"; path = "../../LowLevelAABB/include/BpAABBManagerTasks.h"; sourceTree = SOURCE_ROOT; }; - FFFD1262e5d87fe81262e5d8 /* BpBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.h"; path = "../../LowLevelAABB/include/BpBroadPhase.h"; sourceTree = SOURCE_ROOT; }; - FFFD1262e6407fe81262e640 /* BpBroadPhaseUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseUpdate.h"; path = "../../LowLevelAABB/include/BpBroadPhaseUpdate.h"; sourceTree = SOURCE_ROOT; }; - FFFD1262e6a87fe81262e6a8 /* BpSimpleAABBManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.h"; path = "../../LowLevelAABB/include/BpSimpleAABBManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD128174007fe812817400 /* BpBroadPhaseMBP.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.h"; sourceTree = SOURCE_ROOT; }; - FFFD128174687fe812817468 /* BpBroadPhaseMBPCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBPCommon.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBPCommon.h"; sourceTree = SOURCE_ROOT; }; - FFFD128174d07fe8128174d0 /* BpBroadPhaseSap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.h"; sourceTree = SOURCE_ROOT; }; - FFFD128175387fe812817538 /* BpBroadPhaseSapAux.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.h"; sourceTree = SOURCE_ROOT; }; - FFFD128175a07fe8128175a0 /* BpMBPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.h"; path = "../../LowLevelAABB/src/BpMBPTasks.h"; sourceTree = SOURCE_ROOT; }; - FFFD128176087fe812817608 /* BpSAPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.h"; path = "../../LowLevelAABB/src/BpSAPTasks.h"; sourceTree = SOURCE_ROOT; }; - FFFD128176707fe812817670 /* BpBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.cpp"; path = "../../LowLevelAABB/src/BpBroadPhase.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128176d87fe8128176d8 /* BpBroadPhaseMBP.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128177407fe812817740 /* BpBroadPhaseSap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128177a87fe8128177a8 /* BpBroadPhaseSapAux.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128178107fe812817810 /* BpMBPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.cpp"; path = "../../LowLevelAABB/src/BpMBPTasks.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128178787fe812817878 /* BpSAPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.cpp"; path = "../../LowLevelAABB/src/BpSAPTasks.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD128178e07fe8128178e0 /* BpSimpleAABBManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.cpp"; path = "../../LowLevelAABB/src/BpSimpleAABBManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD43ef63707f8c43ef6370 /* LowLevelAABB */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelAABB"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD43f070807f8c43f07080 /* BpAABBManagerTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpAABBManagerTasks.h"; path = "../../LowLevelAABB/include/BpAABBManagerTasks.h"; sourceTree = SOURCE_ROOT; }; + FFFD43f070e87f8c43f070e8 /* BpBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.h"; path = "../../LowLevelAABB/include/BpBroadPhase.h"; sourceTree = SOURCE_ROOT; }; + FFFD43f071507f8c43f07150 /* BpBroadPhaseUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseUpdate.h"; path = "../../LowLevelAABB/include/BpBroadPhaseUpdate.h"; sourceTree = SOURCE_ROOT; }; + FFFD43f071b87f8c43f071b8 /* BpSimpleAABBManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.h"; path = "../../LowLevelAABB/include/BpSimpleAABBManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD4481fe007f8c4481fe00 /* BpBroadPhaseMBP.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.h"; sourceTree = SOURCE_ROOT; }; + FFFD4481fe687f8c4481fe68 /* BpBroadPhaseMBPCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBPCommon.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBPCommon.h"; sourceTree = SOURCE_ROOT; }; + FFFD4481fed07f8c4481fed0 /* BpBroadPhaseSap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.h"; sourceTree = SOURCE_ROOT; }; + FFFD4481ff387f8c4481ff38 /* BpBroadPhaseSapAux.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.h"; sourceTree = SOURCE_ROOT; }; + FFFD4481ffa07f8c4481ffa0 /* BpMBPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.h"; path = "../../LowLevelAABB/src/BpMBPTasks.h"; sourceTree = SOURCE_ROOT; }; + FFFD448200087f8c44820008 /* BpSAPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.h"; path = "../../LowLevelAABB/src/BpSAPTasks.h"; sourceTree = SOURCE_ROOT; }; + FFFD448200707f8c44820070 /* BpBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.cpp"; path = "../../LowLevelAABB/src/BpBroadPhase.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD448200d87f8c448200d8 /* BpBroadPhaseMBP.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD448201407f8c44820140 /* BpBroadPhaseSap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD448201a87f8c448201a8 /* BpBroadPhaseSapAux.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD448202107f8c44820210 /* BpMBPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.cpp"; path = "../../LowLevelAABB/src/BpMBPTasks.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD448202787f8c44820278 /* BpSAPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.cpp"; path = "../../LowLevelAABB/src/BpSAPTasks.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD448202e07f8c448202e0 /* BpSimpleAABBManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.cpp"; path = "../../LowLevelAABB/src/BpSimpleAABBManager.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF21261e8907fe81261e890 /* Resources */ = { + FFF243ef63707f8c43ef6370 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2502,7 +2502,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC1261e8907fe81261e890 /* Frameworks */ = { + FFFC43ef63707f8c43ef6370 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2512,17 +2512,17 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF81261e8907fe81261e890 /* Sources */ = { + FFF843ef63707f8c43ef6370 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF128176707fe812817670, - FFFF128176d87fe8128176d8, - FFFF128177407fe812817740, - FFFF128177a87fe8128177a8, - FFFF128178107fe812817810, - FFFF128178787fe812817878, - FFFF128178e07fe8128178e0, + FFFF448200707f8c44820070, + FFFF448200d87f8c448200d8, + FFFF448201407f8c44820140, + FFFF448201a87f8c448201a8, + FFFF448202107f8c44820210, + FFFF448202787f8c44820278, + FFFF448202e07f8c448202e0, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2534,106 +2534,106 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of LowLevelDynamics */ - FFFF119bfa007fe8119bfa00 /* DyArticulation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD119bfa007fe8119bfa00 /* DyArticulation.cpp */; }; - FFFF119bfa687fe8119bfa68 /* DyArticulationContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD119bfa687fe8119bfa68 /* DyArticulationContactPrep.cpp */; }; - FFFF119bfad07fe8119bfad0 /* DyArticulationContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD119bfad07fe8119bfad0 /* DyArticulationContactPrepPF.cpp */; }; - FFFF119bfb387fe8119bfb38 /* DyArticulationHelper.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD119bfb387fe8119bfb38 /* DyArticulationHelper.cpp */; }; - FFFF119bfba07fe8119bfba0 /* DyArticulationSIMD.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD119bfba07fe8119bfba0 /* DyArticulationSIMD.cpp */; }; - FFFF119bfc087fe8119bfc08 /* DyArticulationScalar.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD119bfc087fe8119bfc08 /* DyArticulationScalar.cpp */; }; - FFFF119bfc707fe8119bfc70 /* DyConstraintPartition.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD119bfc707fe8119bfc70 /* DyConstraintPartition.cpp */; }; - FFFF119bfcd87fe8119bfcd8 /* DyConstraintSetup.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD119bfcd87fe8119bfcd8 /* DyConstraintSetup.cpp */; }; - FFFF119bfd407fe8119bfd40 /* DyConstraintSetupBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD119bfd407fe8119bfd40 /* DyConstraintSetupBlock.cpp */; }; - FFFF119bfda87fe8119bfda8 /* DyContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD119bfda87fe8119bfda8 /* DyContactPrep.cpp */; }; - FFFF119bfe107fe8119bfe10 /* DyContactPrep4.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD119bfe107fe8119bfe10 /* DyContactPrep4.cpp */; }; - FFFF119bfe787fe8119bfe78 /* DyContactPrep4PF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD119bfe787fe8119bfe78 /* DyContactPrep4PF.cpp */; }; - FFFF119bfee07fe8119bfee0 /* DyContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD119bfee07fe8119bfee0 /* DyContactPrepPF.cpp */; }; - FFFF119bff487fe8119bff48 /* DyDynamics.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD119bff487fe8119bff48 /* DyDynamics.cpp */; }; - FFFF119bffb07fe8119bffb0 /* DyFrictionCorrelation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD119bffb07fe8119bffb0 /* DyFrictionCorrelation.cpp */; }; - FFFF119c00187fe8119c0018 /* DyRigidBodyToSolverBody.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD119c00187fe8119c0018 /* DyRigidBodyToSolverBody.cpp */; }; - FFFF119c00807fe8119c0080 /* DySolverConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD119c00807fe8119c0080 /* DySolverConstraints.cpp */; }; - FFFF119c00e87fe8119c00e8 /* DySolverConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD119c00e87fe8119c00e8 /* DySolverConstraintsBlock.cpp */; }; - FFFF119c01507fe8119c0150 /* DySolverControl.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD119c01507fe8119c0150 /* DySolverControl.cpp */; }; - FFFF119c01b87fe8119c01b8 /* DySolverControlPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD119c01b87fe8119c01b8 /* DySolverControlPF.cpp */; }; - FFFF119c02207fe8119c0220 /* DySolverPFConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD119c02207fe8119c0220 /* DySolverPFConstraints.cpp */; }; - FFFF119c02887fe8119c0288 /* DySolverPFConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD119c02887fe8119c0288 /* DySolverPFConstraintsBlock.cpp */; }; - FFFF119c02f07fe8119c02f0 /* DyThreadContext.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD119c02f07fe8119c02f0 /* DyThreadContext.cpp */; }; - FFFF119c03587fe8119c0358 /* DyThresholdTable.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD119c03587fe8119c0358 /* DyThresholdTable.cpp */; }; + FFFF44031e007f8c44031e00 /* DyArticulation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD44031e007f8c44031e00 /* DyArticulation.cpp */; }; + FFFF44031e687f8c44031e68 /* DyArticulationContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD44031e687f8c44031e68 /* DyArticulationContactPrep.cpp */; }; + FFFF44031ed07f8c44031ed0 /* DyArticulationContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD44031ed07f8c44031ed0 /* DyArticulationContactPrepPF.cpp */; }; + FFFF44031f387f8c44031f38 /* DyArticulationHelper.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD44031f387f8c44031f38 /* DyArticulationHelper.cpp */; }; + FFFF44031fa07f8c44031fa0 /* DyArticulationSIMD.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD44031fa07f8c44031fa0 /* DyArticulationSIMD.cpp */; }; + FFFF440320087f8c44032008 /* DyArticulationScalar.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD440320087f8c44032008 /* DyArticulationScalar.cpp */; }; + FFFF440320707f8c44032070 /* DyConstraintPartition.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD440320707f8c44032070 /* DyConstraintPartition.cpp */; }; + FFFF440320d87f8c440320d8 /* DyConstraintSetup.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD440320d87f8c440320d8 /* DyConstraintSetup.cpp */; }; + FFFF440321407f8c44032140 /* DyConstraintSetupBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD440321407f8c44032140 /* DyConstraintSetupBlock.cpp */; }; + FFFF440321a87f8c440321a8 /* DyContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD440321a87f8c440321a8 /* DyContactPrep.cpp */; }; + FFFF440322107f8c44032210 /* DyContactPrep4.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD440322107f8c44032210 /* DyContactPrep4.cpp */; }; + FFFF440322787f8c44032278 /* DyContactPrep4PF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD440322787f8c44032278 /* DyContactPrep4PF.cpp */; }; + FFFF440322e07f8c440322e0 /* DyContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD440322e07f8c440322e0 /* DyContactPrepPF.cpp */; }; + FFFF440323487f8c44032348 /* DyDynamics.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD440323487f8c44032348 /* DyDynamics.cpp */; }; + FFFF440323b07f8c440323b0 /* DyFrictionCorrelation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD440323b07f8c440323b0 /* DyFrictionCorrelation.cpp */; }; + FFFF440324187f8c44032418 /* DyRigidBodyToSolverBody.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD440324187f8c44032418 /* DyRigidBodyToSolverBody.cpp */; }; + FFFF440324807f8c44032480 /* DySolverConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD440324807f8c44032480 /* DySolverConstraints.cpp */; }; + FFFF440324e87f8c440324e8 /* DySolverConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD440324e87f8c440324e8 /* DySolverConstraintsBlock.cpp */; }; + FFFF440325507f8c44032550 /* DySolverControl.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD440325507f8c44032550 /* DySolverControl.cpp */; }; + FFFF440325b87f8c440325b8 /* DySolverControlPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD440325b87f8c440325b8 /* DySolverControlPF.cpp */; }; + FFFF440326207f8c44032620 /* DySolverPFConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD440326207f8c44032620 /* DySolverPFConstraints.cpp */; }; + FFFF440326887f8c44032688 /* DySolverPFConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD440326887f8c44032688 /* DySolverPFConstraintsBlock.cpp */; }; + FFFF440326f07f8c440326f0 /* DyThreadContext.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD440326f07f8c440326f0 /* DyThreadContext.cpp */; }; + FFFF440327587f8c44032758 /* DyThresholdTable.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD440327587f8c44032758 /* DyThresholdTable.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD125e9ce07fe8125e9ce0 /* LowLevelDynamics */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelDynamics"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD119bfa007fe8119bfa00 /* DyArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.cpp"; path = "../../LowLevelDynamics/src/DyArticulation.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119bfa687fe8119bfa68 /* DyArticulationContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119bfad07fe8119bfad0 /* DyArticulationContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119bfb387fe8119bfb38 /* DyArticulationHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.cpp"; path = "../../LowLevelDynamics/src/DyArticulationHelper.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119bfba07fe8119bfba0 /* DyArticulationSIMD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationSIMD.cpp"; path = "../../LowLevelDynamics/src/DyArticulationSIMD.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119bfc087fe8119bfc08 /* DyArticulationScalar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.cpp"; path = "../../LowLevelDynamics/src/DyArticulationScalar.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119bfc707fe8119bfc70 /* DyConstraintPartition.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.cpp"; path = "../../LowLevelDynamics/src/DyConstraintPartition.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119bfcd87fe8119bfcd8 /* DyConstraintSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetup.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetup.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119bfd407fe8119bfd40 /* DyConstraintSetupBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetupBlock.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetupBlock.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119bfda87fe8119bfda8 /* DyContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119bfe107fe8119bfe10 /* DyContactPrep4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119bfe787fe8119bfe78 /* DyContactPrep4PF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4PF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4PF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119bfee07fe8119bfee0 /* DyContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119bff487fe8119bff48 /* DyDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.cpp"; path = "../../LowLevelDynamics/src/DyDynamics.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119bffb07fe8119bffb0 /* DyFrictionCorrelation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionCorrelation.cpp"; path = "../../LowLevelDynamics/src/DyFrictionCorrelation.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119c00187fe8119c0018 /* DyRigidBodyToSolverBody.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyRigidBodyToSolverBody.cpp"; path = "../../LowLevelDynamics/src/DyRigidBodyToSolverBody.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119c00807fe8119c0080 /* DySolverConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraints.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119c00e87fe8119c00e8 /* DySolverConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119c01507fe8119c0150 /* DySolverControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.cpp"; path = "../../LowLevelDynamics/src/DySolverControl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119c01b87fe8119c01b8 /* DySolverControlPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.cpp"; path = "../../LowLevelDynamics/src/DySolverControlPF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119c02207fe8119c0220 /* DySolverPFConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraints.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119c02887fe8119c0288 /* DySolverPFConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119c02f07fe8119c02f0 /* DyThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.cpp"; path = "../../LowLevelDynamics/src/DyThreadContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119c03587fe8119c0358 /* DyThresholdTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.cpp"; path = "../../LowLevelDynamics/src/DyThresholdTable.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD125e22f07fe8125e22f0 /* DyArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.h"; path = "../../LowLevelDynamics/include/DyArticulation.h"; sourceTree = SOURCE_ROOT; }; - FFFD125e23587fe8125e2358 /* DyConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraint.h"; path = "../../LowLevelDynamics/include/DyConstraint.h"; sourceTree = SOURCE_ROOT; }; - FFFD125e23c07fe8125e23c0 /* DyConstraintWriteBack.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintWriteBack.h"; path = "../../LowLevelDynamics/include/DyConstraintWriteBack.h"; sourceTree = SOURCE_ROOT; }; - FFFD125e24287fe8125e2428 /* DyContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContext.h"; path = "../../LowLevelDynamics/include/DyContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD125e24907fe8125e2490 /* DyGpuAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyGpuAPI.h"; path = "../../LowLevelDynamics/include/DyGpuAPI.h"; sourceTree = SOURCE_ROOT; }; - FFFD125e24f87fe8125e24f8 /* DySleepingConfigulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySleepingConfigulation.h"; path = "../../LowLevelDynamics/include/DySleepingConfigulation.h"; sourceTree = SOURCE_ROOT; }; - FFFD125e25607fe8125e2560 /* DyThresholdTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.h"; path = "../../LowLevelDynamics/include/DyThresholdTable.h"; sourceTree = SOURCE_ROOT; }; - FFFD119c0c007fe8119c0c00 /* DyArticulationContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.h"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.h"; sourceTree = SOURCE_ROOT; }; - FFFD119c0c687fe8119c0c68 /* DyArticulationFnsDebug.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsDebug.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsDebug.h"; sourceTree = SOURCE_ROOT; }; - FFFD119c0cd07fe8119c0cd0 /* DyArticulationFnsScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsScalar.h"; sourceTree = SOURCE_ROOT; }; - FFFD119c0d387fe8119c0d38 /* DyArticulationFnsSimd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsSimd.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsSimd.h"; sourceTree = SOURCE_ROOT; }; - FFFD119c0da07fe8119c0da0 /* DyArticulationHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.h"; path = "../../LowLevelDynamics/src/DyArticulationHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFD119c0e087fe8119c0e08 /* DyArticulationPImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationPImpl.h"; path = "../../LowLevelDynamics/src/DyArticulationPImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD119c0e707fe8119c0e70 /* DyArticulationReference.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationReference.h"; path = "../../LowLevelDynamics/src/DyArticulationReference.h"; sourceTree = SOURCE_ROOT; }; - FFFD119c0ed87fe8119c0ed8 /* DyArticulationScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationScalar.h"; sourceTree = SOURCE_ROOT; }; - FFFD119c0f407fe8119c0f40 /* DyArticulationUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationUtils.h"; path = "../../LowLevelDynamics/src/DyArticulationUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD119c0fa87fe8119c0fa8 /* DyBodyCoreIntegrator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyBodyCoreIntegrator.h"; path = "../../LowLevelDynamics/src/DyBodyCoreIntegrator.h"; sourceTree = SOURCE_ROOT; }; - FFFD119c10107fe8119c1010 /* DyConstraintPartition.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.h"; path = "../../LowLevelDynamics/src/DyConstraintPartition.h"; sourceTree = SOURCE_ROOT; }; - FFFD119c10787fe8119c1078 /* DyConstraintPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPrep.h"; path = "../../LowLevelDynamics/src/DyConstraintPrep.h"; sourceTree = SOURCE_ROOT; }; - FFFD119c10e07fe8119c10e0 /* DyContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.h"; path = "../../LowLevelDynamics/src/DyContactPrep.h"; sourceTree = SOURCE_ROOT; }; - FFFD119c11487fe8119c1148 /* DyContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepShared.h"; path = "../../LowLevelDynamics/src/DyContactPrepShared.h"; sourceTree = SOURCE_ROOT; }; - FFFD119c11b07fe8119c11b0 /* DyContactReduction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactReduction.h"; path = "../../LowLevelDynamics/src/DyContactReduction.h"; sourceTree = SOURCE_ROOT; }; - FFFD119c12187fe8119c1218 /* DyCorrelationBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyCorrelationBuffer.h"; path = "../../LowLevelDynamics/src/DyCorrelationBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD119c12807fe8119c1280 /* DyDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.h"; path = "../../LowLevelDynamics/src/DyDynamics.h"; sourceTree = SOURCE_ROOT; }; - FFFD119c12e87fe8119c12e8 /* DyFrictionPatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatch.h"; path = "../../LowLevelDynamics/src/DyFrictionPatch.h"; sourceTree = SOURCE_ROOT; }; - FFFD119c13507fe8119c1350 /* DyFrictionPatchStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatchStreamPair.h"; path = "../../LowLevelDynamics/src/DyFrictionPatchStreamPair.h"; sourceTree = SOURCE_ROOT; }; - FFFD119c13b87fe8119c13b8 /* DySolverBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverBody.h"; path = "../../LowLevelDynamics/src/DySolverBody.h"; sourceTree = SOURCE_ROOT; }; - FFFD119c14207fe8119c1420 /* DySolverConstraint1D.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D.h"; sourceTree = SOURCE_ROOT; }; - FFFD119c14887fe8119c1488 /* DySolverConstraint1D4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D4.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D4.h"; sourceTree = SOURCE_ROOT; }; - FFFD119c14f07fe8119c14f0 /* DySolverConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintDesc.h"; path = "../../LowLevelDynamics/src/DySolverConstraintDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD119c15587fe8119c1558 /* DySolverConstraintExtShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintExtShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintExtShared.h"; sourceTree = SOURCE_ROOT; }; - FFFD119c15c07fe8119c15c0 /* DySolverConstraintTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintTypes.h"; path = "../../LowLevelDynamics/src/DySolverConstraintTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD119c16287fe8119c1628 /* DySolverConstraintsShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintsShared.h"; sourceTree = SOURCE_ROOT; }; - FFFD119c16907fe8119c1690 /* DySolverContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact.h"; path = "../../LowLevelDynamics/src/DySolverContact.h"; sourceTree = SOURCE_ROOT; }; - FFFD119c16f87fe8119c16f8 /* DySolverContact4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact4.h"; path = "../../LowLevelDynamics/src/DySolverContact4.h"; sourceTree = SOURCE_ROOT; }; - FFFD119c17607fe8119c1760 /* DySolverContactPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF.h"; path = "../../LowLevelDynamics/src/DySolverContactPF.h"; sourceTree = SOURCE_ROOT; }; - FFFD119c17c87fe8119c17c8 /* DySolverContactPF4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF4.h"; path = "../../LowLevelDynamics/src/DySolverContactPF4.h"; sourceTree = SOURCE_ROOT; }; - FFFD119c18307fe8119c1830 /* DySolverContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContext.h"; path = "../../LowLevelDynamics/src/DySolverContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD119c18987fe8119c1898 /* DySolverControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.h"; path = "../../LowLevelDynamics/src/DySolverControl.h"; sourceTree = SOURCE_ROOT; }; - FFFD119c19007fe8119c1900 /* DySolverControlPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.h"; path = "../../LowLevelDynamics/src/DySolverControlPF.h"; sourceTree = SOURCE_ROOT; }; - FFFD119c19687fe8119c1968 /* DySolverCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverCore.h"; path = "../../LowLevelDynamics/src/DySolverCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD119c19d07fe8119c19d0 /* DySolverExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverExt.h"; path = "../../LowLevelDynamics/src/DySolverExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD119c1a387fe8119c1a38 /* DySpatial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySpatial.h"; path = "../../LowLevelDynamics/src/DySpatial.h"; sourceTree = SOURCE_ROOT; }; - FFFD119c1aa07fe8119c1aa0 /* DyThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.h"; path = "../../LowLevelDynamics/src/DyThreadContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD43c7c3807f8c43c7c380 /* LowLevelDynamics */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelDynamics"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD44031e007f8c44031e00 /* DyArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.cpp"; path = "../../LowLevelDynamics/src/DyArticulation.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD44031e687f8c44031e68 /* DyArticulationContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD44031ed07f8c44031ed0 /* DyArticulationContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD44031f387f8c44031f38 /* DyArticulationHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.cpp"; path = "../../LowLevelDynamics/src/DyArticulationHelper.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD44031fa07f8c44031fa0 /* DyArticulationSIMD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationSIMD.cpp"; path = "../../LowLevelDynamics/src/DyArticulationSIMD.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440320087f8c44032008 /* DyArticulationScalar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.cpp"; path = "../../LowLevelDynamics/src/DyArticulationScalar.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440320707f8c44032070 /* DyConstraintPartition.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.cpp"; path = "../../LowLevelDynamics/src/DyConstraintPartition.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440320d87f8c440320d8 /* DyConstraintSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetup.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetup.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440321407f8c44032140 /* DyConstraintSetupBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetupBlock.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetupBlock.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440321a87f8c440321a8 /* DyContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440322107f8c44032210 /* DyContactPrep4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440322787f8c44032278 /* DyContactPrep4PF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4PF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4PF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440322e07f8c440322e0 /* DyContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440323487f8c44032348 /* DyDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.cpp"; path = "../../LowLevelDynamics/src/DyDynamics.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440323b07f8c440323b0 /* DyFrictionCorrelation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionCorrelation.cpp"; path = "../../LowLevelDynamics/src/DyFrictionCorrelation.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440324187f8c44032418 /* DyRigidBodyToSolverBody.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyRigidBodyToSolverBody.cpp"; path = "../../LowLevelDynamics/src/DyRigidBodyToSolverBody.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440324807f8c44032480 /* DySolverConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraints.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440324e87f8c440324e8 /* DySolverConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440325507f8c44032550 /* DySolverControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.cpp"; path = "../../LowLevelDynamics/src/DySolverControl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440325b87f8c440325b8 /* DySolverControlPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.cpp"; path = "../../LowLevelDynamics/src/DySolverControlPF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440326207f8c44032620 /* DySolverPFConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraints.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440326887f8c44032688 /* DySolverPFConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440326f07f8c440326f0 /* DyThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.cpp"; path = "../../LowLevelDynamics/src/DyThreadContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD440327587f8c44032758 /* DyThresholdTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.cpp"; path = "../../LowLevelDynamics/src/DyThresholdTable.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD43c7bd907f8c43c7bd90 /* DyArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.h"; path = "../../LowLevelDynamics/include/DyArticulation.h"; sourceTree = SOURCE_ROOT; }; + FFFD43c7bdf87f8c43c7bdf8 /* DyConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraint.h"; path = "../../LowLevelDynamics/include/DyConstraint.h"; sourceTree = SOURCE_ROOT; }; + FFFD43c7be607f8c43c7be60 /* DyConstraintWriteBack.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintWriteBack.h"; path = "../../LowLevelDynamics/include/DyConstraintWriteBack.h"; sourceTree = SOURCE_ROOT; }; + FFFD43c7bec87f8c43c7bec8 /* DyContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContext.h"; path = "../../LowLevelDynamics/include/DyContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD43c7bf307f8c43c7bf30 /* DyGpuAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyGpuAPI.h"; path = "../../LowLevelDynamics/include/DyGpuAPI.h"; sourceTree = SOURCE_ROOT; }; + FFFD43c7bf987f8c43c7bf98 /* DySleepingConfigulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySleepingConfigulation.h"; path = "../../LowLevelDynamics/include/DySleepingConfigulation.h"; sourceTree = SOURCE_ROOT; }; + FFFD43c7c0007f8c43c7c000 /* DyThresholdTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.h"; path = "../../LowLevelDynamics/include/DyThresholdTable.h"; sourceTree = SOURCE_ROOT; }; + FFFD440330007f8c44033000 /* DyArticulationContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.h"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.h"; sourceTree = SOURCE_ROOT; }; + FFFD440330687f8c44033068 /* DyArticulationFnsDebug.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsDebug.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsDebug.h"; sourceTree = SOURCE_ROOT; }; + FFFD440330d07f8c440330d0 /* DyArticulationFnsScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsScalar.h"; sourceTree = SOURCE_ROOT; }; + FFFD440331387f8c44033138 /* DyArticulationFnsSimd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsSimd.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsSimd.h"; sourceTree = SOURCE_ROOT; }; + FFFD440331a07f8c440331a0 /* DyArticulationHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.h"; path = "../../LowLevelDynamics/src/DyArticulationHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFD440332087f8c44033208 /* DyArticulationPImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationPImpl.h"; path = "../../LowLevelDynamics/src/DyArticulationPImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD440332707f8c44033270 /* DyArticulationReference.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationReference.h"; path = "../../LowLevelDynamics/src/DyArticulationReference.h"; sourceTree = SOURCE_ROOT; }; + FFFD440332d87f8c440332d8 /* DyArticulationScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationScalar.h"; sourceTree = SOURCE_ROOT; }; + FFFD440333407f8c44033340 /* DyArticulationUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationUtils.h"; path = "../../LowLevelDynamics/src/DyArticulationUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD440333a87f8c440333a8 /* DyBodyCoreIntegrator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyBodyCoreIntegrator.h"; path = "../../LowLevelDynamics/src/DyBodyCoreIntegrator.h"; sourceTree = SOURCE_ROOT; }; + FFFD440334107f8c44033410 /* DyConstraintPartition.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.h"; path = "../../LowLevelDynamics/src/DyConstraintPartition.h"; sourceTree = SOURCE_ROOT; }; + FFFD440334787f8c44033478 /* DyConstraintPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPrep.h"; path = "../../LowLevelDynamics/src/DyConstraintPrep.h"; sourceTree = SOURCE_ROOT; }; + FFFD440334e07f8c440334e0 /* DyContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.h"; path = "../../LowLevelDynamics/src/DyContactPrep.h"; sourceTree = SOURCE_ROOT; }; + FFFD440335487f8c44033548 /* DyContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepShared.h"; path = "../../LowLevelDynamics/src/DyContactPrepShared.h"; sourceTree = SOURCE_ROOT; }; + FFFD440335b07f8c440335b0 /* DyContactReduction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactReduction.h"; path = "../../LowLevelDynamics/src/DyContactReduction.h"; sourceTree = SOURCE_ROOT; }; + FFFD440336187f8c44033618 /* DyCorrelationBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyCorrelationBuffer.h"; path = "../../LowLevelDynamics/src/DyCorrelationBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD440336807f8c44033680 /* DyDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.h"; path = "../../LowLevelDynamics/src/DyDynamics.h"; sourceTree = SOURCE_ROOT; }; + FFFD440336e87f8c440336e8 /* DyFrictionPatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatch.h"; path = "../../LowLevelDynamics/src/DyFrictionPatch.h"; sourceTree = SOURCE_ROOT; }; + FFFD440337507f8c44033750 /* DyFrictionPatchStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatchStreamPair.h"; path = "../../LowLevelDynamics/src/DyFrictionPatchStreamPair.h"; sourceTree = SOURCE_ROOT; }; + FFFD440337b87f8c440337b8 /* DySolverBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverBody.h"; path = "../../LowLevelDynamics/src/DySolverBody.h"; sourceTree = SOURCE_ROOT; }; + FFFD440338207f8c44033820 /* DySolverConstraint1D.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D.h"; sourceTree = SOURCE_ROOT; }; + FFFD440338887f8c44033888 /* DySolverConstraint1D4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D4.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D4.h"; sourceTree = SOURCE_ROOT; }; + FFFD440338f07f8c440338f0 /* DySolverConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintDesc.h"; path = "../../LowLevelDynamics/src/DySolverConstraintDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD440339587f8c44033958 /* DySolverConstraintExtShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintExtShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintExtShared.h"; sourceTree = SOURCE_ROOT; }; + FFFD440339c07f8c440339c0 /* DySolverConstraintTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintTypes.h"; path = "../../LowLevelDynamics/src/DySolverConstraintTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD44033a287f8c44033a28 /* DySolverConstraintsShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintsShared.h"; sourceTree = SOURCE_ROOT; }; + FFFD44033a907f8c44033a90 /* DySolverContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact.h"; path = "../../LowLevelDynamics/src/DySolverContact.h"; sourceTree = SOURCE_ROOT; }; + FFFD44033af87f8c44033af8 /* DySolverContact4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact4.h"; path = "../../LowLevelDynamics/src/DySolverContact4.h"; sourceTree = SOURCE_ROOT; }; + FFFD44033b607f8c44033b60 /* DySolverContactPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF.h"; path = "../../LowLevelDynamics/src/DySolverContactPF.h"; sourceTree = SOURCE_ROOT; }; + FFFD44033bc87f8c44033bc8 /* DySolverContactPF4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF4.h"; path = "../../LowLevelDynamics/src/DySolverContactPF4.h"; sourceTree = SOURCE_ROOT; }; + FFFD44033c307f8c44033c30 /* DySolverContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContext.h"; path = "../../LowLevelDynamics/src/DySolverContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD44033c987f8c44033c98 /* DySolverControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.h"; path = "../../LowLevelDynamics/src/DySolverControl.h"; sourceTree = SOURCE_ROOT; }; + FFFD44033d007f8c44033d00 /* DySolverControlPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.h"; path = "../../LowLevelDynamics/src/DySolverControlPF.h"; sourceTree = SOURCE_ROOT; }; + FFFD44033d687f8c44033d68 /* DySolverCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverCore.h"; path = "../../LowLevelDynamics/src/DySolverCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD44033dd07f8c44033dd0 /* DySolverExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverExt.h"; path = "../../LowLevelDynamics/src/DySolverExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD44033e387f8c44033e38 /* DySpatial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySpatial.h"; path = "../../LowLevelDynamics/src/DySpatial.h"; sourceTree = SOURCE_ROOT; }; + FFFD44033ea07f8c44033ea0 /* DyThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.h"; path = "../../LowLevelDynamics/src/DyThreadContext.h"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2125e9ce07fe8125e9ce0 /* Resources */ = { + FFF243c7c3807f8c43c7c380 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2643,7 +2643,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC125e9ce07fe8125e9ce0 /* Frameworks */ = { + FFFC43c7c3807f8c43c7c380 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2653,34 +2653,34 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8125e9ce07fe8125e9ce0 /* Sources */ = { + FFF843c7c3807f8c43c7c380 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF119bfa007fe8119bfa00, - FFFF119bfa687fe8119bfa68, - FFFF119bfad07fe8119bfad0, - FFFF119bfb387fe8119bfb38, - FFFF119bfba07fe8119bfba0, - FFFF119bfc087fe8119bfc08, - FFFF119bfc707fe8119bfc70, - FFFF119bfcd87fe8119bfcd8, - FFFF119bfd407fe8119bfd40, - FFFF119bfda87fe8119bfda8, - FFFF119bfe107fe8119bfe10, - FFFF119bfe787fe8119bfe78, - FFFF119bfee07fe8119bfee0, - FFFF119bff487fe8119bff48, - FFFF119bffb07fe8119bffb0, - FFFF119c00187fe8119c0018, - FFFF119c00807fe8119c0080, - FFFF119c00e87fe8119c00e8, - FFFF119c01507fe8119c0150, - FFFF119c01b87fe8119c01b8, - FFFF119c02207fe8119c0220, - FFFF119c02887fe8119c0288, - FFFF119c02f07fe8119c02f0, - FFFF119c03587fe8119c0358, + FFFF44031e007f8c44031e00, + FFFF44031e687f8c44031e68, + FFFF44031ed07f8c44031ed0, + FFFF44031f387f8c44031f38, + FFFF44031fa07f8c44031fa0, + FFFF440320087f8c44032008, + FFFF440320707f8c44032070, + FFFF440320d87f8c440320d8, + FFFF440321407f8c44032140, + FFFF440321a87f8c440321a8, + FFFF440322107f8c44032210, + FFFF440322787f8c44032278, + FFFF440322e07f8c440322e0, + FFFF440323487f8c44032348, + FFFF440323b07f8c440323b0, + FFFF440324187f8c44032418, + FFFF440324807f8c44032480, + FFFF440324e87f8c440324e8, + FFFF440325507f8c44032550, + FFFF440325b87f8c440325b8, + FFFF440326207f8c44032620, + FFFF440326887f8c44032688, + FFFF440326f07f8c440326f0, + FFFF440327587f8c44032758, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2692,70 +2692,70 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of LowLevelCloth */ - FFFF138097587fe813809758 /* Allocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD138097587fe813809758 /* Allocator.cpp */; }; - FFFF138097c07fe8138097c0 /* Factory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD138097c07fe8138097c0 /* Factory.cpp */; }; - FFFF138098287fe813809828 /* PhaseConfig.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD138098287fe813809828 /* PhaseConfig.cpp */; }; - FFFF138098907fe813809890 /* SwCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD138098907fe813809890 /* SwCloth.cpp */; }; - FFFF138098f87fe8138098f8 /* SwClothData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD138098f87fe8138098f8 /* SwClothData.cpp */; }; - FFFF138099607fe813809960 /* SwCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD138099607fe813809960 /* SwCollision.cpp */; }; - FFFF138099c87fe8138099c8 /* SwFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD138099c87fe8138099c8 /* SwFabric.cpp */; }; - FFFF13809a307fe813809a30 /* SwFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD13809a307fe813809a30 /* SwFactory.cpp */; }; - FFFF13809a987fe813809a98 /* SwInterCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD13809a987fe813809a98 /* SwInterCollision.cpp */; }; - FFFF13809b007fe813809b00 /* SwSelfCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD13809b007fe813809b00 /* SwSelfCollision.cpp */; }; - FFFF13809b687fe813809b68 /* SwSolver.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD13809b687fe813809b68 /* SwSolver.cpp */; }; - FFFF13809bd07fe813809bd0 /* SwSolverKernel.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD13809bd07fe813809bd0 /* SwSolverKernel.cpp */; }; - FFFF13809c387fe813809c38 /* TripletScheduler.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD13809c387fe813809c38 /* TripletScheduler.cpp */; }; + FFFF4403d1587f8c4403d158 /* Allocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4403d1587f8c4403d158 /* Allocator.cpp */; }; + FFFF4403d1c07f8c4403d1c0 /* Factory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4403d1c07f8c4403d1c0 /* Factory.cpp */; }; + FFFF4403d2287f8c4403d228 /* PhaseConfig.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4403d2287f8c4403d228 /* PhaseConfig.cpp */; }; + FFFF4403d2907f8c4403d290 /* SwCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4403d2907f8c4403d290 /* SwCloth.cpp */; }; + FFFF4403d2f87f8c4403d2f8 /* SwClothData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4403d2f87f8c4403d2f8 /* SwClothData.cpp */; }; + FFFF4403d3607f8c4403d360 /* SwCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4403d3607f8c4403d360 /* SwCollision.cpp */; }; + FFFF4403d3c87f8c4403d3c8 /* SwFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4403d3c87f8c4403d3c8 /* SwFabric.cpp */; }; + FFFF4403d4307f8c4403d430 /* SwFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4403d4307f8c4403d430 /* SwFactory.cpp */; }; + FFFF4403d4987f8c4403d498 /* SwInterCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4403d4987f8c4403d498 /* SwInterCollision.cpp */; }; + FFFF4403d5007f8c4403d500 /* SwSelfCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4403d5007f8c4403d500 /* SwSelfCollision.cpp */; }; + FFFF4403d5687f8c4403d568 /* SwSolver.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4403d5687f8c4403d568 /* SwSolver.cpp */; }; + FFFF4403d5d07f8c4403d5d0 /* SwSolverKernel.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4403d5d07f8c4403d5d0 /* SwSolverKernel.cpp */; }; + FFFF4403d6387f8c4403d638 /* TripletScheduler.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4403d6387f8c4403d638 /* TripletScheduler.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD130090807fe813009080 /* LowLevelCloth */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelCloth"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD1300ca507fe81300ca50 /* Cloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cloth.h"; path = "../../LowLevelCloth/include/Cloth.h"; sourceTree = SOURCE_ROOT; }; - FFFD1300cab87fe81300cab8 /* Fabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Fabric.h"; path = "../../LowLevelCloth/include/Fabric.h"; sourceTree = SOURCE_ROOT; }; - FFFD1300cb207fe81300cb20 /* Factory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.h"; path = "../../LowLevelCloth/include/Factory.h"; sourceTree = SOURCE_ROOT; }; - FFFD1300cb887fe81300cb88 /* PhaseConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.h"; path = "../../LowLevelCloth/include/PhaseConfig.h"; sourceTree = SOURCE_ROOT; }; - FFFD1300cbf07fe81300cbf0 /* Range.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Range.h"; path = "../../LowLevelCloth/include/Range.h"; sourceTree = SOURCE_ROOT; }; - FFFD1300cc587fe81300cc58 /* Solver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Solver.h"; path = "../../LowLevelCloth/include/Solver.h"; sourceTree = SOURCE_ROOT; }; - FFFD1300ccc07fe81300ccc0 /* Types.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Types.h"; path = "../../LowLevelCloth/include/Types.h"; sourceTree = SOURCE_ROOT; }; - FFFD13808e007fe813808e00 /* Allocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.h"; path = "../../LowLevelCloth/src/Allocator.h"; sourceTree = SOURCE_ROOT; }; - FFFD13808e687fe813808e68 /* Array.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Array.h"; path = "../../LowLevelCloth/src/Array.h"; sourceTree = SOURCE_ROOT; }; - FFFD13808ed07fe813808ed0 /* BoundingBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BoundingBox.h"; path = "../../LowLevelCloth/src/BoundingBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD13808f387fe813808f38 /* ClothBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothBase.h"; path = "../../LowLevelCloth/src/ClothBase.h"; sourceTree = SOURCE_ROOT; }; - FFFD13808fa07fe813808fa0 /* ClothImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothImpl.h"; path = "../../LowLevelCloth/src/ClothImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD138090087fe813809008 /* IndexPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IndexPair.h"; path = "../../LowLevelCloth/src/IndexPair.h"; sourceTree = SOURCE_ROOT; }; - FFFD138090707fe813809070 /* IterationState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IterationState.h"; path = "../../LowLevelCloth/src/IterationState.h"; sourceTree = SOURCE_ROOT; }; - FFFD138090d87fe8138090d8 /* MovingAverage.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MovingAverage.h"; path = "../../LowLevelCloth/src/MovingAverage.h"; sourceTree = SOURCE_ROOT; }; - FFFD138091407fe813809140 /* PointInterpolator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PointInterpolator.h"; path = "../../LowLevelCloth/src/PointInterpolator.h"; sourceTree = SOURCE_ROOT; }; - FFFD138091a87fe8138091a8 /* Simd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd.h"; path = "../../LowLevelCloth/src/Simd.h"; sourceTree = SOURCE_ROOT; }; - FFFD138092107fe813809210 /* StackAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "StackAllocator.h"; path = "../../LowLevelCloth/src/StackAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFD138092787fe813809278 /* SwCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.h"; path = "../../LowLevelCloth/src/SwCloth.h"; sourceTree = SOURCE_ROOT; }; - FFFD138092e07fe8138092e0 /* SwClothData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.h"; path = "../../LowLevelCloth/src/SwClothData.h"; sourceTree = SOURCE_ROOT; }; - FFFD138093487fe813809348 /* SwCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.h"; path = "../../LowLevelCloth/src/SwCollision.h"; sourceTree = SOURCE_ROOT; }; - FFFD138093b07fe8138093b0 /* SwCollisionHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollisionHelpers.h"; path = "../../LowLevelCloth/src/SwCollisionHelpers.h"; sourceTree = SOURCE_ROOT; }; - FFFD138094187fe813809418 /* SwFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.h"; path = "../../LowLevelCloth/src/SwFabric.h"; sourceTree = SOURCE_ROOT; }; - FFFD138094807fe813809480 /* SwFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.h"; path = "../../LowLevelCloth/src/SwFactory.h"; sourceTree = SOURCE_ROOT; }; - FFFD138094e87fe8138094e8 /* SwInterCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.h"; path = "../../LowLevelCloth/src/SwInterCollision.h"; sourceTree = SOURCE_ROOT; }; - FFFD138095507fe813809550 /* SwSelfCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.h"; path = "../../LowLevelCloth/src/SwSelfCollision.h"; sourceTree = SOURCE_ROOT; }; - FFFD138095b87fe8138095b8 /* SwSolver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.h"; path = "../../LowLevelCloth/src/SwSolver.h"; sourceTree = SOURCE_ROOT; }; - FFFD138096207fe813809620 /* SwSolverKernel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.h"; path = "../../LowLevelCloth/src/SwSolverKernel.h"; sourceTree = SOURCE_ROOT; }; - FFFD138096887fe813809688 /* TripletScheduler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.h"; path = "../../LowLevelCloth/src/TripletScheduler.h"; sourceTree = SOURCE_ROOT; }; - FFFD138096f07fe8138096f0 /* Vec4T.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Vec4T.h"; path = "../../LowLevelCloth/src/Vec4T.h"; sourceTree = SOURCE_ROOT; }; - FFFD138097587fe813809758 /* Allocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.cpp"; path = "../../LowLevelCloth/src/Allocator.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD138097c07fe8138097c0 /* Factory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.cpp"; path = "../../LowLevelCloth/src/Factory.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD138098287fe813809828 /* PhaseConfig.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.cpp"; path = "../../LowLevelCloth/src/PhaseConfig.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD138098907fe813809890 /* SwCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.cpp"; path = "../../LowLevelCloth/src/SwCloth.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD138098f87fe8138098f8 /* SwClothData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.cpp"; path = "../../LowLevelCloth/src/SwClothData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD138099607fe813809960 /* SwCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.cpp"; path = "../../LowLevelCloth/src/SwCollision.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD138099c87fe8138099c8 /* SwFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.cpp"; path = "../../LowLevelCloth/src/SwFabric.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD13809a307fe813809a30 /* SwFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.cpp"; path = "../../LowLevelCloth/src/SwFactory.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD13809a987fe813809a98 /* SwInterCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.cpp"; path = "../../LowLevelCloth/src/SwInterCollision.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD13809b007fe813809b00 /* SwSelfCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.cpp"; path = "../../LowLevelCloth/src/SwSelfCollision.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD13809b687fe813809b68 /* SwSolver.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.cpp"; path = "../../LowLevelCloth/src/SwSolver.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD13809bd07fe813809bd0 /* SwSolverKernel.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.cpp"; path = "../../LowLevelCloth/src/SwSolverKernel.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD13809c387fe813809c38 /* TripletScheduler.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.cpp"; path = "../../LowLevelCloth/src/TripletScheduler.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD43ca21407f8c43ca2140 /* LowLevelCloth */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelCloth"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD43c9ef007f8c43c9ef00 /* Cloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cloth.h"; path = "../../LowLevelCloth/include/Cloth.h"; sourceTree = SOURCE_ROOT; }; + FFFD43c9ef687f8c43c9ef68 /* Fabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Fabric.h"; path = "../../LowLevelCloth/include/Fabric.h"; sourceTree = SOURCE_ROOT; }; + FFFD43c9efd07f8c43c9efd0 /* Factory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.h"; path = "../../LowLevelCloth/include/Factory.h"; sourceTree = SOURCE_ROOT; }; + FFFD43c9f0387f8c43c9f038 /* PhaseConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.h"; path = "../../LowLevelCloth/include/PhaseConfig.h"; sourceTree = SOURCE_ROOT; }; + FFFD43c9f0a07f8c43c9f0a0 /* Range.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Range.h"; path = "../../LowLevelCloth/include/Range.h"; sourceTree = SOURCE_ROOT; }; + FFFD43c9f1087f8c43c9f108 /* Solver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Solver.h"; path = "../../LowLevelCloth/include/Solver.h"; sourceTree = SOURCE_ROOT; }; + FFFD43c9f1707f8c43c9f170 /* Types.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Types.h"; path = "../../LowLevelCloth/include/Types.h"; sourceTree = SOURCE_ROOT; }; + FFFD4403c8007f8c4403c800 /* Allocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.h"; path = "../../LowLevelCloth/src/Allocator.h"; sourceTree = SOURCE_ROOT; }; + FFFD4403c8687f8c4403c868 /* Array.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Array.h"; path = "../../LowLevelCloth/src/Array.h"; sourceTree = SOURCE_ROOT; }; + FFFD4403c8d07f8c4403c8d0 /* BoundingBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BoundingBox.h"; path = "../../LowLevelCloth/src/BoundingBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD4403c9387f8c4403c938 /* ClothBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothBase.h"; path = "../../LowLevelCloth/src/ClothBase.h"; sourceTree = SOURCE_ROOT; }; + FFFD4403c9a07f8c4403c9a0 /* ClothImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothImpl.h"; path = "../../LowLevelCloth/src/ClothImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD4403ca087f8c4403ca08 /* IndexPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IndexPair.h"; path = "../../LowLevelCloth/src/IndexPair.h"; sourceTree = SOURCE_ROOT; }; + FFFD4403ca707f8c4403ca70 /* IterationState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IterationState.h"; path = "../../LowLevelCloth/src/IterationState.h"; sourceTree = SOURCE_ROOT; }; + FFFD4403cad87f8c4403cad8 /* MovingAverage.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MovingAverage.h"; path = "../../LowLevelCloth/src/MovingAverage.h"; sourceTree = SOURCE_ROOT; }; + FFFD4403cb407f8c4403cb40 /* PointInterpolator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PointInterpolator.h"; path = "../../LowLevelCloth/src/PointInterpolator.h"; sourceTree = SOURCE_ROOT; }; + FFFD4403cba87f8c4403cba8 /* Simd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd.h"; path = "../../LowLevelCloth/src/Simd.h"; sourceTree = SOURCE_ROOT; }; + FFFD4403cc107f8c4403cc10 /* StackAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "StackAllocator.h"; path = "../../LowLevelCloth/src/StackAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFD4403cc787f8c4403cc78 /* SwCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.h"; path = "../../LowLevelCloth/src/SwCloth.h"; sourceTree = SOURCE_ROOT; }; + FFFD4403cce07f8c4403cce0 /* SwClothData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.h"; path = "../../LowLevelCloth/src/SwClothData.h"; sourceTree = SOURCE_ROOT; }; + FFFD4403cd487f8c4403cd48 /* SwCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.h"; path = "../../LowLevelCloth/src/SwCollision.h"; sourceTree = SOURCE_ROOT; }; + FFFD4403cdb07f8c4403cdb0 /* SwCollisionHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollisionHelpers.h"; path = "../../LowLevelCloth/src/SwCollisionHelpers.h"; sourceTree = SOURCE_ROOT; }; + FFFD4403ce187f8c4403ce18 /* SwFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.h"; path = "../../LowLevelCloth/src/SwFabric.h"; sourceTree = SOURCE_ROOT; }; + FFFD4403ce807f8c4403ce80 /* SwFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.h"; path = "../../LowLevelCloth/src/SwFactory.h"; sourceTree = SOURCE_ROOT; }; + FFFD4403cee87f8c4403cee8 /* SwInterCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.h"; path = "../../LowLevelCloth/src/SwInterCollision.h"; sourceTree = SOURCE_ROOT; }; + FFFD4403cf507f8c4403cf50 /* SwSelfCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.h"; path = "../../LowLevelCloth/src/SwSelfCollision.h"; sourceTree = SOURCE_ROOT; }; + FFFD4403cfb87f8c4403cfb8 /* SwSolver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.h"; path = "../../LowLevelCloth/src/SwSolver.h"; sourceTree = SOURCE_ROOT; }; + FFFD4403d0207f8c4403d020 /* SwSolverKernel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.h"; path = "../../LowLevelCloth/src/SwSolverKernel.h"; sourceTree = SOURCE_ROOT; }; + FFFD4403d0887f8c4403d088 /* TripletScheduler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.h"; path = "../../LowLevelCloth/src/TripletScheduler.h"; sourceTree = SOURCE_ROOT; }; + FFFD4403d0f07f8c4403d0f0 /* Vec4T.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Vec4T.h"; path = "../../LowLevelCloth/src/Vec4T.h"; sourceTree = SOURCE_ROOT; }; + FFFD4403d1587f8c4403d158 /* Allocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.cpp"; path = "../../LowLevelCloth/src/Allocator.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4403d1c07f8c4403d1c0 /* Factory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.cpp"; path = "../../LowLevelCloth/src/Factory.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4403d2287f8c4403d228 /* PhaseConfig.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.cpp"; path = "../../LowLevelCloth/src/PhaseConfig.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4403d2907f8c4403d290 /* SwCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.cpp"; path = "../../LowLevelCloth/src/SwCloth.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4403d2f87f8c4403d2f8 /* SwClothData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.cpp"; path = "../../LowLevelCloth/src/SwClothData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4403d3607f8c4403d360 /* SwCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.cpp"; path = "../../LowLevelCloth/src/SwCollision.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4403d3c87f8c4403d3c8 /* SwFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.cpp"; path = "../../LowLevelCloth/src/SwFabric.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4403d4307f8c4403d430 /* SwFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.cpp"; path = "../../LowLevelCloth/src/SwFactory.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4403d4987f8c4403d498 /* SwInterCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.cpp"; path = "../../LowLevelCloth/src/SwInterCollision.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4403d5007f8c4403d500 /* SwSelfCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.cpp"; path = "../../LowLevelCloth/src/SwSelfCollision.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4403d5687f8c4403d568 /* SwSolver.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.cpp"; path = "../../LowLevelCloth/src/SwSolver.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4403d5d07f8c4403d5d0 /* SwSolverKernel.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.cpp"; path = "../../LowLevelCloth/src/SwSolverKernel.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD4403d6387f8c4403d638 /* TripletScheduler.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.cpp"; path = "../../LowLevelCloth/src/TripletScheduler.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2130090807fe813009080 /* Resources */ = { + FFF243ca21407f8c43ca2140 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2765,7 +2765,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC130090807fe813009080 /* Frameworks */ = { + FFFC43ca21407f8c43ca2140 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2775,23 +2775,23 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8130090807fe813009080 /* Sources */ = { + FFF843ca21407f8c43ca2140 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF138097587fe813809758, - FFFF138097c07fe8138097c0, - FFFF138098287fe813809828, - FFFF138098907fe813809890, - FFFF138098f87fe8138098f8, - FFFF138099607fe813809960, - FFFF138099c87fe8138099c8, - FFFF13809a307fe813809a30, - FFFF13809a987fe813809a98, - FFFF13809b007fe813809b00, - FFFF13809b687fe813809b68, - FFFF13809bd07fe813809bd0, - FFFF13809c387fe813809c38, + FFFF4403d1587f8c4403d158, + FFFF4403d1c07f8c4403d1c0, + FFFF4403d2287f8c4403d228, + FFFF4403d2907f8c4403d290, + FFFF4403d2f87f8c4403d2f8, + FFFF4403d3607f8c4403d360, + FFFF4403d3c87f8c4403d3c8, + FFFF4403d4307f8c4403d430, + FFFF4403d4987f8c4403d498, + FFFF4403d5007f8c4403d500, + FFFF4403d5687f8c4403d568, + FFFF4403d5d07f8c4403d5d0, + FFFF4403d6387f8c4403d638, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2803,79 +2803,79 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of LowLevelParticles */ - FFFF119caf587fe8119caf58 /* PtBatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD119caf587fe8119caf58 /* PtBatcher.cpp */; }; - FFFF119cafc07fe8119cafc0 /* PtBodyTransformVault.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD119cafc07fe8119cafc0 /* PtBodyTransformVault.cpp */; }; - FFFF119cb0287fe8119cb028 /* PtCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD119cb0287fe8119cb028 /* PtCollision.cpp */; }; - FFFF119cb0907fe8119cb090 /* PtCollisionBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD119cb0907fe8119cb090 /* PtCollisionBox.cpp */; }; - FFFF119cb0f87fe8119cb0f8 /* PtCollisionCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD119cb0f87fe8119cb0f8 /* PtCollisionCapsule.cpp */; }; - FFFF119cb1607fe8119cb160 /* PtCollisionConvex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD119cb1607fe8119cb160 /* PtCollisionConvex.cpp */; }; - FFFF119cb1c87fe8119cb1c8 /* PtCollisionMesh.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD119cb1c87fe8119cb1c8 /* PtCollisionMesh.cpp */; }; - FFFF119cb2307fe8119cb230 /* PtCollisionPlane.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD119cb2307fe8119cb230 /* PtCollisionPlane.cpp */; }; - FFFF119cb2987fe8119cb298 /* PtCollisionSphere.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD119cb2987fe8119cb298 /* PtCollisionSphere.cpp */; }; - FFFF119cb3007fe8119cb300 /* PtContextCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD119cb3007fe8119cb300 /* PtContextCpu.cpp */; }; - FFFF119cb3687fe8119cb368 /* PtDynamics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD119cb3687fe8119cb368 /* PtDynamics.cpp */; }; - FFFF119cb3d07fe8119cb3d0 /* PtParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD119cb3d07fe8119cb3d0 /* PtParticleData.cpp */; }; - FFFF119cb4387fe8119cb438 /* PtParticleShapeCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD119cb4387fe8119cb438 /* PtParticleShapeCpu.cpp */; }; - FFFF119cb4a07fe8119cb4a0 /* PtParticleSystemSimCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD119cb4a07fe8119cb4a0 /* PtParticleSystemSimCpu.cpp */; }; - FFFF119cb5087fe8119cb508 /* PtSpatialHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD119cb5087fe8119cb508 /* PtSpatialHash.cpp */; }; - FFFF119cb5707fe8119cb570 /* PtSpatialLocalHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD119cb5707fe8119cb570 /* PtSpatialLocalHash.cpp */; }; + FFFF448303587f8c44830358 /* PtBatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448303587f8c44830358 /* PtBatcher.cpp */; }; + FFFF448303c07f8c448303c0 /* PtBodyTransformVault.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448303c07f8c448303c0 /* PtBodyTransformVault.cpp */; }; + FFFF448304287f8c44830428 /* PtCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448304287f8c44830428 /* PtCollision.cpp */; }; + FFFF448304907f8c44830490 /* PtCollisionBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448304907f8c44830490 /* PtCollisionBox.cpp */; }; + FFFF448304f87f8c448304f8 /* PtCollisionCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448304f87f8c448304f8 /* PtCollisionCapsule.cpp */; }; + FFFF448305607f8c44830560 /* PtCollisionConvex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448305607f8c44830560 /* PtCollisionConvex.cpp */; }; + FFFF448305c87f8c448305c8 /* PtCollisionMesh.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448305c87f8c448305c8 /* PtCollisionMesh.cpp */; }; + FFFF448306307f8c44830630 /* PtCollisionPlane.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448306307f8c44830630 /* PtCollisionPlane.cpp */; }; + FFFF448306987f8c44830698 /* PtCollisionSphere.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448306987f8c44830698 /* PtCollisionSphere.cpp */; }; + FFFF448307007f8c44830700 /* PtContextCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448307007f8c44830700 /* PtContextCpu.cpp */; }; + FFFF448307687f8c44830768 /* PtDynamics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448307687f8c44830768 /* PtDynamics.cpp */; }; + FFFF448307d07f8c448307d0 /* PtParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448307d07f8c448307d0 /* PtParticleData.cpp */; }; + FFFF448308387f8c44830838 /* PtParticleShapeCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448308387f8c44830838 /* PtParticleShapeCpu.cpp */; }; + FFFF448308a07f8c448308a0 /* PtParticleSystemSimCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448308a07f8c448308a0 /* PtParticleSystemSimCpu.cpp */; }; + FFFF448309087f8c44830908 /* PtSpatialHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448309087f8c44830908 /* PtSpatialHash.cpp */; }; + FFFF448309707f8c44830970 /* PtSpatialLocalHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448309707f8c44830970 /* PtSpatialLocalHash.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD12708bc07fe812708bc0 /* LowLevelParticles */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelParticles"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD119c90007fe8119c9000 /* PtBodyTransformVault.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.h"; path = "../../LowLevelParticles/include/PtBodyTransformVault.h"; sourceTree = SOURCE_ROOT; }; - FFFD119c90687fe8119c9068 /* PtContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContext.h"; path = "../../LowLevelParticles/include/PtContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD119c90d07fe8119c90d0 /* PtGridCellVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtGridCellVector.h"; path = "../../LowLevelParticles/include/PtGridCellVector.h"; sourceTree = SOURCE_ROOT; }; - FFFD119c91387fe8119c9138 /* PtParticle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticle.h"; path = "../../LowLevelParticles/include/PtParticle.h"; sourceTree = SOURCE_ROOT; }; - FFFD119c91a07fe8119c91a0 /* PtParticleContactManagerStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleContactManagerStream.h"; path = "../../LowLevelParticles/include/PtParticleContactManagerStream.h"; sourceTree = SOURCE_ROOT; }; - FFFD119c92087fe8119c9208 /* PtParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.h"; path = "../../LowLevelParticles/include/PtParticleData.h"; sourceTree = SOURCE_ROOT; }; - FFFD119c92707fe8119c9270 /* PtParticleShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShape.h"; path = "../../LowLevelParticles/include/PtParticleShape.h"; sourceTree = SOURCE_ROOT; }; - FFFD119c92d87fe8119c92d8 /* PtParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemCore.h"; path = "../../LowLevelParticles/include/PtParticleSystemCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD119c93407fe8119c9340 /* PtParticleSystemFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemFlags.h"; path = "../../LowLevelParticles/include/PtParticleSystemFlags.h"; sourceTree = SOURCE_ROOT; }; - FFFD119c93a87fe8119c93a8 /* PtParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSim.h"; path = "../../LowLevelParticles/include/PtParticleSystemSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD119ca6007fe8119ca600 /* PtBatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.h"; path = "../../LowLevelParticles/src/PtBatcher.h"; sourceTree = SOURCE_ROOT; }; - FFFD119ca6687fe8119ca668 /* PtCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.h"; path = "../../LowLevelParticles/src/PtCollision.h"; sourceTree = SOURCE_ROOT; }; - FFFD119ca6d07fe8119ca6d0 /* PtCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionData.h"; path = "../../LowLevelParticles/src/PtCollisionData.h"; sourceTree = SOURCE_ROOT; }; - FFFD119ca7387fe8119ca738 /* PtCollisionHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionHelper.h"; path = "../../LowLevelParticles/src/PtCollisionHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFD119ca7a07fe8119ca7a0 /* PtCollisionMethods.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMethods.h"; path = "../../LowLevelParticles/src/PtCollisionMethods.h"; sourceTree = SOURCE_ROOT; }; - FFFD119ca8087fe8119ca808 /* PtCollisionParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionParameters.h"; path = "../../LowLevelParticles/src/PtCollisionParameters.h"; sourceTree = SOURCE_ROOT; }; - FFFD119ca8707fe8119ca870 /* PtConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConfig.h"; path = "../../LowLevelParticles/src/PtConfig.h"; sourceTree = SOURCE_ROOT; }; - FFFD119ca8d87fe8119ca8d8 /* PtConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConstants.h"; path = "../../LowLevelParticles/src/PtConstants.h"; sourceTree = SOURCE_ROOT; }; - FFFD119ca9407fe8119ca940 /* PtContextCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.h"; path = "../../LowLevelParticles/src/PtContextCpu.h"; sourceTree = SOURCE_ROOT; }; - FFFD119ca9a87fe8119ca9a8 /* PtDynamicHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicHelper.h"; path = "../../LowLevelParticles/src/PtDynamicHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFD119caa107fe8119caa10 /* PtDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.h"; path = "../../LowLevelParticles/src/PtDynamics.h"; sourceTree = SOURCE_ROOT; }; - FFFD119caa787fe8119caa78 /* PtDynamicsKernels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsKernels.h"; path = "../../LowLevelParticles/src/PtDynamicsKernels.h"; sourceTree = SOURCE_ROOT; }; - FFFD119caae07fe8119caae0 /* PtDynamicsParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsParameters.h"; path = "../../LowLevelParticles/src/PtDynamicsParameters.h"; sourceTree = SOURCE_ROOT; }; - FFFD119cab487fe8119cab48 /* PtDynamicsTempBuffers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsTempBuffers.h"; path = "../../LowLevelParticles/src/PtDynamicsTempBuffers.h"; sourceTree = SOURCE_ROOT; }; - FFFD119cabb07fe8119cabb0 /* PtHeightFieldAabbTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtHeightFieldAabbTest.h"; path = "../../LowLevelParticles/src/PtHeightFieldAabbTest.h"; sourceTree = SOURCE_ROOT; }; - FFFD119cac187fe8119cac18 /* PtPacketSections.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtPacketSections.h"; path = "../../LowLevelParticles/src/PtPacketSections.h"; sourceTree = SOURCE_ROOT; }; - FFFD119cac807fe8119cac80 /* PtParticleCell.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleCell.h"; path = "../../LowLevelParticles/src/PtParticleCell.h"; sourceTree = SOURCE_ROOT; }; - FFFD119cace87fe8119cace8 /* PtParticleOpcodeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleOpcodeCache.h"; path = "../../LowLevelParticles/src/PtParticleOpcodeCache.h"; sourceTree = SOURCE_ROOT; }; - FFFD119cad507fe8119cad50 /* PtParticleShapeCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.h"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.h"; sourceTree = SOURCE_ROOT; }; - FFFD119cadb87fe8119cadb8 /* PtParticleSystemSimCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.h"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.h"; sourceTree = SOURCE_ROOT; }; - FFFD119cae207fe8119cae20 /* PtSpatialHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.h"; path = "../../LowLevelParticles/src/PtSpatialHash.h"; sourceTree = SOURCE_ROOT; }; - FFFD119cae887fe8119cae88 /* PtSpatialHashHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHashHelper.h"; path = "../../LowLevelParticles/src/PtSpatialHashHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFD119caef07fe8119caef0 /* PtTwoWayData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtTwoWayData.h"; path = "../../LowLevelParticles/src/PtTwoWayData.h"; sourceTree = SOURCE_ROOT; }; - FFFD119caf587fe8119caf58 /* PtBatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.cpp"; path = "../../LowLevelParticles/src/PtBatcher.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119cafc07fe8119cafc0 /* PtBodyTransformVault.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.cpp"; path = "../../LowLevelParticles/src/PtBodyTransformVault.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119cb0287fe8119cb028 /* PtCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.cpp"; path = "../../LowLevelParticles/src/PtCollision.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119cb0907fe8119cb090 /* PtCollisionBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionBox.cpp"; path = "../../LowLevelParticles/src/PtCollisionBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119cb0f87fe8119cb0f8 /* PtCollisionCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionCapsule.cpp"; path = "../../LowLevelParticles/src/PtCollisionCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119cb1607fe8119cb160 /* PtCollisionConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionConvex.cpp"; path = "../../LowLevelParticles/src/PtCollisionConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119cb1c87fe8119cb1c8 /* PtCollisionMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMesh.cpp"; path = "../../LowLevelParticles/src/PtCollisionMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119cb2307fe8119cb230 /* PtCollisionPlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionPlane.cpp"; path = "../../LowLevelParticles/src/PtCollisionPlane.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119cb2987fe8119cb298 /* PtCollisionSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionSphere.cpp"; path = "../../LowLevelParticles/src/PtCollisionSphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119cb3007fe8119cb300 /* PtContextCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.cpp"; path = "../../LowLevelParticles/src/PtContextCpu.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119cb3687fe8119cb368 /* PtDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.cpp"; path = "../../LowLevelParticles/src/PtDynamics.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119cb3d07fe8119cb3d0 /* PtParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.cpp"; path = "../../LowLevelParticles/src/PtParticleData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119cb4387fe8119cb438 /* PtParticleShapeCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119cb4a07fe8119cb4a0 /* PtParticleSystemSimCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119cb5087fe8119cb508 /* PtSpatialHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialHash.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD119cb5707fe8119cb570 /* PtSpatialLocalHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialLocalHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialLocalHash.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD43f22f607f8c43f22f60 /* LowLevelParticles */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelParticles"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD448252007f8c44825200 /* PtBodyTransformVault.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.h"; path = "../../LowLevelParticles/include/PtBodyTransformVault.h"; sourceTree = SOURCE_ROOT; }; + FFFD448252687f8c44825268 /* PtContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContext.h"; path = "../../LowLevelParticles/include/PtContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD448252d07f8c448252d0 /* PtGridCellVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtGridCellVector.h"; path = "../../LowLevelParticles/include/PtGridCellVector.h"; sourceTree = SOURCE_ROOT; }; + FFFD448253387f8c44825338 /* PtParticle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticle.h"; path = "../../LowLevelParticles/include/PtParticle.h"; sourceTree = SOURCE_ROOT; }; + FFFD448253a07f8c448253a0 /* PtParticleContactManagerStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleContactManagerStream.h"; path = "../../LowLevelParticles/include/PtParticleContactManagerStream.h"; sourceTree = SOURCE_ROOT; }; + FFFD448254087f8c44825408 /* PtParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.h"; path = "../../LowLevelParticles/include/PtParticleData.h"; sourceTree = SOURCE_ROOT; }; + FFFD448254707f8c44825470 /* PtParticleShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShape.h"; path = "../../LowLevelParticles/include/PtParticleShape.h"; sourceTree = SOURCE_ROOT; }; + FFFD448254d87f8c448254d8 /* PtParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemCore.h"; path = "../../LowLevelParticles/include/PtParticleSystemCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD448255407f8c44825540 /* PtParticleSystemFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemFlags.h"; path = "../../LowLevelParticles/include/PtParticleSystemFlags.h"; sourceTree = SOURCE_ROOT; }; + FFFD448255a87f8c448255a8 /* PtParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSim.h"; path = "../../LowLevelParticles/include/PtParticleSystemSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD4482fa007f8c4482fa00 /* PtBatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.h"; path = "../../LowLevelParticles/src/PtBatcher.h"; sourceTree = SOURCE_ROOT; }; + FFFD4482fa687f8c4482fa68 /* PtCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.h"; path = "../../LowLevelParticles/src/PtCollision.h"; sourceTree = SOURCE_ROOT; }; + FFFD4482fad07f8c4482fad0 /* PtCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionData.h"; path = "../../LowLevelParticles/src/PtCollisionData.h"; sourceTree = SOURCE_ROOT; }; + FFFD4482fb387f8c4482fb38 /* PtCollisionHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionHelper.h"; path = "../../LowLevelParticles/src/PtCollisionHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFD4482fba07f8c4482fba0 /* PtCollisionMethods.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMethods.h"; path = "../../LowLevelParticles/src/PtCollisionMethods.h"; sourceTree = SOURCE_ROOT; }; + FFFD4482fc087f8c4482fc08 /* PtCollisionParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionParameters.h"; path = "../../LowLevelParticles/src/PtCollisionParameters.h"; sourceTree = SOURCE_ROOT; }; + FFFD4482fc707f8c4482fc70 /* PtConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConfig.h"; path = "../../LowLevelParticles/src/PtConfig.h"; sourceTree = SOURCE_ROOT; }; + FFFD4482fcd87f8c4482fcd8 /* PtConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConstants.h"; path = "../../LowLevelParticles/src/PtConstants.h"; sourceTree = SOURCE_ROOT; }; + FFFD4482fd407f8c4482fd40 /* PtContextCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.h"; path = "../../LowLevelParticles/src/PtContextCpu.h"; sourceTree = SOURCE_ROOT; }; + FFFD4482fda87f8c4482fda8 /* PtDynamicHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicHelper.h"; path = "../../LowLevelParticles/src/PtDynamicHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFD4482fe107f8c4482fe10 /* PtDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.h"; path = "../../LowLevelParticles/src/PtDynamics.h"; sourceTree = SOURCE_ROOT; }; + FFFD4482fe787f8c4482fe78 /* PtDynamicsKernels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsKernels.h"; path = "../../LowLevelParticles/src/PtDynamicsKernels.h"; sourceTree = SOURCE_ROOT; }; + FFFD4482fee07f8c4482fee0 /* PtDynamicsParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsParameters.h"; path = "../../LowLevelParticles/src/PtDynamicsParameters.h"; sourceTree = SOURCE_ROOT; }; + FFFD4482ff487f8c4482ff48 /* PtDynamicsTempBuffers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsTempBuffers.h"; path = "../../LowLevelParticles/src/PtDynamicsTempBuffers.h"; sourceTree = SOURCE_ROOT; }; + FFFD4482ffb07f8c4482ffb0 /* PtHeightFieldAabbTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtHeightFieldAabbTest.h"; path = "../../LowLevelParticles/src/PtHeightFieldAabbTest.h"; sourceTree = SOURCE_ROOT; }; + FFFD448300187f8c44830018 /* PtPacketSections.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtPacketSections.h"; path = "../../LowLevelParticles/src/PtPacketSections.h"; sourceTree = SOURCE_ROOT; }; + FFFD448300807f8c44830080 /* PtParticleCell.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleCell.h"; path = "../../LowLevelParticles/src/PtParticleCell.h"; sourceTree = SOURCE_ROOT; }; + FFFD448300e87f8c448300e8 /* PtParticleOpcodeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleOpcodeCache.h"; path = "../../LowLevelParticles/src/PtParticleOpcodeCache.h"; sourceTree = SOURCE_ROOT; }; + FFFD448301507f8c44830150 /* PtParticleShapeCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.h"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.h"; sourceTree = SOURCE_ROOT; }; + FFFD448301b87f8c448301b8 /* PtParticleSystemSimCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.h"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.h"; sourceTree = SOURCE_ROOT; }; + FFFD448302207f8c44830220 /* PtSpatialHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.h"; path = "../../LowLevelParticles/src/PtSpatialHash.h"; sourceTree = SOURCE_ROOT; }; + FFFD448302887f8c44830288 /* PtSpatialHashHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHashHelper.h"; path = "../../LowLevelParticles/src/PtSpatialHashHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFD448302f07f8c448302f0 /* PtTwoWayData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtTwoWayData.h"; path = "../../LowLevelParticles/src/PtTwoWayData.h"; sourceTree = SOURCE_ROOT; }; + FFFD448303587f8c44830358 /* PtBatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.cpp"; path = "../../LowLevelParticles/src/PtBatcher.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD448303c07f8c448303c0 /* PtBodyTransformVault.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.cpp"; path = "../../LowLevelParticles/src/PtBodyTransformVault.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD448304287f8c44830428 /* PtCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.cpp"; path = "../../LowLevelParticles/src/PtCollision.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD448304907f8c44830490 /* PtCollisionBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionBox.cpp"; path = "../../LowLevelParticles/src/PtCollisionBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD448304f87f8c448304f8 /* PtCollisionCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionCapsule.cpp"; path = "../../LowLevelParticles/src/PtCollisionCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD448305607f8c44830560 /* PtCollisionConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionConvex.cpp"; path = "../../LowLevelParticles/src/PtCollisionConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD448305c87f8c448305c8 /* PtCollisionMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMesh.cpp"; path = "../../LowLevelParticles/src/PtCollisionMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD448306307f8c44830630 /* PtCollisionPlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionPlane.cpp"; path = "../../LowLevelParticles/src/PtCollisionPlane.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD448306987f8c44830698 /* PtCollisionSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionSphere.cpp"; path = "../../LowLevelParticles/src/PtCollisionSphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD448307007f8c44830700 /* PtContextCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.cpp"; path = "../../LowLevelParticles/src/PtContextCpu.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD448307687f8c44830768 /* PtDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.cpp"; path = "../../LowLevelParticles/src/PtDynamics.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD448307d07f8c448307d0 /* PtParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.cpp"; path = "../../LowLevelParticles/src/PtParticleData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD448308387f8c44830838 /* PtParticleShapeCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD448308a07f8c448308a0 /* PtParticleSystemSimCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD448309087f8c44830908 /* PtSpatialHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialHash.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD448309707f8c44830970 /* PtSpatialLocalHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialLocalHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialLocalHash.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF212708bc07fe812708bc0 /* Resources */ = { + FFF243f22f607f8c43f22f60 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2885,7 +2885,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC12708bc07fe812708bc0 /* Frameworks */ = { + FFFC43f22f607f8c43f22f60 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2895,26 +2895,26 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF812708bc07fe812708bc0 /* Sources */ = { + FFF843f22f607f8c43f22f60 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF119caf587fe8119caf58, - FFFF119cafc07fe8119cafc0, - FFFF119cb0287fe8119cb028, - FFFF119cb0907fe8119cb090, - FFFF119cb0f87fe8119cb0f8, - FFFF119cb1607fe8119cb160, - FFFF119cb1c87fe8119cb1c8, - FFFF119cb2307fe8119cb230, - FFFF119cb2987fe8119cb298, - FFFF119cb3007fe8119cb300, - FFFF119cb3687fe8119cb368, - FFFF119cb3d07fe8119cb3d0, - FFFF119cb4387fe8119cb438, - FFFF119cb4a07fe8119cb4a0, - FFFF119cb5087fe8119cb508, - FFFF119cb5707fe8119cb570, + FFFF448303587f8c44830358, + FFFF448303c07f8c448303c0, + FFFF448304287f8c44830428, + FFFF448304907f8c44830490, + FFFF448304f87f8c448304f8, + FFFF448305607f8c44830560, + FFFF448305c87f8c448305c8, + FFFF448306307f8c44830630, + FFFF448306987f8c44830698, + FFFF448307007f8c44830700, + FFFF448307687f8c44830768, + FFFF448307d07f8c448307d0, + FFFF448308387f8c44830838, + FFFF448308a07f8c448308a0, + FFFF448309087f8c44830908, + FFFF448309707f8c44830970, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2926,22 +2926,22 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PxTask */ - FFFF132817a07fe8132817a0 /* src/TaskManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD132817a07fe8132817a0 /* src/TaskManager.cpp */; }; + FFFF43cc1af07f8c43cc1af0 /* src/TaskManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD43cc1af07f8c43cc1af0 /* src/TaskManager.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD132a0da07fe8132a0da0 /* PxTask */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxTask"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD132815307fe813281530 /* PxCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCpuDispatcher.h"; path = "../../../../PxShared/include/task/PxCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; - FFFD132815987fe813281598 /* PxGpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuDispatcher.h"; path = "../../../../PxShared/include/task/PxGpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; - FFFD132816007fe813281600 /* PxGpuTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuTask.h"; path = "../../../../PxShared/include/task/PxGpuTask.h"; sourceTree = SOURCE_ROOT; }; - FFFD132816687fe813281668 /* PxTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTask.h"; path = "../../../../PxShared/include/task/PxTask.h"; sourceTree = SOURCE_ROOT; }; - FFFD132816d07fe8132816d0 /* PxTaskDefine.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskDefine.h"; path = "../../../../PxShared/include/task/PxTaskDefine.h"; sourceTree = SOURCE_ROOT; }; - FFFD132817387fe813281738 /* PxTaskManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskManager.h"; path = "../../../../PxShared/include/task/PxTaskManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD132817a07fe8132817a0 /* src/TaskManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/TaskManager.cpp"; path = "../../../../PxShared/src/task/src/TaskManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD43cdb0507f8c43cdb050 /* PxTask */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxTask"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD43cc24d07f8c43cc24d0 /* PxCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCpuDispatcher.h"; path = "../../../../PxShared/include/task/PxCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; + FFFD43cc25387f8c43cc2538 /* PxGpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuDispatcher.h"; path = "../../../../PxShared/include/task/PxGpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; + FFFD43cc25a07f8c43cc25a0 /* PxGpuTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuTask.h"; path = "../../../../PxShared/include/task/PxGpuTask.h"; sourceTree = SOURCE_ROOT; }; + FFFD43cc26087f8c43cc2608 /* PxTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTask.h"; path = "../../../../PxShared/include/task/PxTask.h"; sourceTree = SOURCE_ROOT; }; + FFFD43cc26707f8c43cc2670 /* PxTaskDefine.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskDefine.h"; path = "../../../../PxShared/include/task/PxTaskDefine.h"; sourceTree = SOURCE_ROOT; }; + FFFD43cc26d87f8c43cc26d8 /* PxTaskManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskManager.h"; path = "../../../../PxShared/include/task/PxTaskManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD43cc1af07f8c43cc1af0 /* 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 */ - FFF2132a0da07fe8132a0da0 /* Resources */ = { + FFF243cdb0507f8c43cdb050 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2951,7 +2951,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC132a0da07fe8132a0da0 /* Frameworks */ = { + FFFC43cdb0507f8c43cdb050 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2961,11 +2961,11 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8132a0da07fe8132a0da0 /* Sources */ = { + FFF843cdb0507f8c43cdb050 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF132817a07fe8132817a0, + FFFF43cc1af07f8c43cc1af0, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2977,17 +2977,17 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PsFastXml */ - FFFF1263f1107fe81263f110 /* PsFastXml.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD1263f1107fe81263f110 /* PsFastXml.cpp */; }; + FFFF45501a907f8c45501a90 /* PsFastXml.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD45501a907f8c45501a90 /* PsFastXml.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD1265b4d07fe81265b4d0 /* PsFastXml */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PsFastXml"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD126394307fe812639430 /* PsFastXml.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PsFastXml.h"; path = "../../../../PxShared/src/fastxml/include/PsFastXml.h"; sourceTree = SOURCE_ROOT; }; - FFFD1263f1107fe81263f110 /* PsFastXml.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PsFastXml.cpp"; path = "../../../../PxShared/src/fastxml/src/PsFastXml.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD455011f07f8c455011f0 /* PsFastXml */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PsFastXml"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD455019907f8c45501990 /* PsFastXml.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PsFastXml.h"; path = "../../../../PxShared/src/fastxml/include/PsFastXml.h"; sourceTree = SOURCE_ROOT; }; + FFFD45501a907f8c45501a90 /* 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 */ - FFF21265b4d07fe81265b4d0 /* Resources */ = { + FFF2455011f07f8c455011f0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2997,7 +2997,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC1265b4d07fe81265b4d0 /* Frameworks */ = { + FFFC455011f07f8c455011f0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -3007,11 +3007,11 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF81265b4d07fe81265b4d0 /* Sources */ = { + FFF8455011f07f8c455011f0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF1263f1107fe81263f110, + FFFF45501a907f8c45501a90, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -3023,1967 +3023,1967 @@ /* End PBXTargetDependency section */ /* Begin PBXContainerItemProxy section */ - FFF51266ac007fe81266ac00 /* PBXContainerItemProxy */ = { - containerPortal = FFF910f1e4907fe810f1e490 /* Project object */; + FFF545504df07f8c45504df0 /* PBXContainerItemProxy */ = { + containerPortal = FFF942c823b07f8c42c823b0 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA1266ac007fe81266ac00 /* PhysX */; + remoteGlobalIDString = FFFA45504df07f8c45504df0 /* PhysX */; remoteInfo = "PhysX"; }; - FFF5126754e07fe8126754e0 /* PBXContainerItemProxy */ = { - containerPortal = FFF910f1e4907fe810f1e490 /* Project object */; + FFF54550d8c07f8c4550d8c0 /* PBXContainerItemProxy */ = { + containerPortal = FFF942c823b07f8c42c823b0 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA126754e07fe8126754e0 /* PhysXCharacterKinematic */; + remoteGlobalIDString = FFFA4550d8c07f8c4550d8c0 /* PhysXCharacterKinematic */; remoteInfo = "PhysXCharacterKinematic"; }; - FFF5126728307fe812672830 /* PBXContainerItemProxy */ = { - containerPortal = FFF910f1e4907fe810f1e490 /* Project object */; + FFF54550ed307f8c4550ed30 /* PBXContainerItemProxy */ = { + containerPortal = FFF942c823b07f8c42c823b0 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA126728307fe812672830 /* PhysXVehicle */; + remoteGlobalIDString = FFFA4550ed307f8c4550ed30 /* PhysXVehicle */; remoteInfo = "PhysXVehicle"; }; - FFF512683c607fe812683c60 /* PBXContainerItemProxy */ = { - containerPortal = FFF910f1e4907fe810f1e490 /* Project object */; + FFF54551eaf07f8c4551eaf0 /* PBXContainerItemProxy */ = { + containerPortal = FFF942c823b07f8c42c823b0 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA12683c607fe812683c60 /* PhysXExtensions */; + remoteGlobalIDString = FFFA4551eaf07f8c4551eaf0 /* PhysXExtensions */; remoteInfo = "PhysXExtensions"; }; - FFF512694cb07fe812694cb0 /* PBXContainerItemProxy */ = { - containerPortal = FFF910f1e4907fe810f1e490 /* Project object */; + FFF5455314507f8c45531450 /* PBXContainerItemProxy */ = { + containerPortal = FFF942c823b07f8c42c823b0 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA12694cb07fe812694cb0 /* SceneQuery */; + remoteGlobalIDString = FFFA455314507f8c45531450 /* SceneQuery */; remoteInfo = "SceneQuery"; }; - FFF5126992107fe812699210 /* PBXContainerItemProxy */ = { - containerPortal = FFF910f1e4907fe810f1e490 /* Project object */; + FFF5455359d07f8c455359d0 /* PBXContainerItemProxy */ = { + containerPortal = FFF942c823b07f8c42c823b0 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA126992107fe812699210 /* SimulationController */; + remoteGlobalIDString = FFFA455359d07f8c455359d0 /* SimulationController */; remoteInfo = "SimulationController"; }; - FFF5134ec9b07fe8134ec9b0 /* PBXContainerItemProxy */ = { - containerPortal = FFF910f1e4907fe810f1e490 /* Project object */; + FFF54553a1807f8c4553a180 /* PBXContainerItemProxy */ = { + containerPortal = FFF942c823b07f8c42c823b0 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA134ec9b07fe8134ec9b0 /* PhysXCooking */; + remoteGlobalIDString = FFFA4553a1807f8c4553a180 /* PhysXCooking */; remoteInfo = "PhysXCooking"; }; - FFF512128d507fe812128d50 /* PBXContainerItemProxy */ = { - containerPortal = FFF910f1e4907fe810f1e490 /* Project object */; + FFF54389f1b07f8c4389f1b0 /* PBXContainerItemProxy */ = { + containerPortal = FFF942c823b07f8c42c823b0 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA12128d507fe812128d50 /* PhysXCommon */; + remoteGlobalIDString = FFFA4389f1b07f8c4389f1b0 /* PhysXCommon */; remoteInfo = "PhysXCommon"; }; - FFF5121657c07fe8121657c0 /* PBXContainerItemProxy */ = { - containerPortal = FFF910f1e4907fe810f1e490 /* Project object */; + FFF5438816407f8c43881640 /* PBXContainerItemProxy */ = { + containerPortal = FFF942c823b07f8c42c823b0 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA121657c07fe8121657c0 /* PxFoundation */; + remoteGlobalIDString = FFFA438816407f8c43881640 /* PxFoundation */; remoteInfo = "PxFoundation"; }; - FFF512609f207fe812609f20 /* PBXContainerItemProxy */ = { - containerPortal = FFF910f1e4907fe810f1e490 /* Project object */; + FFF543c33f507f8c43c33f50 /* PBXContainerItemProxy */ = { + containerPortal = FFF942c823b07f8c42c823b0 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA12609f207fe812609f20 /* PxPvdSDK */; + remoteGlobalIDString = FFFA43c33f507f8c43c33f50 /* PxPvdSDK */; remoteInfo = "PxPvdSDK"; }; - FFF5125b5b707fe8125b5b70 /* PBXContainerItemProxy */ = { - containerPortal = FFF910f1e4907fe810f1e490 /* Project object */; + FFF543c513407f8c43c51340 /* PBXContainerItemProxy */ = { + containerPortal = FFF942c823b07f8c42c823b0 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA125b5b707fe8125b5b70 /* LowLevel */; + remoteGlobalIDString = FFFA43c513407f8c43c51340 /* LowLevel */; remoteInfo = "LowLevel"; }; - FFF51261e8907fe81261e890 /* PBXContainerItemProxy */ = { - containerPortal = FFF910f1e4907fe810f1e490 /* Project object */; + FFF543ef63707f8c43ef6370 /* PBXContainerItemProxy */ = { + containerPortal = FFF942c823b07f8c42c823b0 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA1261e8907fe81261e890 /* LowLevelAABB */; + remoteGlobalIDString = FFFA43ef63707f8c43ef6370 /* LowLevelAABB */; remoteInfo = "LowLevelAABB"; }; - FFF5125e9ce07fe8125e9ce0 /* PBXContainerItemProxy */ = { - containerPortal = FFF910f1e4907fe810f1e490 /* Project object */; + FFF543c7c3807f8c43c7c380 /* PBXContainerItemProxy */ = { + containerPortal = FFF942c823b07f8c42c823b0 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA125e9ce07fe8125e9ce0 /* LowLevelDynamics */; + remoteGlobalIDString = FFFA43c7c3807f8c43c7c380 /* LowLevelDynamics */; remoteInfo = "LowLevelDynamics"; }; - FFF5130090807fe813009080 /* PBXContainerItemProxy */ = { - containerPortal = FFF910f1e4907fe810f1e490 /* Project object */; + FFF543ca21407f8c43ca2140 /* PBXContainerItemProxy */ = { + containerPortal = FFF942c823b07f8c42c823b0 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA130090807fe813009080 /* LowLevelCloth */; + remoteGlobalIDString = FFFA43ca21407f8c43ca2140 /* LowLevelCloth */; remoteInfo = "LowLevelCloth"; }; - FFF512708bc07fe812708bc0 /* PBXContainerItemProxy */ = { - containerPortal = FFF910f1e4907fe810f1e490 /* Project object */; + FFF543f22f607f8c43f22f60 /* PBXContainerItemProxy */ = { + containerPortal = FFF942c823b07f8c42c823b0 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA12708bc07fe812708bc0 /* LowLevelParticles */; + remoteGlobalIDString = FFFA43f22f607f8c43f22f60 /* LowLevelParticles */; remoteInfo = "LowLevelParticles"; }; - FFF5132a0da07fe8132a0da0 /* PBXContainerItemProxy */ = { - containerPortal = FFF910f1e4907fe810f1e490 /* Project object */; + FFF543cdb0507f8c43cdb050 /* PBXContainerItemProxy */ = { + containerPortal = FFF942c823b07f8c42c823b0 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA132a0da07fe8132a0da0 /* PxTask */; + remoteGlobalIDString = FFFA43cdb0507f8c43cdb050 /* PxTask */; remoteInfo = "PxTask"; }; - FFF51265b4d07fe81265b4d0 /* PBXContainerItemProxy */ = { - containerPortal = FFF910f1e4907fe810f1e490 /* Project object */; + FFF5455011f07f8c455011f0 /* PBXContainerItemProxy */ = { + containerPortal = FFF942c823b07f8c42c823b0 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA1265b4d07fe81265b4d0 /* PsFastXml */; + remoteGlobalIDString = FFFA455011f07f8c455011f0 /* PsFastXml */; remoteInfo = "PsFastXml"; }; /* End PBXContainerItemProxy section */ /* Begin PBXGroup section */ - FFFB10f1e4f87fe810f1e4f8 /* PhysX */ = { + FFFB42c824187f8c42c82418 /* PhysX */ = { isa = PBXGroup; children = ( - FFF010f1e4907fe810f1e490 /* Source */, - FFEE10f1e4907fe810f1e490 /* Products */, + FFF042c823b07f8c42c823b0 /* Source */, + FFEE42c823b07f8c42c823b0 /* Products */, ); name = "PhysX"; sourceTree = "<group>"; }; - FFF010f1e4907fe810f1e490 /* Source */ = { + FFF042c823b07f8c42c823b0 /* Source */ = { isa = PBXGroup; children = ( - FFFB1266ac007fe81266ac00, - FFFB126754e07fe8126754e0, - FFFB126728307fe812672830, - FFFB12683c607fe812683c60, - FFFB12694cb07fe812694cb0, - FFFB126992107fe812699210, - FFFB134ec9b07fe8134ec9b0, - FFFB12128d507fe812128d50, - FFFB121657c07fe8121657c0, - FFFB12609f207fe812609f20, - FFFB125b5b707fe8125b5b70, - FFFB1261e8907fe81261e890, - FFFB125e9ce07fe8125e9ce0, - FFFB130090807fe813009080, - FFFB12708bc07fe812708bc0, - FFFB132a0da07fe8132a0da0, - FFFB1265b4d07fe81265b4d0, + FFFB45504df07f8c45504df0, + FFFB4550d8c07f8c4550d8c0, + FFFB4550ed307f8c4550ed30, + FFFB4551eaf07f8c4551eaf0, + FFFB455314507f8c45531450, + FFFB455359d07f8c455359d0, + FFFB4553a1807f8c4553a180, + FFFB4389f1b07f8c4389f1b0, + FFFB438816407f8c43881640, + FFFB43c33f507f8c43c33f50, + FFFB43c513407f8c43c51340, + FFFB43ef63707f8c43ef6370, + FFFB43c7c3807f8c43c7c380, + FFFB43ca21407f8c43ca2140, + FFFB43f22f607f8c43f22f60, + FFFB43cdb0507f8c43cdb050, + FFFB455011f07f8c455011f0, ); name = Source; sourceTree = "<group>"; }; - FFEE10f1e4907fe810f1e490 /* Products */ = { + FFEE42c823b07f8c42c823b0 /* Products */ = { isa = PBXGroup; children = ( - FFFD1266ac007fe81266ac00, - FFFD126754e07fe8126754e0, - FFFD126728307fe812672830, - FFFD12683c607fe812683c60, - FFFD12694cb07fe812694cb0, - FFFD126992107fe812699210, - FFFD134ec9b07fe8134ec9b0, - FFFD12128d507fe812128d50, - FFFD121657c07fe8121657c0, - FFFD12609f207fe812609f20, - FFFD125b5b707fe8125b5b70, - FFFD1261e8907fe81261e890, - FFFD125e9ce07fe8125e9ce0, - FFFD130090807fe813009080, - FFFD12708bc07fe812708bc0, - FFFD132a0da07fe8132a0da0, - FFFD1265b4d07fe81265b4d0, + FFFD45504df07f8c45504df0, + FFFD4550d8c07f8c4550d8c0, + FFFD4550ed307f8c4550ed30, + FFFD4551eaf07f8c4551eaf0, + FFFD455314507f8c45531450, + FFFD455359d07f8c455359d0, + FFFD4553a1807f8c4553a180, + FFFD4389f1b07f8c4389f1b0, + FFFD438816407f8c43881640, + FFFD43c33f507f8c43c33f50, + FFFD43c513407f8c43c51340, + FFFD43ef63707f8c43ef6370, + FFFD43c7c3807f8c43c7c380, + FFFD43ca21407f8c43ca2140, + FFFD43f22f607f8c43f22f60, + FFFD43cdb0507f8c43cdb050, + FFFD455011f07f8c455011f0, ); name = Products; sourceTree = "<group>"; }; - FFFB1266ac007fe81266ac00 /* PhysX */ = { + FFFB45504df07f8c45504df0 /* PhysX */ = { isa = PBXGroup; children = ( - FFFB126790a07fe8126790a0 /* src */, - FFFB126790c87fe8126790c8 /* include */, - FFFB126790f07fe8126790f0 /* metadata */, + FFFB455157407f8c45515740 /* src */, + FFFB455157687f8c45515768 /* include */, + FFFB455157907f8c45515790 /* metadata */, ); name = "PhysX"; sourceTree = "<group>"; }; - FFFB126790a07fe8126790a0 /* src */ = { + FFFB455157407f8c45515740 /* src */ = { isa = PBXGroup; children = ( - FFFD12827e007fe812827e00 /* NpActor.h */, - FFFD12827e687fe812827e68 /* NpActorTemplate.h */, - FFFD12827ed07fe812827ed0 /* NpAggregate.h */, - FFFD12827f387fe812827f38 /* NpArticulation.h */, - FFFD12827fa07fe812827fa0 /* NpArticulationJoint.h */, - FFFD128280087fe812828008 /* NpArticulationLink.h */, - FFFD128280707fe812828070 /* NpBatchQuery.h */, - FFFD128280d87fe8128280d8 /* NpCast.h */, - FFFD128281407fe812828140 /* NpConnector.h */, - FFFD128281a87fe8128281a8 /* NpConstraint.h */, - FFFD128282107fe812828210 /* NpFactory.h */, - FFFD128282787fe812828278 /* NpMaterial.h */, - FFFD128282e07fe8128282e0 /* NpMaterialManager.h */, - FFFD128283487fe812828348 /* NpPhysics.h */, - FFFD128283b07fe8128283b0 /* NpPhysicsInsertionCallback.h */, - FFFD128284187fe812828418 /* NpPtrTableStorageManager.h */, - FFFD128284807fe812828480 /* NpPvdSceneQueryCollector.h */, - FFFD128284e87fe8128284e8 /* NpQueryShared.h */, - FFFD128285507fe812828550 /* NpReadCheck.h */, - FFFD128285b87fe8128285b8 /* NpRigidActorTemplate.h */, - FFFD128286207fe812828620 /* NpRigidActorTemplateInternal.h */, - FFFD128286887fe812828688 /* NpRigidBodyTemplate.h */, - FFFD128286f07fe8128286f0 /* NpRigidDynamic.h */, - FFFD128287587fe812828758 /* NpRigidStatic.h */, - FFFD128287c07fe8128287c0 /* NpScene.h */, - FFFD128288287fe812828828 /* NpSceneQueries.h */, - FFFD128288907fe812828890 /* NpShape.h */, - FFFD128288f87fe8128288f8 /* NpShapeManager.h */, - FFFD128289607fe812828960 /* NpSpatialIndex.h */, - FFFD128289c87fe8128289c8 /* NpVolumeCache.h */, - FFFD12828a307fe812828a30 /* NpWriteCheck.h */, - FFFD12828a987fe812828a98 /* PvdMetaDataBindingData.h */, - FFFD12828b007fe812828b00 /* PvdMetaDataPvdBinding.h */, - FFFD12828b687fe812828b68 /* PvdPhysicsClient.h */, - FFFD12828bd07fe812828bd0 /* PvdTypeNames.h */, - FFFD12828c387fe812828c38 /* NpActor.cpp */, - FFFD12828ca07fe812828ca0 /* NpAggregate.cpp */, - FFFD12828d087fe812828d08 /* NpArticulation.cpp */, - FFFD12828d707fe812828d70 /* NpArticulationJoint.cpp */, - FFFD12828dd87fe812828dd8 /* NpArticulationLink.cpp */, - FFFD12828e407fe812828e40 /* NpBatchQuery.cpp */, - FFFD12828ea87fe812828ea8 /* NpConstraint.cpp */, - FFFD12828f107fe812828f10 /* NpFactory.cpp */, - FFFD12828f787fe812828f78 /* NpMaterial.cpp */, - FFFD12828fe07fe812828fe0 /* NpMetaData.cpp */, - FFFD128290487fe812829048 /* NpPhysics.cpp */, - FFFD128290b07fe8128290b0 /* NpPvdSceneQueryCollector.cpp */, - FFFD128291187fe812829118 /* NpReadCheck.cpp */, - FFFD128291807fe812829180 /* NpRigidDynamic.cpp */, - FFFD128291e87fe8128291e8 /* NpRigidStatic.cpp */, - FFFD128292507fe812829250 /* NpScene.cpp */, - FFFD128292b87fe8128292b8 /* NpSceneQueries.cpp */, - FFFD128293207fe812829320 /* NpSerializerAdapter.cpp */, - FFFD128293887fe812829388 /* NpShape.cpp */, - FFFD128293f07fe8128293f0 /* NpShapeManager.cpp */, - FFFD128294587fe812829458 /* NpSpatialIndex.cpp */, - FFFD128294c07fe8128294c0 /* NpVolumeCache.cpp */, - FFFD128295287fe812829528 /* NpWriteCheck.cpp */, - FFFD128295907fe812829590 /* PvdMetaDataPvdBinding.cpp */, - FFFD128295f87fe8128295f8 /* PvdPhysicsClient.cpp */, - FFFD128296607fe812829660 /* particles/NpParticleBaseTemplate.h */, - FFFD128296c87fe8128296c8 /* particles/NpParticleFluid.h */, - FFFD128297307fe812829730 /* particles/NpParticleFluidReadData.h */, - FFFD128297987fe812829798 /* particles/NpParticleSystem.h */, - FFFD128298007fe812829800 /* particles/NpParticleFluid.cpp */, - FFFD128298687fe812829868 /* particles/NpParticleSystem.cpp */, - FFFD128298d07fe8128298d0 /* buffering/ScbActor.h */, - FFFD128299387fe812829938 /* buffering/ScbAggregate.h */, - FFFD128299a07fe8128299a0 /* buffering/ScbArticulation.h */, - FFFD12829a087fe812829a08 /* buffering/ScbArticulationJoint.h */, - FFFD12829a707fe812829a70 /* buffering/ScbBase.h */, - FFFD12829ad87fe812829ad8 /* buffering/ScbBody.h */, - FFFD12829b407fe812829b40 /* buffering/ScbCloth.h */, - FFFD12829ba87fe812829ba8 /* buffering/ScbConstraint.h */, - FFFD12829c107fe812829c10 /* buffering/ScbDefs.h */, - FFFD12829c787fe812829c78 /* buffering/ScbNpDeps.h */, - FFFD12829ce07fe812829ce0 /* buffering/ScbParticleSystem.h */, - FFFD12829d487fe812829d48 /* buffering/ScbRigidObject.h */, - FFFD12829db07fe812829db0 /* buffering/ScbRigidStatic.h */, - FFFD12829e187fe812829e18 /* buffering/ScbScene.h */, - FFFD12829e807fe812829e80 /* buffering/ScbSceneBuffer.h */, - FFFD12829ee87fe812829ee8 /* buffering/ScbScenePvdClient.h */, - FFFD12829f507fe812829f50 /* buffering/ScbShape.h */, - FFFD12829fb87fe812829fb8 /* buffering/ScbType.h */, - FFFD1282a0207fe81282a020 /* buffering/ScbActor.cpp */, - FFFD1282a0887fe81282a088 /* buffering/ScbAggregate.cpp */, - FFFD1282a0f07fe81282a0f0 /* buffering/ScbBase.cpp */, - FFFD1282a1587fe81282a158 /* buffering/ScbCloth.cpp */, - FFFD1282a1c07fe81282a1c0 /* buffering/ScbMetaData.cpp */, - FFFD1282a2287fe81282a228 /* buffering/ScbParticleSystem.cpp */, - FFFD1282a2907fe81282a290 /* buffering/ScbScene.cpp */, - FFFD1282a2f87fe81282a2f8 /* buffering/ScbScenePvdClient.cpp */, - FFFD1282a3607fe81282a360 /* buffering/ScbShape.cpp */, - FFFD1282a3c87fe81282a3c8 /* cloth/NpCloth.h */, - FFFD1282a4307fe81282a430 /* cloth/NpClothFabric.h */, - FFFD1282a4987fe81282a498 /* cloth/NpClothParticleData.h */, - FFFD1282a5007fe81282a500 /* cloth/NpCloth.cpp */, - FFFD1282a5687fe81282a568 /* cloth/NpClothFabric.cpp */, - FFFD1282a5d07fe81282a5d0 /* cloth/NpClothParticleData.cpp */, - FFFD1282a6387fe81282a638 /* ../../ImmediateMode/src/NpImmediateMode.cpp */, + FFFD458108007f8c45810800 /* NpActor.h */, + FFFD458108687f8c45810868 /* NpActorTemplate.h */, + FFFD458108d07f8c458108d0 /* NpAggregate.h */, + FFFD458109387f8c45810938 /* NpArticulation.h */, + FFFD458109a07f8c458109a0 /* NpArticulationJoint.h */, + FFFD45810a087f8c45810a08 /* NpArticulationLink.h */, + FFFD45810a707f8c45810a70 /* NpBatchQuery.h */, + FFFD45810ad87f8c45810ad8 /* NpCast.h */, + FFFD45810b407f8c45810b40 /* NpConnector.h */, + FFFD45810ba87f8c45810ba8 /* NpConstraint.h */, + FFFD45810c107f8c45810c10 /* NpFactory.h */, + FFFD45810c787f8c45810c78 /* NpMaterial.h */, + FFFD45810ce07f8c45810ce0 /* NpMaterialManager.h */, + FFFD45810d487f8c45810d48 /* NpPhysics.h */, + FFFD45810db07f8c45810db0 /* NpPhysicsInsertionCallback.h */, + FFFD45810e187f8c45810e18 /* NpPtrTableStorageManager.h */, + FFFD45810e807f8c45810e80 /* NpPvdSceneQueryCollector.h */, + FFFD45810ee87f8c45810ee8 /* NpQueryShared.h */, + FFFD45810f507f8c45810f50 /* NpReadCheck.h */, + FFFD45810fb87f8c45810fb8 /* NpRigidActorTemplate.h */, + FFFD458110207f8c45811020 /* NpRigidActorTemplateInternal.h */, + FFFD458110887f8c45811088 /* NpRigidBodyTemplate.h */, + FFFD458110f07f8c458110f0 /* NpRigidDynamic.h */, + FFFD458111587f8c45811158 /* NpRigidStatic.h */, + FFFD458111c07f8c458111c0 /* NpScene.h */, + FFFD458112287f8c45811228 /* NpSceneQueries.h */, + FFFD458112907f8c45811290 /* NpShape.h */, + FFFD458112f87f8c458112f8 /* NpShapeManager.h */, + FFFD458113607f8c45811360 /* NpSpatialIndex.h */, + FFFD458113c87f8c458113c8 /* NpVolumeCache.h */, + FFFD458114307f8c45811430 /* NpWriteCheck.h */, + FFFD458114987f8c45811498 /* PvdMetaDataBindingData.h */, + FFFD458115007f8c45811500 /* PvdMetaDataPvdBinding.h */, + FFFD458115687f8c45811568 /* PvdPhysicsClient.h */, + FFFD458115d07f8c458115d0 /* PvdTypeNames.h */, + FFFD458116387f8c45811638 /* NpActor.cpp */, + FFFD458116a07f8c458116a0 /* NpAggregate.cpp */, + FFFD458117087f8c45811708 /* NpArticulation.cpp */, + FFFD458117707f8c45811770 /* NpArticulationJoint.cpp */, + FFFD458117d87f8c458117d8 /* NpArticulationLink.cpp */, + FFFD458118407f8c45811840 /* NpBatchQuery.cpp */, + FFFD458118a87f8c458118a8 /* NpConstraint.cpp */, + FFFD458119107f8c45811910 /* NpFactory.cpp */, + FFFD458119787f8c45811978 /* NpMaterial.cpp */, + FFFD458119e07f8c458119e0 /* NpMetaData.cpp */, + FFFD45811a487f8c45811a48 /* NpPhysics.cpp */, + FFFD45811ab07f8c45811ab0 /* NpPvdSceneQueryCollector.cpp */, + FFFD45811b187f8c45811b18 /* NpReadCheck.cpp */, + FFFD45811b807f8c45811b80 /* NpRigidDynamic.cpp */, + FFFD45811be87f8c45811be8 /* NpRigidStatic.cpp */, + FFFD45811c507f8c45811c50 /* NpScene.cpp */, + FFFD45811cb87f8c45811cb8 /* NpSceneQueries.cpp */, + FFFD45811d207f8c45811d20 /* NpSerializerAdapter.cpp */, + FFFD45811d887f8c45811d88 /* NpShape.cpp */, + FFFD45811df07f8c45811df0 /* NpShapeManager.cpp */, + FFFD45811e587f8c45811e58 /* NpSpatialIndex.cpp */, + FFFD45811ec07f8c45811ec0 /* NpVolumeCache.cpp */, + FFFD45811f287f8c45811f28 /* NpWriteCheck.cpp */, + FFFD45811f907f8c45811f90 /* PvdMetaDataPvdBinding.cpp */, + FFFD45811ff87f8c45811ff8 /* PvdPhysicsClient.cpp */, + FFFD458120607f8c45812060 /* particles/NpParticleBaseTemplate.h */, + FFFD458120c87f8c458120c8 /* particles/NpParticleFluid.h */, + FFFD458121307f8c45812130 /* particles/NpParticleFluidReadData.h */, + FFFD458121987f8c45812198 /* particles/NpParticleSystem.h */, + FFFD458122007f8c45812200 /* particles/NpParticleFluid.cpp */, + FFFD458122687f8c45812268 /* particles/NpParticleSystem.cpp */, + FFFD458122d07f8c458122d0 /* buffering/ScbActor.h */, + FFFD458123387f8c45812338 /* buffering/ScbAggregate.h */, + FFFD458123a07f8c458123a0 /* buffering/ScbArticulation.h */, + FFFD458124087f8c45812408 /* buffering/ScbArticulationJoint.h */, + FFFD458124707f8c45812470 /* buffering/ScbBase.h */, + FFFD458124d87f8c458124d8 /* buffering/ScbBody.h */, + FFFD458125407f8c45812540 /* buffering/ScbCloth.h */, + FFFD458125a87f8c458125a8 /* buffering/ScbConstraint.h */, + FFFD458126107f8c45812610 /* buffering/ScbDefs.h */, + FFFD458126787f8c45812678 /* buffering/ScbNpDeps.h */, + FFFD458126e07f8c458126e0 /* buffering/ScbParticleSystem.h */, + FFFD458127487f8c45812748 /* buffering/ScbRigidObject.h */, + FFFD458127b07f8c458127b0 /* buffering/ScbRigidStatic.h */, + FFFD458128187f8c45812818 /* buffering/ScbScene.h */, + FFFD458128807f8c45812880 /* buffering/ScbSceneBuffer.h */, + FFFD458128e87f8c458128e8 /* buffering/ScbScenePvdClient.h */, + FFFD458129507f8c45812950 /* buffering/ScbShape.h */, + FFFD458129b87f8c458129b8 /* buffering/ScbType.h */, + FFFD45812a207f8c45812a20 /* buffering/ScbActor.cpp */, + FFFD45812a887f8c45812a88 /* buffering/ScbAggregate.cpp */, + FFFD45812af07f8c45812af0 /* buffering/ScbBase.cpp */, + FFFD45812b587f8c45812b58 /* buffering/ScbCloth.cpp */, + FFFD45812bc07f8c45812bc0 /* buffering/ScbMetaData.cpp */, + FFFD45812c287f8c45812c28 /* buffering/ScbParticleSystem.cpp */, + FFFD45812c907f8c45812c90 /* buffering/ScbScene.cpp */, + FFFD45812cf87f8c45812cf8 /* buffering/ScbScenePvdClient.cpp */, + FFFD45812d607f8c45812d60 /* buffering/ScbShape.cpp */, + FFFD45812dc87f8c45812dc8 /* cloth/NpCloth.h */, + FFFD45812e307f8c45812e30 /* cloth/NpClothFabric.h */, + FFFD45812e987f8c45812e98 /* cloth/NpClothParticleData.h */, + FFFD45812f007f8c45812f00 /* cloth/NpCloth.cpp */, + FFFD45812f687f8c45812f68 /* cloth/NpClothFabric.cpp */, + FFFD45812fd07f8c45812fd0 /* cloth/NpClothParticleData.cpp */, + FFFD458130387f8c45813038 /* ../../ImmediateMode/src/NpImmediateMode.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB126790c87fe8126790c8 /* include */ = { + FFFB455157687f8c45515768 /* include */ = { isa = PBXGroup; children = ( - FFFD1282a8007fe81282a800 /* PxActor.h */, - FFFD1282a8687fe81282a868 /* PxAggregate.h */, - FFFD1282a8d07fe81282a8d0 /* PxArticulation.h */, - FFFD1282a9387fe81282a938 /* PxArticulationJoint.h */, - FFFD1282a9a07fe81282a9a0 /* PxArticulationLink.h */, - FFFD1282aa087fe81282aa08 /* PxBatchQuery.h */, - FFFD1282aa707fe81282aa70 /* PxBatchQueryDesc.h */, - FFFD1282aad87fe81282aad8 /* PxBroadPhase.h */, - FFFD1282ab407fe81282ab40 /* PxClient.h */, - FFFD1282aba87fe81282aba8 /* PxConstraint.h */, - FFFD1282ac107fe81282ac10 /* PxConstraintDesc.h */, - FFFD1282ac787fe81282ac78 /* PxContact.h */, - FFFD1282ace07fe81282ace0 /* PxContactModifyCallback.h */, - FFFD1282ad487fe81282ad48 /* PxDeletionListener.h */, - FFFD1282adb07fe81282adb0 /* PxFiltering.h */, - FFFD1282ae187fe81282ae18 /* PxForceMode.h */, - FFFD1282ae807fe81282ae80 /* PxImmediateMode.h */, - FFFD1282aee87fe81282aee8 /* PxLockedData.h */, - FFFD1282af507fe81282af50 /* PxMaterial.h */, - FFFD1282afb87fe81282afb8 /* PxPhysXConfig.h */, - FFFD1282b0207fe81282b020 /* PxPhysics.h */, - FFFD1282b0887fe81282b088 /* PxPhysicsAPI.h */, - FFFD1282b0f07fe81282b0f0 /* PxPhysicsSerialization.h */, - FFFD1282b1587fe81282b158 /* PxPhysicsVersion.h */, - FFFD1282b1c07fe81282b1c0 /* PxPruningStructure.h */, - FFFD1282b2287fe81282b228 /* PxQueryFiltering.h */, - FFFD1282b2907fe81282b290 /* PxQueryReport.h */, - FFFD1282b2f87fe81282b2f8 /* PxRigidActor.h */, - FFFD1282b3607fe81282b360 /* PxRigidBody.h */, - FFFD1282b3c87fe81282b3c8 /* PxRigidDynamic.h */, - FFFD1282b4307fe81282b430 /* PxRigidStatic.h */, - FFFD1282b4987fe81282b498 /* PxScene.h */, - FFFD1282b5007fe81282b500 /* PxSceneDesc.h */, - FFFD1282b5687fe81282b568 /* PxSceneLock.h */, - FFFD1282b5d07fe81282b5d0 /* PxShape.h */, - FFFD1282b6387fe81282b638 /* PxSimulationEventCallback.h */, - FFFD1282b6a07fe81282b6a0 /* PxSimulationStatistics.h */, - FFFD1282b7087fe81282b708 /* PxSpatialIndex.h */, - FFFD1282b7707fe81282b770 /* PxVisualizationParameter.h */, - FFFD1282b7d87fe81282b7d8 /* PxVolumeCache.h */, - FFFD1282b8407fe81282b840 /* particles/PxParticleBase.h */, - FFFD1282b8a87fe81282b8a8 /* particles/PxParticleBaseFlag.h */, - FFFD1282b9107fe81282b910 /* particles/PxParticleCreationData.h */, - FFFD1282b9787fe81282b978 /* particles/PxParticleFlag.h */, - FFFD1282b9e07fe81282b9e0 /* particles/PxParticleFluid.h */, - FFFD1282ba487fe81282ba48 /* particles/PxParticleFluidReadData.h */, - FFFD1282bab07fe81282bab0 /* particles/PxParticleReadData.h */, - FFFD1282bb187fe81282bb18 /* particles/PxParticleSystem.h */, - FFFD1282bb807fe81282bb80 /* pvd/PxPvdSceneClient.h */, - FFFD1282bbe87fe81282bbe8 /* cloth/PxCloth.h */, - FFFD1282bc507fe81282bc50 /* cloth/PxClothCollisionData.h */, - FFFD1282bcb87fe81282bcb8 /* cloth/PxClothFabric.h */, - FFFD1282bd207fe81282bd20 /* cloth/PxClothParticleData.h */, - FFFD1282bd887fe81282bd88 /* cloth/PxClothTypes.h */, + FFFD4580e2007f8c4580e200 /* PxActor.h */, + FFFD4580e2687f8c4580e268 /* PxAggregate.h */, + FFFD4580e2d07f8c4580e2d0 /* PxArticulation.h */, + FFFD4580e3387f8c4580e338 /* PxArticulationJoint.h */, + FFFD4580e3a07f8c4580e3a0 /* PxArticulationLink.h */, + FFFD4580e4087f8c4580e408 /* PxBatchQuery.h */, + FFFD4580e4707f8c4580e470 /* PxBatchQueryDesc.h */, + FFFD4580e4d87f8c4580e4d8 /* PxBroadPhase.h */, + FFFD4580e5407f8c4580e540 /* PxClient.h */, + FFFD4580e5a87f8c4580e5a8 /* PxConstraint.h */, + FFFD4580e6107f8c4580e610 /* PxConstraintDesc.h */, + FFFD4580e6787f8c4580e678 /* PxContact.h */, + FFFD4580e6e07f8c4580e6e0 /* PxContactModifyCallback.h */, + FFFD4580e7487f8c4580e748 /* PxDeletionListener.h */, + FFFD4580e7b07f8c4580e7b0 /* PxFiltering.h */, + FFFD4580e8187f8c4580e818 /* PxForceMode.h */, + FFFD4580e8807f8c4580e880 /* PxImmediateMode.h */, + FFFD4580e8e87f8c4580e8e8 /* PxLockedData.h */, + FFFD4580e9507f8c4580e950 /* PxMaterial.h */, + FFFD4580e9b87f8c4580e9b8 /* PxPhysXConfig.h */, + FFFD4580ea207f8c4580ea20 /* PxPhysics.h */, + FFFD4580ea887f8c4580ea88 /* PxPhysicsAPI.h */, + FFFD4580eaf07f8c4580eaf0 /* PxPhysicsSerialization.h */, + FFFD4580eb587f8c4580eb58 /* PxPhysicsVersion.h */, + FFFD4580ebc07f8c4580ebc0 /* PxPruningStructure.h */, + FFFD4580ec287f8c4580ec28 /* PxQueryFiltering.h */, + FFFD4580ec907f8c4580ec90 /* PxQueryReport.h */, + FFFD4580ecf87f8c4580ecf8 /* PxRigidActor.h */, + FFFD4580ed607f8c4580ed60 /* PxRigidBody.h */, + FFFD4580edc87f8c4580edc8 /* PxRigidDynamic.h */, + FFFD4580ee307f8c4580ee30 /* PxRigidStatic.h */, + FFFD4580ee987f8c4580ee98 /* PxScene.h */, + FFFD4580ef007f8c4580ef00 /* PxSceneDesc.h */, + FFFD4580ef687f8c4580ef68 /* PxSceneLock.h */, + FFFD4580efd07f8c4580efd0 /* PxShape.h */, + FFFD4580f0387f8c4580f038 /* PxSimulationEventCallback.h */, + FFFD4580f0a07f8c4580f0a0 /* PxSimulationStatistics.h */, + FFFD4580f1087f8c4580f108 /* PxSpatialIndex.h */, + FFFD4580f1707f8c4580f170 /* PxVisualizationParameter.h */, + FFFD4580f1d87f8c4580f1d8 /* PxVolumeCache.h */, + FFFD4580f2407f8c4580f240 /* particles/PxParticleBase.h */, + FFFD4580f2a87f8c4580f2a8 /* particles/PxParticleBaseFlag.h */, + FFFD4580f3107f8c4580f310 /* particles/PxParticleCreationData.h */, + FFFD4580f3787f8c4580f378 /* particles/PxParticleFlag.h */, + FFFD4580f3e07f8c4580f3e0 /* particles/PxParticleFluid.h */, + FFFD4580f4487f8c4580f448 /* particles/PxParticleFluidReadData.h */, + FFFD4580f4b07f8c4580f4b0 /* particles/PxParticleReadData.h */, + FFFD4580f5187f8c4580f518 /* particles/PxParticleSystem.h */, + FFFD4580f5807f8c4580f580 /* pvd/PxPvdSceneClient.h */, + FFFD4580f5e87f8c4580f5e8 /* cloth/PxCloth.h */, + FFFD4580f6507f8c4580f650 /* cloth/PxClothCollisionData.h */, + FFFD4580f6b87f8c4580f6b8 /* cloth/PxClothFabric.h */, + FFFD4580f7207f8c4580f720 /* cloth/PxClothParticleData.h */, + FFFD4580f7887f8c4580f788 /* cloth/PxClothTypes.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB126790f07fe8126790f0 /* metadata */ = { + FFFB455157907f8c45515790 /* metadata */ = { isa = PBXGroup; children = ( - FFFD12822a007fe812822a00 /* core/include/PvdMetaDataDefineProperties.h */, - FFFD12822a687fe812822a68 /* core/include/PvdMetaDataExtensions.h */, - FFFD12822ad07fe812822ad0 /* core/include/PvdMetaDataPropertyVisitor.h */, - FFFD12822b387fe812822b38 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */, - FFFD12822ba07fe812822ba0 /* core/include/PxAutoGeneratedMetaDataObjects.h */, - FFFD12822c087fe812822c08 /* core/include/PxMetaDataCompare.h */, - FFFD12822c707fe812822c70 /* core/include/PxMetaDataCppPrefix.h */, - FFFD12822cd87fe812822cd8 /* core/include/PxMetaDataObjects.h */, - FFFD12822d407fe812822d40 /* core/include/RepXMetaDataPropertyVisitor.h */, - FFFD12822da87fe812822da8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */, - FFFD12822e107fe812822e10 /* core/src/PxMetaDataObjects.cpp */, + FFFD4580d2007f8c4580d200 /* core/include/PvdMetaDataDefineProperties.h */, + FFFD4580d2687f8c4580d268 /* core/include/PvdMetaDataExtensions.h */, + FFFD4580d2d07f8c4580d2d0 /* core/include/PvdMetaDataPropertyVisitor.h */, + FFFD4580d3387f8c4580d338 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */, + FFFD4580d3a07f8c4580d3a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */, + FFFD4580d4087f8c4580d408 /* core/include/PxMetaDataCompare.h */, + FFFD4580d4707f8c4580d470 /* core/include/PxMetaDataCppPrefix.h */, + FFFD4580d4d87f8c4580d4d8 /* core/include/PxMetaDataObjects.h */, + FFFD4580d5407f8c4580d540 /* core/include/RepXMetaDataPropertyVisitor.h */, + FFFD4580d5a87f8c4580d5a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */, + FFFD4580d6107f8c4580d610 /* core/src/PxMetaDataObjects.cpp */, ); name = "metadata"; sourceTree = SOURCE_ROOT; }; - FFFB126754e07fe8126754e0 /* PhysXCharacterKinematic */ = { + FFFB4550d8c07f8c4550d8c0 /* PhysXCharacterKinematic */ = { isa = PBXGroup; children = ( - FFFB126779707fe812677970 /* include */, - FFFB126779987fe812677998 /* src */, + FFFB455132207f8c45513220 /* include */, + FFFB455132487f8c45513248 /* src */, ); name = "PhysXCharacterKinematic"; sourceTree = "<group>"; }; - FFFB126779707fe812677970 /* include */ = { + FFFB455132207f8c45513220 /* include */ = { isa = PBXGroup; children = ( - FFFD126783e07fe8126783e0 /* PxBoxController.h */, - FFFD126784487fe812678448 /* PxCapsuleController.h */, - FFFD126784b07fe8126784b0 /* PxCharacter.h */, - FFFD126785187fe812678518 /* PxController.h */, - FFFD126785807fe812678580 /* PxControllerBehavior.h */, - FFFD126785e87fe8126785e8 /* PxControllerManager.h */, - FFFD126786507fe812678650 /* PxControllerObstacles.h */, - FFFD126786b87fe8126786b8 /* PxExtended.h */, + FFFD45514ae07f8c45514ae0 /* PxBoxController.h */, + FFFD45514b487f8c45514b48 /* PxCapsuleController.h */, + FFFD45514bb07f8c45514bb0 /* PxCharacter.h */, + FFFD45514c187f8c45514c18 /* PxController.h */, + FFFD45514c807f8c45514c80 /* PxControllerBehavior.h */, + FFFD45514ce87f8c45514ce8 /* PxControllerManager.h */, + FFFD45514d507f8c45514d50 /* PxControllerObstacles.h */, + FFFD45514db87f8c45514db8 /* PxExtended.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB126779987fe812677998 /* src */ = { + FFFB455132487f8c45513248 /* src */ = { isa = PBXGroup; children = ( - FFFD128242007fe812824200 /* CctBoxController.h */, - FFFD128242687fe812824268 /* CctCapsuleController.h */, - FFFD128242d07fe8128242d0 /* CctCharacterController.h */, - FFFD128243387fe812824338 /* CctCharacterControllerManager.h */, - FFFD128243a07fe8128243a0 /* CctController.h */, - FFFD128244087fe812824408 /* CctInternalStructs.h */, - FFFD128244707fe812824470 /* CctObstacleContext.h */, - FFFD128244d87fe8128244d8 /* CctSweptBox.h */, - FFFD128245407fe812824540 /* CctSweptCapsule.h */, - FFFD128245a87fe8128245a8 /* CctSweptVolume.h */, - FFFD128246107fe812824610 /* CctUtils.h */, - FFFD128246787fe812824678 /* CctBoxController.cpp */, - FFFD128246e07fe8128246e0 /* CctCapsuleController.cpp */, - FFFD128247487fe812824748 /* CctCharacterController.cpp */, - FFFD128247b07fe8128247b0 /* CctCharacterControllerCallbacks.cpp */, - FFFD128248187fe812824818 /* CctCharacterControllerManager.cpp */, - FFFD128248807fe812824880 /* CctController.cpp */, - FFFD128248e87fe8128248e8 /* CctObstacleContext.cpp */, - FFFD128249507fe812824950 /* CctSweptBox.cpp */, - FFFD128249b87fe8128249b8 /* CctSweptCapsule.cpp */, - FFFD12824a207fe812824a20 /* CctSweptVolume.cpp */, + FFFD4580a8007f8c4580a800 /* CctBoxController.h */, + FFFD4580a8687f8c4580a868 /* CctCapsuleController.h */, + FFFD4580a8d07f8c4580a8d0 /* CctCharacterController.h */, + FFFD4580a9387f8c4580a938 /* CctCharacterControllerManager.h */, + FFFD4580a9a07f8c4580a9a0 /* CctController.h */, + FFFD4580aa087f8c4580aa08 /* CctInternalStructs.h */, + FFFD4580aa707f8c4580aa70 /* CctObstacleContext.h */, + FFFD4580aad87f8c4580aad8 /* CctSweptBox.h */, + FFFD4580ab407f8c4580ab40 /* CctSweptCapsule.h */, + FFFD4580aba87f8c4580aba8 /* CctSweptVolume.h */, + FFFD4580ac107f8c4580ac10 /* CctUtils.h */, + FFFD4580ac787f8c4580ac78 /* CctBoxController.cpp */, + FFFD4580ace07f8c4580ace0 /* CctCapsuleController.cpp */, + FFFD4580ad487f8c4580ad48 /* CctCharacterController.cpp */, + FFFD4580adb07f8c4580adb0 /* CctCharacterControllerCallbacks.cpp */, + FFFD4580ae187f8c4580ae18 /* CctCharacterControllerManager.cpp */, + FFFD4580ae807f8c4580ae80 /* CctController.cpp */, + FFFD4580aee87f8c4580aee8 /* CctObstacleContext.cpp */, + FFFD4580af507f8c4580af50 /* CctSweptBox.cpp */, + FFFD4580afb87f8c4580afb8 /* CctSweptCapsule.cpp */, + FFFD4580b0207f8c4580b020 /* CctSweptVolume.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB126728307fe812672830 /* PhysXVehicle */ = { + FFFB4550ed307f8c4550ed30 /* PhysXVehicle */ = { isa = PBXGroup; children = ( - FFFB126833b07fe8126833b0 /* include */, - FFFB126833d87fe8126833d8 /* src */, - FFFB126834007fe812683400 /* metadata */, + FFFB4551fb407f8c4551fb40 /* include */, + FFFB4551fb687f8c4551fb68 /* src */, + FFFB4551fb907f8c4551fb90 /* metadata */, ); name = "PhysXVehicle"; sourceTree = "<group>"; }; - FFFB126833b07fe8126833b0 /* include */ = { + FFFB4551fb407f8c4551fb40 /* include */ = { isa = PBXGroup; children = ( - FFFD128268007fe812826800 /* PxVehicleComponents.h */, - FFFD128268687fe812826868 /* PxVehicleDrive.h */, - FFFD128268d07fe8128268d0 /* PxVehicleDrive4W.h */, - FFFD128269387fe812826938 /* PxVehicleDriveNW.h */, - FFFD128269a07fe8128269a0 /* PxVehicleDriveTank.h */, - FFFD12826a087fe812826a08 /* PxVehicleNoDrive.h */, - FFFD12826a707fe812826a70 /* PxVehicleSDK.h */, - FFFD12826ad87fe812826ad8 /* PxVehicleShaders.h */, - FFFD12826b407fe812826b40 /* PxVehicleTireFriction.h */, - FFFD12826ba87fe812826ba8 /* PxVehicleUpdate.h */, - FFFD12826c107fe812826c10 /* PxVehicleUtil.h */, - FFFD12826c787fe812826c78 /* PxVehicleUtilControl.h */, - FFFD12826ce07fe812826ce0 /* PxVehicleUtilSetup.h */, - FFFD12826d487fe812826d48 /* PxVehicleUtilTelemetry.h */, - FFFD12826db07fe812826db0 /* PxVehicleWheels.h */, + FFFD4580c6007f8c4580c600 /* PxVehicleComponents.h */, + FFFD4580c6687f8c4580c668 /* PxVehicleDrive.h */, + FFFD4580c6d07f8c4580c6d0 /* PxVehicleDrive4W.h */, + FFFD4580c7387f8c4580c738 /* PxVehicleDriveNW.h */, + FFFD4580c7a07f8c4580c7a0 /* PxVehicleDriveTank.h */, + FFFD4580c8087f8c4580c808 /* PxVehicleNoDrive.h */, + FFFD4580c8707f8c4580c870 /* PxVehicleSDK.h */, + FFFD4580c8d87f8c4580c8d8 /* PxVehicleShaders.h */, + FFFD4580c9407f8c4580c940 /* PxVehicleTireFriction.h */, + FFFD4580c9a87f8c4580c9a8 /* PxVehicleUpdate.h */, + FFFD4580ca107f8c4580ca10 /* PxVehicleUtil.h */, + FFFD4580ca787f8c4580ca78 /* PxVehicleUtilControl.h */, + FFFD4580cae07f8c4580cae0 /* PxVehicleUtilSetup.h */, + FFFD4580cb487f8c4580cb48 /* PxVehicleUtilTelemetry.h */, + FFFD4580cbb07f8c4580cbb0 /* PxVehicleWheels.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB126833d87fe8126833d8 /* src */ = { + FFFB4551fb687f8c4551fb68 /* src */ = { isa = PBXGroup; children = ( - FFFD128306007fe812830600 /* PxVehicleDefaults.h */, - FFFD128306687fe812830668 /* PxVehicleLinearMath.h */, - FFFD128306d07fe8128306d0 /* PxVehicleSerialization.h */, - FFFD128307387fe812830738 /* PxVehicleSuspLimitConstraintShader.h */, - FFFD128307a07fe8128307a0 /* PxVehicleSuspWheelTire4.h */, - FFFD128308087fe812830808 /* PxVehicleComponents.cpp */, - FFFD128308707fe812830870 /* PxVehicleDrive.cpp */, - FFFD128308d87fe8128308d8 /* PxVehicleDrive4W.cpp */, - FFFD128309407fe812830940 /* PxVehicleDriveNW.cpp */, - FFFD128309a87fe8128309a8 /* PxVehicleDriveTank.cpp */, - FFFD12830a107fe812830a10 /* PxVehicleMetaData.cpp */, - FFFD12830a787fe812830a78 /* PxVehicleNoDrive.cpp */, - FFFD12830ae07fe812830ae0 /* PxVehicleSDK.cpp */, - FFFD12830b487fe812830b48 /* PxVehicleSerialization.cpp */, - FFFD12830bb07fe812830bb0 /* PxVehicleSuspWheelTire4.cpp */, - FFFD12830c187fe812830c18 /* PxVehicleTireFriction.cpp */, - FFFD12830c807fe812830c80 /* PxVehicleUpdate.cpp */, - FFFD12830ce87fe812830ce8 /* PxVehicleWheels.cpp */, - FFFD12830d507fe812830d50 /* VehicleUtilControl.cpp */, - FFFD12830db87fe812830db8 /* VehicleUtilSetup.cpp */, - FFFD12830e207fe812830e20 /* VehicleUtilTelemetry.cpp */, + FFFD458158007f8c45815800 /* PxVehicleDefaults.h */, + FFFD458158687f8c45815868 /* PxVehicleLinearMath.h */, + FFFD458158d07f8c458158d0 /* PxVehicleSerialization.h */, + FFFD458159387f8c45815938 /* PxVehicleSuspLimitConstraintShader.h */, + FFFD458159a07f8c458159a0 /* PxVehicleSuspWheelTire4.h */, + FFFD45815a087f8c45815a08 /* PxVehicleComponents.cpp */, + FFFD45815a707f8c45815a70 /* PxVehicleDrive.cpp */, + FFFD45815ad87f8c45815ad8 /* PxVehicleDrive4W.cpp */, + FFFD45815b407f8c45815b40 /* PxVehicleDriveNW.cpp */, + FFFD45815ba87f8c45815ba8 /* PxVehicleDriveTank.cpp */, + FFFD45815c107f8c45815c10 /* PxVehicleMetaData.cpp */, + FFFD45815c787f8c45815c78 /* PxVehicleNoDrive.cpp */, + FFFD45815ce07f8c45815ce0 /* PxVehicleSDK.cpp */, + FFFD45815d487f8c45815d48 /* PxVehicleSerialization.cpp */, + FFFD45815db07f8c45815db0 /* PxVehicleSuspWheelTire4.cpp */, + FFFD45815e187f8c45815e18 /* PxVehicleTireFriction.cpp */, + FFFD45815e807f8c45815e80 /* PxVehicleUpdate.cpp */, + FFFD45815ee87f8c45815ee8 /* PxVehicleWheels.cpp */, + FFFD45815f507f8c45815f50 /* VehicleUtilControl.cpp */, + FFFD45815fb87f8c45815fb8 /* VehicleUtilSetup.cpp */, + FFFD458160207f8c45816020 /* VehicleUtilTelemetry.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB126834007fe812683400 /* metadata */ = { + FFFB4551fb907f8c4551fb90 /* metadata */ = { isa = PBXGroup; children = ( - FFFD126822007fe812682200 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */, - FFFD126822687fe812682268 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */, - FFFD126822d07fe8126822d0 /* include/PxVehicleMetaDataObjects.h */, - FFFD126823387fe812682338 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */, - FFFD126823a07fe8126823a0 /* src/PxVehicleMetaDataObjects.cpp */, + FFFD455208907f8c45520890 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */, + FFFD455208f87f8c455208f8 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */, + FFFD455209607f8c45520960 /* include/PxVehicleMetaDataObjects.h */, + FFFD455209c87f8c455209c8 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */, + FFFD45520a307f8c45520a30 /* src/PxVehicleMetaDataObjects.cpp */, ); name = "metadata"; sourceTree = SOURCE_ROOT; }; - FFFB12683c607fe812683c60 /* PhysXExtensions */ = { + FFFB4551eaf07f8c4551eaf0 /* PhysXExtensions */ = { isa = PBXGroup; children = ( - FFFB126872307fe812687230 /* include */, - FFFB126872587fe812687258 /* src */, - FFFB126872807fe812687280 /* serialization */, - FFFB126872a87fe8126872a8 /* metadata */, + FFFB45527b407f8c45527b40 /* include */, + FFFB45527b687f8c45527b68 /* src */, + FFFB45527b907f8c45527b90 /* serialization */, + FFFB45527bb87f8c45527bb8 /* metadata */, ); name = "PhysXExtensions"; sourceTree = "<group>"; }; - FFFB126872307fe812687230 /* include */ = { + FFFB45527b407f8c45527b40 /* include */ = { isa = PBXGroup; children = ( - FFFD128336007fe812833600 /* PxBinaryConverter.h */, - FFFD128336687fe812833668 /* PxBroadPhaseExt.h */, - FFFD128336d07fe8128336d0 /* PxClothFabricCooker.h */, - FFFD128337387fe812833738 /* PxClothMeshDesc.h */, - FFFD128337a07fe8128337a0 /* PxClothMeshQuadifier.h */, - FFFD128338087fe812833808 /* PxClothTetherCooker.h */, - FFFD128338707fe812833870 /* PxCollectionExt.h */, - FFFD128338d87fe8128338d8 /* PxConstraintExt.h */, - FFFD128339407fe812833940 /* PxConvexMeshExt.h */, - FFFD128339a87fe8128339a8 /* PxD6Joint.h */, - FFFD12833a107fe812833a10 /* PxDefaultAllocator.h */, - FFFD12833a787fe812833a78 /* PxDefaultCpuDispatcher.h */, - FFFD12833ae07fe812833ae0 /* PxDefaultErrorCallback.h */, - FFFD12833b487fe812833b48 /* PxDefaultSimulationFilterShader.h */, - FFFD12833bb07fe812833bb0 /* PxDefaultStreams.h */, - FFFD12833c187fe812833c18 /* PxDistanceJoint.h */, - FFFD12833c807fe812833c80 /* PxExtensionsAPI.h */, - FFFD12833ce87fe812833ce8 /* PxFixedJoint.h */, - FFFD12833d507fe812833d50 /* PxJoint.h */, - FFFD12833db87fe812833db8 /* PxJointLimit.h */, - FFFD12833e207fe812833e20 /* PxJointRepXSerializer.h */, - FFFD12833e887fe812833e88 /* PxMassProperties.h */, - FFFD12833ef07fe812833ef0 /* PxParticleExt.h */, - FFFD12833f587fe812833f58 /* PxPrismaticJoint.h */, - FFFD12833fc07fe812833fc0 /* PxRaycastCCD.h */, - FFFD128340287fe812834028 /* PxRepXSerializer.h */, - FFFD128340907fe812834090 /* PxRepXSimpleType.h */, - FFFD128340f87fe8128340f8 /* PxRevoluteJoint.h */, - FFFD128341607fe812834160 /* PxRigidActorExt.h */, - FFFD128341c87fe8128341c8 /* PxRigidBodyExt.h */, - FFFD128342307fe812834230 /* PxSceneQueryExt.h */, - FFFD128342987fe812834298 /* PxSerialization.h */, - FFFD128343007fe812834300 /* PxShapeExt.h */, - FFFD128343687fe812834368 /* PxSimpleFactory.h */, - FFFD128343d07fe8128343d0 /* PxSmoothNormals.h */, - FFFD128344387fe812834438 /* PxSphericalJoint.h */, - FFFD128344a07fe8128344a0 /* PxStringTableExt.h */, - FFFD128345087fe812834508 /* PxTriangleMeshExt.h */, + FFFD458190007f8c45819000 /* PxBinaryConverter.h */, + FFFD458190687f8c45819068 /* PxBroadPhaseExt.h */, + FFFD458190d07f8c458190d0 /* PxClothFabricCooker.h */, + FFFD458191387f8c45819138 /* PxClothMeshDesc.h */, + FFFD458191a07f8c458191a0 /* PxClothMeshQuadifier.h */, + FFFD458192087f8c45819208 /* PxClothTetherCooker.h */, + FFFD458192707f8c45819270 /* PxCollectionExt.h */, + FFFD458192d87f8c458192d8 /* PxConstraintExt.h */, + FFFD458193407f8c45819340 /* PxConvexMeshExt.h */, + FFFD458193a87f8c458193a8 /* PxD6Joint.h */, + FFFD458194107f8c45819410 /* PxDefaultAllocator.h */, + FFFD458194787f8c45819478 /* PxDefaultCpuDispatcher.h */, + FFFD458194e07f8c458194e0 /* PxDefaultErrorCallback.h */, + FFFD458195487f8c45819548 /* PxDefaultSimulationFilterShader.h */, + FFFD458195b07f8c458195b0 /* PxDefaultStreams.h */, + FFFD458196187f8c45819618 /* PxDistanceJoint.h */, + FFFD458196807f8c45819680 /* PxExtensionsAPI.h */, + FFFD458196e87f8c458196e8 /* PxFixedJoint.h */, + FFFD458197507f8c45819750 /* PxJoint.h */, + FFFD458197b87f8c458197b8 /* PxJointLimit.h */, + FFFD458198207f8c45819820 /* PxMassProperties.h */, + FFFD458198887f8c45819888 /* PxParticleExt.h */, + FFFD458198f07f8c458198f0 /* PxPrismaticJoint.h */, + FFFD458199587f8c45819958 /* PxRaycastCCD.h */, + FFFD458199c07f8c458199c0 /* PxRepXSerializer.h */, + FFFD45819a287f8c45819a28 /* PxRepXSimpleType.h */, + FFFD45819a907f8c45819a90 /* PxRevoluteJoint.h */, + FFFD45819af87f8c45819af8 /* PxRigidActorExt.h */, + FFFD45819b607f8c45819b60 /* PxRigidBodyExt.h */, + FFFD45819bc87f8c45819bc8 /* PxSceneQueryExt.h */, + FFFD45819c307f8c45819c30 /* PxSerialization.h */, + FFFD45819c987f8c45819c98 /* PxShapeExt.h */, + FFFD45819d007f8c45819d00 /* PxSimpleFactory.h */, + FFFD45819d687f8c45819d68 /* PxSmoothNormals.h */, + FFFD45819dd07f8c45819dd0 /* PxSphericalJoint.h */, + FFFD45819e387f8c45819e38 /* PxStringTableExt.h */, + FFFD45819ea07f8c45819ea0 /* PxTriangleMeshExt.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB126872587fe812687258 /* src */ = { + FFFB45527b687f8c45527b68 /* src */ = { isa = PBXGroup; children = ( - FFFD128320007fe812832000 /* ExtConstraintHelper.h */, - FFFD128320687fe812832068 /* ExtCpuWorkerThread.h */, - FFFD128320d07fe8128320d0 /* ExtD6Joint.h */, - FFFD128321387fe812832138 /* ExtDefaultCpuDispatcher.h */, - FFFD128321a07fe8128321a0 /* ExtDistanceJoint.h */, - FFFD128322087fe812832208 /* ExtFixedJoint.h */, - FFFD128322707fe812832270 /* ExtInertiaTensor.h */, - FFFD128322d87fe8128322d8 /* ExtJoint.h */, - FFFD128323407fe812832340 /* ExtJointMetaDataExtensions.h */, - FFFD128323a87fe8128323a8 /* ExtPlatform.h */, - FFFD128324107fe812832410 /* ExtPrismaticJoint.h */, - FFFD128324787fe812832478 /* ExtPvd.h */, - FFFD128324e07fe8128324e0 /* ExtRevoluteJoint.h */, - FFFD128325487fe812832548 /* ExtSerialization.h */, - FFFD128325b07fe8128325b0 /* ExtSharedQueueEntryPool.h */, - FFFD128326187fe812832618 /* ExtSphericalJoint.h */, - FFFD128326807fe812832680 /* ExtTaskQueueHelper.h */, - FFFD128326e87fe8128326e8 /* ExtBroadPhase.cpp */, - FFFD128327507fe812832750 /* ExtClothFabricCooker.cpp */, - FFFD128327b87fe8128327b8 /* ExtClothGeodesicTetherCooker.cpp */, - FFFD128328207fe812832820 /* ExtClothMeshQuadifier.cpp */, - FFFD128328887fe812832888 /* ExtClothSimpleTetherCooker.cpp */, - FFFD128328f07fe8128328f0 /* ExtCollection.cpp */, - FFFD128329587fe812832958 /* ExtConvexMeshExt.cpp */, - FFFD128329c07fe8128329c0 /* ExtCpuWorkerThread.cpp */, - FFFD12832a287fe812832a28 /* ExtD6Joint.cpp */, - FFFD12832a907fe812832a90 /* ExtD6JointSolverPrep.cpp */, - FFFD12832af87fe812832af8 /* ExtDefaultCpuDispatcher.cpp */, - FFFD12832b607fe812832b60 /* ExtDefaultErrorCallback.cpp */, - FFFD12832bc87fe812832bc8 /* ExtDefaultSimulationFilterShader.cpp */, - FFFD12832c307fe812832c30 /* ExtDefaultStreams.cpp */, - FFFD12832c987fe812832c98 /* ExtDistanceJoint.cpp */, - FFFD12832d007fe812832d00 /* ExtDistanceJointSolverPrep.cpp */, - FFFD12832d687fe812832d68 /* ExtExtensions.cpp */, - FFFD12832dd07fe812832dd0 /* ExtFixedJoint.cpp */, - FFFD12832e387fe812832e38 /* ExtFixedJointSolverPrep.cpp */, - FFFD12832ea07fe812832ea0 /* ExtJoint.cpp */, - FFFD12832f087fe812832f08 /* ExtMetaData.cpp */, - FFFD12832f707fe812832f70 /* ExtParticleExt.cpp */, - FFFD12832fd87fe812832fd8 /* ExtPrismaticJoint.cpp */, - FFFD128330407fe812833040 /* ExtPrismaticJointSolverPrep.cpp */, - FFFD128330a87fe8128330a8 /* ExtPvd.cpp */, - FFFD128331107fe812833110 /* ExtPxStringTable.cpp */, - FFFD128331787fe812833178 /* ExtRaycastCCD.cpp */, - FFFD128331e07fe8128331e0 /* ExtRevoluteJoint.cpp */, - FFFD128332487fe812833248 /* ExtRevoluteJointSolverPrep.cpp */, - FFFD128332b07fe8128332b0 /* ExtRigidBodyExt.cpp */, - FFFD128333187fe812833318 /* ExtSceneQueryExt.cpp */, - FFFD128333807fe812833380 /* ExtSimpleFactory.cpp */, - FFFD128333e87fe8128333e8 /* ExtSmoothNormals.cpp */, - FFFD128334507fe812833450 /* ExtSphericalJoint.cpp */, - FFFD128334b87fe8128334b8 /* ExtSphericalJointSolverPrep.cpp */, - FFFD128335207fe812833520 /* ExtTriangleMeshExt.cpp */, + FFFD45817a007f8c45817a00 /* ExtConstraintHelper.h */, + FFFD45817a687f8c45817a68 /* ExtCpuWorkerThread.h */, + FFFD45817ad07f8c45817ad0 /* ExtD6Joint.h */, + FFFD45817b387f8c45817b38 /* ExtDefaultCpuDispatcher.h */, + FFFD45817ba07f8c45817ba0 /* ExtDistanceJoint.h */, + FFFD45817c087f8c45817c08 /* ExtFixedJoint.h */, + FFFD45817c707f8c45817c70 /* ExtInertiaTensor.h */, + FFFD45817cd87f8c45817cd8 /* ExtJoint.h */, + FFFD45817d407f8c45817d40 /* ExtJointMetaDataExtensions.h */, + FFFD45817da87f8c45817da8 /* ExtPlatform.h */, + FFFD45817e107f8c45817e10 /* ExtPrismaticJoint.h */, + FFFD45817e787f8c45817e78 /* ExtPvd.h */, + FFFD45817ee07f8c45817ee0 /* ExtRevoluteJoint.h */, + FFFD45817f487f8c45817f48 /* ExtSerialization.h */, + FFFD45817fb07f8c45817fb0 /* ExtSharedQueueEntryPool.h */, + FFFD458180187f8c45818018 /* ExtSphericalJoint.h */, + FFFD458180807f8c45818080 /* ExtTaskQueueHelper.h */, + FFFD458180e87f8c458180e8 /* ExtBroadPhase.cpp */, + FFFD458181507f8c45818150 /* ExtClothFabricCooker.cpp */, + FFFD458181b87f8c458181b8 /* ExtClothGeodesicTetherCooker.cpp */, + FFFD458182207f8c45818220 /* ExtClothMeshQuadifier.cpp */, + FFFD458182887f8c45818288 /* ExtClothSimpleTetherCooker.cpp */, + FFFD458182f07f8c458182f0 /* ExtCollection.cpp */, + FFFD458183587f8c45818358 /* ExtConvexMeshExt.cpp */, + FFFD458183c07f8c458183c0 /* ExtCpuWorkerThread.cpp */, + FFFD458184287f8c45818428 /* ExtD6Joint.cpp */, + FFFD458184907f8c45818490 /* ExtD6JointSolverPrep.cpp */, + FFFD458184f87f8c458184f8 /* ExtDefaultCpuDispatcher.cpp */, + FFFD458185607f8c45818560 /* ExtDefaultErrorCallback.cpp */, + FFFD458185c87f8c458185c8 /* ExtDefaultSimulationFilterShader.cpp */, + FFFD458186307f8c45818630 /* ExtDefaultStreams.cpp */, + FFFD458186987f8c45818698 /* ExtDistanceJoint.cpp */, + FFFD458187007f8c45818700 /* ExtDistanceJointSolverPrep.cpp */, + FFFD458187687f8c45818768 /* ExtExtensions.cpp */, + FFFD458187d07f8c458187d0 /* ExtFixedJoint.cpp */, + FFFD458188387f8c45818838 /* ExtFixedJointSolverPrep.cpp */, + FFFD458188a07f8c458188a0 /* ExtJoint.cpp */, + FFFD458189087f8c45818908 /* ExtMetaData.cpp */, + FFFD458189707f8c45818970 /* ExtParticleExt.cpp */, + FFFD458189d87f8c458189d8 /* ExtPrismaticJoint.cpp */, + FFFD45818a407f8c45818a40 /* ExtPrismaticJointSolverPrep.cpp */, + FFFD45818aa87f8c45818aa8 /* ExtPvd.cpp */, + FFFD45818b107f8c45818b10 /* ExtPxStringTable.cpp */, + FFFD45818b787f8c45818b78 /* ExtRaycastCCD.cpp */, + FFFD45818be07f8c45818be0 /* ExtRevoluteJoint.cpp */, + FFFD45818c487f8c45818c48 /* ExtRevoluteJointSolverPrep.cpp */, + FFFD45818cb07f8c45818cb0 /* ExtRigidBodyExt.cpp */, + FFFD45818d187f8c45818d18 /* ExtSceneQueryExt.cpp */, + FFFD45818d807f8c45818d80 /* ExtSimpleFactory.cpp */, + FFFD45818de87f8c45818de8 /* ExtSmoothNormals.cpp */, + FFFD45818e507f8c45818e50 /* ExtSphericalJoint.cpp */, + FFFD45818eb87f8c45818eb8 /* ExtSphericalJointSolverPrep.cpp */, + FFFD45818f207f8c45818f20 /* ExtTriangleMeshExt.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB126872807fe812687280 /* serialization */ = { + FFFB45527b907f8c45527b90 /* serialization */ = { isa = PBXGroup; children = ( - FFFD12836a007fe812836a00 /* SnSerialUtils.h */, - FFFD12836a687fe812836a68 /* SnSerializationRegistry.h */, - FFFD12836ad07fe812836ad0 /* SnSerialUtils.cpp */, - FFFD12836b387fe812836b38 /* SnSerialization.cpp */, - FFFD12836ba07fe812836ba0 /* SnSerializationRegistry.cpp */, - FFFD12836c087fe812836c08 /* Binary/SnConvX.h */, - FFFD12836c707fe812836c70 /* Binary/SnConvX_Align.h */, - FFFD12836cd87fe812836cd8 /* Binary/SnConvX_Common.h */, - FFFD12836d407fe812836d40 /* Binary/SnConvX_MetaData.h */, - FFFD12836da87fe812836da8 /* Binary/SnConvX_Output.h */, - FFFD12836e107fe812836e10 /* Binary/SnConvX_Union.h */, - FFFD12836e787fe812836e78 /* Binary/SnSerializationContext.h */, - FFFD12836ee07fe812836ee0 /* Binary/SnBinaryDeserialization.cpp */, - FFFD12836f487fe812836f48 /* Binary/SnBinarySerialization.cpp */, - FFFD12836fb07fe812836fb0 /* Binary/SnConvX.cpp */, - FFFD128370187fe812837018 /* Binary/SnConvX_Align.cpp */, - FFFD128370807fe812837080 /* Binary/SnConvX_Convert.cpp */, - FFFD128370e87fe8128370e8 /* Binary/SnConvX_Error.cpp */, - FFFD128371507fe812837150 /* Binary/SnConvX_MetaData.cpp */, - FFFD128371b87fe8128371b8 /* Binary/SnConvX_Output.cpp */, - FFFD128372207fe812837220 /* Binary/SnConvX_Union.cpp */, - FFFD128372887fe812837288 /* Binary/SnSerializationContext.cpp */, - FFFD128372f07fe8128372f0 /* Xml/SnPxStreamOperators.h */, - FFFD128373587fe812837358 /* Xml/SnRepX1_0Defaults.h */, - FFFD128373c07fe8128373c0 /* Xml/SnRepX3_1Defaults.h */, - FFFD128374287fe812837428 /* Xml/SnRepX3_2Defaults.h */, - FFFD128374907fe812837490 /* Xml/SnRepXCollection.h */, - FFFD128374f87fe8128374f8 /* Xml/SnRepXCoreSerializer.h */, - FFFD128375607fe812837560 /* Xml/SnRepXSerializerImpl.h */, - FFFD128375c87fe8128375c8 /* Xml/SnRepXUpgrader.h */, - FFFD128376307fe812837630 /* Xml/SnSimpleXmlWriter.h */, - FFFD128376987fe812837698 /* Xml/SnXmlDeserializer.h */, - FFFD128377007fe812837700 /* Xml/SnXmlImpl.h */, - FFFD128377687fe812837768 /* Xml/SnXmlMemoryAllocator.h */, - FFFD128377d07fe8128377d0 /* Xml/SnXmlMemoryPool.h */, - FFFD128378387fe812837838 /* Xml/SnXmlMemoryPoolStreams.h */, - FFFD128378a07fe8128378a0 /* Xml/SnXmlReader.h */, - FFFD128379087fe812837908 /* Xml/SnXmlSerializer.h */, - FFFD128379707fe812837970 /* Xml/SnXmlSimpleXmlWriter.h */, - FFFD128379d87fe8128379d8 /* Xml/SnXmlStringToType.h */, - FFFD12837a407fe812837a40 /* Xml/SnXmlVisitorReader.h */, - FFFD12837aa87fe812837aa8 /* Xml/SnXmlVisitorWriter.h */, - FFFD12837b107fe812837b10 /* Xml/SnXmlWriter.h */, - FFFD12837b787fe812837b78 /* Xml/SnJointRepXSerializer.cpp */, - FFFD12837be07fe812837be0 /* Xml/SnRepXCoreSerializer.cpp */, - FFFD12837c487fe812837c48 /* Xml/SnRepXUpgrader.cpp */, - FFFD12837cb07fe812837cb0 /* Xml/SnXmlSerialization.cpp */, - FFFD12837d187fe812837d18 /* File/SnFile.h */, + FFFD4581c4007f8c4581c400 /* SnSerialUtils.h */, + FFFD4581c4687f8c4581c468 /* SnSerializationRegistry.h */, + FFFD4581c4d07f8c4581c4d0 /* SnSerialUtils.cpp */, + FFFD4581c5387f8c4581c538 /* SnSerialization.cpp */, + FFFD4581c5a07f8c4581c5a0 /* SnSerializationRegistry.cpp */, + FFFD4581c6087f8c4581c608 /* Binary/SnConvX.h */, + FFFD4581c6707f8c4581c670 /* Binary/SnConvX_Align.h */, + FFFD4581c6d87f8c4581c6d8 /* Binary/SnConvX_Common.h */, + FFFD4581c7407f8c4581c740 /* Binary/SnConvX_MetaData.h */, + FFFD4581c7a87f8c4581c7a8 /* Binary/SnConvX_Output.h */, + FFFD4581c8107f8c4581c810 /* Binary/SnConvX_Union.h */, + FFFD4581c8787f8c4581c878 /* Binary/SnSerializationContext.h */, + FFFD4581c8e07f8c4581c8e0 /* Binary/SnBinaryDeserialization.cpp */, + FFFD4581c9487f8c4581c948 /* Binary/SnBinarySerialization.cpp */, + FFFD4581c9b07f8c4581c9b0 /* Binary/SnConvX.cpp */, + FFFD4581ca187f8c4581ca18 /* Binary/SnConvX_Align.cpp */, + FFFD4581ca807f8c4581ca80 /* Binary/SnConvX_Convert.cpp */, + FFFD4581cae87f8c4581cae8 /* Binary/SnConvX_Error.cpp */, + FFFD4581cb507f8c4581cb50 /* Binary/SnConvX_MetaData.cpp */, + FFFD4581cbb87f8c4581cbb8 /* Binary/SnConvX_Output.cpp */, + FFFD4581cc207f8c4581cc20 /* Binary/SnConvX_Union.cpp */, + FFFD4581cc887f8c4581cc88 /* Binary/SnSerializationContext.cpp */, + FFFD4581ccf07f8c4581ccf0 /* Xml/SnJointRepXSerializer.h */, + FFFD4581cd587f8c4581cd58 /* Xml/SnPxStreamOperators.h */, + FFFD4581cdc07f8c4581cdc0 /* Xml/SnRepX1_0Defaults.h */, + FFFD4581ce287f8c4581ce28 /* Xml/SnRepX3_1Defaults.h */, + FFFD4581ce907f8c4581ce90 /* Xml/SnRepX3_2Defaults.h */, + FFFD4581cef87f8c4581cef8 /* Xml/SnRepXCollection.h */, + FFFD4581cf607f8c4581cf60 /* Xml/SnRepXCoreSerializer.h */, + FFFD4581cfc87f8c4581cfc8 /* Xml/SnRepXSerializerImpl.h */, + FFFD4581d0307f8c4581d030 /* Xml/SnRepXUpgrader.h */, + FFFD4581d0987f8c4581d098 /* Xml/SnSimpleXmlWriter.h */, + FFFD4581d1007f8c4581d100 /* Xml/SnXmlDeserializer.h */, + FFFD4581d1687f8c4581d168 /* Xml/SnXmlImpl.h */, + FFFD4581d1d07f8c4581d1d0 /* Xml/SnXmlMemoryAllocator.h */, + FFFD4581d2387f8c4581d238 /* Xml/SnXmlMemoryPool.h */, + FFFD4581d2a07f8c4581d2a0 /* Xml/SnXmlMemoryPoolStreams.h */, + FFFD4581d3087f8c4581d308 /* Xml/SnXmlReader.h */, + FFFD4581d3707f8c4581d370 /* Xml/SnXmlSerializer.h */, + FFFD4581d3d87f8c4581d3d8 /* Xml/SnXmlSimpleXmlWriter.h */, + FFFD4581d4407f8c4581d440 /* Xml/SnXmlStringToType.h */, + FFFD4581d4a87f8c4581d4a8 /* Xml/SnXmlVisitorReader.h */, + FFFD4581d5107f8c4581d510 /* Xml/SnXmlVisitorWriter.h */, + FFFD4581d5787f8c4581d578 /* Xml/SnXmlWriter.h */, + FFFD4581d5e07f8c4581d5e0 /* Xml/SnJointRepXSerializer.cpp */, + FFFD4581d6487f8c4581d648 /* Xml/SnRepXCoreSerializer.cpp */, + FFFD4581d6b07f8c4581d6b0 /* Xml/SnRepXUpgrader.cpp */, + FFFD4581d7187f8c4581d718 /* Xml/SnXmlSerialization.cpp */, + FFFD4581d7807f8c4581d780 /* File/SnFile.h */, ); name = "serialization"; sourceTree = SOURCE_ROOT; }; - FFFB126872a87fe8126872a8 /* metadata */ = { + FFFB45527bb87f8c45527bb8 /* metadata */ = { isa = PBXGroup; children = ( - FFFD128346007fe812834600 /* core/include/PvdMetaDataDefineProperties.h */, - FFFD128346687fe812834668 /* core/include/PvdMetaDataExtensions.h */, - FFFD128346d07fe8128346d0 /* core/include/PvdMetaDataPropertyVisitor.h */, - FFFD128347387fe812834738 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */, - FFFD128347a07fe8128347a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */, - FFFD128348087fe812834808 /* core/include/PxMetaDataCompare.h */, - FFFD128348707fe812834870 /* core/include/PxMetaDataCppPrefix.h */, - FFFD128348d87fe8128348d8 /* core/include/PxMetaDataObjects.h */, - FFFD128349407fe812834940 /* core/include/RepXMetaDataPropertyVisitor.h */, - FFFD128349a87fe8128349a8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */, - FFFD12834a107fe812834a10 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */, - FFFD12834a787fe812834a78 /* extensions/include/PxExtensionMetaDataObjects.h */, - FFFD12834ae07fe812834ae0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */, + FFFD4581a0007f8c4581a000 /* core/include/PvdMetaDataDefineProperties.h */, + FFFD4581a0687f8c4581a068 /* core/include/PvdMetaDataExtensions.h */, + FFFD4581a0d07f8c4581a0d0 /* core/include/PvdMetaDataPropertyVisitor.h */, + FFFD4581a1387f8c4581a138 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */, + FFFD4581a1a07f8c4581a1a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */, + FFFD4581a2087f8c4581a208 /* core/include/PxMetaDataCompare.h */, + FFFD4581a2707f8c4581a270 /* core/include/PxMetaDataCppPrefix.h */, + FFFD4581a2d87f8c4581a2d8 /* core/include/PxMetaDataObjects.h */, + FFFD4581a3407f8c4581a340 /* core/include/RepXMetaDataPropertyVisitor.h */, + FFFD4581a3a87f8c4581a3a8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */, + FFFD4581a4107f8c4581a410 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */, + FFFD4581a4787f8c4581a478 /* extensions/include/PxExtensionMetaDataObjects.h */, + FFFD4581a4e07f8c4581a4e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */, ); name = "metadata"; sourceTree = SOURCE_ROOT; }; - FFFB12694cb07fe812694cb0 /* SceneQuery */ = { + FFFB455314507f8c45531450 /* SceneQuery */ = { isa = PBXGroup; children = ( - FFFB12697e207fe812697e20 /* src */, - FFFB12697e487fe812697e48 /* include */, + FFFB455334d07f8c455334d0 /* src */, + FFFB455334f87f8c455334f8 /* include */, ); name = "SceneQuery"; sourceTree = "<group>"; }; - FFFB12697e207fe812697e20 /* src */ = { + FFFB455334d07f8c455334d0 /* src */ = { isa = PBXGroup; children = ( - FFFD1283aa007fe81283aa00 /* SqAABBPruner.cpp */, - FFFD1283aa687fe81283aa68 /* SqAABBTree.cpp */, - FFFD1283aad07fe81283aad0 /* SqAABBTreeUpdateMap.cpp */, - FFFD1283ab387fe81283ab38 /* SqBounds.cpp */, - FFFD1283aba07fe81283aba0 /* SqBucketPruner.cpp */, - FFFD1283ac087fe81283ac08 /* SqExtendedBucketPruner.cpp */, - FFFD1283ac707fe81283ac70 /* SqMetaData.cpp */, - FFFD1283acd87fe81283acd8 /* SqPruningPool.cpp */, - FFFD1283ad407fe81283ad40 /* SqPruningStructure.cpp */, - FFFD1283ada87fe81283ada8 /* SqSceneQueryManager.cpp */, - FFFD1283ae107fe81283ae10 /* SqAABBPruner.h */, - FFFD1283ae787fe81283ae78 /* SqAABBTree.h */, - FFFD1283aee07fe81283aee0 /* SqAABBTreeQuery.h */, - FFFD1283af487fe81283af48 /* SqAABBTreeUpdateMap.h */, - FFFD1283afb07fe81283afb0 /* SqBounds.h */, - FFFD1283b0187fe81283b018 /* SqBucketPruner.h */, - FFFD1283b0807fe81283b080 /* SqExtendedBucketPruner.h */, - FFFD1283b0e87fe81283b0e8 /* SqPrunerTestsSIMD.h */, - FFFD1283b1507fe81283b150 /* SqPruningPool.h */, - FFFD1283b1b87fe81283b1b8 /* SqTypedef.h */, + FFFD458204007f8c45820400 /* SqAABBPruner.cpp */, + FFFD458204687f8c45820468 /* SqAABBTree.cpp */, + FFFD458204d07f8c458204d0 /* SqAABBTreeUpdateMap.cpp */, + FFFD458205387f8c45820538 /* SqBounds.cpp */, + FFFD458205a07f8c458205a0 /* SqBucketPruner.cpp */, + FFFD458206087f8c45820608 /* SqExtendedBucketPruner.cpp */, + FFFD458206707f8c45820670 /* SqMetaData.cpp */, + FFFD458206d87f8c458206d8 /* SqPruningPool.cpp */, + FFFD458207407f8c45820740 /* SqPruningStructure.cpp */, + FFFD458207a87f8c458207a8 /* SqSceneQueryManager.cpp */, + FFFD458208107f8c45820810 /* SqAABBPruner.h */, + FFFD458208787f8c45820878 /* SqAABBTree.h */, + FFFD458208e07f8c458208e0 /* SqAABBTreeQuery.h */, + FFFD458209487f8c45820948 /* SqAABBTreeUpdateMap.h */, + FFFD458209b07f8c458209b0 /* SqBounds.h */, + FFFD45820a187f8c45820a18 /* SqBucketPruner.h */, + FFFD45820a807f8c45820a80 /* SqExtendedBucketPruner.h */, + FFFD45820ae87f8c45820ae8 /* SqPrunerTestsSIMD.h */, + FFFD45820b507f8c45820b50 /* SqPruningPool.h */, + FFFD45820bb87f8c45820bb8 /* SqTypedef.h */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB12697e487fe812697e48 /* include */ = { + FFFB455334f87f8c455334f8 /* include */ = { isa = PBXGroup; children = ( - FFFD12698f507fe812698f50 /* SqPruner.h */, - FFFD12698fb87fe812698fb8 /* SqPrunerMergeData.h */, - FFFD126990207fe812699020 /* SqPruningStructure.h */, - FFFD126990887fe812699088 /* SqSceneQueryManager.h */, + FFFD455357107f8c45535710 /* SqPruner.h */, + FFFD455357787f8c45535778 /* SqPrunerMergeData.h */, + FFFD455357e07f8c455357e0 /* SqPruningStructure.h */, + FFFD455358487f8c45535848 /* SqSceneQueryManager.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB126992107fe812699210 /* SimulationController */ = { + FFFB455359d07f8c455359d0 /* SimulationController */ = { isa = PBXGroup; children = ( - FFFB1269d4207fe81269d420 /* include */, - FFFB1269d4487fe81269d448 /* src */, + FFFB455379107f8c45537910 /* include */, + FFFB455379387f8c45537938 /* src */, ); name = "SimulationController"; sourceTree = "<group>"; }; - FFFB1269d4207fe81269d420 /* include */ = { + FFFB455379107f8c45537910 /* include */ = { isa = PBXGroup; children = ( - FFFD1283d4007fe81283d400 /* ScActorCore.h */, - FFFD1283d4687fe81283d468 /* ScArticulationCore.h */, - FFFD1283d4d07fe81283d4d0 /* ScArticulationJointCore.h */, - FFFD1283d5387fe81283d538 /* ScBodyCore.h */, - FFFD1283d5a07fe81283d5a0 /* ScClothCore.h */, - FFFD1283d6087fe81283d608 /* ScClothFabricCore.h */, - FFFD1283d6707fe81283d670 /* ScConstraintCore.h */, - FFFD1283d6d87fe81283d6d8 /* ScIterators.h */, - FFFD1283d7407fe81283d740 /* ScMaterialCore.h */, - FFFD1283d7a87fe81283d7a8 /* ScParticleSystemCore.h */, - FFFD1283d8107fe81283d810 /* ScPhysics.h */, - FFFD1283d8787fe81283d878 /* ScRigidCore.h */, - FFFD1283d8e07fe81283d8e0 /* ScScene.h */, - FFFD1283d9487fe81283d948 /* ScShapeCore.h */, - FFFD1283d9b07fe81283d9b0 /* ScStaticCore.h */, + FFFD45822e007f8c45822e00 /* ScActorCore.h */, + FFFD45822e687f8c45822e68 /* ScArticulationCore.h */, + FFFD45822ed07f8c45822ed0 /* ScArticulationJointCore.h */, + FFFD45822f387f8c45822f38 /* ScBodyCore.h */, + FFFD45822fa07f8c45822fa0 /* ScClothCore.h */, + FFFD458230087f8c45823008 /* ScClothFabricCore.h */, + FFFD458230707f8c45823070 /* ScConstraintCore.h */, + FFFD458230d87f8c458230d8 /* ScIterators.h */, + FFFD458231407f8c45823140 /* ScMaterialCore.h */, + FFFD458231a87f8c458231a8 /* ScParticleSystemCore.h */, + FFFD458232107f8c45823210 /* ScPhysics.h */, + FFFD458232787f8c45823278 /* ScRigidCore.h */, + FFFD458232e07f8c458232e0 /* ScScene.h */, + FFFD458233487f8c45823348 /* ScShapeCore.h */, + FFFD458233b07f8c458233b0 /* ScStaticCore.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB1269d4487fe81269d448 /* src */ = { + FFFB455379387f8c45537938 /* src */ = { isa = PBXGroup; children = ( - FFFD110698007fe811069800 /* ScActorElementPair.h */, - FFFD110698687fe811069868 /* ScActorInteraction.h */, - FFFD110698d07fe8110698d0 /* ScActorPair.h */, - FFFD110699387fe811069938 /* ScActorSim.h */, - FFFD110699a07fe8110699a0 /* ScArticulationJointSim.h */, - FFFD11069a087fe811069a08 /* ScArticulationSim.h */, - FFFD11069a707fe811069a70 /* ScBodySim.h */, - FFFD11069ad87fe811069ad8 /* ScClient.h */, - FFFD11069b407fe811069b40 /* ScConstraintGroupNode.h */, - FFFD11069ba87fe811069ba8 /* ScConstraintInteraction.h */, - FFFD11069c107fe811069c10 /* ScConstraintProjectionManager.h */, - FFFD11069c787fe811069c78 /* ScConstraintProjectionTree.h */, - FFFD11069ce07fe811069ce0 /* ScConstraintSim.h */, - FFFD11069d487fe811069d48 /* ScContactReportBuffer.h */, - FFFD11069db07fe811069db0 /* ScContactStream.h */, - FFFD11069e187fe811069e18 /* ScElementInteractionMarker.h */, - FFFD11069e807fe811069e80 /* ScElementSim.h */, - FFFD11069ee87fe811069ee8 /* ScElementSimInteraction.h */, - FFFD11069f507fe811069f50 /* ScInteraction.h */, - FFFD11069fb87fe811069fb8 /* ScInteractionFlags.h */, - FFFD1106a0207fe81106a020 /* ScNPhaseCore.h */, - FFFD1106a0887fe81106a088 /* ScObjectIDTracker.h */, - FFFD1106a0f07fe81106a0f0 /* ScRbElementInteraction.h */, - FFFD1106a1587fe81106a158 /* ScRigidSim.h */, - FFFD1106a1c07fe81106a1c0 /* ScShapeInteraction.h */, - FFFD1106a2287fe81106a228 /* ScShapeIterator.h */, - FFFD1106a2907fe81106a290 /* ScShapeSim.h */, - FFFD1106a2f87fe81106a2f8 /* ScSimStateData.h */, - FFFD1106a3607fe81106a360 /* ScSimStats.h */, - FFFD1106a3c87fe81106a3c8 /* ScSimulationController.h */, - FFFD1106a4307fe81106a430 /* ScSqBoundsManager.h */, - FFFD1106a4987fe81106a498 /* ScStaticSim.h */, - FFFD1106a5007fe81106a500 /* ScTriggerInteraction.h */, - FFFD1106a5687fe81106a568 /* ScTriggerPairs.h */, - FFFD1106a5d07fe81106a5d0 /* ScActorCore.cpp */, - FFFD1106a6387fe81106a638 /* ScActorSim.cpp */, - FFFD1106a6a07fe81106a6a0 /* ScArticulationCore.cpp */, - FFFD1106a7087fe81106a708 /* ScArticulationJointCore.cpp */, - FFFD1106a7707fe81106a770 /* ScArticulationJointSim.cpp */, - FFFD1106a7d87fe81106a7d8 /* ScArticulationSim.cpp */, - FFFD1106a8407fe81106a840 /* ScBodyCore.cpp */, - FFFD1106a8a87fe81106a8a8 /* ScBodyCoreKinematic.cpp */, - FFFD1106a9107fe81106a910 /* ScBodySim.cpp */, - FFFD1106a9787fe81106a978 /* ScConstraintCore.cpp */, - FFFD1106a9e07fe81106a9e0 /* ScConstraintGroupNode.cpp */, - FFFD1106aa487fe81106aa48 /* ScConstraintInteraction.cpp */, - FFFD1106aab07fe81106aab0 /* ScConstraintProjectionManager.cpp */, - FFFD1106ab187fe81106ab18 /* ScConstraintProjectionTree.cpp */, - FFFD1106ab807fe81106ab80 /* ScConstraintSim.cpp */, - FFFD1106abe87fe81106abe8 /* ScElementInteractionMarker.cpp */, - FFFD1106ac507fe81106ac50 /* ScElementSim.cpp */, - FFFD1106acb87fe81106acb8 /* ScInteraction.cpp */, - FFFD1106ad207fe81106ad20 /* ScIterators.cpp */, - FFFD1106ad887fe81106ad88 /* ScMaterialCore.cpp */, - FFFD1106adf07fe81106adf0 /* ScMetaData.cpp */, - FFFD1106ae587fe81106ae58 /* ScNPhaseCore.cpp */, - FFFD1106aec07fe81106aec0 /* ScPhysics.cpp */, - FFFD1106af287fe81106af28 /* ScRigidCore.cpp */, - FFFD1106af907fe81106af90 /* ScRigidSim.cpp */, - FFFD1106aff87fe81106aff8 /* ScScene.cpp */, - FFFD1106b0607fe81106b060 /* ScShapeCore.cpp */, - FFFD1106b0c87fe81106b0c8 /* ScShapeInteraction.cpp */, - FFFD1106b1307fe81106b130 /* ScShapeSim.cpp */, - FFFD1106b1987fe81106b198 /* ScSimStats.cpp */, - FFFD1106b2007fe81106b200 /* ScSimulationController.cpp */, - FFFD1106b2687fe81106b268 /* ScSqBoundsManager.cpp */, - FFFD1106b2d07fe81106b2d0 /* ScStaticCore.cpp */, - FFFD1106b3387fe81106b338 /* ScStaticSim.cpp */, - FFFD1106b3a07fe81106b3a0 /* ScTriggerInteraction.cpp */, - FFFD1106b4087fe81106b408 /* particles/ScParticleBodyInteraction.h */, - FFFD1106b4707fe81106b470 /* particles/ScParticlePacketShape.h */, - FFFD1106b4d87fe81106b4d8 /* particles/ScParticleSystemSim.h */, - FFFD1106b5407fe81106b540 /* particles/ScParticleBodyInteraction.cpp */, - FFFD1106b5a87fe81106b5a8 /* particles/ScParticlePacketShape.cpp */, - FFFD1106b6107fe81106b610 /* particles/ScParticleSystemCore.cpp */, - FFFD1106b6787fe81106b678 /* particles/ScParticleSystemSim.cpp */, - FFFD1106b6e07fe81106b6e0 /* cloth/ScClothShape.h */, - FFFD1106b7487fe81106b748 /* cloth/ScClothSim.h */, - FFFD1106b7b07fe81106b7b0 /* cloth/ScClothCore.cpp */, - FFFD1106b8187fe81106b818 /* cloth/ScClothFabricCore.cpp */, - FFFD1106b8807fe81106b880 /* cloth/ScClothShape.cpp */, - FFFD1106b8e87fe81106b8e8 /* cloth/ScClothSim.cpp */, + FFFD458260007f8c45826000 /* ScActorElementPair.h */, + FFFD458260687f8c45826068 /* ScActorInteraction.h */, + FFFD458260d07f8c458260d0 /* ScActorPair.h */, + FFFD458261387f8c45826138 /* ScActorSim.h */, + FFFD458261a07f8c458261a0 /* ScArticulationJointSim.h */, + FFFD458262087f8c45826208 /* ScArticulationSim.h */, + FFFD458262707f8c45826270 /* ScBodySim.h */, + FFFD458262d87f8c458262d8 /* ScClient.h */, + FFFD458263407f8c45826340 /* ScConstraintGroupNode.h */, + FFFD458263a87f8c458263a8 /* ScConstraintInteraction.h */, + FFFD458264107f8c45826410 /* ScConstraintProjectionManager.h */, + FFFD458264787f8c45826478 /* ScConstraintProjectionTree.h */, + FFFD458264e07f8c458264e0 /* ScConstraintSim.h */, + FFFD458265487f8c45826548 /* ScContactReportBuffer.h */, + FFFD458265b07f8c458265b0 /* ScContactStream.h */, + FFFD458266187f8c45826618 /* ScElementInteractionMarker.h */, + FFFD458266807f8c45826680 /* ScElementSim.h */, + FFFD458266e87f8c458266e8 /* ScElementSimInteraction.h */, + FFFD458267507f8c45826750 /* ScInteraction.h */, + FFFD458267b87f8c458267b8 /* ScInteractionFlags.h */, + FFFD458268207f8c45826820 /* ScNPhaseCore.h */, + FFFD458268887f8c45826888 /* ScObjectIDTracker.h */, + FFFD458268f07f8c458268f0 /* ScRbElementInteraction.h */, + FFFD458269587f8c45826958 /* ScRigidSim.h */, + FFFD458269c07f8c458269c0 /* ScShapeInteraction.h */, + FFFD45826a287f8c45826a28 /* ScShapeIterator.h */, + FFFD45826a907f8c45826a90 /* ScShapeSim.h */, + FFFD45826af87f8c45826af8 /* ScSimStateData.h */, + FFFD45826b607f8c45826b60 /* ScSimStats.h */, + FFFD45826bc87f8c45826bc8 /* ScSimulationController.h */, + FFFD45826c307f8c45826c30 /* ScSqBoundsManager.h */, + FFFD45826c987f8c45826c98 /* ScStaticSim.h */, + FFFD45826d007f8c45826d00 /* ScTriggerInteraction.h */, + FFFD45826d687f8c45826d68 /* ScTriggerPairs.h */, + FFFD45826dd07f8c45826dd0 /* ScActorCore.cpp */, + FFFD45826e387f8c45826e38 /* ScActorSim.cpp */, + FFFD45826ea07f8c45826ea0 /* ScArticulationCore.cpp */, + FFFD45826f087f8c45826f08 /* ScArticulationJointCore.cpp */, + FFFD45826f707f8c45826f70 /* ScArticulationJointSim.cpp */, + FFFD45826fd87f8c45826fd8 /* ScArticulationSim.cpp */, + FFFD458270407f8c45827040 /* ScBodyCore.cpp */, + FFFD458270a87f8c458270a8 /* ScBodyCoreKinematic.cpp */, + FFFD458271107f8c45827110 /* ScBodySim.cpp */, + FFFD458271787f8c45827178 /* ScConstraintCore.cpp */, + FFFD458271e07f8c458271e0 /* ScConstraintGroupNode.cpp */, + FFFD458272487f8c45827248 /* ScConstraintInteraction.cpp */, + FFFD458272b07f8c458272b0 /* ScConstraintProjectionManager.cpp */, + FFFD458273187f8c45827318 /* ScConstraintProjectionTree.cpp */, + FFFD458273807f8c45827380 /* ScConstraintSim.cpp */, + FFFD458273e87f8c458273e8 /* ScElementInteractionMarker.cpp */, + FFFD458274507f8c45827450 /* ScElementSim.cpp */, + FFFD458274b87f8c458274b8 /* ScInteraction.cpp */, + FFFD458275207f8c45827520 /* ScIterators.cpp */, + FFFD458275887f8c45827588 /* ScMaterialCore.cpp */, + FFFD458275f07f8c458275f0 /* ScMetaData.cpp */, + FFFD458276587f8c45827658 /* ScNPhaseCore.cpp */, + FFFD458276c07f8c458276c0 /* ScPhysics.cpp */, + FFFD458277287f8c45827728 /* ScRigidCore.cpp */, + FFFD458277907f8c45827790 /* ScRigidSim.cpp */, + FFFD458277f87f8c458277f8 /* ScScene.cpp */, + FFFD458278607f8c45827860 /* ScShapeCore.cpp */, + FFFD458278c87f8c458278c8 /* ScShapeInteraction.cpp */, + FFFD458279307f8c45827930 /* ScShapeSim.cpp */, + FFFD458279987f8c45827998 /* ScSimStats.cpp */, + FFFD45827a007f8c45827a00 /* ScSimulationController.cpp */, + FFFD45827a687f8c45827a68 /* ScSqBoundsManager.cpp */, + FFFD45827ad07f8c45827ad0 /* ScStaticCore.cpp */, + FFFD45827b387f8c45827b38 /* ScStaticSim.cpp */, + FFFD45827ba07f8c45827ba0 /* ScTriggerInteraction.cpp */, + FFFD45827c087f8c45827c08 /* particles/ScParticleBodyInteraction.h */, + FFFD45827c707f8c45827c70 /* particles/ScParticlePacketShape.h */, + FFFD45827cd87f8c45827cd8 /* particles/ScParticleSystemSim.h */, + FFFD45827d407f8c45827d40 /* particles/ScParticleBodyInteraction.cpp */, + FFFD45827da87f8c45827da8 /* particles/ScParticlePacketShape.cpp */, + FFFD45827e107f8c45827e10 /* particles/ScParticleSystemCore.cpp */, + FFFD45827e787f8c45827e78 /* particles/ScParticleSystemSim.cpp */, + FFFD45827ee07f8c45827ee0 /* cloth/ScClothShape.h */, + FFFD45827f487f8c45827f48 /* cloth/ScClothSim.h */, + FFFD45827fb07f8c45827fb0 /* cloth/ScClothCore.cpp */, + FFFD458280187f8c45828018 /* cloth/ScClothFabricCore.cpp */, + FFFD458280807f8c45828080 /* cloth/ScClothShape.cpp */, + FFFD458280e87f8c458280e8 /* cloth/ScClothSim.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB134ec9b07fe8134ec9b0 /* PhysXCooking */ = { + FFFB4553a1807f8c4553a180 /* PhysXCooking */ = { isa = PBXGroup; children = ( - FFFB134edcb07fe8134edcb0 /* include */, - FFFB134edcd87fe8134edcd8 /* src */, + FFFB4553e4107f8c4553e410 /* include */, + FFFB4553e4387f8c4553e438 /* src */, ); name = "PhysXCooking"; sourceTree = "<group>"; }; - FFFB134edcb07fe8134edcb0 /* include */ = { + FFFB4553e4107f8c4553e410 /* include */ = { isa = PBXGroup; children = ( - FFFD134ef7507fe8134ef750 /* PxBVH33MidphaseDesc.h */, - FFFD134ef7b87fe8134ef7b8 /* PxBVH34MidphaseDesc.h */, - FFFD134ef8207fe8134ef820 /* PxConvexMeshDesc.h */, - FFFD134ef8887fe8134ef888 /* PxCooking.h */, - FFFD134ef8f07fe8134ef8f0 /* PxMidphaseDesc.h */, - FFFD134ef9587fe8134ef958 /* PxTriangleMeshDesc.h */, - FFFD134ef9c07fe8134ef9c0 /* Pxc.h */, + FFFD455442807f8c45544280 /* PxBVH33MidphaseDesc.h */, + FFFD455442e87f8c455442e8 /* PxBVH34MidphaseDesc.h */, + FFFD455443507f8c45544350 /* PxConvexMeshDesc.h */, + FFFD455443b87f8c455443b8 /* PxCooking.h */, + FFFD455444207f8c45544420 /* PxMidphaseDesc.h */, + FFFD455444887f8c45544488 /* PxTriangleMeshDesc.h */, + FFFD455444f07f8c455444f0 /* Pxc.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB134edcd87fe8134edcd8 /* src */ = { + FFFB4553e4387f8c4553e438 /* src */ = { isa = PBXGroup; children = ( - FFFD11071a007fe811071a00 /* Adjacencies.cpp */, - FFFD11071a687fe811071a68 /* Cooking.cpp */, - FFFD11071ad07fe811071ad0 /* CookingUtils.cpp */, - FFFD11071b387fe811071b38 /* EdgeList.cpp */, - FFFD11071ba07fe811071ba0 /* MeshCleaner.cpp */, - FFFD11071c087fe811071c08 /* Quantizer.cpp */, - FFFD11071c707fe811071c70 /* Adjacencies.h */, - FFFD11071cd87fe811071cd8 /* Cooking.h */, - FFFD11071d407fe811071d40 /* CookingUtils.h */, - FFFD11071da87fe811071da8 /* EdgeList.h */, - FFFD11071e107fe811071e10 /* MeshCleaner.h */, - FFFD11071e787fe811071e78 /* Quantizer.h */, - FFFD11071ee07fe811071ee0 /* mesh/GrbTriangleMeshCooking.cpp */, - FFFD11071f487fe811071f48 /* mesh/HeightFieldCooking.cpp */, - FFFD11071fb07fe811071fb0 /* mesh/RTreeCooking.cpp */, - FFFD110720187fe811072018 /* mesh/TriangleMeshBuilder.cpp */, - FFFD110720807fe811072080 /* mesh/GrbTriangleMeshCooking.h */, - FFFD110720e87fe8110720e8 /* mesh/HeightFieldCooking.h */, - FFFD110721507fe811072150 /* mesh/QuickSelect.h */, - FFFD110721b87fe8110721b8 /* mesh/RTreeCooking.h */, - FFFD110722207fe811072220 /* mesh/TriangleMeshBuilder.h */, - FFFD110722887fe811072288 /* convex/BigConvexDataBuilder.cpp */, - FFFD110722f07fe8110722f0 /* convex/ConvexHullBuilder.cpp */, - FFFD110723587fe811072358 /* convex/ConvexHullLib.cpp */, - FFFD110723c07fe8110723c0 /* convex/ConvexHullUtils.cpp */, - FFFD110724287fe811072428 /* convex/ConvexMeshBuilder.cpp */, - FFFD110724907fe811072490 /* convex/ConvexPolygonsBuilder.cpp */, - FFFD110724f87fe8110724f8 /* convex/InflationConvexHullLib.cpp */, - FFFD110725607fe811072560 /* convex/QuickHullConvexHullLib.cpp */, - FFFD110725c87fe8110725c8 /* convex/VolumeIntegration.cpp */, - FFFD110726307fe811072630 /* convex/BigConvexDataBuilder.h */, - FFFD110726987fe811072698 /* convex/ConvexHullBuilder.h */, - FFFD110727007fe811072700 /* convex/ConvexHullLib.h */, - FFFD110727687fe811072768 /* convex/ConvexHullUtils.h */, - FFFD110727d07fe8110727d0 /* convex/ConvexMeshBuilder.h */, - FFFD110728387fe811072838 /* convex/ConvexPolygonsBuilder.h */, - FFFD110728a07fe8110728a0 /* convex/InflationConvexHullLib.h */, - FFFD110729087fe811072908 /* convex/QuickHullConvexHullLib.h */, - FFFD110729707fe811072970 /* convex/VolumeIntegration.h */, + FFFD4582a2007f8c4582a200 /* Adjacencies.cpp */, + FFFD4582a2687f8c4582a268 /* Cooking.cpp */, + FFFD4582a2d07f8c4582a2d0 /* CookingUtils.cpp */, + FFFD4582a3387f8c4582a338 /* EdgeList.cpp */, + FFFD4582a3a07f8c4582a3a0 /* MeshCleaner.cpp */, + FFFD4582a4087f8c4582a408 /* Quantizer.cpp */, + FFFD4582a4707f8c4582a470 /* Adjacencies.h */, + FFFD4582a4d87f8c4582a4d8 /* Cooking.h */, + FFFD4582a5407f8c4582a540 /* CookingUtils.h */, + FFFD4582a5a87f8c4582a5a8 /* EdgeList.h */, + FFFD4582a6107f8c4582a610 /* MeshCleaner.h */, + FFFD4582a6787f8c4582a678 /* Quantizer.h */, + FFFD4582a6e07f8c4582a6e0 /* mesh/GrbTriangleMeshCooking.cpp */, + FFFD4582a7487f8c4582a748 /* mesh/HeightFieldCooking.cpp */, + FFFD4582a7b07f8c4582a7b0 /* mesh/RTreeCooking.cpp */, + FFFD4582a8187f8c4582a818 /* mesh/TriangleMeshBuilder.cpp */, + FFFD4582a8807f8c4582a880 /* mesh/GrbTriangleMeshCooking.h */, + FFFD4582a8e87f8c4582a8e8 /* mesh/HeightFieldCooking.h */, + FFFD4582a9507f8c4582a950 /* mesh/QuickSelect.h */, + FFFD4582a9b87f8c4582a9b8 /* mesh/RTreeCooking.h */, + FFFD4582aa207f8c4582aa20 /* mesh/TriangleMeshBuilder.h */, + FFFD4582aa887f8c4582aa88 /* convex/BigConvexDataBuilder.cpp */, + FFFD4582aaf07f8c4582aaf0 /* convex/ConvexHullBuilder.cpp */, + FFFD4582ab587f8c4582ab58 /* convex/ConvexHullLib.cpp */, + FFFD4582abc07f8c4582abc0 /* convex/ConvexHullUtils.cpp */, + FFFD4582ac287f8c4582ac28 /* convex/ConvexMeshBuilder.cpp */, + FFFD4582ac907f8c4582ac90 /* convex/ConvexPolygonsBuilder.cpp */, + FFFD4582acf87f8c4582acf8 /* convex/InflationConvexHullLib.cpp */, + FFFD4582ad607f8c4582ad60 /* convex/QuickHullConvexHullLib.cpp */, + FFFD4582adc87f8c4582adc8 /* convex/VolumeIntegration.cpp */, + FFFD4582ae307f8c4582ae30 /* convex/BigConvexDataBuilder.h */, + FFFD4582ae987f8c4582ae98 /* convex/ConvexHullBuilder.h */, + FFFD4582af007f8c4582af00 /* convex/ConvexHullLib.h */, + FFFD4582af687f8c4582af68 /* convex/ConvexHullUtils.h */, + FFFD4582afd07f8c4582afd0 /* convex/ConvexMeshBuilder.h */, + FFFD4582b0387f8c4582b038 /* convex/ConvexPolygonsBuilder.h */, + FFFD4582b0a07f8c4582b0a0 /* convex/InflationConvexHullLib.h */, + FFFD4582b1087f8c4582b108 /* convex/QuickHullConvexHullLib.h */, + FFFD4582b1707f8c4582b170 /* convex/VolumeIntegration.h */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB12128d507fe812128d50 /* PhysXCommon */ = { + FFFB4389f1b07f8c4389f1b0 /* PhysXCommon */ = { isa = PBXGroup; children = ( - FFFB1211e4207fe81211e420 /* include */, - FFFB1211e4487fe81211e448 /* common */, - FFFB1211e4707fe81211e470 /* geomutils */, + FFFB43afaf007f8c43afaf00 /* include */, + FFFB43afaf287f8c43afaf28 /* common */, + FFFB43afaf507f8c43afaf50 /* geomutils */, ); name = "PhysXCommon"; sourceTree = "<group>"; }; - FFFB1211e4207fe81211e420 /* include */ = { + FFFB43afaf007f8c43afaf00 /* include */ = { isa = PBXGroup; children = ( - FFFD110252007fe811025200 /* common/PxBase.h */, - FFFD110252687fe811025268 /* common/PxCollection.h */, - FFFD110252d07fe8110252d0 /* common/PxCoreUtilityTypes.h */, - FFFD110253387fe811025338 /* common/PxMetaData.h */, - FFFD110253a07fe8110253a0 /* common/PxMetaDataFlags.h */, - FFFD110254087fe811025408 /* common/PxPhysXCommonConfig.h */, - FFFD110254707fe811025470 /* common/PxPhysicsInsertionCallback.h */, - FFFD110254d87fe8110254d8 /* common/PxRenderBuffer.h */, - FFFD110255407fe811025540 /* common/PxSerialFramework.h */, - FFFD110255a87fe8110255a8 /* common/PxSerializer.h */, - FFFD110256107fe811025610 /* common/PxStringTable.h */, - FFFD110256787fe811025678 /* common/PxTolerancesScale.h */, - FFFD110256e07fe8110256e0 /* common/PxTypeInfo.h */, - FFFD110257487fe811025748 /* geometry/PxBoxGeometry.h */, - FFFD110257b07fe8110257b0 /* geometry/PxCapsuleGeometry.h */, - FFFD110258187fe811025818 /* geometry/PxConvexMesh.h */, - FFFD110258807fe811025880 /* geometry/PxConvexMeshGeometry.h */, - FFFD110258e87fe8110258e8 /* geometry/PxGeometry.h */, - FFFD110259507fe811025950 /* geometry/PxGeometryHelpers.h */, - FFFD110259b87fe8110259b8 /* geometry/PxGeometryQuery.h */, - FFFD11025a207fe811025a20 /* geometry/PxHeightField.h */, - FFFD11025a887fe811025a88 /* geometry/PxHeightFieldDesc.h */, - FFFD11025af07fe811025af0 /* geometry/PxHeightFieldFlag.h */, - FFFD11025b587fe811025b58 /* geometry/PxHeightFieldGeometry.h */, - FFFD11025bc07fe811025bc0 /* geometry/PxHeightFieldSample.h */, - FFFD11025c287fe811025c28 /* geometry/PxMeshQuery.h */, - FFFD11025c907fe811025c90 /* geometry/PxMeshScale.h */, - FFFD11025cf87fe811025cf8 /* geometry/PxPlaneGeometry.h */, - FFFD11025d607fe811025d60 /* geometry/PxSimpleTriangleMesh.h */, - FFFD11025dc87fe811025dc8 /* geometry/PxSphereGeometry.h */, - FFFD11025e307fe811025e30 /* geometry/PxTriangle.h */, - FFFD11025e987fe811025e98 /* geometry/PxTriangleMesh.h */, - FFFD11025f007fe811025f00 /* geometry/PxTriangleMeshGeometry.h */, + FFFD4400ec007f8c4400ec00 /* common/PxBase.h */, + FFFD4400ec687f8c4400ec68 /* common/PxCollection.h */, + FFFD4400ecd07f8c4400ecd0 /* common/PxCoreUtilityTypes.h */, + FFFD4400ed387f8c4400ed38 /* common/PxMetaData.h */, + FFFD4400eda07f8c4400eda0 /* common/PxMetaDataFlags.h */, + FFFD4400ee087f8c4400ee08 /* common/PxPhysXCommonConfig.h */, + FFFD4400ee707f8c4400ee70 /* common/PxPhysicsInsertionCallback.h */, + FFFD4400eed87f8c4400eed8 /* common/PxRenderBuffer.h */, + FFFD4400ef407f8c4400ef40 /* common/PxSerialFramework.h */, + FFFD4400efa87f8c4400efa8 /* common/PxSerializer.h */, + FFFD4400f0107f8c4400f010 /* common/PxStringTable.h */, + FFFD4400f0787f8c4400f078 /* common/PxTolerancesScale.h */, + FFFD4400f0e07f8c4400f0e0 /* common/PxTypeInfo.h */, + FFFD4400f1487f8c4400f148 /* geometry/PxBoxGeometry.h */, + FFFD4400f1b07f8c4400f1b0 /* geometry/PxCapsuleGeometry.h */, + FFFD4400f2187f8c4400f218 /* geometry/PxConvexMesh.h */, + FFFD4400f2807f8c4400f280 /* geometry/PxConvexMeshGeometry.h */, + FFFD4400f2e87f8c4400f2e8 /* geometry/PxGeometry.h */, + FFFD4400f3507f8c4400f350 /* geometry/PxGeometryHelpers.h */, + FFFD4400f3b87f8c4400f3b8 /* geometry/PxGeometryQuery.h */, + FFFD4400f4207f8c4400f420 /* geometry/PxHeightField.h */, + FFFD4400f4887f8c4400f488 /* geometry/PxHeightFieldDesc.h */, + FFFD4400f4f07f8c4400f4f0 /* geometry/PxHeightFieldFlag.h */, + FFFD4400f5587f8c4400f558 /* geometry/PxHeightFieldGeometry.h */, + FFFD4400f5c07f8c4400f5c0 /* geometry/PxHeightFieldSample.h */, + FFFD4400f6287f8c4400f628 /* geometry/PxMeshQuery.h */, + FFFD4400f6907f8c4400f690 /* geometry/PxMeshScale.h */, + FFFD4400f6f87f8c4400f6f8 /* geometry/PxPlaneGeometry.h */, + FFFD4400f7607f8c4400f760 /* geometry/PxSimpleTriangleMesh.h */, + FFFD4400f7c87f8c4400f7c8 /* geometry/PxSphereGeometry.h */, + FFFD4400f8307f8c4400f830 /* geometry/PxTriangle.h */, + FFFD4400f8987f8c4400f898 /* geometry/PxTriangleMesh.h */, + FFFD4400f9007f8c4400f900 /* geometry/PxTriangleMeshGeometry.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB1211e4487fe81211e448 /* common */ = { + FFFB43afaf287f8c43afaf28 /* common */ = { isa = PBXGroup; children = ( - FFFD1198a0007fe81198a000 /* src/CmBoxPruning.cpp */, - FFFD1198a0687fe81198a068 /* src/CmCollection.cpp */, - FFFD1198a0d07fe81198a0d0 /* src/CmMathUtils.cpp */, - FFFD1198a1387fe81198a138 /* src/CmPtrTable.cpp */, - FFFD1198a1a07fe81198a1a0 /* src/CmRadixSort.cpp */, - FFFD1198a2087fe81198a208 /* src/CmRadixSortBuffered.cpp */, - FFFD1198a2707fe81198a270 /* src/CmRenderOutput.cpp */, - FFFD1198a2d87fe81198a2d8 /* src/CmVisualization.cpp */, - FFFD1198a3407fe81198a340 /* src/CmBitMap.h */, - FFFD1198a3a87fe81198a3a8 /* src/CmBoxPruning.h */, - FFFD1198a4107fe81198a410 /* src/CmCollection.h */, - FFFD1198a4787fe81198a478 /* src/CmConeLimitHelper.h */, - FFFD1198a4e07fe81198a4e0 /* src/CmFlushPool.h */, - FFFD1198a5487fe81198a548 /* src/CmIDPool.h */, - FFFD1198a5b07fe81198a5b0 /* src/CmIO.h */, - FFFD1198a6187fe81198a618 /* src/CmMatrix34.h */, - FFFD1198a6807fe81198a680 /* src/CmPhysXCommon.h */, - FFFD1198a6e87fe81198a6e8 /* src/CmPool.h */, - FFFD1198a7507fe81198a750 /* src/CmPreallocatingPool.h */, - FFFD1198a7b87fe81198a7b8 /* src/CmPriorityQueue.h */, - FFFD1198a8207fe81198a820 /* src/CmPtrTable.h */, - FFFD1198a8887fe81198a888 /* src/CmQueue.h */, - FFFD1198a8f07fe81198a8f0 /* src/CmRadixSort.h */, - FFFD1198a9587fe81198a958 /* src/CmRadixSortBuffered.h */, - FFFD1198a9c07fe81198a9c0 /* src/CmReaderWriterLock.h */, - FFFD1198aa287fe81198aa28 /* src/CmRefCountable.h */, - FFFD1198aa907fe81198aa90 /* src/CmRenderBuffer.h */, - FFFD1198aaf87fe81198aaf8 /* src/CmRenderOutput.h */, - FFFD1198ab607fe81198ab60 /* src/CmScaling.h */, - FFFD1198abc87fe81198abc8 /* src/CmSpatialVector.h */, - FFFD1198ac307fe81198ac30 /* src/CmTask.h */, - FFFD1198ac987fe81198ac98 /* src/CmTaskPool.h */, - FFFD1198ad007fe81198ad00 /* src/CmTmpMem.h */, - FFFD1198ad687fe81198ad68 /* src/CmTransformUtils.h */, - FFFD1198add07fe81198add0 /* src/CmUtils.h */, - FFFD1198ae387fe81198ae38 /* src/CmVisualization.h */, + FFFD4319f4007f8c4319f400 /* src/CmBoxPruning.cpp */, + FFFD4319f4687f8c4319f468 /* src/CmCollection.cpp */, + FFFD4319f4d07f8c4319f4d0 /* src/CmMathUtils.cpp */, + FFFD4319f5387f8c4319f538 /* src/CmPtrTable.cpp */, + FFFD4319f5a07f8c4319f5a0 /* src/CmRadixSort.cpp */, + FFFD4319f6087f8c4319f608 /* src/CmRadixSortBuffered.cpp */, + FFFD4319f6707f8c4319f670 /* src/CmRenderOutput.cpp */, + FFFD4319f6d87f8c4319f6d8 /* src/CmVisualization.cpp */, + FFFD4319f7407f8c4319f740 /* src/CmBitMap.h */, + FFFD4319f7a87f8c4319f7a8 /* src/CmBoxPruning.h */, + FFFD4319f8107f8c4319f810 /* src/CmCollection.h */, + FFFD4319f8787f8c4319f878 /* src/CmConeLimitHelper.h */, + FFFD4319f8e07f8c4319f8e0 /* src/CmFlushPool.h */, + FFFD4319f9487f8c4319f948 /* src/CmIDPool.h */, + FFFD4319f9b07f8c4319f9b0 /* src/CmIO.h */, + FFFD4319fa187f8c4319fa18 /* src/CmMatrix34.h */, + FFFD4319fa807f8c4319fa80 /* src/CmPhysXCommon.h */, + FFFD4319fae87f8c4319fae8 /* src/CmPool.h */, + FFFD4319fb507f8c4319fb50 /* src/CmPreallocatingPool.h */, + FFFD4319fbb87f8c4319fbb8 /* src/CmPriorityQueue.h */, + FFFD4319fc207f8c4319fc20 /* src/CmPtrTable.h */, + FFFD4319fc887f8c4319fc88 /* src/CmQueue.h */, + FFFD4319fcf07f8c4319fcf0 /* src/CmRadixSort.h */, + FFFD4319fd587f8c4319fd58 /* src/CmRadixSortBuffered.h */, + FFFD4319fdc07f8c4319fdc0 /* src/CmReaderWriterLock.h */, + FFFD4319fe287f8c4319fe28 /* src/CmRefCountable.h */, + FFFD4319fe907f8c4319fe90 /* src/CmRenderBuffer.h */, + FFFD4319fef87f8c4319fef8 /* src/CmRenderOutput.h */, + FFFD4319ff607f8c4319ff60 /* src/CmScaling.h */, + FFFD4319ffc87f8c4319ffc8 /* src/CmSpatialVector.h */, + FFFD431a00307f8c431a0030 /* src/CmTask.h */, + FFFD431a00987f8c431a0098 /* src/CmTaskPool.h */, + FFFD431a01007f8c431a0100 /* src/CmTmpMem.h */, + FFFD431a01687f8c431a0168 /* src/CmTransformUtils.h */, + FFFD431a01d07f8c431a01d0 /* src/CmUtils.h */, + FFFD431a02387f8c431a0238 /* src/CmVisualization.h */, ); name = "common"; sourceTree = SOURCE_ROOT; }; - FFFB1211e4707fe81211e470 /* geomutils */ = { + FFFB43afaf507f8c43afaf50 /* geomutils */ = { isa = PBXGroup; children = ( - FFFD110182007fe811018200 /* headers/GuAxes.h */, - FFFD110182687fe811018268 /* headers/GuBox.h */, - FFFD110182d07fe8110182d0 /* headers/GuDistanceSegmentBox.h */, - FFFD110183387fe811018338 /* headers/GuDistanceSegmentSegment.h */, - FFFD110183a07fe8110183a0 /* headers/GuIntersectionBoxBox.h */, - FFFD110184087fe811018408 /* headers/GuIntersectionTriangleBox.h */, - FFFD110184707fe811018470 /* headers/GuRaycastTests.h */, - FFFD110184d87fe8110184d8 /* headers/GuSIMDHelpers.h */, - FFFD110185407fe811018540 /* headers/GuSegment.h */, - FFFD110185a87fe8110185a8 /* ../../Include/GeomUtils */, - FFFD110186107fe811018610 /* src/GuBounds.h */, - FFFD110186787fe811018678 /* src/GuCapsule.h */, - FFFD110186e07fe8110186e0 /* src/GuCenterExtents.h */, - FFFD110187487fe811018748 /* src/GuGeometryUnion.h */, - FFFD110187b07fe8110187b0 /* src/GuInternal.h */, - FFFD110188187fe811018818 /* src/GuMTD.h */, - FFFD110188807fe811018880 /* src/GuMeshFactory.h */, - FFFD110188e87fe8110188e8 /* src/GuOverlapTests.h */, - FFFD110189507fe811018950 /* src/GuSerialize.h */, - FFFD110189b87fe8110189b8 /* src/GuSphere.h */, - FFFD11018a207fe811018a20 /* src/GuSweepMTD.h */, - FFFD11018a887fe811018a88 /* src/GuSweepSharedTests.h */, - FFFD11018af07fe811018af0 /* src/GuSweepTests.h */, - FFFD11018b587fe811018b58 /* src/contact/GuContactMethodImpl.h */, - FFFD11018bc07fe811018bc0 /* src/contact/GuContactPolygonPolygon.h */, - FFFD11018c287fe811018c28 /* src/contact/GuFeatureCode.h */, - FFFD11018c907fe811018c90 /* src/contact/GuLegacyTraceLineCallback.h */, - FFFD11018cf87fe811018cf8 /* src/common/GuBarycentricCoordinates.h */, - FFFD11018d607fe811018d60 /* src/common/GuBoxConversion.h */, - FFFD11018dc87fe811018dc8 /* src/common/GuEdgeCache.h */, - FFFD11018e307fe811018e30 /* src/common/GuEdgeListData.h */, - FFFD11018e987fe811018e98 /* src/common/GuSeparatingAxes.h */, - FFFD11018f007fe811018f00 /* src/convex/GuBigConvexData.h */, - FFFD11018f687fe811018f68 /* src/convex/GuBigConvexData2.h */, - FFFD11018fd07fe811018fd0 /* src/convex/GuConvexEdgeFlags.h */, - FFFD110190387fe811019038 /* src/convex/GuConvexHelper.h */, - FFFD110190a07fe8110190a0 /* src/convex/GuConvexMesh.h */, - FFFD110191087fe811019108 /* src/convex/GuConvexMeshData.h */, - FFFD110191707fe811019170 /* src/convex/GuConvexSupportTable.h */, - FFFD110191d87fe8110191d8 /* src/convex/GuConvexUtilsInternal.h */, - FFFD110192407fe811019240 /* src/convex/GuCubeIndex.h */, - FFFD110192a87fe8110192a8 /* src/convex/GuHillClimbing.h */, - FFFD110193107fe811019310 /* src/convex/GuShapeConvex.h */, - FFFD110193787fe811019378 /* src/distance/GuDistancePointBox.h */, - FFFD110193e07fe8110193e0 /* src/distance/GuDistancePointSegment.h */, - FFFD110194487fe811019448 /* src/distance/GuDistancePointTriangle.h */, - FFFD110194b07fe8110194b0 /* src/distance/GuDistancePointTriangleSIMD.h */, - FFFD110195187fe811019518 /* src/distance/GuDistanceSegmentSegmentSIMD.h */, - FFFD110195807fe811019580 /* src/distance/GuDistanceSegmentTriangle.h */, - FFFD110195e87fe8110195e8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */, - FFFD110196507fe811019650 /* src/sweep/GuSweepBoxBox.h */, - FFFD110196b87fe8110196b8 /* src/sweep/GuSweepBoxSphere.h */, - FFFD110197207fe811019720 /* src/sweep/GuSweepBoxTriangle_FeatureBased.h */, - FFFD110197887fe811019788 /* src/sweep/GuSweepBoxTriangle_SAT.h */, - FFFD110197f07fe8110197f0 /* src/sweep/GuSweepCapsuleBox.h */, - FFFD110198587fe811019858 /* src/sweep/GuSweepCapsuleCapsule.h */, - FFFD110198c07fe8110198c0 /* src/sweep/GuSweepCapsuleTriangle.h */, - FFFD110199287fe811019928 /* src/sweep/GuSweepSphereCapsule.h */, - FFFD110199907fe811019990 /* src/sweep/GuSweepSphereSphere.h */, - FFFD110199f87fe8110199f8 /* src/sweep/GuSweepSphereTriangle.h */, - FFFD11019a607fe811019a60 /* src/sweep/GuSweepTriangleUtils.h */, - FFFD11019ac87fe811019ac8 /* src/gjk/GuEPA.h */, - FFFD11019b307fe811019b30 /* src/gjk/GuEPAFacet.h */, - FFFD11019b987fe811019b98 /* src/gjk/GuGJK.h */, - FFFD11019c007fe811019c00 /* src/gjk/GuGJKPenetration.h */, - FFFD11019c687fe811019c68 /* src/gjk/GuGJKRaycast.h */, - FFFD11019cd07fe811019cd0 /* src/gjk/GuGJKSimplex.h */, - FFFD11019d387fe811019d38 /* src/gjk/GuGJKTest.h */, - FFFD11019da07fe811019da0 /* src/gjk/GuGJKType.h */, - FFFD11019e087fe811019e08 /* src/gjk/GuGJKUtil.h */, - FFFD11019e707fe811019e70 /* src/gjk/GuVecBox.h */, - FFFD11019ed87fe811019ed8 /* src/gjk/GuVecCapsule.h */, - FFFD11019f407fe811019f40 /* src/gjk/GuVecConvex.h */, - FFFD11019fa87fe811019fa8 /* src/gjk/GuVecConvexHull.h */, - FFFD1101a0107fe81101a010 /* src/gjk/GuVecConvexHullNoScale.h */, - FFFD1101a0787fe81101a078 /* src/gjk/GuVecPlane.h */, - FFFD1101a0e07fe81101a0e0 /* src/gjk/GuVecShrunkBox.h */, - FFFD1101a1487fe81101a148 /* src/gjk/GuVecShrunkConvexHull.h */, - FFFD1101a1b07fe81101a1b0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */, - FFFD1101a2187fe81101a218 /* src/gjk/GuVecSphere.h */, - FFFD1101a2807fe81101a280 /* src/gjk/GuVecTriangle.h */, - FFFD1101a2e87fe81101a2e8 /* src/intersection/GuIntersectionCapsuleTriangle.h */, - FFFD1101a3507fe81101a350 /* src/intersection/GuIntersectionEdgeEdge.h */, - FFFD1101a3b87fe81101a3b8 /* src/intersection/GuIntersectionRay.h */, - FFFD1101a4207fe81101a420 /* src/intersection/GuIntersectionRayBox.h */, - FFFD1101a4887fe81101a488 /* src/intersection/GuIntersectionRayBoxSIMD.h */, - FFFD1101a4f07fe81101a4f0 /* src/intersection/GuIntersectionRayCapsule.h */, - FFFD1101a5587fe81101a558 /* src/intersection/GuIntersectionRayPlane.h */, - FFFD1101a5c07fe81101a5c0 /* src/intersection/GuIntersectionRaySphere.h */, - FFFD1101a6287fe81101a628 /* src/intersection/GuIntersectionRayTriangle.h */, - FFFD1101a6907fe81101a690 /* src/intersection/GuIntersectionSphereBox.h */, - FFFD1101a6f87fe81101a6f8 /* src/mesh/GuBV32.h */, - FFFD1101a7607fe81101a760 /* src/mesh/GuBV32Build.h */, - FFFD1101a7c87fe81101a7c8 /* src/mesh/GuBV4.h */, - FFFD1101a8307fe81101a830 /* src/mesh/GuBV4Build.h */, - FFFD1101a8987fe81101a898 /* src/mesh/GuBV4Settings.h */, - FFFD1101a9007fe81101a900 /* src/mesh/GuBV4_AABBAABBSweepTest.h */, - FFFD1101a9687fe81101a968 /* src/mesh/GuBV4_BoxBoxOverlapTest.h */, - FFFD1101a9d07fe81101a9d0 /* src/mesh/GuBV4_BoxOverlap_Internal.h */, - FFFD1101aa387fe81101aa38 /* src/mesh/GuBV4_BoxSweep_Internal.h */, - FFFD1101aaa07fe81101aaa0 /* src/mesh/GuBV4_BoxSweep_Params.h */, - FFFD1101ab087fe81101ab08 /* src/mesh/GuBV4_CapsuleSweep_Internal.h */, - FFFD1101ab707fe81101ab70 /* src/mesh/GuBV4_Common.h */, - FFFD1101abd87fe81101abd8 /* src/mesh/GuBV4_Internal.h */, - FFFD1101ac407fe81101ac40 /* src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h */, - FFFD1101aca87fe81101aca8 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h */, - FFFD1101ad107fe81101ad10 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h */, - FFFD1101ad787fe81101ad78 /* src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h */, - FFFD1101ade07fe81101ade0 /* src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h */, - FFFD1101ae487fe81101ae48 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h */, - FFFD1101aeb07fe81101aeb0 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h */, - FFFD1101af187fe81101af18 /* src/mesh/GuBV4_Slabs.h */, - FFFD1101af807fe81101af80 /* src/mesh/GuBV4_Slabs_KajiyaNoOrder.h */, - FFFD1101afe87fe81101afe8 /* src/mesh/GuBV4_Slabs_KajiyaOrdered.h */, - FFFD1101b0507fe81101b050 /* src/mesh/GuBV4_Slabs_SwizzledNoOrder.h */, - FFFD1101b0b87fe81101b0b8 /* src/mesh/GuBV4_Slabs_SwizzledOrdered.h */, - FFFD1101b1207fe81101b120 /* src/mesh/GuBVConstants.h */, - FFFD1101b1887fe81101b188 /* src/mesh/GuMeshData.h */, - FFFD1101b1f07fe81101b1f0 /* src/mesh/GuMidphaseInterface.h */, - FFFD1101b2587fe81101b258 /* src/mesh/GuRTree.h */, - FFFD1101b2c07fe81101b2c0 /* src/mesh/GuSweepConvexTri.h */, - FFFD1101b3287fe81101b328 /* src/mesh/GuSweepMesh.h */, - FFFD1101b3907fe81101b390 /* src/mesh/GuTriangle32.h */, - FFFD1101b3f87fe81101b3f8 /* src/mesh/GuTriangleCache.h */, - FFFD1101b4607fe81101b460 /* src/mesh/GuTriangleMesh.h */, - FFFD1101b4c87fe81101b4c8 /* src/mesh/GuTriangleMeshBV4.h */, - FFFD1101b5307fe81101b530 /* src/mesh/GuTriangleMeshRTree.h */, - FFFD1101b5987fe81101b598 /* src/mesh/GuTriangleVertexPointers.h */, - FFFD1101b6007fe81101b600 /* src/hf/GuEntityReport.h */, - FFFD1101b6687fe81101b668 /* src/hf/GuHeightField.h */, - FFFD1101b6d07fe81101b6d0 /* src/hf/GuHeightFieldData.h */, - FFFD1101b7387fe81101b738 /* src/hf/GuHeightFieldUtil.h */, - FFFD1101b7a07fe81101b7a0 /* src/pcm/GuPCMContactConvexCommon.h */, - FFFD1101b8087fe81101b808 /* src/pcm/GuPCMContactGen.h */, - FFFD1101b8707fe81101b870 /* src/pcm/GuPCMContactGenUtil.h */, - FFFD1101b8d87fe81101b8d8 /* src/pcm/GuPCMContactMeshCallback.h */, - FFFD1101b9407fe81101b940 /* src/pcm/GuPCMShapeConvex.h */, - FFFD1101b9a87fe81101b9a8 /* src/pcm/GuPCMTriangleContactGen.h */, - FFFD1101ba107fe81101ba10 /* src/pcm/GuPersistentContactManifold.h */, - FFFD1101ba787fe81101ba78 /* src/ccd/GuCCDSweepConvexMesh.h */, - FFFD1101bae07fe81101bae0 /* src/GuBounds.cpp */, - FFFD1101bb487fe81101bb48 /* src/GuBox.cpp */, - FFFD1101bbb07fe81101bbb0 /* src/GuCCTSweepTests.cpp */, - FFFD1101bc187fe81101bc18 /* src/GuCapsule.cpp */, - FFFD1101bc807fe81101bc80 /* src/GuGeometryQuery.cpp */, - FFFD1101bce87fe81101bce8 /* src/GuGeometryUnion.cpp */, - FFFD1101bd507fe81101bd50 /* src/GuInternal.cpp */, - FFFD1101bdb87fe81101bdb8 /* src/GuMTD.cpp */, - FFFD1101be207fe81101be20 /* src/GuMeshFactory.cpp */, - FFFD1101be887fe81101be88 /* src/GuMetaData.cpp */, - FFFD1101bef07fe81101bef0 /* src/GuOverlapTests.cpp */, - FFFD1101bf587fe81101bf58 /* src/GuRaycastTests.cpp */, - FFFD1101bfc07fe81101bfc0 /* src/GuSerialize.cpp */, - FFFD1101c0287fe81101c028 /* src/GuSweepMTD.cpp */, - FFFD1101c0907fe81101c090 /* src/GuSweepSharedTests.cpp */, - FFFD1101c0f87fe81101c0f8 /* src/GuSweepTests.cpp */, - FFFD1101c1607fe81101c160 /* src/contact/GuContactBoxBox.cpp */, - FFFD1101c1c87fe81101c1c8 /* src/contact/GuContactCapsuleBox.cpp */, - FFFD1101c2307fe81101c230 /* src/contact/GuContactCapsuleCapsule.cpp */, - FFFD1101c2987fe81101c298 /* src/contact/GuContactCapsuleConvex.cpp */, - FFFD1101c3007fe81101c300 /* src/contact/GuContactCapsuleMesh.cpp */, - FFFD1101c3687fe81101c368 /* src/contact/GuContactConvexConvex.cpp */, - FFFD1101c3d07fe81101c3d0 /* src/contact/GuContactConvexMesh.cpp */, - FFFD1101c4387fe81101c438 /* src/contact/GuContactPlaneBox.cpp */, - FFFD1101c4a07fe81101c4a0 /* src/contact/GuContactPlaneCapsule.cpp */, - FFFD1101c5087fe81101c508 /* src/contact/GuContactPlaneConvex.cpp */, - FFFD1101c5707fe81101c570 /* src/contact/GuContactPolygonPolygon.cpp */, - FFFD1101c5d87fe81101c5d8 /* src/contact/GuContactSphereBox.cpp */, - FFFD1101c6407fe81101c640 /* src/contact/GuContactSphereCapsule.cpp */, - FFFD1101c6a87fe81101c6a8 /* src/contact/GuContactSphereMesh.cpp */, - FFFD1101c7107fe81101c710 /* src/contact/GuContactSpherePlane.cpp */, - FFFD1101c7787fe81101c778 /* src/contact/GuContactSphereSphere.cpp */, - FFFD1101c7e07fe81101c7e0 /* src/contact/GuFeatureCode.cpp */, - FFFD1101c8487fe81101c848 /* src/contact/GuLegacyContactBoxHeightField.cpp */, - FFFD1101c8b07fe81101c8b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */, - FFFD1101c9187fe81101c918 /* src/contact/GuLegacyContactConvexHeightField.cpp */, - FFFD1101c9807fe81101c980 /* src/contact/GuLegacyContactSphereHeightField.cpp */, - FFFD1101c9e87fe81101c9e8 /* src/common/GuBarycentricCoordinates.cpp */, - FFFD1101ca507fe81101ca50 /* src/common/GuSeparatingAxes.cpp */, - FFFD1101cab87fe81101cab8 /* src/convex/GuBigConvexData.cpp */, - FFFD1101cb207fe81101cb20 /* src/convex/GuConvexHelper.cpp */, - FFFD1101cb887fe81101cb88 /* src/convex/GuConvexMesh.cpp */, - FFFD1101cbf07fe81101cbf0 /* src/convex/GuConvexSupportTable.cpp */, - FFFD1101cc587fe81101cc58 /* src/convex/GuConvexUtilsInternal.cpp */, - FFFD1101ccc07fe81101ccc0 /* src/convex/GuHillClimbing.cpp */, - FFFD1101cd287fe81101cd28 /* src/convex/GuShapeConvex.cpp */, - FFFD1101cd907fe81101cd90 /* src/distance/GuDistancePointBox.cpp */, - FFFD1101cdf87fe81101cdf8 /* src/distance/GuDistancePointTriangle.cpp */, - FFFD1101ce607fe81101ce60 /* src/distance/GuDistanceSegmentBox.cpp */, - FFFD1101cec87fe81101cec8 /* src/distance/GuDistanceSegmentSegment.cpp */, - FFFD1101cf307fe81101cf30 /* src/distance/GuDistanceSegmentTriangle.cpp */, - FFFD1101cf987fe81101cf98 /* src/sweep/GuSweepBoxBox.cpp */, - FFFD1101d0007fe81101d000 /* src/sweep/GuSweepBoxSphere.cpp */, - FFFD1101d0687fe81101d068 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */, - FFFD1101d0d07fe81101d0d0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */, - FFFD1101d1387fe81101d138 /* src/sweep/GuSweepCapsuleBox.cpp */, - FFFD1101d1a07fe81101d1a0 /* src/sweep/GuSweepCapsuleCapsule.cpp */, - FFFD1101d2087fe81101d208 /* src/sweep/GuSweepCapsuleTriangle.cpp */, - FFFD1101d2707fe81101d270 /* src/sweep/GuSweepSphereCapsule.cpp */, - FFFD1101d2d87fe81101d2d8 /* src/sweep/GuSweepSphereSphere.cpp */, - FFFD1101d3407fe81101d340 /* src/sweep/GuSweepSphereTriangle.cpp */, - FFFD1101d3a87fe81101d3a8 /* src/sweep/GuSweepTriangleUtils.cpp */, - FFFD1101d4107fe81101d410 /* src/gjk/GuEPA.cpp */, - FFFD1101d4787fe81101d478 /* src/gjk/GuGJKSimplex.cpp */, - FFFD1101d4e07fe81101d4e0 /* src/gjk/GuGJKTest.cpp */, - FFFD1101d5487fe81101d548 /* src/intersection/GuIntersectionBoxBox.cpp */, - FFFD1101d5b07fe81101d5b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */, - FFFD1101d6187fe81101d618 /* src/intersection/GuIntersectionEdgeEdge.cpp */, - FFFD1101d6807fe81101d680 /* src/intersection/GuIntersectionRayBox.cpp */, - FFFD1101d6e87fe81101d6e8 /* src/intersection/GuIntersectionRayCapsule.cpp */, - FFFD1101d7507fe81101d750 /* src/intersection/GuIntersectionRaySphere.cpp */, - FFFD1101d7b87fe81101d7b8 /* src/intersection/GuIntersectionSphereBox.cpp */, - FFFD1101d8207fe81101d820 /* src/intersection/GuIntersectionTriangleBox.cpp */, - FFFD1101d8887fe81101d888 /* src/mesh/GuBV32.cpp */, - FFFD1101d8f07fe81101d8f0 /* src/mesh/GuBV32Build.cpp */, - FFFD1101d9587fe81101d958 /* src/mesh/GuBV4.cpp */, - FFFD1101d9c07fe81101d9c0 /* src/mesh/GuBV4Build.cpp */, - FFFD1101da287fe81101da28 /* src/mesh/GuBV4_AABBSweep.cpp */, - FFFD1101da907fe81101da90 /* src/mesh/GuBV4_BoxOverlap.cpp */, - FFFD1101daf87fe81101daf8 /* src/mesh/GuBV4_CapsuleSweep.cpp */, - FFFD1101db607fe81101db60 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */, - FFFD1101dbc87fe81101dbc8 /* src/mesh/GuBV4_OBBSweep.cpp */, - FFFD1101dc307fe81101dc30 /* src/mesh/GuBV4_Raycast.cpp */, - FFFD1101dc987fe81101dc98 /* src/mesh/GuBV4_SphereOverlap.cpp */, - FFFD1101dd007fe81101dd00 /* src/mesh/GuBV4_SphereSweep.cpp */, - FFFD1101dd687fe81101dd68 /* src/mesh/GuMeshQuery.cpp */, - FFFD1101ddd07fe81101ddd0 /* src/mesh/GuMidphaseBV4.cpp */, - FFFD1101de387fe81101de38 /* src/mesh/GuMidphaseRTree.cpp */, - FFFD1101dea07fe81101dea0 /* src/mesh/GuOverlapTestsMesh.cpp */, - FFFD1101df087fe81101df08 /* src/mesh/GuRTree.cpp */, - FFFD1101df707fe81101df70 /* src/mesh/GuRTreeQueries.cpp */, - FFFD1101dfd87fe81101dfd8 /* src/mesh/GuSweepsMesh.cpp */, - FFFD1101e0407fe81101e040 /* src/mesh/GuTriangleMesh.cpp */, - FFFD1101e0a87fe81101e0a8 /* src/mesh/GuTriangleMeshBV4.cpp */, - FFFD1101e1107fe81101e110 /* src/mesh/GuTriangleMeshRTree.cpp */, - FFFD1101e1787fe81101e178 /* src/hf/GuHeightField.cpp */, - FFFD1101e1e07fe81101e1e0 /* src/hf/GuHeightFieldUtil.cpp */, - FFFD1101e2487fe81101e248 /* src/hf/GuOverlapTestsHF.cpp */, - FFFD1101e2b07fe81101e2b0 /* src/hf/GuSweepsHF.cpp */, - FFFD1101e3187fe81101e318 /* src/pcm/GuPCMContactBoxBox.cpp */, - FFFD1101e3807fe81101e380 /* src/pcm/GuPCMContactBoxConvex.cpp */, - FFFD1101e3e87fe81101e3e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */, - FFFD1101e4507fe81101e450 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */, - FFFD1101e4b87fe81101e4b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */, - FFFD1101e5207fe81101e520 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */, - FFFD1101e5887fe81101e588 /* src/pcm/GuPCMContactCapsuleMesh.cpp */, - FFFD1101e5f07fe81101e5f0 /* src/pcm/GuPCMContactConvexCommon.cpp */, - FFFD1101e6587fe81101e658 /* src/pcm/GuPCMContactConvexConvex.cpp */, - FFFD1101e6c07fe81101e6c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */, - FFFD1101e7287fe81101e728 /* src/pcm/GuPCMContactConvexMesh.cpp */, - FFFD1101e7907fe81101e790 /* src/pcm/GuPCMContactGenBoxConvex.cpp */, - FFFD1101e7f87fe81101e7f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */, - FFFD1101e8607fe81101e860 /* src/pcm/GuPCMContactPlaneBox.cpp */, - FFFD1101e8c87fe81101e8c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */, - FFFD1101e9307fe81101e930 /* src/pcm/GuPCMContactPlaneConvex.cpp */, - FFFD1101e9987fe81101e998 /* src/pcm/GuPCMContactSphereBox.cpp */, - FFFD1101ea007fe81101ea00 /* src/pcm/GuPCMContactSphereCapsule.cpp */, - FFFD1101ea687fe81101ea68 /* src/pcm/GuPCMContactSphereConvex.cpp */, - FFFD1101ead07fe81101ead0 /* src/pcm/GuPCMContactSphereHeightField.cpp */, - FFFD1101eb387fe81101eb38 /* src/pcm/GuPCMContactSphereMesh.cpp */, - FFFD1101eba07fe81101eba0 /* src/pcm/GuPCMContactSpherePlane.cpp */, - FFFD1101ec087fe81101ec08 /* src/pcm/GuPCMContactSphereSphere.cpp */, - FFFD1101ec707fe81101ec70 /* src/pcm/GuPCMShapeConvex.cpp */, - FFFD1101ecd87fe81101ecd8 /* src/pcm/GuPCMTriangleContactGen.cpp */, - FFFD1101ed407fe81101ed40 /* src/pcm/GuPersistentContactManifold.cpp */, - FFFD1101eda87fe81101eda8 /* src/ccd/GuCCDSweepConvexMesh.cpp */, - FFFD1101ee107fe81101ee10 /* src/ccd/GuCCDSweepPrimitives.cpp */, + FFFD440010007f8c44001000 /* headers/GuAxes.h */, + FFFD440010687f8c44001068 /* headers/GuBox.h */, + FFFD440010d07f8c440010d0 /* headers/GuDistanceSegmentBox.h */, + FFFD440011387f8c44001138 /* headers/GuDistanceSegmentSegment.h */, + FFFD440011a07f8c440011a0 /* headers/GuIntersectionBoxBox.h */, + FFFD440012087f8c44001208 /* headers/GuIntersectionTriangleBox.h */, + FFFD440012707f8c44001270 /* headers/GuRaycastTests.h */, + FFFD440012d87f8c440012d8 /* headers/GuSIMDHelpers.h */, + FFFD440013407f8c44001340 /* headers/GuSegment.h */, + FFFD440013a87f8c440013a8 /* ../../Include/GeomUtils */, + FFFD440014107f8c44001410 /* src/GuBounds.h */, + FFFD440014787f8c44001478 /* src/GuCapsule.h */, + FFFD440014e07f8c440014e0 /* src/GuCenterExtents.h */, + FFFD440015487f8c44001548 /* src/GuGeometryUnion.h */, + FFFD440015b07f8c440015b0 /* src/GuInternal.h */, + FFFD440016187f8c44001618 /* src/GuMTD.h */, + FFFD440016807f8c44001680 /* src/GuMeshFactory.h */, + FFFD440016e87f8c440016e8 /* src/GuOverlapTests.h */, + FFFD440017507f8c44001750 /* src/GuSerialize.h */, + FFFD440017b87f8c440017b8 /* src/GuSphere.h */, + FFFD440018207f8c44001820 /* src/GuSweepMTD.h */, + FFFD440018887f8c44001888 /* src/GuSweepSharedTests.h */, + FFFD440018f07f8c440018f0 /* src/GuSweepTests.h */, + FFFD440019587f8c44001958 /* src/contact/GuContactMethodImpl.h */, + FFFD440019c07f8c440019c0 /* src/contact/GuContactPolygonPolygon.h */, + FFFD44001a287f8c44001a28 /* src/contact/GuFeatureCode.h */, + FFFD44001a907f8c44001a90 /* src/contact/GuLegacyTraceLineCallback.h */, + FFFD44001af87f8c44001af8 /* src/common/GuBarycentricCoordinates.h */, + FFFD44001b607f8c44001b60 /* src/common/GuBoxConversion.h */, + FFFD44001bc87f8c44001bc8 /* src/common/GuEdgeCache.h */, + FFFD44001c307f8c44001c30 /* src/common/GuEdgeListData.h */, + FFFD44001c987f8c44001c98 /* src/common/GuSeparatingAxes.h */, + FFFD44001d007f8c44001d00 /* src/convex/GuBigConvexData.h */, + FFFD44001d687f8c44001d68 /* src/convex/GuBigConvexData2.h */, + FFFD44001dd07f8c44001dd0 /* src/convex/GuConvexEdgeFlags.h */, + FFFD44001e387f8c44001e38 /* src/convex/GuConvexHelper.h */, + FFFD44001ea07f8c44001ea0 /* src/convex/GuConvexMesh.h */, + FFFD44001f087f8c44001f08 /* src/convex/GuConvexMeshData.h */, + FFFD44001f707f8c44001f70 /* src/convex/GuConvexSupportTable.h */, + FFFD44001fd87f8c44001fd8 /* src/convex/GuConvexUtilsInternal.h */, + FFFD440020407f8c44002040 /* src/convex/GuCubeIndex.h */, + FFFD440020a87f8c440020a8 /* src/convex/GuHillClimbing.h */, + FFFD440021107f8c44002110 /* src/convex/GuShapeConvex.h */, + FFFD440021787f8c44002178 /* src/distance/GuDistancePointBox.h */, + FFFD440021e07f8c440021e0 /* src/distance/GuDistancePointSegment.h */, + FFFD440022487f8c44002248 /* src/distance/GuDistancePointTriangle.h */, + FFFD440022b07f8c440022b0 /* src/distance/GuDistancePointTriangleSIMD.h */, + FFFD440023187f8c44002318 /* src/distance/GuDistanceSegmentSegmentSIMD.h */, + FFFD440023807f8c44002380 /* src/distance/GuDistanceSegmentTriangle.h */, + FFFD440023e87f8c440023e8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */, + FFFD440024507f8c44002450 /* src/sweep/GuSweepBoxBox.h */, + FFFD440024b87f8c440024b8 /* src/sweep/GuSweepBoxSphere.h */, + FFFD440025207f8c44002520 /* src/sweep/GuSweepBoxTriangle_FeatureBased.h */, + FFFD440025887f8c44002588 /* src/sweep/GuSweepBoxTriangle_SAT.h */, + FFFD440025f07f8c440025f0 /* src/sweep/GuSweepCapsuleBox.h */, + FFFD440026587f8c44002658 /* src/sweep/GuSweepCapsuleCapsule.h */, + FFFD440026c07f8c440026c0 /* src/sweep/GuSweepCapsuleTriangle.h */, + FFFD440027287f8c44002728 /* src/sweep/GuSweepSphereCapsule.h */, + FFFD440027907f8c44002790 /* src/sweep/GuSweepSphereSphere.h */, + FFFD440027f87f8c440027f8 /* src/sweep/GuSweepSphereTriangle.h */, + FFFD440028607f8c44002860 /* src/sweep/GuSweepTriangleUtils.h */, + FFFD440028c87f8c440028c8 /* src/gjk/GuEPA.h */, + FFFD440029307f8c44002930 /* src/gjk/GuEPAFacet.h */, + FFFD440029987f8c44002998 /* src/gjk/GuGJK.h */, + FFFD44002a007f8c44002a00 /* src/gjk/GuGJKPenetration.h */, + FFFD44002a687f8c44002a68 /* src/gjk/GuGJKRaycast.h */, + FFFD44002ad07f8c44002ad0 /* src/gjk/GuGJKSimplex.h */, + FFFD44002b387f8c44002b38 /* src/gjk/GuGJKTest.h */, + FFFD44002ba07f8c44002ba0 /* src/gjk/GuGJKType.h */, + FFFD44002c087f8c44002c08 /* src/gjk/GuGJKUtil.h */, + FFFD44002c707f8c44002c70 /* src/gjk/GuVecBox.h */, + FFFD44002cd87f8c44002cd8 /* src/gjk/GuVecCapsule.h */, + FFFD44002d407f8c44002d40 /* src/gjk/GuVecConvex.h */, + FFFD44002da87f8c44002da8 /* src/gjk/GuVecConvexHull.h */, + FFFD44002e107f8c44002e10 /* src/gjk/GuVecConvexHullNoScale.h */, + FFFD44002e787f8c44002e78 /* src/gjk/GuVecPlane.h */, + FFFD44002ee07f8c44002ee0 /* src/gjk/GuVecShrunkBox.h */, + FFFD44002f487f8c44002f48 /* src/gjk/GuVecShrunkConvexHull.h */, + FFFD44002fb07f8c44002fb0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */, + FFFD440030187f8c44003018 /* src/gjk/GuVecSphere.h */, + FFFD440030807f8c44003080 /* src/gjk/GuVecTriangle.h */, + FFFD440030e87f8c440030e8 /* src/intersection/GuIntersectionCapsuleTriangle.h */, + FFFD440031507f8c44003150 /* src/intersection/GuIntersectionEdgeEdge.h */, + FFFD440031b87f8c440031b8 /* src/intersection/GuIntersectionRay.h */, + FFFD440032207f8c44003220 /* src/intersection/GuIntersectionRayBox.h */, + FFFD440032887f8c44003288 /* src/intersection/GuIntersectionRayBoxSIMD.h */, + FFFD440032f07f8c440032f0 /* src/intersection/GuIntersectionRayCapsule.h */, + FFFD440033587f8c44003358 /* src/intersection/GuIntersectionRayPlane.h */, + FFFD440033c07f8c440033c0 /* src/intersection/GuIntersectionRaySphere.h */, + FFFD440034287f8c44003428 /* src/intersection/GuIntersectionRayTriangle.h */, + FFFD440034907f8c44003490 /* src/intersection/GuIntersectionSphereBox.h */, + FFFD440034f87f8c440034f8 /* src/mesh/GuBV32.h */, + FFFD440035607f8c44003560 /* src/mesh/GuBV32Build.h */, + FFFD440035c87f8c440035c8 /* src/mesh/GuBV4.h */, + FFFD440036307f8c44003630 /* src/mesh/GuBV4Build.h */, + FFFD440036987f8c44003698 /* src/mesh/GuBV4Settings.h */, + FFFD440037007f8c44003700 /* src/mesh/GuBV4_AABBAABBSweepTest.h */, + FFFD440037687f8c44003768 /* src/mesh/GuBV4_BoxBoxOverlapTest.h */, + FFFD440037d07f8c440037d0 /* src/mesh/GuBV4_BoxOverlap_Internal.h */, + FFFD440038387f8c44003838 /* src/mesh/GuBV4_BoxSweep_Internal.h */, + FFFD440038a07f8c440038a0 /* src/mesh/GuBV4_BoxSweep_Params.h */, + FFFD440039087f8c44003908 /* src/mesh/GuBV4_CapsuleSweep_Internal.h */, + FFFD440039707f8c44003970 /* src/mesh/GuBV4_Common.h */, + FFFD440039d87f8c440039d8 /* src/mesh/GuBV4_Internal.h */, + FFFD44003a407f8c44003a40 /* src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h */, + FFFD44003aa87f8c44003aa8 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h */, + FFFD44003b107f8c44003b10 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h */, + FFFD44003b787f8c44003b78 /* src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h */, + FFFD44003be07f8c44003be0 /* src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h */, + FFFD44003c487f8c44003c48 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h */, + FFFD44003cb07f8c44003cb0 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h */, + FFFD44003d187f8c44003d18 /* src/mesh/GuBV4_Slabs.h */, + FFFD44003d807f8c44003d80 /* src/mesh/GuBV4_Slabs_KajiyaNoOrder.h */, + FFFD44003de87f8c44003de8 /* src/mesh/GuBV4_Slabs_KajiyaOrdered.h */, + FFFD44003e507f8c44003e50 /* src/mesh/GuBV4_Slabs_SwizzledNoOrder.h */, + FFFD44003eb87f8c44003eb8 /* src/mesh/GuBV4_Slabs_SwizzledOrdered.h */, + FFFD44003f207f8c44003f20 /* src/mesh/GuBVConstants.h */, + FFFD44003f887f8c44003f88 /* src/mesh/GuMeshData.h */, + FFFD44003ff07f8c44003ff0 /* src/mesh/GuMidphaseInterface.h */, + FFFD440040587f8c44004058 /* src/mesh/GuRTree.h */, + FFFD440040c07f8c440040c0 /* src/mesh/GuSweepConvexTri.h */, + FFFD440041287f8c44004128 /* src/mesh/GuSweepMesh.h */, + FFFD440041907f8c44004190 /* src/mesh/GuTriangle32.h */, + FFFD440041f87f8c440041f8 /* src/mesh/GuTriangleCache.h */, + FFFD440042607f8c44004260 /* src/mesh/GuTriangleMesh.h */, + FFFD440042c87f8c440042c8 /* src/mesh/GuTriangleMeshBV4.h */, + FFFD440043307f8c44004330 /* src/mesh/GuTriangleMeshRTree.h */, + FFFD440043987f8c44004398 /* src/mesh/GuTriangleVertexPointers.h */, + FFFD440044007f8c44004400 /* src/hf/GuEntityReport.h */, + FFFD440044687f8c44004468 /* src/hf/GuHeightField.h */, + FFFD440044d07f8c440044d0 /* src/hf/GuHeightFieldData.h */, + FFFD440045387f8c44004538 /* src/hf/GuHeightFieldUtil.h */, + FFFD440045a07f8c440045a0 /* src/pcm/GuPCMContactConvexCommon.h */, + FFFD440046087f8c44004608 /* src/pcm/GuPCMContactGen.h */, + FFFD440046707f8c44004670 /* src/pcm/GuPCMContactGenUtil.h */, + FFFD440046d87f8c440046d8 /* src/pcm/GuPCMContactMeshCallback.h */, + FFFD440047407f8c44004740 /* src/pcm/GuPCMShapeConvex.h */, + FFFD440047a87f8c440047a8 /* src/pcm/GuPCMTriangleContactGen.h */, + FFFD440048107f8c44004810 /* src/pcm/GuPersistentContactManifold.h */, + FFFD440048787f8c44004878 /* src/ccd/GuCCDSweepConvexMesh.h */, + FFFD440048e07f8c440048e0 /* src/GuBounds.cpp */, + FFFD440049487f8c44004948 /* src/GuBox.cpp */, + FFFD440049b07f8c440049b0 /* src/GuCCTSweepTests.cpp */, + FFFD44004a187f8c44004a18 /* src/GuCapsule.cpp */, + FFFD44004a807f8c44004a80 /* src/GuGeometryQuery.cpp */, + FFFD44004ae87f8c44004ae8 /* src/GuGeometryUnion.cpp */, + FFFD44004b507f8c44004b50 /* src/GuInternal.cpp */, + FFFD44004bb87f8c44004bb8 /* src/GuMTD.cpp */, + FFFD44004c207f8c44004c20 /* src/GuMeshFactory.cpp */, + FFFD44004c887f8c44004c88 /* src/GuMetaData.cpp */, + FFFD44004cf07f8c44004cf0 /* src/GuOverlapTests.cpp */, + FFFD44004d587f8c44004d58 /* src/GuRaycastTests.cpp */, + FFFD44004dc07f8c44004dc0 /* src/GuSerialize.cpp */, + FFFD44004e287f8c44004e28 /* src/GuSweepMTD.cpp */, + FFFD44004e907f8c44004e90 /* src/GuSweepSharedTests.cpp */, + FFFD44004ef87f8c44004ef8 /* src/GuSweepTests.cpp */, + FFFD44004f607f8c44004f60 /* src/contact/GuContactBoxBox.cpp */, + FFFD44004fc87f8c44004fc8 /* src/contact/GuContactCapsuleBox.cpp */, + FFFD440050307f8c44005030 /* src/contact/GuContactCapsuleCapsule.cpp */, + FFFD440050987f8c44005098 /* src/contact/GuContactCapsuleConvex.cpp */, + FFFD440051007f8c44005100 /* src/contact/GuContactCapsuleMesh.cpp */, + FFFD440051687f8c44005168 /* src/contact/GuContactConvexConvex.cpp */, + FFFD440051d07f8c440051d0 /* src/contact/GuContactConvexMesh.cpp */, + FFFD440052387f8c44005238 /* src/contact/GuContactPlaneBox.cpp */, + FFFD440052a07f8c440052a0 /* src/contact/GuContactPlaneCapsule.cpp */, + FFFD440053087f8c44005308 /* src/contact/GuContactPlaneConvex.cpp */, + FFFD440053707f8c44005370 /* src/contact/GuContactPolygonPolygon.cpp */, + FFFD440053d87f8c440053d8 /* src/contact/GuContactSphereBox.cpp */, + FFFD440054407f8c44005440 /* src/contact/GuContactSphereCapsule.cpp */, + FFFD440054a87f8c440054a8 /* src/contact/GuContactSphereMesh.cpp */, + FFFD440055107f8c44005510 /* src/contact/GuContactSpherePlane.cpp */, + FFFD440055787f8c44005578 /* src/contact/GuContactSphereSphere.cpp */, + FFFD440055e07f8c440055e0 /* src/contact/GuFeatureCode.cpp */, + FFFD440056487f8c44005648 /* src/contact/GuLegacyContactBoxHeightField.cpp */, + FFFD440056b07f8c440056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */, + FFFD440057187f8c44005718 /* src/contact/GuLegacyContactConvexHeightField.cpp */, + FFFD440057807f8c44005780 /* src/contact/GuLegacyContactSphereHeightField.cpp */, + FFFD440057e87f8c440057e8 /* src/common/GuBarycentricCoordinates.cpp */, + FFFD440058507f8c44005850 /* src/common/GuSeparatingAxes.cpp */, + FFFD440058b87f8c440058b8 /* src/convex/GuBigConvexData.cpp */, + FFFD440059207f8c44005920 /* src/convex/GuConvexHelper.cpp */, + FFFD440059887f8c44005988 /* src/convex/GuConvexMesh.cpp */, + FFFD440059f07f8c440059f0 /* src/convex/GuConvexSupportTable.cpp */, + FFFD44005a587f8c44005a58 /* src/convex/GuConvexUtilsInternal.cpp */, + FFFD44005ac07f8c44005ac0 /* src/convex/GuHillClimbing.cpp */, + FFFD44005b287f8c44005b28 /* src/convex/GuShapeConvex.cpp */, + FFFD44005b907f8c44005b90 /* src/distance/GuDistancePointBox.cpp */, + FFFD44005bf87f8c44005bf8 /* src/distance/GuDistancePointTriangle.cpp */, + FFFD44005c607f8c44005c60 /* src/distance/GuDistanceSegmentBox.cpp */, + FFFD44005cc87f8c44005cc8 /* src/distance/GuDistanceSegmentSegment.cpp */, + FFFD44005d307f8c44005d30 /* src/distance/GuDistanceSegmentTriangle.cpp */, + FFFD44005d987f8c44005d98 /* src/sweep/GuSweepBoxBox.cpp */, + FFFD44005e007f8c44005e00 /* src/sweep/GuSweepBoxSphere.cpp */, + FFFD44005e687f8c44005e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */, + FFFD44005ed07f8c44005ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */, + FFFD44005f387f8c44005f38 /* src/sweep/GuSweepCapsuleBox.cpp */, + FFFD44005fa07f8c44005fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */, + FFFD440060087f8c44006008 /* src/sweep/GuSweepCapsuleTriangle.cpp */, + FFFD440060707f8c44006070 /* src/sweep/GuSweepSphereCapsule.cpp */, + FFFD440060d87f8c440060d8 /* src/sweep/GuSweepSphereSphere.cpp */, + FFFD440061407f8c44006140 /* src/sweep/GuSweepSphereTriangle.cpp */, + FFFD440061a87f8c440061a8 /* src/sweep/GuSweepTriangleUtils.cpp */, + FFFD440062107f8c44006210 /* src/gjk/GuEPA.cpp */, + FFFD440062787f8c44006278 /* src/gjk/GuGJKSimplex.cpp */, + FFFD440062e07f8c440062e0 /* src/gjk/GuGJKTest.cpp */, + FFFD440063487f8c44006348 /* src/intersection/GuIntersectionBoxBox.cpp */, + FFFD440063b07f8c440063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */, + FFFD440064187f8c44006418 /* src/intersection/GuIntersectionEdgeEdge.cpp */, + FFFD440064807f8c44006480 /* src/intersection/GuIntersectionRayBox.cpp */, + FFFD440064e87f8c440064e8 /* src/intersection/GuIntersectionRayCapsule.cpp */, + FFFD440065507f8c44006550 /* src/intersection/GuIntersectionRaySphere.cpp */, + FFFD440065b87f8c440065b8 /* src/intersection/GuIntersectionSphereBox.cpp */, + FFFD440066207f8c44006620 /* src/intersection/GuIntersectionTriangleBox.cpp */, + FFFD440066887f8c44006688 /* src/mesh/GuBV32.cpp */, + FFFD440066f07f8c440066f0 /* src/mesh/GuBV32Build.cpp */, + FFFD440067587f8c44006758 /* src/mesh/GuBV4.cpp */, + FFFD440067c07f8c440067c0 /* src/mesh/GuBV4Build.cpp */, + FFFD440068287f8c44006828 /* src/mesh/GuBV4_AABBSweep.cpp */, + FFFD440068907f8c44006890 /* src/mesh/GuBV4_BoxOverlap.cpp */, + FFFD440068f87f8c440068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */, + FFFD440069607f8c44006960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */, + FFFD440069c87f8c440069c8 /* src/mesh/GuBV4_OBBSweep.cpp */, + FFFD44006a307f8c44006a30 /* src/mesh/GuBV4_Raycast.cpp */, + FFFD44006a987f8c44006a98 /* src/mesh/GuBV4_SphereOverlap.cpp */, + FFFD44006b007f8c44006b00 /* src/mesh/GuBV4_SphereSweep.cpp */, + FFFD44006b687f8c44006b68 /* src/mesh/GuMeshQuery.cpp */, + FFFD44006bd07f8c44006bd0 /* src/mesh/GuMidphaseBV4.cpp */, + FFFD44006c387f8c44006c38 /* src/mesh/GuMidphaseRTree.cpp */, + FFFD44006ca07f8c44006ca0 /* src/mesh/GuOverlapTestsMesh.cpp */, + FFFD44006d087f8c44006d08 /* src/mesh/GuRTree.cpp */, + FFFD44006d707f8c44006d70 /* src/mesh/GuRTreeQueries.cpp */, + FFFD44006dd87f8c44006dd8 /* src/mesh/GuSweepsMesh.cpp */, + FFFD44006e407f8c44006e40 /* src/mesh/GuTriangleMesh.cpp */, + FFFD44006ea87f8c44006ea8 /* src/mesh/GuTriangleMeshBV4.cpp */, + FFFD44006f107f8c44006f10 /* src/mesh/GuTriangleMeshRTree.cpp */, + FFFD44006f787f8c44006f78 /* src/hf/GuHeightField.cpp */, + FFFD44006fe07f8c44006fe0 /* src/hf/GuHeightFieldUtil.cpp */, + FFFD440070487f8c44007048 /* src/hf/GuOverlapTestsHF.cpp */, + FFFD440070b07f8c440070b0 /* src/hf/GuSweepsHF.cpp */, + FFFD440071187f8c44007118 /* src/pcm/GuPCMContactBoxBox.cpp */, + FFFD440071807f8c44007180 /* src/pcm/GuPCMContactBoxConvex.cpp */, + FFFD440071e87f8c440071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */, + FFFD440072507f8c44007250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */, + FFFD440072b87f8c440072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */, + FFFD440073207f8c44007320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */, + FFFD440073887f8c44007388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */, + FFFD440073f07f8c440073f0 /* src/pcm/GuPCMContactConvexCommon.cpp */, + FFFD440074587f8c44007458 /* src/pcm/GuPCMContactConvexConvex.cpp */, + FFFD440074c07f8c440074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */, + FFFD440075287f8c44007528 /* src/pcm/GuPCMContactConvexMesh.cpp */, + FFFD440075907f8c44007590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */, + FFFD440075f87f8c440075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */, + FFFD440076607f8c44007660 /* src/pcm/GuPCMContactPlaneBox.cpp */, + FFFD440076c87f8c440076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */, + FFFD440077307f8c44007730 /* src/pcm/GuPCMContactPlaneConvex.cpp */, + FFFD440077987f8c44007798 /* src/pcm/GuPCMContactSphereBox.cpp */, + FFFD440078007f8c44007800 /* src/pcm/GuPCMContactSphereCapsule.cpp */, + FFFD440078687f8c44007868 /* src/pcm/GuPCMContactSphereConvex.cpp */, + FFFD440078d07f8c440078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */, + FFFD440079387f8c44007938 /* src/pcm/GuPCMContactSphereMesh.cpp */, + FFFD440079a07f8c440079a0 /* src/pcm/GuPCMContactSpherePlane.cpp */, + FFFD44007a087f8c44007a08 /* src/pcm/GuPCMContactSphereSphere.cpp */, + FFFD44007a707f8c44007a70 /* src/pcm/GuPCMShapeConvex.cpp */, + FFFD44007ad87f8c44007ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */, + FFFD44007b407f8c44007b40 /* src/pcm/GuPersistentContactManifold.cpp */, + FFFD44007ba87f8c44007ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */, + FFFD44007c107f8c44007c10 /* src/ccd/GuCCDSweepPrimitives.cpp */, ); name = "geomutils"; sourceTree = SOURCE_ROOT; }; - FFFB121657c07fe8121657c0 /* PxFoundation */ = { + FFFB438816407f8c43881640 /* PxFoundation */ = { isa = PBXGroup; children = ( - FFFB121662f07fe8121662f0 /* include */, - FFFB121663187fe812166318 /* src */, + FFFB43881c207f8c43881c20 /* include */, + FFFB43881c487f8c43881c48 /* src */, ); name = "PxFoundation"; sourceTree = "<group>"; }; - FFFB121662f07fe8121662f0 /* include */ = { + FFFB43881c207f8c43881c20 /* include */ = { isa = PBXGroup; children = ( - FFFD119688007fe811968800 /* Px.h */, - FFFD119688687fe811968868 /* PxAllocatorCallback.h */, - FFFD119688d07fe8119688d0 /* PxAssert.h */, - FFFD119689387fe811968938 /* PxBitAndData.h */, - FFFD119689a07fe8119689a0 /* PxBounds3.h */, - FFFD11968a087fe811968a08 /* PxErrorCallback.h */, - FFFD11968a707fe811968a70 /* PxErrors.h */, - FFFD11968ad87fe811968ad8 /* PxFlags.h */, - FFFD11968b407fe811968b40 /* PxFoundation.h */, - FFFD11968ba87fe811968ba8 /* PxFoundationVersion.h */, - FFFD11968c107fe811968c10 /* PxIO.h */, - FFFD11968c787fe811968c78 /* PxIntrinsics.h */, - FFFD11968ce07fe811968ce0 /* PxMat33.h */, - FFFD11968d487fe811968d48 /* PxMat44.h */, - FFFD11968db07fe811968db0 /* PxMath.h */, - FFFD11968e187fe811968e18 /* PxMathUtils.h */, - FFFD11968e807fe811968e80 /* PxMemory.h */, - FFFD11968ee87fe811968ee8 /* PxPlane.h */, - FFFD11968f507fe811968f50 /* PxPreprocessor.h */, - FFFD11968fb87fe811968fb8 /* PxProfiler.h */, - FFFD119690207fe811969020 /* PxQuat.h */, - FFFD119690887fe811969088 /* PxSimpleTypes.h */, - FFFD119690f07fe8119690f0 /* PxStrideIterator.h */, - FFFD119691587fe811969158 /* PxTransform.h */, - FFFD119691c07fe8119691c0 /* PxUnionCast.h */, - FFFD119692287fe811969228 /* PxVec2.h */, - FFFD119692907fe811969290 /* PxVec3.h */, - FFFD119692f87fe8119692f8 /* PxVec4.h */, - FFFD119693607fe811969360 /* unix/PxUnixIntrinsics.h */, + FFFD4317dc007f8c4317dc00 /* Px.h */, + FFFD4317dc687f8c4317dc68 /* PxAllocatorCallback.h */, + FFFD4317dcd07f8c4317dcd0 /* PxAssert.h */, + FFFD4317dd387f8c4317dd38 /* PxBitAndData.h */, + FFFD4317dda07f8c4317dda0 /* PxBounds3.h */, + FFFD4317de087f8c4317de08 /* PxErrorCallback.h */, + FFFD4317de707f8c4317de70 /* PxErrors.h */, + FFFD4317ded87f8c4317ded8 /* PxFlags.h */, + FFFD4317df407f8c4317df40 /* PxFoundation.h */, + FFFD4317dfa87f8c4317dfa8 /* PxFoundationVersion.h */, + FFFD4317e0107f8c4317e010 /* PxIO.h */, + FFFD4317e0787f8c4317e078 /* PxIntrinsics.h */, + FFFD4317e0e07f8c4317e0e0 /* PxMat33.h */, + FFFD4317e1487f8c4317e148 /* PxMat44.h */, + FFFD4317e1b07f8c4317e1b0 /* PxMath.h */, + FFFD4317e2187f8c4317e218 /* PxMathUtils.h */, + FFFD4317e2807f8c4317e280 /* PxMemory.h */, + FFFD4317e2e87f8c4317e2e8 /* PxPlane.h */, + FFFD4317e3507f8c4317e350 /* PxPreprocessor.h */, + FFFD4317e3b87f8c4317e3b8 /* PxProfiler.h */, + FFFD4317e4207f8c4317e420 /* PxQuat.h */, + FFFD4317e4887f8c4317e488 /* PxSimpleTypes.h */, + FFFD4317e4f07f8c4317e4f0 /* PxStrideIterator.h */, + FFFD4317e5587f8c4317e558 /* PxTransform.h */, + FFFD4317e5c07f8c4317e5c0 /* PxUnionCast.h */, + FFFD4317e6287f8c4317e628 /* PxVec2.h */, + FFFD4317e6907f8c4317e690 /* PxVec3.h */, + FFFD4317e6f87f8c4317e6f8 /* PxVec4.h */, + FFFD4317e7607f8c4317e760 /* unix/PxUnixIntrinsics.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB121663187fe812166318 /* src */ = { + FFFB43881c487f8c43881c48 /* src */ = { isa = PBXGroup; children = ( - FFFD11975c007fe811975c00 /* include/Ps.h */, - FFFD11975c687fe811975c68 /* include/PsAlignedMalloc.h */, - FFFD11975cd07fe811975cd0 /* include/PsAlloca.h */, - FFFD11975d387fe811975d38 /* include/PsAllocator.h */, - FFFD11975da07fe811975da0 /* include/PsAoS.h */, - FFFD11975e087fe811975e08 /* include/PsArray.h */, - FFFD11975e707fe811975e70 /* include/PsAtomic.h */, - FFFD11975ed87fe811975ed8 /* include/PsBasicTemplates.h */, - FFFD11975f407fe811975f40 /* include/PsBitUtils.h */, - FFFD11975fa87fe811975fa8 /* include/PsBroadcast.h */, - FFFD119760107fe811976010 /* include/PsCpu.h */, - FFFD119760787fe811976078 /* include/PsFPU.h */, - FFFD119760e07fe8119760e0 /* include/PsFoundation.h */, - FFFD119761487fe811976148 /* include/PsHash.h */, - FFFD119761b07fe8119761b0 /* include/PsHashInternals.h */, - FFFD119762187fe811976218 /* include/PsHashMap.h */, - FFFD119762807fe811976280 /* include/PsHashSet.h */, - FFFD119762e87fe8119762e8 /* include/PsInlineAllocator.h */, - FFFD119763507fe811976350 /* include/PsInlineAoS.h */, - FFFD119763b87fe8119763b8 /* include/PsInlineArray.h */, - FFFD119764207fe811976420 /* include/PsIntrinsics.h */, - FFFD119764887fe811976488 /* include/PsMathUtils.h */, - FFFD119764f07fe8119764f0 /* include/PsMutex.h */, - FFFD119765587fe811976558 /* include/PsPool.h */, - FFFD119765c07fe8119765c0 /* include/PsSList.h */, - FFFD119766287fe811976628 /* include/PsSocket.h */, - FFFD119766907fe811976690 /* include/PsSort.h */, - FFFD119766f87fe8119766f8 /* include/PsSortInternals.h */, - FFFD119767607fe811976760 /* include/PsString.h */, - FFFD119767c87fe8119767c8 /* include/PsSync.h */, - FFFD119768307fe811976830 /* include/PsTempAllocator.h */, - FFFD119768987fe811976898 /* include/PsThread.h */, - FFFD119769007fe811976900 /* include/PsTime.h */, - FFFD119769687fe811976968 /* include/PsUserAllocated.h */, - FFFD119769d07fe8119769d0 /* include/PsUtilities.h */, - FFFD11976a387fe811976a38 /* include/PsVecMath.h */, - FFFD11976aa07fe811976aa0 /* include/PsVecMathAoSScalar.h */, - FFFD11976b087fe811976b08 /* include/PsVecMathAoSScalarInline.h */, - FFFD11976b707fe811976b70 /* include/PsVecMathSSE.h */, - FFFD11976bd87fe811976bd8 /* include/PsVecMathUtilities.h */, - FFFD11976c407fe811976c40 /* include/PsVecQuat.h */, - FFFD11976ca87fe811976ca8 /* include/PsVecTransform.h */, - FFFD11976d107fe811976d10 /* include/unix/PsUnixAoS.h */, - FFFD11976d787fe811976d78 /* include/unix/PsUnixFPU.h */, - FFFD11976de07fe811976de0 /* include/unix/PsUnixInlineAoS.h */, - FFFD11976e487fe811976e48 /* include/unix/PsUnixIntrinsics.h */, - FFFD11976eb07fe811976eb0 /* include/unix/PsUnixTrigConstants.h */, - FFFD11976f187fe811976f18 /* src/PsAllocator.cpp */, - FFFD11976f807fe811976f80 /* src/PsAssert.cpp */, - FFFD11976fe87fe811976fe8 /* src/PsFoundation.cpp */, - FFFD119770507fe811977050 /* src/PsMathUtils.cpp */, - FFFD119770b87fe8119770b8 /* src/PsString.cpp */, - FFFD119771207fe811977120 /* src/PsTempAllocator.cpp */, - FFFD119771887fe811977188 /* src/PsUtilities.cpp */, - FFFD119771f07fe8119771f0 /* src/unix/PsUnixAtomic.cpp */, - FFFD119772587fe811977258 /* src/unix/PsUnixCpu.cpp */, - FFFD119772c07fe8119772c0 /* src/unix/PsUnixFPU.cpp */, - FFFD119773287fe811977328 /* src/unix/PsUnixMutex.cpp */, - FFFD119773907fe811977390 /* src/unix/PsUnixPrintString.cpp */, - FFFD119773f87fe8119773f8 /* src/unix/PsUnixSList.cpp */, - FFFD119774607fe811977460 /* src/unix/PsUnixSocket.cpp */, - FFFD119774c87fe8119774c8 /* src/unix/PsUnixSync.cpp */, - FFFD119775307fe811977530 /* src/unix/PsUnixThread.cpp */, - FFFD119775987fe811977598 /* src/unix/PsUnixTime.cpp */, + FFFD4318b0007f8c4318b000 /* include/Ps.h */, + FFFD4318b0687f8c4318b068 /* include/PsAlignedMalloc.h */, + FFFD4318b0d07f8c4318b0d0 /* include/PsAlloca.h */, + FFFD4318b1387f8c4318b138 /* include/PsAllocator.h */, + FFFD4318b1a07f8c4318b1a0 /* include/PsAoS.h */, + FFFD4318b2087f8c4318b208 /* include/PsArray.h */, + FFFD4318b2707f8c4318b270 /* include/PsAtomic.h */, + FFFD4318b2d87f8c4318b2d8 /* include/PsBasicTemplates.h */, + FFFD4318b3407f8c4318b340 /* include/PsBitUtils.h */, + FFFD4318b3a87f8c4318b3a8 /* include/PsBroadcast.h */, + FFFD4318b4107f8c4318b410 /* include/PsCpu.h */, + FFFD4318b4787f8c4318b478 /* include/PsFPU.h */, + FFFD4318b4e07f8c4318b4e0 /* include/PsFoundation.h */, + FFFD4318b5487f8c4318b548 /* include/PsHash.h */, + FFFD4318b5b07f8c4318b5b0 /* include/PsHashInternals.h */, + FFFD4318b6187f8c4318b618 /* include/PsHashMap.h */, + FFFD4318b6807f8c4318b680 /* include/PsHashSet.h */, + FFFD4318b6e87f8c4318b6e8 /* include/PsInlineAllocator.h */, + FFFD4318b7507f8c4318b750 /* include/PsInlineAoS.h */, + FFFD4318b7b87f8c4318b7b8 /* include/PsInlineArray.h */, + FFFD4318b8207f8c4318b820 /* include/PsIntrinsics.h */, + FFFD4318b8887f8c4318b888 /* include/PsMathUtils.h */, + FFFD4318b8f07f8c4318b8f0 /* include/PsMutex.h */, + FFFD4318b9587f8c4318b958 /* include/PsPool.h */, + FFFD4318b9c07f8c4318b9c0 /* include/PsSList.h */, + FFFD4318ba287f8c4318ba28 /* include/PsSocket.h */, + FFFD4318ba907f8c4318ba90 /* include/PsSort.h */, + FFFD4318baf87f8c4318baf8 /* include/PsSortInternals.h */, + FFFD4318bb607f8c4318bb60 /* include/PsString.h */, + FFFD4318bbc87f8c4318bbc8 /* include/PsSync.h */, + FFFD4318bc307f8c4318bc30 /* include/PsTempAllocator.h */, + FFFD4318bc987f8c4318bc98 /* include/PsThread.h */, + FFFD4318bd007f8c4318bd00 /* include/PsTime.h */, + FFFD4318bd687f8c4318bd68 /* include/PsUserAllocated.h */, + FFFD4318bdd07f8c4318bdd0 /* include/PsUtilities.h */, + FFFD4318be387f8c4318be38 /* include/PsVecMath.h */, + FFFD4318bea07f8c4318bea0 /* include/PsVecMathAoSScalar.h */, + FFFD4318bf087f8c4318bf08 /* include/PsVecMathAoSScalarInline.h */, + FFFD4318bf707f8c4318bf70 /* include/PsVecMathSSE.h */, + FFFD4318bfd87f8c4318bfd8 /* include/PsVecMathUtilities.h */, + FFFD4318c0407f8c4318c040 /* include/PsVecQuat.h */, + FFFD4318c0a87f8c4318c0a8 /* include/PsVecTransform.h */, + FFFD4318c1107f8c4318c110 /* include/unix/PsUnixAoS.h */, + FFFD4318c1787f8c4318c178 /* include/unix/PsUnixFPU.h */, + FFFD4318c1e07f8c4318c1e0 /* include/unix/PsUnixInlineAoS.h */, + FFFD4318c2487f8c4318c248 /* include/unix/PsUnixIntrinsics.h */, + FFFD4318c2b07f8c4318c2b0 /* include/unix/PsUnixTrigConstants.h */, + FFFD4318c3187f8c4318c318 /* src/PsAllocator.cpp */, + FFFD4318c3807f8c4318c380 /* src/PsAssert.cpp */, + FFFD4318c3e87f8c4318c3e8 /* src/PsFoundation.cpp */, + FFFD4318c4507f8c4318c450 /* src/PsMathUtils.cpp */, + FFFD4318c4b87f8c4318c4b8 /* src/PsString.cpp */, + FFFD4318c5207f8c4318c520 /* src/PsTempAllocator.cpp */, + FFFD4318c5887f8c4318c588 /* src/PsUtilities.cpp */, + FFFD4318c5f07f8c4318c5f0 /* src/unix/PsUnixAtomic.cpp */, + FFFD4318c6587f8c4318c658 /* src/unix/PsUnixCpu.cpp */, + FFFD4318c6c07f8c4318c6c0 /* src/unix/PsUnixFPU.cpp */, + FFFD4318c7287f8c4318c728 /* src/unix/PsUnixMutex.cpp */, + FFFD4318c7907f8c4318c790 /* src/unix/PsUnixPrintString.cpp */, + FFFD4318c7f87f8c4318c7f8 /* src/unix/PsUnixSList.cpp */, + FFFD4318c8607f8c4318c860 /* src/unix/PsUnixSocket.cpp */, + FFFD4318c8c87f8c4318c8c8 /* src/unix/PsUnixSync.cpp */, + FFFD4318c9307f8c4318c930 /* src/unix/PsUnixThread.cpp */, + FFFD4318c9987f8c4318c998 /* src/unix/PsUnixTime.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB12609f207fe812609f20 /* PxPvdSDK */ = { + FFFB43c33f507f8c43c33f50 /* PxPvdSDK */ = { isa = PBXGroup; children = ( - FFFB1260c5e07fe81260c5e0 /* include */, - FFFB1260c6087fe81260c608 /* src */, + FFFB43c362507f8c43c36250 /* include */, + FFFB43c362787f8c43c36278 /* src */, ); name = "PxPvdSDK"; sourceTree = "<group>"; }; - FFFB1260c5e07fe81260c5e0 /* include */ = { + FFFB43c362507f8c43c36250 /* include */ = { isa = PBXGroup; children = ( - FFFD1260ccb07fe81260ccb0 /* PxPvd.h */, - FFFD1260cd187fe81260cd18 /* PxPvdTransport.h */, + FFFD43c369207f8c43c36920 /* PxPvd.h */, + FFFD43c369887f8c43c36988 /* PxPvdTransport.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB1260c6087fe81260c608 /* src */ = { + FFFB43c362787f8c43c36278 /* src */ = { isa = PBXGroup; children = ( - FFFD128104007fe812810400 /* include/PsPvd.h */, - FFFD128104687fe812810468 /* include/PxProfileAllocatorWrapper.h */, - FFFD128104d07fe8128104d0 /* include/PxPvdClient.h */, - FFFD128105387fe812810538 /* include/PxPvdDataStream.h */, - FFFD128105a07fe8128105a0 /* include/PxPvdDataStreamHelpers.h */, - FFFD128106087fe812810608 /* include/PxPvdErrorCodes.h */, - FFFD128106707fe812810670 /* include/PxPvdObjectModelBaseTypes.h */, - FFFD128106d87fe8128106d8 /* include/PxPvdRenderBuffer.h */, - FFFD128107407fe812810740 /* include/PxPvdUserRenderer.h */, - FFFD128107a87fe8128107a8 /* src/PxProfileEventImpl.cpp */, - FFFD128108107fe812810810 /* src/PxPvd.cpp */, - FFFD128108787fe812810878 /* src/PxPvdDataStream.cpp */, - FFFD128108e07fe8128108e0 /* src/PxPvdDefaultFileTransport.cpp */, - FFFD128109487fe812810948 /* src/PxPvdDefaultSocketTransport.cpp */, - FFFD128109b07fe8128109b0 /* src/PxPvdImpl.cpp */, - FFFD12810a187fe812810a18 /* src/PxPvdMemClient.cpp */, - FFFD12810a807fe812810a80 /* src/PxPvdObjectModelMetaData.cpp */, - FFFD12810ae87fe812810ae8 /* src/PxPvdObjectRegistrar.cpp */, - FFFD12810b507fe812810b50 /* src/PxPvdProfileZoneClient.cpp */, - FFFD12810bb87fe812810bb8 /* src/PxPvdUserRenderer.cpp */, - FFFD12810c207fe812810c20 /* src/PxProfileBase.h */, - FFFD12810c887fe812810c88 /* src/PxProfileCompileTimeEventFilter.h */, - FFFD12810cf07fe812810cf0 /* src/PxProfileContextProvider.h */, - FFFD12810d587fe812810d58 /* src/PxProfileContextProviderImpl.h */, - FFFD12810dc07fe812810dc0 /* src/PxProfileDataBuffer.h */, - FFFD12810e287fe812810e28 /* src/PxProfileDataParsing.h */, - FFFD12810e907fe812810e90 /* src/PxProfileEventBuffer.h */, - FFFD12810ef87fe812810ef8 /* src/PxProfileEventBufferAtomic.h */, - FFFD12810f607fe812810f60 /* src/PxProfileEventBufferClient.h */, - FFFD12810fc87fe812810fc8 /* src/PxProfileEventBufferClientManager.h */, - FFFD128110307fe812811030 /* src/PxProfileEventFilter.h */, - FFFD128110987fe812811098 /* src/PxProfileEventHandler.h */, - FFFD128111007fe812811100 /* src/PxProfileEventId.h */, - FFFD128111687fe812811168 /* src/PxProfileEventMutex.h */, - FFFD128111d07fe8128111d0 /* src/PxProfileEventNames.h */, - FFFD128112387fe812811238 /* src/PxProfileEventParser.h */, - FFFD128112a07fe8128112a0 /* src/PxProfileEventSender.h */, - FFFD128113087fe812811308 /* src/PxProfileEventSerialization.h */, - FFFD128113707fe812811370 /* src/PxProfileEventSystem.h */, - FFFD128113d87fe8128113d8 /* src/PxProfileEvents.h */, - FFFD128114407fe812811440 /* src/PxProfileMemory.h */, - FFFD128114a87fe8128114a8 /* src/PxProfileMemoryBuffer.h */, - FFFD128115107fe812811510 /* src/PxProfileMemoryEventBuffer.h */, - FFFD128115787fe812811578 /* src/PxProfileMemoryEventParser.h */, - FFFD128115e07fe8128115e0 /* src/PxProfileMemoryEventRecorder.h */, - FFFD128116487fe812811648 /* src/PxProfileMemoryEventReflexiveWriter.h */, - FFFD128116b07fe8128116b0 /* src/PxProfileMemoryEventSummarizer.h */, - FFFD128117187fe812811718 /* src/PxProfileMemoryEventTypes.h */, - FFFD128117807fe812811780 /* src/PxProfileMemoryEvents.h */, - FFFD128117e87fe8128117e8 /* src/PxProfileScopedEvent.h */, - FFFD128118507fe812811850 /* src/PxProfileScopedMutexLock.h */, - FFFD128118b87fe8128118b8 /* src/PxProfileZone.h */, - FFFD128119207fe812811920 /* src/PxProfileZoneImpl.h */, - FFFD128119887fe812811988 /* src/PxProfileZoneManager.h */, - FFFD128119f07fe8128119f0 /* src/PxProfileZoneManagerImpl.h */, - FFFD12811a587fe812811a58 /* src/PxPvdBits.h */, - FFFD12811ac07fe812811ac0 /* src/PxPvdByteStreams.h */, - FFFD12811b287fe812811b28 /* src/PxPvdCommStreamEventSink.h */, - FFFD12811b907fe812811b90 /* src/PxPvdCommStreamEvents.h */, - FFFD12811bf87fe812811bf8 /* src/PxPvdCommStreamSDKEventTypes.h */, - FFFD12811c607fe812811c60 /* src/PxPvdCommStreamTypes.h */, - FFFD12811cc87fe812811cc8 /* src/PxPvdDefaultFileTransport.h */, - FFFD12811d307fe812811d30 /* src/PxPvdDefaultSocketTransport.h */, - FFFD12811d987fe812811d98 /* src/PxPvdFoundation.h */, - FFFD12811e007fe812811e00 /* src/PxPvdImpl.h */, - FFFD12811e687fe812811e68 /* src/PxPvdInternalByteStreams.h */, - FFFD12811ed07fe812811ed0 /* src/PxPvdMarshalling.h */, - FFFD12811f387fe812811f38 /* src/PxPvdMemClient.h */, - FFFD12811fa07fe812811fa0 /* src/PxPvdObjectModel.h */, - FFFD128120087fe812812008 /* src/PxPvdObjectModelInternalTypeDefs.h */, - FFFD128120707fe812812070 /* src/PxPvdObjectModelInternalTypes.h */, - FFFD128120d87fe8128120d8 /* src/PxPvdObjectModelMetaData.h */, - FFFD128121407fe812812140 /* src/PxPvdObjectRegistrar.h */, - FFFD128121a87fe8128121a8 /* src/PxPvdProfileZoneClient.h */, - FFFD128122107fe812812210 /* src/PxPvdUserRenderImpl.h */, - FFFD128122787fe812812278 /* src/PxPvdUserRenderTypes.h */, + FFFD440202007f8c44020200 /* include/PsPvd.h */, + FFFD440202687f8c44020268 /* include/PxProfileAllocatorWrapper.h */, + FFFD440202d07f8c440202d0 /* include/PxPvdClient.h */, + FFFD440203387f8c44020338 /* include/PxPvdDataStream.h */, + FFFD440203a07f8c440203a0 /* include/PxPvdDataStreamHelpers.h */, + FFFD440204087f8c44020408 /* include/PxPvdErrorCodes.h */, + FFFD440204707f8c44020470 /* include/PxPvdObjectModelBaseTypes.h */, + FFFD440204d87f8c440204d8 /* include/PxPvdRenderBuffer.h */, + FFFD440205407f8c44020540 /* include/PxPvdUserRenderer.h */, + FFFD440205a87f8c440205a8 /* src/PxProfileEventImpl.cpp */, + FFFD440206107f8c44020610 /* src/PxPvd.cpp */, + FFFD440206787f8c44020678 /* src/PxPvdDataStream.cpp */, + FFFD440206e07f8c440206e0 /* src/PxPvdDefaultFileTransport.cpp */, + FFFD440207487f8c44020748 /* src/PxPvdDefaultSocketTransport.cpp */, + FFFD440207b07f8c440207b0 /* src/PxPvdImpl.cpp */, + FFFD440208187f8c44020818 /* src/PxPvdMemClient.cpp */, + FFFD440208807f8c44020880 /* src/PxPvdObjectModelMetaData.cpp */, + FFFD440208e87f8c440208e8 /* src/PxPvdObjectRegistrar.cpp */, + FFFD440209507f8c44020950 /* src/PxPvdProfileZoneClient.cpp */, + FFFD440209b87f8c440209b8 /* src/PxPvdUserRenderer.cpp */, + FFFD44020a207f8c44020a20 /* src/PxProfileBase.h */, + FFFD44020a887f8c44020a88 /* src/PxProfileCompileTimeEventFilter.h */, + FFFD44020af07f8c44020af0 /* src/PxProfileContextProvider.h */, + FFFD44020b587f8c44020b58 /* src/PxProfileContextProviderImpl.h */, + FFFD44020bc07f8c44020bc0 /* src/PxProfileDataBuffer.h */, + FFFD44020c287f8c44020c28 /* src/PxProfileDataParsing.h */, + FFFD44020c907f8c44020c90 /* src/PxProfileEventBuffer.h */, + FFFD44020cf87f8c44020cf8 /* src/PxProfileEventBufferAtomic.h */, + FFFD44020d607f8c44020d60 /* src/PxProfileEventBufferClient.h */, + FFFD44020dc87f8c44020dc8 /* src/PxProfileEventBufferClientManager.h */, + FFFD44020e307f8c44020e30 /* src/PxProfileEventFilter.h */, + FFFD44020e987f8c44020e98 /* src/PxProfileEventHandler.h */, + FFFD44020f007f8c44020f00 /* src/PxProfileEventId.h */, + FFFD44020f687f8c44020f68 /* src/PxProfileEventMutex.h */, + FFFD44020fd07f8c44020fd0 /* src/PxProfileEventNames.h */, + FFFD440210387f8c44021038 /* src/PxProfileEventParser.h */, + FFFD440210a07f8c440210a0 /* src/PxProfileEventSender.h */, + FFFD440211087f8c44021108 /* src/PxProfileEventSerialization.h */, + FFFD440211707f8c44021170 /* src/PxProfileEventSystem.h */, + FFFD440211d87f8c440211d8 /* src/PxProfileEvents.h */, + FFFD440212407f8c44021240 /* src/PxProfileMemory.h */, + FFFD440212a87f8c440212a8 /* src/PxProfileMemoryBuffer.h */, + FFFD440213107f8c44021310 /* src/PxProfileMemoryEventBuffer.h */, + FFFD440213787f8c44021378 /* src/PxProfileMemoryEventParser.h */, + FFFD440213e07f8c440213e0 /* src/PxProfileMemoryEventRecorder.h */, + FFFD440214487f8c44021448 /* src/PxProfileMemoryEventReflexiveWriter.h */, + FFFD440214b07f8c440214b0 /* src/PxProfileMemoryEventSummarizer.h */, + FFFD440215187f8c44021518 /* src/PxProfileMemoryEventTypes.h */, + FFFD440215807f8c44021580 /* src/PxProfileMemoryEvents.h */, + FFFD440215e87f8c440215e8 /* src/PxProfileScopedEvent.h */, + FFFD440216507f8c44021650 /* src/PxProfileScopedMutexLock.h */, + FFFD440216b87f8c440216b8 /* src/PxProfileZone.h */, + FFFD440217207f8c44021720 /* src/PxProfileZoneImpl.h */, + FFFD440217887f8c44021788 /* src/PxProfileZoneManager.h */, + FFFD440217f07f8c440217f0 /* src/PxProfileZoneManagerImpl.h */, + FFFD440218587f8c44021858 /* src/PxPvdBits.h */, + FFFD440218c07f8c440218c0 /* src/PxPvdByteStreams.h */, + FFFD440219287f8c44021928 /* src/PxPvdCommStreamEventSink.h */, + FFFD440219907f8c44021990 /* src/PxPvdCommStreamEvents.h */, + FFFD440219f87f8c440219f8 /* src/PxPvdCommStreamSDKEventTypes.h */, + FFFD44021a607f8c44021a60 /* src/PxPvdCommStreamTypes.h */, + FFFD44021ac87f8c44021ac8 /* src/PxPvdDefaultFileTransport.h */, + FFFD44021b307f8c44021b30 /* src/PxPvdDefaultSocketTransport.h */, + FFFD44021b987f8c44021b98 /* src/PxPvdFoundation.h */, + FFFD44021c007f8c44021c00 /* src/PxPvdImpl.h */, + FFFD44021c687f8c44021c68 /* src/PxPvdInternalByteStreams.h */, + FFFD44021cd07f8c44021cd0 /* src/PxPvdMarshalling.h */, + FFFD44021d387f8c44021d38 /* src/PxPvdMemClient.h */, + FFFD44021da07f8c44021da0 /* src/PxPvdObjectModel.h */, + FFFD44021e087f8c44021e08 /* src/PxPvdObjectModelInternalTypeDefs.h */, + FFFD44021e707f8c44021e70 /* src/PxPvdObjectModelInternalTypes.h */, + FFFD44021ed87f8c44021ed8 /* src/PxPvdObjectModelMetaData.h */, + FFFD44021f407f8c44021f40 /* src/PxPvdObjectRegistrar.h */, + FFFD44021fa87f8c44021fa8 /* src/PxPvdProfileZoneClient.h */, + FFFD440220107f8c44022010 /* src/PxPvdUserRenderImpl.h */, + FFFD440220787f8c44022078 /* src/PxPvdUserRenderTypes.h */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB125b5b707fe8125b5b70 /* LowLevel */ = { + FFFB43c513407f8c43c51340 /* LowLevel */ = { isa = PBXGroup; children = ( - FFFB125b91d07fe8125b91d0 /* API Source */, - FFFB125b91f87fe8125b91f8 /* API Includes */, - FFFB125b92207fe8125b9220 /* Software Source */, - FFFB125b92487fe8125b9248 /* Software Includes */, - FFFB125b92707fe8125b9270 /* Common Source */, - FFFB125b92987fe8125b9298 /* Common Includes */, + FFFB43c560107f8c43c56010 /* API Source */, + FFFB43c560387f8c43c56038 /* API Includes */, + FFFB43c560607f8c43c56060 /* Software Source */, + FFFB43c560887f8c43c56088 /* Software Includes */, + FFFB43c560b07f8c43c560b0 /* Common Source */, + FFFB43c560d87f8c43c560d8 /* Common Includes */, ); name = "LowLevel"; sourceTree = "<group>"; }; - FFFB125b91d07fe8125b91d0 /* API Source */ = { + FFFB43c560107f8c43c56010 /* API Source */ = { isa = PBXGroup; children = ( - FFFD125cddd07fe8125cddd0 /* px_globals.cpp */, + FFFD43c54e107f8c43c54e10 /* px_globals.cpp */, ); name = "API Source"; sourceTree = SOURCE_ROOT; }; - FFFB125b91f87fe8125b91f8 /* API Includes */ = { + FFFB43c560387f8c43c56038 /* API Includes */ = { isa = PBXGroup; children = ( - FFFD125ba2d07fe8125ba2d0 /* PxsMaterialCore.h */, - FFFD125ba3387fe8125ba338 /* PxsMaterialManager.h */, - FFFD125ba3a07fe8125ba3a0 /* PxvConfig.h */, - FFFD125ba4087fe8125ba408 /* PxvContext.h */, - FFFD125ba4707fe8125ba470 /* PxvDynamics.h */, - FFFD125ba4d87fe8125ba4d8 /* PxvGeometry.h */, - FFFD125ba5407fe8125ba540 /* PxvGlobals.h */, - FFFD125ba5a87fe8125ba5a8 /* PxvManager.h */, - FFFD125ba6107fe8125ba610 /* PxvSimStats.h */, + FFFD43c573407f8c43c57340 /* PxsMaterialCore.h */, + FFFD43c573a87f8c43c573a8 /* PxsMaterialManager.h */, + FFFD43c574107f8c43c57410 /* PxvConfig.h */, + FFFD43c574787f8c43c57478 /* PxvContext.h */, + FFFD43c574e07f8c43c574e0 /* PxvDynamics.h */, + FFFD43c575487f8c43c57548 /* PxvGeometry.h */, + FFFD43c575b07f8c43c575b0 /* PxvGlobals.h */, + FFFD43c576187f8c43c57618 /* PxvManager.h */, + FFFD43c576807f8c43c57680 /* PxvSimStats.h */, ); name = "API Includes"; sourceTree = SOURCE_ROOT; }; - FFFB125b92207fe8125b9220 /* Software Source */ = { + FFFB43c560607f8c43c56060 /* Software Source */ = { isa = PBXGroup; children = ( - FFFD12133aa07fe812133aa0 /* PxsCCD.cpp */, - FFFD12133b087fe812133b08 /* PxsContactManager.cpp */, - FFFD12133b707fe812133b70 /* PxsContext.cpp */, - FFFD12133bd87fe812133bd8 /* PxsDefaultMemoryManager.cpp */, - FFFD12133c407fe812133c40 /* PxsIslandSim.cpp */, - FFFD12133ca87fe812133ca8 /* PxsMaterialCombiner.cpp */, - FFFD12133d107fe812133d10 /* PxsNphaseImplementationContext.cpp */, - FFFD12133d787fe812133d78 /* PxsSimpleIslandManager.cpp */, + FFFD43c584507f8c43c58450 /* PxsCCD.cpp */, + FFFD43c584b87f8c43c584b8 /* PxsContactManager.cpp */, + FFFD43c585207f8c43c58520 /* PxsContext.cpp */, + FFFD43c585887f8c43c58588 /* PxsDefaultMemoryManager.cpp */, + FFFD43c585f07f8c43c585f0 /* PxsIslandSim.cpp */, + FFFD43c586587f8c43c58658 /* PxsMaterialCombiner.cpp */, + FFFD43c586c07f8c43c586c0 /* PxsNphaseImplementationContext.cpp */, + FFFD43c587287f8c43c58728 /* PxsSimpleIslandManager.cpp */, ); name = "Software Source"; sourceTree = SOURCE_ROOT; }; - FFFB125b92487fe8125b9248 /* Software Includes */ = { + FFFB43c560887f8c43c56088 /* Software Includes */ = { isa = PBXGroup; children = ( - FFFD119af2007fe8119af200 /* PxsBodySim.h */, - FFFD119af2687fe8119af268 /* PxsCCD.h */, - FFFD119af2d07fe8119af2d0 /* PxsContactManager.h */, - FFFD119af3387fe8119af338 /* PxsContactManagerState.h */, - FFFD119af3a07fe8119af3a0 /* PxsContext.h */, - FFFD119af4087fe8119af408 /* PxsDefaultMemoryManager.h */, - FFFD119af4707fe8119af470 /* PxsHeapMemoryAllocator.h */, - FFFD119af4d87fe8119af4d8 /* PxsIncrementalConstraintPartitioning.h */, - FFFD119af5407fe8119af540 /* PxsIslandManagerTypes.h */, - FFFD119af5a87fe8119af5a8 /* PxsIslandSim.h */, - FFFD119af6107fe8119af610 /* PxsKernelWrangler.h */, - FFFD119af6787fe8119af678 /* PxsMaterialCombiner.h */, - FFFD119af6e07fe8119af6e0 /* PxsMemoryManager.h */, - FFFD119af7487fe8119af748 /* PxsNphaseImplementationContext.h */, - FFFD119af7b07fe8119af7b0 /* PxsRigidBody.h */, - FFFD119af8187fe8119af818 /* PxsShapeSim.h */, - FFFD119af8807fe8119af880 /* PxsSimpleIslandManager.h */, - FFFD119af8e87fe8119af8e8 /* PxsSimulationController.h */, - FFFD119af9507fe8119af950 /* PxsTransformCache.h */, - FFFD119af9b87fe8119af9b8 /* PxvNphaseImplementationContext.h */, + FFFD440290007f8c44029000 /* PxsBodySim.h */, + FFFD440290687f8c44029068 /* PxsCCD.h */, + FFFD440290d07f8c440290d0 /* PxsContactManager.h */, + FFFD440291387f8c44029138 /* PxsContactManagerState.h */, + FFFD440291a07f8c440291a0 /* PxsContext.h */, + FFFD440292087f8c44029208 /* PxsDefaultMemoryManager.h */, + FFFD440292707f8c44029270 /* PxsHeapMemoryAllocator.h */, + FFFD440292d87f8c440292d8 /* PxsIncrementalConstraintPartitioning.h */, + FFFD440293407f8c44029340 /* PxsIslandManagerTypes.h */, + FFFD440293a87f8c440293a8 /* PxsIslandSim.h */, + FFFD440294107f8c44029410 /* PxsKernelWrangler.h */, + FFFD440294787f8c44029478 /* PxsMaterialCombiner.h */, + FFFD440294e07f8c440294e0 /* PxsMemoryManager.h */, + FFFD440295487f8c44029548 /* PxsNphaseImplementationContext.h */, + FFFD440295b07f8c440295b0 /* PxsRigidBody.h */, + FFFD440296187f8c44029618 /* PxsShapeSim.h */, + FFFD440296807f8c44029680 /* PxsSimpleIslandManager.h */, + FFFD440296e87f8c440296e8 /* PxsSimulationController.h */, + FFFD440297507f8c44029750 /* PxsTransformCache.h */, + FFFD440297b87f8c440297b8 /* PxvNphaseImplementationContext.h */, ); name = "Software Includes"; sourceTree = SOURCE_ROOT; }; - FFFB125b92707fe8125b9270 /* Common Source */ = { + FFFB43c560b07f8c43c560b0 /* Common Source */ = { isa = PBXGroup; children = ( - FFFD119b56007fe8119b5600 /* collision/PxcContact.cpp */, - FFFD119b56687fe8119b5668 /* pipeline/PxcContactCache.cpp */, - FFFD119b56d07fe8119b56d0 /* pipeline/PxcContactMethodImpl.cpp */, - FFFD119b57387fe8119b5738 /* pipeline/PxcMaterialHeightField.cpp */, - FFFD119b57a07fe8119b57a0 /* pipeline/PxcMaterialMesh.cpp */, - FFFD119b58087fe8119b5808 /* pipeline/PxcMaterialMethodImpl.cpp */, - FFFD119b58707fe8119b5870 /* pipeline/PxcMaterialShape.cpp */, - FFFD119b58d87fe8119b58d8 /* pipeline/PxcNpBatch.cpp */, - FFFD119b59407fe8119b5940 /* pipeline/PxcNpCacheStreamPair.cpp */, - FFFD119b59a87fe8119b59a8 /* pipeline/PxcNpContactPrepShared.cpp */, - FFFD119b5a107fe8119b5a10 /* pipeline/PxcNpMemBlockPool.cpp */, - FFFD119b5a787fe8119b5a78 /* pipeline/PxcNpThreadContext.cpp */, + FFFD4401fa007f8c4401fa00 /* collision/PxcContact.cpp */, + FFFD4401fa687f8c4401fa68 /* pipeline/PxcContactCache.cpp */, + FFFD4401fad07f8c4401fad0 /* pipeline/PxcContactMethodImpl.cpp */, + FFFD4401fb387f8c4401fb38 /* pipeline/PxcMaterialHeightField.cpp */, + FFFD4401fba07f8c4401fba0 /* pipeline/PxcMaterialMesh.cpp */, + FFFD4401fc087f8c4401fc08 /* pipeline/PxcMaterialMethodImpl.cpp */, + FFFD4401fc707f8c4401fc70 /* pipeline/PxcMaterialShape.cpp */, + FFFD4401fcd87f8c4401fcd8 /* pipeline/PxcNpBatch.cpp */, + FFFD4401fd407f8c4401fd40 /* pipeline/PxcNpCacheStreamPair.cpp */, + FFFD4401fda87f8c4401fda8 /* pipeline/PxcNpContactPrepShared.cpp */, + FFFD4401fe107f8c4401fe10 /* pipeline/PxcNpMemBlockPool.cpp */, + FFFD4401fe787f8c4401fe78 /* pipeline/PxcNpThreadContext.cpp */, ); name = "Common Source"; sourceTree = SOURCE_ROOT; }; - FFFB125b92987fe8125b9298 /* Common Includes */ = { + FFFB43c560d87f8c43c560d8 /* Common Includes */ = { isa = PBXGroup; children = ( - FFFD119b5e007fe8119b5e00 /* collision/PxcContactMethodImpl.h */, - FFFD119b5e687fe8119b5e68 /* pipeline/PxcCCDStateStreamPair.h */, - FFFD119b5ed07fe8119b5ed0 /* pipeline/PxcConstraintBlockStream.h */, - FFFD119b5f387fe8119b5f38 /* pipeline/PxcContactCache.h */, - FFFD119b5fa07fe8119b5fa0 /* pipeline/PxcMaterialMethodImpl.h */, - FFFD119b60087fe8119b6008 /* pipeline/PxcNpBatch.h */, - FFFD119b60707fe8119b6070 /* pipeline/PxcNpCache.h */, - FFFD119b60d87fe8119b60d8 /* pipeline/PxcNpCacheStreamPair.h */, - FFFD119b61407fe8119b6140 /* pipeline/PxcNpContactPrepShared.h */, - FFFD119b61a87fe8119b61a8 /* pipeline/PxcNpMemBlockPool.h */, - FFFD119b62107fe8119b6210 /* pipeline/PxcNpThreadContext.h */, - FFFD119b62787fe8119b6278 /* pipeline/PxcNpWorkUnit.h */, - FFFD119b62e07fe8119b62e0 /* pipeline/PxcRigidBody.h */, - FFFD119b63487fe8119b6348 /* utils/PxcScratchAllocator.h */, - FFFD119b63b07fe8119b63b0 /* utils/PxcThreadCoherentCache.h */, + FFFD440282007f8c44028200 /* collision/PxcContactMethodImpl.h */, + FFFD440282687f8c44028268 /* pipeline/PxcCCDStateStreamPair.h */, + FFFD440282d07f8c440282d0 /* pipeline/PxcConstraintBlockStream.h */, + FFFD440283387f8c44028338 /* pipeline/PxcContactCache.h */, + FFFD440283a07f8c440283a0 /* pipeline/PxcMaterialMethodImpl.h */, + FFFD440284087f8c44028408 /* pipeline/PxcNpBatch.h */, + FFFD440284707f8c44028470 /* pipeline/PxcNpCache.h */, + FFFD440284d87f8c440284d8 /* pipeline/PxcNpCacheStreamPair.h */, + FFFD440285407f8c44028540 /* pipeline/PxcNpContactPrepShared.h */, + FFFD440285a87f8c440285a8 /* pipeline/PxcNpMemBlockPool.h */, + FFFD440286107f8c44028610 /* pipeline/PxcNpThreadContext.h */, + FFFD440286787f8c44028678 /* pipeline/PxcNpWorkUnit.h */, + FFFD440286e07f8c440286e0 /* pipeline/PxcRigidBody.h */, + FFFD440287487f8c44028748 /* utils/PxcScratchAllocator.h */, + FFFD440287b07f8c440287b0 /* utils/PxcThreadCoherentCache.h */, ); name = "Common Includes"; sourceTree = SOURCE_ROOT; }; - FFFB1261e8907fe81261e890 /* LowLevelAABB */ = { + FFFB43ef63707f8c43ef6370 /* LowLevelAABB */ = { isa = PBXGroup; children = ( - FFFB1262e5207fe81262e520 /* include */, - FFFB1262e5487fe81262e548 /* src */, + FFFB43f06b607f8c43f06b60 /* include */, + FFFB43f06b887f8c43f06b88 /* src */, ); name = "LowLevelAABB"; sourceTree = "<group>"; }; - FFFB1262e5207fe81262e520 /* include */ = { + FFFB43f06b607f8c43f06b60 /* include */ = { isa = PBXGroup; children = ( - FFFD1262e5707fe81262e570 /* BpAABBManagerTasks.h */, - FFFD1262e5d87fe81262e5d8 /* BpBroadPhase.h */, - FFFD1262e6407fe81262e640 /* BpBroadPhaseUpdate.h */, - FFFD1262e6a87fe81262e6a8 /* BpSimpleAABBManager.h */, + FFFD43f070807f8c43f07080 /* BpAABBManagerTasks.h */, + FFFD43f070e87f8c43f070e8 /* BpBroadPhase.h */, + FFFD43f071507f8c43f07150 /* BpBroadPhaseUpdate.h */, + FFFD43f071b87f8c43f071b8 /* BpSimpleAABBManager.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB1262e5487fe81262e548 /* src */ = { + FFFB43f06b887f8c43f06b88 /* src */ = { isa = PBXGroup; children = ( - FFFD128174007fe812817400 /* BpBroadPhaseMBP.h */, - FFFD128174687fe812817468 /* BpBroadPhaseMBPCommon.h */, - FFFD128174d07fe8128174d0 /* BpBroadPhaseSap.h */, - FFFD128175387fe812817538 /* BpBroadPhaseSapAux.h */, - FFFD128175a07fe8128175a0 /* BpMBPTasks.h */, - FFFD128176087fe812817608 /* BpSAPTasks.h */, - FFFD128176707fe812817670 /* BpBroadPhase.cpp */, - FFFD128176d87fe8128176d8 /* BpBroadPhaseMBP.cpp */, - FFFD128177407fe812817740 /* BpBroadPhaseSap.cpp */, - FFFD128177a87fe8128177a8 /* BpBroadPhaseSapAux.cpp */, - FFFD128178107fe812817810 /* BpMBPTasks.cpp */, - FFFD128178787fe812817878 /* BpSAPTasks.cpp */, - FFFD128178e07fe8128178e0 /* BpSimpleAABBManager.cpp */, + FFFD4481fe007f8c4481fe00 /* BpBroadPhaseMBP.h */, + FFFD4481fe687f8c4481fe68 /* BpBroadPhaseMBPCommon.h */, + FFFD4481fed07f8c4481fed0 /* BpBroadPhaseSap.h */, + FFFD4481ff387f8c4481ff38 /* BpBroadPhaseSapAux.h */, + FFFD4481ffa07f8c4481ffa0 /* BpMBPTasks.h */, + FFFD448200087f8c44820008 /* BpSAPTasks.h */, + FFFD448200707f8c44820070 /* BpBroadPhase.cpp */, + FFFD448200d87f8c448200d8 /* BpBroadPhaseMBP.cpp */, + FFFD448201407f8c44820140 /* BpBroadPhaseSap.cpp */, + FFFD448201a87f8c448201a8 /* BpBroadPhaseSapAux.cpp */, + FFFD448202107f8c44820210 /* BpMBPTasks.cpp */, + FFFD448202787f8c44820278 /* BpSAPTasks.cpp */, + FFFD448202e07f8c448202e0 /* BpSimpleAABBManager.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB125e9ce07fe8125e9ce0 /* LowLevelDynamics */ = { + FFFB43c7c3807f8c43c7c380 /* LowLevelDynamics */ = { isa = PBXGroup; children = ( - FFFB125ef1f07fe8125ef1f0 /* Dynamics Source */, - FFFB125ef2187fe8125ef218 /* Dynamics Includes */, - FFFB125ef2407fe8125ef240 /* Dynamics Internal Includes */, + FFFB43c6d4307f8c43c6d430 /* Dynamics Source */, + FFFB43c6d4587f8c43c6d458 /* Dynamics Includes */, + FFFB43c6d4807f8c43c6d480 /* Dynamics Internal Includes */, ); name = "LowLevelDynamics"; sourceTree = "<group>"; }; - FFFB125ef1f07fe8125ef1f0 /* Dynamics Source */ = { + FFFB43c6d4307f8c43c6d430 /* Dynamics Source */ = { isa = PBXGroup; children = ( - FFFD119bfa007fe8119bfa00 /* DyArticulation.cpp */, - FFFD119bfa687fe8119bfa68 /* DyArticulationContactPrep.cpp */, - FFFD119bfad07fe8119bfad0 /* DyArticulationContactPrepPF.cpp */, - FFFD119bfb387fe8119bfb38 /* DyArticulationHelper.cpp */, - FFFD119bfba07fe8119bfba0 /* DyArticulationSIMD.cpp */, - FFFD119bfc087fe8119bfc08 /* DyArticulationScalar.cpp */, - FFFD119bfc707fe8119bfc70 /* DyConstraintPartition.cpp */, - FFFD119bfcd87fe8119bfcd8 /* DyConstraintSetup.cpp */, - FFFD119bfd407fe8119bfd40 /* DyConstraintSetupBlock.cpp */, - FFFD119bfda87fe8119bfda8 /* DyContactPrep.cpp */, - FFFD119bfe107fe8119bfe10 /* DyContactPrep4.cpp */, - FFFD119bfe787fe8119bfe78 /* DyContactPrep4PF.cpp */, - FFFD119bfee07fe8119bfee0 /* DyContactPrepPF.cpp */, - FFFD119bff487fe8119bff48 /* DyDynamics.cpp */, - FFFD119bffb07fe8119bffb0 /* DyFrictionCorrelation.cpp */, - FFFD119c00187fe8119c0018 /* DyRigidBodyToSolverBody.cpp */, - FFFD119c00807fe8119c0080 /* DySolverConstraints.cpp */, - FFFD119c00e87fe8119c00e8 /* DySolverConstraintsBlock.cpp */, - FFFD119c01507fe8119c0150 /* DySolverControl.cpp */, - FFFD119c01b87fe8119c01b8 /* DySolverControlPF.cpp */, - FFFD119c02207fe8119c0220 /* DySolverPFConstraints.cpp */, - FFFD119c02887fe8119c0288 /* DySolverPFConstraintsBlock.cpp */, - FFFD119c02f07fe8119c02f0 /* DyThreadContext.cpp */, - FFFD119c03587fe8119c0358 /* DyThresholdTable.cpp */, + FFFD44031e007f8c44031e00 /* DyArticulation.cpp */, + FFFD44031e687f8c44031e68 /* DyArticulationContactPrep.cpp */, + FFFD44031ed07f8c44031ed0 /* DyArticulationContactPrepPF.cpp */, + FFFD44031f387f8c44031f38 /* DyArticulationHelper.cpp */, + FFFD44031fa07f8c44031fa0 /* DyArticulationSIMD.cpp */, + FFFD440320087f8c44032008 /* DyArticulationScalar.cpp */, + FFFD440320707f8c44032070 /* DyConstraintPartition.cpp */, + FFFD440320d87f8c440320d8 /* DyConstraintSetup.cpp */, + FFFD440321407f8c44032140 /* DyConstraintSetupBlock.cpp */, + FFFD440321a87f8c440321a8 /* DyContactPrep.cpp */, + FFFD440322107f8c44032210 /* DyContactPrep4.cpp */, + FFFD440322787f8c44032278 /* DyContactPrep4PF.cpp */, + FFFD440322e07f8c440322e0 /* DyContactPrepPF.cpp */, + FFFD440323487f8c44032348 /* DyDynamics.cpp */, + FFFD440323b07f8c440323b0 /* DyFrictionCorrelation.cpp */, + FFFD440324187f8c44032418 /* DyRigidBodyToSolverBody.cpp */, + FFFD440324807f8c44032480 /* DySolverConstraints.cpp */, + FFFD440324e87f8c440324e8 /* DySolverConstraintsBlock.cpp */, + FFFD440325507f8c44032550 /* DySolverControl.cpp */, + FFFD440325b87f8c440325b8 /* DySolverControlPF.cpp */, + FFFD440326207f8c44032620 /* DySolverPFConstraints.cpp */, + FFFD440326887f8c44032688 /* DySolverPFConstraintsBlock.cpp */, + FFFD440326f07f8c440326f0 /* DyThreadContext.cpp */, + FFFD440327587f8c44032758 /* DyThresholdTable.cpp */, ); name = "Dynamics Source"; sourceTree = SOURCE_ROOT; }; - FFFB125ef2187fe8125ef218 /* Dynamics Includes */ = { + FFFB43c6d4587f8c43c6d458 /* Dynamics Includes */ = { isa = PBXGroup; children = ( - FFFD125e22f07fe8125e22f0 /* DyArticulation.h */, - FFFD125e23587fe8125e2358 /* DyConstraint.h */, - FFFD125e23c07fe8125e23c0 /* DyConstraintWriteBack.h */, - FFFD125e24287fe8125e2428 /* DyContext.h */, - FFFD125e24907fe8125e2490 /* DyGpuAPI.h */, - FFFD125e24f87fe8125e24f8 /* DySleepingConfigulation.h */, - FFFD125e25607fe8125e2560 /* DyThresholdTable.h */, + FFFD43c7bd907f8c43c7bd90 /* DyArticulation.h */, + FFFD43c7bdf87f8c43c7bdf8 /* DyConstraint.h */, + FFFD43c7be607f8c43c7be60 /* DyConstraintWriteBack.h */, + FFFD43c7bec87f8c43c7bec8 /* DyContext.h */, + FFFD43c7bf307f8c43c7bf30 /* DyGpuAPI.h */, + FFFD43c7bf987f8c43c7bf98 /* DySleepingConfigulation.h */, + FFFD43c7c0007f8c43c7c000 /* DyThresholdTable.h */, ); name = "Dynamics Includes"; sourceTree = SOURCE_ROOT; }; - FFFB125ef2407fe8125ef240 /* Dynamics Internal Includes */ = { + FFFB43c6d4807f8c43c6d480 /* Dynamics Internal Includes */ = { isa = PBXGroup; children = ( - FFFD119c0c007fe8119c0c00 /* DyArticulationContactPrep.h */, - FFFD119c0c687fe8119c0c68 /* DyArticulationFnsDebug.h */, - FFFD119c0cd07fe8119c0cd0 /* DyArticulationFnsScalar.h */, - FFFD119c0d387fe8119c0d38 /* DyArticulationFnsSimd.h */, - FFFD119c0da07fe8119c0da0 /* DyArticulationHelper.h */, - FFFD119c0e087fe8119c0e08 /* DyArticulationPImpl.h */, - FFFD119c0e707fe8119c0e70 /* DyArticulationReference.h */, - FFFD119c0ed87fe8119c0ed8 /* DyArticulationScalar.h */, - FFFD119c0f407fe8119c0f40 /* DyArticulationUtils.h */, - FFFD119c0fa87fe8119c0fa8 /* DyBodyCoreIntegrator.h */, - FFFD119c10107fe8119c1010 /* DyConstraintPartition.h */, - FFFD119c10787fe8119c1078 /* DyConstraintPrep.h */, - FFFD119c10e07fe8119c10e0 /* DyContactPrep.h */, - FFFD119c11487fe8119c1148 /* DyContactPrepShared.h */, - FFFD119c11b07fe8119c11b0 /* DyContactReduction.h */, - FFFD119c12187fe8119c1218 /* DyCorrelationBuffer.h */, - FFFD119c12807fe8119c1280 /* DyDynamics.h */, - FFFD119c12e87fe8119c12e8 /* DyFrictionPatch.h */, - FFFD119c13507fe8119c1350 /* DyFrictionPatchStreamPair.h */, - FFFD119c13b87fe8119c13b8 /* DySolverBody.h */, - FFFD119c14207fe8119c1420 /* DySolverConstraint1D.h */, - FFFD119c14887fe8119c1488 /* DySolverConstraint1D4.h */, - FFFD119c14f07fe8119c14f0 /* DySolverConstraintDesc.h */, - FFFD119c15587fe8119c1558 /* DySolverConstraintExtShared.h */, - FFFD119c15c07fe8119c15c0 /* DySolverConstraintTypes.h */, - FFFD119c16287fe8119c1628 /* DySolverConstraintsShared.h */, - FFFD119c16907fe8119c1690 /* DySolverContact.h */, - FFFD119c16f87fe8119c16f8 /* DySolverContact4.h */, - FFFD119c17607fe8119c1760 /* DySolverContactPF.h */, - FFFD119c17c87fe8119c17c8 /* DySolverContactPF4.h */, - FFFD119c18307fe8119c1830 /* DySolverContext.h */, - FFFD119c18987fe8119c1898 /* DySolverControl.h */, - FFFD119c19007fe8119c1900 /* DySolverControlPF.h */, - FFFD119c19687fe8119c1968 /* DySolverCore.h */, - FFFD119c19d07fe8119c19d0 /* DySolverExt.h */, - FFFD119c1a387fe8119c1a38 /* DySpatial.h */, - FFFD119c1aa07fe8119c1aa0 /* DyThreadContext.h */, + FFFD440330007f8c44033000 /* DyArticulationContactPrep.h */, + FFFD440330687f8c44033068 /* DyArticulationFnsDebug.h */, + FFFD440330d07f8c440330d0 /* DyArticulationFnsScalar.h */, + FFFD440331387f8c44033138 /* DyArticulationFnsSimd.h */, + FFFD440331a07f8c440331a0 /* DyArticulationHelper.h */, + FFFD440332087f8c44033208 /* DyArticulationPImpl.h */, + FFFD440332707f8c44033270 /* DyArticulationReference.h */, + FFFD440332d87f8c440332d8 /* DyArticulationScalar.h */, + FFFD440333407f8c44033340 /* DyArticulationUtils.h */, + FFFD440333a87f8c440333a8 /* DyBodyCoreIntegrator.h */, + FFFD440334107f8c44033410 /* DyConstraintPartition.h */, + FFFD440334787f8c44033478 /* DyConstraintPrep.h */, + FFFD440334e07f8c440334e0 /* DyContactPrep.h */, + FFFD440335487f8c44033548 /* DyContactPrepShared.h */, + FFFD440335b07f8c440335b0 /* DyContactReduction.h */, + FFFD440336187f8c44033618 /* DyCorrelationBuffer.h */, + FFFD440336807f8c44033680 /* DyDynamics.h */, + FFFD440336e87f8c440336e8 /* DyFrictionPatch.h */, + FFFD440337507f8c44033750 /* DyFrictionPatchStreamPair.h */, + FFFD440337b87f8c440337b8 /* DySolverBody.h */, + FFFD440338207f8c44033820 /* DySolverConstraint1D.h */, + FFFD440338887f8c44033888 /* DySolverConstraint1D4.h */, + FFFD440338f07f8c440338f0 /* DySolverConstraintDesc.h */, + FFFD440339587f8c44033958 /* DySolverConstraintExtShared.h */, + FFFD440339c07f8c440339c0 /* DySolverConstraintTypes.h */, + FFFD44033a287f8c44033a28 /* DySolverConstraintsShared.h */, + FFFD44033a907f8c44033a90 /* DySolverContact.h */, + FFFD44033af87f8c44033af8 /* DySolverContact4.h */, + FFFD44033b607f8c44033b60 /* DySolverContactPF.h */, + FFFD44033bc87f8c44033bc8 /* DySolverContactPF4.h */, + FFFD44033c307f8c44033c30 /* DySolverContext.h */, + FFFD44033c987f8c44033c98 /* DySolverControl.h */, + FFFD44033d007f8c44033d00 /* DySolverControlPF.h */, + FFFD44033d687f8c44033d68 /* DySolverCore.h */, + FFFD44033dd07f8c44033dd0 /* DySolverExt.h */, + FFFD44033e387f8c44033e38 /* DySpatial.h */, + FFFD44033ea07f8c44033ea0 /* DyThreadContext.h */, ); name = "Dynamics Internal Includes"; sourceTree = SOURCE_ROOT; }; - FFFB130090807fe813009080 /* LowLevelCloth */ = { + FFFB43ca21407f8c43ca2140 /* LowLevelCloth */ = { isa = PBXGroup; children = ( - FFFB1300b2907fe81300b290 /* include */, - FFFB1300b2b87fe81300b2b8 /* src */, + FFFB43ca6df07f8c43ca6df0 /* include */, + FFFB43ca6e187f8c43ca6e18 /* src */, ); name = "LowLevelCloth"; sourceTree = "<group>"; }; - FFFB1300b2907fe81300b290 /* include */ = { + FFFB43ca6df07f8c43ca6df0 /* include */ = { isa = PBXGroup; children = ( - FFFD1300ca507fe81300ca50 /* Cloth.h */, - FFFD1300cab87fe81300cab8 /* Fabric.h */, - FFFD1300cb207fe81300cb20 /* Factory.h */, - FFFD1300cb887fe81300cb88 /* PhaseConfig.h */, - FFFD1300cbf07fe81300cbf0 /* Range.h */, - FFFD1300cc587fe81300cc58 /* Solver.h */, - FFFD1300ccc07fe81300ccc0 /* Types.h */, + FFFD43c9ef007f8c43c9ef00 /* Cloth.h */, + FFFD43c9ef687f8c43c9ef68 /* Fabric.h */, + FFFD43c9efd07f8c43c9efd0 /* Factory.h */, + FFFD43c9f0387f8c43c9f038 /* PhaseConfig.h */, + FFFD43c9f0a07f8c43c9f0a0 /* Range.h */, + FFFD43c9f1087f8c43c9f108 /* Solver.h */, + FFFD43c9f1707f8c43c9f170 /* Types.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB1300b2b87fe81300b2b8 /* src */ = { + FFFB43ca6e187f8c43ca6e18 /* src */ = { isa = PBXGroup; children = ( - FFFD13808e007fe813808e00 /* Allocator.h */, - FFFD13808e687fe813808e68 /* Array.h */, - FFFD13808ed07fe813808ed0 /* BoundingBox.h */, - FFFD13808f387fe813808f38 /* ClothBase.h */, - FFFD13808fa07fe813808fa0 /* ClothImpl.h */, - FFFD138090087fe813809008 /* IndexPair.h */, - FFFD138090707fe813809070 /* IterationState.h */, - FFFD138090d87fe8138090d8 /* MovingAverage.h */, - FFFD138091407fe813809140 /* PointInterpolator.h */, - FFFD138091a87fe8138091a8 /* Simd.h */, - FFFD138092107fe813809210 /* StackAllocator.h */, - FFFD138092787fe813809278 /* SwCloth.h */, - FFFD138092e07fe8138092e0 /* SwClothData.h */, - FFFD138093487fe813809348 /* SwCollision.h */, - FFFD138093b07fe8138093b0 /* SwCollisionHelpers.h */, - FFFD138094187fe813809418 /* SwFabric.h */, - FFFD138094807fe813809480 /* SwFactory.h */, - FFFD138094e87fe8138094e8 /* SwInterCollision.h */, - FFFD138095507fe813809550 /* SwSelfCollision.h */, - FFFD138095b87fe8138095b8 /* SwSolver.h */, - FFFD138096207fe813809620 /* SwSolverKernel.h */, - FFFD138096887fe813809688 /* TripletScheduler.h */, - FFFD138096f07fe8138096f0 /* Vec4T.h */, - FFFD138097587fe813809758 /* Allocator.cpp */, - FFFD138097c07fe8138097c0 /* Factory.cpp */, - FFFD138098287fe813809828 /* PhaseConfig.cpp */, - FFFD138098907fe813809890 /* SwCloth.cpp */, - FFFD138098f87fe8138098f8 /* SwClothData.cpp */, - FFFD138099607fe813809960 /* SwCollision.cpp */, - FFFD138099c87fe8138099c8 /* SwFabric.cpp */, - FFFD13809a307fe813809a30 /* SwFactory.cpp */, - FFFD13809a987fe813809a98 /* SwInterCollision.cpp */, - FFFD13809b007fe813809b00 /* SwSelfCollision.cpp */, - FFFD13809b687fe813809b68 /* SwSolver.cpp */, - FFFD13809bd07fe813809bd0 /* SwSolverKernel.cpp */, - FFFD13809c387fe813809c38 /* TripletScheduler.cpp */, + FFFD4403c8007f8c4403c800 /* Allocator.h */, + FFFD4403c8687f8c4403c868 /* Array.h */, + FFFD4403c8d07f8c4403c8d0 /* BoundingBox.h */, + FFFD4403c9387f8c4403c938 /* ClothBase.h */, + FFFD4403c9a07f8c4403c9a0 /* ClothImpl.h */, + FFFD4403ca087f8c4403ca08 /* IndexPair.h */, + FFFD4403ca707f8c4403ca70 /* IterationState.h */, + FFFD4403cad87f8c4403cad8 /* MovingAverage.h */, + FFFD4403cb407f8c4403cb40 /* PointInterpolator.h */, + FFFD4403cba87f8c4403cba8 /* Simd.h */, + FFFD4403cc107f8c4403cc10 /* StackAllocator.h */, + FFFD4403cc787f8c4403cc78 /* SwCloth.h */, + FFFD4403cce07f8c4403cce0 /* SwClothData.h */, + FFFD4403cd487f8c4403cd48 /* SwCollision.h */, + FFFD4403cdb07f8c4403cdb0 /* SwCollisionHelpers.h */, + FFFD4403ce187f8c4403ce18 /* SwFabric.h */, + FFFD4403ce807f8c4403ce80 /* SwFactory.h */, + FFFD4403cee87f8c4403cee8 /* SwInterCollision.h */, + FFFD4403cf507f8c4403cf50 /* SwSelfCollision.h */, + FFFD4403cfb87f8c4403cfb8 /* SwSolver.h */, + FFFD4403d0207f8c4403d020 /* SwSolverKernel.h */, + FFFD4403d0887f8c4403d088 /* TripletScheduler.h */, + FFFD4403d0f07f8c4403d0f0 /* Vec4T.h */, + FFFD4403d1587f8c4403d158 /* Allocator.cpp */, + FFFD4403d1c07f8c4403d1c0 /* Factory.cpp */, + FFFD4403d2287f8c4403d228 /* PhaseConfig.cpp */, + FFFD4403d2907f8c4403d290 /* SwCloth.cpp */, + FFFD4403d2f87f8c4403d2f8 /* SwClothData.cpp */, + FFFD4403d3607f8c4403d360 /* SwCollision.cpp */, + FFFD4403d3c87f8c4403d3c8 /* SwFabric.cpp */, + FFFD4403d4307f8c4403d430 /* SwFactory.cpp */, + FFFD4403d4987f8c4403d498 /* SwInterCollision.cpp */, + FFFD4403d5007f8c4403d500 /* SwSelfCollision.cpp */, + FFFD4403d5687f8c4403d568 /* SwSolver.cpp */, + FFFD4403d5d07f8c4403d5d0 /* SwSolverKernel.cpp */, + FFFD4403d6387f8c4403d638 /* TripletScheduler.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB12708bc07fe812708bc0 /* LowLevelParticles */ = { + FFFB43f22f607f8c43f22f60 /* LowLevelParticles */ = { isa = PBXGroup; children = ( - FFFB1270d5c07fe81270d5c0 /* include */, - FFFB1270d5e87fe81270d5e8 /* src */, + FFFB43f1a4c07f8c43f1a4c0 /* include */, + FFFB43f1a4e87f8c43f1a4e8 /* src */, ); name = "LowLevelParticles"; sourceTree = "<group>"; }; - FFFB1270d5c07fe81270d5c0 /* include */ = { + FFFB43f1a4c07f8c43f1a4c0 /* include */ = { isa = PBXGroup; children = ( - FFFD119c90007fe8119c9000 /* PtBodyTransformVault.h */, - FFFD119c90687fe8119c9068 /* PtContext.h */, - FFFD119c90d07fe8119c90d0 /* PtGridCellVector.h */, - FFFD119c91387fe8119c9138 /* PtParticle.h */, - FFFD119c91a07fe8119c91a0 /* PtParticleContactManagerStream.h */, - FFFD119c92087fe8119c9208 /* PtParticleData.h */, - FFFD119c92707fe8119c9270 /* PtParticleShape.h */, - FFFD119c92d87fe8119c92d8 /* PtParticleSystemCore.h */, - FFFD119c93407fe8119c9340 /* PtParticleSystemFlags.h */, - FFFD119c93a87fe8119c93a8 /* PtParticleSystemSim.h */, + FFFD448252007f8c44825200 /* PtBodyTransformVault.h */, + FFFD448252687f8c44825268 /* PtContext.h */, + FFFD448252d07f8c448252d0 /* PtGridCellVector.h */, + FFFD448253387f8c44825338 /* PtParticle.h */, + FFFD448253a07f8c448253a0 /* PtParticleContactManagerStream.h */, + FFFD448254087f8c44825408 /* PtParticleData.h */, + FFFD448254707f8c44825470 /* PtParticleShape.h */, + FFFD448254d87f8c448254d8 /* PtParticleSystemCore.h */, + FFFD448255407f8c44825540 /* PtParticleSystemFlags.h */, + FFFD448255a87f8c448255a8 /* PtParticleSystemSim.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB1270d5e87fe81270d5e8 /* src */ = { + FFFB43f1a4e87f8c43f1a4e8 /* src */ = { isa = PBXGroup; children = ( - FFFD119ca6007fe8119ca600 /* PtBatcher.h */, - FFFD119ca6687fe8119ca668 /* PtCollision.h */, - FFFD119ca6d07fe8119ca6d0 /* PtCollisionData.h */, - FFFD119ca7387fe8119ca738 /* PtCollisionHelper.h */, - FFFD119ca7a07fe8119ca7a0 /* PtCollisionMethods.h */, - FFFD119ca8087fe8119ca808 /* PtCollisionParameters.h */, - FFFD119ca8707fe8119ca870 /* PtConfig.h */, - FFFD119ca8d87fe8119ca8d8 /* PtConstants.h */, - FFFD119ca9407fe8119ca940 /* PtContextCpu.h */, - FFFD119ca9a87fe8119ca9a8 /* PtDynamicHelper.h */, - FFFD119caa107fe8119caa10 /* PtDynamics.h */, - FFFD119caa787fe8119caa78 /* PtDynamicsKernels.h */, - FFFD119caae07fe8119caae0 /* PtDynamicsParameters.h */, - FFFD119cab487fe8119cab48 /* PtDynamicsTempBuffers.h */, - FFFD119cabb07fe8119cabb0 /* PtHeightFieldAabbTest.h */, - FFFD119cac187fe8119cac18 /* PtPacketSections.h */, - FFFD119cac807fe8119cac80 /* PtParticleCell.h */, - FFFD119cace87fe8119cace8 /* PtParticleOpcodeCache.h */, - FFFD119cad507fe8119cad50 /* PtParticleShapeCpu.h */, - FFFD119cadb87fe8119cadb8 /* PtParticleSystemSimCpu.h */, - FFFD119cae207fe8119cae20 /* PtSpatialHash.h */, - FFFD119cae887fe8119cae88 /* PtSpatialHashHelper.h */, - FFFD119caef07fe8119caef0 /* PtTwoWayData.h */, - FFFD119caf587fe8119caf58 /* PtBatcher.cpp */, - FFFD119cafc07fe8119cafc0 /* PtBodyTransformVault.cpp */, - FFFD119cb0287fe8119cb028 /* PtCollision.cpp */, - FFFD119cb0907fe8119cb090 /* PtCollisionBox.cpp */, - FFFD119cb0f87fe8119cb0f8 /* PtCollisionCapsule.cpp */, - FFFD119cb1607fe8119cb160 /* PtCollisionConvex.cpp */, - FFFD119cb1c87fe8119cb1c8 /* PtCollisionMesh.cpp */, - FFFD119cb2307fe8119cb230 /* PtCollisionPlane.cpp */, - FFFD119cb2987fe8119cb298 /* PtCollisionSphere.cpp */, - FFFD119cb3007fe8119cb300 /* PtContextCpu.cpp */, - FFFD119cb3687fe8119cb368 /* PtDynamics.cpp */, - FFFD119cb3d07fe8119cb3d0 /* PtParticleData.cpp */, - FFFD119cb4387fe8119cb438 /* PtParticleShapeCpu.cpp */, - FFFD119cb4a07fe8119cb4a0 /* PtParticleSystemSimCpu.cpp */, - FFFD119cb5087fe8119cb508 /* PtSpatialHash.cpp */, - FFFD119cb5707fe8119cb570 /* PtSpatialLocalHash.cpp */, + FFFD4482fa007f8c4482fa00 /* PtBatcher.h */, + FFFD4482fa687f8c4482fa68 /* PtCollision.h */, + FFFD4482fad07f8c4482fad0 /* PtCollisionData.h */, + FFFD4482fb387f8c4482fb38 /* PtCollisionHelper.h */, + FFFD4482fba07f8c4482fba0 /* PtCollisionMethods.h */, + FFFD4482fc087f8c4482fc08 /* PtCollisionParameters.h */, + FFFD4482fc707f8c4482fc70 /* PtConfig.h */, + FFFD4482fcd87f8c4482fcd8 /* PtConstants.h */, + FFFD4482fd407f8c4482fd40 /* PtContextCpu.h */, + FFFD4482fda87f8c4482fda8 /* PtDynamicHelper.h */, + FFFD4482fe107f8c4482fe10 /* PtDynamics.h */, + FFFD4482fe787f8c4482fe78 /* PtDynamicsKernels.h */, + FFFD4482fee07f8c4482fee0 /* PtDynamicsParameters.h */, + FFFD4482ff487f8c4482ff48 /* PtDynamicsTempBuffers.h */, + FFFD4482ffb07f8c4482ffb0 /* PtHeightFieldAabbTest.h */, + FFFD448300187f8c44830018 /* PtPacketSections.h */, + FFFD448300807f8c44830080 /* PtParticleCell.h */, + FFFD448300e87f8c448300e8 /* PtParticleOpcodeCache.h */, + FFFD448301507f8c44830150 /* PtParticleShapeCpu.h */, + FFFD448301b87f8c448301b8 /* PtParticleSystemSimCpu.h */, + FFFD448302207f8c44830220 /* PtSpatialHash.h */, + FFFD448302887f8c44830288 /* PtSpatialHashHelper.h */, + FFFD448302f07f8c448302f0 /* PtTwoWayData.h */, + FFFD448303587f8c44830358 /* PtBatcher.cpp */, + FFFD448303c07f8c448303c0 /* PtBodyTransformVault.cpp */, + FFFD448304287f8c44830428 /* PtCollision.cpp */, + FFFD448304907f8c44830490 /* PtCollisionBox.cpp */, + FFFD448304f87f8c448304f8 /* PtCollisionCapsule.cpp */, + FFFD448305607f8c44830560 /* PtCollisionConvex.cpp */, + FFFD448305c87f8c448305c8 /* PtCollisionMesh.cpp */, + FFFD448306307f8c44830630 /* PtCollisionPlane.cpp */, + FFFD448306987f8c44830698 /* PtCollisionSphere.cpp */, + FFFD448307007f8c44830700 /* PtContextCpu.cpp */, + FFFD448307687f8c44830768 /* PtDynamics.cpp */, + FFFD448307d07f8c448307d0 /* PtParticleData.cpp */, + FFFD448308387f8c44830838 /* PtParticleShapeCpu.cpp */, + FFFD448308a07f8c448308a0 /* PtParticleSystemSimCpu.cpp */, + FFFD448309087f8c44830908 /* PtSpatialHash.cpp */, + FFFD448309707f8c44830970 /* PtSpatialLocalHash.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB132a0da07fe8132a0da0 /* PxTask */ = { + FFFB43cdb0507f8c43cdb050 /* PxTask */ = { isa = PBXGroup; children = ( - FFFB132814207fe813281420 /* include */, - FFFB132814487fe813281448 /* src */, + FFFB43cc1a507f8c43cc1a50 /* include */, + FFFB43cc1a787f8c43cc1a78 /* src */, ); name = "PxTask"; sourceTree = "<group>"; }; - FFFB132814207fe813281420 /* include */ = { + FFFB43cc1a507f8c43cc1a50 /* include */ = { isa = PBXGroup; children = ( - FFFD132815307fe813281530 /* PxCpuDispatcher.h */, - FFFD132815987fe813281598 /* PxGpuDispatcher.h */, - FFFD132816007fe813281600 /* PxGpuTask.h */, - FFFD132816687fe813281668 /* PxTask.h */, - FFFD132816d07fe8132816d0 /* PxTaskDefine.h */, - FFFD132817387fe813281738 /* PxTaskManager.h */, + FFFD43cc24d07f8c43cc24d0 /* PxCpuDispatcher.h */, + FFFD43cc25387f8c43cc2538 /* PxGpuDispatcher.h */, + FFFD43cc25a07f8c43cc25a0 /* PxGpuTask.h */, + FFFD43cc26087f8c43cc2608 /* PxTask.h */, + FFFD43cc26707f8c43cc2670 /* PxTaskDefine.h */, + FFFD43cc26d87f8c43cc26d8 /* PxTaskManager.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB132814487fe813281448 /* src */ = { + FFFB43cc1a787f8c43cc1a78 /* src */ = { isa = PBXGroup; children = ( - FFFD132817a07fe8132817a0 /* src/TaskManager.cpp */, + FFFD43cc1af07f8c43cc1af0 /* src/TaskManager.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB1265b4d07fe81265b4d0 /* PsFastXml */ = { + FFFB455011f07f8c455011f0 /* PsFastXml */ = { isa = PBXGroup; children = ( - FFFB126395307fe812639530 /* include */, - FFFB126395587fe812639558 /* src */, + FFFB455018007f8c45501800 /* include */, + FFFB455018287f8c45501828 /* src */, ); name = "PsFastXml"; sourceTree = "<group>"; }; - FFFB126395307fe812639530 /* include */ = { + FFFB455018007f8c45501800 /* include */ = { isa = PBXGroup; children = ( - FFFD126394307fe812639430 /* PsFastXml.h */, + FFFD455019907f8c45501990 /* PsFastXml.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB126395587fe812639558 /* src */ = { + FFFB455018287f8c45501828 /* src */ = { isa = PBXGroup; children = ( - FFFD1263f1107fe81263f110 /* PsFastXml.cpp */, + FFFD45501a907f8c45501a90 /* PsFastXml.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; @@ -4991,61 +4991,61 @@ /* End PBXGroup section */ /* Begin PBXNativeTarget section */ - FFFA1266ac007fe81266ac00 /* PhysX */ = { + FFFA45504df07f8c45504df0 /* PhysX */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF61266ac007fe81266ac00 /* Build configuration list for PBXNativeTarget "PhysX" */; + buildConfigurationList = FFF645504df07f8c45504df0 /* Build configuration list for PBXNativeTarget "PhysX" */; buildPhases = ( - FFF21266ac007fe81266ac00, - FFF81266ac007fe81266ac00, - FFFC1266ac007fe81266ac00, + FFF245504df07f8c45504df0, + FFF845504df07f8c45504df0, + FFFC45504df07f8c45504df0, ); buildRules = ( ); dependencies = ( - FFF4126713b07fe8126713b0, /* LowLevel */ - FFF4126714107fe812671410, /* LowLevelAABB */ - FFF412670fd07fe812670fd0, /* LowLevelCloth */ - FFF412670f707fe812670f70, /* LowLevelDynamics */ - FFF4126710307fe812671030, /* LowLevelParticles */ - FFF4126750107fe812675010, /* PhysXCommon */ - FFF41266aef07fe81266aef0, /* PxFoundation */ - FFF41266aba07fe81266aba0, /* PxPvdSDK */ - FFF4126754d07fe8126754d0, /* PxTask */ - FFF4126754407fe812675440, /* SceneQuery */ - FFF4126754a07fe8126754a0, /* SimulationController */ + FFF44550e5907f8c4550e590, /* LowLevel */ + FFF445507da07f8c45507da0, /* LowLevelAABB */ + FFF44550d7907f8c4550d790, /* LowLevelCloth */ + FFF445507e007f8c45507e00, /* LowLevelDynamics */ + FFF44550d7f07f8c4550d7f0, /* LowLevelParticles */ + FFF44550e5307f8c4550e530, /* PhysXCommon */ + FFF445504dc07f8c45504dc0, /* PxFoundation */ + FFF445504d607f8c45504d60, /* PxPvdSDK */ + FFF44550dcb07f8c4550dcb0, /* PxTask */ + FFF44550dc207f8c4550dc20, /* SceneQuery */ + FFF44550dc807f8c4550dc80, /* SimulationController */ ); name = "PhysX"; productName = "PhysX"; - productReference = FFFD1266ac007fe81266ac00 /* PhysX */; + productReference = FFFD45504df07f8c45504df0 /* PhysX */; productType = "com.apple.product-type.library.static"; }; - FFFA126754e07fe8126754e0 /* PhysXCharacterKinematic */ = { + FFFA4550d8c07f8c4550d8c0 /* PhysXCharacterKinematic */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6126754e07fe8126754e0 /* Build configuration list for PBXNativeTarget "PhysXCharacterKinematic" */; + buildConfigurationList = FFF64550d8c07f8c4550d8c0 /* Build configuration list for PBXNativeTarget "PhysXCharacterKinematic" */; buildPhases = ( - FFF2126754e07fe8126754e0, - FFF8126754e07fe8126754e0, - FFFC126754e07fe8126754e0, + FFF24550d8c07f8c4550d8c0, + FFF84550d8c07f8c4550d8c0, + FFFC4550d8c07f8c4550d8c0, ); buildRules = ( ); dependencies = ( - FFF412677ec07fe812677ec0, /* PhysXCommon */ - FFF412675e107fe812675e10, /* PhysXExtensions */ - FFF4126724907fe812672490, /* PxFoundation */ + FFF4455132f07f8c455132f0, /* PhysXCommon */ + FFF4455141207f8c45514120, /* PhysXExtensions */ + FFF4455149607f8c45514960, /* PxFoundation */ ); name = "PhysXCharacterKinematic"; productName = "PhysXCharacterKinematic"; - productReference = FFFD126754e07fe8126754e0 /* PhysXCharacterKinematic */; + productReference = FFFD4550d8c07f8c4550d8c0 /* PhysXCharacterKinematic */; productType = "com.apple.product-type.library.static"; }; - FFFA126728307fe812672830 /* PhysXVehicle */ = { + FFFA4550ed307f8c4550ed30 /* PhysXVehicle */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6126728307fe812672830 /* Build configuration list for PBXNativeTarget "PhysXVehicle" */; + buildConfigurationList = FFF64550ed307f8c4550ed30 /* Build configuration list for PBXNativeTarget "PhysXVehicle" */; buildPhases = ( - FFF2126728307fe812672830, - FFF8126728307fe812672830, - FFFC126728307fe812672830, + FFF24550ed307f8c4550ed30, + FFF84550ed307f8c4550ed30, + FFFC4550ed307f8c4550ed30, ); buildRules = ( ); @@ -5053,34 +5053,34 @@ ); name = "PhysXVehicle"; productName = "PhysXVehicle"; - productReference = FFFD126728307fe812672830 /* PhysXVehicle */; + productReference = FFFD4550ed307f8c4550ed30 /* PhysXVehicle */; productType = "com.apple.product-type.library.static"; }; - FFFA12683c607fe812683c60 /* PhysXExtensions */ = { + FFFA4551eaf07f8c4551eaf0 /* PhysXExtensions */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF612683c607fe812683c60 /* Build configuration list for PBXNativeTarget "PhysXExtensions" */; + buildConfigurationList = FFF64551eaf07f8c4551eaf0 /* Build configuration list for PBXNativeTarget "PhysXExtensions" */; buildPhases = ( - FFF212683c607fe812683c60, - FFF812683c607fe812683c60, - FFFC12683c607fe812683c60, + FFF24551eaf07f8c4551eaf0, + FFF84551eaf07f8c4551eaf0, + FFFC4551eaf07f8c4551eaf0, ); buildRules = ( ); dependencies = ( - FFF412681b107fe812681b10, /* PsFastXml */ + FFF44551ef707f8c4551ef70, /* PsFastXml */ ); name = "PhysXExtensions"; productName = "PhysXExtensions"; - productReference = FFFD12683c607fe812683c60 /* PhysXExtensions */; + productReference = FFFD4551eaf07f8c4551eaf0 /* PhysXExtensions */; productType = "com.apple.product-type.library.static"; }; - FFFA12694cb07fe812694cb0 /* SceneQuery */ = { + FFFA455314507f8c45531450 /* SceneQuery */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF612694cb07fe812694cb0 /* Build configuration list for PBXNativeTarget "SceneQuery" */; + buildConfigurationList = FFF6455314507f8c45531450 /* Build configuration list for PBXNativeTarget "SceneQuery" */; buildPhases = ( - FFF212694cb07fe812694cb0, - FFF812694cb07fe812694cb0, - FFFC12694cb07fe812694cb0, + FFF2455314507f8c45531450, + FFF8455314507f8c45531450, + FFFC455314507f8c45531450, ); buildRules = ( ); @@ -5088,16 +5088,16 @@ ); name = "SceneQuery"; productName = "SceneQuery"; - productReference = FFFD12694cb07fe812694cb0 /* SceneQuery */; + productReference = FFFD455314507f8c45531450 /* SceneQuery */; productType = "com.apple.product-type.library.static"; }; - FFFA126992107fe812699210 /* SimulationController */ = { + FFFA455359d07f8c455359d0 /* SimulationController */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6126992107fe812699210 /* Build configuration list for PBXNativeTarget "SimulationController" */; + buildConfigurationList = FFF6455359d07f8c455359d0 /* Build configuration list for PBXNativeTarget "SimulationController" */; buildPhases = ( - FFF2126992107fe812699210, - FFF8126992107fe812699210, - FFFC126992107fe812699210, + FFF2455359d07f8c455359d0, + FFF8455359d07f8c455359d0, + FFFC455359d07f8c455359d0, ); buildRules = ( ); @@ -5105,54 +5105,54 @@ ); name = "SimulationController"; productName = "SimulationController"; - productReference = FFFD126992107fe812699210 /* SimulationController */; + productReference = FFFD455359d07f8c455359d0 /* SimulationController */; productType = "com.apple.product-type.library.static"; }; - FFFA134ec9b07fe8134ec9b0 /* PhysXCooking */ = { + FFFA4553a1807f8c4553a180 /* PhysXCooking */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6134ec9b07fe8134ec9b0 /* Build configuration list for PBXNativeTarget "PhysXCooking" */; + buildConfigurationList = FFF64553a1807f8c4553a180 /* Build configuration list for PBXNativeTarget "PhysXCooking" */; buildPhases = ( - FFF2134ec9b07fe8134ec9b0, - FFF8134ec9b07fe8134ec9b0, - FFFC134ec9b07fe8134ec9b0, + FFF24553a1807f8c4553a180, + FFF84553a1807f8c4553a180, + FFFC4553a1807f8c4553a180, ); buildRules = ( ); dependencies = ( - FFF4134edd807fe8134edd80, /* PhysXCommon */ - FFF4134eef007fe8134eef00, /* PhysXExtensions */ - FFF4134ec8807fe8134ec880, /* PxFoundation */ + FFF4455439d07f8c455439d0, /* PhysXCommon */ + FFF4455438f07f8c455438f0, /* PhysXExtensions */ + FFF44553f1007f8c4553f100, /* PxFoundation */ ); name = "PhysXCooking"; productName = "PhysXCooking"; - productReference = FFFD134ec9b07fe8134ec9b0 /* PhysXCooking */; + productReference = FFFD4553a1807f8c4553a180 /* PhysXCooking */; productType = "com.apple.product-type.library.static"; }; - FFFA12128d507fe812128d50 /* PhysXCommon */ = { + FFFA4389f1b07f8c4389f1b0 /* PhysXCommon */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF612128d507fe812128d50 /* Build configuration list for PBXNativeTarget "PhysXCommon" */; + buildConfigurationList = FFF64389f1b07f8c4389f1b0 /* Build configuration list for PBXNativeTarget "PhysXCommon" */; buildPhases = ( - FFF212128d507fe812128d50, - FFF812128d507fe812128d50, - FFFC12128d507fe812128d50, + FFF24389f1b07f8c4389f1b0, + FFF84389f1b07f8c4389f1b0, + FFFC4389f1b07f8c4389f1b0, ); buildRules = ( ); dependencies = ( - FFF4121222807fe812122280, /* PxFoundation */ + FFF443af42807f8c43af4280, /* PxFoundation */ ); name = "PhysXCommon"; productName = "PhysXCommon"; - productReference = FFFD12128d507fe812128d50 /* PhysXCommon */; + productReference = FFFD4389f1b07f8c4389f1b0 /* PhysXCommon */; productType = "com.apple.product-type.library.static"; }; - FFFA121657c07fe8121657c0 /* PxFoundation */ = { + FFFA438816407f8c43881640 /* PxFoundation */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6121657c07fe8121657c0 /* Build configuration list for PBXNativeTarget "PxFoundation" */; + buildConfigurationList = FFF6438816407f8c43881640 /* Build configuration list for PBXNativeTarget "PxFoundation" */; buildPhases = ( - FFF2121657c07fe8121657c0, - FFF8121657c07fe8121657c0, - FFFC121657c07fe8121657c0, + FFF2438816407f8c43881640, + FFF8438816407f8c43881640, + FFFC438816407f8c43881640, ); buildRules = ( ); @@ -5160,34 +5160,34 @@ ); name = "PxFoundation"; productName = "PxFoundation"; - productReference = FFFD121657c07fe8121657c0 /* PxFoundation */; + productReference = FFFD438816407f8c43881640 /* PxFoundation */; productType = "com.apple.product-type.library.static"; }; - FFFA12609f207fe812609f20 /* PxPvdSDK */ = { + FFFA43c33f507f8c43c33f50 /* PxPvdSDK */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF612609f207fe812609f20 /* Build configuration list for PBXNativeTarget "PxPvdSDK" */; + buildConfigurationList = FFF643c33f507f8c43c33f50 /* Build configuration list for PBXNativeTarget "PxPvdSDK" */; buildPhases = ( - FFF212609f207fe812609f20, - FFF812609f207fe812609f20, - FFFC12609f207fe812609f20, + FFF243c33f507f8c43c33f50, + FFF843c33f507f8c43c33f50, + FFFC43c33f507f8c43c33f50, ); buildRules = ( ); dependencies = ( - FFF4126081907fe812608190, /* PxFoundation */ + FFF443c046d07f8c43c046d0, /* PxFoundation */ ); name = "PxPvdSDK"; productName = "PxPvdSDK"; - productReference = FFFD12609f207fe812609f20 /* PxPvdSDK */; + productReference = FFFD43c33f507f8c43c33f50 /* PxPvdSDK */; productType = "com.apple.product-type.library.static"; }; - FFFA125b5b707fe8125b5b70 /* LowLevel */ = { + FFFA43c513407f8c43c51340 /* LowLevel */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6125b5b707fe8125b5b70 /* Build configuration list for PBXNativeTarget "LowLevel" */; + buildConfigurationList = FFF643c513407f8c43c51340 /* Build configuration list for PBXNativeTarget "LowLevel" */; buildPhases = ( - FFF2125b5b707fe8125b5b70, - FFF8125b5b707fe8125b5b70, - FFFC125b5b707fe8125b5b70, + FFF243c513407f8c43c51340, + FFF843c513407f8c43c51340, + FFFC43c513407f8c43c51340, ); buildRules = ( ); @@ -5195,16 +5195,16 @@ ); name = "LowLevel"; productName = "LowLevel"; - productReference = FFFD125b5b707fe8125b5b70 /* LowLevel */; + productReference = FFFD43c513407f8c43c51340 /* LowLevel */; productType = "com.apple.product-type.library.static"; }; - FFFA1261e8907fe81261e890 /* LowLevelAABB */ = { + FFFA43ef63707f8c43ef6370 /* LowLevelAABB */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF61261e8907fe81261e890 /* Build configuration list for PBXNativeTarget "LowLevelAABB" */; + buildConfigurationList = FFF643ef63707f8c43ef6370 /* Build configuration list for PBXNativeTarget "LowLevelAABB" */; buildPhases = ( - FFF21261e8907fe81261e890, - FFF81261e8907fe81261e890, - FFFC1261e8907fe81261e890, + FFF243ef63707f8c43ef6370, + FFF843ef63707f8c43ef6370, + FFFC43ef63707f8c43ef6370, ); buildRules = ( ); @@ -5212,16 +5212,16 @@ ); name = "LowLevelAABB"; productName = "LowLevelAABB"; - productReference = FFFD1261e8907fe81261e890 /* LowLevelAABB */; + productReference = FFFD43ef63707f8c43ef6370 /* LowLevelAABB */; productType = "com.apple.product-type.library.static"; }; - FFFA125e9ce07fe8125e9ce0 /* LowLevelDynamics */ = { + FFFA43c7c3807f8c43c7c380 /* LowLevelDynamics */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6125e9ce07fe8125e9ce0 /* Build configuration list for PBXNativeTarget "LowLevelDynamics" */; + buildConfigurationList = FFF643c7c3807f8c43c7c380 /* Build configuration list for PBXNativeTarget "LowLevelDynamics" */; buildPhases = ( - FFF2125e9ce07fe8125e9ce0, - FFF8125e9ce07fe8125e9ce0, - FFFC125e9ce07fe8125e9ce0, + FFF243c7c3807f8c43c7c380, + FFF843c7c3807f8c43c7c380, + FFFC43c7c3807f8c43c7c380, ); buildRules = ( ); @@ -5229,16 +5229,16 @@ ); name = "LowLevelDynamics"; productName = "LowLevelDynamics"; - productReference = FFFD125e9ce07fe8125e9ce0 /* LowLevelDynamics */; + productReference = FFFD43c7c3807f8c43c7c380 /* LowLevelDynamics */; productType = "com.apple.product-type.library.static"; }; - FFFA130090807fe813009080 /* LowLevelCloth */ = { + FFFA43ca21407f8c43ca2140 /* LowLevelCloth */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6130090807fe813009080 /* Build configuration list for PBXNativeTarget "LowLevelCloth" */; + buildConfigurationList = FFF643ca21407f8c43ca2140 /* Build configuration list for PBXNativeTarget "LowLevelCloth" */; buildPhases = ( - FFF2130090807fe813009080, - FFF8130090807fe813009080, - FFFC130090807fe813009080, + FFF243ca21407f8c43ca2140, + FFF843ca21407f8c43ca2140, + FFFC43ca21407f8c43ca2140, ); buildRules = ( ); @@ -5246,16 +5246,16 @@ ); name = "LowLevelCloth"; productName = "LowLevelCloth"; - productReference = FFFD130090807fe813009080 /* LowLevelCloth */; + productReference = FFFD43ca21407f8c43ca2140 /* LowLevelCloth */; productType = "com.apple.product-type.library.static"; }; - FFFA12708bc07fe812708bc0 /* LowLevelParticles */ = { + FFFA43f22f607f8c43f22f60 /* LowLevelParticles */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF612708bc07fe812708bc0 /* Build configuration list for PBXNativeTarget "LowLevelParticles" */; + buildConfigurationList = FFF643f22f607f8c43f22f60 /* Build configuration list for PBXNativeTarget "LowLevelParticles" */; buildPhases = ( - FFF212708bc07fe812708bc0, - FFF812708bc07fe812708bc0, - FFFC12708bc07fe812708bc0, + FFF243f22f607f8c43f22f60, + FFF843f22f607f8c43f22f60, + FFFC43f22f607f8c43f22f60, ); buildRules = ( ); @@ -5263,16 +5263,16 @@ ); name = "LowLevelParticles"; productName = "LowLevelParticles"; - productReference = FFFD12708bc07fe812708bc0 /* LowLevelParticles */; + productReference = FFFD43f22f607f8c43f22f60 /* LowLevelParticles */; productType = "com.apple.product-type.library.static"; }; - FFFA132a0da07fe8132a0da0 /* PxTask */ = { + FFFA43cdb0507f8c43cdb050 /* PxTask */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6132a0da07fe8132a0da0 /* Build configuration list for PBXNativeTarget "PxTask" */; + buildConfigurationList = FFF643cdb0507f8c43cdb050 /* Build configuration list for PBXNativeTarget "PxTask" */; buildPhases = ( - FFF2132a0da07fe8132a0da0, - FFF8132a0da07fe8132a0da0, - FFFC132a0da07fe8132a0da0, + FFF243cdb0507f8c43cdb050, + FFF843cdb0507f8c43cdb050, + FFFC43cdb0507f8c43cdb050, ); buildRules = ( ); @@ -5280,16 +5280,16 @@ ); name = "PxTask"; productName = "PxTask"; - productReference = FFFD132a0da07fe8132a0da0 /* PxTask */; + productReference = FFFD43cdb0507f8c43cdb050 /* PxTask */; productType = "com.apple.product-type.library.static"; }; - FFFA1265b4d07fe81265b4d0 /* PsFastXml */ = { + FFFA455011f07f8c455011f0 /* PsFastXml */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF61265b4d07fe81265b4d0 /* Build configuration list for PBXNativeTarget "PsFastXml" */; + buildConfigurationList = FFF6455011f07f8c455011f0 /* Build configuration list for PBXNativeTarget "PsFastXml" */; buildPhases = ( - FFF21265b4d07fe81265b4d0, - FFF81265b4d07fe81265b4d0, - FFFC1265b4d07fe81265b4d0, + FFF2455011f07f8c455011f0, + FFF8455011f07f8c455011f0, + FFFC455011f07f8c455011f0, ); buildRules = ( ); @@ -5297,213 +5297,213 @@ ); name = "PsFastXml"; productName = "PsFastXml"; - productReference = FFFD1265b4d07fe81265b4d0 /* PsFastXml */; + productReference = FFFD455011f07f8c455011f0 /* PsFastXml */; productType = "com.apple.product-type.library.static"; }; /* End PBXNativeTarget section */ /* Begin XCConfigurationList section */ - FFF61266ac007fe81266ac00 = { + FFF645504df07f8c45504df0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7110734007fe811073400, - FFF711073af07fe811073af0, - FFF7110741e07fe8110741e0, - FFF7110748d07fe8110748d0, + FFF74582bc007f8c4582bc00, + FFF74582c2f07f8c4582c2f0, + FFF74582c9e07f8c4582c9e0, + FFF74582d0d07f8c4582d0d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "release"; }; - FFF6126754e07fe8126754e0 = { + FFF64550d8c07f8c4550d8c0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7110750007fe811075000, - FFF7110756f07fe8110756f0, - FFF711075de07fe811075de0, - FFF7110764d07fe8110764d0, + FFF74582d8007f8c4582d800, + FFF74582def07f8c4582def0, + FFF74582e5e07f8c4582e5e0, + FFF74582ecd07f8c4582ecd0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6126728307fe812672830 = { + FFF64550ed307f8c4550ed30 = { isa = XCConfigurationList; buildConfigurations = ( - FFF711076c007fe811076c00, - FFF7110772f07fe8110772f0, - FFF7110779e07fe8110779e0, - FFF7110780d07fe8110780d0, + FFF74582f4007f8c4582f400, + FFF74582faf07f8c4582faf0, + FFF7458301e07f8c458301e0, + FFF7458308d07f8c458308d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF612683c607fe812683c60 = { + FFF64551eaf07f8c4551eaf0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7110788007fe811078800, - FFF711078ef07fe811078ef0, - FFF7110795e07fe8110795e0, - FFF711079cd07fe811079cd0, + FFF7458310007f8c45831000, + FFF7458316f07f8c458316f0, + FFF745831de07f8c45831de0, + FFF7458324d07f8c458324d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF612694cb07fe812694cb0 = { + FFF6455314507f8c45531450 = { isa = XCConfigurationList; buildConfigurations = ( - FFF71107a4007fe81107a400, - FFF71107aaf07fe81107aaf0, - FFF71107b1e07fe81107b1e0, - FFF71107b8d07fe81107b8d0, + FFF745832c007f8c45832c00, + FFF7458332f07f8c458332f0, + FFF7458339e07f8c458339e0, + FFF7458340d07f8c458340d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6126992107fe812699210 = { + FFF6455359d07f8c455359d0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF71107c0007fe81107c000, - FFF71107c6f07fe81107c6f0, - FFF71107cde07fe81107cde0, - FFF71107d4d07fe81107d4d0, + FFF7458348007f8c45834800, + FFF745834ef07f8c45834ef0, + FFF7458355e07f8c458355e0, + FFF745835cd07f8c45835cd0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6134ec9b07fe8134ec9b0 = { + FFF64553a1807f8c4553a180 = { isa = XCConfigurationList; buildConfigurations = ( - FFF71107dc007fe81107dc00, - FFF71107e2f07fe81107e2f0, - FFF71107e9e07fe81107e9e0, - FFF71107f0d07fe81107f0d0, + FFF7458364007f8c45836400, + FFF745836af07f8c45836af0, + FFF7458371e07f8c458371e0, + FFF7458378d07f8c458378d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "release"; }; - FFF612128d507fe812128d50 = { + FFF64389f1b07f8c4389f1b0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7110268007fe811026800, - FFF711026ef07fe811026ef0, - FFF7110275e07fe8110275e0, - FFF711027cd07fe811027cd0, + FFF7440110007f8c44011000, + FFF7440116f07f8c440116f0, + FFF744011de07f8c44011de0, + FFF7440124d07f8c440124d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "release"; }; - FFF6121657c07fe8121657c0 = { + FFF6438816407f8c43881640 = { isa = XCConfigurationList; buildConfigurations = ( - FFF71197a2007fe81197a200, - FFF71197a8f07fe81197a8f0, - FFF71197afe07fe81197afe0, - FFF71197b6d07fe81197b6d0, + FFF74318f6007f8c4318f600, + FFF74318fcf07f8c4318fcf0, + FFF7431903e07f8c431903e0, + FFF743190ad07f8c43190ad0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF612609f207fe812609f20 = { + FFF643c33f507f8c43c33f50 = { isa = XCConfigurationList; buildConfigurations = ( - FFF71280b8007fe81280b800, - FFF71280bef07fe81280bef0, - FFF71280c5e07fe81280c5e0, - FFF71280ccd07fe81280ccd0, + FFF74401d8007f8c4401d800, + FFF74401def07f8c4401def0, + FFF74401e5e07f8c4401e5e0, + FFF74401ecd07f8c4401ecd0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6125b5b707fe8125b5b70 = { + FFF643c513407f8c43c51340 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7119b7c007fe8119b7c00, - FFF7119b82f07fe8119b82f0, - FFF7119b89e07fe8119b89e0, - FFF7119b90d07fe8119b90d0, + FFF74402b0007f8c4402b000, + FFF74402b6f07f8c4402b6f0, + FFF74402bde07f8c4402bde0, + FFF74402c4d07f8c4402c4d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF61261e8907fe81261e890 = { + FFF643ef63707f8c43ef6370 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7128192007fe812819200, - FFF7128198f07fe8128198f0, - FFF712819fe07fe812819fe0, - FFF71281a6d07fe81281a6d0, + FFF7448278007f8c44827800, + FFF744827ef07f8c44827ef0, + FFF7448285e07f8c448285e0, + FFF744828cd07f8c44828cd0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6125e9ce07fe8125e9ce0 = { + FFF643c7c3807f8c43c7c380 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7119c26007fe8119c2600, - FFF7119c2cf07fe8119c2cf0, - FFF7119c33e07fe8119c33e0, - FFF7119c3ad07fe8119c3ad0, + FFF744034a007f8c44034a00, + FFF7440350f07f8c440350f0, + FFF7440357e07f8c440357e0, + FFF744035ed07f8c44035ed0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6130090807fe813009080 = { + FFF643ca21407f8c43ca2140 = { isa = XCConfigurationList; buildConfigurations = ( - FFF71380a8007fe81380a800, - FFF71380aef07fe81380aef0, - FFF71380b5e07fe81380b5e0, - FFF71380bcd07fe81380bcd0, + FFF74403e2007f8c4403e200, + FFF74403e8f07f8c4403e8f0, + FFF74403efe07f8c4403efe0, + FFF74403f6d07f8c4403f6d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF612708bc07fe812708bc0 = { + FFF643f22f607f8c43f22f60 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7119cc0007fe8119cc000, - FFF7119cc6f07fe8119cc6f0, - FFF7119ccde07fe8119ccde0, - FFF7119cd4d07fe8119cd4d0, + FFF7448314007f8c44831400, + FFF744831af07f8c44831af0, + FFF7448321e07f8c448321e0, + FFF7448328d07f8c448328d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6132a0da07fe8132a0da0 = { + FFF643cdb0507f8c43cdb050 = { isa = XCConfigurationList; buildConfigurations = ( - FFF71104c0007fe81104c000, - FFF71104c6f07fe81104c6f0, - FFF71104cde07fe81104cde0, - FFF71104d4d07fe81104d4d0, + FFF7440462007f8c44046200, + FFF7440468f07f8c440468f0, + FFF744046fe07f8c44046fe0, + FFF7440476d07f8c440476d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF61265b4d07fe81265b4d0 = { + FFF6455011f07f8c455011f0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7128206007fe812820600, - FFF712820cf07fe812820cf0, - FFF7128213e07fe8128213e0, - FFF712821ad07fe812821ad0, + FFF745805c007f8c45805c00, + FFF7458062f07f8c458062f0, + FFF7458069e07f8c458069e0, + FFF7458070d07f8c458070d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF610f1e4907fe810f1e490 = { + FFF642c823b07f8c42c823b0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF3110734007fe811073400 /* release */, - FFF311073af07fe811073af0 /* debug */, - FFF3110741e07fe8110741e0 /* checked */, - FFF3110748d07fe8110748d0 /* profile */, + FFF34582bc007f8c4582bc00 /* release */, + FFF34582c2f07f8c4582c2f0 /* debug */, + FFF34582c9e07f8c4582c9e0 /* checked */, + FFF34582d0d07f8c4582d0d0 /* profile */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "release"; }; /* End XCConfigurationList section */ /* Begin XCBuildConfiguration section */ - FFF7110734007fe811073400 /* release */ = { + FFF74582bc007f8c4582bc00 /* 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; @@ -5518,7 +5518,7 @@ "-lLowLevel", "-lLowLevelAABB", "-lLowLevelCloth", "-lLowLevelDynamics", "-lLowLevelParticles", "-lPhysX3Common", "-lPxFoundation", "-lPxPvdSDK", "-lPxTask", "-lSceneQuery", "-lSimulationController", ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../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/particles", "../../../Include/cloth", "../../../Include", "../../Common/src", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../LowLevel/API/include", "../../LowLevel/software/include", "../../LowLevel/common/include/pipeline", "../../LowLevelAABB/include", "../../LowLevelDynamics/include", "../../LowLevelDynamics/src", "../../LowLevelParticles/include", "../../PhysX/src", "../../PhysX/src/buffering", "../../PhysX/src/particles", "../../PhysX/src/cloth", "../../SimulationController/include", "../../SimulationController/src", "../../SimulationController/src/particles", "../../PhysXCooking/src", "../../PhysXCooking/src/mesh", "../../PhysXCooking/src/convex", "../../SceneQuery/include", "../../PhysXMetaData/core/include", @@ -5533,7 +5533,7 @@ }; name = "release"; }; - FFF711073af07fe811073af0 /* debug */ = { + FFF74582c2f07f8c4582c2f0 /* 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; @@ -5548,7 +5548,7 @@ "-lLowLevelDEBUG", "-lLowLevelAABBDEBUG", "-lLowLevelClothDEBUG", "-lLowLevelDynamicsDEBUG", "-lLowLevelParticlesDEBUG", "-lPhysX3CommonDEBUG", "-lPxFoundationDEBUG", "-lPxPvdSDKDEBUG", "-lPxTaskDEBUG", "-lSceneQueryDEBUG", "-lSimulationControllerDEBUG", ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O0", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0", ); HEADER_SEARCH_PATHS = ( "../../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/particles", "../../../Include/cloth", "../../../Include", "../../Common/src", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../LowLevel/API/include", "../../LowLevel/software/include", "../../LowLevel/common/include/pipeline", "../../LowLevelAABB/include", "../../LowLevelDynamics/include", "../../LowLevelDynamics/src", "../../LowLevelParticles/include", "../../PhysX/src", "../../PhysX/src/buffering", "../../PhysX/src/particles", "../../PhysX/src/cloth", "../../SimulationController/include", "../../SimulationController/src", "../../SimulationController/src/particles", "../../PhysXCooking/src", "../../PhysXCooking/src/mesh", "../../PhysXCooking/src/convex", "../../SceneQuery/include", "../../PhysXMetaData/core/include", @@ -5563,7 +5563,7 @@ }; name = "debug"; }; - FFF7110741e07fe8110741e0 /* checked */ = { + FFF74582c9e07f8c4582c9e0 /* 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; @@ -5578,7 +5578,7 @@ "-lLowLevelCHECKED", "-lLowLevelAABBCHECKED", "-lLowLevelClothCHECKED", "-lLowLevelDynamicsCHECKED", "-lLowLevelParticlesCHECKED", "-lPhysX3CommonCHECKED", "-lPxFoundationCHECKED", "-lPxPvdSDKCHECKED", "-lPxTaskCHECKED", "-lSceneQueryCHECKED", "-lSimulationControllerCHECKED", ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../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/particles", "../../../Include/cloth", "../../../Include", "../../Common/src", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../LowLevel/API/include", "../../LowLevel/software/include", "../../LowLevel/common/include/pipeline", "../../LowLevelAABB/include", "../../LowLevelDynamics/include", "../../LowLevelDynamics/src", "../../LowLevelParticles/include", "../../PhysX/src", "../../PhysX/src/buffering", "../../PhysX/src/particles", "../../PhysX/src/cloth", "../../SimulationController/include", "../../SimulationController/src", "../../SimulationController/src/particles", "../../PhysXCooking/src", "../../PhysXCooking/src/mesh", "../../PhysXCooking/src/convex", "../../SceneQuery/include", "../../PhysXMetaData/core/include", @@ -5593,7 +5593,7 @@ }; name = "checked"; }; - FFF7110748d07fe8110748d0 /* profile */ = { + FFF74582d0d07f8c4582d0d0 /* 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; @@ -5608,7 +5608,7 @@ "-lLowLevelPROFILE", "-lLowLevelAABBPROFILE", "-lLowLevelClothPROFILE", "-lLowLevelDynamicsPROFILE", "-lLowLevelParticlesPROFILE", "-lPhysX3CommonPROFILE", "-lPxFoundationPROFILE", "-lPxPvdSDKPROFILE", "-lPxTaskPROFILE", "-lSceneQueryPROFILE", "-lSimulationControllerPROFILE", ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../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/particles", "../../../Include/cloth", "../../../Include", "../../Common/src", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../LowLevel/API/include", "../../LowLevel/software/include", "../../LowLevel/common/include/pipeline", "../../LowLevelAABB/include", "../../LowLevelDynamics/include", "../../LowLevelDynamics/src", "../../LowLevelParticles/include", "../../PhysX/src", "../../PhysX/src/buffering", "../../PhysX/src/particles", "../../PhysX/src/cloth", "../../SimulationController/include", "../../SimulationController/src", "../../SimulationController/src/particles", "../../PhysXCooking/src", "../../PhysXCooking/src/mesh", "../../PhysXCooking/src/convex", "../../SceneQuery/include", "../../PhysXMetaData/core/include", @@ -5623,7 +5623,7 @@ }; name = "profile"; }; - FFF7110750007fe811075000 /* debug */ = { + FFF74582d8007f8c4582d800 /* 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; @@ -5638,7 +5638,7 @@ "-lPhysX3CommonDEBUG", "-lPhysX3ExtensionsDEBUG", "-lPxFoundationDEBUG", ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O0", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/characterkinematic", "../../../Include/common", "../../../Include/geometry", "../../../Include/extensions", "../../../Include", "../../GeomUtils/headers", "../../Common/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", @@ -5653,7 +5653,7 @@ }; name = "debug"; }; - FFF7110756f07fe8110756f0 /* checked */ = { + FFF74582def07f8c4582def0 /* 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; @@ -5668,7 +5668,7 @@ "-lPhysX3CommonCHECKED", "-lPhysX3ExtensionsCHECKED", "-lPxFoundationCHECKED", ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/characterkinematic", "../../../Include/common", "../../../Include/geometry", "../../../Include/extensions", "../../../Include", "../../GeomUtils/headers", "../../Common/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", @@ -5683,7 +5683,7 @@ }; name = "checked"; }; - FFF711075de07fe811075de0 /* profile */ = { + FFF74582e5e07f8c4582e5e0 /* 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; @@ -5698,7 +5698,7 @@ "-lPhysX3CommonPROFILE", "-lPhysX3ExtensionsPROFILE", "-lPxFoundationPROFILE", ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/characterkinematic", "../../../Include/common", "../../../Include/geometry", "../../../Include/extensions", "../../../Include", "../../GeomUtils/headers", "../../Common/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", @@ -5713,7 +5713,7 @@ }; name = "profile"; }; - FFF7110764d07fe8110764d0 /* release */ = { + FFF74582ecd07f8c4582ecd0 /* 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; @@ -5728,7 +5728,7 @@ "-lPhysX3Common", "-lPhysX3Extensions", "-lPxFoundation", ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/characterkinematic", "../../../Include/common", "../../../Include/geometry", "../../../Include/extensions", "../../../Include", "../../GeomUtils/headers", "../../Common/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", @@ -5743,7 +5743,7 @@ }; name = "release"; }; - FFF711076c007fe811076c00 /* debug */ = { + FFF74582f4007f8c4582f400 /* 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; @@ -5758,7 +5758,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O0", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/vehicle", "../../../Include/common", "../../../Include/geometry", "../../../Include/extensions", "../../../Include/cloth", "../../../Include", "../../../Include/pvd", "../../../Include/physxprofilesdk", "../../Common/src", "../../PhysXVehicle/src", "../../PhysXMetaData/extensions/include", "../../PhysXExtensions/src/serialization/Xml", "../../PhysXMetaData/core/include", "../../PhysXVehicle/src/PhysXMetaData/include", "../../PvdSDK/src", @@ -5773,7 +5773,7 @@ }; name = "debug"; }; - FFF7110772f07fe8110772f0 /* checked */ = { + FFF74582faf07f8c4582faf0 /* 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; @@ -5788,7 +5788,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/vehicle", "../../../Include/common", "../../../Include/geometry", "../../../Include/extensions", "../../../Include/cloth", "../../../Include", "../../../Include/pvd", "../../../Include/physxprofilesdk", "../../Common/src", "../../PhysXVehicle/src", "../../PhysXMetaData/extensions/include", "../../PhysXExtensions/src/serialization/Xml", "../../PhysXMetaData/core/include", "../../PhysXVehicle/src/PhysXMetaData/include", "../../PvdSDK/src", @@ -5803,7 +5803,7 @@ }; name = "checked"; }; - FFF7110779e07fe8110779e0 /* profile */ = { + FFF7458301e07f8c458301e0 /* 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; @@ -5818,7 +5818,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/vehicle", "../../../Include/common", "../../../Include/geometry", "../../../Include/extensions", "../../../Include/cloth", "../../../Include", "../../../Include/pvd", "../../../Include/physxprofilesdk", "../../Common/src", "../../PhysXVehicle/src", "../../PhysXMetaData/extensions/include", "../../PhysXExtensions/src/serialization/Xml", "../../PhysXMetaData/core/include", "../../PhysXVehicle/src/PhysXMetaData/include", "../../PvdSDK/src", @@ -5833,7 +5833,7 @@ }; name = "profile"; }; - FFF7110780d07fe8110780d0 /* release */ = { + FFF7458308d07f8c458308d0 /* 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; @@ -5848,7 +5848,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/vehicle", "../../../Include/common", "../../../Include/geometry", "../../../Include/extensions", "../../../Include/cloth", "../../../Include", "../../../Include/pvd", "../../../Include/physxprofilesdk", "../../Common/src", "../../PhysXVehicle/src", "../../PhysXMetaData/extensions/include", "../../PhysXExtensions/src/serialization/Xml", "../../PhysXMetaData/core/include", "../../PhysXVehicle/src/PhysXMetaData/include", "../../PvdSDK/src", @@ -5863,7 +5863,7 @@ }; name = "release"; }; - FFF7110788007fe811078800 /* debug */ = { + FFF7458310007f8c45831000 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -5871,14 +5871,14 @@ ALWAYS_SEARCH_USER_PATHS = NO; USE_HEADERMAP = NO; GCC_PREPROCESSOR_DEFINITIONS = ( - "PX_BUILD_NUMBER=21749494", "PX_PHYSX_STATIC_LIB", "_DEBUG", "PX_DEBUG=1", "PX_CHECKED=1", "PX_SUPPORT_PVD=1", + "PX_BUILD_NUMBER=22017532", "PX_PHYSX_STATIC_LIB", "_DEBUG", "PX_DEBUG=1", "PX_CHECKED=1", "PX_SUPPORT_PVD=1", ); GCC_ENABLE_EXCEPTIONS = NO; OTHER_LDFLAGS = ( "-lPsFastXmlDEBUG", ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O0", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0", ); HEADER_SEARCH_PATHS = ( "../../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", @@ -5893,7 +5893,7 @@ }; name = "debug"; }; - FFF711078ef07fe811078ef0 /* checked */ = { + FFF7458316f07f8c458316f0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -5901,14 +5901,14 @@ ALWAYS_SEARCH_USER_PATHS = NO; USE_HEADERMAP = NO; GCC_PREPROCESSOR_DEFINITIONS = ( - "PX_BUILD_NUMBER=21749494", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_CHECKED=1", "PX_SUPPORT_PVD=1", + "PX_BUILD_NUMBER=22017532", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_CHECKED=1", "PX_SUPPORT_PVD=1", ); GCC_ENABLE_EXCEPTIONS = NO; OTHER_LDFLAGS = ( "-lPsFastXmlCHECKED", ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../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", @@ -5923,7 +5923,7 @@ }; name = "checked"; }; - FFF7110795e07fe8110795e0 /* profile */ = { + FFF745831de07f8c45831de0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -5931,14 +5931,14 @@ ALWAYS_SEARCH_USER_PATHS = NO; USE_HEADERMAP = NO; GCC_PREPROCESSOR_DEFINITIONS = ( - "PX_BUILD_NUMBER=21749494", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_PROFILE=1", "PX_SUPPORT_PVD=1", + "PX_BUILD_NUMBER=22017532", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_PROFILE=1", "PX_SUPPORT_PVD=1", ); GCC_ENABLE_EXCEPTIONS = NO; OTHER_LDFLAGS = ( "-lPsFastXmlPROFILE", ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../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", @@ -5953,7 +5953,7 @@ }; name = "profile"; }; - FFF711079cd07fe811079cd0 /* release */ = { + FFF7458324d07f8c458324d0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -5961,14 +5961,14 @@ ALWAYS_SEARCH_USER_PATHS = NO; USE_HEADERMAP = NO; GCC_PREPROCESSOR_DEFINITIONS = ( - "PX_BUILD_NUMBER=21749494", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_SUPPORT_PVD=0", + "PX_BUILD_NUMBER=22017532", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_SUPPORT_PVD=0", ); GCC_ENABLE_EXCEPTIONS = NO; OTHER_LDFLAGS = ( "-lPsFastXml", ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../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", @@ -5983,7 +5983,7 @@ }; name = "release"; }; - FFF71107a4007fe81107a400 /* debug */ = { + FFF745832c007f8c45832c00 /* 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; @@ -5998,7 +5998,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O0", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0", ); HEADER_SEARCH_PATHS = ( "../../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", "../../Common/src", "../../Common/src/unix", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../SceneQuery/include", "../../SimulationController/include", "../../LowLevel/API/include", "../../PhysX/src", "../../PhysX/src/buffering", @@ -6013,7 +6013,7 @@ }; name = "debug"; }; - FFF71107aaf07fe81107aaf0 /* checked */ = { + FFF7458332f07f8c458332f0 /* 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; @@ -6028,7 +6028,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../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", "../../Common/src", "../../Common/src/unix", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../SceneQuery/include", "../../SimulationController/include", "../../LowLevel/API/include", "../../PhysX/src", "../../PhysX/src/buffering", @@ -6043,7 +6043,7 @@ }; name = "checked"; }; - FFF71107b1e07fe81107b1e0 /* profile */ = { + FFF7458339e07f8c458339e0 /* 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; @@ -6058,7 +6058,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../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", "../../Common/src", "../../Common/src/unix", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../SceneQuery/include", "../../SimulationController/include", "../../LowLevel/API/include", "../../PhysX/src", "../../PhysX/src/buffering", @@ -6073,7 +6073,7 @@ }; name = "profile"; }; - FFF71107b8d07fe81107b8d0 /* release */ = { + FFF7458340d07f8c458340d0 /* 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; @@ -6088,7 +6088,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../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", "../../Common/src", "../../Common/src/unix", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../SceneQuery/include", "../../SimulationController/include", "../../LowLevel/API/include", "../../PhysX/src", "../../PhysX/src/buffering", @@ -6103,7 +6103,7 @@ }; name = "release"; }; - FFF71107c0007fe81107c000 /* debug */ = { + FFF7458348007f8c45834800 /* 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; @@ -6118,7 +6118,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O0", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0", ); HEADER_SEARCH_PATHS = ( "../../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/particles", "../../../Include/cloth", "../../../Include", "../../Common/src", "../../Common/src/unix", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../SimulationController/include", "../../SimulationController/src", "../../SimulationController/src/particles", "../../SimulationController/src/cloth", "../../LowLevel/unix/include", "../../LowLevel/API/include", "../../LowLevel/software/include", "../../LowLevel/common/include/math", "../../LowLevel/common/include/utils", "../../LowLevel/common/include/collision", "../../LowLevel/common/include/pipeline", "../../LowLevelCloth/include", "../../LowLevelAABB/include", "../../LowLevelDynamics/include", "../../LowLevelParticles/include", @@ -6133,7 +6133,7 @@ }; name = "debug"; }; - FFF71107c6f07fe81107c6f0 /* checked */ = { + FFF745834ef07f8c45834ef0 /* 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; @@ -6148,7 +6148,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../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/particles", "../../../Include/cloth", "../../../Include", "../../Common/src", "../../Common/src/unix", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../SimulationController/include", "../../SimulationController/src", "../../SimulationController/src/particles", "../../SimulationController/src/cloth", "../../LowLevel/unix/include", "../../LowLevel/API/include", "../../LowLevel/software/include", "../../LowLevel/common/include/math", "../../LowLevel/common/include/utils", "../../LowLevel/common/include/collision", "../../LowLevel/common/include/pipeline", "../../LowLevelCloth/include", "../../LowLevelAABB/include", "../../LowLevelDynamics/include", "../../LowLevelParticles/include", @@ -6163,7 +6163,7 @@ }; name = "checked"; }; - FFF71107cde07fe81107cde0 /* profile */ = { + FFF7458355e07f8c458355e0 /* 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; @@ -6178,7 +6178,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../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/particles", "../../../Include/cloth", "../../../Include", "../../Common/src", "../../Common/src/unix", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../SimulationController/include", "../../SimulationController/src", "../../SimulationController/src/particles", "../../SimulationController/src/cloth", "../../LowLevel/unix/include", "../../LowLevel/API/include", "../../LowLevel/software/include", "../../LowLevel/common/include/math", "../../LowLevel/common/include/utils", "../../LowLevel/common/include/collision", "../../LowLevel/common/include/pipeline", "../../LowLevelCloth/include", "../../LowLevelAABB/include", "../../LowLevelDynamics/include", "../../LowLevelParticles/include", @@ -6193,7 +6193,7 @@ }; name = "profile"; }; - FFF71107d4d07fe81107d4d0 /* release */ = { + FFF745835cd07f8c45835cd0 /* 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; @@ -6208,7 +6208,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../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/particles", "../../../Include/cloth", "../../../Include", "../../Common/src", "../../Common/src/unix", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../SimulationController/include", "../../SimulationController/src", "../../SimulationController/src/particles", "../../SimulationController/src/cloth", "../../LowLevel/unix/include", "../../LowLevel/API/include", "../../LowLevel/software/include", "../../LowLevel/common/include/math", "../../LowLevel/common/include/utils", "../../LowLevel/common/include/collision", "../../LowLevel/common/include/pipeline", "../../LowLevelCloth/include", "../../LowLevelAABB/include", "../../LowLevelDynamics/include", "../../LowLevelParticles/include", @@ -6223,7 +6223,7 @@ }; name = "release"; }; - FFF71107dc007fe81107dc00 /* release */ = { + FFF7458364007f8c45836400 /* 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; @@ -6238,7 +6238,7 @@ "-lPhysX3Common", "-lPhysX3Extensions", "-lPxFoundation", ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../../Include/cloth", "../../../Include/cooking", "../../../Include", "../../Common/src", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../PhysXCooking/src", "../../PhysXCooking/src/mesh", "../../PhysXCooking/src/convex", "../../PhysXExtensions/src", "../../PhysXGpu/include", @@ -6253,7 +6253,7 @@ }; name = "release"; }; - FFF71107e2f07fe81107e2f0 /* debug */ = { + FFF745836af07f8c45836af0 /* 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; @@ -6268,7 +6268,7 @@ "-lPhysX3CommonDEBUG", "-lPhysX3ExtensionsDEBUG", "-lPxFoundationDEBUG", ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O0", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../../Include/cloth", "../../../Include/cooking", "../../../Include", "../../Common/src", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../PhysXCooking/src", "../../PhysXCooking/src/mesh", "../../PhysXCooking/src/convex", "../../PhysXExtensions/src", "../../PhysXGpu/include", @@ -6283,7 +6283,7 @@ }; name = "debug"; }; - FFF71107e9e07fe81107e9e0 /* checked */ = { + FFF7458371e07f8c458371e0 /* 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; @@ -6298,7 +6298,7 @@ "-lPhysX3CommonCHECKED", "-lPhysX3ExtensionsCHECKED", "-lPxFoundationCHECKED", ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../../Include/cloth", "../../../Include/cooking", "../../../Include", "../../Common/src", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../PhysXCooking/src", "../../PhysXCooking/src/mesh", "../../PhysXCooking/src/convex", "../../PhysXExtensions/src", "../../PhysXGpu/include", @@ -6313,7 +6313,7 @@ }; name = "checked"; }; - FFF71107f0d07fe81107f0d0 /* profile */ = { + FFF7458378d07f8c458378d0 /* 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; @@ -6328,7 +6328,7 @@ "-lPhysX3CommonPROFILE", "-lPhysX3ExtensionsPROFILE", "-lPxFoundationPROFILE", ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../../Include/cloth", "../../../Include/cooking", "../../../Include", "../../Common/src", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../PhysXCooking/src", "../../PhysXCooking/src/mesh", "../../PhysXCooking/src/convex", "../../PhysXExtensions/src", "../../PhysXGpu/include", @@ -6343,7 +6343,7 @@ }; name = "profile"; }; - FFF7110268007fe811026800 /* release */ = { + FFF7440110007f8c44011000 /* 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; @@ -6358,7 +6358,7 @@ "-lPxFoundation", ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include", "../../Common/src", "../../Common/src/unix", "../../PhysXProfile/include", "../../PhysXProfile/src", "../../PhysXGpu/include", "../../../Include/geometry", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../../Include/GeomUtils", @@ -6373,7 +6373,7 @@ }; name = "release"; }; - FFF711026ef07fe811026ef0 /* debug */ = { + FFF7440116f07f8c440116f0 /* 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; @@ -6388,7 +6388,7 @@ "-lPxFoundationDEBUG", ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O0", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include", "../../Common/src", "../../Common/src/unix", "../../PhysXProfile/include", "../../PhysXProfile/src", "../../PhysXGpu/include", "../../../Include/geometry", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../../Include/GeomUtils", @@ -6403,7 +6403,7 @@ }; name = "debug"; }; - FFF7110275e07fe8110275e0 /* checked */ = { + FFF744011de07f8c44011de0 /* 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; @@ -6418,7 +6418,7 @@ "-lPxFoundationCHECKED", ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include", "../../Common/src", "../../Common/src/unix", "../../PhysXProfile/include", "../../PhysXProfile/src", "../../PhysXGpu/include", "../../../Include/geometry", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../../Include/GeomUtils", @@ -6433,7 +6433,7 @@ }; name = "checked"; }; - FFF711027cd07fe811027cd0 /* profile */ = { + FFF7440124d07f8c440124d0 /* 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; @@ -6448,7 +6448,7 @@ "-lPxFoundationPROFILE", ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include", "../../Common/src", "../../Common/src/unix", "../../PhysXProfile/include", "../../PhysXProfile/src", "../../PhysXGpu/include", "../../../Include/geometry", "../../GeomUtils/headers", "../../GeomUtils/src", "../../GeomUtils/src/contact", "../../GeomUtils/src/common", "../../GeomUtils/src/convex", "../../GeomUtils/src/distance", "../../GeomUtils/src/sweep", "../../GeomUtils/src/gjk", "../../GeomUtils/src/intersection", "../../GeomUtils/src/mesh", "../../GeomUtils/src/hf", "../../GeomUtils/src/pcm", "../../GeomUtils/src/ccd", "../../../Include/GeomUtils", @@ -6463,7 +6463,7 @@ }; name = "profile"; }; - FFF71197a2007fe81197a200 /* debug */ = { + FFF74318f6007f8c4318f600 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6493,7 +6493,7 @@ }; name = "debug"; }; - FFF71197a8f07fe81197a8f0 /* release */ = { + FFF74318fcf07f8c4318fcf0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6523,7 +6523,7 @@ }; name = "release"; }; - FFF71197afe07fe81197afe0 /* checked */ = { + FFF7431903e07f8c431903e0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6553,7 +6553,7 @@ }; name = "checked"; }; - FFF71197b6d07fe81197b6d0 /* profile */ = { + FFF743190ad07f8c43190ad0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6583,7 +6583,7 @@ }; name = "profile"; }; - FFF71280b8007fe81280b800 /* debug */ = { + FFF74401d8007f8c4401d800 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6613,7 +6613,7 @@ }; name = "debug"; }; - FFF71280bef07fe81280bef0 /* release */ = { + FFF74401def07f8c4401def0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6643,7 +6643,7 @@ }; name = "release"; }; - FFF71280c5e07fe81280c5e0 /* checked */ = { + FFF74401e5e07f8c4401e5e0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6673,7 +6673,7 @@ }; name = "checked"; }; - FFF71280ccd07fe81280ccd0 /* profile */ = { + FFF74401ecd07f8c4401ecd0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -6703,7 +6703,7 @@ }; name = "profile"; }; - FFF7119b7c007fe8119b7c00 /* debug */ = { + FFF74402b0007f8c4402b000 /* 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; @@ -6718,7 +6718,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O0", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include", "../../../Include/GeomUtils", "../../Common/src", "../../Common/src/unix", "../../PhysXProfile/src", "../../PhysXProfile/include", "../../GeomUtils/headers", "../../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", "../../GeomUtils/src/ccd", "../../GeomUtils/src", "../../LowLevel/API/include", "../../LowLevel/common/include", "../../LowLevel/common/include/collision", "../../LowLevel/common/include/pipeline", "../../LowLevel/common/include/pipeline/unix", "../../LowLevel/common/include/utils", "../../LowLevel/software/include", "../../LowLevel/software/include/unix", "../../LowLevelDynamics/include", "../../LowLevelDynamics/include/unix", @@ -6733,7 +6733,7 @@ }; name = "debug"; }; - FFF7119b82f07fe8119b82f0 /* checked */ = { + FFF74402b6f07f8c4402b6f0 /* 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; @@ -6748,7 +6748,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include", "../../../Include/GeomUtils", "../../Common/src", "../../Common/src/unix", "../../PhysXProfile/src", "../../PhysXProfile/include", "../../GeomUtils/headers", "../../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", "../../GeomUtils/src/ccd", "../../GeomUtils/src", "../../LowLevel/API/include", "../../LowLevel/common/include", "../../LowLevel/common/include/collision", "../../LowLevel/common/include/pipeline", "../../LowLevel/common/include/pipeline/unix", "../../LowLevel/common/include/utils", "../../LowLevel/software/include", "../../LowLevel/software/include/unix", "../../LowLevelDynamics/include", "../../LowLevelDynamics/include/unix", @@ -6763,7 +6763,7 @@ }; name = "checked"; }; - FFF7119b89e07fe8119b89e0 /* profile */ = { + FFF74402bde07f8c4402bde0 /* 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; @@ -6778,7 +6778,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include", "../../../Include/GeomUtils", "../../Common/src", "../../Common/src/unix", "../../PhysXProfile/src", "../../PhysXProfile/include", "../../GeomUtils/headers", "../../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", "../../GeomUtils/src/ccd", "../../GeomUtils/src", "../../LowLevel/API/include", "../../LowLevel/common/include", "../../LowLevel/common/include/collision", "../../LowLevel/common/include/pipeline", "../../LowLevel/common/include/pipeline/unix", "../../LowLevel/common/include/utils", "../../LowLevel/software/include", "../../LowLevel/software/include/unix", "../../LowLevelDynamics/include", "../../LowLevelDynamics/include/unix", @@ -6793,7 +6793,7 @@ }; name = "profile"; }; - FFF7119b90d07fe8119b90d0 /* release */ = { + FFF74402c4d07f8c4402c4d0 /* 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; @@ -6808,7 +6808,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include", "../../../Include/GeomUtils", "../../Common/src", "../../Common/src/unix", "../../PhysXProfile/src", "../../PhysXProfile/include", "../../GeomUtils/headers", "../../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", "../../GeomUtils/src/ccd", "../../GeomUtils/src", "../../LowLevel/API/include", "../../LowLevel/common/include", "../../LowLevel/common/include/collision", "../../LowLevel/common/include/pipeline", "../../LowLevel/common/include/pipeline/unix", "../../LowLevel/common/include/utils", "../../LowLevel/software/include", "../../LowLevel/software/include/unix", "../../LowLevelDynamics/include", "../../LowLevelDynamics/include/unix", @@ -6823,7 +6823,7 @@ }; name = "release"; }; - FFF7128192007fe812819200 /* debug */ = { + FFF7448278007f8c44827800 /* 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; @@ -6838,7 +6838,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O0", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../Common/src/unix", "../../GeomUtils/headers", "../../GeomUtils/src", "../../Common/src", "../../LowLevel/API/include", "../../LowLevel/common/include/utils", "../../LowLevel/common/include/pipeline", "../../LowLevelAABB/include", "../../LowLevelAABB/src", "../../GpuBroadPhase/include", "../../GpuBroadPhase/src", "../../LowLevelAABB/unix/include", @@ -6853,7 +6853,7 @@ }; name = "debug"; }; - FFF7128198f07fe8128198f0 /* checked */ = { + FFF744827ef07f8c44827ef0 /* 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; @@ -6868,7 +6868,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../Common/src/unix", "../../GeomUtils/headers", "../../GeomUtils/src", "../../Common/src", "../../LowLevel/API/include", "../../LowLevel/common/include/utils", "../../LowLevel/common/include/pipeline", "../../LowLevelAABB/include", "../../LowLevelAABB/src", "../../GpuBroadPhase/include", "../../GpuBroadPhase/src", "../../LowLevelAABB/unix/include", @@ -6883,7 +6883,7 @@ }; name = "checked"; }; - FFF712819fe07fe812819fe0 /* profile */ = { + FFF7448285e07f8c448285e0 /* 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; @@ -6898,7 +6898,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../Common/src/unix", "../../GeomUtils/headers", "../../GeomUtils/src", "../../Common/src", "../../LowLevel/API/include", "../../LowLevel/common/include/utils", "../../LowLevel/common/include/pipeline", "../../LowLevelAABB/include", "../../LowLevelAABB/src", "../../GpuBroadPhase/include", "../../GpuBroadPhase/src", "../../LowLevelAABB/unix/include", @@ -6913,7 +6913,7 @@ }; name = "profile"; }; - FFF71281a6d07fe81281a6d0 /* release */ = { + FFF744828cd07f8c44828cd0 /* 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; @@ -6928,7 +6928,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../Common/src/unix", "../../GeomUtils/headers", "../../GeomUtils/src", "../../Common/src", "../../LowLevel/API/include", "../../LowLevel/common/include/utils", "../../LowLevel/common/include/pipeline", "../../LowLevelAABB/include", "../../LowLevelAABB/src", "../../GpuBroadPhase/include", "../../GpuBroadPhase/src", "../../LowLevelAABB/unix/include", @@ -6943,7 +6943,7 @@ }; name = "release"; }; - FFF7119c26007fe8119c2600 /* debug */ = { + FFF744034a007f8c44034a00 /* 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; @@ -6958,7 +6958,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O0", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include", "../../../Include/GeomUtils", "../../Common/src", "../../Common/src/unix", "../../PhysXProfile/src", "../../PhysXProfile/include", "../../GeomUtils/src/contact", "../../LowLevel/API/include", "../../LowLevel/common/include", "../../LowLevel/common/include/pipeline", "../../LowLevel/common/include/pipeline/unix", "../../LowLevel/common/include/math", "../../LowLevel/common/include/utils", "../../LowLevel/software/include", "../../LowLevel/software/include/unix", "../../LowLevelDynamics/include", "../../LowLevelDynamics/src", "../../LowLevelDynamics/include/unix", @@ -6973,7 +6973,7 @@ }; name = "debug"; }; - FFF7119c2cf07fe8119c2cf0 /* checked */ = { + FFF7440350f07f8c440350f0 /* 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; @@ -6988,7 +6988,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include", "../../../Include/GeomUtils", "../../Common/src", "../../Common/src/unix", "../../PhysXProfile/src", "../../PhysXProfile/include", "../../GeomUtils/src/contact", "../../LowLevel/API/include", "../../LowLevel/common/include", "../../LowLevel/common/include/pipeline", "../../LowLevel/common/include/pipeline/unix", "../../LowLevel/common/include/math", "../../LowLevel/common/include/utils", "../../LowLevel/software/include", "../../LowLevel/software/include/unix", "../../LowLevelDynamics/include", "../../LowLevelDynamics/src", "../../LowLevelDynamics/include/unix", @@ -7003,7 +7003,7 @@ }; name = "checked"; }; - FFF7119c33e07fe8119c33e0 /* profile */ = { + FFF7440357e07f8c440357e0 /* 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; @@ -7018,7 +7018,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include", "../../../Include/GeomUtils", "../../Common/src", "../../Common/src/unix", "../../PhysXProfile/src", "../../PhysXProfile/include", "../../GeomUtils/src/contact", "../../LowLevel/API/include", "../../LowLevel/common/include", "../../LowLevel/common/include/pipeline", "../../LowLevel/common/include/pipeline/unix", "../../LowLevel/common/include/math", "../../LowLevel/common/include/utils", "../../LowLevel/software/include", "../../LowLevel/software/include/unix", "../../LowLevelDynamics/include", "../../LowLevelDynamics/src", "../../LowLevelDynamics/include/unix", @@ -7033,7 +7033,7 @@ }; name = "profile"; }; - FFF7119c3ad07fe8119c3ad0 /* release */ = { + FFF744035ed07f8c44035ed0 /* 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; @@ -7048,7 +7048,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include/common", "../../../Include/geometry", "../../../Include", "../../../Include/GeomUtils", "../../Common/src", "../../Common/src/unix", "../../PhysXProfile/src", "../../PhysXProfile/include", "../../GeomUtils/src/contact", "../../LowLevel/API/include", "../../LowLevel/common/include", "../../LowLevel/common/include/pipeline", "../../LowLevel/common/include/pipeline/unix", "../../LowLevel/common/include/math", "../../LowLevel/common/include/utils", "../../LowLevel/software/include", "../../LowLevel/software/include/unix", "../../LowLevelDynamics/include", "../../LowLevelDynamics/src", "../../LowLevelDynamics/include/unix", @@ -7063,7 +7063,7 @@ }; name = "release"; }; - FFF71380a8007fe81380a800 /* debug */ = { + FFF74403e2007f8c4403e200 /* 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; @@ -7078,7 +7078,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O0", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include", "../../../Include/common", "../../Common/src", "../../LowLevelCloth/include", "../../LowLevelCloth/src", "../../../../PxShared/src/NvSimd/include", @@ -7093,7 +7093,7 @@ }; name = "debug"; }; - FFF71380aef07fe81380aef0 /* checked */ = { + FFF74403e8f07f8c4403e8f0 /* 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; @@ -7108,7 +7108,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include", "../../../Include/common", "../../Common/src", "../../LowLevelCloth/include", "../../LowLevelCloth/src", "../../../../PxShared/src/NvSimd/include", @@ -7123,7 +7123,7 @@ }; name = "checked"; }; - FFF71380b5e07fe81380b5e0 /* profile */ = { + FFF74403efe07f8c4403efe0 /* 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; @@ -7138,7 +7138,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include", "../../../Include/common", "../../Common/src", "../../LowLevelCloth/include", "../../LowLevelCloth/src", "../../../../PxShared/src/NvSimd/include", @@ -7153,7 +7153,7 @@ }; name = "profile"; }; - FFF71380bcd07fe81380bcd0 /* release */ = { + FFF74403f6d07f8c4403f6d0 /* 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; @@ -7168,7 +7168,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include", "../../../Include/common", "../../Common/src", "../../LowLevelCloth/include", "../../LowLevelCloth/src", "../../../../PxShared/src/NvSimd/include", @@ -7183,7 +7183,7 @@ }; name = "release"; }; - FFF7119cc0007fe8119cc000 /* debug */ = { + FFF7448314007f8c44831400 /* 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; @@ -7198,7 +7198,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O0", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O0", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../Common/src", "../../LowLevelParticles/include", "../../LowLevelParticles/src", "../../LowLevel/API/include", "../../LowLevel/common/include/utils", "../../GeomUtils/src", "../../GeomUtils/src/convex", "../../GeomUtils/src/hf", "../../GeomUtils/src/mesh", "../../GeomUtils/headers", @@ -7213,7 +7213,7 @@ }; name = "debug"; }; - FFF7119cc6f07fe8119cc6f0 /* checked */ = { + FFF744831af07f8c44831af0 /* 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; @@ -7228,7 +7228,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-g3", "-gdwarf-2", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../Common/src", "../../LowLevelParticles/include", "../../LowLevelParticles/src", "../../LowLevel/API/include", "../../LowLevel/common/include/utils", "../../GeomUtils/src", "../../GeomUtils/src/convex", "../../GeomUtils/src/hf", "../../GeomUtils/src/mesh", "../../GeomUtils/headers", @@ -7243,7 +7243,7 @@ }; name = "checked"; }; - FFF7119ccde07fe8119ccde0 /* profile */ = { + FFF7448321e07f8c448321e0 /* 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; @@ -7258,7 +7258,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../Common/src", "../../LowLevelParticles/include", "../../LowLevelParticles/src", "../../LowLevel/API/include", "../../LowLevel/common/include/utils", "../../GeomUtils/src", "../../GeomUtils/src/convex", "../../GeomUtils/src/hf", "../../GeomUtils/src/mesh", "../../GeomUtils/headers", @@ -7273,7 +7273,7 @@ }; name = "profile"; }; - FFF7119cd4d07fe8119cd4d0 /* release */ = { + FFF7448328d07f8c448328d0 /* 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; @@ -7288,7 +7288,7 @@ ); OTHER_CFLAGS = ( - "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-O3", "-fno-strict-aliasing", + "-pipe", "-mmacosx-version-min=10.7", "-msse2", "-ffast-math", "-fno-exceptions", "-fno-rtti", "-fvisibility=hidden", "-fvisibility-inlines-hidden", "-Werror", "-Wall", "-Wextra", "-fstrict-aliasing", "-Wstrict-aliasing=2", "-pedantic", "-Weverything", "-Wno-documentation-deprecated-sync", "-Wno-documentation-unknown-command", "-Wno-float-equal", "-Wno-padded", "-Wno-weak-vtables", "-Wno-cast-align", "-Wno-conversion", "-Wno-missing-variable-declarations", "-Wno-shift-sign-overflow", "-Wno-exit-time-destructors", "-Wno-global-constructors", "-Wno-missing-prototypes", "-Wno-unreachable-code", "-Wno-unused-macros", "-Wno-used-but-marked-unused", "-Wno-weak-template-vtables", "-Wno-invalid-offsetof", "-Wno-c++11-extensions", "-O3", "-fno-strict-aliasing", ); HEADER_SEARCH_PATHS = ( "../../Common/include", "../../../../PxShared/include", "../../../../PxShared/src/foundation/include", "../../../../PxShared/src/fastxml/include", "../../../../PxShared/src/pvd/include", "../../../Include", "../../../Include/common", "../../../Include/geometry", "../../../Include/GeomUtils", "../../Common/src", "../../LowLevelParticles/include", "../../LowLevelParticles/src", "../../LowLevel/API/include", "../../LowLevel/common/include/utils", "../../GeomUtils/src", "../../GeomUtils/src/convex", "../../GeomUtils/src/hf", "../../GeomUtils/src/mesh", "../../GeomUtils/headers", @@ -7303,7 +7303,7 @@ }; name = "release"; }; - FFF71104c0007fe81104c000 /* debug */ = { + FFF7440462007f8c44046200 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -7333,7 +7333,7 @@ }; name = "debug"; }; - FFF71104c6f07fe81104c6f0 /* release */ = { + FFF7440468f07f8c440468f0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -7363,7 +7363,7 @@ }; name = "release"; }; - FFF71104cde07fe81104cde0 /* checked */ = { + FFF744046fe07f8c44046fe0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -7393,7 +7393,7 @@ }; name = "checked"; }; - FFF71104d4d07fe81104d4d0 /* profile */ = { + FFF7440476d07f8c440476d0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -7423,7 +7423,7 @@ }; name = "profile"; }; - FFF7128206007fe812820600 /* debug */ = { + FFF745805c007f8c45805c00 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -7453,7 +7453,7 @@ }; name = "debug"; }; - FFF712820cf07fe812820cf0 /* release */ = { + FFF7458062f07f8c458062f0 /* release */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -7483,7 +7483,7 @@ }; name = "release"; }; - FFF7128213e07fe8128213e0 /* checked */ = { + FFF7458069e07f8c458069e0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -7513,7 +7513,7 @@ }; name = "checked"; }; - FFF712821ad07fe812821ad0 /* profile */ = { + FFF7458070d07f8c458070d0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1)"; ARCHS_STANDARD_64_BIT_PRE_XCODE_3_1 = x86_64; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; SDKROOT=macosx; @@ -7543,25 +7543,25 @@ }; name = "profile"; }; - FFF3110734007fe811073400 /* release */ = { + FFF34582bc007f8c4582bc00 /* release */ = { isa = XCBuildConfiguration; buildSettings = { }; name = "release"; }; - FFF311073af07fe811073af0 /* debug */ = { + FFF34582c2f07f8c4582c2f0 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { }; name = "debug"; }; - FFF3110741e07fe8110741e0 /* checked */ = { + FFF34582c9e07f8c4582c9e0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { }; name = "checked"; }; - FFF3110748d07fe8110748d0 /* profile */ = { + FFF34582d0d07f8c4582d0d0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { }; @@ -7570,34 +7570,34 @@ /* End XCBuildConfiguration section */ /* Begin PBXProject section */ - FFF910f1e4907fe810f1e490 /* Project object */ = { + FFF942c823b07f8c42c823b0 /* Project object */ = { isa = PBXProject; - buildConfigurationList = FFF610f1e4907fe810f1e490 /* Build configuration list for PBXProject PhysX */; + buildConfigurationList = FFF642c823b07f8c42c823b0 /* Build configuration list for PBXProject PhysX */; compatibilityVersion = "Xcode 3.2"; hasScannedForEncodings = 1; - mainGroup = FFFB10f1e4f87fe810f1e4f8 /* PhysX */; + mainGroup = FFFB42c824187f8c42c82418 /* PhysX */; targets = ( - FFFA1266ac007fe81266ac00, - FFFA126754e07fe8126754e0, - FFFA126728307fe812672830, - FFFA12683c607fe812683c60, - FFFA12694cb07fe812694cb0, - FFFA126992107fe812699210, - FFFA134ec9b07fe8134ec9b0, - FFFA12128d507fe812128d50, - FFFA121657c07fe8121657c0, - FFFA12609f207fe812609f20, - FFFA125b5b707fe8125b5b70, - FFFA1261e8907fe81261e890, - FFFA125e9ce07fe8125e9ce0, - FFFA130090807fe813009080, - FFFA12708bc07fe812708bc0, - FFFA132a0da07fe8132a0da0, - FFFA1265b4d07fe81265b4d0, + FFFA45504df07f8c45504df0, + FFFA4550d8c07f8c4550d8c0, + FFFA4550ed307f8c4550ed30, + FFFA4551eaf07f8c4551eaf0, + FFFA455314507f8c45531450, + FFFA455359d07f8c455359d0, + FFFA4553a1807f8c4553a180, + FFFA4389f1b07f8c4389f1b0, + FFFA438816407f8c43881640, + FFFA43c33f507f8c43c33f50, + FFFA43c513407f8c43c51340, + FFFA43ef63707f8c43ef6370, + FFFA43c7c3807f8c43c7c380, + FFFA43ca21407f8c43ca2140, + FFFA43f22f607f8c43f22f60, + FFFA43cdb0507f8c43cdb050, + FFFA455011f07f8c455011f0, ); }; /* End PBXProject section */ }; - rootObject = FFF910f1e4907fe810f1e490 /* Project object */; + rootObject = FFF942c823b07f8c42c823b0 /* Project object */; } |