aboutsummaryrefslogtreecommitdiff
path: root/PhysX_3.4/Source
diff options
context:
space:
mode:
authorSheikh Dawood Abdul Ajees <[email protected]>2018-09-25 11:33:48 -0500
committerSheikh Dawood Abdul Ajees <[email protected]>2018-09-25 11:33:48 -0500
commitad993f2926db6fe4ba2c75e17c4f099d9d853038 (patch)
tree426f831e7aa870a4704b8dd082538ff292e751f9 /PhysX_3.4/Source
parentPhysX 3.4, APEX 1.4 patch release @24698370 (diff)
downloadphysx-3.4-ad993f2926db6fe4ba2c75e17c4f099d9d853038.tar.xz
physx-3.4-ad993f2926db6fe4ba2c75e17c4f099d9d853038.zip
PhysX 3.4, APEX 1.4 patch release @24990349
Diffstat (limited to 'PhysX_3.4/Source')
-rw-r--r--PhysX_3.4/Source/GeomUtils/src/common/GuBarycentricCoordinates.cpp4
-rw-r--r--PhysX_3.4/Source/GeomUtils/src/hf/GuHeightField.h12
-rw-r--r--PhysX_3.4/Source/LowLevel/common/src/pipeline/PxcNpBatch.cpp13
-rw-r--r--PhysX_3.4/Source/LowLevel/software/src/PxsIslandSim.cpp39
-rw-r--r--PhysX_3.4/Source/LowLevelAABB/include/BpBroadPhase.h8
-rw-r--r--PhysX_3.4/Source/LowLevelAABB/src/BpBroadPhase.cpp155
-rw-r--r--PhysX_3.4/Source/LowLevelAABB/src/BpBroadPhaseMBP.cpp31
-rw-r--r--PhysX_3.4/Source/LowLevelAABB/src/BpBroadPhaseMBP.h8
-rw-r--r--PhysX_3.4/Source/LowLevelAABB/src/BpBroadPhaseSap.cpp19
-rw-r--r--PhysX_3.4/Source/LowLevelAABB/src/BpBroadPhaseSap.h15
-rw-r--r--PhysX_3.4/Source/LowLevelAABB/src/BpSimpleAABBManager.cpp10
-rw-r--r--PhysX_3.4/Source/PhysX/src/buffering/ScbArticulationJoint.h1
-rw-r--r--PhysX_3.4/Source/PhysX/src/buffering/ScbBody.h1
-rw-r--r--PhysX_3.4/Source/PhysX/src/buffering/ScbShape.cpp5
-rw-r--r--PhysX_3.4/Source/PhysX/src/buffering/ScbShape.h1
-rw-r--r--PhysX_3.4/Source/PhysX/src/gpu/PxPhysXGpuModuleLoader.cpp22
-rw-r--r--PhysX_3.4/Source/PhysX/src/windows/NpWindowsDelayLoadHook.cpp16
-rw-r--r--PhysX_3.4/Source/PhysXGpu/include/PxPhysXGpu.h8
-rw-r--r--PhysX_3.4/Source/SimulationController/src/ScScene.cpp3
-rw-r--r--PhysX_3.4/Source/compiler/xcode_ios/PhysX.xcodeproj/project.pbxproj8324
-rw-r--r--PhysX_3.4/Source/compiler/xcode_ios64/PhysX.xcodeproj/project.pbxproj8324
-rw-r--r--PhysX_3.4/Source/compiler/xcode_osx32/PhysX.xcodeproj/project.pbxproj8324
-rw-r--r--PhysX_3.4/Source/compiler/xcode_osx64/PhysX.xcodeproj/project.pbxproj8324
23 files changed, 16875 insertions, 16792 deletions
diff --git a/PhysX_3.4/Source/GeomUtils/src/common/GuBarycentricCoordinates.cpp b/PhysX_3.4/Source/GeomUtils/src/common/GuBarycentricCoordinates.cpp
index 9ba320f9..726353dd 100644
--- a/PhysX_3.4/Source/GeomUtils/src/common/GuBarycentricCoordinates.cpp
+++ b/PhysX_3.4/Source/GeomUtils/src/common/GuBarycentricCoordinates.cpp
@@ -40,7 +40,9 @@ void Gu::barycentricCoordinates(const Vec3VArg p, const Vec3VArg a, const Vec3VA
const Vec3V d = V3Sub(v1, v0);
const FloatV denominator = V3Dot(d, d);
const FloatV numerator = V3Dot(V3Neg(v0), d);
- v = FDiv(numerator, denominator);
+ const FloatV zero = FZero();
+ const FloatV denom = FSel(FIsGrtr(denominator, zero), FRecip(denominator), zero);
+ v = FMul(numerator, denom);
}
void Gu::barycentricCoordinates(const Ps::aos::Vec3VArg p, const Ps::aos::Vec3VArg a, const Ps::aos::Vec3VArg b, const Ps::aos::Vec3VArg c, Ps::aos::FloatV& v, Ps::aos::FloatV& w)
diff --git a/PhysX_3.4/Source/GeomUtils/src/hf/GuHeightField.h b/PhysX_3.4/Source/GeomUtils/src/hf/GuHeightField.h
index 64487852..f31d3ec1 100644
--- a/PhysX_3.4/Source/GeomUtils/src/hf/GuHeightField.h
+++ b/PhysX_3.4/Source/GeomUtils/src/hf/GuHeightField.h
@@ -852,7 +852,8 @@ PX_INLINE void Gu::HeightField::getTriangleAdjacencyIndices(PxU32 triangleIndex,
if((cell / mData.columns != mData.rows - 2))
{
- adjacencyIndex2 = ((cell + mData.columns) * 2) + 1;
+ const PxU32 tMod = isZerothVertexShared(cell + mData.columns) ? 1u : 0u;
+ adjacencyIndex2 = ((cell + mData.columns) * 2) + tMod;
}
}
else
@@ -868,7 +869,8 @@ PX_INLINE void Gu::HeightField::getTriangleAdjacencyIndices(PxU32 triangleIndex,
if(cell >= mData.columns - 1)
{
- adjacencyIndex2 = (cell - mData.columns) * 2;
+ const PxU32 tMod = isZerothVertexShared(cell - mData.columns) ? 0u : 1u;
+ adjacencyIndex2 = ((cell - mData.columns) * 2) + tMod;
}
}
}
@@ -890,7 +892,8 @@ PX_INLINE void Gu::HeightField::getTriangleAdjacencyIndices(PxU32 triangleIndex,
if(cell >= mData.columns - 1)
{
- adjacencyIndex0 = ((cell - (mData.columns)) * 2) + 1;
+ const PxU32 tMod = isZerothVertexShared(cell - mData.columns) ? 0u : 1u;
+ adjacencyIndex0 = ((cell - (mData.columns)) * 2) + tMod;
}
if((cell % (mData.columns) != 0))
@@ -906,7 +909,8 @@ PX_INLINE void Gu::HeightField::getTriangleAdjacencyIndices(PxU32 triangleIndex,
if((cell / mData.columns != mData.rows - 2))
{
- adjacencyIndex0 = (cell + (mData.columns)) * 2;
+ const PxU32 tMod = isZerothVertexShared(cell + mData.columns) ? 1u : 0u;
+ adjacencyIndex0 = (cell + (mData.columns)) * 2 + tMod;
}
if(cell % (mData.columns) < (mData.columns - 2))
diff --git a/PhysX_3.4/Source/LowLevel/common/src/pipeline/PxcNpBatch.cpp b/PhysX_3.4/Source/LowLevel/common/src/pipeline/PxcNpBatch.cpp
index 3b2d98c1..1700a765 100644
--- a/PhysX_3.4/Source/LowLevel/common/src/pipeline/PxcNpBatch.cpp
+++ b/PhysX_3.4/Source/LowLevel/common/src/pipeline/PxcNpBatch.cpp
@@ -91,8 +91,11 @@ static bool copyBuffers(PxsContactManagerOutput& cmOutput, Gu::Cache& cache, Pxc
ret = true;
PxU8* oldPatches = cmOutput.contactPatches;
PxU8* oldContacts = cmOutput.contactPoints;
+ PxReal* oldForces = cmOutput.contactForces;
PxU32 forceSize = cmOutput.nbContacts * sizeof(PxReal);
+ if(isMeshType)
+ forceSize += cmOutput.nbContacts * sizeof(PxU32);
PxU8* PX_RESTRICT contactPatches = NULL;
PxU8* PX_RESTRICT contactPoints = NULL;
@@ -127,8 +130,6 @@ static bool copyBuffers(PxsContactManagerOutput& cmOutput, Gu::Cache& cache, Pxc
if(forceSize)
{
- forceSize = isMeshType ? (forceSize * 2) : forceSize;
-
index = PxU32(Ps::atomicAdd(&context.mForceAndIndiceStreamPool->mSharedDataIndex, PxI32(forceSize)));
if(context.mForceAndIndiceStreamPool->isOverflown())
@@ -150,6 +151,10 @@ static bool copyBuffers(PxsContactManagerOutput& cmOutput, Gu::Cache& cache, Pxc
{
PxMemCopy(contactPatches, oldPatches, patchSize);
PxMemCopy(contactPoints, oldContacts, contactSize);
+ if (isMeshType)
+ {
+ PxMemCopy(forceBuffer + cmOutput.nbContacts, oldForces + cmOutput.nbContacts, sizeof(PxU32) * cmOutput.nbContacts);
+ }
}
}
else
@@ -164,6 +169,10 @@ static bool copyBuffers(PxsContactManagerOutput& cmOutput, Gu::Cache& cache, Pxc
contactPoints = data + cmOutput.nbPatches * sizeof(PxContactPatch);
PxMemCopy(data, oldPatches, oldSize);
+ if (isMeshType)
+ {
+ PxMemCopy(forceBuffer + cmOutput.nbContacts, oldForces + cmOutput.nbContacts, sizeof(PxU32) * cmOutput.nbContacts);
+ }
}
if(forceSize)
diff --git a/PhysX_3.4/Source/LowLevel/software/src/PxsIslandSim.cpp b/PhysX_3.4/Source/LowLevel/software/src/PxsIslandSim.cpp
index 2108fb9f..94d570fa 100644
--- a/PhysX_3.4/Source/LowLevel/software/src/PxsIslandSim.cpp
+++ b/PhysX_3.4/Source/LowLevel/software/src/PxsIslandSim.cpp
@@ -1330,10 +1330,13 @@ bool IslandSim::findRoute(NodeIndex startNode, NodeIndex targetNode, IslandId is
}
}
+#define IG_LIMIT_DIRTY_NODES 0
+
void IslandSim::processLostEdges(Ps::Array<NodeIndex>& destroyedNodes, bool allowDeactivation, bool permitKinematicDeactivation,
PxU32 dirtyNodeLimit)
{
+ PX_UNUSED(dirtyNodeLimit);
PX_PROFILE_ZONE("Basic.processLostEdges", getContextId());
//At this point, all nodes and edges are activated.
@@ -1416,18 +1419,34 @@ void IslandSim::processLostEdges(Ps::Array<NodeIndex>& destroyedNodes, bool allo
if (allowDeactivation)
{
PX_PROFILE_ZONE("Basic.findPathsAndBreakIslands", getContextId());
- Cm::BitMap::CircularIterator iter(mDirtyMap, mLastMapIndex);
+
//KS - process only this many dirty nodes, deferring future dirty nodes to subsequent frames.
//This means that it may take several frames for broken edges to trigger islands to completely break but this is better
//than triggering large performance spikes.
- const PxU32 MaxCount = dirtyNodeLimit;
-
+#if IG_LIMIT_DIRTY_NODES
+ Cm::BitMap::CircularIterator iter(mDirtyMap, mLastMapIndex);
+ const PxU32 MaxCount = dirtyNodeLimit;// +10000000;
+ PxU32 lastMapIndex = mLastMapIndex;
PxU32 count = 0;
+#else
+ Cm::BitMap::Iterator iter(mDirtyMap);
+#endif
+
+
PxU32 dirtyIdx;
- while ((dirtyIdx = iter.getNext()) != Cm::BitMap::CircularIterator::DONE && (count++ < MaxCount))
+
+#if IG_LIMIT_DIRTY_NODES
+ while ((dirtyIdx = iter.getNext()) != Cm::BitMap::CircularIterator::DONE
+ && (count++ < MaxCount)
+#else
+ while ((dirtyIdx = iter.getNext()) != Cm::BitMap::Iterator::DONE
+#endif
+ )
{
- mLastMapIndex = dirtyIdx + 1;
+#if IG_LIMIT_DIRTY_NODES
+ lastMapIndex = dirtyIdx + 1;
+#endif
//Process dirty nodes. Figure out if we can make our way from the dirty node to the root.
mPriorityQueue.clear(); //Clear the queue used for traversal
@@ -1652,11 +1671,21 @@ void IslandSim::processLostEdges(Ps::Array<NodeIndex>& destroyedNodes, bool allo
}
dirtyNode.clearDirty();
+#if IG_LIMIT_DIRTY_NODES
mDirtyMap.reset(dirtyIdx);
+#endif
}
+
+
+#if IG_LIMIT_DIRTY_NODES
+ mLastMapIndex = lastMapIndex;
if (count < MaxCount)
mLastMapIndex = 0;
+#else
+ mDirtyMap.clear();
+#endif
+
//mDirtyNodes.forceSize_Unsafe(0);
}
diff --git a/PhysX_3.4/Source/LowLevelAABB/include/BpBroadPhase.h b/PhysX_3.4/Source/LowLevelAABB/include/BpBroadPhase.h
index b69825dd..a2603361 100644
--- a/PhysX_3.4/Source/LowLevelAABB/include/BpBroadPhase.h
+++ b/PhysX_3.4/Source/LowLevelAABB/include/BpBroadPhase.h
@@ -225,7 +225,7 @@ public:
/**
\brief Shutdown of the broadphase.
*/
- virtual void destroy() = 0;
+ virtual void destroy() = 0;
/**
\brief Update the broadphase and compute the lists of created/deleted pairs.
@@ -311,10 +311,12 @@ public:
virtual bool isValid(const BroadPhaseUpdateData& updateData) const = 0;
#endif
- virtual BroadPhasePair* getBroadPhasePairs() const = 0;
+ virtual BroadPhasePair* getBroadPhasePairs() const = 0;
- virtual void deletePairs() = 0;
+ virtual void deletePairs() = 0;
+ // PT: for unit-testing the non-GPU versions
+ virtual void singleThreadedUpdate(PxcScratchAllocator* /*scratchAllocator*/, const BroadPhaseUpdateData& /*updateData*/){}
};
} //namespace Bp
diff --git a/PhysX_3.4/Source/LowLevelAABB/src/BpBroadPhase.cpp b/PhysX_3.4/Source/LowLevelAABB/src/BpBroadPhase.cpp
index 5ced7e0e..ed11420b 100644
--- a/PhysX_3.4/Source/LowLevelAABB/src/BpBroadPhase.cpp
+++ b/PhysX_3.4/Source/LowLevelAABB/src/BpBroadPhase.cpp
@@ -32,9 +32,11 @@
#include "BpBroadPhaseMBP.h"
#include "PxSceneDesc.h"
#include "BpSimpleAABBManager.h"
+#include "CmBitMap.h"
using namespace physx;
using namespace Bp;
+using namespace Cm;
BroadPhase* BroadPhase::create(
const PxBroadPhaseType::Enum bpType,
@@ -58,119 +60,100 @@ bool BroadPhaseUpdateData::isValid(const BroadPhaseUpdateData& updateData, const
return (updateData.isValid() && bp.isValid(updateData));
}
-bool BroadPhaseUpdateData::isValid() const
+static bool testHandles(PxU32 size, const BpHandle* handles, const PxU32 capacity, const Bp::FilterGroup::Enum* groups, const PxBounds3* bounds, BitMap& bitmap)
{
- const BpHandle* created=getCreatedHandles();
- const BpHandle* updated=getUpdatedHandles();
- const BpHandle* removed=getRemovedHandles();
- const PxU32 createdSize=getNumCreatedHandles();
- const PxU32 updatedSize=getNumUpdatedHandles();
- const PxU32 removedSize=getNumRemovedHandles();
- const PxBounds3* bounds=getAABBs();
- const PxU32 boxesCapacity=getCapacity();
-
- if(NULL==created && createdSize>0)
- {
- return false;
- }
- if(NULL==updated && updatedSize>0)
- {
+ if(!handles && size)
return false;
- }
- if(NULL==removed && removedSize>0)
- {
- return false;
- }
- ValType minVal=0;
- ValType maxVal=0xffffffff;
- PX_UNUSED(minVal);
- PX_UNUSED(maxVal);
+/* ValType minVal=0;
+ ValType maxVal=0xffffffff;*/
- for(PxU32 i=0;i<createdSize;i++)
+ for(PxU32 i=0;i<size;i++)
{
- if(created[i]>=boxesCapacity)
+ const BpHandle h = handles[i];
+
+ if(h>=capacity)
return false;
- //Created array in ascending order of id.
- if(i>0 && (created[i] < created[i-1]))
- {
+ // Array in ascending order of id.
+ if(i>0 && (h < handles[i-1]))
return false;
- }
- for(PxU32 j=0;j<3;j++)
- {
- //Max must be greater than min.
- if(bounds[created[i]].minimum[j]>bounds[created[i]].maximum[j])
- return false;
+ if(groups && groups[h]==FilterGroup::eINVALID)
+ return false;
+
+ bitmap.set(h);
+
+ if(bounds)
+ {
+ for(PxU32 j=0;j<3;j++)
+ {
+ //Max must be greater than min.
+ if(bounds[h].minimum[j]>bounds[h].maximum[j])
+ return false;
#if 0
- //Bounds have an upper limit.
- if(bounds[created[i]].getMax(j)>=maxVal)
- return false;
+ //Bounds have an upper limit.
+ if(bounds[created[i]].getMax(j)>=maxVal)
+ return false;
- //Bounds have a lower limit.
- if(bounds[created[i]].getMin(j)<=minVal)
- return false;
+ //Bounds have a lower limit.
+ if(bounds[created[i]].getMin(j)<=minVal)
+ return false;
- //Max must be odd.
- if(4 != (bounds[created[i]].getMax(j) & 4))
- return false;
+ //Max must be odd.
+ if(4 != (bounds[created[i]].getMax(j) & 4))
+ return false;
- //Min must be even.
- if(0 != (bounds[created[i]].getMin(j) & 4))
- return false;
+ //Min must be even.
+ if(0 != (bounds[created[i]].getMin(j) & 4))
+ return false;
#endif
+ }
}
}
+ return true;
+}
- for(PxU32 i=0;i<updatedSize;i++)
+static bool testBitmap(const BitMap& bitmap, PxU32 size, const BpHandle* handles)
+{
+ while(size--)
{
- if(updated[i]>=boxesCapacity)
+ const BpHandle h = *handles++;
+ if(bitmap.test(h))
return false;
+ }
+ return true;
+}
- //Updated array in ascending order of id
- if(i>0 && (updated[i] < updated[i-1]))
- {
- return false;
- }
-
- for(PxU32 j=0;j<3;j++)
- {
- //Max must be greater than min.
- if(bounds[updated[i]].minimum[j]>bounds[updated[i]].maximum[j])
- return false;
-#if 0
- //Bounds have an upper limit.
- if(bounds[updated[i]].getMax(j)>=maxVal)
- return false;
-
- //Bounds have a lower limit.
- if(bounds[updated[i]].getMin(j)<=minVal)
- return false;
+bool BroadPhaseUpdateData::isValid() const
+{
+ const PxBounds3* bounds = getAABBs();
+ const PxU32 boxesCapacity = getCapacity();
+ const Bp::FilterGroup::Enum* groups = getGroups();
- //Max must be odd.
- if(4 != (bounds[updated[i]].getMax(j) & 4))
- return false;
+ BitMap createdBitmap; createdBitmap.resizeAndClear(boxesCapacity);
+ BitMap updatedBitmap; updatedBitmap.resizeAndClear(boxesCapacity);
+ BitMap removedBitmap; removedBitmap.resizeAndClear(boxesCapacity);
- //Min must be even.
- if(0 != (bounds[updated[i]].getMin(j) & 4))
- return false;
-#endif
- }
- }
+ if(!testHandles(getNumCreatedHandles(), getCreatedHandles(), boxesCapacity, groups, bounds, createdBitmap))
+ return false;
+ if(!testHandles(getNumUpdatedHandles(), getUpdatedHandles(), boxesCapacity, groups, bounds, updatedBitmap))
+ return false;
+ if(!testHandles(getNumRemovedHandles(), getRemovedHandles(), boxesCapacity, NULL, NULL, removedBitmap))
+ return false;
- for(PxU32 i=0;i<removedSize;i++)
+ if(1)
{
- if(removed[i]>=boxesCapacity)
+ // Created/updated
+ if(!testBitmap(createdBitmap, getNumUpdatedHandles(), getUpdatedHandles()))
return false;
-
- //Removed array in ascending order of id
- if(i>0 && (removed[i] < removed[i-1]))
- {
+ // Created/removed
+ if(!testBitmap(createdBitmap, getNumRemovedHandles(), getRemovedHandles()))
+ return false;
+ // Updated/removed
+ if(!testBitmap(updatedBitmap, getNumRemovedHandles(), getRemovedHandles()))
return false;
- }
}
-
return true;
}
#endif
diff --git a/PhysX_3.4/Source/LowLevelAABB/src/BpBroadPhaseMBP.cpp b/PhysX_3.4/Source/LowLevelAABB/src/BpBroadPhaseMBP.cpp
index 313e27f3..cdaa2145 100644
--- a/PhysX_3.4/Source/LowLevelAABB/src/BpBroadPhaseMBP.cpp
+++ b/PhysX_3.4/Source/LowLevelAABB/src/BpBroadPhaseMBP.cpp
@@ -3354,6 +3354,14 @@ void BroadPhaseMBP::update(const PxU32 numCpuTasks, PxcScratchAllocator* scratch
}
}
+void BroadPhaseMBP::singleThreadedUpdate(PxcScratchAllocator* /*scratchAllocator*/, const BroadPhaseUpdateData& updateData)
+{
+ // PT: TODO: the scratchAllocator isn't actually needed, is it?
+ setUpdateData(updateData);
+ update();
+ postUpdate();
+}
+
static PX_FORCE_INLINE void computeMBPBounds(MBP_AABB& aabb, const PxBounds3* PX_RESTRICT boundsXYZ, const PxReal* PX_RESTRICT contactDistances, const BpHandle index)
{
const PxBounds3& b = boundsXYZ[index];
@@ -3614,23 +3622,24 @@ bool BroadPhaseMBP::isValid(const BroadPhaseUpdateData& updateData) const
const BpHandle* created = updateData.getCreatedHandles();
if(created)
{
+ Ps::HashSet<BpHandle> set;
+ PxU32 nbObjects = mMBP->mMBP_Objects.size();
+ const MBP_Object* PX_RESTRICT objects = mMBP->mMBP_Objects.begin();
+ while(nbObjects--)
+ {
+ if(!(objects->mFlags & MBP_REMOVED))
+ set.insert(objects->mUserID);
+ objects++;
+ }
+
PxU32 nbToGo = updateData.getNumCreatedHandles();
while(nbToGo--)
{
const BpHandle index = *created++;
PX_ASSERT(index<mCapacity);
- PxU32 nbObjects = mMBP->mMBP_Objects.size();
- const MBP_Object* PX_RESTRICT objects = mMBP->mMBP_Objects.begin();
- while(nbObjects--)
- {
- if(!(objects->mFlags & MBP_REMOVED))
- {
- if(objects->mUserID==index)
- return false; // This object has been added already
- }
- objects++;
- }
+ if(set.contains(index))
+ return false; // This object has been added already
}
}
diff --git a/PhysX_3.4/Source/LowLevelAABB/src/BpBroadPhaseMBP.h b/PhysX_3.4/Source/LowLevelAABB/src/BpBroadPhaseMBP.h
index 08f6e771..cfda1d38 100644
--- a/PhysX_3.4/Source/LowLevelAABB/src/BpBroadPhaseMBP.h
+++ b/PhysX_3.4/Source/LowLevelAABB/src/BpBroadPhaseMBP.h
@@ -65,27 +65,21 @@ namespace Bp
// BroadPhase
virtual PxBroadPhaseType::Enum getType() const { return PxBroadPhaseType::eMBP; }
-
virtual void destroy() { delete this; }
-
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 BroadPhasePair* getCreatedPairs();
virtual PxU32 getNbDeletedPairs() const;
virtual BroadPhasePair* getDeletedPairs();
-
virtual void freeBuffers();
-
virtual void shiftOrigin(const PxVec3& shift);
-
#if PX_CHECKED
virtual bool isValid(const BroadPhaseUpdateData& updateData) const;
#endif
-
virtual BroadPhasePair* getBroadPhasePairs() const {return NULL;} //KS - TODO - implement this!!!
virtual void deletePairs(){} //KS - TODO - implement this!!!
+ virtual void singleThreadedUpdate(PxcScratchAllocator* scratchAllocator, const BroadPhaseUpdateData& updateData);
//~BroadPhase
MBPUpdateWorkTask mMBPUpdateWorkTask;
diff --git a/PhysX_3.4/Source/LowLevelAABB/src/BpBroadPhaseSap.cpp b/PhysX_3.4/Source/LowLevelAABB/src/BpBroadPhaseSap.cpp
index e295ca78..53c3dcfe 100644
--- a/PhysX_3.4/Source/LowLevelAABB/src/BpBroadPhaseSap.cpp
+++ b/PhysX_3.4/Source/LowLevelAABB/src/BpBroadPhaseSap.cpp
@@ -461,9 +461,7 @@ void BroadPhaseSap::update(const PxU32 numCpuTasks, PxcScratchAllocator* scratch
if(narrowPhaseUnblockTask)
narrowPhaseUnblockTask->removeReference();
- const bool success = setUpdateData(updateData);
-
- if(success)
+ if(setUpdateData(updateData))
{
mScratchAllocator = scratchAllocator;
@@ -483,6 +481,21 @@ void BroadPhaseSap::update(const PxU32 numCpuTasks, PxcScratchAllocator* scratch
}
}
+void BroadPhaseSap::singleThreadedUpdate(PxcScratchAllocator* scratchAllocator, const BroadPhaseUpdateData& updateData)
+{
+#if PX_CHECKED
+ PX_CHECK_AND_RETURN(scratchAllocator, "BroadPhaseSap::singleThreadedUpdate - scratchAllocator must be non-NULL \n");
+#endif
+
+ if(setUpdateData(updateData))
+ {
+ mScratchAllocator = scratchAllocator;
+ resizeBuffers();
+ update();
+ postUpdate();
+ }
+}
+
bool BroadPhaseSap::setUpdateData(const BroadPhaseUpdateData& updateData)
{
PX_ASSERT(0==mCreatedPairsSize);
diff --git a/PhysX_3.4/Source/LowLevelAABB/src/BpBroadPhaseSap.h b/PhysX_3.4/Source/LowLevelAABB/src/BpBroadPhaseSap.h
index 4ec745db..44f17893 100644
--- a/PhysX_3.4/Source/LowLevelAABB/src/BpBroadPhaseSap.h
+++ b/PhysX_3.4/Source/LowLevelAABB/src/BpBroadPhaseSap.h
@@ -113,33 +113,28 @@ public:
BroadPhaseSap(const PxU32 maxNbBroadPhaseOverlaps, const PxU32 maxNbStaticShapes, const PxU32 maxNbDynamicShapes, PxU64 contextID);
virtual ~BroadPhaseSap();
- virtual void destroy();
+ // BroadPhase
virtual PxBroadPhaseType::Enum getType() const { return PxBroadPhaseType::eSAP; }
-
+ virtual void destroy();
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 BroadPhasePair* getCreatedPairs() { return mCreatedPairsArray; }
virtual PxU32 getNbDeletedPairs() const { return mDeletedPairsSize; }
virtual BroadPhasePair* getDeletedPairs() { return mDeletedPairsArray; }
-
- virtual void resizeBuffers();
virtual void freeBuffers();
-
virtual void shiftOrigin(const PxVec3& shift);
- //~BroadPhase
-
#if PX_CHECKED
virtual bool isValid(const BroadPhaseUpdateData& updateData) const;
#endif
-
virtual BroadPhasePair* getBroadPhasePairs() const {return mPairs.mActivePairs;}
-
virtual void deletePairs();
+ virtual void singleThreadedUpdate(PxcScratchAllocator* scratchAllocator, const BroadPhaseUpdateData& updateData);
+ //~BroadPhase
private:
+ void resizeBuffers();
PxcScratchAllocator* mScratchAllocator;
diff --git a/PhysX_3.4/Source/LowLevelAABB/src/BpSimpleAABBManager.cpp b/PhysX_3.4/Source/LowLevelAABB/src/BpSimpleAABBManager.cpp
index 2e0bc7e0..298f3f00 100644
--- a/PhysX_3.4/Source/LowLevelAABB/src/BpSimpleAABBManager.cpp
+++ b/PhysX_3.4/Source/LowLevelAABB/src/BpSimpleAABBManager.cpp
@@ -2767,6 +2767,9 @@ static void processAggregatePairsParallel(AggPairMap& map, SimpleAABBManager& ma
ProcessAggPairsParallelTask* task = PX_PLACEMENT_NEW(flushPool.allocate(sizeof(ProcessAggPairsParallelTask)), ProcessAggPairsParallelTask)(0, &manager.mMapLock, &manager, &map, taskName);
+
+ PxU32 startIdx = pairTasks.size();
+
for (AggPairMap::Iterator iter = map.getIterator(); !iter.done(); ++iter)
{
task->mAggPairs[task->mNbPairs] = iter->first;
@@ -2775,7 +2778,6 @@ static void processAggregatePairsParallel(AggPairMap& map, SimpleAABBManager& ma
{
pairTasks.pushBack(task);
task->setContinuation(continuation);
- task->removeReference();
//task->runInternal();
task = PX_PLACEMENT_NEW(flushPool.allocate(sizeof(ProcessAggPairsParallelTask)), ProcessAggPairsParallelTask)(0, &manager.mMapLock, &manager, &map, taskName);
}
@@ -2783,6 +2785,12 @@ static void processAggregatePairsParallel(AggPairMap& map, SimpleAABBManager& ma
manager.mMapLock.unlock();
+ for (PxU32 i = startIdx; i < pairTasks.size(); ++i)
+ {
+ pairTasks[i]->removeReference();
+ }
+
+
if (task->mNbPairs)
{
pairTasks.pushBack(task);
diff --git a/PhysX_3.4/Source/PhysX/src/buffering/ScbArticulationJoint.h b/PhysX_3.4/Source/PhysX/src/buffering/ScbArticulationJoint.h
index 9c8b66b4..1366812b 100644
--- a/PhysX_3.4/Source/PhysX/src/buffering/ScbArticulationJoint.h
+++ b/PhysX_3.4/Source/PhysX/src/buffering/ScbArticulationJoint.h
@@ -257,6 +257,7 @@ PX_INLINE void ArticulationJoint::syncState()
flush<Buf::BF_TwistLimitEnabled>(buffer);
flush<Buf::BF_TangentialStiffness>(buffer);
flush<Buf::BF_TangentialDamping>(buffer);
+ flush<Buf::BF_DriveType>(buffer);
if(isBuffered(Buf::BF_SwingLimit))
mJoint.setSwingLimit(buffer.mSwingLimitY, buffer.mSwingLimitZ);
diff --git a/PhysX_3.4/Source/PhysX/src/buffering/ScbBody.h b/PhysX_3.4/Source/PhysX/src/buffering/ScbBody.h
index fb7f8387..e1ed5f7a 100644
--- a/PhysX_3.4/Source/PhysX/src/buffering/ScbBody.h
+++ b/PhysX_3.4/Source/PhysX/src/buffering/ScbBody.h
@@ -955,6 +955,7 @@ PX_INLINE void Body::syncState()
flush<Buf::BF_FreezeThreshold>(buffer);
flush<Buf::BF_MaxPenetrationBias>(buffer);
flush<Buf::BF_MaxContactImpulse>(buffer);
+ flush<Buf::BF_CCDAdvanceCoefficient>(buffer);
if(bufferFlags & Buf::BF_RigidBodyFlags)
mBodyCore.setFlags(getScbScene()->getScScene().getSimStateDataPool(), buffer.mRigidBodyFlags);
}
diff --git a/PhysX_3.4/Source/PhysX/src/buffering/ScbShape.cpp b/PhysX_3.4/Source/PhysX/src/buffering/ScbShape.cpp
index 445557ec..9814e4ba 100644
--- a/PhysX_3.4/Source/PhysX/src/buffering/ScbShape.cpp
+++ b/PhysX_3.4/Source/PhysX/src/buffering/ScbShape.cpp
@@ -118,10 +118,7 @@ void Scb::Shape::syncState()
flush<Buf::BF_Shape2Actor>(buffer);
flush<Buf::BF_SimulationFilterData>(buffer);
-
- if(isBuffered(Buf::BF_ContactOffset))
- mShape.setContactOffset(buffer.mContactOffset);
-
+ flush<Buf::BF_ContactOffset>(buffer);
flush<Buf::BF_RestOffset>(buffer);
flush<Buf::BF_Flags>(buffer);
diff --git a/PhysX_3.4/Source/PhysX/src/buffering/ScbShape.h b/PhysX_3.4/Source/PhysX/src/buffering/ScbShape.h
index acadd163..1bcbb6ca 100644
--- a/PhysX_3.4/Source/PhysX/src/buffering/ScbShape.h
+++ b/PhysX_3.4/Source/PhysX/src/buffering/ScbShape.h
@@ -229,7 +229,6 @@ PX_INLINE Shape::Shape(const PxGeometry& geometry,
PX_COMPILE_TIME_ASSERT(PxU32(ShapeBuffer::BF_ContactOffset) == PxU32(Sc::ShapeChangeNotifyFlag::eCONTACTOFFSET));
PX_COMPILE_TIME_ASSERT(PxU32(ShapeBuffer::BF_RestOffset) == PxU32(Sc::ShapeChangeNotifyFlag::eRESTOFFSET));
PX_COMPILE_TIME_ASSERT(PxU32(ShapeBuffer::BF_Flags) == PxU32(Sc::ShapeChangeNotifyFlag::eFLAGS));
- PX_COMPILE_TIME_ASSERT(PxU32(ShapeBuffer::BF_Geometry) == PxU32(Sc::ShapeChangeNotifyFlag::eGEOMETRY));
if(isExclusive)
setScbType(ScbType::eSHAPE_EXCLUSIVE);
diff --git a/PhysX_3.4/Source/PhysX/src/gpu/PxPhysXGpuModuleLoader.cpp b/PhysX_3.4/Source/PhysX/src/gpu/PxPhysXGpuModuleLoader.cpp
index 9ac8a523..bef80e14 100644
--- a/PhysX_3.4/Source/PhysX/src/gpu/PxPhysXGpuModuleLoader.cpp
+++ b/PhysX_3.4/Source/PhysX/src/gpu/PxPhysXGpuModuleLoader.cpp
@@ -60,9 +60,15 @@ namespace physx
#if PX_WINDOWS
#include "windows/PsWindowsInclude.h"
+#include "windows/PxWindowsDelayLoadHook.h"
#include "windows/CmWindowsModuleUpdateLoader.h"
static const char* gPhysXGpuLibraryName = "PhysX3Gpu" CONFIG_SUB_STR "_" PLATFORM_SUB_STR ".dll";
+namespace physx
+{
+ const PxDelayLoadHook* PxGetPhysXDelayLoadHook();
+}
+
#elif PX_LINUX
#include <dlfcn.h>
@@ -115,6 +121,9 @@ namespace physx
#if PX_WINDOWS
+ typedef void (PxSetPhysXGpuDelayLoadHook_FUNC)(const PxDelayLoadHook* delayLoadHook);
+ PxSetPhysXGpuDelayLoadHook_FUNC* g_PxSetPhysXGpuDelayLoadHook_Func = NULL;
+
#define DEFAULT_PHYSX_GPU_GUID "D79FA4BF-177C-4841-8091-4375D311D6A3"
void PxLoadPhysxGPUModule(const char* appGUID)
@@ -132,6 +141,7 @@ namespace physx
if (s_library)
{
+ g_PxSetPhysXGpuDelayLoadHook_Func = (PxSetPhysXGpuDelayLoadHook_FUNC*)GetProcAddress(s_library, "PxSetPhysXGpuDelayLoadHook");
g_PxCreatePhysXGpu_Func = (PxCreatePhysXGpu_FUNC*)GetProcAddress(s_library, "PxCreatePhysXGpu");
g_PxCreateCudaContextManager_Func = (PxCreateCudaContextManager_FUNC*)GetProcAddress(s_library, "PxCreateCudaContextManager");
g_PxGetSuggestedCudaDeviceOrdinal_Func = (PxGetSuggestedCudaDeviceOrdinal_FUNC*)GetProcAddress(s_library, "PxGetSuggestedCudaDeviceOrdinal");
@@ -139,9 +149,19 @@ namespace physx
// Check for errors
if (s_library == NULL)
+ {
Ps::getFoundation().error(PxErrorCode::eINTERNAL_ERROR, __FILE__, __LINE__, "Failed to load PhysXGpu dll!");
- if (g_PxCreatePhysXGpu_Func == NULL || g_PxCreateCudaContextManager_Func == NULL || g_PxGetSuggestedCudaDeviceOrdinal_Func == NULL)
+ return;
+ }
+
+ if (g_PxSetPhysXGpuDelayLoadHook_Func == NULL || g_PxCreatePhysXGpu_Func == NULL || g_PxCreateCudaContextManager_Func == NULL || g_PxGetSuggestedCudaDeviceOrdinal_Func == NULL)
+ {
Ps::getFoundation().error(PxErrorCode::eINTERNAL_ERROR, __FILE__, __LINE__, "PhysXGpu dll is incompatible with this version of PhysX!");
+ return;
+ }
+
+ g_PxSetPhysXGpuDelayLoadHook_Func(PxGetPhysXDelayLoadHook());
+
}
#elif PX_LINUX
diff --git a/PhysX_3.4/Source/PhysX/src/windows/NpWindowsDelayLoadHook.cpp b/PhysX_3.4/Source/PhysX/src/windows/NpWindowsDelayLoadHook.cpp
index 0f6c495f..b1e04f27 100644
--- a/PhysX_3.4/Source/PhysX/src/windows/NpWindowsDelayLoadHook.cpp
+++ b/PhysX_3.4/Source/PhysX/src/windows/NpWindowsDelayLoadHook.cpp
@@ -36,11 +36,19 @@
#define DELAYIMP_INSECURE_WRITABLE_HOOKS
#include <delayimp.h>
-static const physx::PxDelayLoadHook* gDelayLoadHook = NULL;
-
-void physx::PxSetPhysXDelayLoadHook(const physx::PxDelayLoadHook* hook)
+namespace physx
{
- gDelayLoadHook = hook;
+ static const PxDelayLoadHook* gDelayLoadHook = NULL;
+
+ void PxSetPhysXDelayLoadHook(const PxDelayLoadHook* hook)
+ {
+ gDelayLoadHook = hook;
+ }
+
+ const PxDelayLoadHook* PxGetPhysXDelayLoadHook()
+ {
+ return gDelayLoadHook;
+ }
}
using namespace physx;
diff --git a/PhysX_3.4/Source/PhysXGpu/include/PxPhysXGpu.h b/PhysX_3.4/Source/PhysXGpu/include/PxPhysXGpu.h
index 535fac33..333a3b40 100644
--- a/PhysX_3.4/Source/PhysXGpu/include/PxPhysXGpu.h
+++ b/PhysX_3.4/Source/PhysXGpu/include/PxPhysXGpu.h
@@ -55,6 +55,7 @@ class PxsMemoryManager;
class PxsHeapMemoryAllocatorManager;
class PxsSimulationController;
class PxsSimulationControllerCallback;
+class PxDelayLoadHook;
struct PxvSimStats;
@@ -221,6 +222,13 @@ public:
}
+#if PX_WINDOWS
+/**
+Sets delay load hook instance for PhysXGpu dll.
+*/
+PX_C_EXPORT PX_PHYSX_GPU_API void PX_CALL_CONV PxSetPhysXGpuDelayLoadHook(const physx::PxDelayLoadHook* hook);
+#endif
+
/**
Create PxPhysXGpu interface class.
*/
diff --git a/PhysX_3.4/Source/SimulationController/src/ScScene.cpp b/PhysX_3.4/Source/SimulationController/src/ScScene.cpp
index 702be637..3944d603 100644
--- a/PhysX_3.4/Source/SimulationController/src/ScScene.cpp
+++ b/PhysX_3.4/Source/SimulationController/src/ScScene.cpp
@@ -3094,7 +3094,8 @@ void Sc::Scene::updateSimulationController(PxBaseTask* continuation)
void Sc::Scene::updateDynamics(PxBaseTask* continuation)
{
- mProcessLostContactsTask3.setContinuation(continuation);
+ //Allow processLostContactsTask to run until after 2nd pass of solver completes (update bodies, run sleeping logic etc.)
+ mProcessLostContactsTask3.setContinuation(static_cast<PxLightCpuTask*>(continuation)->getContinuation());
mProcessLostContactsTask2.setContinuation(&mProcessLostContactsTask3);
mProcessLostContactsTask.setContinuation(&mProcessLostContactsTask2);
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 e52e5c5f..df494ee1 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 */
- FFFFeda9bfd07f8ceda9bfd0 /* SceneQuery in Frameworks */= { isa = PBXBuildFile; fileRef = FFFDedabfac07f8cedabfac0 /* SceneQuery */; };
- FFFFeda9c0307f8ceda9c030 /* SimulationController in Frameworks */= { isa = PBXBuildFile; fileRef = FFFDedac3f107f8cedac3f10 /* SimulationController */; };
- FFFFee054e387f8cee054e38 /* NpActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee054e387f8cee054e38 /* NpActor.cpp */; };
- FFFFee054ea07f8cee054ea0 /* NpAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee054ea07f8cee054ea0 /* NpAggregate.cpp */; };
- FFFFee054f087f8cee054f08 /* NpArticulation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee054f087f8cee054f08 /* NpArticulation.cpp */; };
- FFFFee054f707f8cee054f70 /* NpArticulationJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee054f707f8cee054f70 /* NpArticulationJoint.cpp */; };
- FFFFee054fd87f8cee054fd8 /* NpArticulationLink.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee054fd87f8cee054fd8 /* NpArticulationLink.cpp */; };
- FFFFee0550407f8cee055040 /* NpBatchQuery.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0550407f8cee055040 /* NpBatchQuery.cpp */; };
- FFFFee0550a87f8cee0550a8 /* NpConstraint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0550a87f8cee0550a8 /* NpConstraint.cpp */; };
- FFFFee0551107f8cee055110 /* NpFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0551107f8cee055110 /* NpFactory.cpp */; };
- FFFFee0551787f8cee055178 /* NpMaterial.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0551787f8cee055178 /* NpMaterial.cpp */; };
- FFFFee0551e07f8cee0551e0 /* NpMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0551e07f8cee0551e0 /* NpMetaData.cpp */; };
- FFFFee0552487f8cee055248 /* NpPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0552487f8cee055248 /* NpPhysics.cpp */; };
- FFFFee0552b07f8cee0552b0 /* NpPvdSceneQueryCollector.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0552b07f8cee0552b0 /* NpPvdSceneQueryCollector.cpp */; };
- FFFFee0553187f8cee055318 /* NpReadCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0553187f8cee055318 /* NpReadCheck.cpp */; };
- FFFFee0553807f8cee055380 /* NpRigidDynamic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0553807f8cee055380 /* NpRigidDynamic.cpp */; };
- FFFFee0553e87f8cee0553e8 /* NpRigidStatic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0553e87f8cee0553e8 /* NpRigidStatic.cpp */; };
- FFFFee0554507f8cee055450 /* NpScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0554507f8cee055450 /* NpScene.cpp */; };
- FFFFee0554b87f8cee0554b8 /* NpSceneQueries.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0554b87f8cee0554b8 /* NpSceneQueries.cpp */; };
- FFFFee0555207f8cee055520 /* NpSerializerAdapter.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0555207f8cee055520 /* NpSerializerAdapter.cpp */; };
- FFFFee0555887f8cee055588 /* NpShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0555887f8cee055588 /* NpShape.cpp */; };
- FFFFee0555f07f8cee0555f0 /* NpShapeManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0555f07f8cee0555f0 /* NpShapeManager.cpp */; };
- FFFFee0556587f8cee055658 /* NpSpatialIndex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0556587f8cee055658 /* NpSpatialIndex.cpp */; };
- FFFFee0556c07f8cee0556c0 /* NpVolumeCache.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0556c07f8cee0556c0 /* NpVolumeCache.cpp */; };
- FFFFee0557287f8cee055728 /* NpWriteCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0557287f8cee055728 /* NpWriteCheck.cpp */; };
- FFFFee0557907f8cee055790 /* PvdMetaDataPvdBinding.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0557907f8cee055790 /* PvdMetaDataPvdBinding.cpp */; };
- FFFFee0557f87f8cee0557f8 /* PvdPhysicsClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0557f87f8cee0557f8 /* PvdPhysicsClient.cpp */; };
- FFFFee055a007f8cee055a00 /* particles/NpParticleFluid.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee055a007f8cee055a00 /* particles/NpParticleFluid.cpp */; };
- FFFFee055a687f8cee055a68 /* particles/NpParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee055a687f8cee055a68 /* particles/NpParticleSystem.cpp */; };
- FFFFee0562207f8cee056220 /* buffering/ScbActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0562207f8cee056220 /* buffering/ScbActor.cpp */; };
- FFFFee0562887f8cee056288 /* buffering/ScbAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0562887f8cee056288 /* buffering/ScbAggregate.cpp */; };
- FFFFee0562f07f8cee0562f0 /* buffering/ScbBase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0562f07f8cee0562f0 /* buffering/ScbBase.cpp */; };
- FFFFee0563587f8cee056358 /* buffering/ScbCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0563587f8cee056358 /* buffering/ScbCloth.cpp */; };
- FFFFee0563c07f8cee0563c0 /* buffering/ScbMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0563c07f8cee0563c0 /* buffering/ScbMetaData.cpp */; };
- FFFFee0564287f8cee056428 /* buffering/ScbParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0564287f8cee056428 /* buffering/ScbParticleSystem.cpp */; };
- FFFFee0564907f8cee056490 /* buffering/ScbScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0564907f8cee056490 /* buffering/ScbScene.cpp */; };
- FFFFee0564f87f8cee0564f8 /* buffering/ScbScenePvdClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0564f87f8cee0564f8 /* buffering/ScbScenePvdClient.cpp */; };
- FFFFee0565607f8cee056560 /* buffering/ScbShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0565607f8cee056560 /* buffering/ScbShape.cpp */; };
- FFFFee0567007f8cee056700 /* cloth/NpCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0567007f8cee056700 /* cloth/NpCloth.cpp */; };
- FFFFee0567687f8cee056768 /* cloth/NpClothFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0567687f8cee056768 /* cloth/NpClothFabric.cpp */; };
- FFFFee0567d07f8cee0567d0 /* cloth/NpClothParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0567d07f8cee0567d0 /* cloth/NpClothParticleData.cpp */; };
- FFFFee0568387f8cee056838 /* ../../ImmediateMode/src/NpImmediateMode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0568387f8cee056838 /* ../../ImmediateMode/src/NpImmediateMode.cpp */; };
- FFFFee04b1a87f8cee04b1a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDee04b1a87f8cee04b1a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */; };
- FFFFee04b2107f8cee04b210 /* core/src/PxMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDee04b2107f8cee04b210 /* core/src/PxMetaDataObjects.cpp */; };
+ FFFFf2d4cda07fd2f2d4cda0 /* SceneQuery in Frameworks */= { isa = PBXBuildFile; fileRef = FFFDf2d709607fd2f2d70960 /* SceneQuery */; };
+ FFFFf2d4ce007fd2f2d4ce00 /* SimulationController in Frameworks */= { isa = PBXBuildFile; fileRef = FFFDf2d74db07fd2f2d74db0 /* SimulationController */; };
+ FFFFf383ce387fd2f383ce38 /* NpActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf383ce387fd2f383ce38 /* NpActor.cpp */; };
+ FFFFf383cea07fd2f383cea0 /* NpAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf383cea07fd2f383cea0 /* NpAggregate.cpp */; };
+ FFFFf383cf087fd2f383cf08 /* NpArticulation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf383cf087fd2f383cf08 /* NpArticulation.cpp */; };
+ FFFFf383cf707fd2f383cf70 /* NpArticulationJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf383cf707fd2f383cf70 /* NpArticulationJoint.cpp */; };
+ FFFFf383cfd87fd2f383cfd8 /* NpArticulationLink.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf383cfd87fd2f383cfd8 /* NpArticulationLink.cpp */; };
+ FFFFf383d0407fd2f383d040 /* NpBatchQuery.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf383d0407fd2f383d040 /* NpBatchQuery.cpp */; };
+ FFFFf383d0a87fd2f383d0a8 /* NpConstraint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf383d0a87fd2f383d0a8 /* NpConstraint.cpp */; };
+ FFFFf383d1107fd2f383d110 /* NpFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf383d1107fd2f383d110 /* NpFactory.cpp */; };
+ FFFFf383d1787fd2f383d178 /* NpMaterial.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf383d1787fd2f383d178 /* NpMaterial.cpp */; };
+ FFFFf383d1e07fd2f383d1e0 /* NpMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf383d1e07fd2f383d1e0 /* NpMetaData.cpp */; };
+ FFFFf383d2487fd2f383d248 /* NpPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf383d2487fd2f383d248 /* NpPhysics.cpp */; };
+ FFFFf383d2b07fd2f383d2b0 /* NpPvdSceneQueryCollector.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf383d2b07fd2f383d2b0 /* NpPvdSceneQueryCollector.cpp */; };
+ FFFFf383d3187fd2f383d318 /* NpReadCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf383d3187fd2f383d318 /* NpReadCheck.cpp */; };
+ FFFFf383d3807fd2f383d380 /* NpRigidDynamic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf383d3807fd2f383d380 /* NpRigidDynamic.cpp */; };
+ FFFFf383d3e87fd2f383d3e8 /* NpRigidStatic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf383d3e87fd2f383d3e8 /* NpRigidStatic.cpp */; };
+ FFFFf383d4507fd2f383d450 /* NpScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf383d4507fd2f383d450 /* NpScene.cpp */; };
+ FFFFf383d4b87fd2f383d4b8 /* NpSceneQueries.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf383d4b87fd2f383d4b8 /* NpSceneQueries.cpp */; };
+ FFFFf383d5207fd2f383d520 /* NpSerializerAdapter.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf383d5207fd2f383d520 /* NpSerializerAdapter.cpp */; };
+ FFFFf383d5887fd2f383d588 /* NpShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf383d5887fd2f383d588 /* NpShape.cpp */; };
+ FFFFf383d5f07fd2f383d5f0 /* NpShapeManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf383d5f07fd2f383d5f0 /* NpShapeManager.cpp */; };
+ FFFFf383d6587fd2f383d658 /* NpSpatialIndex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf383d6587fd2f383d658 /* NpSpatialIndex.cpp */; };
+ FFFFf383d6c07fd2f383d6c0 /* NpVolumeCache.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf383d6c07fd2f383d6c0 /* NpVolumeCache.cpp */; };
+ FFFFf383d7287fd2f383d728 /* NpWriteCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf383d7287fd2f383d728 /* NpWriteCheck.cpp */; };
+ FFFFf383d7907fd2f383d790 /* PvdMetaDataPvdBinding.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf383d7907fd2f383d790 /* PvdMetaDataPvdBinding.cpp */; };
+ FFFFf383d7f87fd2f383d7f8 /* PvdPhysicsClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf383d7f87fd2f383d7f8 /* PvdPhysicsClient.cpp */; };
+ FFFFf383da007fd2f383da00 /* particles/NpParticleFluid.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf383da007fd2f383da00 /* particles/NpParticleFluid.cpp */; };
+ FFFFf383da687fd2f383da68 /* particles/NpParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf383da687fd2f383da68 /* particles/NpParticleSystem.cpp */; };
+ FFFFf383e2207fd2f383e220 /* buffering/ScbActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf383e2207fd2f383e220 /* buffering/ScbActor.cpp */; };
+ FFFFf383e2887fd2f383e288 /* buffering/ScbAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf383e2887fd2f383e288 /* buffering/ScbAggregate.cpp */; };
+ FFFFf383e2f07fd2f383e2f0 /* buffering/ScbBase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf383e2f07fd2f383e2f0 /* buffering/ScbBase.cpp */; };
+ FFFFf383e3587fd2f383e358 /* buffering/ScbCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf383e3587fd2f383e358 /* buffering/ScbCloth.cpp */; };
+ FFFFf383e3c07fd2f383e3c0 /* buffering/ScbMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf383e3c07fd2f383e3c0 /* buffering/ScbMetaData.cpp */; };
+ FFFFf383e4287fd2f383e428 /* buffering/ScbParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf383e4287fd2f383e428 /* buffering/ScbParticleSystem.cpp */; };
+ FFFFf383e4907fd2f383e490 /* buffering/ScbScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf383e4907fd2f383e490 /* buffering/ScbScene.cpp */; };
+ FFFFf383e4f87fd2f383e4f8 /* buffering/ScbScenePvdClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf383e4f87fd2f383e4f8 /* buffering/ScbScenePvdClient.cpp */; };
+ FFFFf383e5607fd2f383e560 /* buffering/ScbShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf383e5607fd2f383e560 /* buffering/ScbShape.cpp */; };
+ FFFFf383e7007fd2f383e700 /* cloth/NpCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf383e7007fd2f383e700 /* cloth/NpCloth.cpp */; };
+ FFFFf383e7687fd2f383e768 /* cloth/NpClothFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf383e7687fd2f383e768 /* cloth/NpClothFabric.cpp */; };
+ FFFFf383e7d07fd2f383e7d0 /* cloth/NpClothParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf383e7d07fd2f383e7d0 /* cloth/NpClothParticleData.cpp */; };
+ FFFFf383e8387fd2f383e838 /* ../../ImmediateMode/src/NpImmediateMode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf383e8387fd2f383e838 /* ../../ImmediateMode/src/NpImmediateMode.cpp */; };
+ FFFFf38333a87fd2f38333a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDf38333a87fd2f38333a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */; };
+ FFFFf38334107fd2f3833410 /* core/src/PxMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDf38334107fd2f3833410 /* core/src/PxMetaDataObjects.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFDeda934e07f8ceda934e0 /* PhysX */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysX"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFDee0540007f8cee054000 /* NpActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.h"; path = "../../PhysX/src/NpActor.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0540687f8cee054068 /* NpActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActorTemplate.h"; path = "../../PhysX/src/NpActorTemplate.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0540d07f8cee0540d0 /* NpAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.h"; path = "../../PhysX/src/NpAggregate.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0541387f8cee054138 /* NpArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.h"; path = "../../PhysX/src/NpArticulation.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0541a07f8cee0541a0 /* NpArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.h"; path = "../../PhysX/src/NpArticulationJoint.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0542087f8cee054208 /* NpArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.h"; path = "../../PhysX/src/NpArticulationLink.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0542707f8cee054270 /* NpBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.h"; path = "../../PhysX/src/NpBatchQuery.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0542d87f8cee0542d8 /* NpCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpCast.h"; path = "../../PhysX/src/NpCast.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0543407f8cee054340 /* NpConnector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConnector.h"; path = "../../PhysX/src/NpConnector.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0543a87f8cee0543a8 /* NpConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.h"; path = "../../PhysX/src/NpConstraint.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0544107f8cee054410 /* NpFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.h"; path = "../../PhysX/src/NpFactory.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0544787f8cee054478 /* NpMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.h"; path = "../../PhysX/src/NpMaterial.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0544e07f8cee0544e0 /* NpMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterialManager.h"; path = "../../PhysX/src/NpMaterialManager.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0545487f8cee054548 /* NpPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.h"; path = "../../PhysX/src/NpPhysics.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0545b07f8cee0545b0 /* NpPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysicsInsertionCallback.h"; path = "../../PhysX/src/NpPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0546187f8cee054618 /* NpPtrTableStorageManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPtrTableStorageManager.h"; path = "../../PhysX/src/NpPtrTableStorageManager.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0546807f8cee054680 /* NpPvdSceneQueryCollector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.h"; path = "../../PhysX/src/NpPvdSceneQueryCollector.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0546e87f8cee0546e8 /* NpQueryShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpQueryShared.h"; path = "../../PhysX/src/NpQueryShared.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0547507f8cee054750 /* NpReadCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.h"; path = "../../PhysX/src/NpReadCheck.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0547b87f8cee0547b8 /* NpRigidActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplate.h"; path = "../../PhysX/src/NpRigidActorTemplate.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0548207f8cee054820 /* NpRigidActorTemplateInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplateInternal.h"; path = "../../PhysX/src/NpRigidActorTemplateInternal.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0548887f8cee054888 /* NpRigidBodyTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidBodyTemplate.h"; path = "../../PhysX/src/NpRigidBodyTemplate.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0548f07f8cee0548f0 /* NpRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.h"; path = "../../PhysX/src/NpRigidDynamic.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0549587f8cee054958 /* NpRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.h"; path = "../../PhysX/src/NpRigidStatic.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0549c07f8cee0549c0 /* NpScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.h"; path = "../../PhysX/src/NpScene.h"; sourceTree = SOURCE_ROOT; };
- FFFDee054a287f8cee054a28 /* NpSceneQueries.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.h"; path = "../../PhysX/src/NpSceneQueries.h"; sourceTree = SOURCE_ROOT; };
- FFFDee054a907f8cee054a90 /* NpShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.h"; path = "../../PhysX/src/NpShape.h"; sourceTree = SOURCE_ROOT; };
- FFFDee054af87f8cee054af8 /* NpShapeManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.h"; path = "../../PhysX/src/NpShapeManager.h"; sourceTree = SOURCE_ROOT; };
- FFFDee054b607f8cee054b60 /* NpSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.h"; path = "../../PhysX/src/NpSpatialIndex.h"; sourceTree = SOURCE_ROOT; };
- FFFDee054bc87f8cee054bc8 /* NpVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.h"; path = "../../PhysX/src/NpVolumeCache.h"; sourceTree = SOURCE_ROOT; };
- FFFDee054c307f8cee054c30 /* NpWriteCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.h"; path = "../../PhysX/src/NpWriteCheck.h"; sourceTree = SOURCE_ROOT; };
- FFFDee054c987f8cee054c98 /* PvdMetaDataBindingData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataBindingData.h"; path = "../../PhysX/src/PvdMetaDataBindingData.h"; sourceTree = SOURCE_ROOT; };
- FFFDee054d007f8cee054d00 /* PvdMetaDataPvdBinding.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.h"; path = "../../PhysX/src/PvdMetaDataPvdBinding.h"; sourceTree = SOURCE_ROOT; };
- FFFDee054d687f8cee054d68 /* PvdPhysicsClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.h"; path = "../../PhysX/src/PvdPhysicsClient.h"; sourceTree = SOURCE_ROOT; };
- FFFDee054dd07f8cee054dd0 /* PvdTypeNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdTypeNames.h"; path = "../../PhysX/src/PvdTypeNames.h"; sourceTree = SOURCE_ROOT; };
- FFFDee054e387f8cee054e38 /* NpActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.cpp"; path = "../../PhysX/src/NpActor.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee054ea07f8cee054ea0 /* NpAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.cpp"; path = "../../PhysX/src/NpAggregate.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee054f087f8cee054f08 /* NpArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.cpp"; path = "../../PhysX/src/NpArticulation.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee054f707f8cee054f70 /* NpArticulationJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.cpp"; path = "../../PhysX/src/NpArticulationJoint.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee054fd87f8cee054fd8 /* NpArticulationLink.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.cpp"; path = "../../PhysX/src/NpArticulationLink.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0550407f8cee055040 /* NpBatchQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.cpp"; path = "../../PhysX/src/NpBatchQuery.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0550a87f8cee0550a8 /* NpConstraint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.cpp"; path = "../../PhysX/src/NpConstraint.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0551107f8cee055110 /* NpFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.cpp"; path = "../../PhysX/src/NpFactory.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0551787f8cee055178 /* NpMaterial.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.cpp"; path = "../../PhysX/src/NpMaterial.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0551e07f8cee0551e0 /* NpMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMetaData.cpp"; path = "../../PhysX/src/NpMetaData.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0552487f8cee055248 /* NpPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.cpp"; path = "../../PhysX/src/NpPhysics.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0552b07f8cee0552b0 /* NpPvdSceneQueryCollector.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.cpp"; path = "../../PhysX/src/NpPvdSceneQueryCollector.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0553187f8cee055318 /* NpReadCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.cpp"; path = "../../PhysX/src/NpReadCheck.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0553807f8cee055380 /* NpRigidDynamic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.cpp"; path = "../../PhysX/src/NpRigidDynamic.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0553e87f8cee0553e8 /* NpRigidStatic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.cpp"; path = "../../PhysX/src/NpRigidStatic.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0554507f8cee055450 /* NpScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.cpp"; path = "../../PhysX/src/NpScene.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0554b87f8cee0554b8 /* NpSceneQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.cpp"; path = "../../PhysX/src/NpSceneQueries.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0555207f8cee055520 /* NpSerializerAdapter.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSerializerAdapter.cpp"; path = "../../PhysX/src/NpSerializerAdapter.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0555887f8cee055588 /* NpShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.cpp"; path = "../../PhysX/src/NpShape.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0555f07f8cee0555f0 /* NpShapeManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.cpp"; path = "../../PhysX/src/NpShapeManager.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0556587f8cee055658 /* NpSpatialIndex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.cpp"; path = "../../PhysX/src/NpSpatialIndex.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0556c07f8cee0556c0 /* NpVolumeCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.cpp"; path = "../../PhysX/src/NpVolumeCache.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0557287f8cee055728 /* NpWriteCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.cpp"; path = "../../PhysX/src/NpWriteCheck.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0557907f8cee055790 /* PvdMetaDataPvdBinding.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.cpp"; path = "../../PhysX/src/PvdMetaDataPvdBinding.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0557f87f8cee0557f8 /* PvdPhysicsClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.cpp"; path = "../../PhysX/src/PvdPhysicsClient.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0558607f8cee055860 /* particles/NpParticleBaseTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleBaseTemplate.h"; path = "../../PhysX/src/particles/NpParticleBaseTemplate.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0558c87f8cee0558c8 /* particles/NpParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.h"; path = "../../PhysX/src/particles/NpParticleFluid.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0559307f8cee055930 /* particles/NpParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluidReadData.h"; path = "../../PhysX/src/particles/NpParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0559987f8cee055998 /* particles/NpParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.h"; path = "../../PhysX/src/particles/NpParticleSystem.h"; sourceTree = SOURCE_ROOT; };
- FFFDee055a007f8cee055a00 /* particles/NpParticleFluid.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.cpp"; path = "../../PhysX/src/particles/NpParticleFluid.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee055a687f8cee055a68 /* particles/NpParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.cpp"; path = "../../PhysX/src/particles/NpParticleSystem.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee055ad07f8cee055ad0 /* buffering/ScbActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.h"; path = "../../PhysX/src/buffering/ScbActor.h"; sourceTree = SOURCE_ROOT; };
- FFFDee055b387f8cee055b38 /* buffering/ScbAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.h"; path = "../../PhysX/src/buffering/ScbAggregate.h"; sourceTree = SOURCE_ROOT; };
- FFFDee055ba07f8cee055ba0 /* buffering/ScbArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulation.h"; path = "../../PhysX/src/buffering/ScbArticulation.h"; sourceTree = SOURCE_ROOT; };
- FFFDee055c087f8cee055c08 /* buffering/ScbArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulationJoint.h"; path = "../../PhysX/src/buffering/ScbArticulationJoint.h"; sourceTree = SOURCE_ROOT; };
- FFFDee055c707f8cee055c70 /* buffering/ScbBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.h"; path = "../../PhysX/src/buffering/ScbBase.h"; sourceTree = SOURCE_ROOT; };
- FFFDee055cd87f8cee055cd8 /* buffering/ScbBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBody.h"; path = "../../PhysX/src/buffering/ScbBody.h"; sourceTree = SOURCE_ROOT; };
- FFFDee055d407f8cee055d40 /* buffering/ScbCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.h"; path = "../../PhysX/src/buffering/ScbCloth.h"; sourceTree = SOURCE_ROOT; };
- FFFDee055da87f8cee055da8 /* buffering/ScbConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbConstraint.h"; path = "../../PhysX/src/buffering/ScbConstraint.h"; sourceTree = SOURCE_ROOT; };
- FFFDee055e107f8cee055e10 /* buffering/ScbDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbDefs.h"; path = "../../PhysX/src/buffering/ScbDefs.h"; sourceTree = SOURCE_ROOT; };
- FFFDee055e787f8cee055e78 /* buffering/ScbNpDeps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbNpDeps.h"; path = "../../PhysX/src/buffering/ScbNpDeps.h"; sourceTree = SOURCE_ROOT; };
- FFFDee055ee07f8cee055ee0 /* buffering/ScbParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.h"; path = "../../PhysX/src/buffering/ScbParticleSystem.h"; sourceTree = SOURCE_ROOT; };
- FFFDee055f487f8cee055f48 /* buffering/ScbRigidObject.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidObject.h"; path = "../../PhysX/src/buffering/ScbRigidObject.h"; sourceTree = SOURCE_ROOT; };
- FFFDee055fb07f8cee055fb0 /* buffering/ScbRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidStatic.h"; path = "../../PhysX/src/buffering/ScbRigidStatic.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0560187f8cee056018 /* buffering/ScbScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.h"; path = "../../PhysX/src/buffering/ScbScene.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0560807f8cee056080 /* buffering/ScbSceneBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbSceneBuffer.h"; path = "../../PhysX/src/buffering/ScbSceneBuffer.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0560e87f8cee0560e8 /* buffering/ScbScenePvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.h"; path = "../../PhysX/src/buffering/ScbScenePvdClient.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0561507f8cee056150 /* buffering/ScbShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.h"; path = "../../PhysX/src/buffering/ScbShape.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0561b87f8cee0561b8 /* buffering/ScbType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbType.h"; path = "../../PhysX/src/buffering/ScbType.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0562207f8cee056220 /* buffering/ScbActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.cpp"; path = "../../PhysX/src/buffering/ScbActor.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0562887f8cee056288 /* buffering/ScbAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.cpp"; path = "../../PhysX/src/buffering/ScbAggregate.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0562f07f8cee0562f0 /* buffering/ScbBase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.cpp"; path = "../../PhysX/src/buffering/ScbBase.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0563587f8cee056358 /* buffering/ScbCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.cpp"; path = "../../PhysX/src/buffering/ScbCloth.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0563c07f8cee0563c0 /* buffering/ScbMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbMetaData.cpp"; path = "../../PhysX/src/buffering/ScbMetaData.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0564287f8cee056428 /* buffering/ScbParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.cpp"; path = "../../PhysX/src/buffering/ScbParticleSystem.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0564907f8cee056490 /* buffering/ScbScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.cpp"; path = "../../PhysX/src/buffering/ScbScene.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0564f87f8cee0564f8 /* buffering/ScbScenePvdClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.cpp"; path = "../../PhysX/src/buffering/ScbScenePvdClient.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0565607f8cee056560 /* buffering/ScbShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.cpp"; path = "../../PhysX/src/buffering/ScbShape.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0565c87f8cee0565c8 /* cloth/NpCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.h"; path = "../../PhysX/src/cloth/NpCloth.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0566307f8cee056630 /* cloth/NpClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.h"; path = "../../PhysX/src/cloth/NpClothFabric.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0566987f8cee056698 /* cloth/NpClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.h"; path = "../../PhysX/src/cloth/NpClothParticleData.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0567007f8cee056700 /* cloth/NpCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.cpp"; path = "../../PhysX/src/cloth/NpCloth.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0567687f8cee056768 /* cloth/NpClothFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.cpp"; path = "../../PhysX/src/cloth/NpClothFabric.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0567d07f8cee0567d0 /* cloth/NpClothParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.cpp"; path = "../../PhysX/src/cloth/NpClothParticleData.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0568387f8cee056838 /* ../../ImmediateMode/src/NpImmediateMode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "../../ImmediateMode/src/NpImmediateMode.cpp"; path = "../../ImmediateMode/src/NpImmediateMode.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee04d8007f8cee04d800 /* PxActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxActor.h"; path = "../../../Include/PxActor.h"; sourceTree = SOURCE_ROOT; };
- FFFDee04d8687f8cee04d868 /* PxAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAggregate.h"; path = "../../../Include/PxAggregate.h"; sourceTree = SOURCE_ROOT; };
- FFFDee04d8d07f8cee04d8d0 /* PxArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulation.h"; path = "../../../Include/PxArticulation.h"; sourceTree = SOURCE_ROOT; };
- FFFDee04d9387f8cee04d938 /* PxArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationJoint.h"; path = "../../../Include/PxArticulationJoint.h"; sourceTree = SOURCE_ROOT; };
- FFFDee04d9a07f8cee04d9a0 /* PxArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationLink.h"; path = "../../../Include/PxArticulationLink.h"; sourceTree = SOURCE_ROOT; };
- FFFDee04da087f8cee04da08 /* PxBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQuery.h"; path = "../../../Include/PxBatchQuery.h"; sourceTree = SOURCE_ROOT; };
- FFFDee04da707f8cee04da70 /* PxBatchQueryDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQueryDesc.h"; path = "../../../Include/PxBatchQueryDesc.h"; sourceTree = SOURCE_ROOT; };
- FFFDee04dad87f8cee04dad8 /* PxBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhase.h"; path = "../../../Include/PxBroadPhase.h"; sourceTree = SOURCE_ROOT; };
- FFFDee04db407f8cee04db40 /* PxClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClient.h"; path = "../../../Include/PxClient.h"; sourceTree = SOURCE_ROOT; };
- FFFDee04dba87f8cee04dba8 /* PxConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraint.h"; path = "../../../Include/PxConstraint.h"; sourceTree = SOURCE_ROOT; };
- FFFDee04dc107f8cee04dc10 /* PxConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintDesc.h"; path = "../../../Include/PxConstraintDesc.h"; sourceTree = SOURCE_ROOT; };
- FFFDee04dc787f8cee04dc78 /* PxContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContact.h"; path = "../../../Include/PxContact.h"; sourceTree = SOURCE_ROOT; };
- FFFDee04dce07f8cee04dce0 /* PxContactModifyCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContactModifyCallback.h"; path = "../../../Include/PxContactModifyCallback.h"; sourceTree = SOURCE_ROOT; };
- FFFDee04dd487f8cee04dd48 /* PxDeletionListener.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDeletionListener.h"; path = "../../../Include/PxDeletionListener.h"; sourceTree = SOURCE_ROOT; };
- FFFDee04ddb07f8cee04ddb0 /* PxFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFiltering.h"; path = "../../../Include/PxFiltering.h"; sourceTree = SOURCE_ROOT; };
- FFFDee04de187f8cee04de18 /* PxForceMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxForceMode.h"; path = "../../../Include/PxForceMode.h"; sourceTree = SOURCE_ROOT; };
- FFFDee04de807f8cee04de80 /* PxImmediateMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxImmediateMode.h"; path = "../../../Include/PxImmediateMode.h"; sourceTree = SOURCE_ROOT; };
- FFFDee04dee87f8cee04dee8 /* PxLockedData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxLockedData.h"; path = "../../../Include/PxLockedData.h"; sourceTree = SOURCE_ROOT; };
- FFFDee04df507f8cee04df50 /* PxMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMaterial.h"; path = "../../../Include/PxMaterial.h"; sourceTree = SOURCE_ROOT; };
- FFFDee04dfb87f8cee04dfb8 /* PxPhysXConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysXConfig.h"; path = "../../../Include/PxPhysXConfig.h"; sourceTree = SOURCE_ROOT; };
- FFFDee04e0207f8cee04e020 /* PxPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysics.h"; path = "../../../Include/PxPhysics.h"; sourceTree = SOURCE_ROOT; };
- FFFDee04e0887f8cee04e088 /* PxPhysicsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsAPI.h"; path = "../../../Include/PxPhysicsAPI.h"; sourceTree = SOURCE_ROOT; };
- FFFDee04e0f07f8cee04e0f0 /* PxPhysicsSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsSerialization.h"; path = "../../../Include/PxPhysicsSerialization.h"; sourceTree = SOURCE_ROOT; };
- FFFDee04e1587f8cee04e158 /* PxPhysicsVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsVersion.h"; path = "../../../Include/PxPhysicsVersion.h"; sourceTree = SOURCE_ROOT; };
- FFFDee04e1c07f8cee04e1c0 /* PxPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPruningStructure.h"; path = "../../../Include/PxPruningStructure.h"; sourceTree = SOURCE_ROOT; };
- FFFDee04e2287f8cee04e228 /* PxQueryFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryFiltering.h"; path = "../../../Include/PxQueryFiltering.h"; sourceTree = SOURCE_ROOT; };
- FFFDee04e2907f8cee04e290 /* PxQueryReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryReport.h"; path = "../../../Include/PxQueryReport.h"; sourceTree = SOURCE_ROOT; };
- FFFDee04e2f87f8cee04e2f8 /* PxRigidActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActor.h"; path = "../../../Include/PxRigidActor.h"; sourceTree = SOURCE_ROOT; };
- FFFDee04e3607f8cee04e360 /* PxRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBody.h"; path = "../../../Include/PxRigidBody.h"; sourceTree = SOURCE_ROOT; };
- FFFDee04e3c87f8cee04e3c8 /* PxRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidDynamic.h"; path = "../../../Include/PxRigidDynamic.h"; sourceTree = SOURCE_ROOT; };
- FFFDee04e4307f8cee04e430 /* PxRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidStatic.h"; path = "../../../Include/PxRigidStatic.h"; sourceTree = SOURCE_ROOT; };
- FFFDee04e4987f8cee04e498 /* PxScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxScene.h"; path = "../../../Include/PxScene.h"; sourceTree = SOURCE_ROOT; };
- FFFDee04e5007f8cee04e500 /* PxSceneDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneDesc.h"; path = "../../../Include/PxSceneDesc.h"; sourceTree = SOURCE_ROOT; };
- FFFDee04e5687f8cee04e568 /* PxSceneLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneLock.h"; path = "../../../Include/PxSceneLock.h"; sourceTree = SOURCE_ROOT; };
- FFFDee04e5d07f8cee04e5d0 /* PxShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShape.h"; path = "../../../Include/PxShape.h"; sourceTree = SOURCE_ROOT; };
- FFFDee04e6387f8cee04e638 /* PxSimulationEventCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationEventCallback.h"; path = "../../../Include/PxSimulationEventCallback.h"; sourceTree = SOURCE_ROOT; };
- FFFDee04e6a07f8cee04e6a0 /* PxSimulationStatistics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationStatistics.h"; path = "../../../Include/PxSimulationStatistics.h"; sourceTree = SOURCE_ROOT; };
- FFFDee04e7087f8cee04e708 /* PxSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSpatialIndex.h"; path = "../../../Include/PxSpatialIndex.h"; sourceTree = SOURCE_ROOT; };
- FFFDee04e7707f8cee04e770 /* PxVisualizationParameter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVisualizationParameter.h"; path = "../../../Include/PxVisualizationParameter.h"; sourceTree = SOURCE_ROOT; };
- FFFDee04e7d87f8cee04e7d8 /* PxVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVolumeCache.h"; path = "../../../Include/PxVolumeCache.h"; sourceTree = SOURCE_ROOT; };
- FFFDee04e8407f8cee04e840 /* particles/PxParticleBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBase.h"; path = "../../../Include/particles/PxParticleBase.h"; sourceTree = SOURCE_ROOT; };
- FFFDee04e8a87f8cee04e8a8 /* particles/PxParticleBaseFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBaseFlag.h"; path = "../../../Include/particles/PxParticleBaseFlag.h"; sourceTree = SOURCE_ROOT; };
- FFFDee04e9107f8cee04e910 /* particles/PxParticleCreationData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleCreationData.h"; path = "../../../Include/particles/PxParticleCreationData.h"; sourceTree = SOURCE_ROOT; };
- FFFDee04e9787f8cee04e978 /* particles/PxParticleFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFlag.h"; path = "../../../Include/particles/PxParticleFlag.h"; sourceTree = SOURCE_ROOT; };
- FFFDee04e9e07f8cee04e9e0 /* particles/PxParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluid.h"; path = "../../../Include/particles/PxParticleFluid.h"; sourceTree = SOURCE_ROOT; };
- FFFDee04ea487f8cee04ea48 /* particles/PxParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluidReadData.h"; path = "../../../Include/particles/PxParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; };
- FFFDee04eab07f8cee04eab0 /* particles/PxParticleReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleReadData.h"; path = "../../../Include/particles/PxParticleReadData.h"; sourceTree = SOURCE_ROOT; };
- FFFDee04eb187f8cee04eb18 /* particles/PxParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleSystem.h"; path = "../../../Include/particles/PxParticleSystem.h"; sourceTree = SOURCE_ROOT; };
- FFFDee04eb807f8cee04eb80 /* pvd/PxPvdSceneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pvd/PxPvdSceneClient.h"; path = "../../../Include/pvd/PxPvdSceneClient.h"; sourceTree = SOURCE_ROOT; };
- FFFDee04ebe87f8cee04ebe8 /* cloth/PxCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxCloth.h"; path = "../../../Include/cloth/PxCloth.h"; sourceTree = SOURCE_ROOT; };
- FFFDee04ec507f8cee04ec50 /* cloth/PxClothCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothCollisionData.h"; path = "../../../Include/cloth/PxClothCollisionData.h"; sourceTree = SOURCE_ROOT; };
- FFFDee04ecb87f8cee04ecb8 /* cloth/PxClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothFabric.h"; path = "../../../Include/cloth/PxClothFabric.h"; sourceTree = SOURCE_ROOT; };
- FFFDee04ed207f8cee04ed20 /* cloth/PxClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothParticleData.h"; path = "../../../Include/cloth/PxClothParticleData.h"; sourceTree = SOURCE_ROOT; };
- FFFDee04ed887f8cee04ed88 /* cloth/PxClothTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothTypes.h"; path = "../../../Include/cloth/PxClothTypes.h"; sourceTree = SOURCE_ROOT; };
- FFFDee04ae007f8cee04ae00 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; };
- FFFDee04ae687f8cee04ae68 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; };
- FFFDee04aed07f8cee04aed0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; };
- FFFDee04af387f8cee04af38 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; };
- FFFDee04afa07f8cee04afa0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
- FFFDee04b0087f8cee04b008 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; };
- FFFDee04b0707f8cee04b070 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; };
- FFFDee04b0d87f8cee04b0d8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
- FFFDee04b1407f8cee04b140 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; };
- FFFDee04b1a87f8cee04b1a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "core/src/PxAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXMetaData/core/src/PxAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee04b2107f8cee04b210 /* core/src/PxMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "core/src/PxMetaDataObjects.cpp"; path = "../../PhysXMetaData/core/src/PxMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2d231d07fd2f2d231d0 /* PhysX */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysX"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFDf383c0007fd2f383c000 /* NpActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.h"; path = "../../PhysX/src/NpActor.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383c0687fd2f383c068 /* NpActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActorTemplate.h"; path = "../../PhysX/src/NpActorTemplate.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383c0d07fd2f383c0d0 /* NpAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.h"; path = "../../PhysX/src/NpAggregate.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383c1387fd2f383c138 /* NpArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.h"; path = "../../PhysX/src/NpArticulation.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383c1a07fd2f383c1a0 /* NpArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.h"; path = "../../PhysX/src/NpArticulationJoint.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383c2087fd2f383c208 /* NpArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.h"; path = "../../PhysX/src/NpArticulationLink.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383c2707fd2f383c270 /* NpBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.h"; path = "../../PhysX/src/NpBatchQuery.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383c2d87fd2f383c2d8 /* NpCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpCast.h"; path = "../../PhysX/src/NpCast.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383c3407fd2f383c340 /* NpConnector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConnector.h"; path = "../../PhysX/src/NpConnector.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383c3a87fd2f383c3a8 /* NpConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.h"; path = "../../PhysX/src/NpConstraint.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383c4107fd2f383c410 /* NpFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.h"; path = "../../PhysX/src/NpFactory.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383c4787fd2f383c478 /* NpMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.h"; path = "../../PhysX/src/NpMaterial.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383c4e07fd2f383c4e0 /* NpMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterialManager.h"; path = "../../PhysX/src/NpMaterialManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383c5487fd2f383c548 /* NpPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.h"; path = "../../PhysX/src/NpPhysics.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383c5b07fd2f383c5b0 /* NpPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysicsInsertionCallback.h"; path = "../../PhysX/src/NpPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383c6187fd2f383c618 /* NpPtrTableStorageManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPtrTableStorageManager.h"; path = "../../PhysX/src/NpPtrTableStorageManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383c6807fd2f383c680 /* NpPvdSceneQueryCollector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.h"; path = "../../PhysX/src/NpPvdSceneQueryCollector.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383c6e87fd2f383c6e8 /* NpQueryShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpQueryShared.h"; path = "../../PhysX/src/NpQueryShared.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383c7507fd2f383c750 /* NpReadCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.h"; path = "../../PhysX/src/NpReadCheck.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383c7b87fd2f383c7b8 /* NpRigidActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplate.h"; path = "../../PhysX/src/NpRigidActorTemplate.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383c8207fd2f383c820 /* NpRigidActorTemplateInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplateInternal.h"; path = "../../PhysX/src/NpRigidActorTemplateInternal.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383c8887fd2f383c888 /* NpRigidBodyTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidBodyTemplate.h"; path = "../../PhysX/src/NpRigidBodyTemplate.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383c8f07fd2f383c8f0 /* NpRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.h"; path = "../../PhysX/src/NpRigidDynamic.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383c9587fd2f383c958 /* NpRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.h"; path = "../../PhysX/src/NpRigidStatic.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383c9c07fd2f383c9c0 /* NpScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.h"; path = "../../PhysX/src/NpScene.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383ca287fd2f383ca28 /* NpSceneQueries.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.h"; path = "../../PhysX/src/NpSceneQueries.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383ca907fd2f383ca90 /* NpShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.h"; path = "../../PhysX/src/NpShape.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383caf87fd2f383caf8 /* NpShapeManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.h"; path = "../../PhysX/src/NpShapeManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383cb607fd2f383cb60 /* NpSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.h"; path = "../../PhysX/src/NpSpatialIndex.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383cbc87fd2f383cbc8 /* NpVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.h"; path = "../../PhysX/src/NpVolumeCache.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383cc307fd2f383cc30 /* NpWriteCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.h"; path = "../../PhysX/src/NpWriteCheck.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383cc987fd2f383cc98 /* PvdMetaDataBindingData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataBindingData.h"; path = "../../PhysX/src/PvdMetaDataBindingData.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383cd007fd2f383cd00 /* PvdMetaDataPvdBinding.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.h"; path = "../../PhysX/src/PvdMetaDataPvdBinding.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383cd687fd2f383cd68 /* PvdPhysicsClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.h"; path = "../../PhysX/src/PvdPhysicsClient.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383cdd07fd2f383cdd0 /* PvdTypeNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdTypeNames.h"; path = "../../PhysX/src/PvdTypeNames.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383ce387fd2f383ce38 /* NpActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.cpp"; path = "../../PhysX/src/NpActor.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf383cea07fd2f383cea0 /* NpAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.cpp"; path = "../../PhysX/src/NpAggregate.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf383cf087fd2f383cf08 /* NpArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.cpp"; path = "../../PhysX/src/NpArticulation.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf383cf707fd2f383cf70 /* NpArticulationJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.cpp"; path = "../../PhysX/src/NpArticulationJoint.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf383cfd87fd2f383cfd8 /* NpArticulationLink.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.cpp"; path = "../../PhysX/src/NpArticulationLink.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf383d0407fd2f383d040 /* NpBatchQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.cpp"; path = "../../PhysX/src/NpBatchQuery.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf383d0a87fd2f383d0a8 /* NpConstraint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.cpp"; path = "../../PhysX/src/NpConstraint.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf383d1107fd2f383d110 /* NpFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.cpp"; path = "../../PhysX/src/NpFactory.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf383d1787fd2f383d178 /* NpMaterial.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.cpp"; path = "../../PhysX/src/NpMaterial.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf383d1e07fd2f383d1e0 /* NpMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMetaData.cpp"; path = "../../PhysX/src/NpMetaData.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf383d2487fd2f383d248 /* NpPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.cpp"; path = "../../PhysX/src/NpPhysics.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf383d2b07fd2f383d2b0 /* NpPvdSceneQueryCollector.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.cpp"; path = "../../PhysX/src/NpPvdSceneQueryCollector.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf383d3187fd2f383d318 /* NpReadCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.cpp"; path = "../../PhysX/src/NpReadCheck.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf383d3807fd2f383d380 /* NpRigidDynamic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.cpp"; path = "../../PhysX/src/NpRigidDynamic.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf383d3e87fd2f383d3e8 /* NpRigidStatic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.cpp"; path = "../../PhysX/src/NpRigidStatic.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf383d4507fd2f383d450 /* NpScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.cpp"; path = "../../PhysX/src/NpScene.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf383d4b87fd2f383d4b8 /* NpSceneQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.cpp"; path = "../../PhysX/src/NpSceneQueries.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf383d5207fd2f383d520 /* NpSerializerAdapter.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSerializerAdapter.cpp"; path = "../../PhysX/src/NpSerializerAdapter.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf383d5887fd2f383d588 /* NpShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.cpp"; path = "../../PhysX/src/NpShape.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf383d5f07fd2f383d5f0 /* NpShapeManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.cpp"; path = "../../PhysX/src/NpShapeManager.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf383d6587fd2f383d658 /* NpSpatialIndex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.cpp"; path = "../../PhysX/src/NpSpatialIndex.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf383d6c07fd2f383d6c0 /* NpVolumeCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.cpp"; path = "../../PhysX/src/NpVolumeCache.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf383d7287fd2f383d728 /* NpWriteCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.cpp"; path = "../../PhysX/src/NpWriteCheck.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf383d7907fd2f383d790 /* PvdMetaDataPvdBinding.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.cpp"; path = "../../PhysX/src/PvdMetaDataPvdBinding.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf383d7f87fd2f383d7f8 /* PvdPhysicsClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.cpp"; path = "../../PhysX/src/PvdPhysicsClient.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf383d8607fd2f383d860 /* particles/NpParticleBaseTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleBaseTemplate.h"; path = "../../PhysX/src/particles/NpParticleBaseTemplate.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383d8c87fd2f383d8c8 /* particles/NpParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.h"; path = "../../PhysX/src/particles/NpParticleFluid.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383d9307fd2f383d930 /* particles/NpParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluidReadData.h"; path = "../../PhysX/src/particles/NpParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383d9987fd2f383d998 /* particles/NpParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.h"; path = "../../PhysX/src/particles/NpParticleSystem.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383da007fd2f383da00 /* particles/NpParticleFluid.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.cpp"; path = "../../PhysX/src/particles/NpParticleFluid.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf383da687fd2f383da68 /* particles/NpParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.cpp"; path = "../../PhysX/src/particles/NpParticleSystem.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf383dad07fd2f383dad0 /* buffering/ScbActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.h"; path = "../../PhysX/src/buffering/ScbActor.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383db387fd2f383db38 /* buffering/ScbAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.h"; path = "../../PhysX/src/buffering/ScbAggregate.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383dba07fd2f383dba0 /* buffering/ScbArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulation.h"; path = "../../PhysX/src/buffering/ScbArticulation.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383dc087fd2f383dc08 /* buffering/ScbArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulationJoint.h"; path = "../../PhysX/src/buffering/ScbArticulationJoint.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383dc707fd2f383dc70 /* buffering/ScbBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.h"; path = "../../PhysX/src/buffering/ScbBase.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383dcd87fd2f383dcd8 /* buffering/ScbBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBody.h"; path = "../../PhysX/src/buffering/ScbBody.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383dd407fd2f383dd40 /* buffering/ScbCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.h"; path = "../../PhysX/src/buffering/ScbCloth.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383dda87fd2f383dda8 /* buffering/ScbConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbConstraint.h"; path = "../../PhysX/src/buffering/ScbConstraint.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383de107fd2f383de10 /* buffering/ScbDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbDefs.h"; path = "../../PhysX/src/buffering/ScbDefs.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383de787fd2f383de78 /* buffering/ScbNpDeps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbNpDeps.h"; path = "../../PhysX/src/buffering/ScbNpDeps.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383dee07fd2f383dee0 /* buffering/ScbParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.h"; path = "../../PhysX/src/buffering/ScbParticleSystem.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383df487fd2f383df48 /* buffering/ScbRigidObject.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidObject.h"; path = "../../PhysX/src/buffering/ScbRigidObject.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383dfb07fd2f383dfb0 /* buffering/ScbRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidStatic.h"; path = "../../PhysX/src/buffering/ScbRigidStatic.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383e0187fd2f383e018 /* buffering/ScbScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.h"; path = "../../PhysX/src/buffering/ScbScene.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383e0807fd2f383e080 /* buffering/ScbSceneBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbSceneBuffer.h"; path = "../../PhysX/src/buffering/ScbSceneBuffer.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383e0e87fd2f383e0e8 /* buffering/ScbScenePvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.h"; path = "../../PhysX/src/buffering/ScbScenePvdClient.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383e1507fd2f383e150 /* buffering/ScbShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.h"; path = "../../PhysX/src/buffering/ScbShape.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383e1b87fd2f383e1b8 /* buffering/ScbType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbType.h"; path = "../../PhysX/src/buffering/ScbType.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383e2207fd2f383e220 /* buffering/ScbActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.cpp"; path = "../../PhysX/src/buffering/ScbActor.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf383e2887fd2f383e288 /* buffering/ScbAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.cpp"; path = "../../PhysX/src/buffering/ScbAggregate.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf383e2f07fd2f383e2f0 /* buffering/ScbBase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.cpp"; path = "../../PhysX/src/buffering/ScbBase.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf383e3587fd2f383e358 /* buffering/ScbCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.cpp"; path = "../../PhysX/src/buffering/ScbCloth.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf383e3c07fd2f383e3c0 /* buffering/ScbMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbMetaData.cpp"; path = "../../PhysX/src/buffering/ScbMetaData.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf383e4287fd2f383e428 /* buffering/ScbParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.cpp"; path = "../../PhysX/src/buffering/ScbParticleSystem.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf383e4907fd2f383e490 /* buffering/ScbScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.cpp"; path = "../../PhysX/src/buffering/ScbScene.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf383e4f87fd2f383e4f8 /* buffering/ScbScenePvdClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.cpp"; path = "../../PhysX/src/buffering/ScbScenePvdClient.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf383e5607fd2f383e560 /* buffering/ScbShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.cpp"; path = "../../PhysX/src/buffering/ScbShape.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf383e5c87fd2f383e5c8 /* cloth/NpCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.h"; path = "../../PhysX/src/cloth/NpCloth.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383e6307fd2f383e630 /* cloth/NpClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.h"; path = "../../PhysX/src/cloth/NpClothFabric.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383e6987fd2f383e698 /* cloth/NpClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.h"; path = "../../PhysX/src/cloth/NpClothParticleData.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383e7007fd2f383e700 /* cloth/NpCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.cpp"; path = "../../PhysX/src/cloth/NpCloth.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf383e7687fd2f383e768 /* cloth/NpClothFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.cpp"; path = "../../PhysX/src/cloth/NpClothFabric.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf383e7d07fd2f383e7d0 /* cloth/NpClothParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.cpp"; path = "../../PhysX/src/cloth/NpClothParticleData.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf383e8387fd2f383e838 /* ../../ImmediateMode/src/NpImmediateMode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "../../ImmediateMode/src/NpImmediateMode.cpp"; path = "../../ImmediateMode/src/NpImmediateMode.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3835a007fd2f3835a00 /* PxActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxActor.h"; path = "../../../Include/PxActor.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3835a687fd2f3835a68 /* PxAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAggregate.h"; path = "../../../Include/PxAggregate.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3835ad07fd2f3835ad0 /* PxArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulation.h"; path = "../../../Include/PxArticulation.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3835b387fd2f3835b38 /* PxArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationJoint.h"; path = "../../../Include/PxArticulationJoint.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3835ba07fd2f3835ba0 /* PxArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationLink.h"; path = "../../../Include/PxArticulationLink.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3835c087fd2f3835c08 /* PxBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQuery.h"; path = "../../../Include/PxBatchQuery.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3835c707fd2f3835c70 /* PxBatchQueryDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQueryDesc.h"; path = "../../../Include/PxBatchQueryDesc.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3835cd87fd2f3835cd8 /* PxBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhase.h"; path = "../../../Include/PxBroadPhase.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3835d407fd2f3835d40 /* PxClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClient.h"; path = "../../../Include/PxClient.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3835da87fd2f3835da8 /* PxConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraint.h"; path = "../../../Include/PxConstraint.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3835e107fd2f3835e10 /* PxConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintDesc.h"; path = "../../../Include/PxConstraintDesc.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3835e787fd2f3835e78 /* PxContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContact.h"; path = "../../../Include/PxContact.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3835ee07fd2f3835ee0 /* PxContactModifyCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContactModifyCallback.h"; path = "../../../Include/PxContactModifyCallback.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3835f487fd2f3835f48 /* PxDeletionListener.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDeletionListener.h"; path = "../../../Include/PxDeletionListener.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3835fb07fd2f3835fb0 /* PxFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFiltering.h"; path = "../../../Include/PxFiltering.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38360187fd2f3836018 /* PxForceMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxForceMode.h"; path = "../../../Include/PxForceMode.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38360807fd2f3836080 /* PxImmediateMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxImmediateMode.h"; path = "../../../Include/PxImmediateMode.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38360e87fd2f38360e8 /* PxLockedData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxLockedData.h"; path = "../../../Include/PxLockedData.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38361507fd2f3836150 /* PxMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMaterial.h"; path = "../../../Include/PxMaterial.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38361b87fd2f38361b8 /* PxPhysXConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysXConfig.h"; path = "../../../Include/PxPhysXConfig.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38362207fd2f3836220 /* PxPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysics.h"; path = "../../../Include/PxPhysics.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38362887fd2f3836288 /* PxPhysicsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsAPI.h"; path = "../../../Include/PxPhysicsAPI.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38362f07fd2f38362f0 /* PxPhysicsSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsSerialization.h"; path = "../../../Include/PxPhysicsSerialization.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38363587fd2f3836358 /* PxPhysicsVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsVersion.h"; path = "../../../Include/PxPhysicsVersion.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38363c07fd2f38363c0 /* PxPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPruningStructure.h"; path = "../../../Include/PxPruningStructure.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38364287fd2f3836428 /* PxQueryFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryFiltering.h"; path = "../../../Include/PxQueryFiltering.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38364907fd2f3836490 /* PxQueryReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryReport.h"; path = "../../../Include/PxQueryReport.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38364f87fd2f38364f8 /* PxRigidActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActor.h"; path = "../../../Include/PxRigidActor.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38365607fd2f3836560 /* PxRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBody.h"; path = "../../../Include/PxRigidBody.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38365c87fd2f38365c8 /* PxRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidDynamic.h"; path = "../../../Include/PxRigidDynamic.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38366307fd2f3836630 /* PxRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidStatic.h"; path = "../../../Include/PxRigidStatic.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38366987fd2f3836698 /* PxScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxScene.h"; path = "../../../Include/PxScene.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38367007fd2f3836700 /* PxSceneDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneDesc.h"; path = "../../../Include/PxSceneDesc.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38367687fd2f3836768 /* PxSceneLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneLock.h"; path = "../../../Include/PxSceneLock.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38367d07fd2f38367d0 /* PxShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShape.h"; path = "../../../Include/PxShape.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38368387fd2f3836838 /* PxSimulationEventCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationEventCallback.h"; path = "../../../Include/PxSimulationEventCallback.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38368a07fd2f38368a0 /* PxSimulationStatistics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationStatistics.h"; path = "../../../Include/PxSimulationStatistics.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38369087fd2f3836908 /* PxSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSpatialIndex.h"; path = "../../../Include/PxSpatialIndex.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38369707fd2f3836970 /* PxVisualizationParameter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVisualizationParameter.h"; path = "../../../Include/PxVisualizationParameter.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38369d87fd2f38369d8 /* PxVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVolumeCache.h"; path = "../../../Include/PxVolumeCache.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3836a407fd2f3836a40 /* particles/PxParticleBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBase.h"; path = "../../../Include/particles/PxParticleBase.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3836aa87fd2f3836aa8 /* particles/PxParticleBaseFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBaseFlag.h"; path = "../../../Include/particles/PxParticleBaseFlag.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3836b107fd2f3836b10 /* particles/PxParticleCreationData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleCreationData.h"; path = "../../../Include/particles/PxParticleCreationData.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3836b787fd2f3836b78 /* particles/PxParticleFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFlag.h"; path = "../../../Include/particles/PxParticleFlag.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3836be07fd2f3836be0 /* particles/PxParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluid.h"; path = "../../../Include/particles/PxParticleFluid.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3836c487fd2f3836c48 /* particles/PxParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluidReadData.h"; path = "../../../Include/particles/PxParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3836cb07fd2f3836cb0 /* particles/PxParticleReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleReadData.h"; path = "../../../Include/particles/PxParticleReadData.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3836d187fd2f3836d18 /* particles/PxParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleSystem.h"; path = "../../../Include/particles/PxParticleSystem.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3836d807fd2f3836d80 /* pvd/PxPvdSceneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pvd/PxPvdSceneClient.h"; path = "../../../Include/pvd/PxPvdSceneClient.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3836de87fd2f3836de8 /* cloth/PxCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxCloth.h"; path = "../../../Include/cloth/PxCloth.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3836e507fd2f3836e50 /* cloth/PxClothCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothCollisionData.h"; path = "../../../Include/cloth/PxClothCollisionData.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3836eb87fd2f3836eb8 /* cloth/PxClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothFabric.h"; path = "../../../Include/cloth/PxClothFabric.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3836f207fd2f3836f20 /* cloth/PxClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothParticleData.h"; path = "../../../Include/cloth/PxClothParticleData.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3836f887fd2f3836f88 /* cloth/PxClothTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothTypes.h"; path = "../../../Include/cloth/PxClothTypes.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38330007fd2f3833000 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38330687fd2f3833068 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38330d07fd2f38330d0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38331387fd2f3833138 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38331a07fd2f38331a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38332087fd2f3833208 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38332707fd2f3833270 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38332d87fd2f38332d8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38333407fd2f3833340 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38333a87fd2f38333a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "core/src/PxAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXMetaData/core/src/PxAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf38334107fd2f3833410 /* 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 */
- FFF2eda934e07f8ceda934e0 /* Resources */ = {
+ FFF2f2d231d07fd2f2d231d0 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -233,7 +233,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFCeda934e07f8ceda934e0 /* Frameworks */ = {
+ FFFCf2d231d07fd2f2d231d0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -243,52 +243,52 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF8eda934e07f8ceda934e0 /* Sources */ = {
+ FFF8f2d231d07fd2f2d231d0 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFFee054e387f8cee054e38,
- FFFFee054ea07f8cee054ea0,
- FFFFee054f087f8cee054f08,
- FFFFee054f707f8cee054f70,
- FFFFee054fd87f8cee054fd8,
- FFFFee0550407f8cee055040,
- FFFFee0550a87f8cee0550a8,
- FFFFee0551107f8cee055110,
- FFFFee0551787f8cee055178,
- FFFFee0551e07f8cee0551e0,
- FFFFee0552487f8cee055248,
- FFFFee0552b07f8cee0552b0,
- FFFFee0553187f8cee055318,
- FFFFee0553807f8cee055380,
- FFFFee0553e87f8cee0553e8,
- FFFFee0554507f8cee055450,
- FFFFee0554b87f8cee0554b8,
- FFFFee0555207f8cee055520,
- FFFFee0555887f8cee055588,
- FFFFee0555f07f8cee0555f0,
- FFFFee0556587f8cee055658,
- FFFFee0556c07f8cee0556c0,
- FFFFee0557287f8cee055728,
- FFFFee0557907f8cee055790,
- FFFFee0557f87f8cee0557f8,
- FFFFee055a007f8cee055a00,
- FFFFee055a687f8cee055a68,
- FFFFee0562207f8cee056220,
- FFFFee0562887f8cee056288,
- FFFFee0562f07f8cee0562f0,
- FFFFee0563587f8cee056358,
- FFFFee0563c07f8cee0563c0,
- FFFFee0564287f8cee056428,
- FFFFee0564907f8cee056490,
- FFFFee0564f87f8cee0564f8,
- FFFFee0565607f8cee056560,
- FFFFee0567007f8cee056700,
- FFFFee0567687f8cee056768,
- FFFFee0567d07f8cee0567d0,
- FFFFee0568387f8cee056838,
- FFFFee04b1a87f8cee04b1a8,
- FFFFee04b2107f8cee04b210,
+ FFFFf383ce387fd2f383ce38,
+ FFFFf383cea07fd2f383cea0,
+ FFFFf383cf087fd2f383cf08,
+ FFFFf383cf707fd2f383cf70,
+ FFFFf383cfd87fd2f383cfd8,
+ FFFFf383d0407fd2f383d040,
+ FFFFf383d0a87fd2f383d0a8,
+ FFFFf383d1107fd2f383d110,
+ FFFFf383d1787fd2f383d178,
+ FFFFf383d1e07fd2f383d1e0,
+ FFFFf383d2487fd2f383d248,
+ FFFFf383d2b07fd2f383d2b0,
+ FFFFf383d3187fd2f383d318,
+ FFFFf383d3807fd2f383d380,
+ FFFFf383d3e87fd2f383d3e8,
+ FFFFf383d4507fd2f383d450,
+ FFFFf383d4b87fd2f383d4b8,
+ FFFFf383d5207fd2f383d520,
+ FFFFf383d5887fd2f383d588,
+ FFFFf383d5f07fd2f383d5f0,
+ FFFFf383d6587fd2f383d658,
+ FFFFf383d6c07fd2f383d6c0,
+ FFFFf383d7287fd2f383d728,
+ FFFFf383d7907fd2f383d790,
+ FFFFf383d7f87fd2f383d7f8,
+ FFFFf383da007fd2f383da00,
+ FFFFf383da687fd2f383da68,
+ FFFFf383e2207fd2f383e220,
+ FFFFf383e2887fd2f383e288,
+ FFFFf383e2f07fd2f383e2f0,
+ FFFFf383e3587fd2f383e358,
+ FFFFf383e3c07fd2f383e3c0,
+ FFFFf383e4287fd2f383e428,
+ FFFFf383e4907fd2f383e490,
+ FFFFf383e4f87fd2f383e4f8,
+ FFFFf383e5607fd2f383e560,
+ FFFFf383e7007fd2f383e700,
+ FFFFf383e7687fd2f383e768,
+ FFFFf383e7d07fd2f383e7d0,
+ FFFFf383e8387fd2f383e838,
+ FFFFf38333a87fd2f38333a8,
+ FFFFf38334107fd2f3833410,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -297,112 +297,112 @@
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
- FFF4eda9c6c07f8ceda9c6c0 /* PBXTargetDependency */ = {
+ FFF4f2d4ca507fd2f2d4ca50 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFAec5094107f8cec509410 /* LowLevel */;
- targetProxy = FFF5ec5094107f8cec509410 /* PBXContainerItemProxy */;
+ target = FFFAf28272b07fd2f28272b0 /* LowLevel */;
+ targetProxy = FFF5f28272b07fd2f28272b0 /* PBXContainerItemProxy */;
};
- FFF4eda9f1907f8ceda9f190 /* PBXTargetDependency */ = {
+ FFF4f2d50a707fd2f2d50a70 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFAec410d307f8cec410d30 /* LowLevelAABB */;
- targetProxy = FFF5ec410d307f8cec410d30 /* PBXContainerItemProxy */;
+ target = FFFAf2854ea07fd2f2854ea0 /* LowLevelAABB */;
+ targetProxy = FFF5f2854ea07fd2f2854ea0 /* PBXContainerItemProxy */;
};
- FFF4eda9f2507f8ceda9f250 /* PBXTargetDependency */ = {
+ FFF4f2d50b307fd2f2d50b30 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFAec722a207f8cec722a20 /* LowLevelCloth */;
- targetProxy = FFF5ec722a207f8cec722a20 /* PBXContainerItemProxy */;
+ target = FFFAf188ae307fd2f188ae30 /* LowLevelCloth */;
+ targetProxy = FFF5f188ae307fd2f188ae30 /* PBXContainerItemProxy */;
};
- FFF4eda9f1f07f8ceda9f1f0 /* PBXTargetDependency */ = {
+ FFF4f2d50ad07fd2f2d50ad0 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFAed82e9f07f8ced82e9f0 /* LowLevelDynamics */;
- targetProxy = FFF5ed82e9f07f8ced82e9f0 /* PBXContainerItemProxy */;
+ target = FFFAf29090e07fd2f29090e0 /* LowLevelDynamics */;
+ targetProxy = FFF5f29090e07fd2f29090e0 /* PBXContainerItemProxy */;
};
- FFF4eda9bf707f8ceda9bf70 /* PBXTargetDependency */ = {
+ FFF4f2d4cd407fd2f2d4cd40 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFAed8493f07f8ced8493f0 /* LowLevelParticles */;
- targetProxy = FFF5ed8493f07f8ced8493f0 /* PBXContainerItemProxy */;
+ target = FFFAf28619307fd2f2861930 /* LowLevelParticles */;
+ targetProxy = FFF5f28619307fd2f2861930 /* PBXContainerItemProxy */;
};
- FFF4eda9c6607f8ceda9c660 /* PBXTargetDependency */ = {
+ FFF4f2d4dbf07fd2f2d4dbf0 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFAec1a0dc07f8cec1a0dc0 /* PhysXCommon */;
- targetProxy = FFF5ec1a0dc07f8cec1a0dc0 /* PBXContainerItemProxy */;
+ target = FFFAf18a0c307fd2f18a0c30 /* PhysXCommon */;
+ targetProxy = FFF5f18a0c307fd2f18a0c30 /* PBXContainerItemProxy */;
};
- FFF4eda938007f8ceda93800 /* PBXTargetDependency */ = {
+ FFF4f2d234f07fd2f2d234f0 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFAec18e0107f8cec18e010 /* PxFoundation */;
- targetProxy = FFF5ec18e0107f8cec18e010 /* PBXContainerItemProxy */;
+ target = FFFAf188de607fd2f188de60 /* PxFoundation */;
+ targetProxy = FFF5f188de607fd2f188de60 /* PBXContainerItemProxy */;
};
- FFF4eda934b07f8ceda934b0 /* PBXTargetDependency */ = {
+ FFF4f2d22ac07fd2f2d22ac0 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFAed809f207f8ced809f20 /* PxPvdSDK */;
- targetProxy = FFF5ed809f207f8ced809f20 /* PBXContainerItemProxy */;
+ target = FFFAf2809f007fd2f2809f00 /* PxPvdSDK */;
+ targetProxy = FFF5f2809f007fd2f2809f00 /* PBXContainerItemProxy */;
};
- FFF4eda9c0b07f8ceda9c0b0 /* PBXTargetDependency */ = {
+ FFF4f2d4ce307fd2f2d4ce30 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFAec48c6307f8cec48c630 /* PxTask */;
- targetProxy = FFF5ec48c6307f8cec48c630 /* PBXContainerItemProxy */;
+ target = FFFAf28f6e807fd2f28f6e80 /* PxTask */;
+ targetProxy = FFF5f28f6e807fd2f28f6e80 /* PBXContainerItemProxy */;
};
- FFF4eda9bfd07f8ceda9bfd0 /* PBXTargetDependency */ = {
+ FFF4f2d4cda07fd2f2d4cda0 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFAedabfac07f8cedabfac0 /* SceneQuery */;
- targetProxy = FFF5edabfac07f8cedabfac0 /* PBXContainerItemProxy */;
+ target = FFFAf2d709607fd2f2d70960 /* SceneQuery */;
+ targetProxy = FFF5f2d709607fd2f2d70960 /* PBXContainerItemProxy */;
};
- FFF4eda9c0307f8ceda9c030 /* PBXTargetDependency */ = {
+ FFF4f2d4ce007fd2f2d4ce00 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFAedac3f107f8cedac3f10 /* SimulationController */;
- targetProxy = FFF5edac3f107f8cedac3f10 /* PBXContainerItemProxy */;
+ target = FFFAf2d74db07fd2f2d74db0 /* SimulationController */;
+ targetProxy = FFF5f2d74db07fd2f2d74db0 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of PhysXCharacterKinematic */
- FFFFedaa27a07f8cedaa27a0 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFDedaae9b07f8cedaae9b0 /* PhysXExtensions */; };
- FFFFee0512787f8cee051278 /* CctBoxController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0512787f8cee051278 /* CctBoxController.cpp */; };
- FFFFee0512e07f8cee0512e0 /* CctCapsuleController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0512e07f8cee0512e0 /* CctCapsuleController.cpp */; };
- FFFFee0513487f8cee051348 /* CctCharacterController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0513487f8cee051348 /* CctCharacterController.cpp */; };
- FFFFee0513b07f8cee0513b0 /* CctCharacterControllerCallbacks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0513b07f8cee0513b0 /* CctCharacterControllerCallbacks.cpp */; };
- FFFFee0514187f8cee051418 /* CctCharacterControllerManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0514187f8cee051418 /* CctCharacterControllerManager.cpp */; };
- FFFFee0514807f8cee051480 /* CctController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0514807f8cee051480 /* CctController.cpp */; };
- FFFFee0514e87f8cee0514e8 /* CctObstacleContext.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0514e87f8cee0514e8 /* CctObstacleContext.cpp */; };
- FFFFee0515507f8cee051550 /* CctSweptBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0515507f8cee051550 /* CctSweptBox.cpp */; };
- FFFFee0515b87f8cee0515b8 /* CctSweptCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0515b87f8cee0515b8 /* CctSweptCapsule.cpp */; };
- FFFFee0516207f8cee051620 /* CctSweptVolume.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0516207f8cee051620 /* CctSweptVolume.cpp */; };
+ FFFFf2d53c007fd2f2d53c00 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFDf2d5f8507fd2f2d5f850 /* PhysXExtensions */; };
+ FFFFf38394787fd2f3839478 /* CctBoxController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf38394787fd2f3839478 /* CctBoxController.cpp */; };
+ FFFFf38394e07fd2f38394e0 /* CctCapsuleController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf38394e07fd2f38394e0 /* CctCapsuleController.cpp */; };
+ FFFFf38395487fd2f3839548 /* CctCharacterController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf38395487fd2f3839548 /* CctCharacterController.cpp */; };
+ FFFFf38395b07fd2f38395b0 /* CctCharacterControllerCallbacks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf38395b07fd2f38395b0 /* CctCharacterControllerCallbacks.cpp */; };
+ FFFFf38396187fd2f3839618 /* CctCharacterControllerManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf38396187fd2f3839618 /* CctCharacterControllerManager.cpp */; };
+ FFFFf38396807fd2f3839680 /* CctController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf38396807fd2f3839680 /* CctController.cpp */; };
+ FFFFf38396e87fd2f38396e8 /* CctObstacleContext.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf38396e87fd2f38396e8 /* CctObstacleContext.cpp */; };
+ FFFFf38397507fd2f3839750 /* CctSweptBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf38397507fd2f3839750 /* CctSweptBox.cpp */; };
+ FFFFf38397b87fd2f38397b8 /* CctSweptCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf38397b87fd2f38397b8 /* CctSweptCapsule.cpp */; };
+ FFFFf38398207fd2f3839820 /* CctSweptVolume.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf38398207fd2f3839820 /* CctSweptVolume.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFDeda9c0c07f8ceda9c0c0 /* PhysXCharacterKinematic */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCharacterKinematic"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFDedaa31907f8cedaa3190 /* PxBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBoxController.h"; path = "../../../Include/characterkinematic/PxBoxController.h"; sourceTree = SOURCE_ROOT; };
- FFFDedaa31f87f8cedaa31f8 /* PxCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCapsuleController.h"; path = "../../../Include/characterkinematic/PxCapsuleController.h"; sourceTree = SOURCE_ROOT; };
- FFFDedaa32607f8cedaa3260 /* PxCharacter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCharacter.h"; path = "../../../Include/characterkinematic/PxCharacter.h"; sourceTree = SOURCE_ROOT; };
- FFFDedaa32c87f8cedaa32c8 /* PxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxController.h"; path = "../../../Include/characterkinematic/PxController.h"; sourceTree = SOURCE_ROOT; };
- FFFDedaa33307f8cedaa3330 /* PxControllerBehavior.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerBehavior.h"; path = "../../../Include/characterkinematic/PxControllerBehavior.h"; sourceTree = SOURCE_ROOT; };
- FFFDedaa33987f8cedaa3398 /* PxControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerManager.h"; path = "../../../Include/characterkinematic/PxControllerManager.h"; sourceTree = SOURCE_ROOT; };
- FFFDedaa34007f8cedaa3400 /* PxControllerObstacles.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerObstacles.h"; path = "../../../Include/characterkinematic/PxControllerObstacles.h"; sourceTree = SOURCE_ROOT; };
- FFFDedaa34687f8cedaa3468 /* PxExtended.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtended.h"; path = "../../../Include/characterkinematic/PxExtended.h"; sourceTree = SOURCE_ROOT; };
- FFFDee050e007f8cee050e00 /* CctBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.h"; path = "../../PhysXCharacterKinematic/src/CctBoxController.h"; sourceTree = SOURCE_ROOT; };
- FFFDee050e687f8cee050e68 /* CctCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.h"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.h"; sourceTree = SOURCE_ROOT; };
- FFFDee050ed07f8cee050ed0 /* CctCharacterController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.h"; sourceTree = SOURCE_ROOT; };
- FFFDee050f387f8cee050f38 /* CctCharacterControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.h"; sourceTree = SOURCE_ROOT; };
- FFFDee050fa07f8cee050fa0 /* CctController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.h"; path = "../../PhysXCharacterKinematic/src/CctController.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0510087f8cee051008 /* CctInternalStructs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctInternalStructs.h"; path = "../../PhysXCharacterKinematic/src/CctInternalStructs.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0510707f8cee051070 /* CctObstacleContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.h"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0510d87f8cee0510d8 /* CctSweptBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.h"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0511407f8cee051140 /* CctSweptCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.h"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0511a87f8cee0511a8 /* CctSweptVolume.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.h"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0512107f8cee051210 /* CctUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctUtils.h"; path = "../../PhysXCharacterKinematic/src/CctUtils.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0512787f8cee051278 /* CctBoxController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.cpp"; path = "../../PhysXCharacterKinematic/src/CctBoxController.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0512e07f8cee0512e0 /* CctCapsuleController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0513487f8cee051348 /* CctCharacterController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0513b07f8cee0513b0 /* CctCharacterControllerCallbacks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerCallbacks.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerCallbacks.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0514187f8cee051418 /* CctCharacterControllerManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0514807f8cee051480 /* CctController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.cpp"; path = "../../PhysXCharacterKinematic/src/CctController.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0514e87f8cee0514e8 /* CctObstacleContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.cpp"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0515507f8cee051550 /* CctSweptBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0515b87f8cee0515b8 /* CctSweptCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0516207f8cee051620 /* CctSweptVolume.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2d50f307fd2f2d50f30 /* PhysXCharacterKinematic */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCharacterKinematic"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFDf2d540207fd2f2d54020 /* PxBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBoxController.h"; path = "../../../Include/characterkinematic/PxBoxController.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2d540887fd2f2d54088 /* PxCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCapsuleController.h"; path = "../../../Include/characterkinematic/PxCapsuleController.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2d540f07fd2f2d540f0 /* PxCharacter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCharacter.h"; path = "../../../Include/characterkinematic/PxCharacter.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2d541587fd2f2d54158 /* PxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxController.h"; path = "../../../Include/characterkinematic/PxController.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2d541c07fd2f2d541c0 /* PxControllerBehavior.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerBehavior.h"; path = "../../../Include/characterkinematic/PxControllerBehavior.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2d542287fd2f2d54228 /* PxControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerManager.h"; path = "../../../Include/characterkinematic/PxControllerManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2d542907fd2f2d54290 /* PxControllerObstacles.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerObstacles.h"; path = "../../../Include/characterkinematic/PxControllerObstacles.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2d542f87fd2f2d542f8 /* PxExtended.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtended.h"; path = "../../../Include/characterkinematic/PxExtended.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38390007fd2f3839000 /* CctBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.h"; path = "../../PhysXCharacterKinematic/src/CctBoxController.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38390687fd2f3839068 /* CctCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.h"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38390d07fd2f38390d0 /* CctCharacterController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38391387fd2f3839138 /* CctCharacterControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38391a07fd2f38391a0 /* CctController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.h"; path = "../../PhysXCharacterKinematic/src/CctController.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38392087fd2f3839208 /* CctInternalStructs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctInternalStructs.h"; path = "../../PhysXCharacterKinematic/src/CctInternalStructs.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38392707fd2f3839270 /* CctObstacleContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.h"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38392d87fd2f38392d8 /* CctSweptBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.h"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38393407fd2f3839340 /* CctSweptCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.h"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38393a87fd2f38393a8 /* CctSweptVolume.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.h"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38394107fd2f3839410 /* CctUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctUtils.h"; path = "../../PhysXCharacterKinematic/src/CctUtils.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38394787fd2f3839478 /* CctBoxController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.cpp"; path = "../../PhysXCharacterKinematic/src/CctBoxController.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf38394e07fd2f38394e0 /* CctCapsuleController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf38395487fd2f3839548 /* CctCharacterController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf38395b07fd2f38395b0 /* CctCharacterControllerCallbacks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerCallbacks.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerCallbacks.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf38396187fd2f3839618 /* CctCharacterControllerManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf38396807fd2f3839680 /* CctController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.cpp"; path = "../../PhysXCharacterKinematic/src/CctController.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf38396e87fd2f38396e8 /* CctObstacleContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.cpp"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf38397507fd2f3839750 /* CctSweptBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf38397b87fd2f38397b8 /* CctSweptCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf38398207fd2f3839820 /* CctSweptVolume.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.cpp"; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */
/* Begin PBXResourcesBuildPhase section */
- FFF2eda9c0c07f8ceda9c0c0 /* Resources */ = {
+ FFF2f2d50f307fd2f2d50f30 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -412,7 +412,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFCeda9c0c07f8ceda9c0c0 /* Frameworks */ = {
+ FFFCf2d50f307fd2f2d50f30 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -422,20 +422,20 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF8eda9c0c07f8ceda9c0c0 /* Sources */ = {
+ FFF8f2d50f307fd2f2d50f30 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFFee0512787f8cee051278,
- FFFFee0512e07f8cee0512e0,
- FFFFee0513487f8cee051348,
- FFFFee0513b07f8cee0513b0,
- FFFFee0514187f8cee051418,
- FFFFee0514807f8cee051480,
- FFFFee0514e87f8cee0514e8,
- FFFFee0515507f8cee051550,
- FFFFee0515b87f8cee0515b8,
- FFFFee0516207f8cee051620,
+ FFFFf38394787fd2f3839478,
+ FFFFf38394e07fd2f38394e0,
+ FFFFf38395487fd2f3839548,
+ FFFFf38395b07fd2f38395b0,
+ FFFFf38396187fd2f3839618,
+ FFFFf38396807fd2f3839680,
+ FFFFf38396e87fd2f38396e8,
+ FFFFf38397507fd2f3839750,
+ FFFFf38397b87fd2f38397b8,
+ FFFFf38398207fd2f3839820,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -444,91 +444,91 @@
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
- FFF4eda9dbc07f8ceda9dbc0 /* PBXTargetDependency */ = {
+ FFF4f2d522007fd2f2d52200 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFAec1a0dc07f8cec1a0dc0 /* PhysXCommon */;
- targetProxy = FFF5ec1a0dc07f8cec1a0dc0 /* PBXContainerItemProxy */;
+ target = FFFAf18a0c307fd2f18a0c30 /* PhysXCommon */;
+ targetProxy = FFF5f18a0c307fd2f18a0c30 /* PBXContainerItemProxy */;
};
- FFF4edaa27a07f8cedaa27a0 /* PBXTargetDependency */ = {
+ FFF4f2d53c007fd2f2d53c00 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFAedaae9b07f8cedaae9b0 /* PhysXExtensions */;
- targetProxy = FFF5edaae9b07f8cedaae9b0 /* PBXContainerItemProxy */;
+ target = FFFAf2d5f8507fd2f2d5f850 /* PhysXExtensions */;
+ targetProxy = FFF5f2d5f8507fd2f2d5f850 /* PBXContainerItemProxy */;
};
- FFF4edaa19707f8cedaa1970 /* PBXTargetDependency */ = {
+ FFF4f2d52da07fd2f2d52da0 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFAec18e0107f8cec18e010 /* PxFoundation */;
- targetProxy = FFF5ec18e0107f8cec18e010 /* PBXContainerItemProxy */;
+ target = FFFAf188de607fd2f188de60 /* PxFoundation */;
+ targetProxy = FFF5f188de607fd2f188de60 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of PhysXVehicle */
- FFFFee058a087f8cee058a08 /* PxVehicleComponents.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee058a087f8cee058a08 /* PxVehicleComponents.cpp */; };
- FFFFee058a707f8cee058a70 /* PxVehicleDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee058a707f8cee058a70 /* PxVehicleDrive.cpp */; };
- FFFFee058ad87f8cee058ad8 /* PxVehicleDrive4W.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee058ad87f8cee058ad8 /* PxVehicleDrive4W.cpp */; };
- FFFFee058b407f8cee058b40 /* PxVehicleDriveNW.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee058b407f8cee058b40 /* PxVehicleDriveNW.cpp */; };
- FFFFee058ba87f8cee058ba8 /* PxVehicleDriveTank.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee058ba87f8cee058ba8 /* PxVehicleDriveTank.cpp */; };
- FFFFee058c107f8cee058c10 /* PxVehicleMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee058c107f8cee058c10 /* PxVehicleMetaData.cpp */; };
- FFFFee058c787f8cee058c78 /* PxVehicleNoDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee058c787f8cee058c78 /* PxVehicleNoDrive.cpp */; };
- FFFFee058ce07f8cee058ce0 /* PxVehicleSDK.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee058ce07f8cee058ce0 /* PxVehicleSDK.cpp */; };
- FFFFee058d487f8cee058d48 /* PxVehicleSerialization.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee058d487f8cee058d48 /* PxVehicleSerialization.cpp */; };
- FFFFee058db07f8cee058db0 /* PxVehicleSuspWheelTire4.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee058db07f8cee058db0 /* PxVehicleSuspWheelTire4.cpp */; };
- FFFFee058e187f8cee058e18 /* PxVehicleTireFriction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee058e187f8cee058e18 /* PxVehicleTireFriction.cpp */; };
- FFFFee058e807f8cee058e80 /* PxVehicleUpdate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee058e807f8cee058e80 /* PxVehicleUpdate.cpp */; };
- FFFFee058ee87f8cee058ee8 /* PxVehicleWheels.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee058ee87f8cee058ee8 /* PxVehicleWheels.cpp */; };
- FFFFee058f507f8cee058f50 /* VehicleUtilControl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee058f507f8cee058f50 /* VehicleUtilControl.cpp */; };
- FFFFee058fb87f8cee058fb8 /* VehicleUtilSetup.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee058fb87f8cee058fb8 /* VehicleUtilSetup.cpp */; };
- FFFFee0590207f8cee059020 /* VehicleUtilTelemetry.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0590207f8cee059020 /* VehicleUtilTelemetry.cpp */; };
- FFFFedaaeec87f8cedaaeec8 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDedaaeec87f8cedaaeec8 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */; };
- FFFFedaaef307f8cedaaef30 /* src/PxVehicleMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDedaaef307f8cedaaef30 /* src/PxVehicleMetaDataObjects.cpp */; };
+ FFFFf3840a087fd2f3840a08 /* PxVehicleComponents.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf3840a087fd2f3840a08 /* PxVehicleComponents.cpp */; };
+ FFFFf3840a707fd2f3840a70 /* PxVehicleDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf3840a707fd2f3840a70 /* PxVehicleDrive.cpp */; };
+ FFFFf3840ad87fd2f3840ad8 /* PxVehicleDrive4W.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf3840ad87fd2f3840ad8 /* PxVehicleDrive4W.cpp */; };
+ FFFFf3840b407fd2f3840b40 /* PxVehicleDriveNW.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf3840b407fd2f3840b40 /* PxVehicleDriveNW.cpp */; };
+ FFFFf3840ba87fd2f3840ba8 /* PxVehicleDriveTank.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf3840ba87fd2f3840ba8 /* PxVehicleDriveTank.cpp */; };
+ FFFFf3840c107fd2f3840c10 /* PxVehicleMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf3840c107fd2f3840c10 /* PxVehicleMetaData.cpp */; };
+ FFFFf3840c787fd2f3840c78 /* PxVehicleNoDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf3840c787fd2f3840c78 /* PxVehicleNoDrive.cpp */; };
+ FFFFf3840ce07fd2f3840ce0 /* PxVehicleSDK.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf3840ce07fd2f3840ce0 /* PxVehicleSDK.cpp */; };
+ FFFFf3840d487fd2f3840d48 /* PxVehicleSerialization.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf3840d487fd2f3840d48 /* PxVehicleSerialization.cpp */; };
+ FFFFf3840db07fd2f3840db0 /* PxVehicleSuspWheelTire4.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf3840db07fd2f3840db0 /* PxVehicleSuspWheelTire4.cpp */; };
+ FFFFf3840e187fd2f3840e18 /* PxVehicleTireFriction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf3840e187fd2f3840e18 /* PxVehicleTireFriction.cpp */; };
+ FFFFf3840e807fd2f3840e80 /* PxVehicleUpdate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf3840e807fd2f3840e80 /* PxVehicleUpdate.cpp */; };
+ FFFFf3840ee87fd2f3840ee8 /* PxVehicleWheels.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf3840ee87fd2f3840ee8 /* PxVehicleWheels.cpp */; };
+ FFFFf3840f507fd2f3840f50 /* VehicleUtilControl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf3840f507fd2f3840f50 /* VehicleUtilControl.cpp */; };
+ FFFFf3840fb87fd2f3840fb8 /* VehicleUtilSetup.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf3840fb87fd2f3840fb8 /* VehicleUtilSetup.cpp */; };
+ FFFFf38410207fd2f3841020 /* VehicleUtilTelemetry.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf38410207fd2f3841020 /* VehicleUtilTelemetry.cpp */; };
+ FFFFf2d5fd687fd2f2d5fd68 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDf2d5fd687fd2f2d5fd68 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */; };
+ FFFFf2d5fdd07fd2f2d5fdd0 /* src/PxVehicleMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDf2d5fdd07fd2f2d5fdd0 /* src/PxVehicleMetaDataObjects.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFDeda9d5107f8ceda9d510 /* PhysXVehicle */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXVehicle"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFDee056a007f8cee056a00 /* PxVehicleComponents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.h"; path = "../../../Include/vehicle/PxVehicleComponents.h"; sourceTree = SOURCE_ROOT; };
- FFFDee056a687f8cee056a68 /* PxVehicleDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.h"; path = "../../../Include/vehicle/PxVehicleDrive.h"; sourceTree = SOURCE_ROOT; };
- FFFDee056ad07f8cee056ad0 /* PxVehicleDrive4W.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.h"; path = "../../../Include/vehicle/PxVehicleDrive4W.h"; sourceTree = SOURCE_ROOT; };
- FFFDee056b387f8cee056b38 /* PxVehicleDriveNW.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.h"; path = "../../../Include/vehicle/PxVehicleDriveNW.h"; sourceTree = SOURCE_ROOT; };
- FFFDee056ba07f8cee056ba0 /* PxVehicleDriveTank.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.h"; path = "../../../Include/vehicle/PxVehicleDriveTank.h"; sourceTree = SOURCE_ROOT; };
- FFFDee056c087f8cee056c08 /* PxVehicleNoDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.h"; path = "../../../Include/vehicle/PxVehicleNoDrive.h"; sourceTree = SOURCE_ROOT; };
- FFFDee056c707f8cee056c70 /* PxVehicleSDK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.h"; path = "../../../Include/vehicle/PxVehicleSDK.h"; sourceTree = SOURCE_ROOT; };
- FFFDee056cd87f8cee056cd8 /* PxVehicleShaders.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleShaders.h"; path = "../../../Include/vehicle/PxVehicleShaders.h"; sourceTree = SOURCE_ROOT; };
- FFFDee056d407f8cee056d40 /* PxVehicleTireFriction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.h"; path = "../../../Include/vehicle/PxVehicleTireFriction.h"; sourceTree = SOURCE_ROOT; };
- FFFDee056da87f8cee056da8 /* PxVehicleUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.h"; path = "../../../Include/vehicle/PxVehicleUpdate.h"; sourceTree = SOURCE_ROOT; };
- FFFDee056e107f8cee056e10 /* PxVehicleUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtil.h"; path = "../../../Include/vehicle/PxVehicleUtil.h"; sourceTree = SOURCE_ROOT; };
- FFFDee056e787f8cee056e78 /* PxVehicleUtilControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilControl.h"; path = "../../../Include/vehicle/PxVehicleUtilControl.h"; sourceTree = SOURCE_ROOT; };
- FFFDee056ee07f8cee056ee0 /* PxVehicleUtilSetup.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilSetup.h"; path = "../../../Include/vehicle/PxVehicleUtilSetup.h"; sourceTree = SOURCE_ROOT; };
- FFFDee056f487f8cee056f48 /* PxVehicleUtilTelemetry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilTelemetry.h"; path = "../../../Include/vehicle/PxVehicleUtilTelemetry.h"; sourceTree = SOURCE_ROOT; };
- FFFDee056fb07f8cee056fb0 /* PxVehicleWheels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.h"; path = "../../../Include/vehicle/PxVehicleWheels.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0588007f8cee058800 /* PxVehicleDefaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDefaults.h"; path = "../../PhysXVehicle/src/PxVehicleDefaults.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0588687f8cee058868 /* PxVehicleLinearMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleLinearMath.h"; path = "../../PhysXVehicle/src/PxVehicleLinearMath.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0588d07f8cee0588d0 /* PxVehicleSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.h"; path = "../../PhysXVehicle/src/PxVehicleSerialization.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0589387f8cee058938 /* PxVehicleSuspLimitConstraintShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspLimitConstraintShader.h"; path = "../../PhysXVehicle/src/PxVehicleSuspLimitConstraintShader.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0589a07f8cee0589a0 /* PxVehicleSuspWheelTire4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.h"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.h"; sourceTree = SOURCE_ROOT; };
- FFFDee058a087f8cee058a08 /* PxVehicleComponents.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.cpp"; path = "../../PhysXVehicle/src/PxVehicleComponents.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee058a707f8cee058a70 /* PxVehicleDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee058ad87f8cee058ad8 /* PxVehicleDrive4W.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive4W.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee058b407f8cee058b40 /* PxVehicleDriveNW.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveNW.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee058ba87f8cee058ba8 /* PxVehicleDriveTank.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveTank.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee058c107f8cee058c10 /* PxVehicleMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleMetaData.cpp"; path = "../../PhysXVehicle/src/PxVehicleMetaData.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee058c787f8cee058c78 /* PxVehicleNoDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleNoDrive.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee058ce07f8cee058ce0 /* PxVehicleSDK.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.cpp"; path = "../../PhysXVehicle/src/PxVehicleSDK.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee058d487f8cee058d48 /* PxVehicleSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.cpp"; path = "../../PhysXVehicle/src/PxVehicleSerialization.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee058db07f8cee058db0 /* PxVehicleSuspWheelTire4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.cpp"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee058e187f8cee058e18 /* PxVehicleTireFriction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.cpp"; path = "../../PhysXVehicle/src/PxVehicleTireFriction.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee058e807f8cee058e80 /* PxVehicleUpdate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.cpp"; path = "../../PhysXVehicle/src/PxVehicleUpdate.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee058ee87f8cee058ee8 /* PxVehicleWheels.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.cpp"; path = "../../PhysXVehicle/src/PxVehicleWheels.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee058f507f8cee058f50 /* VehicleUtilControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilControl.cpp"; path = "../../PhysXVehicle/src/VehicleUtilControl.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee058fb87f8cee058fb8 /* VehicleUtilSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilSetup.cpp"; path = "../../PhysXVehicle/src/VehicleUtilSetup.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0590207f8cee059020 /* VehicleUtilTelemetry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilTelemetry.cpp"; path = "../../PhysXVehicle/src/VehicleUtilTelemetry.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDedaaed907f8cedaaed90 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; };
- FFFDedaaedf87f8cedaaedf8 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
- FFFDedaaee607f8cedaaee60 /* include/PxVehicleMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
- FFFDedaaeec87f8cedaaeec8 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXVehicle/src/PhysXMetaData/src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDedaaef307f8cedaaef30 /* src/PxVehicleMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxVehicleMetaDataObjects.cpp"; path = "../../PhysXVehicle/src/PhysXMetaData/src/PxVehicleMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2d4e3107fd2f2d4e310 /* PhysXVehicle */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXVehicle"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFDf383ea007fd2f383ea00 /* PxVehicleComponents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.h"; path = "../../../Include/vehicle/PxVehicleComponents.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383ea687fd2f383ea68 /* PxVehicleDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.h"; path = "../../../Include/vehicle/PxVehicleDrive.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383ead07fd2f383ead0 /* PxVehicleDrive4W.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.h"; path = "../../../Include/vehicle/PxVehicleDrive4W.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383eb387fd2f383eb38 /* PxVehicleDriveNW.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.h"; path = "../../../Include/vehicle/PxVehicleDriveNW.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383eba07fd2f383eba0 /* PxVehicleDriveTank.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.h"; path = "../../../Include/vehicle/PxVehicleDriveTank.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383ec087fd2f383ec08 /* PxVehicleNoDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.h"; path = "../../../Include/vehicle/PxVehicleNoDrive.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383ec707fd2f383ec70 /* PxVehicleSDK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.h"; path = "../../../Include/vehicle/PxVehicleSDK.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383ecd87fd2f383ecd8 /* PxVehicleShaders.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleShaders.h"; path = "../../../Include/vehicle/PxVehicleShaders.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383ed407fd2f383ed40 /* PxVehicleTireFriction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.h"; path = "../../../Include/vehicle/PxVehicleTireFriction.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383eda87fd2f383eda8 /* PxVehicleUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.h"; path = "../../../Include/vehicle/PxVehicleUpdate.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383ee107fd2f383ee10 /* PxVehicleUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtil.h"; path = "../../../Include/vehicle/PxVehicleUtil.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383ee787fd2f383ee78 /* PxVehicleUtilControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilControl.h"; path = "../../../Include/vehicle/PxVehicleUtilControl.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383eee07fd2f383eee0 /* PxVehicleUtilSetup.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilSetup.h"; path = "../../../Include/vehicle/PxVehicleUtilSetup.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383ef487fd2f383ef48 /* PxVehicleUtilTelemetry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilTelemetry.h"; path = "../../../Include/vehicle/PxVehicleUtilTelemetry.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf383efb07fd2f383efb0 /* PxVehicleWheels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.h"; path = "../../../Include/vehicle/PxVehicleWheels.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38408007fd2f3840800 /* PxVehicleDefaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDefaults.h"; path = "../../PhysXVehicle/src/PxVehicleDefaults.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38408687fd2f3840868 /* PxVehicleLinearMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleLinearMath.h"; path = "../../PhysXVehicle/src/PxVehicleLinearMath.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38408d07fd2f38408d0 /* PxVehicleSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.h"; path = "../../PhysXVehicle/src/PxVehicleSerialization.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38409387fd2f3840938 /* PxVehicleSuspLimitConstraintShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspLimitConstraintShader.h"; path = "../../PhysXVehicle/src/PxVehicleSuspLimitConstraintShader.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38409a07fd2f38409a0 /* PxVehicleSuspWheelTire4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.h"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3840a087fd2f3840a08 /* PxVehicleComponents.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.cpp"; path = "../../PhysXVehicle/src/PxVehicleComponents.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3840a707fd2f3840a70 /* PxVehicleDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3840ad87fd2f3840ad8 /* PxVehicleDrive4W.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive4W.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3840b407fd2f3840b40 /* PxVehicleDriveNW.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveNW.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3840ba87fd2f3840ba8 /* PxVehicleDriveTank.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveTank.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3840c107fd2f3840c10 /* PxVehicleMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleMetaData.cpp"; path = "../../PhysXVehicle/src/PxVehicleMetaData.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3840c787fd2f3840c78 /* PxVehicleNoDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleNoDrive.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3840ce07fd2f3840ce0 /* PxVehicleSDK.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.cpp"; path = "../../PhysXVehicle/src/PxVehicleSDK.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3840d487fd2f3840d48 /* PxVehicleSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.cpp"; path = "../../PhysXVehicle/src/PxVehicleSerialization.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3840db07fd2f3840db0 /* PxVehicleSuspWheelTire4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.cpp"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3840e187fd2f3840e18 /* PxVehicleTireFriction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.cpp"; path = "../../PhysXVehicle/src/PxVehicleTireFriction.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3840e807fd2f3840e80 /* PxVehicleUpdate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.cpp"; path = "../../PhysXVehicle/src/PxVehicleUpdate.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3840ee87fd2f3840ee8 /* PxVehicleWheels.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.cpp"; path = "../../PhysXVehicle/src/PxVehicleWheels.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3840f507fd2f3840f50 /* VehicleUtilControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilControl.cpp"; path = "../../PhysXVehicle/src/VehicleUtilControl.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3840fb87fd2f3840fb8 /* VehicleUtilSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilSetup.cpp"; path = "../../PhysXVehicle/src/VehicleUtilSetup.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf38410207fd2f3841020 /* VehicleUtilTelemetry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilTelemetry.cpp"; path = "../../PhysXVehicle/src/VehicleUtilTelemetry.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2d5fc307fd2f2d5fc30 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2d5fc987fd2f2d5fc98 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2d5fd007fd2f2d5fd00 /* include/PxVehicleMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2d5fd687fd2f2d5fd68 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXVehicle/src/PhysXMetaData/src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2d5fdd07fd2f2d5fdd0 /* 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 */
- FFF2eda9d5107f8ceda9d510 /* Resources */ = {
+ FFF2f2d4e3107fd2f2d4e310 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -538,7 +538,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFCeda9d5107f8ceda9d510 /* Frameworks */ = {
+ FFFCf2d4e3107fd2f2d4e310 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -548,28 +548,28 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF8eda9d5107f8ceda9d510 /* Sources */ = {
+ FFF8f2d4e3107fd2f2d4e310 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFFee058a087f8cee058a08,
- FFFFee058a707f8cee058a70,
- FFFFee058ad87f8cee058ad8,
- FFFFee058b407f8cee058b40,
- FFFFee058ba87f8cee058ba8,
- FFFFee058c107f8cee058c10,
- FFFFee058c787f8cee058c78,
- FFFFee058ce07f8cee058ce0,
- FFFFee058d487f8cee058d48,
- FFFFee058db07f8cee058db0,
- FFFFee058e187f8cee058e18,
- FFFFee058e807f8cee058e80,
- FFFFee058ee87f8cee058ee8,
- FFFFee058f507f8cee058f50,
- FFFFee058fb87f8cee058fb8,
- FFFFee0590207f8cee059020,
- FFFFedaaeec87f8cedaaeec8,
- FFFFedaaef307f8cedaaef30,
+ FFFFf3840a087fd2f3840a08,
+ FFFFf3840a707fd2f3840a70,
+ FFFFf3840ad87fd2f3840ad8,
+ FFFFf3840b407fd2f3840b40,
+ FFFFf3840ba87fd2f3840ba8,
+ FFFFf3840c107fd2f3840c10,
+ FFFFf3840c787fd2f3840c78,
+ FFFFf3840ce07fd2f3840ce0,
+ FFFFf3840d487fd2f3840d48,
+ FFFFf3840db07fd2f3840db0,
+ FFFFf3840e187fd2f3840e18,
+ FFFFf3840e807fd2f3840e80,
+ FFFFf3840ee87fd2f3840ee8,
+ FFFFf3840f507fd2f3840f50,
+ FFFFf3840fb87fd2f3840fb8,
+ FFFFf38410207fd2f3841020,
+ FFFFf2d5fd687fd2f2d5fd68,
+ FFFFf2d5fdd07fd2f2d5fdd0,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -581,220 +581,220 @@
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of PhysXExtensions */
- FFFFee05b0e87f8cee05b0e8 /* ExtBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee05b0e87f8cee05b0e8 /* ExtBroadPhase.cpp */; };
- FFFFee05b1507f8cee05b150 /* ExtClothFabricCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee05b1507f8cee05b150 /* ExtClothFabricCooker.cpp */; };
- FFFFee05b1b87f8cee05b1b8 /* ExtClothGeodesicTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee05b1b87f8cee05b1b8 /* ExtClothGeodesicTetherCooker.cpp */; };
- FFFFee05b2207f8cee05b220 /* ExtClothMeshQuadifier.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee05b2207f8cee05b220 /* ExtClothMeshQuadifier.cpp */; };
- FFFFee05b2887f8cee05b288 /* ExtClothSimpleTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee05b2887f8cee05b288 /* ExtClothSimpleTetherCooker.cpp */; };
- FFFFee05b2f07f8cee05b2f0 /* ExtCollection.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee05b2f07f8cee05b2f0 /* ExtCollection.cpp */; };
- FFFFee05b3587f8cee05b358 /* ExtConvexMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee05b3587f8cee05b358 /* ExtConvexMeshExt.cpp */; };
- FFFFee05b3c07f8cee05b3c0 /* ExtCpuWorkerThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee05b3c07f8cee05b3c0 /* ExtCpuWorkerThread.cpp */; };
- FFFFee05b4287f8cee05b428 /* ExtD6Joint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee05b4287f8cee05b428 /* ExtD6Joint.cpp */; };
- FFFFee05b4907f8cee05b490 /* ExtD6JointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee05b4907f8cee05b490 /* ExtD6JointSolverPrep.cpp */; };
- FFFFee05b4f87f8cee05b4f8 /* ExtDefaultCpuDispatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee05b4f87f8cee05b4f8 /* ExtDefaultCpuDispatcher.cpp */; };
- FFFFee05b5607f8cee05b560 /* ExtDefaultErrorCallback.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee05b5607f8cee05b560 /* ExtDefaultErrorCallback.cpp */; };
- FFFFee05b5c87f8cee05b5c8 /* ExtDefaultSimulationFilterShader.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee05b5c87f8cee05b5c8 /* ExtDefaultSimulationFilterShader.cpp */; };
- FFFFee05b6307f8cee05b630 /* ExtDefaultStreams.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee05b6307f8cee05b630 /* ExtDefaultStreams.cpp */; };
- FFFFee05b6987f8cee05b698 /* ExtDistanceJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee05b6987f8cee05b698 /* ExtDistanceJoint.cpp */; };
- FFFFee05b7007f8cee05b700 /* ExtDistanceJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee05b7007f8cee05b700 /* ExtDistanceJointSolverPrep.cpp */; };
- FFFFee05b7687f8cee05b768 /* ExtExtensions.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee05b7687f8cee05b768 /* ExtExtensions.cpp */; };
- FFFFee05b7d07f8cee05b7d0 /* ExtFixedJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee05b7d07f8cee05b7d0 /* ExtFixedJoint.cpp */; };
- FFFFee05b8387f8cee05b838 /* ExtFixedJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee05b8387f8cee05b838 /* ExtFixedJointSolverPrep.cpp */; };
- FFFFee05b8a07f8cee05b8a0 /* ExtJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee05b8a07f8cee05b8a0 /* ExtJoint.cpp */; };
- FFFFee05b9087f8cee05b908 /* ExtMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee05b9087f8cee05b908 /* ExtMetaData.cpp */; };
- FFFFee05b9707f8cee05b970 /* ExtParticleExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee05b9707f8cee05b970 /* ExtParticleExt.cpp */; };
- FFFFee05b9d87f8cee05b9d8 /* ExtPrismaticJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee05b9d87f8cee05b9d8 /* ExtPrismaticJoint.cpp */; };
- FFFFee05ba407f8cee05ba40 /* ExtPrismaticJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee05ba407f8cee05ba40 /* ExtPrismaticJointSolverPrep.cpp */; };
- FFFFee05baa87f8cee05baa8 /* ExtPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee05baa87f8cee05baa8 /* ExtPvd.cpp */; };
- FFFFee05bb107f8cee05bb10 /* ExtPxStringTable.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee05bb107f8cee05bb10 /* ExtPxStringTable.cpp */; };
- FFFFee05bb787f8cee05bb78 /* ExtRaycastCCD.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee05bb787f8cee05bb78 /* ExtRaycastCCD.cpp */; };
- FFFFee05bbe07f8cee05bbe0 /* ExtRevoluteJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee05bbe07f8cee05bbe0 /* ExtRevoluteJoint.cpp */; };
- FFFFee05bc487f8cee05bc48 /* ExtRevoluteJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee05bc487f8cee05bc48 /* ExtRevoluteJointSolverPrep.cpp */; };
- FFFFee05bcb07f8cee05bcb0 /* ExtRigidBodyExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee05bcb07f8cee05bcb0 /* ExtRigidBodyExt.cpp */; };
- FFFFee05bd187f8cee05bd18 /* ExtSceneQueryExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee05bd187f8cee05bd18 /* ExtSceneQueryExt.cpp */; };
- FFFFee05bd807f8cee05bd80 /* ExtSimpleFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee05bd807f8cee05bd80 /* ExtSimpleFactory.cpp */; };
- FFFFee05bde87f8cee05bde8 /* ExtSmoothNormals.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee05bde87f8cee05bde8 /* ExtSmoothNormals.cpp */; };
- FFFFee05be507f8cee05be50 /* ExtSphericalJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee05be507f8cee05be50 /* ExtSphericalJoint.cpp */; };
- FFFFee05beb87f8cee05beb8 /* ExtSphericalJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee05beb87f8cee05beb8 /* ExtSphericalJointSolverPrep.cpp */; };
- FFFFee05bf207f8cee05bf20 /* ExtTriangleMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee05bf207f8cee05bf20 /* ExtTriangleMeshExt.cpp */; };
- FFFFee05f4d07f8cee05f4d0 /* SnSerialUtils.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDee05f4d07f8cee05f4d0 /* SnSerialUtils.cpp */; };
- FFFFee05f5387f8cee05f538 /* SnSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDee05f5387f8cee05f538 /* SnSerialization.cpp */; };
- FFFFee05f5a07f8cee05f5a0 /* SnSerializationRegistry.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDee05f5a07f8cee05f5a0 /* SnSerializationRegistry.cpp */; };
- FFFFee05f8e07f8cee05f8e0 /* Binary/SnBinaryDeserialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDee05f8e07f8cee05f8e0 /* Binary/SnBinaryDeserialization.cpp */; };
- FFFFee05f9487f8cee05f948 /* Binary/SnBinarySerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDee05f9487f8cee05f948 /* Binary/SnBinarySerialization.cpp */; };
- FFFFee05f9b07f8cee05f9b0 /* Binary/SnConvX.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDee05f9b07f8cee05f9b0 /* Binary/SnConvX.cpp */; };
- FFFFee05fa187f8cee05fa18 /* Binary/SnConvX_Align.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDee05fa187f8cee05fa18 /* Binary/SnConvX_Align.cpp */; };
- FFFFee05fa807f8cee05fa80 /* Binary/SnConvX_Convert.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDee05fa807f8cee05fa80 /* Binary/SnConvX_Convert.cpp */; };
- FFFFee05fae87f8cee05fae8 /* Binary/SnConvX_Error.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDee05fae87f8cee05fae8 /* Binary/SnConvX_Error.cpp */; };
- FFFFee05fb507f8cee05fb50 /* Binary/SnConvX_MetaData.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDee05fb507f8cee05fb50 /* Binary/SnConvX_MetaData.cpp */; };
- FFFFee05fbb87f8cee05fbb8 /* Binary/SnConvX_Output.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDee05fbb87f8cee05fbb8 /* Binary/SnConvX_Output.cpp */; };
- FFFFee05fc207f8cee05fc20 /* Binary/SnConvX_Union.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDee05fc207f8cee05fc20 /* Binary/SnConvX_Union.cpp */; };
- FFFFee05fc887f8cee05fc88 /* Binary/SnSerializationContext.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDee05fc887f8cee05fc88 /* Binary/SnSerializationContext.cpp */; };
- FFFFee0605e07f8cee0605e0 /* Xml/SnJointRepXSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDee0605e07f8cee0605e0 /* Xml/SnJointRepXSerializer.cpp */; };
- FFFFee0606487f8cee060648 /* Xml/SnRepXCoreSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDee0606487f8cee060648 /* Xml/SnRepXCoreSerializer.cpp */; };
- FFFFee0606b07f8cee0606b0 /* Xml/SnRepXUpgrader.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDee0606b07f8cee0606b0 /* Xml/SnRepXUpgrader.cpp */; };
- FFFFee0607187f8cee060718 /* Xml/SnXmlSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDee0607187f8cee060718 /* Xml/SnXmlSerialization.cpp */; };
- FFFFee05d4e07f8cee05d4e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDee05d4e07f8cee05d4e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */; };
+ FFFFf38430e87fd2f38430e8 /* ExtBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf38430e87fd2f38430e8 /* ExtBroadPhase.cpp */; };
+ FFFFf38431507fd2f3843150 /* ExtClothFabricCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf38431507fd2f3843150 /* ExtClothFabricCooker.cpp */; };
+ FFFFf38431b87fd2f38431b8 /* ExtClothGeodesicTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf38431b87fd2f38431b8 /* ExtClothGeodesicTetherCooker.cpp */; };
+ FFFFf38432207fd2f3843220 /* ExtClothMeshQuadifier.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf38432207fd2f3843220 /* ExtClothMeshQuadifier.cpp */; };
+ FFFFf38432887fd2f3843288 /* ExtClothSimpleTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf38432887fd2f3843288 /* ExtClothSimpleTetherCooker.cpp */; };
+ FFFFf38432f07fd2f38432f0 /* ExtCollection.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf38432f07fd2f38432f0 /* ExtCollection.cpp */; };
+ FFFFf38433587fd2f3843358 /* ExtConvexMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf38433587fd2f3843358 /* ExtConvexMeshExt.cpp */; };
+ FFFFf38433c07fd2f38433c0 /* ExtCpuWorkerThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf38433c07fd2f38433c0 /* ExtCpuWorkerThread.cpp */; };
+ FFFFf38434287fd2f3843428 /* ExtD6Joint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf38434287fd2f3843428 /* ExtD6Joint.cpp */; };
+ FFFFf38434907fd2f3843490 /* ExtD6JointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf38434907fd2f3843490 /* ExtD6JointSolverPrep.cpp */; };
+ FFFFf38434f87fd2f38434f8 /* ExtDefaultCpuDispatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf38434f87fd2f38434f8 /* ExtDefaultCpuDispatcher.cpp */; };
+ FFFFf38435607fd2f3843560 /* ExtDefaultErrorCallback.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf38435607fd2f3843560 /* ExtDefaultErrorCallback.cpp */; };
+ FFFFf38435c87fd2f38435c8 /* ExtDefaultSimulationFilterShader.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf38435c87fd2f38435c8 /* ExtDefaultSimulationFilterShader.cpp */; };
+ FFFFf38436307fd2f3843630 /* ExtDefaultStreams.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf38436307fd2f3843630 /* ExtDefaultStreams.cpp */; };
+ FFFFf38436987fd2f3843698 /* ExtDistanceJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf38436987fd2f3843698 /* ExtDistanceJoint.cpp */; };
+ FFFFf38437007fd2f3843700 /* ExtDistanceJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf38437007fd2f3843700 /* ExtDistanceJointSolverPrep.cpp */; };
+ FFFFf38437687fd2f3843768 /* ExtExtensions.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf38437687fd2f3843768 /* ExtExtensions.cpp */; };
+ FFFFf38437d07fd2f38437d0 /* ExtFixedJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf38437d07fd2f38437d0 /* ExtFixedJoint.cpp */; };
+ FFFFf38438387fd2f3843838 /* ExtFixedJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf38438387fd2f3843838 /* ExtFixedJointSolverPrep.cpp */; };
+ FFFFf38438a07fd2f38438a0 /* ExtJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf38438a07fd2f38438a0 /* ExtJoint.cpp */; };
+ FFFFf38439087fd2f3843908 /* ExtMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf38439087fd2f3843908 /* ExtMetaData.cpp */; };
+ FFFFf38439707fd2f3843970 /* ExtParticleExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf38439707fd2f3843970 /* ExtParticleExt.cpp */; };
+ FFFFf38439d87fd2f38439d8 /* ExtPrismaticJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf38439d87fd2f38439d8 /* ExtPrismaticJoint.cpp */; };
+ FFFFf3843a407fd2f3843a40 /* ExtPrismaticJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf3843a407fd2f3843a40 /* ExtPrismaticJointSolverPrep.cpp */; };
+ FFFFf3843aa87fd2f3843aa8 /* ExtPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf3843aa87fd2f3843aa8 /* ExtPvd.cpp */; };
+ FFFFf3843b107fd2f3843b10 /* ExtPxStringTable.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf3843b107fd2f3843b10 /* ExtPxStringTable.cpp */; };
+ FFFFf3843b787fd2f3843b78 /* ExtRaycastCCD.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf3843b787fd2f3843b78 /* ExtRaycastCCD.cpp */; };
+ FFFFf3843be07fd2f3843be0 /* ExtRevoluteJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf3843be07fd2f3843be0 /* ExtRevoluteJoint.cpp */; };
+ FFFFf3843c487fd2f3843c48 /* ExtRevoluteJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf3843c487fd2f3843c48 /* ExtRevoluteJointSolverPrep.cpp */; };
+ FFFFf3843cb07fd2f3843cb0 /* ExtRigidBodyExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf3843cb07fd2f3843cb0 /* ExtRigidBodyExt.cpp */; };
+ FFFFf3843d187fd2f3843d18 /* ExtSceneQueryExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf3843d187fd2f3843d18 /* ExtSceneQueryExt.cpp */; };
+ FFFFf3843d807fd2f3843d80 /* ExtSimpleFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf3843d807fd2f3843d80 /* ExtSimpleFactory.cpp */; };
+ FFFFf3843de87fd2f3843de8 /* ExtSmoothNormals.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf3843de87fd2f3843de8 /* ExtSmoothNormals.cpp */; };
+ FFFFf3843e507fd2f3843e50 /* ExtSphericalJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf3843e507fd2f3843e50 /* ExtSphericalJoint.cpp */; };
+ FFFFf3843eb87fd2f3843eb8 /* ExtSphericalJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf3843eb87fd2f3843eb8 /* ExtSphericalJointSolverPrep.cpp */; };
+ FFFFf3843f207fd2f3843f20 /* ExtTriangleMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf3843f207fd2f3843f20 /* ExtTriangleMeshExt.cpp */; };
+ FFFFf38474d07fd2f38474d0 /* SnSerialUtils.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDf38474d07fd2f38474d0 /* SnSerialUtils.cpp */; };
+ FFFFf38475387fd2f3847538 /* SnSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDf38475387fd2f3847538 /* SnSerialization.cpp */; };
+ FFFFf38475a07fd2f38475a0 /* SnSerializationRegistry.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDf38475a07fd2f38475a0 /* SnSerializationRegistry.cpp */; };
+ FFFFf38478e07fd2f38478e0 /* Binary/SnBinaryDeserialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDf38478e07fd2f38478e0 /* Binary/SnBinaryDeserialization.cpp */; };
+ FFFFf38479487fd2f3847948 /* Binary/SnBinarySerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDf38479487fd2f3847948 /* Binary/SnBinarySerialization.cpp */; };
+ FFFFf38479b07fd2f38479b0 /* Binary/SnConvX.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDf38479b07fd2f38479b0 /* Binary/SnConvX.cpp */; };
+ FFFFf3847a187fd2f3847a18 /* Binary/SnConvX_Align.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDf3847a187fd2f3847a18 /* Binary/SnConvX_Align.cpp */; };
+ FFFFf3847a807fd2f3847a80 /* Binary/SnConvX_Convert.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDf3847a807fd2f3847a80 /* Binary/SnConvX_Convert.cpp */; };
+ FFFFf3847ae87fd2f3847ae8 /* Binary/SnConvX_Error.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDf3847ae87fd2f3847ae8 /* Binary/SnConvX_Error.cpp */; };
+ FFFFf3847b507fd2f3847b50 /* Binary/SnConvX_MetaData.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDf3847b507fd2f3847b50 /* Binary/SnConvX_MetaData.cpp */; };
+ FFFFf3847bb87fd2f3847bb8 /* Binary/SnConvX_Output.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDf3847bb87fd2f3847bb8 /* Binary/SnConvX_Output.cpp */; };
+ FFFFf3847c207fd2f3847c20 /* Binary/SnConvX_Union.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDf3847c207fd2f3847c20 /* Binary/SnConvX_Union.cpp */; };
+ FFFFf3847c887fd2f3847c88 /* Binary/SnSerializationContext.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDf3847c887fd2f3847c88 /* Binary/SnSerializationContext.cpp */; };
+ FFFFf38485e07fd2f38485e0 /* Xml/SnJointRepXSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDf38485e07fd2f38485e0 /* Xml/SnJointRepXSerializer.cpp */; };
+ FFFFf38486487fd2f3848648 /* Xml/SnRepXCoreSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDf38486487fd2f3848648 /* Xml/SnRepXCoreSerializer.cpp */; };
+ FFFFf38486b07fd2f38486b0 /* Xml/SnRepXUpgrader.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDf38486b07fd2f38486b0 /* Xml/SnRepXUpgrader.cpp */; };
+ FFFFf38487187fd2f3848718 /* Xml/SnXmlSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDf38487187fd2f3848718 /* Xml/SnXmlSerialization.cpp */; };
+ FFFFf38454e07fd2f38454e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDf38454e07fd2f38454e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFDedaae9b07f8cedaae9b0 /* PhysXExtensions */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXExtensions"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFDee05c0007f8cee05c000 /* PxBinaryConverter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBinaryConverter.h"; path = "../../../Include/extensions/PxBinaryConverter.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05c0687f8cee05c068 /* PxBroadPhaseExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhaseExt.h"; path = "../../../Include/extensions/PxBroadPhaseExt.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05c0d07f8cee05c0d0 /* PxClothFabricCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothFabricCooker.h"; path = "../../../Include/extensions/PxClothFabricCooker.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05c1387f8cee05c138 /* PxClothMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshDesc.h"; path = "../../../Include/extensions/PxClothMeshDesc.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05c1a07f8cee05c1a0 /* PxClothMeshQuadifier.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshQuadifier.h"; path = "../../../Include/extensions/PxClothMeshQuadifier.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05c2087f8cee05c208 /* PxClothTetherCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothTetherCooker.h"; path = "../../../Include/extensions/PxClothTetherCooker.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05c2707f8cee05c270 /* PxCollectionExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCollectionExt.h"; path = "../../../Include/extensions/PxCollectionExt.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05c2d87f8cee05c2d8 /* PxConstraintExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintExt.h"; path = "../../../Include/extensions/PxConstraintExt.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05c3407f8cee05c340 /* PxConvexMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshExt.h"; path = "../../../Include/extensions/PxConvexMeshExt.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05c3a87f8cee05c3a8 /* PxD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxD6Joint.h"; path = "../../../Include/extensions/PxD6Joint.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05c4107f8cee05c410 /* PxDefaultAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultAllocator.h"; path = "../../../Include/extensions/PxDefaultAllocator.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05c4787f8cee05c478 /* PxDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultCpuDispatcher.h"; path = "../../../Include/extensions/PxDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05c4e07f8cee05c4e0 /* PxDefaultErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultErrorCallback.h"; path = "../../../Include/extensions/PxDefaultErrorCallback.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05c5487f8cee05c548 /* PxDefaultSimulationFilterShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultSimulationFilterShader.h"; path = "../../../Include/extensions/PxDefaultSimulationFilterShader.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05c5b07f8cee05c5b0 /* PxDefaultStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultStreams.h"; path = "../../../Include/extensions/PxDefaultStreams.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05c6187f8cee05c618 /* PxDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDistanceJoint.h"; path = "../../../Include/extensions/PxDistanceJoint.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05c6807f8cee05c680 /* PxExtensionsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtensionsAPI.h"; path = "../../../Include/extensions/PxExtensionsAPI.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05c6e87f8cee05c6e8 /* PxFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFixedJoint.h"; path = "../../../Include/extensions/PxFixedJoint.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05c7507f8cee05c750 /* PxJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJoint.h"; path = "../../../Include/extensions/PxJoint.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05c7b87f8cee05c7b8 /* PxJointLimit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJointLimit.h"; path = "../../../Include/extensions/PxJointLimit.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05c8207f8cee05c820 /* PxMassProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMassProperties.h"; path = "../../../Include/extensions/PxMassProperties.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05c8887f8cee05c888 /* PxParticleExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxParticleExt.h"; path = "../../../Include/extensions/PxParticleExt.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05c8f07f8cee05c8f0 /* PxPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPrismaticJoint.h"; path = "../../../Include/extensions/PxPrismaticJoint.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05c9587f8cee05c958 /* PxRaycastCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRaycastCCD.h"; path = "../../../Include/extensions/PxRaycastCCD.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05c9c07f8cee05c9c0 /* PxRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSerializer.h"; path = "../../../Include/extensions/PxRepXSerializer.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05ca287f8cee05ca28 /* PxRepXSimpleType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSimpleType.h"; path = "../../../Include/extensions/PxRepXSimpleType.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05ca907f8cee05ca90 /* PxRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRevoluteJoint.h"; path = "../../../Include/extensions/PxRevoluteJoint.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05caf87f8cee05caf8 /* PxRigidActorExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActorExt.h"; path = "../../../Include/extensions/PxRigidActorExt.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05cb607f8cee05cb60 /* PxRigidBodyExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBodyExt.h"; path = "../../../Include/extensions/PxRigidBodyExt.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05cbc87f8cee05cbc8 /* PxSceneQueryExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneQueryExt.h"; path = "../../../Include/extensions/PxSceneQueryExt.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05cc307f8cee05cc30 /* PxSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSerialization.h"; path = "../../../Include/extensions/PxSerialization.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05cc987f8cee05cc98 /* PxShapeExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShapeExt.h"; path = "../../../Include/extensions/PxShapeExt.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05cd007f8cee05cd00 /* PxSimpleFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleFactory.h"; path = "../../../Include/extensions/PxSimpleFactory.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05cd687f8cee05cd68 /* PxSmoothNormals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSmoothNormals.h"; path = "../../../Include/extensions/PxSmoothNormals.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05cdd07f8cee05cdd0 /* PxSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSphericalJoint.h"; path = "../../../Include/extensions/PxSphericalJoint.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05ce387f8cee05ce38 /* PxStringTableExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStringTableExt.h"; path = "../../../Include/extensions/PxStringTableExt.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05cea07f8cee05cea0 /* PxTriangleMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshExt.h"; path = "../../../Include/extensions/PxTriangleMeshExt.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05aa007f8cee05aa00 /* ExtConstraintHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConstraintHelper.h"; path = "../../PhysXExtensions/src/ExtConstraintHelper.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05aa687f8cee05aa68 /* ExtCpuWorkerThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.h"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05aad07f8cee05aad0 /* ExtD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.h"; path = "../../PhysXExtensions/src/ExtD6Joint.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05ab387f8cee05ab38 /* ExtDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.h"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05aba07f8cee05aba0 /* ExtDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.h"; path = "../../PhysXExtensions/src/ExtDistanceJoint.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05ac087f8cee05ac08 /* ExtFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.h"; path = "../../PhysXExtensions/src/ExtFixedJoint.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05ac707f8cee05ac70 /* ExtInertiaTensor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtInertiaTensor.h"; path = "../../PhysXExtensions/src/ExtInertiaTensor.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05acd87f8cee05acd8 /* ExtJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.h"; path = "../../PhysXExtensions/src/ExtJoint.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05ad407f8cee05ad40 /* ExtJointMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJointMetaDataExtensions.h"; path = "../../PhysXExtensions/src/ExtJointMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05ada87f8cee05ada8 /* ExtPlatform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPlatform.h"; path = "../../PhysXExtensions/src/ExtPlatform.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05ae107f8cee05ae10 /* ExtPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.h"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05ae787f8cee05ae78 /* ExtPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.h"; path = "../../PhysXExtensions/src/ExtPvd.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05aee07f8cee05aee0 /* ExtRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.h"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05af487f8cee05af48 /* ExtSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSerialization.h"; path = "../../PhysXExtensions/src/ExtSerialization.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05afb07f8cee05afb0 /* ExtSharedQueueEntryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSharedQueueEntryPool.h"; path = "../../PhysXExtensions/src/ExtSharedQueueEntryPool.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05b0187f8cee05b018 /* ExtSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.h"; path = "../../PhysXExtensions/src/ExtSphericalJoint.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05b0807f8cee05b080 /* ExtTaskQueueHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTaskQueueHelper.h"; path = "../../PhysXExtensions/src/ExtTaskQueueHelper.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05b0e87f8cee05b0e8 /* ExtBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtBroadPhase.cpp"; path = "../../PhysXExtensions/src/ExtBroadPhase.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee05b1507f8cee05b150 /* ExtClothFabricCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothFabricCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothFabricCooker.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee05b1b87f8cee05b1b8 /* ExtClothGeodesicTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothGeodesicTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothGeodesicTetherCooker.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee05b2207f8cee05b220 /* ExtClothMeshQuadifier.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothMeshQuadifier.cpp"; path = "../../PhysXExtensions/src/ExtClothMeshQuadifier.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee05b2887f8cee05b288 /* ExtClothSimpleTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothSimpleTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothSimpleTetherCooker.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee05b2f07f8cee05b2f0 /* ExtCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCollection.cpp"; path = "../../PhysXExtensions/src/ExtCollection.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee05b3587f8cee05b358 /* ExtConvexMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConvexMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtConvexMeshExt.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee05b3c07f8cee05b3c0 /* ExtCpuWorkerThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.cpp"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee05b4287f8cee05b428 /* ExtD6Joint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.cpp"; path = "../../PhysXExtensions/src/ExtD6Joint.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee05b4907f8cee05b490 /* ExtD6JointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6JointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtD6JointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee05b4f87f8cee05b4f8 /* ExtDefaultCpuDispatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.cpp"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee05b5607f8cee05b560 /* ExtDefaultErrorCallback.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultErrorCallback.cpp"; path = "../../PhysXExtensions/src/ExtDefaultErrorCallback.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee05b5c87f8cee05b5c8 /* ExtDefaultSimulationFilterShader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultSimulationFilterShader.cpp"; path = "../../PhysXExtensions/src/ExtDefaultSimulationFilterShader.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee05b6307f8cee05b630 /* ExtDefaultStreams.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultStreams.cpp"; path = "../../PhysXExtensions/src/ExtDefaultStreams.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee05b6987f8cee05b698 /* ExtDistanceJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJoint.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee05b7007f8cee05b700 /* ExtDistanceJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee05b7687f8cee05b768 /* ExtExtensions.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtExtensions.cpp"; path = "../../PhysXExtensions/src/ExtExtensions.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee05b7d07f8cee05b7d0 /* ExtFixedJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.cpp"; path = "../../PhysXExtensions/src/ExtFixedJoint.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee05b8387f8cee05b838 /* ExtFixedJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtFixedJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee05b8a07f8cee05b8a0 /* ExtJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.cpp"; path = "../../PhysXExtensions/src/ExtJoint.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee05b9087f8cee05b908 /* ExtMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtMetaData.cpp"; path = "../../PhysXExtensions/src/ExtMetaData.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee05b9707f8cee05b970 /* ExtParticleExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtParticleExt.cpp"; path = "../../PhysXExtensions/src/ExtParticleExt.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee05b9d87f8cee05b9d8 /* ExtPrismaticJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee05ba407f8cee05ba40 /* ExtPrismaticJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee05baa87f8cee05baa8 /* ExtPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.cpp"; path = "../../PhysXExtensions/src/ExtPvd.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee05bb107f8cee05bb10 /* ExtPxStringTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPxStringTable.cpp"; path = "../../PhysXExtensions/src/ExtPxStringTable.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee05bb787f8cee05bb78 /* ExtRaycastCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRaycastCCD.cpp"; path = "../../PhysXExtensions/src/ExtRaycastCCD.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee05bbe07f8cee05bbe0 /* ExtRevoluteJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee05bc487f8cee05bc48 /* ExtRevoluteJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee05bcb07f8cee05bcb0 /* ExtRigidBodyExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRigidBodyExt.cpp"; path = "../../PhysXExtensions/src/ExtRigidBodyExt.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee05bd187f8cee05bd18 /* ExtSceneQueryExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSceneQueryExt.cpp"; path = "../../PhysXExtensions/src/ExtSceneQueryExt.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee05bd807f8cee05bd80 /* ExtSimpleFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSimpleFactory.cpp"; path = "../../PhysXExtensions/src/ExtSimpleFactory.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee05bde87f8cee05bde8 /* ExtSmoothNormals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSmoothNormals.cpp"; path = "../../PhysXExtensions/src/ExtSmoothNormals.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee05be507f8cee05be50 /* ExtSphericalJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJoint.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee05beb87f8cee05beb8 /* ExtSphericalJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee05bf207f8cee05bf20 /* ExtTriangleMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTriangleMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtTriangleMeshExt.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee05f4007f8cee05f400 /* SnSerialUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.h"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05f4687f8cee05f468 /* SnSerializationRegistry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.h"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05f4d07f8cee05f4d0 /* SnSerialUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee05f5387f8cee05f538 /* SnSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialization.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee05f5a07f8cee05f5a0 /* SnSerializationRegistry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee05f6087f8cee05f608 /* Binary/SnConvX.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05f6707f8cee05f670 /* Binary/SnConvX_Align.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05f6d87f8cee05f6d8 /* Binary/SnConvX_Common.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Common.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Common.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05f7407f8cee05f740 /* Binary/SnConvX_MetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05f7a87f8cee05f7a8 /* Binary/SnConvX_Output.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05f8107f8cee05f810 /* Binary/SnConvX_Union.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05f8787f8cee05f878 /* Binary/SnSerializationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05f8e07f8cee05f8e0 /* Binary/SnBinaryDeserialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinaryDeserialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinaryDeserialization.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee05f9487f8cee05f948 /* Binary/SnBinarySerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinarySerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinarySerialization.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee05f9b07f8cee05f9b0 /* Binary/SnConvX.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee05fa187f8cee05fa18 /* Binary/SnConvX_Align.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee05fa807f8cee05fa80 /* Binary/SnConvX_Convert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Convert.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Convert.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee05fae87f8cee05fae8 /* Binary/SnConvX_Error.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Error.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Error.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee05fb507f8cee05fb50 /* Binary/SnConvX_MetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee05fbb87f8cee05fbb8 /* Binary/SnConvX_Output.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee05fc207f8cee05fc20 /* Binary/SnConvX_Union.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee05fc887f8cee05fc88 /* Binary/SnSerializationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee05fcf07f8cee05fcf0 /* Xml/SnJointRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnJointRepXSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05fd587f8cee05fd58 /* Xml/SnPxStreamOperators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnPxStreamOperators.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnPxStreamOperators.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05fdc07f8cee05fdc0 /* Xml/SnRepX1_0Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX1_0Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX1_0Defaults.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05fe287f8cee05fe28 /* Xml/SnRepX3_1Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_1Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_1Defaults.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05fe907f8cee05fe90 /* Xml/SnRepX3_2Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_2Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_2Defaults.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05fef87f8cee05fef8 /* Xml/SnRepXCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCollection.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCollection.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05ff607f8cee05ff60 /* Xml/SnRepXCoreSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05ffc87f8cee05ffc8 /* Xml/SnRepXSerializerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXSerializerImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXSerializerImpl.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0600307f8cee060030 /* Xml/SnRepXUpgrader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0600987f8cee060098 /* Xml/SnSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0601007f8cee060100 /* Xml/SnXmlDeserializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlDeserializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlDeserializer.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0601687f8cee060168 /* Xml/SnXmlImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlImpl.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0601d07f8cee0601d0 /* Xml/SnXmlMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryAllocator.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryAllocator.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0602387f8cee060238 /* Xml/SnXmlMemoryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPool.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPool.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0602a07f8cee0602a0 /* Xml/SnXmlMemoryPoolStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPoolStreams.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPoolStreams.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0603087f8cee060308 /* Xml/SnXmlReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlReader.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0603707f8cee060370 /* Xml/SnXmlSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerializer.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0603d87f8cee0603d8 /* Xml/SnXmlSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0604407f8cee060440 /* Xml/SnXmlStringToType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlStringToType.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlStringToType.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0604a87f8cee0604a8 /* Xml/SnXmlVisitorReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorReader.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0605107f8cee060510 /* Xml/SnXmlVisitorWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorWriter.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0605787f8cee060578 /* Xml/SnXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlWriter.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0605e07f8cee0605e0 /* Xml/SnJointRepXSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnJointRepXSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0606487f8cee060648 /* Xml/SnRepXCoreSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0606b07f8cee0606b0 /* Xml/SnRepXUpgrader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0607187f8cee060718 /* Xml/SnXmlSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerialization.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0607807f8cee060780 /* File/SnFile.h */= { isa = PBXFileReference; fileEncoding = 4; name = "File/SnFile.h"; path = "../../PhysXExtensions/src/serialization/File/SnFile.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05d0007f8cee05d000 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05d0687f8cee05d068 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05d0d07f8cee05d0d0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05d1387f8cee05d138 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05d1a07f8cee05d1a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05d2087f8cee05d208 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05d2707f8cee05d270 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05d2d87f8cee05d2d8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05d3407f8cee05d340 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05d3a87f8cee05d3a8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05d4107f8cee05d410 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05d4787f8cee05d478 /* extensions/include/PxExtensionMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
- FFFDee05d4e07f8cee05d4e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXMetaData/extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2d5f8507fd2f2d5f850 /* PhysXExtensions */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXExtensions"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFDf38440007fd2f3844000 /* PxBinaryConverter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBinaryConverter.h"; path = "../../../Include/extensions/PxBinaryConverter.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38440687fd2f3844068 /* PxBroadPhaseExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhaseExt.h"; path = "../../../Include/extensions/PxBroadPhaseExt.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38440d07fd2f38440d0 /* PxClothFabricCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothFabricCooker.h"; path = "../../../Include/extensions/PxClothFabricCooker.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38441387fd2f3844138 /* PxClothMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshDesc.h"; path = "../../../Include/extensions/PxClothMeshDesc.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38441a07fd2f38441a0 /* PxClothMeshQuadifier.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshQuadifier.h"; path = "../../../Include/extensions/PxClothMeshQuadifier.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38442087fd2f3844208 /* PxClothTetherCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothTetherCooker.h"; path = "../../../Include/extensions/PxClothTetherCooker.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38442707fd2f3844270 /* PxCollectionExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCollectionExt.h"; path = "../../../Include/extensions/PxCollectionExt.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38442d87fd2f38442d8 /* PxConstraintExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintExt.h"; path = "../../../Include/extensions/PxConstraintExt.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38443407fd2f3844340 /* PxConvexMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshExt.h"; path = "../../../Include/extensions/PxConvexMeshExt.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38443a87fd2f38443a8 /* PxD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxD6Joint.h"; path = "../../../Include/extensions/PxD6Joint.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38444107fd2f3844410 /* PxDefaultAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultAllocator.h"; path = "../../../Include/extensions/PxDefaultAllocator.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38444787fd2f3844478 /* PxDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultCpuDispatcher.h"; path = "../../../Include/extensions/PxDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38444e07fd2f38444e0 /* PxDefaultErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultErrorCallback.h"; path = "../../../Include/extensions/PxDefaultErrorCallback.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38445487fd2f3844548 /* PxDefaultSimulationFilterShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultSimulationFilterShader.h"; path = "../../../Include/extensions/PxDefaultSimulationFilterShader.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38445b07fd2f38445b0 /* PxDefaultStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultStreams.h"; path = "../../../Include/extensions/PxDefaultStreams.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38446187fd2f3844618 /* PxDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDistanceJoint.h"; path = "../../../Include/extensions/PxDistanceJoint.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38446807fd2f3844680 /* PxExtensionsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtensionsAPI.h"; path = "../../../Include/extensions/PxExtensionsAPI.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38446e87fd2f38446e8 /* PxFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFixedJoint.h"; path = "../../../Include/extensions/PxFixedJoint.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38447507fd2f3844750 /* PxJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJoint.h"; path = "../../../Include/extensions/PxJoint.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38447b87fd2f38447b8 /* PxJointLimit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJointLimit.h"; path = "../../../Include/extensions/PxJointLimit.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38448207fd2f3844820 /* PxMassProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMassProperties.h"; path = "../../../Include/extensions/PxMassProperties.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38448887fd2f3844888 /* PxParticleExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxParticleExt.h"; path = "../../../Include/extensions/PxParticleExt.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38448f07fd2f38448f0 /* PxPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPrismaticJoint.h"; path = "../../../Include/extensions/PxPrismaticJoint.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38449587fd2f3844958 /* PxRaycastCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRaycastCCD.h"; path = "../../../Include/extensions/PxRaycastCCD.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38449c07fd2f38449c0 /* PxRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSerializer.h"; path = "../../../Include/extensions/PxRepXSerializer.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3844a287fd2f3844a28 /* PxRepXSimpleType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSimpleType.h"; path = "../../../Include/extensions/PxRepXSimpleType.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3844a907fd2f3844a90 /* PxRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRevoluteJoint.h"; path = "../../../Include/extensions/PxRevoluteJoint.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3844af87fd2f3844af8 /* PxRigidActorExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActorExt.h"; path = "../../../Include/extensions/PxRigidActorExt.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3844b607fd2f3844b60 /* PxRigidBodyExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBodyExt.h"; path = "../../../Include/extensions/PxRigidBodyExt.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3844bc87fd2f3844bc8 /* PxSceneQueryExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneQueryExt.h"; path = "../../../Include/extensions/PxSceneQueryExt.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3844c307fd2f3844c30 /* PxSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSerialization.h"; path = "../../../Include/extensions/PxSerialization.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3844c987fd2f3844c98 /* PxShapeExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShapeExt.h"; path = "../../../Include/extensions/PxShapeExt.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3844d007fd2f3844d00 /* PxSimpleFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleFactory.h"; path = "../../../Include/extensions/PxSimpleFactory.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3844d687fd2f3844d68 /* PxSmoothNormals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSmoothNormals.h"; path = "../../../Include/extensions/PxSmoothNormals.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3844dd07fd2f3844dd0 /* PxSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSphericalJoint.h"; path = "../../../Include/extensions/PxSphericalJoint.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3844e387fd2f3844e38 /* PxStringTableExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStringTableExt.h"; path = "../../../Include/extensions/PxStringTableExt.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3844ea07fd2f3844ea0 /* PxTriangleMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshExt.h"; path = "../../../Include/extensions/PxTriangleMeshExt.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3842a007fd2f3842a00 /* ExtConstraintHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConstraintHelper.h"; path = "../../PhysXExtensions/src/ExtConstraintHelper.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3842a687fd2f3842a68 /* ExtCpuWorkerThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.h"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3842ad07fd2f3842ad0 /* ExtD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.h"; path = "../../PhysXExtensions/src/ExtD6Joint.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3842b387fd2f3842b38 /* ExtDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.h"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3842ba07fd2f3842ba0 /* ExtDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.h"; path = "../../PhysXExtensions/src/ExtDistanceJoint.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3842c087fd2f3842c08 /* ExtFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.h"; path = "../../PhysXExtensions/src/ExtFixedJoint.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3842c707fd2f3842c70 /* ExtInertiaTensor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtInertiaTensor.h"; path = "../../PhysXExtensions/src/ExtInertiaTensor.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3842cd87fd2f3842cd8 /* ExtJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.h"; path = "../../PhysXExtensions/src/ExtJoint.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3842d407fd2f3842d40 /* ExtJointMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJointMetaDataExtensions.h"; path = "../../PhysXExtensions/src/ExtJointMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3842da87fd2f3842da8 /* ExtPlatform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPlatform.h"; path = "../../PhysXExtensions/src/ExtPlatform.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3842e107fd2f3842e10 /* ExtPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.h"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3842e787fd2f3842e78 /* ExtPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.h"; path = "../../PhysXExtensions/src/ExtPvd.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3842ee07fd2f3842ee0 /* ExtRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.h"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3842f487fd2f3842f48 /* ExtSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSerialization.h"; path = "../../PhysXExtensions/src/ExtSerialization.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3842fb07fd2f3842fb0 /* ExtSharedQueueEntryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSharedQueueEntryPool.h"; path = "../../PhysXExtensions/src/ExtSharedQueueEntryPool.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38430187fd2f3843018 /* ExtSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.h"; path = "../../PhysXExtensions/src/ExtSphericalJoint.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38430807fd2f3843080 /* ExtTaskQueueHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTaskQueueHelper.h"; path = "../../PhysXExtensions/src/ExtTaskQueueHelper.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38430e87fd2f38430e8 /* ExtBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtBroadPhase.cpp"; path = "../../PhysXExtensions/src/ExtBroadPhase.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf38431507fd2f3843150 /* ExtClothFabricCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothFabricCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothFabricCooker.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf38431b87fd2f38431b8 /* ExtClothGeodesicTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothGeodesicTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothGeodesicTetherCooker.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf38432207fd2f3843220 /* ExtClothMeshQuadifier.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothMeshQuadifier.cpp"; path = "../../PhysXExtensions/src/ExtClothMeshQuadifier.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf38432887fd2f3843288 /* ExtClothSimpleTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothSimpleTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothSimpleTetherCooker.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf38432f07fd2f38432f0 /* ExtCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCollection.cpp"; path = "../../PhysXExtensions/src/ExtCollection.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf38433587fd2f3843358 /* ExtConvexMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConvexMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtConvexMeshExt.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf38433c07fd2f38433c0 /* ExtCpuWorkerThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.cpp"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf38434287fd2f3843428 /* ExtD6Joint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.cpp"; path = "../../PhysXExtensions/src/ExtD6Joint.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf38434907fd2f3843490 /* ExtD6JointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6JointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtD6JointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf38434f87fd2f38434f8 /* ExtDefaultCpuDispatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.cpp"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf38435607fd2f3843560 /* ExtDefaultErrorCallback.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultErrorCallback.cpp"; path = "../../PhysXExtensions/src/ExtDefaultErrorCallback.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf38435c87fd2f38435c8 /* ExtDefaultSimulationFilterShader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultSimulationFilterShader.cpp"; path = "../../PhysXExtensions/src/ExtDefaultSimulationFilterShader.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf38436307fd2f3843630 /* ExtDefaultStreams.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultStreams.cpp"; path = "../../PhysXExtensions/src/ExtDefaultStreams.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf38436987fd2f3843698 /* ExtDistanceJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJoint.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf38437007fd2f3843700 /* ExtDistanceJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf38437687fd2f3843768 /* ExtExtensions.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtExtensions.cpp"; path = "../../PhysXExtensions/src/ExtExtensions.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf38437d07fd2f38437d0 /* ExtFixedJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.cpp"; path = "../../PhysXExtensions/src/ExtFixedJoint.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf38438387fd2f3843838 /* ExtFixedJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtFixedJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf38438a07fd2f38438a0 /* ExtJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.cpp"; path = "../../PhysXExtensions/src/ExtJoint.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf38439087fd2f3843908 /* ExtMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtMetaData.cpp"; path = "../../PhysXExtensions/src/ExtMetaData.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf38439707fd2f3843970 /* ExtParticleExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtParticleExt.cpp"; path = "../../PhysXExtensions/src/ExtParticleExt.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf38439d87fd2f38439d8 /* ExtPrismaticJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3843a407fd2f3843a40 /* ExtPrismaticJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3843aa87fd2f3843aa8 /* ExtPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.cpp"; path = "../../PhysXExtensions/src/ExtPvd.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3843b107fd2f3843b10 /* ExtPxStringTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPxStringTable.cpp"; path = "../../PhysXExtensions/src/ExtPxStringTable.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3843b787fd2f3843b78 /* ExtRaycastCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRaycastCCD.cpp"; path = "../../PhysXExtensions/src/ExtRaycastCCD.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3843be07fd2f3843be0 /* ExtRevoluteJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3843c487fd2f3843c48 /* ExtRevoluteJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3843cb07fd2f3843cb0 /* ExtRigidBodyExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRigidBodyExt.cpp"; path = "../../PhysXExtensions/src/ExtRigidBodyExt.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3843d187fd2f3843d18 /* ExtSceneQueryExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSceneQueryExt.cpp"; path = "../../PhysXExtensions/src/ExtSceneQueryExt.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3843d807fd2f3843d80 /* ExtSimpleFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSimpleFactory.cpp"; path = "../../PhysXExtensions/src/ExtSimpleFactory.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3843de87fd2f3843de8 /* ExtSmoothNormals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSmoothNormals.cpp"; path = "../../PhysXExtensions/src/ExtSmoothNormals.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3843e507fd2f3843e50 /* ExtSphericalJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJoint.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3843eb87fd2f3843eb8 /* ExtSphericalJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3843f207fd2f3843f20 /* ExtTriangleMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTriangleMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtTriangleMeshExt.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf38474007fd2f3847400 /* SnSerialUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.h"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38474687fd2f3847468 /* SnSerializationRegistry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.h"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38474d07fd2f38474d0 /* SnSerialUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf38475387fd2f3847538 /* SnSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialization.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf38475a07fd2f38475a0 /* SnSerializationRegistry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf38476087fd2f3847608 /* Binary/SnConvX.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38476707fd2f3847670 /* Binary/SnConvX_Align.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38476d87fd2f38476d8 /* Binary/SnConvX_Common.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Common.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Common.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38477407fd2f3847740 /* Binary/SnConvX_MetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38477a87fd2f38477a8 /* Binary/SnConvX_Output.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38478107fd2f3847810 /* Binary/SnConvX_Union.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38478787fd2f3847878 /* Binary/SnSerializationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38478e07fd2f38478e0 /* Binary/SnBinaryDeserialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinaryDeserialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinaryDeserialization.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf38479487fd2f3847948 /* Binary/SnBinarySerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinarySerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinarySerialization.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf38479b07fd2f38479b0 /* Binary/SnConvX.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3847a187fd2f3847a18 /* Binary/SnConvX_Align.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3847a807fd2f3847a80 /* Binary/SnConvX_Convert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Convert.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Convert.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3847ae87fd2f3847ae8 /* Binary/SnConvX_Error.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Error.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Error.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3847b507fd2f3847b50 /* Binary/SnConvX_MetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3847bb87fd2f3847bb8 /* Binary/SnConvX_Output.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3847c207fd2f3847c20 /* Binary/SnConvX_Union.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3847c887fd2f3847c88 /* Binary/SnSerializationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3847cf07fd2f3847cf0 /* Xml/SnJointRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnJointRepXSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3847d587fd2f3847d58 /* Xml/SnPxStreamOperators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnPxStreamOperators.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnPxStreamOperators.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3847dc07fd2f3847dc0 /* Xml/SnRepX1_0Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX1_0Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX1_0Defaults.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3847e287fd2f3847e28 /* Xml/SnRepX3_1Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_1Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_1Defaults.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3847e907fd2f3847e90 /* Xml/SnRepX3_2Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_2Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_2Defaults.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3847ef87fd2f3847ef8 /* Xml/SnRepXCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCollection.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCollection.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3847f607fd2f3847f60 /* Xml/SnRepXCoreSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3847fc87fd2f3847fc8 /* Xml/SnRepXSerializerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXSerializerImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXSerializerImpl.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38480307fd2f3848030 /* Xml/SnRepXUpgrader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38480987fd2f3848098 /* Xml/SnSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38481007fd2f3848100 /* Xml/SnXmlDeserializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlDeserializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlDeserializer.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38481687fd2f3848168 /* Xml/SnXmlImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlImpl.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38481d07fd2f38481d0 /* Xml/SnXmlMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryAllocator.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryAllocator.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38482387fd2f3848238 /* Xml/SnXmlMemoryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPool.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPool.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38482a07fd2f38482a0 /* Xml/SnXmlMemoryPoolStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPoolStreams.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPoolStreams.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38483087fd2f3848308 /* Xml/SnXmlReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlReader.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38483707fd2f3848370 /* Xml/SnXmlSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerializer.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38483d87fd2f38483d8 /* Xml/SnXmlSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38484407fd2f3848440 /* Xml/SnXmlStringToType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlStringToType.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlStringToType.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38484a87fd2f38484a8 /* Xml/SnXmlVisitorReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorReader.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38485107fd2f3848510 /* Xml/SnXmlVisitorWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorWriter.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38485787fd2f3848578 /* Xml/SnXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlWriter.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38485e07fd2f38485e0 /* Xml/SnJointRepXSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnJointRepXSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf38486487fd2f3848648 /* Xml/SnRepXCoreSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf38486b07fd2f38486b0 /* Xml/SnRepXUpgrader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf38487187fd2f3848718 /* Xml/SnXmlSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerialization.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf38487807fd2f3848780 /* File/SnFile.h */= { isa = PBXFileReference; fileEncoding = 4; name = "File/SnFile.h"; path = "../../PhysXExtensions/src/serialization/File/SnFile.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38450007fd2f3845000 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38450687fd2f3845068 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38450d07fd2f38450d0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38451387fd2f3845138 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38451a07fd2f38451a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38452087fd2f3845208 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38452707fd2f3845270 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38452d87fd2f38452d8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38453407fd2f3845340 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38453a87fd2f38453a8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38454107fd2f3845410 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38454787fd2f3845478 /* extensions/include/PxExtensionMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf38454e07fd2f38454e0 /* 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 */
- FFF2edaae9b07f8cedaae9b0 /* Resources */ = {
+ FFF2f2d5f8507fd2f2d5f850 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -804,7 +804,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFCedaae9b07f8cedaae9b0 /* Frameworks */ = {
+ FFFCf2d5f8507fd2f2d5f850 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -814,64 +814,64 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF8edaae9b07f8cedaae9b0 /* Sources */ = {
+ FFF8f2d5f8507fd2f2d5f850 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFFee05b0e87f8cee05b0e8,
- FFFFee05b1507f8cee05b150,
- FFFFee05b1b87f8cee05b1b8,
- FFFFee05b2207f8cee05b220,
- FFFFee05b2887f8cee05b288,
- FFFFee05b2f07f8cee05b2f0,
- FFFFee05b3587f8cee05b358,
- FFFFee05b3c07f8cee05b3c0,
- FFFFee05b4287f8cee05b428,
- FFFFee05b4907f8cee05b490,
- FFFFee05b4f87f8cee05b4f8,
- FFFFee05b5607f8cee05b560,
- FFFFee05b5c87f8cee05b5c8,
- FFFFee05b6307f8cee05b630,
- FFFFee05b6987f8cee05b698,
- FFFFee05b7007f8cee05b700,
- FFFFee05b7687f8cee05b768,
- FFFFee05b7d07f8cee05b7d0,
- FFFFee05b8387f8cee05b838,
- FFFFee05b8a07f8cee05b8a0,
- FFFFee05b9087f8cee05b908,
- FFFFee05b9707f8cee05b970,
- FFFFee05b9d87f8cee05b9d8,
- FFFFee05ba407f8cee05ba40,
- FFFFee05baa87f8cee05baa8,
- FFFFee05bb107f8cee05bb10,
- FFFFee05bb787f8cee05bb78,
- FFFFee05bbe07f8cee05bbe0,
- FFFFee05bc487f8cee05bc48,
- FFFFee05bcb07f8cee05bcb0,
- FFFFee05bd187f8cee05bd18,
- FFFFee05bd807f8cee05bd80,
- FFFFee05bde87f8cee05bde8,
- FFFFee05be507f8cee05be50,
- FFFFee05beb87f8cee05beb8,
- FFFFee05bf207f8cee05bf20,
- FFFFee05f4d07f8cee05f4d0,
- FFFFee05f5387f8cee05f538,
- FFFFee05f5a07f8cee05f5a0,
- FFFFee05f8e07f8cee05f8e0,
- FFFFee05f9487f8cee05f948,
- FFFFee05f9b07f8cee05f9b0,
- FFFFee05fa187f8cee05fa18,
- FFFFee05fa807f8cee05fa80,
- FFFFee05fae87f8cee05fae8,
- FFFFee05fb507f8cee05fb50,
- FFFFee05fbb87f8cee05fbb8,
- FFFFee05fc207f8cee05fc20,
- FFFFee05fc887f8cee05fc88,
- FFFFee0605e07f8cee0605e0,
- FFFFee0606487f8cee060648,
- FFFFee0606b07f8cee0606b0,
- FFFFee0607187f8cee060718,
- FFFFee05d4e07f8cee05d4e0,
+ FFFFf38430e87fd2f38430e8,
+ FFFFf38431507fd2f3843150,
+ FFFFf38431b87fd2f38431b8,
+ FFFFf38432207fd2f3843220,
+ FFFFf38432887fd2f3843288,
+ FFFFf38432f07fd2f38432f0,
+ FFFFf38433587fd2f3843358,
+ FFFFf38433c07fd2f38433c0,
+ FFFFf38434287fd2f3843428,
+ FFFFf38434907fd2f3843490,
+ FFFFf38434f87fd2f38434f8,
+ FFFFf38435607fd2f3843560,
+ FFFFf38435c87fd2f38435c8,
+ FFFFf38436307fd2f3843630,
+ FFFFf38436987fd2f3843698,
+ FFFFf38437007fd2f3843700,
+ FFFFf38437687fd2f3843768,
+ FFFFf38437d07fd2f38437d0,
+ FFFFf38438387fd2f3843838,
+ FFFFf38438a07fd2f38438a0,
+ FFFFf38439087fd2f3843908,
+ FFFFf38439707fd2f3843970,
+ FFFFf38439d87fd2f38439d8,
+ FFFFf3843a407fd2f3843a40,
+ FFFFf3843aa87fd2f3843aa8,
+ FFFFf3843b107fd2f3843b10,
+ FFFFf3843b787fd2f3843b78,
+ FFFFf3843be07fd2f3843be0,
+ FFFFf3843c487fd2f3843c48,
+ FFFFf3843cb07fd2f3843cb0,
+ FFFFf3843d187fd2f3843d18,
+ FFFFf3843d807fd2f3843d80,
+ FFFFf3843de87fd2f3843de8,
+ FFFFf3843e507fd2f3843e50,
+ FFFFf3843eb87fd2f3843eb8,
+ FFFFf3843f207fd2f3843f20,
+ FFFFf38474d07fd2f38474d0,
+ FFFFf38475387fd2f3847538,
+ FFFFf38475a07fd2f38475a0,
+ FFFFf38478e07fd2f38478e0,
+ FFFFf38479487fd2f3847948,
+ FFFFf38479b07fd2f38479b0,
+ FFFFf3847a187fd2f3847a18,
+ FFFFf3847a807fd2f3847a80,
+ FFFFf3847ae87fd2f3847ae8,
+ FFFFf3847b507fd2f3847b50,
+ FFFFf3847bb87fd2f3847bb8,
+ FFFFf3847c207fd2f3847c20,
+ FFFFf3847c887fd2f3847c88,
+ FFFFf38485e07fd2f38485e0,
+ FFFFf38486487fd2f3848648,
+ FFFFf38486b07fd2f38486b0,
+ FFFFf38487187fd2f3848718,
+ FFFFf38454e07fd2f38454e0,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -880,65 +880,65 @@
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
- FFF4edaae0807f8cedaae080 /* PBXTargetDependency */ = {
+ FFF4f2d5ef207fd2f2d5ef20 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFAeda901707f8ceda90170 /* PsFastXml */;
- targetProxy = FFF5eda901707f8ceda90170 /* PBXContainerItemProxy */;
+ target = FFFAf2d23c207fd2f2d23c20 /* PsFastXml */;
+ targetProxy = FFF5f2d23c207fd2f2d23c20 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of SceneQuery */
- FFFFee0634007f8cee063400 /* SqAABBPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0634007f8cee063400 /* SqAABBPruner.cpp */; };
- FFFFee0634687f8cee063468 /* SqAABBTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0634687f8cee063468 /* SqAABBTree.cpp */; };
- FFFFee0634d07f8cee0634d0 /* SqAABBTreeBuild.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0634d07f8cee0634d0 /* SqAABBTreeBuild.cpp */; };
- FFFFee0635387f8cee063538 /* SqAABBTreeUpdateMap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0635387f8cee063538 /* SqAABBTreeUpdateMap.cpp */; };
- FFFFee0635a07f8cee0635a0 /* SqBounds.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0635a07f8cee0635a0 /* SqBounds.cpp */; };
- FFFFee0636087f8cee063608 /* SqBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0636087f8cee063608 /* SqBucketPruner.cpp */; };
- FFFFee0636707f8cee063670 /* SqExtendedBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0636707f8cee063670 /* SqExtendedBucketPruner.cpp */; };
- FFFFee0636d87f8cee0636d8 /* SqIncrementalAABBPrunerCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0636d87f8cee0636d8 /* SqIncrementalAABBPrunerCore.cpp */; };
- FFFFee0637407f8cee063740 /* SqIncrementalAABBTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0637407f8cee063740 /* SqIncrementalAABBTree.cpp */; };
- FFFFee0637a87f8cee0637a8 /* SqMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0637a87f8cee0637a8 /* SqMetaData.cpp */; };
- FFFFee0638107f8cee063810 /* SqPruningPool.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0638107f8cee063810 /* SqPruningPool.cpp */; };
- FFFFee0638787f8cee063878 /* SqPruningStructure.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0638787f8cee063878 /* SqPruningStructure.cpp */; };
- FFFFee0638e07f8cee0638e0 /* SqSceneQueryManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0638e07f8cee0638e0 /* SqSceneQueryManager.cpp */; };
+ FFFFf384b4007fd2f384b400 /* SqAABBPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf384b4007fd2f384b400 /* SqAABBPruner.cpp */; };
+ FFFFf384b4687fd2f384b468 /* SqAABBTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf384b4687fd2f384b468 /* SqAABBTree.cpp */; };
+ FFFFf384b4d07fd2f384b4d0 /* SqAABBTreeBuild.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf384b4d07fd2f384b4d0 /* SqAABBTreeBuild.cpp */; };
+ FFFFf384b5387fd2f384b538 /* SqAABBTreeUpdateMap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf384b5387fd2f384b538 /* SqAABBTreeUpdateMap.cpp */; };
+ FFFFf384b5a07fd2f384b5a0 /* SqBounds.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf384b5a07fd2f384b5a0 /* SqBounds.cpp */; };
+ FFFFf384b6087fd2f384b608 /* SqBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf384b6087fd2f384b608 /* SqBucketPruner.cpp */; };
+ FFFFf384b6707fd2f384b670 /* SqExtendedBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf384b6707fd2f384b670 /* SqExtendedBucketPruner.cpp */; };
+ FFFFf384b6d87fd2f384b6d8 /* SqIncrementalAABBPrunerCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf384b6d87fd2f384b6d8 /* SqIncrementalAABBPrunerCore.cpp */; };
+ FFFFf384b7407fd2f384b740 /* SqIncrementalAABBTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf384b7407fd2f384b740 /* SqIncrementalAABBTree.cpp */; };
+ FFFFf384b7a87fd2f384b7a8 /* SqMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf384b7a87fd2f384b7a8 /* SqMetaData.cpp */; };
+ FFFFf384b8107fd2f384b810 /* SqPruningPool.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf384b8107fd2f384b810 /* SqPruningPool.cpp */; };
+ FFFFf384b8787fd2f384b878 /* SqPruningStructure.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf384b8787fd2f384b878 /* SqPruningStructure.cpp */; };
+ FFFFf384b8e07fd2f384b8e0 /* SqSceneQueryManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf384b8e07fd2f384b8e0 /* SqSceneQueryManager.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFDedabfac07f8cedabfac0 /* SceneQuery */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SceneQuery"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFDee0634007f8cee063400 /* SqAABBPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.cpp"; path = "../../SceneQuery/src/SqAABBPruner.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0634687f8cee063468 /* SqAABBTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.cpp"; path = "../../SceneQuery/src/SqAABBTree.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0634d07f8cee0634d0 /* SqAABBTreeBuild.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeBuild.cpp"; path = "../../SceneQuery/src/SqAABBTreeBuild.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0635387f8cee063538 /* SqAABBTreeUpdateMap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.cpp"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0635a07f8cee0635a0 /* SqBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.cpp"; path = "../../SceneQuery/src/SqBounds.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0636087f8cee063608 /* SqBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.cpp"; path = "../../SceneQuery/src/SqBucketPruner.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0636707f8cee063670 /* SqExtendedBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.cpp"; path = "../../SceneQuery/src/SqExtendedBucketPruner.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0636d87f8cee0636d8 /* SqIncrementalAABBPrunerCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqIncrementalAABBPrunerCore.cpp"; path = "../../SceneQuery/src/SqIncrementalAABBPrunerCore.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0637407f8cee063740 /* SqIncrementalAABBTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqIncrementalAABBTree.cpp"; path = "../../SceneQuery/src/SqIncrementalAABBTree.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0637a87f8cee0637a8 /* SqMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqMetaData.cpp"; path = "../../SceneQuery/src/SqMetaData.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0638107f8cee063810 /* SqPruningPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.cpp"; path = "../../SceneQuery/src/SqPruningPool.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0638787f8cee063878 /* SqPruningStructure.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.cpp"; path = "../../SceneQuery/src/SqPruningStructure.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0638e07f8cee0638e0 /* SqSceneQueryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.cpp"; path = "../../SceneQuery/src/SqSceneQueryManager.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0639487f8cee063948 /* SqAABBPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.h"; path = "../../SceneQuery/src/SqAABBPruner.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0639b07f8cee0639b0 /* SqAABBTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.h"; path = "../../SceneQuery/src/SqAABBTree.h"; sourceTree = SOURCE_ROOT; };
- FFFDee063a187f8cee063a18 /* SqAABBTreeBuild.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeBuild.h"; path = "../../SceneQuery/src/SqAABBTreeBuild.h"; sourceTree = SOURCE_ROOT; };
- FFFDee063a807f8cee063a80 /* SqAABBTreeQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeQuery.h"; path = "../../SceneQuery/src/SqAABBTreeQuery.h"; sourceTree = SOURCE_ROOT; };
- FFFDee063ae87f8cee063ae8 /* SqAABBTreeUpdateMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.h"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.h"; sourceTree = SOURCE_ROOT; };
- FFFDee063b507f8cee063b50 /* SqBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.h"; path = "../../SceneQuery/src/SqBounds.h"; sourceTree = SOURCE_ROOT; };
- FFFDee063bb87f8cee063bb8 /* SqBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.h"; path = "../../SceneQuery/src/SqBucketPruner.h"; sourceTree = SOURCE_ROOT; };
- FFFDee063c207f8cee063c20 /* SqExtendedBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.h"; path = "../../SceneQuery/src/SqExtendedBucketPruner.h"; sourceTree = SOURCE_ROOT; };
- FFFDee063c887f8cee063c88 /* SqIncrementalAABBPrunerCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqIncrementalAABBPrunerCore.h"; path = "../../SceneQuery/src/SqIncrementalAABBPrunerCore.h"; sourceTree = SOURCE_ROOT; };
- FFFDee063cf07f8cee063cf0 /* SqIncrementalAABBTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqIncrementalAABBTree.h"; path = "../../SceneQuery/src/SqIncrementalAABBTree.h"; sourceTree = SOURCE_ROOT; };
- FFFDee063d587f8cee063d58 /* SqPrunerTestsSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerTestsSIMD.h"; path = "../../SceneQuery/src/SqPrunerTestsSIMD.h"; sourceTree = SOURCE_ROOT; };
- FFFDee063dc07f8cee063dc0 /* SqPruningPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.h"; path = "../../SceneQuery/src/SqPruningPool.h"; sourceTree = SOURCE_ROOT; };
- FFFDee063e287f8cee063e28 /* SqTypedef.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqTypedef.h"; path = "../../SceneQuery/src/SqTypedef.h"; sourceTree = SOURCE_ROOT; };
- FFFDedac3ce07f8cedac3ce0 /* SqPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruner.h"; path = "../../SceneQuery/include/SqPruner.h"; sourceTree = SOURCE_ROOT; };
- FFFDedac3d487f8cedac3d48 /* SqPrunerMergeData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerMergeData.h"; path = "../../SceneQuery/include/SqPrunerMergeData.h"; sourceTree = SOURCE_ROOT; };
- FFFDedac3db07f8cedac3db0 /* SqPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.h"; path = "../../SceneQuery/include/SqPruningStructure.h"; sourceTree = SOURCE_ROOT; };
- FFFDedac3e187f8cedac3e18 /* SqSceneQueryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.h"; path = "../../SceneQuery/include/SqSceneQueryManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2d709607fd2f2d70960 /* SceneQuery */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SceneQuery"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFDf384b4007fd2f384b400 /* SqAABBPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.cpp"; path = "../../SceneQuery/src/SqAABBPruner.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf384b4687fd2f384b468 /* SqAABBTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.cpp"; path = "../../SceneQuery/src/SqAABBTree.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf384b4d07fd2f384b4d0 /* SqAABBTreeBuild.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeBuild.cpp"; path = "../../SceneQuery/src/SqAABBTreeBuild.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf384b5387fd2f384b538 /* SqAABBTreeUpdateMap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.cpp"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf384b5a07fd2f384b5a0 /* SqBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.cpp"; path = "../../SceneQuery/src/SqBounds.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf384b6087fd2f384b608 /* SqBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.cpp"; path = "../../SceneQuery/src/SqBucketPruner.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf384b6707fd2f384b670 /* SqExtendedBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.cpp"; path = "../../SceneQuery/src/SqExtendedBucketPruner.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf384b6d87fd2f384b6d8 /* SqIncrementalAABBPrunerCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqIncrementalAABBPrunerCore.cpp"; path = "../../SceneQuery/src/SqIncrementalAABBPrunerCore.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf384b7407fd2f384b740 /* SqIncrementalAABBTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqIncrementalAABBTree.cpp"; path = "../../SceneQuery/src/SqIncrementalAABBTree.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf384b7a87fd2f384b7a8 /* SqMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqMetaData.cpp"; path = "../../SceneQuery/src/SqMetaData.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf384b8107fd2f384b810 /* SqPruningPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.cpp"; path = "../../SceneQuery/src/SqPruningPool.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf384b8787fd2f384b878 /* SqPruningStructure.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.cpp"; path = "../../SceneQuery/src/SqPruningStructure.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf384b8e07fd2f384b8e0 /* SqSceneQueryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.cpp"; path = "../../SceneQuery/src/SqSceneQueryManager.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf384b9487fd2f384b948 /* SqAABBPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.h"; path = "../../SceneQuery/src/SqAABBPruner.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf384b9b07fd2f384b9b0 /* SqAABBTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.h"; path = "../../SceneQuery/src/SqAABBTree.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf384ba187fd2f384ba18 /* SqAABBTreeBuild.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeBuild.h"; path = "../../SceneQuery/src/SqAABBTreeBuild.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf384ba807fd2f384ba80 /* SqAABBTreeQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeQuery.h"; path = "../../SceneQuery/src/SqAABBTreeQuery.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf384bae87fd2f384bae8 /* SqAABBTreeUpdateMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.h"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf384bb507fd2f384bb50 /* SqBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.h"; path = "../../SceneQuery/src/SqBounds.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf384bbb87fd2f384bbb8 /* SqBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.h"; path = "../../SceneQuery/src/SqBucketPruner.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf384bc207fd2f384bc20 /* SqExtendedBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.h"; path = "../../SceneQuery/src/SqExtendedBucketPruner.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf384bc887fd2f384bc88 /* SqIncrementalAABBPrunerCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqIncrementalAABBPrunerCore.h"; path = "../../SceneQuery/src/SqIncrementalAABBPrunerCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf384bcf07fd2f384bcf0 /* SqIncrementalAABBTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqIncrementalAABBTree.h"; path = "../../SceneQuery/src/SqIncrementalAABBTree.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf384bd587fd2f384bd58 /* SqPrunerTestsSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerTestsSIMD.h"; path = "../../SceneQuery/src/SqPrunerTestsSIMD.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf384bdc07fd2f384bdc0 /* SqPruningPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.h"; path = "../../SceneQuery/src/SqPruningPool.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf384be287fd2f384be28 /* SqTypedef.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqTypedef.h"; path = "../../SceneQuery/src/SqTypedef.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2d74b807fd2f2d74b80 /* SqPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruner.h"; path = "../../SceneQuery/include/SqPruner.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2d74be87fd2f2d74be8 /* SqPrunerMergeData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerMergeData.h"; path = "../../SceneQuery/include/SqPrunerMergeData.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2d74c507fd2f2d74c50 /* SqPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.h"; path = "../../SceneQuery/include/SqPruningStructure.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2d74cb87fd2f2d74cb8 /* SqSceneQueryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.h"; path = "../../SceneQuery/include/SqSceneQueryManager.h"; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */
/* Begin PBXResourcesBuildPhase section */
- FFF2edabfac07f8cedabfac0 /* Resources */ = {
+ FFF2f2d709607fd2f2d70960 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -948,7 +948,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFCedabfac07f8cedabfac0 /* Frameworks */ = {
+ FFFCf2d709607fd2f2d70960 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -958,23 +958,23 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF8edabfac07f8cedabfac0 /* Sources */ = {
+ FFF8f2d709607fd2f2d70960 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFFee0634007f8cee063400,
- FFFFee0634687f8cee063468,
- FFFFee0634d07f8cee0634d0,
- FFFFee0635387f8cee063538,
- FFFFee0635a07f8cee0635a0,
- FFFFee0636087f8cee063608,
- FFFFee0636707f8cee063670,
- FFFFee0636d87f8cee0636d8,
- FFFFee0637407f8cee063740,
- FFFFee0637a87f8cee0637a8,
- FFFFee0638107f8cee063810,
- FFFFee0638787f8cee063878,
- FFFFee0638e07f8cee0638e0,
+ FFFFf384b4007fd2f384b400,
+ FFFFf384b4687fd2f384b468,
+ FFFFf384b4d07fd2f384b4d0,
+ FFFFf384b5387fd2f384b538,
+ FFFFf384b5a07fd2f384b5a0,
+ FFFFf384b6087fd2f384b608,
+ FFFFf384b6707fd2f384b670,
+ FFFFf384b6d87fd2f384b6d8,
+ FFFFf384b7407fd2f384b740,
+ FFFFf384b7a87fd2f384b7a8,
+ FFFFf384b8107fd2f384b810,
+ FFFFf384b8787fd2f384b878,
+ FFFFf384b8e07fd2f384b8e0,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -986,154 +986,154 @@
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of SimulationController */
- FFFFee069fd07f8cee069fd0 /* ScActorCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee069fd07f8cee069fd0 /* ScActorCore.cpp */; };
- FFFFee06a0387f8cee06a038 /* ScActorSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee06a0387f8cee06a038 /* ScActorSim.cpp */; };
- FFFFee06a0a07f8cee06a0a0 /* ScArticulationCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee06a0a07f8cee06a0a0 /* ScArticulationCore.cpp */; };
- FFFFee06a1087f8cee06a108 /* ScArticulationJointCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee06a1087f8cee06a108 /* ScArticulationJointCore.cpp */; };
- FFFFee06a1707f8cee06a170 /* ScArticulationJointSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee06a1707f8cee06a170 /* ScArticulationJointSim.cpp */; };
- FFFFee06a1d87f8cee06a1d8 /* ScArticulationSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee06a1d87f8cee06a1d8 /* ScArticulationSim.cpp */; };
- FFFFee06a2407f8cee06a240 /* ScBodyCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee06a2407f8cee06a240 /* ScBodyCore.cpp */; };
- FFFFee06a2a87f8cee06a2a8 /* ScBodyCoreKinematic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee06a2a87f8cee06a2a8 /* ScBodyCoreKinematic.cpp */; };
- FFFFee06a3107f8cee06a310 /* ScBodySim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee06a3107f8cee06a310 /* ScBodySim.cpp */; };
- FFFFee06a3787f8cee06a378 /* ScConstraintCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee06a3787f8cee06a378 /* ScConstraintCore.cpp */; };
- FFFFee06a3e07f8cee06a3e0 /* ScConstraintGroupNode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee06a3e07f8cee06a3e0 /* ScConstraintGroupNode.cpp */; };
- FFFFee06a4487f8cee06a448 /* ScConstraintInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee06a4487f8cee06a448 /* ScConstraintInteraction.cpp */; };
- FFFFee06a4b07f8cee06a4b0 /* ScConstraintProjectionManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee06a4b07f8cee06a4b0 /* ScConstraintProjectionManager.cpp */; };
- FFFFee06a5187f8cee06a518 /* ScConstraintProjectionTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee06a5187f8cee06a518 /* ScConstraintProjectionTree.cpp */; };
- FFFFee06a5807f8cee06a580 /* ScConstraintSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee06a5807f8cee06a580 /* ScConstraintSim.cpp */; };
- FFFFee06a5e87f8cee06a5e8 /* ScElementInteractionMarker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee06a5e87f8cee06a5e8 /* ScElementInteractionMarker.cpp */; };
- FFFFee06a6507f8cee06a650 /* ScElementSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee06a6507f8cee06a650 /* ScElementSim.cpp */; };
- FFFFee06a6b87f8cee06a6b8 /* ScInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee06a6b87f8cee06a6b8 /* ScInteraction.cpp */; };
- FFFFee06a7207f8cee06a720 /* ScIterators.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee06a7207f8cee06a720 /* ScIterators.cpp */; };
- FFFFee06a7887f8cee06a788 /* ScMaterialCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee06a7887f8cee06a788 /* ScMaterialCore.cpp */; };
- FFFFee06a7f07f8cee06a7f0 /* ScMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee06a7f07f8cee06a7f0 /* ScMetaData.cpp */; };
- FFFFee06a8587f8cee06a858 /* ScNPhaseCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee06a8587f8cee06a858 /* ScNPhaseCore.cpp */; };
- FFFFee06a8c07f8cee06a8c0 /* ScPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee06a8c07f8cee06a8c0 /* ScPhysics.cpp */; };
- FFFFee06a9287f8cee06a928 /* ScRigidCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee06a9287f8cee06a928 /* ScRigidCore.cpp */; };
- FFFFee06a9907f8cee06a990 /* ScRigidSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee06a9907f8cee06a990 /* ScRigidSim.cpp */; };
- FFFFee06a9f87f8cee06a9f8 /* ScScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee06a9f87f8cee06a9f8 /* ScScene.cpp */; };
- FFFFee06aa607f8cee06aa60 /* ScShapeCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee06aa607f8cee06aa60 /* ScShapeCore.cpp */; };
- FFFFee06aac87f8cee06aac8 /* ScShapeInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee06aac87f8cee06aac8 /* ScShapeInteraction.cpp */; };
- FFFFee06ab307f8cee06ab30 /* ScShapeSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee06ab307f8cee06ab30 /* ScShapeSim.cpp */; };
- FFFFee06ab987f8cee06ab98 /* ScSimStats.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee06ab987f8cee06ab98 /* ScSimStats.cpp */; };
- FFFFee06ac007f8cee06ac00 /* ScSimulationController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee06ac007f8cee06ac00 /* ScSimulationController.cpp */; };
- FFFFee06ac687f8cee06ac68 /* ScSqBoundsManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee06ac687f8cee06ac68 /* ScSqBoundsManager.cpp */; };
- FFFFee06acd07f8cee06acd0 /* ScStaticCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee06acd07f8cee06acd0 /* ScStaticCore.cpp */; };
- FFFFee06ad387f8cee06ad38 /* ScStaticSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee06ad387f8cee06ad38 /* ScStaticSim.cpp */; };
- FFFFee06ada07f8cee06ada0 /* ScTriggerInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee06ada07f8cee06ada0 /* ScTriggerInteraction.cpp */; };
- FFFFee06af407f8cee06af40 /* particles/ScParticleBodyInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee06af407f8cee06af40 /* particles/ScParticleBodyInteraction.cpp */; };
- FFFFee06afa87f8cee06afa8 /* particles/ScParticlePacketShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee06afa87f8cee06afa8 /* particles/ScParticlePacketShape.cpp */; };
- FFFFee06b0107f8cee06b010 /* particles/ScParticleSystemCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee06b0107f8cee06b010 /* particles/ScParticleSystemCore.cpp */; };
- FFFFee06b0787f8cee06b078 /* particles/ScParticleSystemSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee06b0787f8cee06b078 /* particles/ScParticleSystemSim.cpp */; };
- FFFFee06b1b07f8cee06b1b0 /* cloth/ScClothCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee06b1b07f8cee06b1b0 /* cloth/ScClothCore.cpp */; };
- FFFFee06b2187f8cee06b218 /* cloth/ScClothFabricCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee06b2187f8cee06b218 /* cloth/ScClothFabricCore.cpp */; };
- FFFFee06b2807f8cee06b280 /* cloth/ScClothShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee06b2807f8cee06b280 /* cloth/ScClothShape.cpp */; };
- FFFFee06b2e87f8cee06b2e8 /* cloth/ScClothSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee06b2e87f8cee06b2e8 /* cloth/ScClothSim.cpp */; };
+ FFFFf202f5d07fd2f202f5d0 /* ScActorCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf202f5d07fd2f202f5d0 /* ScActorCore.cpp */; };
+ FFFFf202f6387fd2f202f638 /* ScActorSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf202f6387fd2f202f638 /* ScActorSim.cpp */; };
+ FFFFf202f6a07fd2f202f6a0 /* ScArticulationCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf202f6a07fd2f202f6a0 /* ScArticulationCore.cpp */; };
+ FFFFf202f7087fd2f202f708 /* ScArticulationJointCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf202f7087fd2f202f708 /* ScArticulationJointCore.cpp */; };
+ FFFFf202f7707fd2f202f770 /* ScArticulationJointSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf202f7707fd2f202f770 /* ScArticulationJointSim.cpp */; };
+ FFFFf202f7d87fd2f202f7d8 /* ScArticulationSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf202f7d87fd2f202f7d8 /* ScArticulationSim.cpp */; };
+ FFFFf202f8407fd2f202f840 /* ScBodyCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf202f8407fd2f202f840 /* ScBodyCore.cpp */; };
+ FFFFf202f8a87fd2f202f8a8 /* ScBodyCoreKinematic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf202f8a87fd2f202f8a8 /* ScBodyCoreKinematic.cpp */; };
+ FFFFf202f9107fd2f202f910 /* ScBodySim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf202f9107fd2f202f910 /* ScBodySim.cpp */; };
+ FFFFf202f9787fd2f202f978 /* ScConstraintCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf202f9787fd2f202f978 /* ScConstraintCore.cpp */; };
+ FFFFf202f9e07fd2f202f9e0 /* ScConstraintGroupNode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf202f9e07fd2f202f9e0 /* ScConstraintGroupNode.cpp */; };
+ FFFFf202fa487fd2f202fa48 /* ScConstraintInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf202fa487fd2f202fa48 /* ScConstraintInteraction.cpp */; };
+ FFFFf202fab07fd2f202fab0 /* ScConstraintProjectionManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf202fab07fd2f202fab0 /* ScConstraintProjectionManager.cpp */; };
+ FFFFf202fb187fd2f202fb18 /* ScConstraintProjectionTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf202fb187fd2f202fb18 /* ScConstraintProjectionTree.cpp */; };
+ FFFFf202fb807fd2f202fb80 /* ScConstraintSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf202fb807fd2f202fb80 /* ScConstraintSim.cpp */; };
+ FFFFf202fbe87fd2f202fbe8 /* ScElementInteractionMarker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf202fbe87fd2f202fbe8 /* ScElementInteractionMarker.cpp */; };
+ FFFFf202fc507fd2f202fc50 /* ScElementSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf202fc507fd2f202fc50 /* ScElementSim.cpp */; };
+ FFFFf202fcb87fd2f202fcb8 /* ScInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf202fcb87fd2f202fcb8 /* ScInteraction.cpp */; };
+ FFFFf202fd207fd2f202fd20 /* ScIterators.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf202fd207fd2f202fd20 /* ScIterators.cpp */; };
+ FFFFf202fd887fd2f202fd88 /* ScMaterialCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf202fd887fd2f202fd88 /* ScMaterialCore.cpp */; };
+ FFFFf202fdf07fd2f202fdf0 /* ScMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf202fdf07fd2f202fdf0 /* ScMetaData.cpp */; };
+ FFFFf202fe587fd2f202fe58 /* ScNPhaseCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf202fe587fd2f202fe58 /* ScNPhaseCore.cpp */; };
+ FFFFf202fec07fd2f202fec0 /* ScPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf202fec07fd2f202fec0 /* ScPhysics.cpp */; };
+ FFFFf202ff287fd2f202ff28 /* ScRigidCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf202ff287fd2f202ff28 /* ScRigidCore.cpp */; };
+ FFFFf202ff907fd2f202ff90 /* ScRigidSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf202ff907fd2f202ff90 /* ScRigidSim.cpp */; };
+ FFFFf202fff87fd2f202fff8 /* ScScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf202fff87fd2f202fff8 /* ScScene.cpp */; };
+ FFFFf20300607fd2f2030060 /* ScShapeCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf20300607fd2f2030060 /* ScShapeCore.cpp */; };
+ FFFFf20300c87fd2f20300c8 /* ScShapeInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf20300c87fd2f20300c8 /* ScShapeInteraction.cpp */; };
+ FFFFf20301307fd2f2030130 /* ScShapeSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf20301307fd2f2030130 /* ScShapeSim.cpp */; };
+ FFFFf20301987fd2f2030198 /* ScSimStats.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf20301987fd2f2030198 /* ScSimStats.cpp */; };
+ FFFFf20302007fd2f2030200 /* ScSimulationController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf20302007fd2f2030200 /* ScSimulationController.cpp */; };
+ FFFFf20302687fd2f2030268 /* ScSqBoundsManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf20302687fd2f2030268 /* ScSqBoundsManager.cpp */; };
+ FFFFf20302d07fd2f20302d0 /* ScStaticCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf20302d07fd2f20302d0 /* ScStaticCore.cpp */; };
+ FFFFf20303387fd2f2030338 /* ScStaticSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf20303387fd2f2030338 /* ScStaticSim.cpp */; };
+ FFFFf20303a07fd2f20303a0 /* ScTriggerInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf20303a07fd2f20303a0 /* ScTriggerInteraction.cpp */; };
+ FFFFf20305407fd2f2030540 /* particles/ScParticleBodyInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf20305407fd2f2030540 /* particles/ScParticleBodyInteraction.cpp */; };
+ FFFFf20305a87fd2f20305a8 /* particles/ScParticlePacketShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf20305a87fd2f20305a8 /* particles/ScParticlePacketShape.cpp */; };
+ FFFFf20306107fd2f2030610 /* particles/ScParticleSystemCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf20306107fd2f2030610 /* particles/ScParticleSystemCore.cpp */; };
+ FFFFf20306787fd2f2030678 /* particles/ScParticleSystemSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf20306787fd2f2030678 /* particles/ScParticleSystemSim.cpp */; };
+ FFFFf20307b07fd2f20307b0 /* cloth/ScClothCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf20307b07fd2f20307b0 /* cloth/ScClothCore.cpp */; };
+ FFFFf20308187fd2f2030818 /* cloth/ScClothFabricCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf20308187fd2f2030818 /* cloth/ScClothFabricCore.cpp */; };
+ FFFFf20308807fd2f2030880 /* cloth/ScClothShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf20308807fd2f2030880 /* cloth/ScClothShape.cpp */; };
+ FFFFf20308e87fd2f20308e8 /* cloth/ScClothSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf20308e87fd2f20308e8 /* cloth/ScClothSim.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFDedac3f107f8cedac3f10 /* SimulationController */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SimulationController"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFDee0660007f8cee066000 /* ScActorCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.h"; path = "../../SimulationController/include/ScActorCore.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0660687f8cee066068 /* ScArticulationCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.h"; path = "../../SimulationController/include/ScArticulationCore.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0660d07f8cee0660d0 /* ScArticulationJointCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.h"; path = "../../SimulationController/include/ScArticulationJointCore.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0661387f8cee066138 /* ScBodyCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.h"; path = "../../SimulationController/include/ScBodyCore.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0661a07f8cee0661a0 /* ScClothCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothCore.h"; path = "../../SimulationController/include/ScClothCore.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0662087f8cee066208 /* ScClothFabricCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothFabricCore.h"; path = "../../SimulationController/include/ScClothFabricCore.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0662707f8cee066270 /* ScConstraintCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.h"; path = "../../SimulationController/include/ScConstraintCore.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0662d87f8cee0662d8 /* ScIterators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.h"; path = "../../SimulationController/include/ScIterators.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0663407f8cee066340 /* ScMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.h"; path = "../../SimulationController/include/ScMaterialCore.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0663a87f8cee0663a8 /* ScParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScParticleSystemCore.h"; path = "../../SimulationController/include/ScParticleSystemCore.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0664107f8cee066410 /* ScPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.h"; path = "../../SimulationController/include/ScPhysics.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0664787f8cee066478 /* ScRigidCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.h"; path = "../../SimulationController/include/ScRigidCore.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0664e07f8cee0664e0 /* ScScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.h"; path = "../../SimulationController/include/ScScene.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0665487f8cee066548 /* ScShapeCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.h"; path = "../../SimulationController/include/ScShapeCore.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0665b07f8cee0665b0 /* ScStaticCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.h"; path = "../../SimulationController/include/ScStaticCore.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0692007f8cee069200 /* ScActorElementPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorElementPair.h"; path = "../../SimulationController/src/ScActorElementPair.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0692687f8cee069268 /* ScActorInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorInteraction.h"; path = "../../SimulationController/src/ScActorInteraction.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0692d07f8cee0692d0 /* ScActorPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorPair.h"; path = "../../SimulationController/src/ScActorPair.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0693387f8cee069338 /* ScActorSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.h"; path = "../../SimulationController/src/ScActorSim.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0693a07f8cee0693a0 /* ScArticulationJointSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.h"; path = "../../SimulationController/src/ScArticulationJointSim.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0694087f8cee069408 /* ScArticulationSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.h"; path = "../../SimulationController/src/ScArticulationSim.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0694707f8cee069470 /* ScBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.h"; path = "../../SimulationController/src/ScBodySim.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0694d87f8cee0694d8 /* ScClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClient.h"; path = "../../SimulationController/src/ScClient.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0695407f8cee069540 /* ScConstraintGroupNode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.h"; path = "../../SimulationController/src/ScConstraintGroupNode.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0695a87f8cee0695a8 /* ScConstraintInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.h"; path = "../../SimulationController/src/ScConstraintInteraction.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0696107f8cee069610 /* ScConstraintProjectionManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.h"; path = "../../SimulationController/src/ScConstraintProjectionManager.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0696787f8cee069678 /* ScConstraintProjectionTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.h"; path = "../../SimulationController/src/ScConstraintProjectionTree.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0696e07f8cee0696e0 /* ScConstraintSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.h"; path = "../../SimulationController/src/ScConstraintSim.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0697487f8cee069748 /* ScContactReportBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactReportBuffer.h"; path = "../../SimulationController/src/ScContactReportBuffer.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0697b07f8cee0697b0 /* ScContactStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactStream.h"; path = "../../SimulationController/src/ScContactStream.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0698187f8cee069818 /* ScElementInteractionMarker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.h"; path = "../../SimulationController/src/ScElementInteractionMarker.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0698807f8cee069880 /* ScElementSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.h"; path = "../../SimulationController/src/ScElementSim.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0698e87f8cee0698e8 /* ScElementSimInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSimInteraction.h"; path = "../../SimulationController/src/ScElementSimInteraction.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0699507f8cee069950 /* ScInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.h"; path = "../../SimulationController/src/ScInteraction.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0699b87f8cee0699b8 /* ScInteractionFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteractionFlags.h"; path = "../../SimulationController/src/ScInteractionFlags.h"; sourceTree = SOURCE_ROOT; };
- FFFDee069a207f8cee069a20 /* ScNPhaseCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.h"; path = "../../SimulationController/src/ScNPhaseCore.h"; sourceTree = SOURCE_ROOT; };
- FFFDee069a887f8cee069a88 /* ScObjectIDTracker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScObjectIDTracker.h"; path = "../../SimulationController/src/ScObjectIDTracker.h"; sourceTree = SOURCE_ROOT; };
- FFFDee069af07f8cee069af0 /* ScRbElementInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRbElementInteraction.h"; path = "../../SimulationController/src/ScRbElementInteraction.h"; sourceTree = SOURCE_ROOT; };
- FFFDee069b587f8cee069b58 /* ScRigidSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.h"; path = "../../SimulationController/src/ScRigidSim.h"; sourceTree = SOURCE_ROOT; };
- FFFDee069bc07f8cee069bc0 /* ScShapeInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.h"; path = "../../SimulationController/src/ScShapeInteraction.h"; sourceTree = SOURCE_ROOT; };
- FFFDee069c287f8cee069c28 /* ScShapeIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeIterator.h"; path = "../../SimulationController/src/ScShapeIterator.h"; sourceTree = SOURCE_ROOT; };
- FFFDee069c907f8cee069c90 /* ScShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.h"; path = "../../SimulationController/src/ScShapeSim.h"; sourceTree = SOURCE_ROOT; };
- FFFDee069cf87f8cee069cf8 /* ScSimStateData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStateData.h"; path = "../../SimulationController/src/ScSimStateData.h"; sourceTree = SOURCE_ROOT; };
- FFFDee069d607f8cee069d60 /* ScSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.h"; path = "../../SimulationController/src/ScSimStats.h"; sourceTree = SOURCE_ROOT; };
- FFFDee069dc87f8cee069dc8 /* ScSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.h"; path = "../../SimulationController/src/ScSimulationController.h"; sourceTree = SOURCE_ROOT; };
- FFFDee069e307f8cee069e30 /* ScSqBoundsManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.h"; path = "../../SimulationController/src/ScSqBoundsManager.h"; sourceTree = SOURCE_ROOT; };
- FFFDee069e987f8cee069e98 /* ScStaticSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.h"; path = "../../SimulationController/src/ScStaticSim.h"; sourceTree = SOURCE_ROOT; };
- FFFDee069f007f8cee069f00 /* ScTriggerInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.h"; path = "../../SimulationController/src/ScTriggerInteraction.h"; sourceTree = SOURCE_ROOT; };
- FFFDee069f687f8cee069f68 /* ScTriggerPairs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerPairs.h"; path = "../../SimulationController/src/ScTriggerPairs.h"; sourceTree = SOURCE_ROOT; };
- FFFDee069fd07f8cee069fd0 /* ScActorCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.cpp"; path = "../../SimulationController/src/ScActorCore.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee06a0387f8cee06a038 /* ScActorSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.cpp"; path = "../../SimulationController/src/ScActorSim.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee06a0a07f8cee06a0a0 /* ScArticulationCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.cpp"; path = "../../SimulationController/src/ScArticulationCore.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee06a1087f8cee06a108 /* ScArticulationJointCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.cpp"; path = "../../SimulationController/src/ScArticulationJointCore.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee06a1707f8cee06a170 /* ScArticulationJointSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.cpp"; path = "../../SimulationController/src/ScArticulationJointSim.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee06a1d87f8cee06a1d8 /* ScArticulationSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.cpp"; path = "../../SimulationController/src/ScArticulationSim.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee06a2407f8cee06a240 /* ScBodyCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.cpp"; path = "../../SimulationController/src/ScBodyCore.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee06a2a87f8cee06a2a8 /* ScBodyCoreKinematic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCoreKinematic.cpp"; path = "../../SimulationController/src/ScBodyCoreKinematic.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee06a3107f8cee06a310 /* ScBodySim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.cpp"; path = "../../SimulationController/src/ScBodySim.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee06a3787f8cee06a378 /* ScConstraintCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.cpp"; path = "../../SimulationController/src/ScConstraintCore.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee06a3e07f8cee06a3e0 /* ScConstraintGroupNode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.cpp"; path = "../../SimulationController/src/ScConstraintGroupNode.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee06a4487f8cee06a448 /* ScConstraintInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.cpp"; path = "../../SimulationController/src/ScConstraintInteraction.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee06a4b07f8cee06a4b0 /* ScConstraintProjectionManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.cpp"; path = "../../SimulationController/src/ScConstraintProjectionManager.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee06a5187f8cee06a518 /* ScConstraintProjectionTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.cpp"; path = "../../SimulationController/src/ScConstraintProjectionTree.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee06a5807f8cee06a580 /* ScConstraintSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.cpp"; path = "../../SimulationController/src/ScConstraintSim.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee06a5e87f8cee06a5e8 /* ScElementInteractionMarker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.cpp"; path = "../../SimulationController/src/ScElementInteractionMarker.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee06a6507f8cee06a650 /* ScElementSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.cpp"; path = "../../SimulationController/src/ScElementSim.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee06a6b87f8cee06a6b8 /* ScInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.cpp"; path = "../../SimulationController/src/ScInteraction.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee06a7207f8cee06a720 /* ScIterators.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.cpp"; path = "../../SimulationController/src/ScIterators.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee06a7887f8cee06a788 /* ScMaterialCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.cpp"; path = "../../SimulationController/src/ScMaterialCore.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee06a7f07f8cee06a7f0 /* ScMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMetaData.cpp"; path = "../../SimulationController/src/ScMetaData.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee06a8587f8cee06a858 /* ScNPhaseCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.cpp"; path = "../../SimulationController/src/ScNPhaseCore.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee06a8c07f8cee06a8c0 /* ScPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.cpp"; path = "../../SimulationController/src/ScPhysics.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee06a9287f8cee06a928 /* ScRigidCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.cpp"; path = "../../SimulationController/src/ScRigidCore.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee06a9907f8cee06a990 /* ScRigidSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.cpp"; path = "../../SimulationController/src/ScRigidSim.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee06a9f87f8cee06a9f8 /* ScScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.cpp"; path = "../../SimulationController/src/ScScene.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee06aa607f8cee06aa60 /* ScShapeCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.cpp"; path = "../../SimulationController/src/ScShapeCore.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee06aac87f8cee06aac8 /* ScShapeInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.cpp"; path = "../../SimulationController/src/ScShapeInteraction.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee06ab307f8cee06ab30 /* ScShapeSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.cpp"; path = "../../SimulationController/src/ScShapeSim.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee06ab987f8cee06ab98 /* ScSimStats.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.cpp"; path = "../../SimulationController/src/ScSimStats.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee06ac007f8cee06ac00 /* ScSimulationController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.cpp"; path = "../../SimulationController/src/ScSimulationController.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee06ac687f8cee06ac68 /* ScSqBoundsManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.cpp"; path = "../../SimulationController/src/ScSqBoundsManager.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee06acd07f8cee06acd0 /* ScStaticCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.cpp"; path = "../../SimulationController/src/ScStaticCore.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee06ad387f8cee06ad38 /* ScStaticSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.cpp"; path = "../../SimulationController/src/ScStaticSim.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee06ada07f8cee06ada0 /* ScTriggerInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.cpp"; path = "../../SimulationController/src/ScTriggerInteraction.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee06ae087f8cee06ae08 /* particles/ScParticleBodyInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.h"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.h"; sourceTree = SOURCE_ROOT; };
- FFFDee06ae707f8cee06ae70 /* particles/ScParticlePacketShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.h"; path = "../../SimulationController/src/particles/ScParticlePacketShape.h"; sourceTree = SOURCE_ROOT; };
- FFFDee06aed87f8cee06aed8 /* particles/ScParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.h"; path = "../../SimulationController/src/particles/ScParticleSystemSim.h"; sourceTree = SOURCE_ROOT; };
- FFFDee06af407f8cee06af40 /* particles/ScParticleBodyInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.cpp"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee06afa87f8cee06afa8 /* particles/ScParticlePacketShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.cpp"; path = "../../SimulationController/src/particles/ScParticlePacketShape.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee06b0107f8cee06b010 /* particles/ScParticleSystemCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemCore.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemCore.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee06b0787f8cee06b078 /* particles/ScParticleSystemSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemSim.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee06b0e07f8cee06b0e0 /* cloth/ScClothShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.h"; path = "../../SimulationController/src/cloth/ScClothShape.h"; sourceTree = SOURCE_ROOT; };
- FFFDee06b1487f8cee06b148 /* cloth/ScClothSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothSim.h"; path = "../../SimulationController/src/cloth/ScClothSim.h"; sourceTree = SOURCE_ROOT; };
- FFFDee06b1b07f8cee06b1b0 /* cloth/ScClothCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothCore.cpp"; path = "../../SimulationController/src/cloth/ScClothCore.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee06b2187f8cee06b218 /* cloth/ScClothFabricCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothFabricCore.cpp"; path = "../../SimulationController/src/cloth/ScClothFabricCore.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee06b2807f8cee06b280 /* cloth/ScClothShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.cpp"; path = "../../SimulationController/src/cloth/ScClothShape.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee06b2e87f8cee06b2e8 /* cloth/ScClothSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothSim.cpp"; path = "../../SimulationController/src/cloth/ScClothSim.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2d74db07fd2f2d74db0 /* SimulationController */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SimulationController"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFDf384e0007fd2f384e000 /* ScActorCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.h"; path = "../../SimulationController/include/ScActorCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf384e0687fd2f384e068 /* ScArticulationCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.h"; path = "../../SimulationController/include/ScArticulationCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf384e0d07fd2f384e0d0 /* ScArticulationJointCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.h"; path = "../../SimulationController/include/ScArticulationJointCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf384e1387fd2f384e138 /* ScBodyCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.h"; path = "../../SimulationController/include/ScBodyCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf384e1a07fd2f384e1a0 /* ScClothCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothCore.h"; path = "../../SimulationController/include/ScClothCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf384e2087fd2f384e208 /* ScClothFabricCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothFabricCore.h"; path = "../../SimulationController/include/ScClothFabricCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf384e2707fd2f384e270 /* ScConstraintCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.h"; path = "../../SimulationController/include/ScConstraintCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf384e2d87fd2f384e2d8 /* ScIterators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.h"; path = "../../SimulationController/include/ScIterators.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf384e3407fd2f384e340 /* ScMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.h"; path = "../../SimulationController/include/ScMaterialCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf384e3a87fd2f384e3a8 /* ScParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScParticleSystemCore.h"; path = "../../SimulationController/include/ScParticleSystemCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf384e4107fd2f384e410 /* ScPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.h"; path = "../../SimulationController/include/ScPhysics.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf384e4787fd2f384e478 /* ScRigidCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.h"; path = "../../SimulationController/include/ScRigidCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf384e4e07fd2f384e4e0 /* ScScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.h"; path = "../../SimulationController/include/ScScene.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf384e5487fd2f384e548 /* ScShapeCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.h"; path = "../../SimulationController/include/ScShapeCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf384e5b07fd2f384e5b0 /* ScStaticCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.h"; path = "../../SimulationController/include/ScStaticCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf202e8007fd2f202e800 /* ScActorElementPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorElementPair.h"; path = "../../SimulationController/src/ScActorElementPair.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf202e8687fd2f202e868 /* ScActorInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorInteraction.h"; path = "../../SimulationController/src/ScActorInteraction.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf202e8d07fd2f202e8d0 /* ScActorPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorPair.h"; path = "../../SimulationController/src/ScActorPair.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf202e9387fd2f202e938 /* ScActorSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.h"; path = "../../SimulationController/src/ScActorSim.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf202e9a07fd2f202e9a0 /* ScArticulationJointSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.h"; path = "../../SimulationController/src/ScArticulationJointSim.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf202ea087fd2f202ea08 /* ScArticulationSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.h"; path = "../../SimulationController/src/ScArticulationSim.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf202ea707fd2f202ea70 /* ScBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.h"; path = "../../SimulationController/src/ScBodySim.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf202ead87fd2f202ead8 /* ScClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClient.h"; path = "../../SimulationController/src/ScClient.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf202eb407fd2f202eb40 /* ScConstraintGroupNode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.h"; path = "../../SimulationController/src/ScConstraintGroupNode.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf202eba87fd2f202eba8 /* ScConstraintInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.h"; path = "../../SimulationController/src/ScConstraintInteraction.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf202ec107fd2f202ec10 /* ScConstraintProjectionManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.h"; path = "../../SimulationController/src/ScConstraintProjectionManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf202ec787fd2f202ec78 /* ScConstraintProjectionTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.h"; path = "../../SimulationController/src/ScConstraintProjectionTree.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf202ece07fd2f202ece0 /* ScConstraintSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.h"; path = "../../SimulationController/src/ScConstraintSim.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf202ed487fd2f202ed48 /* ScContactReportBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactReportBuffer.h"; path = "../../SimulationController/src/ScContactReportBuffer.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf202edb07fd2f202edb0 /* ScContactStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactStream.h"; path = "../../SimulationController/src/ScContactStream.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf202ee187fd2f202ee18 /* ScElementInteractionMarker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.h"; path = "../../SimulationController/src/ScElementInteractionMarker.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf202ee807fd2f202ee80 /* ScElementSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.h"; path = "../../SimulationController/src/ScElementSim.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf202eee87fd2f202eee8 /* ScElementSimInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSimInteraction.h"; path = "../../SimulationController/src/ScElementSimInteraction.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf202ef507fd2f202ef50 /* ScInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.h"; path = "../../SimulationController/src/ScInteraction.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf202efb87fd2f202efb8 /* ScInteractionFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteractionFlags.h"; path = "../../SimulationController/src/ScInteractionFlags.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf202f0207fd2f202f020 /* ScNPhaseCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.h"; path = "../../SimulationController/src/ScNPhaseCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf202f0887fd2f202f088 /* ScObjectIDTracker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScObjectIDTracker.h"; path = "../../SimulationController/src/ScObjectIDTracker.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf202f0f07fd2f202f0f0 /* ScRbElementInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRbElementInteraction.h"; path = "../../SimulationController/src/ScRbElementInteraction.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf202f1587fd2f202f158 /* ScRigidSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.h"; path = "../../SimulationController/src/ScRigidSim.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf202f1c07fd2f202f1c0 /* ScShapeInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.h"; path = "../../SimulationController/src/ScShapeInteraction.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf202f2287fd2f202f228 /* ScShapeIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeIterator.h"; path = "../../SimulationController/src/ScShapeIterator.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf202f2907fd2f202f290 /* ScShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.h"; path = "../../SimulationController/src/ScShapeSim.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf202f2f87fd2f202f2f8 /* ScSimStateData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStateData.h"; path = "../../SimulationController/src/ScSimStateData.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf202f3607fd2f202f360 /* ScSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.h"; path = "../../SimulationController/src/ScSimStats.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf202f3c87fd2f202f3c8 /* ScSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.h"; path = "../../SimulationController/src/ScSimulationController.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf202f4307fd2f202f430 /* ScSqBoundsManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.h"; path = "../../SimulationController/src/ScSqBoundsManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf202f4987fd2f202f498 /* ScStaticSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.h"; path = "../../SimulationController/src/ScStaticSim.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf202f5007fd2f202f500 /* ScTriggerInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.h"; path = "../../SimulationController/src/ScTriggerInteraction.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf202f5687fd2f202f568 /* ScTriggerPairs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerPairs.h"; path = "../../SimulationController/src/ScTriggerPairs.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf202f5d07fd2f202f5d0 /* ScActorCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.cpp"; path = "../../SimulationController/src/ScActorCore.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf202f6387fd2f202f638 /* ScActorSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.cpp"; path = "../../SimulationController/src/ScActorSim.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf202f6a07fd2f202f6a0 /* ScArticulationCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.cpp"; path = "../../SimulationController/src/ScArticulationCore.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf202f7087fd2f202f708 /* ScArticulationJointCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.cpp"; path = "../../SimulationController/src/ScArticulationJointCore.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf202f7707fd2f202f770 /* ScArticulationJointSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.cpp"; path = "../../SimulationController/src/ScArticulationJointSim.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf202f7d87fd2f202f7d8 /* ScArticulationSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.cpp"; path = "../../SimulationController/src/ScArticulationSim.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf202f8407fd2f202f840 /* ScBodyCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.cpp"; path = "../../SimulationController/src/ScBodyCore.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf202f8a87fd2f202f8a8 /* ScBodyCoreKinematic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCoreKinematic.cpp"; path = "../../SimulationController/src/ScBodyCoreKinematic.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf202f9107fd2f202f910 /* ScBodySim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.cpp"; path = "../../SimulationController/src/ScBodySim.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf202f9787fd2f202f978 /* ScConstraintCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.cpp"; path = "../../SimulationController/src/ScConstraintCore.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf202f9e07fd2f202f9e0 /* ScConstraintGroupNode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.cpp"; path = "../../SimulationController/src/ScConstraintGroupNode.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf202fa487fd2f202fa48 /* ScConstraintInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.cpp"; path = "../../SimulationController/src/ScConstraintInteraction.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf202fab07fd2f202fab0 /* ScConstraintProjectionManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.cpp"; path = "../../SimulationController/src/ScConstraintProjectionManager.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf202fb187fd2f202fb18 /* ScConstraintProjectionTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.cpp"; path = "../../SimulationController/src/ScConstraintProjectionTree.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf202fb807fd2f202fb80 /* ScConstraintSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.cpp"; path = "../../SimulationController/src/ScConstraintSim.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf202fbe87fd2f202fbe8 /* ScElementInteractionMarker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.cpp"; path = "../../SimulationController/src/ScElementInteractionMarker.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf202fc507fd2f202fc50 /* ScElementSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.cpp"; path = "../../SimulationController/src/ScElementSim.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf202fcb87fd2f202fcb8 /* ScInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.cpp"; path = "../../SimulationController/src/ScInteraction.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf202fd207fd2f202fd20 /* ScIterators.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.cpp"; path = "../../SimulationController/src/ScIterators.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf202fd887fd2f202fd88 /* ScMaterialCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.cpp"; path = "../../SimulationController/src/ScMaterialCore.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf202fdf07fd2f202fdf0 /* ScMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMetaData.cpp"; path = "../../SimulationController/src/ScMetaData.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf202fe587fd2f202fe58 /* ScNPhaseCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.cpp"; path = "../../SimulationController/src/ScNPhaseCore.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf202fec07fd2f202fec0 /* ScPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.cpp"; path = "../../SimulationController/src/ScPhysics.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf202ff287fd2f202ff28 /* ScRigidCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.cpp"; path = "../../SimulationController/src/ScRigidCore.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf202ff907fd2f202ff90 /* ScRigidSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.cpp"; path = "../../SimulationController/src/ScRigidSim.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf202fff87fd2f202fff8 /* ScScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.cpp"; path = "../../SimulationController/src/ScScene.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20300607fd2f2030060 /* ScShapeCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.cpp"; path = "../../SimulationController/src/ScShapeCore.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20300c87fd2f20300c8 /* ScShapeInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.cpp"; path = "../../SimulationController/src/ScShapeInteraction.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20301307fd2f2030130 /* ScShapeSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.cpp"; path = "../../SimulationController/src/ScShapeSim.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20301987fd2f2030198 /* ScSimStats.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.cpp"; path = "../../SimulationController/src/ScSimStats.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20302007fd2f2030200 /* ScSimulationController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.cpp"; path = "../../SimulationController/src/ScSimulationController.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20302687fd2f2030268 /* ScSqBoundsManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.cpp"; path = "../../SimulationController/src/ScSqBoundsManager.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20302d07fd2f20302d0 /* ScStaticCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.cpp"; path = "../../SimulationController/src/ScStaticCore.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20303387fd2f2030338 /* ScStaticSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.cpp"; path = "../../SimulationController/src/ScStaticSim.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20303a07fd2f20303a0 /* ScTriggerInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.cpp"; path = "../../SimulationController/src/ScTriggerInteraction.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20304087fd2f2030408 /* particles/ScParticleBodyInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.h"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20304707fd2f2030470 /* particles/ScParticlePacketShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.h"; path = "../../SimulationController/src/particles/ScParticlePacketShape.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20304d87fd2f20304d8 /* particles/ScParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.h"; path = "../../SimulationController/src/particles/ScParticleSystemSim.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20305407fd2f2030540 /* particles/ScParticleBodyInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.cpp"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20305a87fd2f20305a8 /* particles/ScParticlePacketShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.cpp"; path = "../../SimulationController/src/particles/ScParticlePacketShape.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20306107fd2f2030610 /* particles/ScParticleSystemCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemCore.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemCore.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20306787fd2f2030678 /* particles/ScParticleSystemSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemSim.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20306e07fd2f20306e0 /* cloth/ScClothShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.h"; path = "../../SimulationController/src/cloth/ScClothShape.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20307487fd2f2030748 /* cloth/ScClothSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothSim.h"; path = "../../SimulationController/src/cloth/ScClothSim.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20307b07fd2f20307b0 /* cloth/ScClothCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothCore.cpp"; path = "../../SimulationController/src/cloth/ScClothCore.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20308187fd2f2030818 /* cloth/ScClothFabricCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothFabricCore.cpp"; path = "../../SimulationController/src/cloth/ScClothFabricCore.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20308807fd2f2030880 /* cloth/ScClothShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.cpp"; path = "../../SimulationController/src/cloth/ScClothShape.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20308e87fd2f20308e8 /* 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 */
- FFF2edac3f107f8cedac3f10 /* Resources */ = {
+ FFF2f2d74db07fd2f2d74db0 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -1143,7 +1143,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFCedac3f107f8cedac3f10 /* Frameworks */ = {
+ FFFCf2d74db07fd2f2d74db0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -1153,53 +1153,53 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF8edac3f107f8cedac3f10 /* Sources */ = {
+ FFF8f2d74db07fd2f2d74db0 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFFee069fd07f8cee069fd0,
- FFFFee06a0387f8cee06a038,
- FFFFee06a0a07f8cee06a0a0,
- FFFFee06a1087f8cee06a108,
- FFFFee06a1707f8cee06a170,
- FFFFee06a1d87f8cee06a1d8,
- FFFFee06a2407f8cee06a240,
- FFFFee06a2a87f8cee06a2a8,
- FFFFee06a3107f8cee06a310,
- FFFFee06a3787f8cee06a378,
- FFFFee06a3e07f8cee06a3e0,
- FFFFee06a4487f8cee06a448,
- FFFFee06a4b07f8cee06a4b0,
- FFFFee06a5187f8cee06a518,
- FFFFee06a5807f8cee06a580,
- FFFFee06a5e87f8cee06a5e8,
- FFFFee06a6507f8cee06a650,
- FFFFee06a6b87f8cee06a6b8,
- FFFFee06a7207f8cee06a720,
- FFFFee06a7887f8cee06a788,
- FFFFee06a7f07f8cee06a7f0,
- FFFFee06a8587f8cee06a858,
- FFFFee06a8c07f8cee06a8c0,
- FFFFee06a9287f8cee06a928,
- FFFFee06a9907f8cee06a990,
- FFFFee06a9f87f8cee06a9f8,
- FFFFee06aa607f8cee06aa60,
- FFFFee06aac87f8cee06aac8,
- FFFFee06ab307f8cee06ab30,
- FFFFee06ab987f8cee06ab98,
- FFFFee06ac007f8cee06ac00,
- FFFFee06ac687f8cee06ac68,
- FFFFee06acd07f8cee06acd0,
- FFFFee06ad387f8cee06ad38,
- FFFFee06ada07f8cee06ada0,
- FFFFee06af407f8cee06af40,
- FFFFee06afa87f8cee06afa8,
- FFFFee06b0107f8cee06b010,
- FFFFee06b0787f8cee06b078,
- FFFFee06b1b07f8cee06b1b0,
- FFFFee06b2187f8cee06b218,
- FFFFee06b2807f8cee06b280,
- FFFFee06b2e87f8cee06b2e8,
+ FFFFf202f5d07fd2f202f5d0,
+ FFFFf202f6387fd2f202f638,
+ FFFFf202f6a07fd2f202f6a0,
+ FFFFf202f7087fd2f202f708,
+ FFFFf202f7707fd2f202f770,
+ FFFFf202f7d87fd2f202f7d8,
+ FFFFf202f8407fd2f202f840,
+ FFFFf202f8a87fd2f202f8a8,
+ FFFFf202f9107fd2f202f910,
+ FFFFf202f9787fd2f202f978,
+ FFFFf202f9e07fd2f202f9e0,
+ FFFFf202fa487fd2f202fa48,
+ FFFFf202fab07fd2f202fab0,
+ FFFFf202fb187fd2f202fb18,
+ FFFFf202fb807fd2f202fb80,
+ FFFFf202fbe87fd2f202fbe8,
+ FFFFf202fc507fd2f202fc50,
+ FFFFf202fcb87fd2f202fcb8,
+ FFFFf202fd207fd2f202fd20,
+ FFFFf202fd887fd2f202fd88,
+ FFFFf202fdf07fd2f202fdf0,
+ FFFFf202fe587fd2f202fe58,
+ FFFFf202fec07fd2f202fec0,
+ FFFFf202ff287fd2f202ff28,
+ FFFFf202ff907fd2f202ff90,
+ FFFFf202fff87fd2f202fff8,
+ FFFFf20300607fd2f2030060,
+ FFFFf20300c87fd2f20300c8,
+ FFFFf20301307fd2f2030130,
+ FFFFf20301987fd2f2030198,
+ FFFFf20302007fd2f2030200,
+ FFFFf20302687fd2f2030268,
+ FFFFf20302d07fd2f20302d0,
+ FFFFf20303387fd2f2030338,
+ FFFFf20303a07fd2f20303a0,
+ FFFFf20305407fd2f2030540,
+ FFFFf20305a87fd2f20305a8,
+ FFFFf20306107fd2f2030610,
+ FFFFf20306787fd2f2030678,
+ FFFFf20307b07fd2f20307b0,
+ FFFFf20308187fd2f2030818,
+ FFFFf20308807fd2f2030880,
+ FFFFf20308e87fd2f20308e8,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -1211,80 +1211,80 @@
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of PhysXCooking */
- FFFFedaceb507f8cedaceb50 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFDedaae9b07f8cedaae9b0 /* PhysXExtensions */; };
- FFFFee06d4007f8cee06d400 /* Adjacencies.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee06d4007f8cee06d400 /* Adjacencies.cpp */; };
- FFFFee06d4687f8cee06d468 /* Cooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee06d4687f8cee06d468 /* Cooking.cpp */; };
- FFFFee06d4d07f8cee06d4d0 /* CookingUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee06d4d07f8cee06d4d0 /* CookingUtils.cpp */; };
- FFFFee06d5387f8cee06d538 /* EdgeList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee06d5387f8cee06d538 /* EdgeList.cpp */; };
- FFFFee06d5a07f8cee06d5a0 /* MeshCleaner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee06d5a07f8cee06d5a0 /* MeshCleaner.cpp */; };
- FFFFee06d6087f8cee06d608 /* Quantizer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee06d6087f8cee06d608 /* Quantizer.cpp */; };
- FFFFee06d8e07f8cee06d8e0 /* mesh/GrbTriangleMeshCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee06d8e07f8cee06d8e0 /* mesh/GrbTriangleMeshCooking.cpp */; };
- FFFFee06d9487f8cee06d948 /* mesh/HeightFieldCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee06d9487f8cee06d948 /* mesh/HeightFieldCooking.cpp */; };
- FFFFee06d9b07f8cee06d9b0 /* mesh/RTreeCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee06d9b07f8cee06d9b0 /* mesh/RTreeCooking.cpp */; };
- FFFFee06da187f8cee06da18 /* mesh/TriangleMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee06da187f8cee06da18 /* mesh/TriangleMeshBuilder.cpp */; };
- FFFFee06dc887f8cee06dc88 /* convex/BigConvexDataBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee06dc887f8cee06dc88 /* convex/BigConvexDataBuilder.cpp */; };
- FFFFee06dcf07f8cee06dcf0 /* convex/ConvexHullBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee06dcf07f8cee06dcf0 /* convex/ConvexHullBuilder.cpp */; };
- FFFFee06dd587f8cee06dd58 /* convex/ConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee06dd587f8cee06dd58 /* convex/ConvexHullLib.cpp */; };
- FFFFee06ddc07f8cee06ddc0 /* convex/ConvexHullUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee06ddc07f8cee06ddc0 /* convex/ConvexHullUtils.cpp */; };
- FFFFee06de287f8cee06de28 /* convex/ConvexMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee06de287f8cee06de28 /* convex/ConvexMeshBuilder.cpp */; };
- FFFFee06de907f8cee06de90 /* convex/ConvexPolygonsBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee06de907f8cee06de90 /* convex/ConvexPolygonsBuilder.cpp */; };
- FFFFee06def87f8cee06def8 /* convex/InflationConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee06def87f8cee06def8 /* convex/InflationConvexHullLib.cpp */; };
- FFFFee06df607f8cee06df60 /* convex/QuickHullConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee06df607f8cee06df60 /* convex/QuickHullConvexHullLib.cpp */; };
- FFFFee06dfc87f8cee06dfc8 /* convex/VolumeIntegration.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee06dfc87f8cee06dfc8 /* convex/VolumeIntegration.cpp */; };
+ FFFFf1f2aeb07fd2f1f2aeb0 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFDf2d5f8507fd2f2d5f850 /* PhysXExtensions */; };
+ FFFFf2036a007fd2f2036a00 /* Adjacencies.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf2036a007fd2f2036a00 /* Adjacencies.cpp */; };
+ FFFFf2036a687fd2f2036a68 /* Cooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf2036a687fd2f2036a68 /* Cooking.cpp */; };
+ FFFFf2036ad07fd2f2036ad0 /* CookingUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf2036ad07fd2f2036ad0 /* CookingUtils.cpp */; };
+ FFFFf2036b387fd2f2036b38 /* EdgeList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf2036b387fd2f2036b38 /* EdgeList.cpp */; };
+ FFFFf2036ba07fd2f2036ba0 /* MeshCleaner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf2036ba07fd2f2036ba0 /* MeshCleaner.cpp */; };
+ FFFFf2036c087fd2f2036c08 /* Quantizer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf2036c087fd2f2036c08 /* Quantizer.cpp */; };
+ FFFFf2036ee07fd2f2036ee0 /* mesh/GrbTriangleMeshCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf2036ee07fd2f2036ee0 /* mesh/GrbTriangleMeshCooking.cpp */; };
+ FFFFf2036f487fd2f2036f48 /* mesh/HeightFieldCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf2036f487fd2f2036f48 /* mesh/HeightFieldCooking.cpp */; };
+ FFFFf2036fb07fd2f2036fb0 /* mesh/RTreeCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf2036fb07fd2f2036fb0 /* mesh/RTreeCooking.cpp */; };
+ FFFFf20370187fd2f2037018 /* mesh/TriangleMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf20370187fd2f2037018 /* mesh/TriangleMeshBuilder.cpp */; };
+ FFFFf20372887fd2f2037288 /* convex/BigConvexDataBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf20372887fd2f2037288 /* convex/BigConvexDataBuilder.cpp */; };
+ FFFFf20372f07fd2f20372f0 /* convex/ConvexHullBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf20372f07fd2f20372f0 /* convex/ConvexHullBuilder.cpp */; };
+ FFFFf20373587fd2f2037358 /* convex/ConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf20373587fd2f2037358 /* convex/ConvexHullLib.cpp */; };
+ FFFFf20373c07fd2f20373c0 /* convex/ConvexHullUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf20373c07fd2f20373c0 /* convex/ConvexHullUtils.cpp */; };
+ FFFFf20374287fd2f2037428 /* convex/ConvexMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf20374287fd2f2037428 /* convex/ConvexMeshBuilder.cpp */; };
+ FFFFf20374907fd2f2037490 /* convex/ConvexPolygonsBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf20374907fd2f2037490 /* convex/ConvexPolygonsBuilder.cpp */; };
+ FFFFf20374f87fd2f20374f8 /* convex/InflationConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf20374f87fd2f20374f8 /* convex/InflationConvexHullLib.cpp */; };
+ FFFFf20375607fd2f2037560 /* convex/QuickHullConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf20375607fd2f2037560 /* convex/QuickHullConvexHullLib.cpp */; };
+ FFFFf20375c87fd2f20375c8 /* convex/VolumeIntegration.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf20375c87fd2f20375c8 /* convex/VolumeIntegration.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFDedac8fa07f8cedac8fa0 /* PhysXCooking */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCooking"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFDedad32507f8cedad3250 /* PxBVH33MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH33MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH33MidphaseDesc.h"; sourceTree = SOURCE_ROOT; };
- FFFDedad32b87f8cedad32b8 /* PxBVH34MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH34MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH34MidphaseDesc.h"; sourceTree = SOURCE_ROOT; };
- FFFDedad33207f8cedad3320 /* PxConvexMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshDesc.h"; path = "../../../Include/cooking/PxConvexMeshDesc.h"; sourceTree = SOURCE_ROOT; };
- FFFDedad33887f8cedad3388 /* PxCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCooking.h"; path = "../../../Include/cooking/PxCooking.h"; sourceTree = SOURCE_ROOT; };
- FFFDedad33f07f8cedad33f0 /* PxMidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMidphaseDesc.h"; path = "../../../Include/cooking/PxMidphaseDesc.h"; sourceTree = SOURCE_ROOT; };
- FFFDedad34587f8cedad3458 /* PxTriangleMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshDesc.h"; path = "../../../Include/cooking/PxTriangleMeshDesc.h"; sourceTree = SOURCE_ROOT; };
- FFFDedad34c07f8cedad34c0 /* Pxc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Pxc.h"; path = "../../../Include/cooking/Pxc.h"; sourceTree = SOURCE_ROOT; };
- FFFDee06d4007f8cee06d400 /* Adjacencies.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.cpp"; path = "../../PhysXCooking/src/Adjacencies.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee06d4687f8cee06d468 /* Cooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.cpp"; path = "../../PhysXCooking/src/Cooking.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee06d4d07f8cee06d4d0 /* CookingUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.cpp"; path = "../../PhysXCooking/src/CookingUtils.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee06d5387f8cee06d538 /* EdgeList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.cpp"; path = "../../PhysXCooking/src/EdgeList.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee06d5a07f8cee06d5a0 /* MeshCleaner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.cpp"; path = "../../PhysXCooking/src/MeshCleaner.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee06d6087f8cee06d608 /* Quantizer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.cpp"; path = "../../PhysXCooking/src/Quantizer.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee06d6707f8cee06d670 /* Adjacencies.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.h"; path = "../../PhysXCooking/src/Adjacencies.h"; sourceTree = SOURCE_ROOT; };
- FFFDee06d6d87f8cee06d6d8 /* Cooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.h"; path = "../../PhysXCooking/src/Cooking.h"; sourceTree = SOURCE_ROOT; };
- FFFDee06d7407f8cee06d740 /* CookingUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.h"; path = "../../PhysXCooking/src/CookingUtils.h"; sourceTree = SOURCE_ROOT; };
- FFFDee06d7a87f8cee06d7a8 /* EdgeList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.h"; path = "../../PhysXCooking/src/EdgeList.h"; sourceTree = SOURCE_ROOT; };
- FFFDee06d8107f8cee06d810 /* MeshCleaner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.h"; path = "../../PhysXCooking/src/MeshCleaner.h"; sourceTree = SOURCE_ROOT; };
- FFFDee06d8787f8cee06d878 /* Quantizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.h"; path = "../../PhysXCooking/src/Quantizer.h"; sourceTree = SOURCE_ROOT; };
- FFFDee06d8e07f8cee06d8e0 /* mesh/GrbTriangleMeshCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.cpp"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee06d9487f8cee06d948 /* mesh/HeightFieldCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.cpp"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee06d9b07f8cee06d9b0 /* mesh/RTreeCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.cpp"; path = "../../PhysXCooking/src/mesh/RTreeCooking.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee06da187f8cee06da18 /* mesh/TriangleMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.cpp"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee06da807f8cee06da80 /* mesh/GrbTriangleMeshCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.h"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.h"; sourceTree = SOURCE_ROOT; };
- FFFDee06dae87f8cee06dae8 /* mesh/HeightFieldCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.h"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.h"; sourceTree = SOURCE_ROOT; };
- FFFDee06db507f8cee06db50 /* mesh/QuickSelect.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/QuickSelect.h"; path = "../../PhysXCooking/src/mesh/QuickSelect.h"; sourceTree = SOURCE_ROOT; };
- FFFDee06dbb87f8cee06dbb8 /* mesh/RTreeCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.h"; path = "../../PhysXCooking/src/mesh/RTreeCooking.h"; sourceTree = SOURCE_ROOT; };
- FFFDee06dc207f8cee06dc20 /* mesh/TriangleMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.h"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.h"; sourceTree = SOURCE_ROOT; };
- FFFDee06dc887f8cee06dc88 /* convex/BigConvexDataBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.cpp"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee06dcf07f8cee06dcf0 /* convex/ConvexHullBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee06dd587f8cee06dd58 /* convex/ConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee06ddc07f8cee06ddc0 /* convex/ConvexHullUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee06de287f8cee06de28 /* convex/ConvexMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee06de907f8cee06de90 /* convex/ConvexPolygonsBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee06def87f8cee06def8 /* convex/InflationConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee06df607f8cee06df60 /* convex/QuickHullConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee06dfc87f8cee06dfc8 /* convex/VolumeIntegration.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/VolumeIntegration.cpp"; path = "../../PhysXCooking/src/convex/VolumeIntegration.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee06e0307f8cee06e030 /* convex/BigConvexDataBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.h"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.h"; sourceTree = SOURCE_ROOT; };
- FFFDee06e0987f8cee06e098 /* convex/ConvexHullBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.h"; sourceTree = SOURCE_ROOT; };
- FFFDee06e1007f8cee06e100 /* convex/ConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.h"; path = "../../PhysXCooking/src/convex/ConvexHullLib.h"; sourceTree = SOURCE_ROOT; };
- FFFDee06e1687f8cee06e168 /* convex/ConvexHullUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.h"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.h"; sourceTree = SOURCE_ROOT; };
- FFFDee06e1d07f8cee06e1d0 /* convex/ConvexMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.h"; sourceTree = SOURCE_ROOT; };
- FFFDee06e2387f8cee06e238 /* convex/ConvexPolygonsBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.h"; sourceTree = SOURCE_ROOT; };
- FFFDee06e2a07f8cee06e2a0 /* convex/InflationConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.h"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.h"; sourceTree = SOURCE_ROOT; };
- FFFDee06e3087f8cee06e308 /* convex/QuickHullConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.h"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.h"; sourceTree = SOURCE_ROOT; };
- FFFDee06e3707f8cee06e370 /* convex/VolumeIntegration.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/VolumeIntegration.h"; path = "../../PhysXCooking/src/convex/VolumeIntegration.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf1f241a07fd2f1f241a0 /* PhysXCooking */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCooking"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFDf1f270707fd2f1f27070 /* PxBVH33MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH33MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH33MidphaseDesc.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf1f270d87fd2f1f270d8 /* PxBVH34MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH34MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH34MidphaseDesc.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf1f271407fd2f1f27140 /* PxConvexMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshDesc.h"; path = "../../../Include/cooking/PxConvexMeshDesc.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf1f271a87fd2f1f271a8 /* PxCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCooking.h"; path = "../../../Include/cooking/PxCooking.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf1f272107fd2f1f27210 /* PxMidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMidphaseDesc.h"; path = "../../../Include/cooking/PxMidphaseDesc.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf1f272787fd2f1f27278 /* PxTriangleMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshDesc.h"; path = "../../../Include/cooking/PxTriangleMeshDesc.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf1f272e07fd2f1f272e0 /* Pxc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Pxc.h"; path = "../../../Include/cooking/Pxc.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2036a007fd2f2036a00 /* Adjacencies.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.cpp"; path = "../../PhysXCooking/src/Adjacencies.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2036a687fd2f2036a68 /* Cooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.cpp"; path = "../../PhysXCooking/src/Cooking.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2036ad07fd2f2036ad0 /* CookingUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.cpp"; path = "../../PhysXCooking/src/CookingUtils.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2036b387fd2f2036b38 /* EdgeList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.cpp"; path = "../../PhysXCooking/src/EdgeList.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2036ba07fd2f2036ba0 /* MeshCleaner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.cpp"; path = "../../PhysXCooking/src/MeshCleaner.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2036c087fd2f2036c08 /* Quantizer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.cpp"; path = "../../PhysXCooking/src/Quantizer.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2036c707fd2f2036c70 /* Adjacencies.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.h"; path = "../../PhysXCooking/src/Adjacencies.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2036cd87fd2f2036cd8 /* Cooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.h"; path = "../../PhysXCooking/src/Cooking.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2036d407fd2f2036d40 /* CookingUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.h"; path = "../../PhysXCooking/src/CookingUtils.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2036da87fd2f2036da8 /* EdgeList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.h"; path = "../../PhysXCooking/src/EdgeList.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2036e107fd2f2036e10 /* MeshCleaner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.h"; path = "../../PhysXCooking/src/MeshCleaner.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2036e787fd2f2036e78 /* Quantizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.h"; path = "../../PhysXCooking/src/Quantizer.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2036ee07fd2f2036ee0 /* mesh/GrbTriangleMeshCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.cpp"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2036f487fd2f2036f48 /* mesh/HeightFieldCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.cpp"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2036fb07fd2f2036fb0 /* mesh/RTreeCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.cpp"; path = "../../PhysXCooking/src/mesh/RTreeCooking.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20370187fd2f2037018 /* mesh/TriangleMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.cpp"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20370807fd2f2037080 /* mesh/GrbTriangleMeshCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.h"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20370e87fd2f20370e8 /* mesh/HeightFieldCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.h"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20371507fd2f2037150 /* mesh/QuickSelect.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/QuickSelect.h"; path = "../../PhysXCooking/src/mesh/QuickSelect.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20371b87fd2f20371b8 /* mesh/RTreeCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.h"; path = "../../PhysXCooking/src/mesh/RTreeCooking.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20372207fd2f2037220 /* mesh/TriangleMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.h"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20372887fd2f2037288 /* convex/BigConvexDataBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.cpp"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20372f07fd2f20372f0 /* convex/ConvexHullBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20373587fd2f2037358 /* convex/ConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20373c07fd2f20373c0 /* convex/ConvexHullUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20374287fd2f2037428 /* convex/ConvexMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20374907fd2f2037490 /* convex/ConvexPolygonsBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20374f87fd2f20374f8 /* convex/InflationConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20375607fd2f2037560 /* convex/QuickHullConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20375c87fd2f20375c8 /* convex/VolumeIntegration.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/VolumeIntegration.cpp"; path = "../../PhysXCooking/src/convex/VolumeIntegration.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20376307fd2f2037630 /* convex/BigConvexDataBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.h"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20376987fd2f2037698 /* convex/ConvexHullBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20377007fd2f2037700 /* convex/ConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.h"; path = "../../PhysXCooking/src/convex/ConvexHullLib.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20377687fd2f2037768 /* convex/ConvexHullUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.h"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20377d07fd2f20377d0 /* convex/ConvexMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20378387fd2f2037838 /* convex/ConvexPolygonsBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20378a07fd2f20378a0 /* convex/InflationConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.h"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20379087fd2f2037908 /* convex/QuickHullConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.h"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20379707fd2f2037970 /* 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 */
- FFF2edac8fa07f8cedac8fa0 /* Resources */ = {
+ FFF2f1f241a07fd2f1f241a0 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -1294,7 +1294,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFCedac8fa07f8cedac8fa0 /* Frameworks */ = {
+ FFFCf1f241a07fd2f1f241a0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -1304,29 +1304,29 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF8edac8fa07f8cedac8fa0 /* Sources */ = {
+ FFF8f1f241a07fd2f1f241a0 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFFee06d4007f8cee06d400,
- FFFFee06d4687f8cee06d468,
- FFFFee06d4d07f8cee06d4d0,
- FFFFee06d5387f8cee06d538,
- FFFFee06d5a07f8cee06d5a0,
- FFFFee06d6087f8cee06d608,
- FFFFee06d8e07f8cee06d8e0,
- FFFFee06d9487f8cee06d948,
- FFFFee06d9b07f8cee06d9b0,
- FFFFee06da187f8cee06da18,
- FFFFee06dc887f8cee06dc88,
- FFFFee06dcf07f8cee06dcf0,
- FFFFee06dd587f8cee06dd58,
- FFFFee06ddc07f8cee06ddc0,
- FFFFee06de287f8cee06de28,
- FFFFee06de907f8cee06de90,
- FFFFee06def87f8cee06def8,
- FFFFee06df607f8cee06df60,
- FFFFee06dfc87f8cee06dfc8,
+ FFFFf2036a007fd2f2036a00,
+ FFFFf2036a687fd2f2036a68,
+ FFFFf2036ad07fd2f2036ad0,
+ FFFFf2036b387fd2f2036b38,
+ FFFFf2036ba07fd2f2036ba0,
+ FFFFf2036c087fd2f2036c08,
+ FFFFf2036ee07fd2f2036ee0,
+ FFFFf2036f487fd2f2036f48,
+ FFFFf2036fb07fd2f2036fb0,
+ FFFFf20370187fd2f2037018,
+ FFFFf20372887fd2f2037288,
+ FFFFf20372f07fd2f20372f0,
+ FFFFf20373587fd2f2037358,
+ FFFFf20373c07fd2f20373c0,
+ FFFFf20374287fd2f2037428,
+ FFFFf20374907fd2f2037490,
+ FFFFf20374f87fd2f20374f8,
+ FFFFf20375607fd2f2037560,
+ FFFFf20375c87fd2f20375c8,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -1335,514 +1335,514 @@
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
- FFF4edad3bc07f8cedad3bc0 /* PBXTargetDependency */ = {
+ FFF4f1f259107fd2f1f25910 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFAec1a0dc07f8cec1a0dc0 /* PhysXCommon */;
- targetProxy = FFF5ec1a0dc07f8cec1a0dc0 /* PBXContainerItemProxy */;
+ target = FFFAf18a0c307fd2f18a0c30 /* PhysXCommon */;
+ targetProxy = FFF5f18a0c307fd2f18a0c30 /* PBXContainerItemProxy */;
};
- FFF4edaceb507f8cedaceb50 /* PBXTargetDependency */ = {
+ FFF4f1f2aeb07fd2f1f2aeb0 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFAedaae9b07f8cedaae9b0 /* PhysXExtensions */;
- targetProxy = FFF5edaae9b07f8cedaae9b0 /* PBXContainerItemProxy */;
+ target = FFFAf2d5f8507fd2f2d5f850 /* PhysXExtensions */;
+ targetProxy = FFF5f2d5f8507fd2f2d5f850 /* PBXContainerItemProxy */;
};
- FFF4edacf0307f8cedacf030 /* PBXTargetDependency */ = {
+ FFF4f1f240707fd2f1f24070 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFAec18e0107f8cec18e010 /* PxFoundation */;
- targetProxy = FFF5ec18e0107f8cec18e010 /* PBXContainerItemProxy */;
+ target = FFFAf188de607fd2f188de60 /* PxFoundation */;
+ targetProxy = FFF5f188de607fd2f188de60 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of PhysXCommon */
- FFFFeb9aa8007f8ceb9aa800 /* src/CmBoxPruning.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDeb9aa8007f8ceb9aa800 /* src/CmBoxPruning.cpp */; };
- FFFFeb9aa8687f8ceb9aa868 /* src/CmCollection.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDeb9aa8687f8ceb9aa868 /* src/CmCollection.cpp */; };
- FFFFeb9aa8d07f8ceb9aa8d0 /* src/CmMathUtils.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDeb9aa8d07f8ceb9aa8d0 /* src/CmMathUtils.cpp */; };
- FFFFeb9aa9387f8ceb9aa938 /* src/CmPtrTable.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDeb9aa9387f8ceb9aa938 /* src/CmPtrTable.cpp */; };
- FFFFeb9aa9a07f8ceb9aa9a0 /* src/CmRadixSort.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDeb9aa9a07f8ceb9aa9a0 /* src/CmRadixSort.cpp */; };
- FFFFeb9aaa087f8ceb9aaa08 /* src/CmRadixSortBuffered.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDeb9aaa087f8ceb9aaa08 /* src/CmRadixSortBuffered.cpp */; };
- FFFFeb9aaa707f8ceb9aaa70 /* src/CmRenderOutput.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDeb9aaa707f8ceb9aaa70 /* src/CmRenderOutput.cpp */; };
- FFFFeb9aaad87f8ceb9aaad8 /* src/CmVisualization.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDeb9aaad87f8ceb9aaad8 /* src/CmVisualization.cpp */; };
- FFFFec8013a87f8cec8013a8 /* ../../Include/GeomUtils in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8013a87f8cec8013a8 /* ../../Include/GeomUtils */; };
- FFFFec8048e07f8cec8048e0 /* src/GuBounds.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8048e07f8cec8048e0 /* src/GuBounds.cpp */; };
- FFFFec8049487f8cec804948 /* src/GuBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8049487f8cec804948 /* src/GuBox.cpp */; };
- FFFFec8049b07f8cec8049b0 /* src/GuCCTSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8049b07f8cec8049b0 /* src/GuCCTSweepTests.cpp */; };
- FFFFec804a187f8cec804a18 /* src/GuCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec804a187f8cec804a18 /* src/GuCapsule.cpp */; };
- FFFFec804a807f8cec804a80 /* src/GuGeometryQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec804a807f8cec804a80 /* src/GuGeometryQuery.cpp */; };
- FFFFec804ae87f8cec804ae8 /* src/GuGeometryUnion.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec804ae87f8cec804ae8 /* src/GuGeometryUnion.cpp */; };
- FFFFec804b507f8cec804b50 /* src/GuInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec804b507f8cec804b50 /* src/GuInternal.cpp */; };
- FFFFec804bb87f8cec804bb8 /* src/GuMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec804bb87f8cec804bb8 /* src/GuMTD.cpp */; };
- FFFFec804c207f8cec804c20 /* src/GuMeshFactory.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec804c207f8cec804c20 /* src/GuMeshFactory.cpp */; };
- FFFFec804c887f8cec804c88 /* src/GuMetaData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec804c887f8cec804c88 /* src/GuMetaData.cpp */; };
- FFFFec804cf07f8cec804cf0 /* src/GuOverlapTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec804cf07f8cec804cf0 /* src/GuOverlapTests.cpp */; };
- FFFFec804d587f8cec804d58 /* src/GuRaycastTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec804d587f8cec804d58 /* src/GuRaycastTests.cpp */; };
- FFFFec804dc07f8cec804dc0 /* src/GuSerialize.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec804dc07f8cec804dc0 /* src/GuSerialize.cpp */; };
- FFFFec804e287f8cec804e28 /* src/GuSweepMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec804e287f8cec804e28 /* src/GuSweepMTD.cpp */; };
- FFFFec804e907f8cec804e90 /* src/GuSweepSharedTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec804e907f8cec804e90 /* src/GuSweepSharedTests.cpp */; };
- FFFFec804ef87f8cec804ef8 /* src/GuSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec804ef87f8cec804ef8 /* src/GuSweepTests.cpp */; };
- FFFFec804f607f8cec804f60 /* src/contact/GuContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec804f607f8cec804f60 /* src/contact/GuContactBoxBox.cpp */; };
- FFFFec804fc87f8cec804fc8 /* src/contact/GuContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec804fc87f8cec804fc8 /* src/contact/GuContactCapsuleBox.cpp */; };
- FFFFec8050307f8cec805030 /* src/contact/GuContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8050307f8cec805030 /* src/contact/GuContactCapsuleCapsule.cpp */; };
- FFFFec8050987f8cec805098 /* src/contact/GuContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8050987f8cec805098 /* src/contact/GuContactCapsuleConvex.cpp */; };
- FFFFec8051007f8cec805100 /* src/contact/GuContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8051007f8cec805100 /* src/contact/GuContactCapsuleMesh.cpp */; };
- FFFFec8051687f8cec805168 /* src/contact/GuContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8051687f8cec805168 /* src/contact/GuContactConvexConvex.cpp */; };
- FFFFec8051d07f8cec8051d0 /* src/contact/GuContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8051d07f8cec8051d0 /* src/contact/GuContactConvexMesh.cpp */; };
- FFFFec8052387f8cec805238 /* src/contact/GuContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8052387f8cec805238 /* src/contact/GuContactPlaneBox.cpp */; };
- FFFFec8052a07f8cec8052a0 /* src/contact/GuContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8052a07f8cec8052a0 /* src/contact/GuContactPlaneCapsule.cpp */; };
- FFFFec8053087f8cec805308 /* src/contact/GuContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8053087f8cec805308 /* src/contact/GuContactPlaneConvex.cpp */; };
- FFFFec8053707f8cec805370 /* src/contact/GuContactPolygonPolygon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8053707f8cec805370 /* src/contact/GuContactPolygonPolygon.cpp */; };
- FFFFec8053d87f8cec8053d8 /* src/contact/GuContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8053d87f8cec8053d8 /* src/contact/GuContactSphereBox.cpp */; };
- FFFFec8054407f8cec805440 /* src/contact/GuContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8054407f8cec805440 /* src/contact/GuContactSphereCapsule.cpp */; };
- FFFFec8054a87f8cec8054a8 /* src/contact/GuContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8054a87f8cec8054a8 /* src/contact/GuContactSphereMesh.cpp */; };
- FFFFec8055107f8cec805510 /* src/contact/GuContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8055107f8cec805510 /* src/contact/GuContactSpherePlane.cpp */; };
- FFFFec8055787f8cec805578 /* src/contact/GuContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8055787f8cec805578 /* src/contact/GuContactSphereSphere.cpp */; };
- FFFFec8055e07f8cec8055e0 /* src/contact/GuFeatureCode.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8055e07f8cec8055e0 /* src/contact/GuFeatureCode.cpp */; };
- FFFFec8056487f8cec805648 /* src/contact/GuLegacyContactBoxHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8056487f8cec805648 /* src/contact/GuLegacyContactBoxHeightField.cpp */; };
- FFFFec8056b07f8cec8056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8056b07f8cec8056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */; };
- FFFFec8057187f8cec805718 /* src/contact/GuLegacyContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8057187f8cec805718 /* src/contact/GuLegacyContactConvexHeightField.cpp */; };
- FFFFec8057807f8cec805780 /* src/contact/GuLegacyContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8057807f8cec805780 /* src/contact/GuLegacyContactSphereHeightField.cpp */; };
- FFFFec8057e87f8cec8057e8 /* src/common/GuBarycentricCoordinates.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8057e87f8cec8057e8 /* src/common/GuBarycentricCoordinates.cpp */; };
- FFFFec8058507f8cec805850 /* src/common/GuSeparatingAxes.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8058507f8cec805850 /* src/common/GuSeparatingAxes.cpp */; };
- FFFFec8058b87f8cec8058b8 /* src/convex/GuBigConvexData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8058b87f8cec8058b8 /* src/convex/GuBigConvexData.cpp */; };
- FFFFec8059207f8cec805920 /* src/convex/GuConvexHelper.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8059207f8cec805920 /* src/convex/GuConvexHelper.cpp */; };
- FFFFec8059887f8cec805988 /* src/convex/GuConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8059887f8cec805988 /* src/convex/GuConvexMesh.cpp */; };
- FFFFec8059f07f8cec8059f0 /* src/convex/GuConvexSupportTable.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8059f07f8cec8059f0 /* src/convex/GuConvexSupportTable.cpp */; };
- FFFFec805a587f8cec805a58 /* src/convex/GuConvexUtilsInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec805a587f8cec805a58 /* src/convex/GuConvexUtilsInternal.cpp */; };
- FFFFec805ac07f8cec805ac0 /* src/convex/GuHillClimbing.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec805ac07f8cec805ac0 /* src/convex/GuHillClimbing.cpp */; };
- FFFFec805b287f8cec805b28 /* src/convex/GuShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec805b287f8cec805b28 /* src/convex/GuShapeConvex.cpp */; };
- FFFFec805b907f8cec805b90 /* src/distance/GuDistancePointBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec805b907f8cec805b90 /* src/distance/GuDistancePointBox.cpp */; };
- FFFFec805bf87f8cec805bf8 /* src/distance/GuDistancePointTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec805bf87f8cec805bf8 /* src/distance/GuDistancePointTriangle.cpp */; };
- FFFFec805c607f8cec805c60 /* src/distance/GuDistanceSegmentBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec805c607f8cec805c60 /* src/distance/GuDistanceSegmentBox.cpp */; };
- FFFFec805cc87f8cec805cc8 /* src/distance/GuDistanceSegmentSegment.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec805cc87f8cec805cc8 /* src/distance/GuDistanceSegmentSegment.cpp */; };
- FFFFec805d307f8cec805d30 /* src/distance/GuDistanceSegmentTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec805d307f8cec805d30 /* src/distance/GuDistanceSegmentTriangle.cpp */; };
- FFFFec805d987f8cec805d98 /* src/sweep/GuSweepBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec805d987f8cec805d98 /* src/sweep/GuSweepBoxBox.cpp */; };
- FFFFec805e007f8cec805e00 /* src/sweep/GuSweepBoxSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec805e007f8cec805e00 /* src/sweep/GuSweepBoxSphere.cpp */; };
- FFFFec805e687f8cec805e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec805e687f8cec805e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */; };
- FFFFec805ed07f8cec805ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec805ed07f8cec805ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */; };
- FFFFec805f387f8cec805f38 /* src/sweep/GuSweepCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec805f387f8cec805f38 /* src/sweep/GuSweepCapsuleBox.cpp */; };
- FFFFec805fa07f8cec805fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec805fa07f8cec805fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */; };
- FFFFec8060087f8cec806008 /* src/sweep/GuSweepCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8060087f8cec806008 /* src/sweep/GuSweepCapsuleTriangle.cpp */; };
- FFFFec8060707f8cec806070 /* src/sweep/GuSweepSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8060707f8cec806070 /* src/sweep/GuSweepSphereCapsule.cpp */; };
- FFFFec8060d87f8cec8060d8 /* src/sweep/GuSweepSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8060d87f8cec8060d8 /* src/sweep/GuSweepSphereSphere.cpp */; };
- FFFFec8061407f8cec806140 /* src/sweep/GuSweepSphereTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8061407f8cec806140 /* src/sweep/GuSweepSphereTriangle.cpp */; };
- FFFFec8061a87f8cec8061a8 /* src/sweep/GuSweepTriangleUtils.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8061a87f8cec8061a8 /* src/sweep/GuSweepTriangleUtils.cpp */; };
- FFFFec8062107f8cec806210 /* src/gjk/GuEPA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8062107f8cec806210 /* src/gjk/GuEPA.cpp */; };
- FFFFec8062787f8cec806278 /* src/gjk/GuGJKSimplex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8062787f8cec806278 /* src/gjk/GuGJKSimplex.cpp */; };
- FFFFec8062e07f8cec8062e0 /* src/gjk/GuGJKTest.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8062e07f8cec8062e0 /* src/gjk/GuGJKTest.cpp */; };
- FFFFec8063487f8cec806348 /* src/intersection/GuIntersectionBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8063487f8cec806348 /* src/intersection/GuIntersectionBoxBox.cpp */; };
- FFFFec8063b07f8cec8063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8063b07f8cec8063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */; };
- FFFFec8064187f8cec806418 /* src/intersection/GuIntersectionEdgeEdge.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8064187f8cec806418 /* src/intersection/GuIntersectionEdgeEdge.cpp */; };
- FFFFec8064807f8cec806480 /* src/intersection/GuIntersectionRayBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8064807f8cec806480 /* src/intersection/GuIntersectionRayBox.cpp */; };
- FFFFec8064e87f8cec8064e8 /* src/intersection/GuIntersectionRayCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8064e87f8cec8064e8 /* src/intersection/GuIntersectionRayCapsule.cpp */; };
- FFFFec8065507f8cec806550 /* src/intersection/GuIntersectionRaySphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8065507f8cec806550 /* src/intersection/GuIntersectionRaySphere.cpp */; };
- FFFFec8065b87f8cec8065b8 /* src/intersection/GuIntersectionSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8065b87f8cec8065b8 /* src/intersection/GuIntersectionSphereBox.cpp */; };
- FFFFec8066207f8cec806620 /* src/intersection/GuIntersectionTriangleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8066207f8cec806620 /* src/intersection/GuIntersectionTriangleBox.cpp */; };
- FFFFec8066887f8cec806688 /* src/mesh/GuBV32.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8066887f8cec806688 /* src/mesh/GuBV32.cpp */; };
- FFFFec8066f07f8cec8066f0 /* src/mesh/GuBV32Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8066f07f8cec8066f0 /* src/mesh/GuBV32Build.cpp */; };
- FFFFec8067587f8cec806758 /* src/mesh/GuBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8067587f8cec806758 /* src/mesh/GuBV4.cpp */; };
- FFFFec8067c07f8cec8067c0 /* src/mesh/GuBV4Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8067c07f8cec8067c0 /* src/mesh/GuBV4Build.cpp */; };
- FFFFec8068287f8cec806828 /* src/mesh/GuBV4_AABBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8068287f8cec806828 /* src/mesh/GuBV4_AABBSweep.cpp */; };
- FFFFec8068907f8cec806890 /* src/mesh/GuBV4_BoxOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8068907f8cec806890 /* src/mesh/GuBV4_BoxOverlap.cpp */; };
- FFFFec8068f87f8cec8068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8068f87f8cec8068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */; };
- FFFFec8069607f8cec806960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8069607f8cec806960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */; };
- FFFFec8069c87f8cec8069c8 /* src/mesh/GuBV4_OBBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8069c87f8cec8069c8 /* src/mesh/GuBV4_OBBSweep.cpp */; };
- FFFFec806a307f8cec806a30 /* src/mesh/GuBV4_Raycast.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec806a307f8cec806a30 /* src/mesh/GuBV4_Raycast.cpp */; };
- FFFFec806a987f8cec806a98 /* src/mesh/GuBV4_SphereOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec806a987f8cec806a98 /* src/mesh/GuBV4_SphereOverlap.cpp */; };
- FFFFec806b007f8cec806b00 /* src/mesh/GuBV4_SphereSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec806b007f8cec806b00 /* src/mesh/GuBV4_SphereSweep.cpp */; };
- FFFFec806b687f8cec806b68 /* src/mesh/GuMeshQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec806b687f8cec806b68 /* src/mesh/GuMeshQuery.cpp */; };
- FFFFec806bd07f8cec806bd0 /* src/mesh/GuMidphaseBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec806bd07f8cec806bd0 /* src/mesh/GuMidphaseBV4.cpp */; };
- FFFFec806c387f8cec806c38 /* src/mesh/GuMidphaseRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec806c387f8cec806c38 /* src/mesh/GuMidphaseRTree.cpp */; };
- FFFFec806ca07f8cec806ca0 /* src/mesh/GuOverlapTestsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec806ca07f8cec806ca0 /* src/mesh/GuOverlapTestsMesh.cpp */; };
- FFFFec806d087f8cec806d08 /* src/mesh/GuRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec806d087f8cec806d08 /* src/mesh/GuRTree.cpp */; };
- FFFFec806d707f8cec806d70 /* src/mesh/GuRTreeQueries.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec806d707f8cec806d70 /* src/mesh/GuRTreeQueries.cpp */; };
- FFFFec806dd87f8cec806dd8 /* src/mesh/GuSweepsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec806dd87f8cec806dd8 /* src/mesh/GuSweepsMesh.cpp */; };
- FFFFec806e407f8cec806e40 /* src/mesh/GuTriangleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec806e407f8cec806e40 /* src/mesh/GuTriangleMesh.cpp */; };
- FFFFec806ea87f8cec806ea8 /* src/mesh/GuTriangleMeshBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec806ea87f8cec806ea8 /* src/mesh/GuTriangleMeshBV4.cpp */; };
- FFFFec806f107f8cec806f10 /* src/mesh/GuTriangleMeshRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec806f107f8cec806f10 /* src/mesh/GuTriangleMeshRTree.cpp */; };
- FFFFec806f787f8cec806f78 /* src/hf/GuHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec806f787f8cec806f78 /* src/hf/GuHeightField.cpp */; };
- FFFFec806fe07f8cec806fe0 /* src/hf/GuHeightFieldUtil.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec806fe07f8cec806fe0 /* src/hf/GuHeightFieldUtil.cpp */; };
- FFFFec8070487f8cec807048 /* src/hf/GuOverlapTestsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8070487f8cec807048 /* src/hf/GuOverlapTestsHF.cpp */; };
- FFFFec8070b07f8cec8070b0 /* src/hf/GuSweepsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8070b07f8cec8070b0 /* src/hf/GuSweepsHF.cpp */; };
- FFFFec8071187f8cec807118 /* src/pcm/GuPCMContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8071187f8cec807118 /* src/pcm/GuPCMContactBoxBox.cpp */; };
- FFFFec8071807f8cec807180 /* src/pcm/GuPCMContactBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8071807f8cec807180 /* src/pcm/GuPCMContactBoxConvex.cpp */; };
- FFFFec8071e87f8cec8071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8071e87f8cec8071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */; };
- FFFFec8072507f8cec807250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8072507f8cec807250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */; };
- FFFFec8072b87f8cec8072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8072b87f8cec8072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */; };
- FFFFec8073207f8cec807320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8073207f8cec807320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */; };
- FFFFec8073887f8cec807388 /* src/pcm/GuPCMContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8073887f8cec807388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */; };
- FFFFec8073f07f8cec8073f0 /* src/pcm/GuPCMContactConvexCommon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8073f07f8cec8073f0 /* src/pcm/GuPCMContactConvexCommon.cpp */; };
- FFFFec8074587f8cec807458 /* src/pcm/GuPCMContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8074587f8cec807458 /* src/pcm/GuPCMContactConvexConvex.cpp */; };
- FFFFec8074c07f8cec8074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8074c07f8cec8074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */; };
- FFFFec8075287f8cec807528 /* src/pcm/GuPCMContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8075287f8cec807528 /* src/pcm/GuPCMContactConvexMesh.cpp */; };
- FFFFec8075907f8cec807590 /* src/pcm/GuPCMContactGenBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8075907f8cec807590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */; };
- FFFFec8075f87f8cec8075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8075f87f8cec8075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */; };
- FFFFec8076607f8cec807660 /* src/pcm/GuPCMContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8076607f8cec807660 /* src/pcm/GuPCMContactPlaneBox.cpp */; };
- FFFFec8076c87f8cec8076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8076c87f8cec8076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */; };
- FFFFec8077307f8cec807730 /* src/pcm/GuPCMContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8077307f8cec807730 /* src/pcm/GuPCMContactPlaneConvex.cpp */; };
- FFFFec8077987f8cec807798 /* src/pcm/GuPCMContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8077987f8cec807798 /* src/pcm/GuPCMContactSphereBox.cpp */; };
- FFFFec8078007f8cec807800 /* src/pcm/GuPCMContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8078007f8cec807800 /* src/pcm/GuPCMContactSphereCapsule.cpp */; };
- FFFFec8078687f8cec807868 /* src/pcm/GuPCMContactSphereConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8078687f8cec807868 /* src/pcm/GuPCMContactSphereConvex.cpp */; };
- FFFFec8078d07f8cec8078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8078d07f8cec8078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */; };
- FFFFec8079387f8cec807938 /* src/pcm/GuPCMContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8079387f8cec807938 /* src/pcm/GuPCMContactSphereMesh.cpp */; };
- FFFFec8079a07f8cec8079a0 /* src/pcm/GuPCMContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec8079a07f8cec8079a0 /* src/pcm/GuPCMContactSpherePlane.cpp */; };
- FFFFec807a087f8cec807a08 /* src/pcm/GuPCMContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec807a087f8cec807a08 /* src/pcm/GuPCMContactSphereSphere.cpp */; };
- FFFFec807a707f8cec807a70 /* src/pcm/GuPCMShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec807a707f8cec807a70 /* src/pcm/GuPCMShapeConvex.cpp */; };
- FFFFec807ad87f8cec807ad8 /* src/pcm/GuPCMTriangleContactGen.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec807ad87f8cec807ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */; };
- FFFFec807b407f8cec807b40 /* src/pcm/GuPersistentContactManifold.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec807b407f8cec807b40 /* src/pcm/GuPersistentContactManifold.cpp */; };
- FFFFec807ba87f8cec807ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec807ba87f8cec807ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */; };
- FFFFec807c107f8cec807c10 /* src/ccd/GuCCDSweepPrimitives.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDec807c107f8cec807c10 /* src/ccd/GuCCDSweepPrimitives.cpp */; };
+ FFFFf11aa8007fd2f11aa800 /* src/CmBoxPruning.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDf11aa8007fd2f11aa800 /* src/CmBoxPruning.cpp */; };
+ FFFFf11aa8687fd2f11aa868 /* src/CmCollection.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDf11aa8687fd2f11aa868 /* src/CmCollection.cpp */; };
+ FFFFf11aa8d07fd2f11aa8d0 /* src/CmMathUtils.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDf11aa8d07fd2f11aa8d0 /* src/CmMathUtils.cpp */; };
+ FFFFf11aa9387fd2f11aa938 /* src/CmPtrTable.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDf11aa9387fd2f11aa938 /* src/CmPtrTable.cpp */; };
+ FFFFf11aa9a07fd2f11aa9a0 /* src/CmRadixSort.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDf11aa9a07fd2f11aa9a0 /* src/CmRadixSort.cpp */; };
+ FFFFf11aaa087fd2f11aaa08 /* src/CmRadixSortBuffered.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDf11aaa087fd2f11aaa08 /* src/CmRadixSortBuffered.cpp */; };
+ FFFFf11aaa707fd2f11aaa70 /* src/CmRenderOutput.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDf11aaa707fd2f11aaa70 /* src/CmRenderOutput.cpp */; };
+ FFFFf11aaad87fd2f11aaad8 /* src/CmVisualization.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDf11aaad87fd2f11aaad8 /* src/CmVisualization.cpp */; };
+ FFFFf20013a87fd2f20013a8 /* ../../Include/GeomUtils in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20013a87fd2f20013a8 /* ../../Include/GeomUtils */; };
+ FFFFf20048e07fd2f20048e0 /* src/GuBounds.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20048e07fd2f20048e0 /* src/GuBounds.cpp */; };
+ FFFFf20049487fd2f2004948 /* src/GuBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20049487fd2f2004948 /* src/GuBox.cpp */; };
+ FFFFf20049b07fd2f20049b0 /* src/GuCCTSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20049b07fd2f20049b0 /* src/GuCCTSweepTests.cpp */; };
+ FFFFf2004a187fd2f2004a18 /* src/GuCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf2004a187fd2f2004a18 /* src/GuCapsule.cpp */; };
+ FFFFf2004a807fd2f2004a80 /* src/GuGeometryQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf2004a807fd2f2004a80 /* src/GuGeometryQuery.cpp */; };
+ FFFFf2004ae87fd2f2004ae8 /* src/GuGeometryUnion.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf2004ae87fd2f2004ae8 /* src/GuGeometryUnion.cpp */; };
+ FFFFf2004b507fd2f2004b50 /* src/GuInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf2004b507fd2f2004b50 /* src/GuInternal.cpp */; };
+ FFFFf2004bb87fd2f2004bb8 /* src/GuMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf2004bb87fd2f2004bb8 /* src/GuMTD.cpp */; };
+ FFFFf2004c207fd2f2004c20 /* src/GuMeshFactory.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf2004c207fd2f2004c20 /* src/GuMeshFactory.cpp */; };
+ FFFFf2004c887fd2f2004c88 /* src/GuMetaData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf2004c887fd2f2004c88 /* src/GuMetaData.cpp */; };
+ FFFFf2004cf07fd2f2004cf0 /* src/GuOverlapTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf2004cf07fd2f2004cf0 /* src/GuOverlapTests.cpp */; };
+ FFFFf2004d587fd2f2004d58 /* src/GuRaycastTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf2004d587fd2f2004d58 /* src/GuRaycastTests.cpp */; };
+ FFFFf2004dc07fd2f2004dc0 /* src/GuSerialize.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf2004dc07fd2f2004dc0 /* src/GuSerialize.cpp */; };
+ FFFFf2004e287fd2f2004e28 /* src/GuSweepMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf2004e287fd2f2004e28 /* src/GuSweepMTD.cpp */; };
+ FFFFf2004e907fd2f2004e90 /* src/GuSweepSharedTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf2004e907fd2f2004e90 /* src/GuSweepSharedTests.cpp */; };
+ FFFFf2004ef87fd2f2004ef8 /* src/GuSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf2004ef87fd2f2004ef8 /* src/GuSweepTests.cpp */; };
+ FFFFf2004f607fd2f2004f60 /* src/contact/GuContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf2004f607fd2f2004f60 /* src/contact/GuContactBoxBox.cpp */; };
+ FFFFf2004fc87fd2f2004fc8 /* src/contact/GuContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf2004fc87fd2f2004fc8 /* src/contact/GuContactCapsuleBox.cpp */; };
+ FFFFf20050307fd2f2005030 /* src/contact/GuContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20050307fd2f2005030 /* src/contact/GuContactCapsuleCapsule.cpp */; };
+ FFFFf20050987fd2f2005098 /* src/contact/GuContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20050987fd2f2005098 /* src/contact/GuContactCapsuleConvex.cpp */; };
+ FFFFf20051007fd2f2005100 /* src/contact/GuContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20051007fd2f2005100 /* src/contact/GuContactCapsuleMesh.cpp */; };
+ FFFFf20051687fd2f2005168 /* src/contact/GuContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20051687fd2f2005168 /* src/contact/GuContactConvexConvex.cpp */; };
+ FFFFf20051d07fd2f20051d0 /* src/contact/GuContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20051d07fd2f20051d0 /* src/contact/GuContactConvexMesh.cpp */; };
+ FFFFf20052387fd2f2005238 /* src/contact/GuContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20052387fd2f2005238 /* src/contact/GuContactPlaneBox.cpp */; };
+ FFFFf20052a07fd2f20052a0 /* src/contact/GuContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20052a07fd2f20052a0 /* src/contact/GuContactPlaneCapsule.cpp */; };
+ FFFFf20053087fd2f2005308 /* src/contact/GuContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20053087fd2f2005308 /* src/contact/GuContactPlaneConvex.cpp */; };
+ FFFFf20053707fd2f2005370 /* src/contact/GuContactPolygonPolygon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20053707fd2f2005370 /* src/contact/GuContactPolygonPolygon.cpp */; };
+ FFFFf20053d87fd2f20053d8 /* src/contact/GuContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20053d87fd2f20053d8 /* src/contact/GuContactSphereBox.cpp */; };
+ FFFFf20054407fd2f2005440 /* src/contact/GuContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20054407fd2f2005440 /* src/contact/GuContactSphereCapsule.cpp */; };
+ FFFFf20054a87fd2f20054a8 /* src/contact/GuContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20054a87fd2f20054a8 /* src/contact/GuContactSphereMesh.cpp */; };
+ FFFFf20055107fd2f2005510 /* src/contact/GuContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20055107fd2f2005510 /* src/contact/GuContactSpherePlane.cpp */; };
+ FFFFf20055787fd2f2005578 /* src/contact/GuContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20055787fd2f2005578 /* src/contact/GuContactSphereSphere.cpp */; };
+ FFFFf20055e07fd2f20055e0 /* src/contact/GuFeatureCode.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20055e07fd2f20055e0 /* src/contact/GuFeatureCode.cpp */; };
+ FFFFf20056487fd2f2005648 /* src/contact/GuLegacyContactBoxHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20056487fd2f2005648 /* src/contact/GuLegacyContactBoxHeightField.cpp */; };
+ FFFFf20056b07fd2f20056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20056b07fd2f20056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */; };
+ FFFFf20057187fd2f2005718 /* src/contact/GuLegacyContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20057187fd2f2005718 /* src/contact/GuLegacyContactConvexHeightField.cpp */; };
+ FFFFf20057807fd2f2005780 /* src/contact/GuLegacyContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20057807fd2f2005780 /* src/contact/GuLegacyContactSphereHeightField.cpp */; };
+ FFFFf20057e87fd2f20057e8 /* src/common/GuBarycentricCoordinates.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20057e87fd2f20057e8 /* src/common/GuBarycentricCoordinates.cpp */; };
+ FFFFf20058507fd2f2005850 /* src/common/GuSeparatingAxes.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20058507fd2f2005850 /* src/common/GuSeparatingAxes.cpp */; };
+ FFFFf20058b87fd2f20058b8 /* src/convex/GuBigConvexData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20058b87fd2f20058b8 /* src/convex/GuBigConvexData.cpp */; };
+ FFFFf20059207fd2f2005920 /* src/convex/GuConvexHelper.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20059207fd2f2005920 /* src/convex/GuConvexHelper.cpp */; };
+ FFFFf20059887fd2f2005988 /* src/convex/GuConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20059887fd2f2005988 /* src/convex/GuConvexMesh.cpp */; };
+ FFFFf20059f07fd2f20059f0 /* src/convex/GuConvexSupportTable.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20059f07fd2f20059f0 /* src/convex/GuConvexSupportTable.cpp */; };
+ FFFFf2005a587fd2f2005a58 /* src/convex/GuConvexUtilsInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf2005a587fd2f2005a58 /* src/convex/GuConvexUtilsInternal.cpp */; };
+ FFFFf2005ac07fd2f2005ac0 /* src/convex/GuHillClimbing.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf2005ac07fd2f2005ac0 /* src/convex/GuHillClimbing.cpp */; };
+ FFFFf2005b287fd2f2005b28 /* src/convex/GuShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf2005b287fd2f2005b28 /* src/convex/GuShapeConvex.cpp */; };
+ FFFFf2005b907fd2f2005b90 /* src/distance/GuDistancePointBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf2005b907fd2f2005b90 /* src/distance/GuDistancePointBox.cpp */; };
+ FFFFf2005bf87fd2f2005bf8 /* src/distance/GuDistancePointTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf2005bf87fd2f2005bf8 /* src/distance/GuDistancePointTriangle.cpp */; };
+ FFFFf2005c607fd2f2005c60 /* src/distance/GuDistanceSegmentBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf2005c607fd2f2005c60 /* src/distance/GuDistanceSegmentBox.cpp */; };
+ FFFFf2005cc87fd2f2005cc8 /* src/distance/GuDistanceSegmentSegment.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf2005cc87fd2f2005cc8 /* src/distance/GuDistanceSegmentSegment.cpp */; };
+ FFFFf2005d307fd2f2005d30 /* src/distance/GuDistanceSegmentTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf2005d307fd2f2005d30 /* src/distance/GuDistanceSegmentTriangle.cpp */; };
+ FFFFf2005d987fd2f2005d98 /* src/sweep/GuSweepBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf2005d987fd2f2005d98 /* src/sweep/GuSweepBoxBox.cpp */; };
+ FFFFf2005e007fd2f2005e00 /* src/sweep/GuSweepBoxSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf2005e007fd2f2005e00 /* src/sweep/GuSweepBoxSphere.cpp */; };
+ FFFFf2005e687fd2f2005e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf2005e687fd2f2005e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */; };
+ FFFFf2005ed07fd2f2005ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf2005ed07fd2f2005ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */; };
+ FFFFf2005f387fd2f2005f38 /* src/sweep/GuSweepCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf2005f387fd2f2005f38 /* src/sweep/GuSweepCapsuleBox.cpp */; };
+ FFFFf2005fa07fd2f2005fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf2005fa07fd2f2005fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */; };
+ FFFFf20060087fd2f2006008 /* src/sweep/GuSweepCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20060087fd2f2006008 /* src/sweep/GuSweepCapsuleTriangle.cpp */; };
+ FFFFf20060707fd2f2006070 /* src/sweep/GuSweepSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20060707fd2f2006070 /* src/sweep/GuSweepSphereCapsule.cpp */; };
+ FFFFf20060d87fd2f20060d8 /* src/sweep/GuSweepSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20060d87fd2f20060d8 /* src/sweep/GuSweepSphereSphere.cpp */; };
+ FFFFf20061407fd2f2006140 /* src/sweep/GuSweepSphereTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20061407fd2f2006140 /* src/sweep/GuSweepSphereTriangle.cpp */; };
+ FFFFf20061a87fd2f20061a8 /* src/sweep/GuSweepTriangleUtils.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20061a87fd2f20061a8 /* src/sweep/GuSweepTriangleUtils.cpp */; };
+ FFFFf20062107fd2f2006210 /* src/gjk/GuEPA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20062107fd2f2006210 /* src/gjk/GuEPA.cpp */; };
+ FFFFf20062787fd2f2006278 /* src/gjk/GuGJKSimplex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20062787fd2f2006278 /* src/gjk/GuGJKSimplex.cpp */; };
+ FFFFf20062e07fd2f20062e0 /* src/gjk/GuGJKTest.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20062e07fd2f20062e0 /* src/gjk/GuGJKTest.cpp */; };
+ FFFFf20063487fd2f2006348 /* src/intersection/GuIntersectionBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20063487fd2f2006348 /* src/intersection/GuIntersectionBoxBox.cpp */; };
+ FFFFf20063b07fd2f20063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20063b07fd2f20063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */; };
+ FFFFf20064187fd2f2006418 /* src/intersection/GuIntersectionEdgeEdge.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20064187fd2f2006418 /* src/intersection/GuIntersectionEdgeEdge.cpp */; };
+ FFFFf20064807fd2f2006480 /* src/intersection/GuIntersectionRayBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20064807fd2f2006480 /* src/intersection/GuIntersectionRayBox.cpp */; };
+ FFFFf20064e87fd2f20064e8 /* src/intersection/GuIntersectionRayCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20064e87fd2f20064e8 /* src/intersection/GuIntersectionRayCapsule.cpp */; };
+ FFFFf20065507fd2f2006550 /* src/intersection/GuIntersectionRaySphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20065507fd2f2006550 /* src/intersection/GuIntersectionRaySphere.cpp */; };
+ FFFFf20065b87fd2f20065b8 /* src/intersection/GuIntersectionSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20065b87fd2f20065b8 /* src/intersection/GuIntersectionSphereBox.cpp */; };
+ FFFFf20066207fd2f2006620 /* src/intersection/GuIntersectionTriangleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20066207fd2f2006620 /* src/intersection/GuIntersectionTriangleBox.cpp */; };
+ FFFFf20066887fd2f2006688 /* src/mesh/GuBV32.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20066887fd2f2006688 /* src/mesh/GuBV32.cpp */; };
+ FFFFf20066f07fd2f20066f0 /* src/mesh/GuBV32Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20066f07fd2f20066f0 /* src/mesh/GuBV32Build.cpp */; };
+ FFFFf20067587fd2f2006758 /* src/mesh/GuBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20067587fd2f2006758 /* src/mesh/GuBV4.cpp */; };
+ FFFFf20067c07fd2f20067c0 /* src/mesh/GuBV4Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20067c07fd2f20067c0 /* src/mesh/GuBV4Build.cpp */; };
+ FFFFf20068287fd2f2006828 /* src/mesh/GuBV4_AABBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20068287fd2f2006828 /* src/mesh/GuBV4_AABBSweep.cpp */; };
+ FFFFf20068907fd2f2006890 /* src/mesh/GuBV4_BoxOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20068907fd2f2006890 /* src/mesh/GuBV4_BoxOverlap.cpp */; };
+ FFFFf20068f87fd2f20068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20068f87fd2f20068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */; };
+ FFFFf20069607fd2f2006960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20069607fd2f2006960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */; };
+ FFFFf20069c87fd2f20069c8 /* src/mesh/GuBV4_OBBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20069c87fd2f20069c8 /* src/mesh/GuBV4_OBBSweep.cpp */; };
+ FFFFf2006a307fd2f2006a30 /* src/mesh/GuBV4_Raycast.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf2006a307fd2f2006a30 /* src/mesh/GuBV4_Raycast.cpp */; };
+ FFFFf2006a987fd2f2006a98 /* src/mesh/GuBV4_SphereOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf2006a987fd2f2006a98 /* src/mesh/GuBV4_SphereOverlap.cpp */; };
+ FFFFf2006b007fd2f2006b00 /* src/mesh/GuBV4_SphereSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf2006b007fd2f2006b00 /* src/mesh/GuBV4_SphereSweep.cpp */; };
+ FFFFf2006b687fd2f2006b68 /* src/mesh/GuMeshQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf2006b687fd2f2006b68 /* src/mesh/GuMeshQuery.cpp */; };
+ FFFFf2006bd07fd2f2006bd0 /* src/mesh/GuMidphaseBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf2006bd07fd2f2006bd0 /* src/mesh/GuMidphaseBV4.cpp */; };
+ FFFFf2006c387fd2f2006c38 /* src/mesh/GuMidphaseRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf2006c387fd2f2006c38 /* src/mesh/GuMidphaseRTree.cpp */; };
+ FFFFf2006ca07fd2f2006ca0 /* src/mesh/GuOverlapTestsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf2006ca07fd2f2006ca0 /* src/mesh/GuOverlapTestsMesh.cpp */; };
+ FFFFf2006d087fd2f2006d08 /* src/mesh/GuRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf2006d087fd2f2006d08 /* src/mesh/GuRTree.cpp */; };
+ FFFFf2006d707fd2f2006d70 /* src/mesh/GuRTreeQueries.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf2006d707fd2f2006d70 /* src/mesh/GuRTreeQueries.cpp */; };
+ FFFFf2006dd87fd2f2006dd8 /* src/mesh/GuSweepsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf2006dd87fd2f2006dd8 /* src/mesh/GuSweepsMesh.cpp */; };
+ FFFFf2006e407fd2f2006e40 /* src/mesh/GuTriangleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf2006e407fd2f2006e40 /* src/mesh/GuTriangleMesh.cpp */; };
+ FFFFf2006ea87fd2f2006ea8 /* src/mesh/GuTriangleMeshBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf2006ea87fd2f2006ea8 /* src/mesh/GuTriangleMeshBV4.cpp */; };
+ FFFFf2006f107fd2f2006f10 /* src/mesh/GuTriangleMeshRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf2006f107fd2f2006f10 /* src/mesh/GuTriangleMeshRTree.cpp */; };
+ FFFFf2006f787fd2f2006f78 /* src/hf/GuHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf2006f787fd2f2006f78 /* src/hf/GuHeightField.cpp */; };
+ FFFFf2006fe07fd2f2006fe0 /* src/hf/GuHeightFieldUtil.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf2006fe07fd2f2006fe0 /* src/hf/GuHeightFieldUtil.cpp */; };
+ FFFFf20070487fd2f2007048 /* src/hf/GuOverlapTestsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20070487fd2f2007048 /* src/hf/GuOverlapTestsHF.cpp */; };
+ FFFFf20070b07fd2f20070b0 /* src/hf/GuSweepsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20070b07fd2f20070b0 /* src/hf/GuSweepsHF.cpp */; };
+ FFFFf20071187fd2f2007118 /* src/pcm/GuPCMContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20071187fd2f2007118 /* src/pcm/GuPCMContactBoxBox.cpp */; };
+ FFFFf20071807fd2f2007180 /* src/pcm/GuPCMContactBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20071807fd2f2007180 /* src/pcm/GuPCMContactBoxConvex.cpp */; };
+ FFFFf20071e87fd2f20071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20071e87fd2f20071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */; };
+ FFFFf20072507fd2f2007250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20072507fd2f2007250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */; };
+ FFFFf20072b87fd2f20072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20072b87fd2f20072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */; };
+ FFFFf20073207fd2f2007320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20073207fd2f2007320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */; };
+ FFFFf20073887fd2f2007388 /* src/pcm/GuPCMContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20073887fd2f2007388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */; };
+ FFFFf20073f07fd2f20073f0 /* src/pcm/GuPCMContactConvexCommon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20073f07fd2f20073f0 /* src/pcm/GuPCMContactConvexCommon.cpp */; };
+ FFFFf20074587fd2f2007458 /* src/pcm/GuPCMContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20074587fd2f2007458 /* src/pcm/GuPCMContactConvexConvex.cpp */; };
+ FFFFf20074c07fd2f20074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20074c07fd2f20074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */; };
+ FFFFf20075287fd2f2007528 /* src/pcm/GuPCMContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20075287fd2f2007528 /* src/pcm/GuPCMContactConvexMesh.cpp */; };
+ FFFFf20075907fd2f2007590 /* src/pcm/GuPCMContactGenBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20075907fd2f2007590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */; };
+ FFFFf20075f87fd2f20075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20075f87fd2f20075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */; };
+ FFFFf20076607fd2f2007660 /* src/pcm/GuPCMContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20076607fd2f2007660 /* src/pcm/GuPCMContactPlaneBox.cpp */; };
+ FFFFf20076c87fd2f20076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20076c87fd2f20076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */; };
+ FFFFf20077307fd2f2007730 /* src/pcm/GuPCMContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20077307fd2f2007730 /* src/pcm/GuPCMContactPlaneConvex.cpp */; };
+ FFFFf20077987fd2f2007798 /* src/pcm/GuPCMContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20077987fd2f2007798 /* src/pcm/GuPCMContactSphereBox.cpp */; };
+ FFFFf20078007fd2f2007800 /* src/pcm/GuPCMContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20078007fd2f2007800 /* src/pcm/GuPCMContactSphereCapsule.cpp */; };
+ FFFFf20078687fd2f2007868 /* src/pcm/GuPCMContactSphereConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20078687fd2f2007868 /* src/pcm/GuPCMContactSphereConvex.cpp */; };
+ FFFFf20078d07fd2f20078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20078d07fd2f20078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */; };
+ FFFFf20079387fd2f2007938 /* src/pcm/GuPCMContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20079387fd2f2007938 /* src/pcm/GuPCMContactSphereMesh.cpp */; };
+ FFFFf20079a07fd2f20079a0 /* src/pcm/GuPCMContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf20079a07fd2f20079a0 /* src/pcm/GuPCMContactSpherePlane.cpp */; };
+ FFFFf2007a087fd2f2007a08 /* src/pcm/GuPCMContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf2007a087fd2f2007a08 /* src/pcm/GuPCMContactSphereSphere.cpp */; };
+ FFFFf2007a707fd2f2007a70 /* src/pcm/GuPCMShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf2007a707fd2f2007a70 /* src/pcm/GuPCMShapeConvex.cpp */; };
+ FFFFf2007ad87fd2f2007ad8 /* src/pcm/GuPCMTriangleContactGen.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf2007ad87fd2f2007ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */; };
+ FFFFf2007b407fd2f2007b40 /* src/pcm/GuPersistentContactManifold.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf2007b407fd2f2007b40 /* src/pcm/GuPersistentContactManifold.cpp */; };
+ FFFFf2007ba87fd2f2007ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf2007ba87fd2f2007ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */; };
+ FFFFf2007c107fd2f2007c10 /* src/ccd/GuCCDSweepPrimitives.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf2007c107fd2f2007c10 /* src/ccd/GuCCDSweepPrimitives.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFDec1a0dc07f8cec1a0dc0 /* PhysXCommon */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCommon"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFDec80ec007f8cec80ec00 /* common/PxBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxBase.h"; path = "../../../Include/common/PxBase.h"; sourceTree = SOURCE_ROOT; };
- FFFDec80ec687f8cec80ec68 /* common/PxCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCollection.h"; path = "../../../Include/common/PxCollection.h"; sourceTree = SOURCE_ROOT; };
- FFFDec80ecd07f8cec80ecd0 /* common/PxCoreUtilityTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCoreUtilityTypes.h"; path = "../../../Include/common/PxCoreUtilityTypes.h"; sourceTree = SOURCE_ROOT; };
- FFFDec80ed387f8cec80ed38 /* common/PxMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaData.h"; path = "../../../Include/common/PxMetaData.h"; sourceTree = SOURCE_ROOT; };
- FFFDec80eda07f8cec80eda0 /* common/PxMetaDataFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaDataFlags.h"; path = "../../../Include/common/PxMetaDataFlags.h"; sourceTree = SOURCE_ROOT; };
- FFFDec80ee087f8cec80ee08 /* common/PxPhysXCommonConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysXCommonConfig.h"; path = "../../../Include/common/PxPhysXCommonConfig.h"; sourceTree = SOURCE_ROOT; };
- FFFDec80ee707f8cec80ee70 /* common/PxPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysicsInsertionCallback.h"; path = "../../../Include/common/PxPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; };
- FFFDec80eed87f8cec80eed8 /* common/PxRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxRenderBuffer.h"; path = "../../../Include/common/PxRenderBuffer.h"; sourceTree = SOURCE_ROOT; };
- FFFDec80ef407f8cec80ef40 /* common/PxSerialFramework.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerialFramework.h"; path = "../../../Include/common/PxSerialFramework.h"; sourceTree = SOURCE_ROOT; };
- FFFDec80efa87f8cec80efa8 /* common/PxSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerializer.h"; path = "../../../Include/common/PxSerializer.h"; sourceTree = SOURCE_ROOT; };
- FFFDec80f0107f8cec80f010 /* common/PxStringTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxStringTable.h"; path = "../../../Include/common/PxStringTable.h"; sourceTree = SOURCE_ROOT; };
- FFFDec80f0787f8cec80f078 /* common/PxTolerancesScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTolerancesScale.h"; path = "../../../Include/common/PxTolerancesScale.h"; sourceTree = SOURCE_ROOT; };
- FFFDec80f0e07f8cec80f0e0 /* common/PxTypeInfo.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTypeInfo.h"; path = "../../../Include/common/PxTypeInfo.h"; sourceTree = SOURCE_ROOT; };
- FFFDec80f1487f8cec80f148 /* geometry/PxBoxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxBoxGeometry.h"; path = "../../../Include/geometry/PxBoxGeometry.h"; sourceTree = SOURCE_ROOT; };
- FFFDec80f1b07f8cec80f1b0 /* geometry/PxCapsuleGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxCapsuleGeometry.h"; path = "../../../Include/geometry/PxCapsuleGeometry.h"; sourceTree = SOURCE_ROOT; };
- FFFDec80f2187f8cec80f218 /* geometry/PxConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMesh.h"; path = "../../../Include/geometry/PxConvexMesh.h"; sourceTree = SOURCE_ROOT; };
- FFFDec80f2807f8cec80f280 /* geometry/PxConvexMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMeshGeometry.h"; path = "../../../Include/geometry/PxConvexMeshGeometry.h"; sourceTree = SOURCE_ROOT; };
- FFFDec80f2e87f8cec80f2e8 /* geometry/PxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometry.h"; path = "../../../Include/geometry/PxGeometry.h"; sourceTree = SOURCE_ROOT; };
- FFFDec80f3507f8cec80f350 /* geometry/PxGeometryHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryHelpers.h"; path = "../../../Include/geometry/PxGeometryHelpers.h"; sourceTree = SOURCE_ROOT; };
- FFFDec80f3b87f8cec80f3b8 /* geometry/PxGeometryQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryQuery.h"; path = "../../../Include/geometry/PxGeometryQuery.h"; sourceTree = SOURCE_ROOT; };
- FFFDec80f4207f8cec80f420 /* geometry/PxHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightField.h"; path = "../../../Include/geometry/PxHeightField.h"; sourceTree = SOURCE_ROOT; };
- FFFDec80f4887f8cec80f488 /* geometry/PxHeightFieldDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldDesc.h"; path = "../../../Include/geometry/PxHeightFieldDesc.h"; sourceTree = SOURCE_ROOT; };
- FFFDec80f4f07f8cec80f4f0 /* geometry/PxHeightFieldFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldFlag.h"; path = "../../../Include/geometry/PxHeightFieldFlag.h"; sourceTree = SOURCE_ROOT; };
- FFFDec80f5587f8cec80f558 /* geometry/PxHeightFieldGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldGeometry.h"; path = "../../../Include/geometry/PxHeightFieldGeometry.h"; sourceTree = SOURCE_ROOT; };
- FFFDec80f5c07f8cec80f5c0 /* geometry/PxHeightFieldSample.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldSample.h"; path = "../../../Include/geometry/PxHeightFieldSample.h"; sourceTree = SOURCE_ROOT; };
- FFFDec80f6287f8cec80f628 /* geometry/PxMeshQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshQuery.h"; path = "../../../Include/geometry/PxMeshQuery.h"; sourceTree = SOURCE_ROOT; };
- FFFDec80f6907f8cec80f690 /* geometry/PxMeshScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshScale.h"; path = "../../../Include/geometry/PxMeshScale.h"; sourceTree = SOURCE_ROOT; };
- FFFDec80f6f87f8cec80f6f8 /* geometry/PxPlaneGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxPlaneGeometry.h"; path = "../../../Include/geometry/PxPlaneGeometry.h"; sourceTree = SOURCE_ROOT; };
- FFFDec80f7607f8cec80f760 /* geometry/PxSimpleTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSimpleTriangleMesh.h"; path = "../../../Include/geometry/PxSimpleTriangleMesh.h"; sourceTree = SOURCE_ROOT; };
- FFFDec80f7c87f8cec80f7c8 /* geometry/PxSphereGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSphereGeometry.h"; path = "../../../Include/geometry/PxSphereGeometry.h"; sourceTree = SOURCE_ROOT; };
- FFFDec80f8307f8cec80f830 /* geometry/PxTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangle.h"; path = "../../../Include/geometry/PxTriangle.h"; sourceTree = SOURCE_ROOT; };
- FFFDec80f8987f8cec80f898 /* geometry/PxTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMesh.h"; path = "../../../Include/geometry/PxTriangleMesh.h"; sourceTree = SOURCE_ROOT; };
- FFFDec80f9007f8cec80f900 /* geometry/PxTriangleMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMeshGeometry.h"; path = "../../../Include/geometry/PxTriangleMeshGeometry.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9aa8007f8ceb9aa800 /* src/CmBoxPruning.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.cpp"; path = "../../Common/src/CmBoxPruning.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDeb9aa8687f8ceb9aa868 /* src/CmCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.cpp"; path = "../../Common/src/CmCollection.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDeb9aa8d07f8ceb9aa8d0 /* src/CmMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMathUtils.cpp"; path = "../../Common/src/CmMathUtils.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDeb9aa9387f8ceb9aa938 /* src/CmPtrTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.cpp"; path = "../../Common/src/CmPtrTable.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDeb9aa9a07f8ceb9aa9a0 /* src/CmRadixSort.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.cpp"; path = "../../Common/src/CmRadixSort.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDeb9aaa087f8ceb9aaa08 /* src/CmRadixSortBuffered.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.cpp"; path = "../../Common/src/CmRadixSortBuffered.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDeb9aaa707f8ceb9aaa70 /* src/CmRenderOutput.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.cpp"; path = "../../Common/src/CmRenderOutput.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDeb9aaad87f8ceb9aaad8 /* src/CmVisualization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.cpp"; path = "../../Common/src/CmVisualization.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDeb9aab407f8ceb9aab40 /* src/CmBitMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBitMap.h"; path = "../../Common/src/CmBitMap.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9aaba87f8ceb9aaba8 /* src/CmBoxPruning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.h"; path = "../../Common/src/CmBoxPruning.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9aac107f8ceb9aac10 /* src/CmCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.h"; path = "../../Common/src/CmCollection.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9aac787f8ceb9aac78 /* src/CmConeLimitHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmConeLimitHelper.h"; path = "../../Common/src/CmConeLimitHelper.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9aace07f8ceb9aace0 /* src/CmFlushPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmFlushPool.h"; path = "../../Common/src/CmFlushPool.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9aad487f8ceb9aad48 /* src/CmIDPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIDPool.h"; path = "../../Common/src/CmIDPool.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9aadb07f8ceb9aadb0 /* src/CmIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIO.h"; path = "../../Common/src/CmIO.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9aae187f8ceb9aae18 /* src/CmMatrix34.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMatrix34.h"; path = "../../Common/src/CmMatrix34.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9aae807f8ceb9aae80 /* src/CmPhysXCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPhysXCommon.h"; path = "../../Common/src/CmPhysXCommon.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9aaee87f8ceb9aaee8 /* src/CmPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPool.h"; path = "../../Common/src/CmPool.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9aaf507f8ceb9aaf50 /* src/CmPreallocatingPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPreallocatingPool.h"; path = "../../Common/src/CmPreallocatingPool.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9aafb87f8ceb9aafb8 /* src/CmPriorityQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPriorityQueue.h"; path = "../../Common/src/CmPriorityQueue.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9ab0207f8ceb9ab020 /* src/CmPtrTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.h"; path = "../../Common/src/CmPtrTable.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9ab0887f8ceb9ab088 /* src/CmQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmQueue.h"; path = "../../Common/src/CmQueue.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9ab0f07f8ceb9ab0f0 /* src/CmRadixSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.h"; path = "../../Common/src/CmRadixSort.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9ab1587f8ceb9ab158 /* src/CmRadixSortBuffered.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.h"; path = "../../Common/src/CmRadixSortBuffered.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9ab1c07f8ceb9ab1c0 /* src/CmRefCountable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRefCountable.h"; path = "../../Common/src/CmRefCountable.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9ab2287f8ceb9ab228 /* src/CmRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderBuffer.h"; path = "../../Common/src/CmRenderBuffer.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9ab2907f8ceb9ab290 /* src/CmRenderOutput.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.h"; path = "../../Common/src/CmRenderOutput.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9ab2f87f8ceb9ab2f8 /* src/CmScaling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmScaling.h"; path = "../../Common/src/CmScaling.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9ab3607f8ceb9ab360 /* src/CmSpatialVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmSpatialVector.h"; path = "../../Common/src/CmSpatialVector.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9ab3c87f8ceb9ab3c8 /* src/CmTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTask.h"; path = "../../Common/src/CmTask.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9ab4307f8ceb9ab430 /* src/CmTaskPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTaskPool.h"; path = "../../Common/src/CmTaskPool.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9ab4987f8ceb9ab498 /* src/CmTmpMem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTmpMem.h"; path = "../../Common/src/CmTmpMem.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9ab5007f8ceb9ab500 /* src/CmTransformUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTransformUtils.h"; path = "../../Common/src/CmTransformUtils.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9ab5687f8ceb9ab568 /* src/CmUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmUtils.h"; path = "../../Common/src/CmUtils.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9ab5d07f8ceb9ab5d0 /* src/CmVisualization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.h"; path = "../../Common/src/CmVisualization.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8010007f8cec801000 /* headers/GuAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuAxes.h"; path = "../../GeomUtils/headers/GuAxes.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8010687f8cec801068 /* headers/GuBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuBox.h"; path = "../../GeomUtils/headers/GuBox.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8010d07f8cec8010d0 /* headers/GuDistanceSegmentBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentBox.h"; path = "../../GeomUtils/headers/GuDistanceSegmentBox.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8011387f8cec801138 /* headers/GuDistanceSegmentSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentSegment.h"; path = "../../GeomUtils/headers/GuDistanceSegmentSegment.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8011a07f8cec8011a0 /* headers/GuIntersectionBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionBoxBox.h"; path = "../../GeomUtils/headers/GuIntersectionBoxBox.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8012087f8cec801208 /* headers/GuIntersectionTriangleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionTriangleBox.h"; path = "../../GeomUtils/headers/GuIntersectionTriangleBox.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8012707f8cec801270 /* headers/GuRaycastTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuRaycastTests.h"; path = "../../GeomUtils/headers/GuRaycastTests.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8012d87f8cec8012d8 /* headers/GuSIMDHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSIMDHelpers.h"; path = "../../GeomUtils/headers/GuSIMDHelpers.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8013407f8cec801340 /* headers/GuSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSegment.h"; path = "../../GeomUtils/headers/GuSegment.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8013a87f8cec8013a8 /* ../../Include/GeomUtils */= { isa = PBXFileReference; fileEncoding = 4; name = "../../Include/GeomUtils"; path = "../../../Include/GeomUtils"; sourceTree = SOURCE_ROOT; };
- FFFDec8014107f8cec801410 /* src/GuBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.h"; path = "../../GeomUtils/src/GuBounds.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8014787f8cec801478 /* src/GuCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.h"; path = "../../GeomUtils/src/GuCapsule.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8014e07f8cec8014e0 /* src/GuCenterExtents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCenterExtents.h"; path = "../../GeomUtils/src/GuCenterExtents.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8015487f8cec801548 /* src/GuGeometryUnion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.h"; path = "../../GeomUtils/src/GuGeometryUnion.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8015b07f8cec8015b0 /* src/GuInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.h"; path = "../../GeomUtils/src/GuInternal.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8016187f8cec801618 /* src/GuMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.h"; path = "../../GeomUtils/src/GuMTD.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8016807f8cec801680 /* src/GuMeshFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.h"; path = "../../GeomUtils/src/GuMeshFactory.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8016e87f8cec8016e8 /* src/GuOverlapTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.h"; path = "../../GeomUtils/src/GuOverlapTests.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8017507f8cec801750 /* src/GuSerialize.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.h"; path = "../../GeomUtils/src/GuSerialize.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8017b87f8cec8017b8 /* src/GuSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSphere.h"; path = "../../GeomUtils/src/GuSphere.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8018207f8cec801820 /* src/GuSweepMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.h"; path = "../../GeomUtils/src/GuSweepMTD.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8018887f8cec801888 /* src/GuSweepSharedTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.h"; path = "../../GeomUtils/src/GuSweepSharedTests.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8018f07f8cec8018f0 /* src/GuSweepTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.h"; path = "../../GeomUtils/src/GuSweepTests.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8019587f8cec801958 /* src/contact/GuContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactMethodImpl.h"; path = "../../GeomUtils/src/contact/GuContactMethodImpl.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8019c07f8cec8019c0 /* src/contact/GuContactPolygonPolygon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.h"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.h"; sourceTree = SOURCE_ROOT; };
- FFFDec801a287f8cec801a28 /* src/contact/GuFeatureCode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.h"; path = "../../GeomUtils/src/contact/GuFeatureCode.h"; sourceTree = SOURCE_ROOT; };
- FFFDec801a907f8cec801a90 /* src/contact/GuLegacyTraceLineCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyTraceLineCallback.h"; path = "../../GeomUtils/src/contact/GuLegacyTraceLineCallback.h"; sourceTree = SOURCE_ROOT; };
- FFFDec801af87f8cec801af8 /* src/common/GuBarycentricCoordinates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.h"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.h"; sourceTree = SOURCE_ROOT; };
- FFFDec801b607f8cec801b60 /* src/common/GuBoxConversion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBoxConversion.h"; path = "../../GeomUtils/src/common/GuBoxConversion.h"; sourceTree = SOURCE_ROOT; };
- FFFDec801bc87f8cec801bc8 /* src/common/GuEdgeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeCache.h"; path = "../../GeomUtils/src/common/GuEdgeCache.h"; sourceTree = SOURCE_ROOT; };
- FFFDec801c307f8cec801c30 /* src/common/GuEdgeListData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeListData.h"; path = "../../GeomUtils/src/common/GuEdgeListData.h"; sourceTree = SOURCE_ROOT; };
- FFFDec801c987f8cec801c98 /* src/common/GuSeparatingAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.h"; path = "../../GeomUtils/src/common/GuSeparatingAxes.h"; sourceTree = SOURCE_ROOT; };
- FFFDec801d007f8cec801d00 /* src/convex/GuBigConvexData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.h"; path = "../../GeomUtils/src/convex/GuBigConvexData.h"; sourceTree = SOURCE_ROOT; };
- FFFDec801d687f8cec801d68 /* src/convex/GuBigConvexData2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData2.h"; path = "../../GeomUtils/src/convex/GuBigConvexData2.h"; sourceTree = SOURCE_ROOT; };
- FFFDec801dd07f8cec801dd0 /* src/convex/GuConvexEdgeFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexEdgeFlags.h"; path = "../../GeomUtils/src/convex/GuConvexEdgeFlags.h"; sourceTree = SOURCE_ROOT; };
- FFFDec801e387f8cec801e38 /* src/convex/GuConvexHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.h"; path = "../../GeomUtils/src/convex/GuConvexHelper.h"; sourceTree = SOURCE_ROOT; };
- FFFDec801ea07f8cec801ea0 /* src/convex/GuConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.h"; path = "../../GeomUtils/src/convex/GuConvexMesh.h"; sourceTree = SOURCE_ROOT; };
- FFFDec801f087f8cec801f08 /* src/convex/GuConvexMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMeshData.h"; path = "../../GeomUtils/src/convex/GuConvexMeshData.h"; sourceTree = SOURCE_ROOT; };
- FFFDec801f707f8cec801f70 /* src/convex/GuConvexSupportTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.h"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.h"; sourceTree = SOURCE_ROOT; };
- FFFDec801fd87f8cec801fd8 /* src/convex/GuConvexUtilsInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.h"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8020407f8cec802040 /* src/convex/GuCubeIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuCubeIndex.h"; path = "../../GeomUtils/src/convex/GuCubeIndex.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8020a87f8cec8020a8 /* src/convex/GuHillClimbing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.h"; path = "../../GeomUtils/src/convex/GuHillClimbing.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8021107f8cec802110 /* src/convex/GuShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.h"; path = "../../GeomUtils/src/convex/GuShapeConvex.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8021787f8cec802178 /* src/distance/GuDistancePointBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.h"; path = "../../GeomUtils/src/distance/GuDistancePointBox.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8021e07f8cec8021e0 /* src/distance/GuDistancePointSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointSegment.h"; path = "../../GeomUtils/src/distance/GuDistancePointSegment.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8022487f8cec802248 /* src/distance/GuDistancePointTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8022b07f8cec8022b0 /* src/distance/GuDistancePointTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangleSIMD.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8023187f8cec802318 /* src/distance/GuDistanceSegmentSegmentSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegmentSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegmentSIMD.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8023807f8cec802380 /* src/distance/GuDistanceSegmentTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8023e87f8cec8023e8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangleSIMD.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8024507f8cec802450 /* src/sweep/GuSweepBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8024b87f8cec8024b8 /* src/sweep/GuSweepBoxSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8025207f8cec802520 /* 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; };
- FFFDec8025887f8cec802588 /* 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; };
- FFFDec8025f07f8cec8025f0 /* src/sweep/GuSweepCapsuleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8026587f8cec802658 /* src/sweep/GuSweepCapsuleCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8026c07f8cec8026c0 /* src/sweep/GuSweepCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8027287f8cec802728 /* src/sweep/GuSweepSphereCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8027907f8cec802790 /* src/sweep/GuSweepSphereSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8027f87f8cec8027f8 /* src/sweep/GuSweepSphereTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8028607f8cec802860 /* src/sweep/GuSweepTriangleUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.h"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8028c87f8cec8028c8 /* src/gjk/GuEPA.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.h"; path = "../../GeomUtils/src/gjk/GuEPA.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8029307f8cec802930 /* src/gjk/GuEPAFacet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPAFacet.h"; path = "../../GeomUtils/src/gjk/GuEPAFacet.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8029987f8cec802998 /* src/gjk/GuGJK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJK.h"; path = "../../GeomUtils/src/gjk/GuGJK.h"; sourceTree = SOURCE_ROOT; };
- FFFDec802a007f8cec802a00 /* src/gjk/GuGJKPenetration.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKPenetration.h"; path = "../../GeomUtils/src/gjk/GuGJKPenetration.h"; sourceTree = SOURCE_ROOT; };
- FFFDec802a687f8cec802a68 /* src/gjk/GuGJKRaycast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKRaycast.h"; path = "../../GeomUtils/src/gjk/GuGJKRaycast.h"; sourceTree = SOURCE_ROOT; };
- FFFDec802ad07f8cec802ad0 /* src/gjk/GuGJKSimplex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.h"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.h"; sourceTree = SOURCE_ROOT; };
- FFFDec802b387f8cec802b38 /* src/gjk/GuGJKTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.h"; path = "../../GeomUtils/src/gjk/GuGJKTest.h"; sourceTree = SOURCE_ROOT; };
- FFFDec802ba07f8cec802ba0 /* src/gjk/GuGJKType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKType.h"; path = "../../GeomUtils/src/gjk/GuGJKType.h"; sourceTree = SOURCE_ROOT; };
- FFFDec802c087f8cec802c08 /* src/gjk/GuGJKUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKUtil.h"; path = "../../GeomUtils/src/gjk/GuGJKUtil.h"; sourceTree = SOURCE_ROOT; };
- FFFDec802c707f8cec802c70 /* src/gjk/GuVecBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecBox.h"; path = "../../GeomUtils/src/gjk/GuVecBox.h"; sourceTree = SOURCE_ROOT; };
- FFFDec802cd87f8cec802cd8 /* src/gjk/GuVecCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecCapsule.h"; path = "../../GeomUtils/src/gjk/GuVecCapsule.h"; sourceTree = SOURCE_ROOT; };
- FFFDec802d407f8cec802d40 /* src/gjk/GuVecConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvex.h"; path = "../../GeomUtils/src/gjk/GuVecConvex.h"; sourceTree = SOURCE_ROOT; };
- FFFDec802da87f8cec802da8 /* src/gjk/GuVecConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHull.h"; sourceTree = SOURCE_ROOT; };
- FFFDec802e107f8cec802e10 /* src/gjk/GuVecConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; };
- FFFDec802e787f8cec802e78 /* src/gjk/GuVecPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecPlane.h"; path = "../../GeomUtils/src/gjk/GuVecPlane.h"; sourceTree = SOURCE_ROOT; };
- FFFDec802ee07f8cec802ee0 /* src/gjk/GuVecShrunkBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkBox.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkBox.h"; sourceTree = SOURCE_ROOT; };
- FFFDec802f487f8cec802f48 /* src/gjk/GuVecShrunkConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHull.h"; sourceTree = SOURCE_ROOT; };
- FFFDec802fb07f8cec802fb0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8030187f8cec803018 /* src/gjk/GuVecSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecSphere.h"; path = "../../GeomUtils/src/gjk/GuVecSphere.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8030807f8cec803080 /* src/gjk/GuVecTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecTriangle.h"; path = "../../GeomUtils/src/gjk/GuVecTriangle.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8030e87f8cec8030e8 /* src/intersection/GuIntersectionCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8031507f8cec803150 /* src/intersection/GuIntersectionEdgeEdge.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.h"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8031b87f8cec8031b8 /* src/intersection/GuIntersectionRay.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRay.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRay.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8032207f8cec803220 /* src/intersection/GuIntersectionRayBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8032887f8cec803288 /* src/intersection/GuIntersectionRayBoxSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBoxSIMD.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBoxSIMD.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8032f07f8cec8032f0 /* src/intersection/GuIntersectionRayCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8033587f8cec803358 /* src/intersection/GuIntersectionRayPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayPlane.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayPlane.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8033c07f8cec8033c0 /* src/intersection/GuIntersectionRaySphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8034287f8cec803428 /* src/intersection/GuIntersectionRayTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayTriangle.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8034907f8cec803490 /* src/intersection/GuIntersectionSphereBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8034f87f8cec8034f8 /* src/mesh/GuBV32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.h"; path = "../../GeomUtils/src/mesh/GuBV32.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8035607f8cec803560 /* src/mesh/GuBV32Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.h"; path = "../../GeomUtils/src/mesh/GuBV32Build.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8035c87f8cec8035c8 /* src/mesh/GuBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.h"; path = "../../GeomUtils/src/mesh/GuBV4.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8036307f8cec803630 /* src/mesh/GuBV4Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.h"; path = "../../GeomUtils/src/mesh/GuBV4Build.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8036987f8cec803698 /* src/mesh/GuBV4Settings.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Settings.h"; path = "../../GeomUtils/src/mesh/GuBV4Settings.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8037007f8cec803700 /* 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; };
- FFFDec8037687f8cec803768 /* 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; };
- FFFDec8037d07f8cec8037d0 /* 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; };
- FFFDec8038387f8cec803838 /* 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; };
- FFFDec8038a07f8cec8038a0 /* 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; };
- FFFDec8039087f8cec803908 /* 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; };
- FFFDec8039707f8cec803970 /* 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; };
- FFFDec8039d87f8cec8039d8 /* 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; };
- FFFDec803a407f8cec803a40 /* 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; };
- FFFDec803aa87f8cec803aa8 /* 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; };
- FFFDec803b107f8cec803b10 /* 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; };
- FFFDec803b787f8cec803b78 /* 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; };
- FFFDec803be07f8cec803be0 /* 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; };
- FFFDec803c487f8cec803c48 /* 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; };
- FFFDec803cb07f8cec803cb0 /* 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; };
- FFFDec803d187f8cec803d18 /* 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; };
- FFFDec803d807f8cec803d80 /* 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; };
- FFFDec803de87f8cec803de8 /* 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; };
- FFFDec803e507f8cec803e50 /* 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; };
- FFFDec803eb87f8cec803eb8 /* 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; };
- FFFDec803f207f8cec803f20 /* src/mesh/GuBVConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBVConstants.h"; path = "../../GeomUtils/src/mesh/GuBVConstants.h"; sourceTree = SOURCE_ROOT; };
- FFFDec803f887f8cec803f88 /* src/mesh/GuMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshData.h"; path = "../../GeomUtils/src/mesh/GuMeshData.h"; sourceTree = SOURCE_ROOT; };
- FFFDec803ff07f8cec803ff0 /* src/mesh/GuMidphaseInterface.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseInterface.h"; path = "../../GeomUtils/src/mesh/GuMidphaseInterface.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8040587f8cec804058 /* src/mesh/GuRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.h"; path = "../../GeomUtils/src/mesh/GuRTree.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8040c07f8cec8040c0 /* src/mesh/GuSweepConvexTri.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepConvexTri.h"; path = "../../GeomUtils/src/mesh/GuSweepConvexTri.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8041287f8cec804128 /* src/mesh/GuSweepMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepMesh.h"; path = "../../GeomUtils/src/mesh/GuSweepMesh.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8041907f8cec804190 /* src/mesh/GuTriangle32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangle32.h"; path = "../../GeomUtils/src/mesh/GuTriangle32.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8041f87f8cec8041f8 /* src/mesh/GuTriangleCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleCache.h"; path = "../../GeomUtils/src/mesh/GuTriangleCache.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8042607f8cec804260 /* src/mesh/GuTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.h"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8042c87f8cec8042c8 /* src/mesh/GuTriangleMeshBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8043307f8cec804330 /* src/mesh/GuTriangleMeshRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8043987f8cec804398 /* src/mesh/GuTriangleVertexPointers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleVertexPointers.h"; path = "../../GeomUtils/src/mesh/GuTriangleVertexPointers.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8044007f8cec804400 /* src/hf/GuEntityReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuEntityReport.h"; path = "../../GeomUtils/src/hf/GuEntityReport.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8044687f8cec804468 /* src/hf/GuHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.h"; path = "../../GeomUtils/src/hf/GuHeightField.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8044d07f8cec8044d0 /* src/hf/GuHeightFieldData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldData.h"; path = "../../GeomUtils/src/hf/GuHeightFieldData.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8045387f8cec804538 /* src/hf/GuHeightFieldUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.h"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8045a07f8cec8045a0 /* src/pcm/GuPCMContactConvexCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.h"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8046087f8cec804608 /* src/pcm/GuPCMContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGen.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8046707f8cec804670 /* src/pcm/GuPCMContactGenUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenUtil.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGenUtil.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8046d87f8cec8046d8 /* src/pcm/GuPCMContactMeshCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactMeshCallback.h"; path = "../../GeomUtils/src/pcm/GuPCMContactMeshCallback.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8047407f8cec804740 /* src/pcm/GuPCMShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.h"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8047a87f8cec8047a8 /* src/pcm/GuPCMTriangleContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8048107f8cec804810 /* src/pcm/GuPersistentContactManifold.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.h"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8048787f8cec804878 /* src/ccd/GuCCDSweepConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.h"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.h"; sourceTree = SOURCE_ROOT; };
- FFFDec8048e07f8cec8048e0 /* src/GuBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.cpp"; path = "../../GeomUtils/src/GuBounds.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8049487f8cec804948 /* src/GuBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBox.cpp"; path = "../../GeomUtils/src/GuBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8049b07f8cec8049b0 /* src/GuCCTSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCCTSweepTests.cpp"; path = "../../GeomUtils/src/GuCCTSweepTests.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec804a187f8cec804a18 /* src/GuCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.cpp"; path = "../../GeomUtils/src/GuCapsule.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec804a807f8cec804a80 /* src/GuGeometryQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryQuery.cpp"; path = "../../GeomUtils/src/GuGeometryQuery.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec804ae87f8cec804ae8 /* src/GuGeometryUnion.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.cpp"; path = "../../GeomUtils/src/GuGeometryUnion.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec804b507f8cec804b50 /* src/GuInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.cpp"; path = "../../GeomUtils/src/GuInternal.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec804bb87f8cec804bb8 /* src/GuMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.cpp"; path = "../../GeomUtils/src/GuMTD.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec804c207f8cec804c20 /* src/GuMeshFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.cpp"; path = "../../GeomUtils/src/GuMeshFactory.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec804c887f8cec804c88 /* src/GuMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMetaData.cpp"; path = "../../GeomUtils/src/GuMetaData.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec804cf07f8cec804cf0 /* src/GuOverlapTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.cpp"; path = "../../GeomUtils/src/GuOverlapTests.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec804d587f8cec804d58 /* src/GuRaycastTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuRaycastTests.cpp"; path = "../../GeomUtils/src/GuRaycastTests.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec804dc07f8cec804dc0 /* src/GuSerialize.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.cpp"; path = "../../GeomUtils/src/GuSerialize.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec804e287f8cec804e28 /* src/GuSweepMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.cpp"; path = "../../GeomUtils/src/GuSweepMTD.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec804e907f8cec804e90 /* src/GuSweepSharedTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.cpp"; path = "../../GeomUtils/src/GuSweepSharedTests.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec804ef87f8cec804ef8 /* src/GuSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.cpp"; path = "../../GeomUtils/src/GuSweepTests.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec804f607f8cec804f60 /* src/contact/GuContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactBoxBox.cpp"; path = "../../GeomUtils/src/contact/GuContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec804fc87f8cec804fc8 /* src/contact/GuContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleBox.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8050307f8cec805030 /* src/contact/GuContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8050987f8cec805098 /* src/contact/GuContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8051007f8cec805100 /* src/contact/GuContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8051687f8cec805168 /* src/contact/GuContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8051d07f8cec8051d0 /* src/contact/GuContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8052387f8cec805238 /* src/contact/GuContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneBox.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8052a07f8cec8052a0 /* src/contact/GuContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8053087f8cec805308 /* src/contact/GuContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8053707f8cec805370 /* src/contact/GuContactPolygonPolygon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.cpp"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8053d87f8cec8053d8 /* src/contact/GuContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereBox.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8054407f8cec805440 /* src/contact/GuContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8054a87f8cec8054a8 /* src/contact/GuContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8055107f8cec805510 /* src/contact/GuContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSpherePlane.cpp"; path = "../../GeomUtils/src/contact/GuContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8055787f8cec805578 /* src/contact/GuContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereSphere.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8055e07f8cec8055e0 /* src/contact/GuFeatureCode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.cpp"; path = "../../GeomUtils/src/contact/GuFeatureCode.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8056487f8cec805648 /* src/contact/GuLegacyContactBoxHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactBoxHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactBoxHeightField.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8056b07f8cec8056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8057187f8cec805718 /* src/contact/GuLegacyContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactConvexHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8057807f8cec805780 /* src/contact/GuLegacyContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactSphereHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8057e87f8cec8057e8 /* src/common/GuBarycentricCoordinates.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.cpp"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8058507f8cec805850 /* src/common/GuSeparatingAxes.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.cpp"; path = "../../GeomUtils/src/common/GuSeparatingAxes.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8058b87f8cec8058b8 /* src/convex/GuBigConvexData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.cpp"; path = "../../GeomUtils/src/convex/GuBigConvexData.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8059207f8cec805920 /* src/convex/GuConvexHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.cpp"; path = "../../GeomUtils/src/convex/GuConvexHelper.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8059887f8cec805988 /* src/convex/GuConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.cpp"; path = "../../GeomUtils/src/convex/GuConvexMesh.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8059f07f8cec8059f0 /* src/convex/GuConvexSupportTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.cpp"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec805a587f8cec805a58 /* src/convex/GuConvexUtilsInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.cpp"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec805ac07f8cec805ac0 /* src/convex/GuHillClimbing.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.cpp"; path = "../../GeomUtils/src/convex/GuHillClimbing.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec805b287f8cec805b28 /* src/convex/GuShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.cpp"; path = "../../GeomUtils/src/convex/GuShapeConvex.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec805b907f8cec805b90 /* src/distance/GuDistancePointBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec805bf87f8cec805bf8 /* src/distance/GuDistancePointTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec805c607f8cec805c60 /* src/distance/GuDistanceSegmentBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentBox.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec805cc87f8cec805cc8 /* src/distance/GuDistanceSegmentSegment.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegment.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegment.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec805d307f8cec805d30 /* src/distance/GuDistanceSegmentTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec805d987f8cec805d98 /* src/sweep/GuSweepBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec805e007f8cec805e00 /* src/sweep/GuSweepBoxSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec805e687f8cec805e68 /* 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; };
- FFFDec805ed07f8cec805ed0 /* 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; };
- FFFDec805f387f8cec805f38 /* src/sweep/GuSweepCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec805fa07f8cec805fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8060087f8cec806008 /* src/sweep/GuSweepCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8060707f8cec806070 /* src/sweep/GuSweepSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8060d87f8cec8060d8 /* src/sweep/GuSweepSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8061407f8cec806140 /* src/sweep/GuSweepSphereTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8061a87f8cec8061a8 /* src/sweep/GuSweepTriangleUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.cpp"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8062107f8cec806210 /* src/gjk/GuEPA.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.cpp"; path = "../../GeomUtils/src/gjk/GuEPA.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8062787f8cec806278 /* src/gjk/GuGJKSimplex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.cpp"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8062e07f8cec8062e0 /* src/gjk/GuGJKTest.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.cpp"; path = "../../GeomUtils/src/gjk/GuGJKTest.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8063487f8cec806348 /* src/intersection/GuIntersectionBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionBoxBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionBoxBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8063b07f8cec8063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8064187f8cec806418 /* src/intersection/GuIntersectionEdgeEdge.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8064807f8cec806480 /* src/intersection/GuIntersectionRayBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8064e87f8cec8064e8 /* src/intersection/GuIntersectionRayCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8065507f8cec806550 /* src/intersection/GuIntersectionRaySphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8065b87f8cec8065b8 /* src/intersection/GuIntersectionSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8066207f8cec806620 /* src/intersection/GuIntersectionTriangleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionTriangleBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionTriangleBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8066887f8cec806688 /* src/mesh/GuBV32.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.cpp"; path = "../../GeomUtils/src/mesh/GuBV32.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8066f07f8cec8066f0 /* src/mesh/GuBV32Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV32Build.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8067587f8cec806758 /* src/mesh/GuBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.cpp"; path = "../../GeomUtils/src/mesh/GuBV4.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8067c07f8cec8067c0 /* src/mesh/GuBV4Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV4Build.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8068287f8cec806828 /* 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; };
- FFFDec8068907f8cec806890 /* 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; };
- FFFDec8068f87f8cec8068f8 /* 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; };
- FFFDec8069607f8cec806960 /* 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; };
- FFFDec8069c87f8cec8069c8 /* 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; };
- FFFDec806a307f8cec806a30 /* 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; };
- FFFDec806a987f8cec806a98 /* 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; };
- FFFDec806b007f8cec806b00 /* 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; };
- FFFDec806b687f8cec806b68 /* src/mesh/GuMeshQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshQuery.cpp"; path = "../../GeomUtils/src/mesh/GuMeshQuery.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec806bd07f8cec806bd0 /* src/mesh/GuMidphaseBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseBV4.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseBV4.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec806c387f8cec806c38 /* src/mesh/GuMidphaseRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseRTree.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseRTree.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec806ca07f8cec806ca0 /* src/mesh/GuOverlapTestsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuOverlapTestsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuOverlapTestsMesh.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec806d087f8cec806d08 /* src/mesh/GuRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.cpp"; path = "../../GeomUtils/src/mesh/GuRTree.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec806d707f8cec806d70 /* src/mesh/GuRTreeQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTreeQueries.cpp"; path = "../../GeomUtils/src/mesh/GuRTreeQueries.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec806dd87f8cec806dd8 /* src/mesh/GuSweepsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuSweepsMesh.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec806e407f8cec806e40 /* src/mesh/GuTriangleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec806ea87f8cec806ea8 /* src/mesh/GuTriangleMeshBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec806f107f8cec806f10 /* src/mesh/GuTriangleMeshRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec806f787f8cec806f78 /* src/hf/GuHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.cpp"; path = "../../GeomUtils/src/hf/GuHeightField.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec806fe07f8cec806fe0 /* src/hf/GuHeightFieldUtil.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.cpp"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8070487f8cec807048 /* src/hf/GuOverlapTestsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuOverlapTestsHF.cpp"; path = "../../GeomUtils/src/hf/GuOverlapTestsHF.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8070b07f8cec8070b0 /* src/hf/GuSweepsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuSweepsHF.cpp"; path = "../../GeomUtils/src/hf/GuSweepsHF.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8071187f8cec807118 /* src/pcm/GuPCMContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8071807f8cec807180 /* src/pcm/GuPCMContactBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxConvex.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8071e87f8cec8071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8072507f8cec807250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8072b87f8cec8072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8073207f8cec807320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8073887f8cec807388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8073f07f8cec8073f0 /* src/pcm/GuPCMContactConvexCommon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8074587f8cec807458 /* src/pcm/GuPCMContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8074c07f8cec8074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8075287f8cec807528 /* src/pcm/GuPCMContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8075907f8cec807590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenBoxConvex.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8075f87f8cec8075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8076607f8cec807660 /* src/pcm/GuPCMContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8076c87f8cec8076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8077307f8cec807730 /* src/pcm/GuPCMContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8077987f8cec807798 /* src/pcm/GuPCMContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8078007f8cec807800 /* src/pcm/GuPCMContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8078687f8cec807868 /* src/pcm/GuPCMContactSphereConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereConvex.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8078d07f8cec8078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8079387f8cec807938 /* src/pcm/GuPCMContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec8079a07f8cec8079a0 /* src/pcm/GuPCMContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSpherePlane.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec807a087f8cec807a08 /* src/pcm/GuPCMContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereSphere.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec807a707f8cec807a70 /* src/pcm/GuPCMShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec807ad87f8cec807ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.cpp"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec807b407f8cec807b40 /* src/pcm/GuPersistentContactManifold.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.cpp"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec807ba87f8cec807ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.cpp"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec807c107f8cec807c10 /* src/ccd/GuCCDSweepPrimitives.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepPrimitives.cpp"; path = "../../GeomUtils/src/ccd/GuCCDSweepPrimitives.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf18a0c307fd2f18a0c30 /* PhysXCommon */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCommon"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFDf200ec007fd2f200ec00 /* common/PxBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxBase.h"; path = "../../../Include/common/PxBase.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf200ec687fd2f200ec68 /* common/PxCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCollection.h"; path = "../../../Include/common/PxCollection.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf200ecd07fd2f200ecd0 /* common/PxCoreUtilityTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCoreUtilityTypes.h"; path = "../../../Include/common/PxCoreUtilityTypes.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf200ed387fd2f200ed38 /* common/PxMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaData.h"; path = "../../../Include/common/PxMetaData.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf200eda07fd2f200eda0 /* common/PxMetaDataFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaDataFlags.h"; path = "../../../Include/common/PxMetaDataFlags.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf200ee087fd2f200ee08 /* common/PxPhysXCommonConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysXCommonConfig.h"; path = "../../../Include/common/PxPhysXCommonConfig.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf200ee707fd2f200ee70 /* common/PxPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysicsInsertionCallback.h"; path = "../../../Include/common/PxPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf200eed87fd2f200eed8 /* common/PxRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxRenderBuffer.h"; path = "../../../Include/common/PxRenderBuffer.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf200ef407fd2f200ef40 /* common/PxSerialFramework.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerialFramework.h"; path = "../../../Include/common/PxSerialFramework.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf200efa87fd2f200efa8 /* common/PxSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerializer.h"; path = "../../../Include/common/PxSerializer.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf200f0107fd2f200f010 /* common/PxStringTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxStringTable.h"; path = "../../../Include/common/PxStringTable.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf200f0787fd2f200f078 /* common/PxTolerancesScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTolerancesScale.h"; path = "../../../Include/common/PxTolerancesScale.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf200f0e07fd2f200f0e0 /* common/PxTypeInfo.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTypeInfo.h"; path = "../../../Include/common/PxTypeInfo.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf200f1487fd2f200f148 /* geometry/PxBoxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxBoxGeometry.h"; path = "../../../Include/geometry/PxBoxGeometry.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf200f1b07fd2f200f1b0 /* geometry/PxCapsuleGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxCapsuleGeometry.h"; path = "../../../Include/geometry/PxCapsuleGeometry.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf200f2187fd2f200f218 /* geometry/PxConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMesh.h"; path = "../../../Include/geometry/PxConvexMesh.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf200f2807fd2f200f280 /* geometry/PxConvexMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMeshGeometry.h"; path = "../../../Include/geometry/PxConvexMeshGeometry.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf200f2e87fd2f200f2e8 /* geometry/PxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometry.h"; path = "../../../Include/geometry/PxGeometry.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf200f3507fd2f200f350 /* geometry/PxGeometryHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryHelpers.h"; path = "../../../Include/geometry/PxGeometryHelpers.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf200f3b87fd2f200f3b8 /* geometry/PxGeometryQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryQuery.h"; path = "../../../Include/geometry/PxGeometryQuery.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf200f4207fd2f200f420 /* geometry/PxHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightField.h"; path = "../../../Include/geometry/PxHeightField.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf200f4887fd2f200f488 /* geometry/PxHeightFieldDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldDesc.h"; path = "../../../Include/geometry/PxHeightFieldDesc.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf200f4f07fd2f200f4f0 /* geometry/PxHeightFieldFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldFlag.h"; path = "../../../Include/geometry/PxHeightFieldFlag.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf200f5587fd2f200f558 /* geometry/PxHeightFieldGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldGeometry.h"; path = "../../../Include/geometry/PxHeightFieldGeometry.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf200f5c07fd2f200f5c0 /* geometry/PxHeightFieldSample.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldSample.h"; path = "../../../Include/geometry/PxHeightFieldSample.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf200f6287fd2f200f628 /* geometry/PxMeshQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshQuery.h"; path = "../../../Include/geometry/PxMeshQuery.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf200f6907fd2f200f690 /* geometry/PxMeshScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshScale.h"; path = "../../../Include/geometry/PxMeshScale.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf200f6f87fd2f200f6f8 /* geometry/PxPlaneGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxPlaneGeometry.h"; path = "../../../Include/geometry/PxPlaneGeometry.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf200f7607fd2f200f760 /* geometry/PxSimpleTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSimpleTriangleMesh.h"; path = "../../../Include/geometry/PxSimpleTriangleMesh.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf200f7c87fd2f200f7c8 /* geometry/PxSphereGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSphereGeometry.h"; path = "../../../Include/geometry/PxSphereGeometry.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf200f8307fd2f200f830 /* geometry/PxTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangle.h"; path = "../../../Include/geometry/PxTriangle.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf200f8987fd2f200f898 /* geometry/PxTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMesh.h"; path = "../../../Include/geometry/PxTriangleMesh.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf200f9007fd2f200f900 /* geometry/PxTriangleMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMeshGeometry.h"; path = "../../../Include/geometry/PxTriangleMeshGeometry.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11aa8007fd2f11aa800 /* src/CmBoxPruning.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.cpp"; path = "../../Common/src/CmBoxPruning.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf11aa8687fd2f11aa868 /* src/CmCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.cpp"; path = "../../Common/src/CmCollection.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf11aa8d07fd2f11aa8d0 /* src/CmMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMathUtils.cpp"; path = "../../Common/src/CmMathUtils.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf11aa9387fd2f11aa938 /* src/CmPtrTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.cpp"; path = "../../Common/src/CmPtrTable.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf11aa9a07fd2f11aa9a0 /* src/CmRadixSort.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.cpp"; path = "../../Common/src/CmRadixSort.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf11aaa087fd2f11aaa08 /* src/CmRadixSortBuffered.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.cpp"; path = "../../Common/src/CmRadixSortBuffered.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf11aaa707fd2f11aaa70 /* src/CmRenderOutput.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.cpp"; path = "../../Common/src/CmRenderOutput.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf11aaad87fd2f11aaad8 /* src/CmVisualization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.cpp"; path = "../../Common/src/CmVisualization.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf11aab407fd2f11aab40 /* src/CmBitMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBitMap.h"; path = "../../Common/src/CmBitMap.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11aaba87fd2f11aaba8 /* src/CmBoxPruning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.h"; path = "../../Common/src/CmBoxPruning.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11aac107fd2f11aac10 /* src/CmCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.h"; path = "../../Common/src/CmCollection.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11aac787fd2f11aac78 /* src/CmConeLimitHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmConeLimitHelper.h"; path = "../../Common/src/CmConeLimitHelper.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11aace07fd2f11aace0 /* src/CmFlushPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmFlushPool.h"; path = "../../Common/src/CmFlushPool.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11aad487fd2f11aad48 /* src/CmIDPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIDPool.h"; path = "../../Common/src/CmIDPool.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11aadb07fd2f11aadb0 /* src/CmIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIO.h"; path = "../../Common/src/CmIO.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11aae187fd2f11aae18 /* src/CmMatrix34.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMatrix34.h"; path = "../../Common/src/CmMatrix34.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11aae807fd2f11aae80 /* src/CmPhysXCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPhysXCommon.h"; path = "../../Common/src/CmPhysXCommon.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11aaee87fd2f11aaee8 /* src/CmPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPool.h"; path = "../../Common/src/CmPool.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11aaf507fd2f11aaf50 /* src/CmPreallocatingPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPreallocatingPool.h"; path = "../../Common/src/CmPreallocatingPool.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11aafb87fd2f11aafb8 /* src/CmPriorityQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPriorityQueue.h"; path = "../../Common/src/CmPriorityQueue.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11ab0207fd2f11ab020 /* src/CmPtrTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.h"; path = "../../Common/src/CmPtrTable.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11ab0887fd2f11ab088 /* src/CmQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmQueue.h"; path = "../../Common/src/CmQueue.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11ab0f07fd2f11ab0f0 /* src/CmRadixSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.h"; path = "../../Common/src/CmRadixSort.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11ab1587fd2f11ab158 /* src/CmRadixSortBuffered.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.h"; path = "../../Common/src/CmRadixSortBuffered.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11ab1c07fd2f11ab1c0 /* src/CmRefCountable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRefCountable.h"; path = "../../Common/src/CmRefCountable.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11ab2287fd2f11ab228 /* src/CmRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderBuffer.h"; path = "../../Common/src/CmRenderBuffer.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11ab2907fd2f11ab290 /* src/CmRenderOutput.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.h"; path = "../../Common/src/CmRenderOutput.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11ab2f87fd2f11ab2f8 /* src/CmScaling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmScaling.h"; path = "../../Common/src/CmScaling.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11ab3607fd2f11ab360 /* src/CmSpatialVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmSpatialVector.h"; path = "../../Common/src/CmSpatialVector.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11ab3c87fd2f11ab3c8 /* src/CmTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTask.h"; path = "../../Common/src/CmTask.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11ab4307fd2f11ab430 /* src/CmTaskPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTaskPool.h"; path = "../../Common/src/CmTaskPool.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11ab4987fd2f11ab498 /* src/CmTmpMem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTmpMem.h"; path = "../../Common/src/CmTmpMem.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11ab5007fd2f11ab500 /* src/CmTransformUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTransformUtils.h"; path = "../../Common/src/CmTransformUtils.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11ab5687fd2f11ab568 /* src/CmUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmUtils.h"; path = "../../Common/src/CmUtils.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11ab5d07fd2f11ab5d0 /* src/CmVisualization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.h"; path = "../../Common/src/CmVisualization.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20010007fd2f2001000 /* headers/GuAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuAxes.h"; path = "../../GeomUtils/headers/GuAxes.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20010687fd2f2001068 /* headers/GuBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuBox.h"; path = "../../GeomUtils/headers/GuBox.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20010d07fd2f20010d0 /* headers/GuDistanceSegmentBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentBox.h"; path = "../../GeomUtils/headers/GuDistanceSegmentBox.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20011387fd2f2001138 /* headers/GuDistanceSegmentSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentSegment.h"; path = "../../GeomUtils/headers/GuDistanceSegmentSegment.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20011a07fd2f20011a0 /* headers/GuIntersectionBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionBoxBox.h"; path = "../../GeomUtils/headers/GuIntersectionBoxBox.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20012087fd2f2001208 /* headers/GuIntersectionTriangleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionTriangleBox.h"; path = "../../GeomUtils/headers/GuIntersectionTriangleBox.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20012707fd2f2001270 /* headers/GuRaycastTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuRaycastTests.h"; path = "../../GeomUtils/headers/GuRaycastTests.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20012d87fd2f20012d8 /* headers/GuSIMDHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSIMDHelpers.h"; path = "../../GeomUtils/headers/GuSIMDHelpers.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20013407fd2f2001340 /* headers/GuSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSegment.h"; path = "../../GeomUtils/headers/GuSegment.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20013a87fd2f20013a8 /* ../../Include/GeomUtils */= { isa = PBXFileReference; fileEncoding = 4; name = "../../Include/GeomUtils"; path = "../../../Include/GeomUtils"; sourceTree = SOURCE_ROOT; };
+ FFFDf20014107fd2f2001410 /* src/GuBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.h"; path = "../../GeomUtils/src/GuBounds.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20014787fd2f2001478 /* src/GuCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.h"; path = "../../GeomUtils/src/GuCapsule.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20014e07fd2f20014e0 /* src/GuCenterExtents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCenterExtents.h"; path = "../../GeomUtils/src/GuCenterExtents.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20015487fd2f2001548 /* src/GuGeometryUnion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.h"; path = "../../GeomUtils/src/GuGeometryUnion.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20015b07fd2f20015b0 /* src/GuInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.h"; path = "../../GeomUtils/src/GuInternal.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20016187fd2f2001618 /* src/GuMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.h"; path = "../../GeomUtils/src/GuMTD.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20016807fd2f2001680 /* src/GuMeshFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.h"; path = "../../GeomUtils/src/GuMeshFactory.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20016e87fd2f20016e8 /* src/GuOverlapTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.h"; path = "../../GeomUtils/src/GuOverlapTests.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20017507fd2f2001750 /* src/GuSerialize.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.h"; path = "../../GeomUtils/src/GuSerialize.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20017b87fd2f20017b8 /* src/GuSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSphere.h"; path = "../../GeomUtils/src/GuSphere.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20018207fd2f2001820 /* src/GuSweepMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.h"; path = "../../GeomUtils/src/GuSweepMTD.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20018887fd2f2001888 /* src/GuSweepSharedTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.h"; path = "../../GeomUtils/src/GuSweepSharedTests.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20018f07fd2f20018f0 /* src/GuSweepTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.h"; path = "../../GeomUtils/src/GuSweepTests.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20019587fd2f2001958 /* src/contact/GuContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactMethodImpl.h"; path = "../../GeomUtils/src/contact/GuContactMethodImpl.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20019c07fd2f20019c0 /* src/contact/GuContactPolygonPolygon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.h"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2001a287fd2f2001a28 /* src/contact/GuFeatureCode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.h"; path = "../../GeomUtils/src/contact/GuFeatureCode.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2001a907fd2f2001a90 /* src/contact/GuLegacyTraceLineCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyTraceLineCallback.h"; path = "../../GeomUtils/src/contact/GuLegacyTraceLineCallback.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2001af87fd2f2001af8 /* src/common/GuBarycentricCoordinates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.h"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2001b607fd2f2001b60 /* src/common/GuBoxConversion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBoxConversion.h"; path = "../../GeomUtils/src/common/GuBoxConversion.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2001bc87fd2f2001bc8 /* src/common/GuEdgeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeCache.h"; path = "../../GeomUtils/src/common/GuEdgeCache.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2001c307fd2f2001c30 /* src/common/GuEdgeListData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeListData.h"; path = "../../GeomUtils/src/common/GuEdgeListData.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2001c987fd2f2001c98 /* src/common/GuSeparatingAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.h"; path = "../../GeomUtils/src/common/GuSeparatingAxes.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2001d007fd2f2001d00 /* src/convex/GuBigConvexData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.h"; path = "../../GeomUtils/src/convex/GuBigConvexData.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2001d687fd2f2001d68 /* src/convex/GuBigConvexData2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData2.h"; path = "../../GeomUtils/src/convex/GuBigConvexData2.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2001dd07fd2f2001dd0 /* src/convex/GuConvexEdgeFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexEdgeFlags.h"; path = "../../GeomUtils/src/convex/GuConvexEdgeFlags.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2001e387fd2f2001e38 /* src/convex/GuConvexHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.h"; path = "../../GeomUtils/src/convex/GuConvexHelper.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2001ea07fd2f2001ea0 /* src/convex/GuConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.h"; path = "../../GeomUtils/src/convex/GuConvexMesh.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2001f087fd2f2001f08 /* src/convex/GuConvexMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMeshData.h"; path = "../../GeomUtils/src/convex/GuConvexMeshData.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2001f707fd2f2001f70 /* src/convex/GuConvexSupportTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.h"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2001fd87fd2f2001fd8 /* src/convex/GuConvexUtilsInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.h"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20020407fd2f2002040 /* src/convex/GuCubeIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuCubeIndex.h"; path = "../../GeomUtils/src/convex/GuCubeIndex.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20020a87fd2f20020a8 /* src/convex/GuHillClimbing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.h"; path = "../../GeomUtils/src/convex/GuHillClimbing.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20021107fd2f2002110 /* src/convex/GuShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.h"; path = "../../GeomUtils/src/convex/GuShapeConvex.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20021787fd2f2002178 /* src/distance/GuDistancePointBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.h"; path = "../../GeomUtils/src/distance/GuDistancePointBox.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20021e07fd2f20021e0 /* src/distance/GuDistancePointSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointSegment.h"; path = "../../GeomUtils/src/distance/GuDistancePointSegment.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20022487fd2f2002248 /* src/distance/GuDistancePointTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20022b07fd2f20022b0 /* src/distance/GuDistancePointTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangleSIMD.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20023187fd2f2002318 /* src/distance/GuDistanceSegmentSegmentSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegmentSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegmentSIMD.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20023807fd2f2002380 /* src/distance/GuDistanceSegmentTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20023e87fd2f20023e8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangleSIMD.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20024507fd2f2002450 /* src/sweep/GuSweepBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20024b87fd2f20024b8 /* src/sweep/GuSweepBoxSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20025207fd2f2002520 /* 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; };
+ FFFDf20025887fd2f2002588 /* 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; };
+ FFFDf20025f07fd2f20025f0 /* src/sweep/GuSweepCapsuleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20026587fd2f2002658 /* src/sweep/GuSweepCapsuleCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20026c07fd2f20026c0 /* src/sweep/GuSweepCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20027287fd2f2002728 /* src/sweep/GuSweepSphereCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20027907fd2f2002790 /* src/sweep/GuSweepSphereSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20027f87fd2f20027f8 /* src/sweep/GuSweepSphereTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20028607fd2f2002860 /* src/sweep/GuSweepTriangleUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.h"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20028c87fd2f20028c8 /* src/gjk/GuEPA.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.h"; path = "../../GeomUtils/src/gjk/GuEPA.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20029307fd2f2002930 /* src/gjk/GuEPAFacet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPAFacet.h"; path = "../../GeomUtils/src/gjk/GuEPAFacet.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20029987fd2f2002998 /* src/gjk/GuGJK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJK.h"; path = "../../GeomUtils/src/gjk/GuGJK.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2002a007fd2f2002a00 /* src/gjk/GuGJKPenetration.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKPenetration.h"; path = "../../GeomUtils/src/gjk/GuGJKPenetration.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2002a687fd2f2002a68 /* src/gjk/GuGJKRaycast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKRaycast.h"; path = "../../GeomUtils/src/gjk/GuGJKRaycast.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2002ad07fd2f2002ad0 /* src/gjk/GuGJKSimplex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.h"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2002b387fd2f2002b38 /* src/gjk/GuGJKTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.h"; path = "../../GeomUtils/src/gjk/GuGJKTest.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2002ba07fd2f2002ba0 /* src/gjk/GuGJKType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKType.h"; path = "../../GeomUtils/src/gjk/GuGJKType.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2002c087fd2f2002c08 /* src/gjk/GuGJKUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKUtil.h"; path = "../../GeomUtils/src/gjk/GuGJKUtil.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2002c707fd2f2002c70 /* src/gjk/GuVecBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecBox.h"; path = "../../GeomUtils/src/gjk/GuVecBox.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2002cd87fd2f2002cd8 /* src/gjk/GuVecCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecCapsule.h"; path = "../../GeomUtils/src/gjk/GuVecCapsule.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2002d407fd2f2002d40 /* src/gjk/GuVecConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvex.h"; path = "../../GeomUtils/src/gjk/GuVecConvex.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2002da87fd2f2002da8 /* src/gjk/GuVecConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHull.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2002e107fd2f2002e10 /* src/gjk/GuVecConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2002e787fd2f2002e78 /* src/gjk/GuVecPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecPlane.h"; path = "../../GeomUtils/src/gjk/GuVecPlane.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2002ee07fd2f2002ee0 /* src/gjk/GuVecShrunkBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkBox.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkBox.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2002f487fd2f2002f48 /* src/gjk/GuVecShrunkConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHull.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2002fb07fd2f2002fb0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20030187fd2f2003018 /* src/gjk/GuVecSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecSphere.h"; path = "../../GeomUtils/src/gjk/GuVecSphere.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20030807fd2f2003080 /* src/gjk/GuVecTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecTriangle.h"; path = "../../GeomUtils/src/gjk/GuVecTriangle.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20030e87fd2f20030e8 /* src/intersection/GuIntersectionCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20031507fd2f2003150 /* src/intersection/GuIntersectionEdgeEdge.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.h"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20031b87fd2f20031b8 /* src/intersection/GuIntersectionRay.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRay.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRay.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20032207fd2f2003220 /* src/intersection/GuIntersectionRayBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20032887fd2f2003288 /* src/intersection/GuIntersectionRayBoxSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBoxSIMD.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBoxSIMD.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20032f07fd2f20032f0 /* src/intersection/GuIntersectionRayCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20033587fd2f2003358 /* src/intersection/GuIntersectionRayPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayPlane.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayPlane.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20033c07fd2f20033c0 /* src/intersection/GuIntersectionRaySphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20034287fd2f2003428 /* src/intersection/GuIntersectionRayTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayTriangle.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20034907fd2f2003490 /* src/intersection/GuIntersectionSphereBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20034f87fd2f20034f8 /* src/mesh/GuBV32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.h"; path = "../../GeomUtils/src/mesh/GuBV32.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20035607fd2f2003560 /* src/mesh/GuBV32Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.h"; path = "../../GeomUtils/src/mesh/GuBV32Build.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20035c87fd2f20035c8 /* src/mesh/GuBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.h"; path = "../../GeomUtils/src/mesh/GuBV4.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20036307fd2f2003630 /* src/mesh/GuBV4Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.h"; path = "../../GeomUtils/src/mesh/GuBV4Build.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20036987fd2f2003698 /* src/mesh/GuBV4Settings.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Settings.h"; path = "../../GeomUtils/src/mesh/GuBV4Settings.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20037007fd2f2003700 /* 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; };
+ FFFDf20037687fd2f2003768 /* 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; };
+ FFFDf20037d07fd2f20037d0 /* 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; };
+ FFFDf20038387fd2f2003838 /* 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; };
+ FFFDf20038a07fd2f20038a0 /* 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; };
+ FFFDf20039087fd2f2003908 /* 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; };
+ FFFDf20039707fd2f2003970 /* 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; };
+ FFFDf20039d87fd2f20039d8 /* 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; };
+ FFFDf2003a407fd2f2003a40 /* 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; };
+ FFFDf2003aa87fd2f2003aa8 /* 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; };
+ FFFDf2003b107fd2f2003b10 /* 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; };
+ FFFDf2003b787fd2f2003b78 /* 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; };
+ FFFDf2003be07fd2f2003be0 /* 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; };
+ FFFDf2003c487fd2f2003c48 /* 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; };
+ FFFDf2003cb07fd2f2003cb0 /* 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; };
+ FFFDf2003d187fd2f2003d18 /* 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; };
+ FFFDf2003d807fd2f2003d80 /* 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; };
+ FFFDf2003de87fd2f2003de8 /* 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; };
+ FFFDf2003e507fd2f2003e50 /* 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; };
+ FFFDf2003eb87fd2f2003eb8 /* 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; };
+ FFFDf2003f207fd2f2003f20 /* src/mesh/GuBVConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBVConstants.h"; path = "../../GeomUtils/src/mesh/GuBVConstants.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2003f887fd2f2003f88 /* src/mesh/GuMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshData.h"; path = "../../GeomUtils/src/mesh/GuMeshData.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2003ff07fd2f2003ff0 /* src/mesh/GuMidphaseInterface.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseInterface.h"; path = "../../GeomUtils/src/mesh/GuMidphaseInterface.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20040587fd2f2004058 /* src/mesh/GuRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.h"; path = "../../GeomUtils/src/mesh/GuRTree.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20040c07fd2f20040c0 /* src/mesh/GuSweepConvexTri.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepConvexTri.h"; path = "../../GeomUtils/src/mesh/GuSweepConvexTri.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20041287fd2f2004128 /* src/mesh/GuSweepMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepMesh.h"; path = "../../GeomUtils/src/mesh/GuSweepMesh.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20041907fd2f2004190 /* src/mesh/GuTriangle32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangle32.h"; path = "../../GeomUtils/src/mesh/GuTriangle32.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20041f87fd2f20041f8 /* src/mesh/GuTriangleCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleCache.h"; path = "../../GeomUtils/src/mesh/GuTriangleCache.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20042607fd2f2004260 /* src/mesh/GuTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.h"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20042c87fd2f20042c8 /* src/mesh/GuTriangleMeshBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20043307fd2f2004330 /* src/mesh/GuTriangleMeshRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20043987fd2f2004398 /* src/mesh/GuTriangleVertexPointers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleVertexPointers.h"; path = "../../GeomUtils/src/mesh/GuTriangleVertexPointers.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20044007fd2f2004400 /* src/hf/GuEntityReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuEntityReport.h"; path = "../../GeomUtils/src/hf/GuEntityReport.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20044687fd2f2004468 /* src/hf/GuHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.h"; path = "../../GeomUtils/src/hf/GuHeightField.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20044d07fd2f20044d0 /* src/hf/GuHeightFieldData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldData.h"; path = "../../GeomUtils/src/hf/GuHeightFieldData.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20045387fd2f2004538 /* src/hf/GuHeightFieldUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.h"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20045a07fd2f20045a0 /* src/pcm/GuPCMContactConvexCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.h"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20046087fd2f2004608 /* src/pcm/GuPCMContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGen.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20046707fd2f2004670 /* src/pcm/GuPCMContactGenUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenUtil.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGenUtil.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20046d87fd2f20046d8 /* src/pcm/GuPCMContactMeshCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactMeshCallback.h"; path = "../../GeomUtils/src/pcm/GuPCMContactMeshCallback.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20047407fd2f2004740 /* src/pcm/GuPCMShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.h"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20047a87fd2f20047a8 /* src/pcm/GuPCMTriangleContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20048107fd2f2004810 /* src/pcm/GuPersistentContactManifold.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.h"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20048787fd2f2004878 /* src/ccd/GuCCDSweepConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.h"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf20048e07fd2f20048e0 /* src/GuBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.cpp"; path = "../../GeomUtils/src/GuBounds.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20049487fd2f2004948 /* src/GuBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBox.cpp"; path = "../../GeomUtils/src/GuBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20049b07fd2f20049b0 /* src/GuCCTSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCCTSweepTests.cpp"; path = "../../GeomUtils/src/GuCCTSweepTests.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2004a187fd2f2004a18 /* src/GuCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.cpp"; path = "../../GeomUtils/src/GuCapsule.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2004a807fd2f2004a80 /* src/GuGeometryQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryQuery.cpp"; path = "../../GeomUtils/src/GuGeometryQuery.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2004ae87fd2f2004ae8 /* src/GuGeometryUnion.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.cpp"; path = "../../GeomUtils/src/GuGeometryUnion.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2004b507fd2f2004b50 /* src/GuInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.cpp"; path = "../../GeomUtils/src/GuInternal.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2004bb87fd2f2004bb8 /* src/GuMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.cpp"; path = "../../GeomUtils/src/GuMTD.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2004c207fd2f2004c20 /* src/GuMeshFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.cpp"; path = "../../GeomUtils/src/GuMeshFactory.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2004c887fd2f2004c88 /* src/GuMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMetaData.cpp"; path = "../../GeomUtils/src/GuMetaData.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2004cf07fd2f2004cf0 /* src/GuOverlapTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.cpp"; path = "../../GeomUtils/src/GuOverlapTests.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2004d587fd2f2004d58 /* src/GuRaycastTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuRaycastTests.cpp"; path = "../../GeomUtils/src/GuRaycastTests.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2004dc07fd2f2004dc0 /* src/GuSerialize.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.cpp"; path = "../../GeomUtils/src/GuSerialize.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2004e287fd2f2004e28 /* src/GuSweepMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.cpp"; path = "../../GeomUtils/src/GuSweepMTD.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2004e907fd2f2004e90 /* src/GuSweepSharedTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.cpp"; path = "../../GeomUtils/src/GuSweepSharedTests.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2004ef87fd2f2004ef8 /* src/GuSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.cpp"; path = "../../GeomUtils/src/GuSweepTests.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2004f607fd2f2004f60 /* src/contact/GuContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactBoxBox.cpp"; path = "../../GeomUtils/src/contact/GuContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2004fc87fd2f2004fc8 /* src/contact/GuContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleBox.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20050307fd2f2005030 /* src/contact/GuContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20050987fd2f2005098 /* src/contact/GuContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20051007fd2f2005100 /* src/contact/GuContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20051687fd2f2005168 /* src/contact/GuContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20051d07fd2f20051d0 /* src/contact/GuContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20052387fd2f2005238 /* src/contact/GuContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneBox.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20052a07fd2f20052a0 /* src/contact/GuContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20053087fd2f2005308 /* src/contact/GuContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20053707fd2f2005370 /* src/contact/GuContactPolygonPolygon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.cpp"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20053d87fd2f20053d8 /* src/contact/GuContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereBox.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20054407fd2f2005440 /* src/contact/GuContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20054a87fd2f20054a8 /* src/contact/GuContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20055107fd2f2005510 /* src/contact/GuContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSpherePlane.cpp"; path = "../../GeomUtils/src/contact/GuContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20055787fd2f2005578 /* src/contact/GuContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereSphere.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20055e07fd2f20055e0 /* src/contact/GuFeatureCode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.cpp"; path = "../../GeomUtils/src/contact/GuFeatureCode.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20056487fd2f2005648 /* src/contact/GuLegacyContactBoxHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactBoxHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactBoxHeightField.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20056b07fd2f20056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20057187fd2f2005718 /* src/contact/GuLegacyContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactConvexHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20057807fd2f2005780 /* src/contact/GuLegacyContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactSphereHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20057e87fd2f20057e8 /* src/common/GuBarycentricCoordinates.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.cpp"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20058507fd2f2005850 /* src/common/GuSeparatingAxes.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.cpp"; path = "../../GeomUtils/src/common/GuSeparatingAxes.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20058b87fd2f20058b8 /* src/convex/GuBigConvexData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.cpp"; path = "../../GeomUtils/src/convex/GuBigConvexData.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20059207fd2f2005920 /* src/convex/GuConvexHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.cpp"; path = "../../GeomUtils/src/convex/GuConvexHelper.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20059887fd2f2005988 /* src/convex/GuConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.cpp"; path = "../../GeomUtils/src/convex/GuConvexMesh.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20059f07fd2f20059f0 /* src/convex/GuConvexSupportTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.cpp"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2005a587fd2f2005a58 /* src/convex/GuConvexUtilsInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.cpp"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2005ac07fd2f2005ac0 /* src/convex/GuHillClimbing.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.cpp"; path = "../../GeomUtils/src/convex/GuHillClimbing.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2005b287fd2f2005b28 /* src/convex/GuShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.cpp"; path = "../../GeomUtils/src/convex/GuShapeConvex.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2005b907fd2f2005b90 /* src/distance/GuDistancePointBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2005bf87fd2f2005bf8 /* src/distance/GuDistancePointTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2005c607fd2f2005c60 /* src/distance/GuDistanceSegmentBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentBox.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2005cc87fd2f2005cc8 /* src/distance/GuDistanceSegmentSegment.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegment.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegment.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2005d307fd2f2005d30 /* src/distance/GuDistanceSegmentTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2005d987fd2f2005d98 /* src/sweep/GuSweepBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2005e007fd2f2005e00 /* src/sweep/GuSweepBoxSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2005e687fd2f2005e68 /* 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; };
+ FFFDf2005ed07fd2f2005ed0 /* 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; };
+ FFFDf2005f387fd2f2005f38 /* src/sweep/GuSweepCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2005fa07fd2f2005fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20060087fd2f2006008 /* src/sweep/GuSweepCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20060707fd2f2006070 /* src/sweep/GuSweepSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20060d87fd2f20060d8 /* src/sweep/GuSweepSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20061407fd2f2006140 /* src/sweep/GuSweepSphereTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20061a87fd2f20061a8 /* src/sweep/GuSweepTriangleUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.cpp"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20062107fd2f2006210 /* src/gjk/GuEPA.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.cpp"; path = "../../GeomUtils/src/gjk/GuEPA.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20062787fd2f2006278 /* src/gjk/GuGJKSimplex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.cpp"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20062e07fd2f20062e0 /* src/gjk/GuGJKTest.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.cpp"; path = "../../GeomUtils/src/gjk/GuGJKTest.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20063487fd2f2006348 /* src/intersection/GuIntersectionBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionBoxBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionBoxBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20063b07fd2f20063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20064187fd2f2006418 /* src/intersection/GuIntersectionEdgeEdge.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20064807fd2f2006480 /* src/intersection/GuIntersectionRayBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20064e87fd2f20064e8 /* src/intersection/GuIntersectionRayCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20065507fd2f2006550 /* src/intersection/GuIntersectionRaySphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20065b87fd2f20065b8 /* src/intersection/GuIntersectionSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20066207fd2f2006620 /* src/intersection/GuIntersectionTriangleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionTriangleBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionTriangleBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20066887fd2f2006688 /* src/mesh/GuBV32.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.cpp"; path = "../../GeomUtils/src/mesh/GuBV32.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20066f07fd2f20066f0 /* src/mesh/GuBV32Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV32Build.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20067587fd2f2006758 /* src/mesh/GuBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.cpp"; path = "../../GeomUtils/src/mesh/GuBV4.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20067c07fd2f20067c0 /* src/mesh/GuBV4Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV4Build.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20068287fd2f2006828 /* 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; };
+ FFFDf20068907fd2f2006890 /* 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; };
+ FFFDf20068f87fd2f20068f8 /* 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; };
+ FFFDf20069607fd2f2006960 /* 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; };
+ FFFDf20069c87fd2f20069c8 /* 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; };
+ FFFDf2006a307fd2f2006a30 /* 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; };
+ FFFDf2006a987fd2f2006a98 /* 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; };
+ FFFDf2006b007fd2f2006b00 /* 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; };
+ FFFDf2006b687fd2f2006b68 /* src/mesh/GuMeshQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshQuery.cpp"; path = "../../GeomUtils/src/mesh/GuMeshQuery.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2006bd07fd2f2006bd0 /* src/mesh/GuMidphaseBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseBV4.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseBV4.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2006c387fd2f2006c38 /* src/mesh/GuMidphaseRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseRTree.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseRTree.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2006ca07fd2f2006ca0 /* src/mesh/GuOverlapTestsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuOverlapTestsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuOverlapTestsMesh.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2006d087fd2f2006d08 /* src/mesh/GuRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.cpp"; path = "../../GeomUtils/src/mesh/GuRTree.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2006d707fd2f2006d70 /* src/mesh/GuRTreeQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTreeQueries.cpp"; path = "../../GeomUtils/src/mesh/GuRTreeQueries.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2006dd87fd2f2006dd8 /* src/mesh/GuSweepsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuSweepsMesh.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2006e407fd2f2006e40 /* src/mesh/GuTriangleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2006ea87fd2f2006ea8 /* src/mesh/GuTriangleMeshBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2006f107fd2f2006f10 /* src/mesh/GuTriangleMeshRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2006f787fd2f2006f78 /* src/hf/GuHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.cpp"; path = "../../GeomUtils/src/hf/GuHeightField.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2006fe07fd2f2006fe0 /* src/hf/GuHeightFieldUtil.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.cpp"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20070487fd2f2007048 /* src/hf/GuOverlapTestsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuOverlapTestsHF.cpp"; path = "../../GeomUtils/src/hf/GuOverlapTestsHF.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20070b07fd2f20070b0 /* src/hf/GuSweepsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuSweepsHF.cpp"; path = "../../GeomUtils/src/hf/GuSweepsHF.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20071187fd2f2007118 /* src/pcm/GuPCMContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20071807fd2f2007180 /* src/pcm/GuPCMContactBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxConvex.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20071e87fd2f20071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20072507fd2f2007250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20072b87fd2f20072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20073207fd2f2007320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20073887fd2f2007388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20073f07fd2f20073f0 /* src/pcm/GuPCMContactConvexCommon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20074587fd2f2007458 /* src/pcm/GuPCMContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20074c07fd2f20074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20075287fd2f2007528 /* src/pcm/GuPCMContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20075907fd2f2007590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenBoxConvex.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20075f87fd2f20075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20076607fd2f2007660 /* src/pcm/GuPCMContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20076c87fd2f20076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20077307fd2f2007730 /* src/pcm/GuPCMContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20077987fd2f2007798 /* src/pcm/GuPCMContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20078007fd2f2007800 /* src/pcm/GuPCMContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20078687fd2f2007868 /* src/pcm/GuPCMContactSphereConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereConvex.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20078d07fd2f20078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20079387fd2f2007938 /* src/pcm/GuPCMContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf20079a07fd2f20079a0 /* src/pcm/GuPCMContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSpherePlane.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2007a087fd2f2007a08 /* src/pcm/GuPCMContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereSphere.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2007a707fd2f2007a70 /* src/pcm/GuPCMShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2007ad87fd2f2007ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.cpp"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2007b407fd2f2007b40 /* src/pcm/GuPersistentContactManifold.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.cpp"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2007ba87fd2f2007ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.cpp"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2007c107fd2f2007c10 /* 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 */
- FFF2ec1a0dc07f8cec1a0dc0 /* Resources */ = {
+ FFF2f18a0c307fd2f18a0c30 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFFec8013a87f8cec8013a8,
+ FFFFf20013a87fd2f20013a8,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFCec1a0dc07f8cec1a0dc0 /* Frameworks */ = {
+ FFFCf18a0c307fd2f18a0c30 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -1852,145 +1852,145 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF8ec1a0dc07f8cec1a0dc0 /* Sources */ = {
+ FFF8f18a0c307fd2f18a0c30 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFFeb9aa8007f8ceb9aa800,
- FFFFeb9aa8687f8ceb9aa868,
- FFFFeb9aa8d07f8ceb9aa8d0,
- FFFFeb9aa9387f8ceb9aa938,
- FFFFeb9aa9a07f8ceb9aa9a0,
- FFFFeb9aaa087f8ceb9aaa08,
- FFFFeb9aaa707f8ceb9aaa70,
- FFFFeb9aaad87f8ceb9aaad8,
- FFFFec8048e07f8cec8048e0,
- FFFFec8049487f8cec804948,
- FFFFec8049b07f8cec8049b0,
- FFFFec804a187f8cec804a18,
- FFFFec804a807f8cec804a80,
- FFFFec804ae87f8cec804ae8,
- FFFFec804b507f8cec804b50,
- FFFFec804bb87f8cec804bb8,
- FFFFec804c207f8cec804c20,
- FFFFec804c887f8cec804c88,
- FFFFec804cf07f8cec804cf0,
- FFFFec804d587f8cec804d58,
- FFFFec804dc07f8cec804dc0,
- FFFFec804e287f8cec804e28,
- FFFFec804e907f8cec804e90,
- FFFFec804ef87f8cec804ef8,
- FFFFec804f607f8cec804f60,
- FFFFec804fc87f8cec804fc8,
- FFFFec8050307f8cec805030,
- FFFFec8050987f8cec805098,
- FFFFec8051007f8cec805100,
- FFFFec8051687f8cec805168,
- FFFFec8051d07f8cec8051d0,
- FFFFec8052387f8cec805238,
- FFFFec8052a07f8cec8052a0,
- FFFFec8053087f8cec805308,
- FFFFec8053707f8cec805370,
- FFFFec8053d87f8cec8053d8,
- FFFFec8054407f8cec805440,
- FFFFec8054a87f8cec8054a8,
- FFFFec8055107f8cec805510,
- FFFFec8055787f8cec805578,
- FFFFec8055e07f8cec8055e0,
- FFFFec8056487f8cec805648,
- FFFFec8056b07f8cec8056b0,
- FFFFec8057187f8cec805718,
- FFFFec8057807f8cec805780,
- FFFFec8057e87f8cec8057e8,
- FFFFec8058507f8cec805850,
- FFFFec8058b87f8cec8058b8,
- FFFFec8059207f8cec805920,
- FFFFec8059887f8cec805988,
- FFFFec8059f07f8cec8059f0,
- FFFFec805a587f8cec805a58,
- FFFFec805ac07f8cec805ac0,
- FFFFec805b287f8cec805b28,
- FFFFec805b907f8cec805b90,
- FFFFec805bf87f8cec805bf8,
- FFFFec805c607f8cec805c60,
- FFFFec805cc87f8cec805cc8,
- FFFFec805d307f8cec805d30,
- FFFFec805d987f8cec805d98,
- FFFFec805e007f8cec805e00,
- FFFFec805e687f8cec805e68,
- FFFFec805ed07f8cec805ed0,
- FFFFec805f387f8cec805f38,
- FFFFec805fa07f8cec805fa0,
- FFFFec8060087f8cec806008,
- FFFFec8060707f8cec806070,
- FFFFec8060d87f8cec8060d8,
- FFFFec8061407f8cec806140,
- FFFFec8061a87f8cec8061a8,
- FFFFec8062107f8cec806210,
- FFFFec8062787f8cec806278,
- FFFFec8062e07f8cec8062e0,
- FFFFec8063487f8cec806348,
- FFFFec8063b07f8cec8063b0,
- FFFFec8064187f8cec806418,
- FFFFec8064807f8cec806480,
- FFFFec8064e87f8cec8064e8,
- FFFFec8065507f8cec806550,
- FFFFec8065b87f8cec8065b8,
- FFFFec8066207f8cec806620,
- FFFFec8066887f8cec806688,
- FFFFec8066f07f8cec8066f0,
- FFFFec8067587f8cec806758,
- FFFFec8067c07f8cec8067c0,
- FFFFec8068287f8cec806828,
- FFFFec8068907f8cec806890,
- FFFFec8068f87f8cec8068f8,
- FFFFec8069607f8cec806960,
- FFFFec8069c87f8cec8069c8,
- FFFFec806a307f8cec806a30,
- FFFFec806a987f8cec806a98,
- FFFFec806b007f8cec806b00,
- FFFFec806b687f8cec806b68,
- FFFFec806bd07f8cec806bd0,
- FFFFec806c387f8cec806c38,
- FFFFec806ca07f8cec806ca0,
- FFFFec806d087f8cec806d08,
- FFFFec806d707f8cec806d70,
- FFFFec806dd87f8cec806dd8,
- FFFFec806e407f8cec806e40,
- FFFFec806ea87f8cec806ea8,
- FFFFec806f107f8cec806f10,
- FFFFec806f787f8cec806f78,
- FFFFec806fe07f8cec806fe0,
- FFFFec8070487f8cec807048,
- FFFFec8070b07f8cec8070b0,
- FFFFec8071187f8cec807118,
- FFFFec8071807f8cec807180,
- FFFFec8071e87f8cec8071e8,
- FFFFec8072507f8cec807250,
- FFFFec8072b87f8cec8072b8,
- FFFFec8073207f8cec807320,
- FFFFec8073887f8cec807388,
- FFFFec8073f07f8cec8073f0,
- FFFFec8074587f8cec807458,
- FFFFec8074c07f8cec8074c0,
- FFFFec8075287f8cec807528,
- FFFFec8075907f8cec807590,
- FFFFec8075f87f8cec8075f8,
- FFFFec8076607f8cec807660,
- FFFFec8076c87f8cec8076c8,
- FFFFec8077307f8cec807730,
- FFFFec8077987f8cec807798,
- FFFFec8078007f8cec807800,
- FFFFec8078687f8cec807868,
- FFFFec8078d07f8cec8078d0,
- FFFFec8079387f8cec807938,
- FFFFec8079a07f8cec8079a0,
- FFFFec807a087f8cec807a08,
- FFFFec807a707f8cec807a70,
- FFFFec807ad87f8cec807ad8,
- FFFFec807b407f8cec807b40,
- FFFFec807ba87f8cec807ba8,
- FFFFec807c107f8cec807c10,
+ FFFFf11aa8007fd2f11aa800,
+ FFFFf11aa8687fd2f11aa868,
+ FFFFf11aa8d07fd2f11aa8d0,
+ FFFFf11aa9387fd2f11aa938,
+ FFFFf11aa9a07fd2f11aa9a0,
+ FFFFf11aaa087fd2f11aaa08,
+ FFFFf11aaa707fd2f11aaa70,
+ FFFFf11aaad87fd2f11aaad8,
+ FFFFf20048e07fd2f20048e0,
+ FFFFf20049487fd2f2004948,
+ FFFFf20049b07fd2f20049b0,
+ FFFFf2004a187fd2f2004a18,
+ FFFFf2004a807fd2f2004a80,
+ FFFFf2004ae87fd2f2004ae8,
+ FFFFf2004b507fd2f2004b50,
+ FFFFf2004bb87fd2f2004bb8,
+ FFFFf2004c207fd2f2004c20,
+ FFFFf2004c887fd2f2004c88,
+ FFFFf2004cf07fd2f2004cf0,
+ FFFFf2004d587fd2f2004d58,
+ FFFFf2004dc07fd2f2004dc0,
+ FFFFf2004e287fd2f2004e28,
+ FFFFf2004e907fd2f2004e90,
+ FFFFf2004ef87fd2f2004ef8,
+ FFFFf2004f607fd2f2004f60,
+ FFFFf2004fc87fd2f2004fc8,
+ FFFFf20050307fd2f2005030,
+ FFFFf20050987fd2f2005098,
+ FFFFf20051007fd2f2005100,
+ FFFFf20051687fd2f2005168,
+ FFFFf20051d07fd2f20051d0,
+ FFFFf20052387fd2f2005238,
+ FFFFf20052a07fd2f20052a0,
+ FFFFf20053087fd2f2005308,
+ FFFFf20053707fd2f2005370,
+ FFFFf20053d87fd2f20053d8,
+ FFFFf20054407fd2f2005440,
+ FFFFf20054a87fd2f20054a8,
+ FFFFf20055107fd2f2005510,
+ FFFFf20055787fd2f2005578,
+ FFFFf20055e07fd2f20055e0,
+ FFFFf20056487fd2f2005648,
+ FFFFf20056b07fd2f20056b0,
+ FFFFf20057187fd2f2005718,
+ FFFFf20057807fd2f2005780,
+ FFFFf20057e87fd2f20057e8,
+ FFFFf20058507fd2f2005850,
+ FFFFf20058b87fd2f20058b8,
+ FFFFf20059207fd2f2005920,
+ FFFFf20059887fd2f2005988,
+ FFFFf20059f07fd2f20059f0,
+ FFFFf2005a587fd2f2005a58,
+ FFFFf2005ac07fd2f2005ac0,
+ FFFFf2005b287fd2f2005b28,
+ FFFFf2005b907fd2f2005b90,
+ FFFFf2005bf87fd2f2005bf8,
+ FFFFf2005c607fd2f2005c60,
+ FFFFf2005cc87fd2f2005cc8,
+ FFFFf2005d307fd2f2005d30,
+ FFFFf2005d987fd2f2005d98,
+ FFFFf2005e007fd2f2005e00,
+ FFFFf2005e687fd2f2005e68,
+ FFFFf2005ed07fd2f2005ed0,
+ FFFFf2005f387fd2f2005f38,
+ FFFFf2005fa07fd2f2005fa0,
+ FFFFf20060087fd2f2006008,
+ FFFFf20060707fd2f2006070,
+ FFFFf20060d87fd2f20060d8,
+ FFFFf20061407fd2f2006140,
+ FFFFf20061a87fd2f20061a8,
+ FFFFf20062107fd2f2006210,
+ FFFFf20062787fd2f2006278,
+ FFFFf20062e07fd2f20062e0,
+ FFFFf20063487fd2f2006348,
+ FFFFf20063b07fd2f20063b0,
+ FFFFf20064187fd2f2006418,
+ FFFFf20064807fd2f2006480,
+ FFFFf20064e87fd2f20064e8,
+ FFFFf20065507fd2f2006550,
+ FFFFf20065b87fd2f20065b8,
+ FFFFf20066207fd2f2006620,
+ FFFFf20066887fd2f2006688,
+ FFFFf20066f07fd2f20066f0,
+ FFFFf20067587fd2f2006758,
+ FFFFf20067c07fd2f20067c0,
+ FFFFf20068287fd2f2006828,
+ FFFFf20068907fd2f2006890,
+ FFFFf20068f87fd2f20068f8,
+ FFFFf20069607fd2f2006960,
+ FFFFf20069c87fd2f20069c8,
+ FFFFf2006a307fd2f2006a30,
+ FFFFf2006a987fd2f2006a98,
+ FFFFf2006b007fd2f2006b00,
+ FFFFf2006b687fd2f2006b68,
+ FFFFf2006bd07fd2f2006bd0,
+ FFFFf2006c387fd2f2006c38,
+ FFFFf2006ca07fd2f2006ca0,
+ FFFFf2006d087fd2f2006d08,
+ FFFFf2006d707fd2f2006d70,
+ FFFFf2006dd87fd2f2006dd8,
+ FFFFf2006e407fd2f2006e40,
+ FFFFf2006ea87fd2f2006ea8,
+ FFFFf2006f107fd2f2006f10,
+ FFFFf2006f787fd2f2006f78,
+ FFFFf2006fe07fd2f2006fe0,
+ FFFFf20070487fd2f2007048,
+ FFFFf20070b07fd2f20070b0,
+ FFFFf20071187fd2f2007118,
+ FFFFf20071807fd2f2007180,
+ FFFFf20071e87fd2f20071e8,
+ FFFFf20072507fd2f2007250,
+ FFFFf20072b87fd2f20072b8,
+ FFFFf20073207fd2f2007320,
+ FFFFf20073887fd2f2007388,
+ FFFFf20073f07fd2f20073f0,
+ FFFFf20074587fd2f2007458,
+ FFFFf20074c07fd2f20074c0,
+ FFFFf20075287fd2f2007528,
+ FFFFf20075907fd2f2007590,
+ FFFFf20075f87fd2f20075f8,
+ FFFFf20076607fd2f2007660,
+ FFFFf20076c87fd2f20076c8,
+ FFFFf20077307fd2f2007730,
+ FFFFf20077987fd2f2007798,
+ FFFFf20078007fd2f2007800,
+ FFFFf20078687fd2f2007868,
+ FFFFf20078d07fd2f20078d0,
+ FFFFf20079387fd2f2007938,
+ FFFFf20079a07fd2f20079a0,
+ FFFFf2007a087fd2f2007a08,
+ FFFFf2007a707fd2f2007a70,
+ FFFFf2007ad87fd2f2007ad8,
+ FFFFf2007b407fd2f2007b40,
+ FFFFf2007ba87fd2f2007ba8,
+ FFFFf2007c107fd2f2007c10,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -1999,132 +1999,132 @@
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
- FFF4ec3fbdb07f8cec3fbdb0 /* PBXTargetDependency */ = {
+ FFF4f1b07af07fd2f1b07af0 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFAec18e0107f8cec18e010 /* PxFoundation */;
- targetProxy = FFF5ec18e0107f8cec18e010 /* PBXContainerItemProxy */;
+ target = FFFAf188de607fd2f188de60 /* PxFoundation */;
+ targetProxy = FFF5f188de607fd2f188de60 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of PxFoundation */
- FFFFeb9a25187f8ceb9a2518 /* src/PsAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDeb9a25187f8ceb9a2518 /* src/PsAllocator.cpp */; };
- FFFFeb9a25807f8ceb9a2580 /* src/PsAssert.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDeb9a25807f8ceb9a2580 /* src/PsAssert.cpp */; };
- FFFFeb9a25e87f8ceb9a25e8 /* src/PsFoundation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDeb9a25e87f8ceb9a25e8 /* src/PsFoundation.cpp */; };
- FFFFeb9a26507f8ceb9a2650 /* src/PsMathUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDeb9a26507f8ceb9a2650 /* src/PsMathUtils.cpp */; };
- FFFFeb9a26b87f8ceb9a26b8 /* src/PsString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDeb9a26b87f8ceb9a26b8 /* src/PsString.cpp */; };
- FFFFeb9a27207f8ceb9a2720 /* src/PsTempAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDeb9a27207f8ceb9a2720 /* src/PsTempAllocator.cpp */; };
- FFFFeb9a27887f8ceb9a2788 /* src/PsUtilities.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDeb9a27887f8ceb9a2788 /* src/PsUtilities.cpp */; };
- FFFFeb9a27f07f8ceb9a27f0 /* src/unix/PsUnixAtomic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDeb9a27f07f8ceb9a27f0 /* src/unix/PsUnixAtomic.cpp */; };
- FFFFeb9a28587f8ceb9a2858 /* src/unix/PsUnixCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDeb9a28587f8ceb9a2858 /* src/unix/PsUnixCpu.cpp */; };
- FFFFeb9a28c07f8ceb9a28c0 /* src/unix/PsUnixFPU.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDeb9a28c07f8ceb9a28c0 /* src/unix/PsUnixFPU.cpp */; };
- FFFFeb9a29287f8ceb9a2928 /* src/unix/PsUnixMutex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDeb9a29287f8ceb9a2928 /* src/unix/PsUnixMutex.cpp */; };
- FFFFeb9a29907f8ceb9a2990 /* src/unix/PsUnixPrintString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDeb9a29907f8ceb9a2990 /* src/unix/PsUnixPrintString.cpp */; };
- FFFFeb9a29f87f8ceb9a29f8 /* src/unix/PsUnixSList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDeb9a29f87f8ceb9a29f8 /* src/unix/PsUnixSList.cpp */; };
- FFFFeb9a2a607f8ceb9a2a60 /* src/unix/PsUnixSocket.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDeb9a2a607f8ceb9a2a60 /* src/unix/PsUnixSocket.cpp */; };
- FFFFeb9a2ac87f8ceb9a2ac8 /* src/unix/PsUnixSync.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDeb9a2ac87f8ceb9a2ac8 /* src/unix/PsUnixSync.cpp */; };
- FFFFeb9a2b307f8ceb9a2b30 /* src/unix/PsUnixThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDeb9a2b307f8ceb9a2b30 /* src/unix/PsUnixThread.cpp */; };
- FFFFeb9a2b987f8ceb9a2b98 /* src/unix/PsUnixTime.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDeb9a2b987f8ceb9a2b98 /* src/unix/PsUnixTime.cpp */; };
+ FFFFf11a25187fd2f11a2518 /* src/PsAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf11a25187fd2f11a2518 /* src/PsAllocator.cpp */; };
+ FFFFf11a25807fd2f11a2580 /* src/PsAssert.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf11a25807fd2f11a2580 /* src/PsAssert.cpp */; };
+ FFFFf11a25e87fd2f11a25e8 /* src/PsFoundation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf11a25e87fd2f11a25e8 /* src/PsFoundation.cpp */; };
+ FFFFf11a26507fd2f11a2650 /* src/PsMathUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf11a26507fd2f11a2650 /* src/PsMathUtils.cpp */; };
+ FFFFf11a26b87fd2f11a26b8 /* src/PsString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf11a26b87fd2f11a26b8 /* src/PsString.cpp */; };
+ FFFFf11a27207fd2f11a2720 /* src/PsTempAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf11a27207fd2f11a2720 /* src/PsTempAllocator.cpp */; };
+ FFFFf11a27887fd2f11a2788 /* src/PsUtilities.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf11a27887fd2f11a2788 /* src/PsUtilities.cpp */; };
+ FFFFf11a27f07fd2f11a27f0 /* src/unix/PsUnixAtomic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf11a27f07fd2f11a27f0 /* src/unix/PsUnixAtomic.cpp */; };
+ FFFFf11a28587fd2f11a2858 /* src/unix/PsUnixCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf11a28587fd2f11a2858 /* src/unix/PsUnixCpu.cpp */; };
+ FFFFf11a28c07fd2f11a28c0 /* src/unix/PsUnixFPU.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf11a28c07fd2f11a28c0 /* src/unix/PsUnixFPU.cpp */; };
+ FFFFf11a29287fd2f11a2928 /* src/unix/PsUnixMutex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf11a29287fd2f11a2928 /* src/unix/PsUnixMutex.cpp */; };
+ FFFFf11a29907fd2f11a2990 /* src/unix/PsUnixPrintString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf11a29907fd2f11a2990 /* src/unix/PsUnixPrintString.cpp */; };
+ FFFFf11a29f87fd2f11a29f8 /* src/unix/PsUnixSList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf11a29f87fd2f11a29f8 /* src/unix/PsUnixSList.cpp */; };
+ FFFFf11a2a607fd2f11a2a60 /* src/unix/PsUnixSocket.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf11a2a607fd2f11a2a60 /* src/unix/PsUnixSocket.cpp */; };
+ FFFFf11a2ac87fd2f11a2ac8 /* src/unix/PsUnixSync.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf11a2ac87fd2f11a2ac8 /* src/unix/PsUnixSync.cpp */; };
+ FFFFf11a2b307fd2f11a2b30 /* src/unix/PsUnixThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf11a2b307fd2f11a2b30 /* src/unix/PsUnixThread.cpp */; };
+ FFFFf11a2b987fd2f11a2b98 /* src/unix/PsUnixTime.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf11a2b987fd2f11a2b98 /* src/unix/PsUnixTime.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFDec18e0107f8cec18e010 /* PxFoundation */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxFoundation"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFDeb996c007f8ceb996c00 /* Px.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Px.h"; path = "../../../../PxShared/include/foundation/Px.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb996c687f8ceb996c68 /* PxAllocatorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAllocatorCallback.h"; path = "../../../../PxShared/include/foundation/PxAllocatorCallback.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb996cd07f8ceb996cd0 /* PxAssert.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAssert.h"; path = "../../../../PxShared/include/foundation/PxAssert.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb996d387f8ceb996d38 /* PxBitAndData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBitAndData.h"; path = "../../../../PxShared/include/foundation/PxBitAndData.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb996da07f8ceb996da0 /* PxBounds3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBounds3.h"; path = "../../../../PxShared/include/foundation/PxBounds3.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb996e087f8ceb996e08 /* PxErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrorCallback.h"; path = "../../../../PxShared/include/foundation/PxErrorCallback.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb996e707f8ceb996e70 /* PxErrors.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrors.h"; path = "../../../../PxShared/include/foundation/PxErrors.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb996ed87f8ceb996ed8 /* PxFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFlags.h"; path = "../../../../PxShared/include/foundation/PxFlags.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb996f407f8ceb996f40 /* PxFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundation.h"; path = "../../../../PxShared/include/foundation/PxFoundation.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb996fa87f8ceb996fa8 /* PxFoundationVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundationVersion.h"; path = "../../../../PxShared/include/foundation/PxFoundationVersion.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9970107f8ceb997010 /* PxIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIO.h"; path = "../../../../PxShared/include/foundation/PxIO.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9970787f8ceb997078 /* PxIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIntrinsics.h"; path = "../../../../PxShared/include/foundation/PxIntrinsics.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9970e07f8ceb9970e0 /* PxMat33.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat33.h"; path = "../../../../PxShared/include/foundation/PxMat33.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9971487f8ceb997148 /* PxMat44.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat44.h"; path = "../../../../PxShared/include/foundation/PxMat44.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9971b07f8ceb9971b0 /* PxMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMath.h"; path = "../../../../PxShared/include/foundation/PxMath.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9972187f8ceb997218 /* PxMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMathUtils.h"; path = "../../../../PxShared/include/foundation/PxMathUtils.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9972807f8ceb997280 /* PxMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMemory.h"; path = "../../../../PxShared/include/foundation/PxMemory.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9972e87f8ceb9972e8 /* PxPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPlane.h"; path = "../../../../PxShared/include/foundation/PxPlane.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9973507f8ceb997350 /* PxPreprocessor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPreprocessor.h"; path = "../../../../PxShared/include/foundation/PxPreprocessor.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9973b87f8ceb9973b8 /* PxProfiler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxProfiler.h"; path = "../../../../PxShared/include/foundation/PxProfiler.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9974207f8ceb997420 /* PxQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQuat.h"; path = "../../../../PxShared/include/foundation/PxQuat.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9974887f8ceb997488 /* PxSimpleTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleTypes.h"; path = "../../../../PxShared/include/foundation/PxSimpleTypes.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9974f07f8ceb9974f0 /* PxStrideIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStrideIterator.h"; path = "../../../../PxShared/include/foundation/PxStrideIterator.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9975587f8ceb997558 /* PxTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTransform.h"; path = "../../../../PxShared/include/foundation/PxTransform.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9975c07f8ceb9975c0 /* PxUnionCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxUnionCast.h"; path = "../../../../PxShared/include/foundation/PxUnionCast.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9976287f8ceb997628 /* PxVec2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec2.h"; path = "../../../../PxShared/include/foundation/PxVec2.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9976907f8ceb997690 /* PxVec3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec3.h"; path = "../../../../PxShared/include/foundation/PxVec3.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9976f87f8ceb9976f8 /* PxVec4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec4.h"; path = "../../../../PxShared/include/foundation/PxVec4.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9977607f8ceb997760 /* unix/PxUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "unix/PxUnixIntrinsics.h"; path = "../../../../PxShared/include/foundation/unix/PxUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9a12007f8ceb9a1200 /* include/Ps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/Ps.h"; path = "../../../../PxShared/src/foundation/include/Ps.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9a12687f8ceb9a1268 /* include/PsAlignedMalloc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlignedMalloc.h"; path = "../../../../PxShared/src/foundation/include/PsAlignedMalloc.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9a12d07f8ceb9a12d0 /* include/PsAlloca.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlloca.h"; path = "../../../../PxShared/src/foundation/include/PsAlloca.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9a13387f8ceb9a1338 /* include/PsAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsAllocator.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9a13a07f8ceb9a13a0 /* include/PsAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAoS.h"; path = "../../../../PxShared/src/foundation/include/PsAoS.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9a14087f8ceb9a1408 /* include/PsArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsArray.h"; path = "../../../../PxShared/src/foundation/include/PsArray.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9a14707f8ceb9a1470 /* include/PsAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAtomic.h"; path = "../../../../PxShared/src/foundation/include/PsAtomic.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9a14d87f8ceb9a14d8 /* include/PsBasicTemplates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBasicTemplates.h"; path = "../../../../PxShared/src/foundation/include/PsBasicTemplates.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9a15407f8ceb9a1540 /* include/PsBitUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBitUtils.h"; path = "../../../../PxShared/src/foundation/include/PsBitUtils.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9a15a87f8ceb9a15a8 /* include/PsBroadcast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBroadcast.h"; path = "../../../../PxShared/src/foundation/include/PsBroadcast.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9a16107f8ceb9a1610 /* include/PsCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsCpu.h"; path = "../../../../PxShared/src/foundation/include/PsCpu.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9a16787f8ceb9a1678 /* include/PsFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFPU.h"; path = "../../../../PxShared/src/foundation/include/PsFPU.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9a16e07f8ceb9a16e0 /* include/PsFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFoundation.h"; path = "../../../../PxShared/src/foundation/include/PsFoundation.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9a17487f8ceb9a1748 /* include/PsHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHash.h"; path = "../../../../PxShared/src/foundation/include/PsHash.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9a17b07f8ceb9a17b0 /* include/PsHashInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashInternals.h"; path = "../../../../PxShared/src/foundation/include/PsHashInternals.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9a18187f8ceb9a1818 /* include/PsHashMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashMap.h"; path = "../../../../PxShared/src/foundation/include/PsHashMap.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9a18807f8ceb9a1880 /* include/PsHashSet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashSet.h"; path = "../../../../PxShared/src/foundation/include/PsHashSet.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9a18e87f8ceb9a18e8 /* include/PsInlineAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAllocator.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9a19507f8ceb9a1950 /* include/PsInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAoS.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9a19b87f8ceb9a19b8 /* include/PsInlineArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineArray.h"; path = "../../../../PxShared/src/foundation/include/PsInlineArray.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9a1a207f8ceb9a1a20 /* include/PsIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/PsIntrinsics.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9a1a887f8ceb9a1a88 /* include/PsMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMathUtils.h"; path = "../../../../PxShared/src/foundation/include/PsMathUtils.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9a1af07f8ceb9a1af0 /* include/PsMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMutex.h"; path = "../../../../PxShared/src/foundation/include/PsMutex.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9a1b587f8ceb9a1b58 /* include/PsPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPool.h"; path = "../../../../PxShared/src/foundation/include/PsPool.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9a1bc07f8ceb9a1bc0 /* include/PsSList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSList.h"; path = "../../../../PxShared/src/foundation/include/PsSList.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9a1c287f8ceb9a1c28 /* include/PsSocket.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSocket.h"; path = "../../../../PxShared/src/foundation/include/PsSocket.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9a1c907f8ceb9a1c90 /* include/PsSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSort.h"; path = "../../../../PxShared/src/foundation/include/PsSort.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9a1cf87f8ceb9a1cf8 /* include/PsSortInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSortInternals.h"; path = "../../../../PxShared/src/foundation/include/PsSortInternals.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9a1d607f8ceb9a1d60 /* include/PsString.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsString.h"; path = "../../../../PxShared/src/foundation/include/PsString.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9a1dc87f8ceb9a1dc8 /* include/PsSync.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSync.h"; path = "../../../../PxShared/src/foundation/include/PsSync.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9a1e307f8ceb9a1e30 /* include/PsTempAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTempAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsTempAllocator.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9a1e987f8ceb9a1e98 /* include/PsThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsThread.h"; path = "../../../../PxShared/src/foundation/include/PsThread.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9a1f007f8ceb9a1f00 /* include/PsTime.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTime.h"; path = "../../../../PxShared/src/foundation/include/PsTime.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9a1f687f8ceb9a1f68 /* include/PsUserAllocated.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUserAllocated.h"; path = "../../../../PxShared/src/foundation/include/PsUserAllocated.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9a1fd07f8ceb9a1fd0 /* include/PsUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsUtilities.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9a20387f8ceb9a2038 /* include/PsVecMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMath.h"; path = "../../../../PxShared/src/foundation/include/PsVecMath.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9a20a07f8ceb9a20a0 /* include/PsVecMathAoSScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalar.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalar.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9a21087f8ceb9a2108 /* include/PsVecMathAoSScalarInline.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalarInline.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalarInline.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9a21707f8ceb9a2170 /* include/PsVecMathSSE.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathSSE.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathSSE.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9a21d87f8ceb9a21d8 /* include/PsVecMathUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathUtilities.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9a22407f8ceb9a2240 /* include/PsVecQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecQuat.h"; path = "../../../../PxShared/src/foundation/include/PsVecQuat.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9a22a87f8ceb9a22a8 /* include/PsVecTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecTransform.h"; path = "../../../../PxShared/src/foundation/include/PsVecTransform.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9a23107f8ceb9a2310 /* include/unix/PsUnixAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixAoS.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9a23787f8ceb9a2378 /* include/unix/PsUnixFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixFPU.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixFPU.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9a23e07f8ceb9a23e0 /* include/unix/PsUnixInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixInlineAoS.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9a24487f8ceb9a2448 /* include/unix/PsUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9a24b07f8ceb9a24b0 /* include/unix/PsUnixTrigConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixTrigConstants.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixTrigConstants.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9a25187f8ceb9a2518 /* src/PsAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsAllocator.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDeb9a25807f8ceb9a2580 /* src/PsAssert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAssert.cpp"; path = "../../../../PxShared/src/foundation/src/PsAssert.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDeb9a25e87f8ceb9a25e8 /* src/PsFoundation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsFoundation.cpp"; path = "../../../../PxShared/src/foundation/src/PsFoundation.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDeb9a26507f8ceb9a2650 /* src/PsMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsMathUtils.cpp"; path = "../../../../PxShared/src/foundation/src/PsMathUtils.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDeb9a26b87f8ceb9a26b8 /* src/PsString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsString.cpp"; path = "../../../../PxShared/src/foundation/src/PsString.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDeb9a27207f8ceb9a2720 /* src/PsTempAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsTempAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsTempAllocator.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDeb9a27887f8ceb9a2788 /* src/PsUtilities.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsUtilities.cpp"; path = "../../../../PxShared/src/foundation/src/PsUtilities.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDeb9a27f07f8ceb9a27f0 /* src/unix/PsUnixAtomic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixAtomic.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixAtomic.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDeb9a28587f8ceb9a2858 /* src/unix/PsUnixCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixCpu.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixCpu.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDeb9a28c07f8ceb9a28c0 /* src/unix/PsUnixFPU.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixFPU.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixFPU.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDeb9a29287f8ceb9a2928 /* src/unix/PsUnixMutex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixMutex.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixMutex.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDeb9a29907f8ceb9a2990 /* src/unix/PsUnixPrintString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixPrintString.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixPrintString.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDeb9a29f87f8ceb9a29f8 /* src/unix/PsUnixSList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSList.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSList.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDeb9a2a607f8ceb9a2a60 /* src/unix/PsUnixSocket.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSocket.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSocket.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDeb9a2ac87f8ceb9a2ac8 /* src/unix/PsUnixSync.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSync.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSync.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDeb9a2b307f8ceb9a2b30 /* src/unix/PsUnixThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixThread.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixThread.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDeb9a2b987f8ceb9a2b98 /* src/unix/PsUnixTime.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixTime.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixTime.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf188de607fd2f188de60 /* PxFoundation */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxFoundation"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFDf1196c007fd2f1196c00 /* Px.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Px.h"; path = "../../../../PxShared/include/foundation/Px.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf1196c687fd2f1196c68 /* PxAllocatorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAllocatorCallback.h"; path = "../../../../PxShared/include/foundation/PxAllocatorCallback.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf1196cd07fd2f1196cd0 /* PxAssert.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAssert.h"; path = "../../../../PxShared/include/foundation/PxAssert.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf1196d387fd2f1196d38 /* PxBitAndData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBitAndData.h"; path = "../../../../PxShared/include/foundation/PxBitAndData.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf1196da07fd2f1196da0 /* PxBounds3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBounds3.h"; path = "../../../../PxShared/include/foundation/PxBounds3.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf1196e087fd2f1196e08 /* PxErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrorCallback.h"; path = "../../../../PxShared/include/foundation/PxErrorCallback.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf1196e707fd2f1196e70 /* PxErrors.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrors.h"; path = "../../../../PxShared/include/foundation/PxErrors.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf1196ed87fd2f1196ed8 /* PxFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFlags.h"; path = "../../../../PxShared/include/foundation/PxFlags.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf1196f407fd2f1196f40 /* PxFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundation.h"; path = "../../../../PxShared/include/foundation/PxFoundation.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf1196fa87fd2f1196fa8 /* PxFoundationVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundationVersion.h"; path = "../../../../PxShared/include/foundation/PxFoundationVersion.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11970107fd2f1197010 /* PxIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIO.h"; path = "../../../../PxShared/include/foundation/PxIO.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11970787fd2f1197078 /* PxIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIntrinsics.h"; path = "../../../../PxShared/include/foundation/PxIntrinsics.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11970e07fd2f11970e0 /* PxMat33.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat33.h"; path = "../../../../PxShared/include/foundation/PxMat33.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11971487fd2f1197148 /* PxMat44.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat44.h"; path = "../../../../PxShared/include/foundation/PxMat44.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11971b07fd2f11971b0 /* PxMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMath.h"; path = "../../../../PxShared/include/foundation/PxMath.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11972187fd2f1197218 /* PxMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMathUtils.h"; path = "../../../../PxShared/include/foundation/PxMathUtils.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11972807fd2f1197280 /* PxMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMemory.h"; path = "../../../../PxShared/include/foundation/PxMemory.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11972e87fd2f11972e8 /* PxPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPlane.h"; path = "../../../../PxShared/include/foundation/PxPlane.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11973507fd2f1197350 /* PxPreprocessor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPreprocessor.h"; path = "../../../../PxShared/include/foundation/PxPreprocessor.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11973b87fd2f11973b8 /* PxProfiler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxProfiler.h"; path = "../../../../PxShared/include/foundation/PxProfiler.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11974207fd2f1197420 /* PxQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQuat.h"; path = "../../../../PxShared/include/foundation/PxQuat.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11974887fd2f1197488 /* PxSimpleTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleTypes.h"; path = "../../../../PxShared/include/foundation/PxSimpleTypes.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11974f07fd2f11974f0 /* PxStrideIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStrideIterator.h"; path = "../../../../PxShared/include/foundation/PxStrideIterator.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11975587fd2f1197558 /* PxTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTransform.h"; path = "../../../../PxShared/include/foundation/PxTransform.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11975c07fd2f11975c0 /* PxUnionCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxUnionCast.h"; path = "../../../../PxShared/include/foundation/PxUnionCast.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11976287fd2f1197628 /* PxVec2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec2.h"; path = "../../../../PxShared/include/foundation/PxVec2.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11976907fd2f1197690 /* PxVec3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec3.h"; path = "../../../../PxShared/include/foundation/PxVec3.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11976f87fd2f11976f8 /* PxVec4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec4.h"; path = "../../../../PxShared/include/foundation/PxVec4.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11977607fd2f1197760 /* unix/PxUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "unix/PxUnixIntrinsics.h"; path = "../../../../PxShared/include/foundation/unix/PxUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11a12007fd2f11a1200 /* include/Ps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/Ps.h"; path = "../../../../PxShared/src/foundation/include/Ps.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11a12687fd2f11a1268 /* include/PsAlignedMalloc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlignedMalloc.h"; path = "../../../../PxShared/src/foundation/include/PsAlignedMalloc.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11a12d07fd2f11a12d0 /* include/PsAlloca.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlloca.h"; path = "../../../../PxShared/src/foundation/include/PsAlloca.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11a13387fd2f11a1338 /* include/PsAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsAllocator.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11a13a07fd2f11a13a0 /* include/PsAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAoS.h"; path = "../../../../PxShared/src/foundation/include/PsAoS.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11a14087fd2f11a1408 /* include/PsArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsArray.h"; path = "../../../../PxShared/src/foundation/include/PsArray.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11a14707fd2f11a1470 /* include/PsAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAtomic.h"; path = "../../../../PxShared/src/foundation/include/PsAtomic.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11a14d87fd2f11a14d8 /* include/PsBasicTemplates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBasicTemplates.h"; path = "../../../../PxShared/src/foundation/include/PsBasicTemplates.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11a15407fd2f11a1540 /* include/PsBitUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBitUtils.h"; path = "../../../../PxShared/src/foundation/include/PsBitUtils.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11a15a87fd2f11a15a8 /* include/PsBroadcast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBroadcast.h"; path = "../../../../PxShared/src/foundation/include/PsBroadcast.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11a16107fd2f11a1610 /* include/PsCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsCpu.h"; path = "../../../../PxShared/src/foundation/include/PsCpu.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11a16787fd2f11a1678 /* include/PsFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFPU.h"; path = "../../../../PxShared/src/foundation/include/PsFPU.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11a16e07fd2f11a16e0 /* include/PsFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFoundation.h"; path = "../../../../PxShared/src/foundation/include/PsFoundation.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11a17487fd2f11a1748 /* include/PsHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHash.h"; path = "../../../../PxShared/src/foundation/include/PsHash.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11a17b07fd2f11a17b0 /* include/PsHashInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashInternals.h"; path = "../../../../PxShared/src/foundation/include/PsHashInternals.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11a18187fd2f11a1818 /* include/PsHashMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashMap.h"; path = "../../../../PxShared/src/foundation/include/PsHashMap.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11a18807fd2f11a1880 /* include/PsHashSet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashSet.h"; path = "../../../../PxShared/src/foundation/include/PsHashSet.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11a18e87fd2f11a18e8 /* include/PsInlineAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAllocator.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11a19507fd2f11a1950 /* include/PsInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAoS.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11a19b87fd2f11a19b8 /* include/PsInlineArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineArray.h"; path = "../../../../PxShared/src/foundation/include/PsInlineArray.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11a1a207fd2f11a1a20 /* include/PsIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/PsIntrinsics.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11a1a887fd2f11a1a88 /* include/PsMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMathUtils.h"; path = "../../../../PxShared/src/foundation/include/PsMathUtils.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11a1af07fd2f11a1af0 /* include/PsMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMutex.h"; path = "../../../../PxShared/src/foundation/include/PsMutex.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11a1b587fd2f11a1b58 /* include/PsPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPool.h"; path = "../../../../PxShared/src/foundation/include/PsPool.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11a1bc07fd2f11a1bc0 /* include/PsSList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSList.h"; path = "../../../../PxShared/src/foundation/include/PsSList.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11a1c287fd2f11a1c28 /* include/PsSocket.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSocket.h"; path = "../../../../PxShared/src/foundation/include/PsSocket.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11a1c907fd2f11a1c90 /* include/PsSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSort.h"; path = "../../../../PxShared/src/foundation/include/PsSort.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11a1cf87fd2f11a1cf8 /* include/PsSortInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSortInternals.h"; path = "../../../../PxShared/src/foundation/include/PsSortInternals.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11a1d607fd2f11a1d60 /* include/PsString.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsString.h"; path = "../../../../PxShared/src/foundation/include/PsString.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11a1dc87fd2f11a1dc8 /* include/PsSync.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSync.h"; path = "../../../../PxShared/src/foundation/include/PsSync.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11a1e307fd2f11a1e30 /* include/PsTempAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTempAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsTempAllocator.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11a1e987fd2f11a1e98 /* include/PsThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsThread.h"; path = "../../../../PxShared/src/foundation/include/PsThread.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11a1f007fd2f11a1f00 /* include/PsTime.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTime.h"; path = "../../../../PxShared/src/foundation/include/PsTime.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11a1f687fd2f11a1f68 /* include/PsUserAllocated.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUserAllocated.h"; path = "../../../../PxShared/src/foundation/include/PsUserAllocated.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11a1fd07fd2f11a1fd0 /* include/PsUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsUtilities.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11a20387fd2f11a2038 /* include/PsVecMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMath.h"; path = "../../../../PxShared/src/foundation/include/PsVecMath.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11a20a07fd2f11a20a0 /* include/PsVecMathAoSScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalar.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalar.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11a21087fd2f11a2108 /* include/PsVecMathAoSScalarInline.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalarInline.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalarInline.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11a21707fd2f11a2170 /* include/PsVecMathSSE.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathSSE.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathSSE.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11a21d87fd2f11a21d8 /* include/PsVecMathUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathUtilities.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11a22407fd2f11a2240 /* include/PsVecQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecQuat.h"; path = "../../../../PxShared/src/foundation/include/PsVecQuat.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11a22a87fd2f11a22a8 /* include/PsVecTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecTransform.h"; path = "../../../../PxShared/src/foundation/include/PsVecTransform.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11a23107fd2f11a2310 /* include/unix/PsUnixAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixAoS.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11a23787fd2f11a2378 /* include/unix/PsUnixFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixFPU.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixFPU.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11a23e07fd2f11a23e0 /* include/unix/PsUnixInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixInlineAoS.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11a24487fd2f11a2448 /* include/unix/PsUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11a24b07fd2f11a24b0 /* include/unix/PsUnixTrigConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixTrigConstants.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixTrigConstants.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11a25187fd2f11a2518 /* src/PsAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsAllocator.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf11a25807fd2f11a2580 /* src/PsAssert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAssert.cpp"; path = "../../../../PxShared/src/foundation/src/PsAssert.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf11a25e87fd2f11a25e8 /* src/PsFoundation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsFoundation.cpp"; path = "../../../../PxShared/src/foundation/src/PsFoundation.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf11a26507fd2f11a2650 /* src/PsMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsMathUtils.cpp"; path = "../../../../PxShared/src/foundation/src/PsMathUtils.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf11a26b87fd2f11a26b8 /* src/PsString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsString.cpp"; path = "../../../../PxShared/src/foundation/src/PsString.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf11a27207fd2f11a2720 /* src/PsTempAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsTempAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsTempAllocator.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf11a27887fd2f11a2788 /* src/PsUtilities.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsUtilities.cpp"; path = "../../../../PxShared/src/foundation/src/PsUtilities.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf11a27f07fd2f11a27f0 /* src/unix/PsUnixAtomic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixAtomic.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixAtomic.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf11a28587fd2f11a2858 /* src/unix/PsUnixCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixCpu.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixCpu.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf11a28c07fd2f11a28c0 /* src/unix/PsUnixFPU.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixFPU.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixFPU.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf11a29287fd2f11a2928 /* src/unix/PsUnixMutex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixMutex.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixMutex.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf11a29907fd2f11a2990 /* src/unix/PsUnixPrintString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixPrintString.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixPrintString.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf11a29f87fd2f11a29f8 /* src/unix/PsUnixSList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSList.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSList.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf11a2a607fd2f11a2a60 /* src/unix/PsUnixSocket.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSocket.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSocket.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf11a2ac87fd2f11a2ac8 /* src/unix/PsUnixSync.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSync.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSync.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf11a2b307fd2f11a2b30 /* src/unix/PsUnixThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixThread.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixThread.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf11a2b987fd2f11a2b98 /* 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 */
- FFF2ec18e0107f8cec18e010 /* Resources */ = {
+ FFF2f188de607fd2f188de60 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2134,7 +2134,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFCec18e0107f8cec18e010 /* Frameworks */ = {
+ FFFCf188de607fd2f188de60 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2144,27 +2144,27 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF8ec18e0107f8cec18e010 /* Sources */ = {
+ FFF8f188de607fd2f188de60 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFFeb9a25187f8ceb9a2518,
- FFFFeb9a25807f8ceb9a2580,
- FFFFeb9a25e87f8ceb9a25e8,
- FFFFeb9a26507f8ceb9a2650,
- FFFFeb9a26b87f8ceb9a26b8,
- FFFFeb9a27207f8ceb9a2720,
- FFFFeb9a27887f8ceb9a2788,
- FFFFeb9a27f07f8ceb9a27f0,
- FFFFeb9a28587f8ceb9a2858,
- FFFFeb9a28c07f8ceb9a28c0,
- FFFFeb9a29287f8ceb9a2928,
- FFFFeb9a29907f8ceb9a2990,
- FFFFeb9a29f87f8ceb9a29f8,
- FFFFeb9a2a607f8ceb9a2a60,
- FFFFeb9a2ac87f8ceb9a2ac8,
- FFFFeb9a2b307f8ceb9a2b30,
- FFFFeb9a2b987f8ceb9a2b98,
+ FFFFf11a25187fd2f11a2518,
+ FFFFf11a25807fd2f11a2580,
+ FFFFf11a25e87fd2f11a25e8,
+ FFFFf11a26507fd2f11a2650,
+ FFFFf11a26b87fd2f11a26b8,
+ FFFFf11a27207fd2f11a2720,
+ FFFFf11a27887fd2f11a2788,
+ FFFFf11a27f07fd2f11a27f0,
+ FFFFf11a28587fd2f11a2858,
+ FFFFf11a28c07fd2f11a28c0,
+ FFFFf11a29287fd2f11a2928,
+ FFFFf11a29907fd2f11a2990,
+ FFFFf11a29f87fd2f11a29f8,
+ FFFFf11a2a607fd2f11a2a60,
+ FFFFf11a2ac87fd2f11a2ac8,
+ FFFFf11a2b307fd2f11a2b30,
+ FFFFf11a2b987fd2f11a2b98,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -2176,103 +2176,103 @@
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of PxPvdSDK */
- FFFFee00ffa87f8cee00ffa8 /* src/PxProfileEventImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee00ffa87f8cee00ffa8 /* src/PxProfileEventImpl.cpp */; };
- FFFFee0100107f8cee010010 /* src/PxPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0100107f8cee010010 /* src/PxPvd.cpp */; };
- FFFFee0100787f8cee010078 /* src/PxPvdDataStream.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0100787f8cee010078 /* src/PxPvdDataStream.cpp */; };
- FFFFee0100e07f8cee0100e0 /* src/PxPvdDefaultFileTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0100e07f8cee0100e0 /* src/PxPvdDefaultFileTransport.cpp */; };
- FFFFee0101487f8cee010148 /* src/PxPvdDefaultSocketTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0101487f8cee010148 /* src/PxPvdDefaultSocketTransport.cpp */; };
- FFFFee0101b07f8cee0101b0 /* src/PxPvdImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0101b07f8cee0101b0 /* src/PxPvdImpl.cpp */; };
- FFFFee0102187f8cee010218 /* src/PxPvdMemClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0102187f8cee010218 /* src/PxPvdMemClient.cpp */; };
- FFFFee0102807f8cee010280 /* src/PxPvdObjectModelMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0102807f8cee010280 /* src/PxPvdObjectModelMetaData.cpp */; };
- FFFFee0102e87f8cee0102e8 /* src/PxPvdObjectRegistrar.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0102e87f8cee0102e8 /* src/PxPvdObjectRegistrar.cpp */; };
- FFFFee0103507f8cee010350 /* src/PxPvdProfileZoneClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0103507f8cee010350 /* src/PxPvdProfileZoneClient.cpp */; };
- FFFFee0103b87f8cee0103b8 /* src/PxPvdUserRenderer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0103b87f8cee0103b8 /* src/PxPvdUserRenderer.cpp */; };
+ FFFFf300f9a87fd2f300f9a8 /* src/PxProfileEventImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf300f9a87fd2f300f9a8 /* src/PxProfileEventImpl.cpp */; };
+ FFFFf300fa107fd2f300fa10 /* src/PxPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf300fa107fd2f300fa10 /* src/PxPvd.cpp */; };
+ FFFFf300fa787fd2f300fa78 /* src/PxPvdDataStream.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf300fa787fd2f300fa78 /* src/PxPvdDataStream.cpp */; };
+ FFFFf300fae07fd2f300fae0 /* src/PxPvdDefaultFileTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf300fae07fd2f300fae0 /* src/PxPvdDefaultFileTransport.cpp */; };
+ FFFFf300fb487fd2f300fb48 /* src/PxPvdDefaultSocketTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf300fb487fd2f300fb48 /* src/PxPvdDefaultSocketTransport.cpp */; };
+ FFFFf300fbb07fd2f300fbb0 /* src/PxPvdImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf300fbb07fd2f300fbb0 /* src/PxPvdImpl.cpp */; };
+ FFFFf300fc187fd2f300fc18 /* src/PxPvdMemClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf300fc187fd2f300fc18 /* src/PxPvdMemClient.cpp */; };
+ FFFFf300fc807fd2f300fc80 /* src/PxPvdObjectModelMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf300fc807fd2f300fc80 /* src/PxPvdObjectModelMetaData.cpp */; };
+ FFFFf300fce87fd2f300fce8 /* src/PxPvdObjectRegistrar.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf300fce87fd2f300fce8 /* src/PxPvdObjectRegistrar.cpp */; };
+ FFFFf300fd507fd2f300fd50 /* src/PxPvdProfileZoneClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf300fd507fd2f300fd50 /* src/PxPvdProfileZoneClient.cpp */; };
+ FFFFf300fdb87fd2f300fdb8 /* src/PxPvdUserRenderer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf300fdb87fd2f300fdb8 /* src/PxPvdUserRenderer.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFDed809f207f8ced809f20 /* PxPvdSDK */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxPvdSDK"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFDed80ccc07f8ced80ccc0 /* PxPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvd.h"; path = "../../../../PxShared/include/pvd/PxPvd.h"; sourceTree = SOURCE_ROOT; };
- FFFDed80cd287f8ced80cd28 /* PxPvdTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvdTransport.h"; path = "../../../../PxShared/include/pvd/PxPvdTransport.h"; sourceTree = SOURCE_ROOT; };
- FFFDee00fc007f8cee00fc00 /* include/PsPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPvd.h"; path = "../../../../PxShared/src/pvd/include/PsPvd.h"; sourceTree = SOURCE_ROOT; };
- FFFDee00fc687f8cee00fc68 /* include/PxProfileAllocatorWrapper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxProfileAllocatorWrapper.h"; path = "../../../../PxShared/src/pvd/include/PxProfileAllocatorWrapper.h"; sourceTree = SOURCE_ROOT; };
- FFFDee00fcd07f8cee00fcd0 /* include/PxPvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdClient.h"; path = "../../../../PxShared/src/pvd/include/PxPvdClient.h"; sourceTree = SOURCE_ROOT; };
- FFFDee00fd387f8cee00fd38 /* include/PxPvdDataStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStream.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStream.h"; sourceTree = SOURCE_ROOT; };
- FFFDee00fda07f8cee00fda0 /* include/PxPvdDataStreamHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStreamHelpers.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStreamHelpers.h"; sourceTree = SOURCE_ROOT; };
- FFFDee00fe087f8cee00fe08 /* include/PxPvdErrorCodes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdErrorCodes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdErrorCodes.h"; sourceTree = SOURCE_ROOT; };
- FFFDee00fe707f8cee00fe70 /* include/PxPvdObjectModelBaseTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdObjectModelBaseTypes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdObjectModelBaseTypes.h"; sourceTree = SOURCE_ROOT; };
- FFFDee00fed87f8cee00fed8 /* include/PxPvdRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdRenderBuffer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdRenderBuffer.h"; sourceTree = SOURCE_ROOT; };
- FFFDee00ff407f8cee00ff40 /* include/PxPvdUserRenderer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdUserRenderer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdUserRenderer.h"; sourceTree = SOURCE_ROOT; };
- FFFDee00ffa87f8cee00ffa8 /* src/PxProfileEventImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxProfileEventImpl.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0100107f8cee010010 /* src/PxPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvd.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvd.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0100787f8cee010078 /* src/PxPvdDataStream.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDataStream.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDataStream.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0100e07f8cee0100e0 /* src/PxPvdDefaultFileTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0101487f8cee010148 /* src/PxPvdDefaultSocketTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0101b07f8cee0101b0 /* src/PxPvdImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0102187f8cee010218 /* src/PxPvdMemClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0102807f8cee010280 /* src/PxPvdObjectModelMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0102e87f8cee0102e8 /* src/PxPvdObjectRegistrar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0103507f8cee010350 /* src/PxPvdProfileZoneClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0103b87f8cee0103b8 /* src/PxPvdUserRenderer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderer.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderer.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0104207f8cee010420 /* src/PxProfileBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileBase.h"; path = "../../../../PxShared/src/pvd/src/PxProfileBase.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0104887f8cee010488 /* src/PxProfileCompileTimeEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileCompileTimeEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileCompileTimeEventFilter.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0104f07f8cee0104f0 /* src/PxProfileContextProvider.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProvider.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProvider.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0105587f8cee010558 /* src/PxProfileContextProviderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProviderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProviderImpl.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0105c07f8cee0105c0 /* src/PxProfileDataBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataBuffer.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0106287f8cee010628 /* src/PxProfileDataParsing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataParsing.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataParsing.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0106907f8cee010690 /* src/PxProfileEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBuffer.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0106f87f8cee0106f8 /* src/PxProfileEventBufferAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferAtomic.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferAtomic.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0107607f8cee010760 /* src/PxProfileEventBufferClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClient.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClient.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0107c87f8cee0107c8 /* src/PxProfileEventBufferClientManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClientManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClientManager.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0108307f8cee010830 /* src/PxProfileEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventFilter.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0108987f8cee010898 /* src/PxProfileEventHandler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventHandler.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventHandler.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0109007f8cee010900 /* src/PxProfileEventId.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventId.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventId.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0109687f8cee010968 /* src/PxProfileEventMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventMutex.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventMutex.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0109d07f8cee0109d0 /* src/PxProfileEventNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventNames.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventNames.h"; sourceTree = SOURCE_ROOT; };
- FFFDee010a387f8cee010a38 /* src/PxProfileEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventParser.h"; sourceTree = SOURCE_ROOT; };
- FFFDee010aa07f8cee010aa0 /* src/PxProfileEventSender.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSender.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSender.h"; sourceTree = SOURCE_ROOT; };
- FFFDee010b087f8cee010b08 /* src/PxProfileEventSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSerialization.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSerialization.h"; sourceTree = SOURCE_ROOT; };
- FFFDee010b707f8cee010b70 /* src/PxProfileEventSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSystem.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSystem.h"; sourceTree = SOURCE_ROOT; };
- FFFDee010bd87f8cee010bd8 /* src/PxProfileEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEvents.h"; sourceTree = SOURCE_ROOT; };
- FFFDee010c407f8cee010c40 /* src/PxProfileMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemory.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemory.h"; sourceTree = SOURCE_ROOT; };
- FFFDee010ca87f8cee010ca8 /* src/PxProfileMemoryBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryBuffer.h"; sourceTree = SOURCE_ROOT; };
- FFFDee010d107f8cee010d10 /* src/PxProfileMemoryEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventBuffer.h"; sourceTree = SOURCE_ROOT; };
- FFFDee010d787f8cee010d78 /* src/PxProfileMemoryEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventParser.h"; sourceTree = SOURCE_ROOT; };
- FFFDee010de07f8cee010de0 /* src/PxProfileMemoryEventRecorder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventRecorder.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventRecorder.h"; sourceTree = SOURCE_ROOT; };
- FFFDee010e487f8cee010e48 /* src/PxProfileMemoryEventReflexiveWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventReflexiveWriter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventReflexiveWriter.h"; sourceTree = SOURCE_ROOT; };
- FFFDee010eb07f8cee010eb0 /* src/PxProfileMemoryEventSummarizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventSummarizer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventSummarizer.h"; sourceTree = SOURCE_ROOT; };
- FFFDee010f187f8cee010f18 /* src/PxProfileMemoryEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventTypes.h"; sourceTree = SOURCE_ROOT; };
- FFFDee010f807f8cee010f80 /* src/PxProfileMemoryEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEvents.h"; sourceTree = SOURCE_ROOT; };
- FFFDee010fe87f8cee010fe8 /* src/PxProfileScopedEvent.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedEvent.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedEvent.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0110507f8cee011050 /* src/PxProfileScopedMutexLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedMutexLock.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedMutexLock.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0110b87f8cee0110b8 /* src/PxProfileZone.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZone.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZone.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0111207f8cee011120 /* src/PxProfileZoneImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneImpl.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0111887f8cee011188 /* src/PxProfileZoneManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManager.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0111f07f8cee0111f0 /* src/PxProfileZoneManagerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManagerImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManagerImpl.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0112587f8cee011258 /* src/PxPvdBits.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdBits.h"; path = "../../../../PxShared/src/pvd/src/PxPvdBits.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0112c07f8cee0112c0 /* src/PxPvdByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdByteStreams.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0113287f8cee011328 /* src/PxPvdCommStreamEventSink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEventSink.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEventSink.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0113907f8cee011390 /* src/PxPvdCommStreamEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEvents.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEvents.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0113f87f8cee0113f8 /* src/PxPvdCommStreamSDKEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamSDKEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamSDKEventTypes.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0114607f8cee011460 /* src/PxPvdCommStreamTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamTypes.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0114c87f8cee0114c8 /* src/PxPvdDefaultFileTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0115307f8cee011530 /* src/PxPvdDefaultSocketTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0115987f8cee011598 /* src/PxPvdFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdFoundation.h"; path = "../../../../PxShared/src/pvd/src/PxPvdFoundation.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0116007f8cee011600 /* src/PxPvdImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0116687f8cee011668 /* src/PxPvdInternalByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdInternalByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdInternalByteStreams.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0116d07f8cee0116d0 /* src/PxPvdMarshalling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMarshalling.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMarshalling.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0117387f8cee011738 /* src/PxPvdMemClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0117a07f8cee0117a0 /* src/PxPvdObjectModel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModel.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModel.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0118087f8cee011808 /* src/PxPvdObjectModelInternalTypeDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypeDefs.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypeDefs.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0118707f8cee011870 /* src/PxPvdObjectModelInternalTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypes.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0118d87f8cee0118d8 /* src/PxPvdObjectModelMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0119407f8cee011940 /* src/PxPvdObjectRegistrar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0119a87f8cee0119a8 /* src/PxPvdProfileZoneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.h"; sourceTree = SOURCE_ROOT; };
- FFFDee011a107f8cee011a10 /* src/PxPvdUserRenderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderImpl.h"; sourceTree = SOURCE_ROOT; };
- FFFDee011a787f8cee011a78 /* src/PxPvdUserRenderTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderTypes.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2809f007fd2f2809f00 /* PxPvdSDK */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxPvdSDK"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFDf280cc207fd2f280cc20 /* PxPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvd.h"; path = "../../../../PxShared/include/pvd/PxPvd.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf280cc887fd2f280cc88 /* PxPvdTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvdTransport.h"; path = "../../../../PxShared/include/pvd/PxPvdTransport.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf300f6007fd2f300f600 /* include/PsPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPvd.h"; path = "../../../../PxShared/src/pvd/include/PsPvd.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf300f6687fd2f300f668 /* include/PxProfileAllocatorWrapper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxProfileAllocatorWrapper.h"; path = "../../../../PxShared/src/pvd/include/PxProfileAllocatorWrapper.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf300f6d07fd2f300f6d0 /* include/PxPvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdClient.h"; path = "../../../../PxShared/src/pvd/include/PxPvdClient.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf300f7387fd2f300f738 /* include/PxPvdDataStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStream.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStream.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf300f7a07fd2f300f7a0 /* include/PxPvdDataStreamHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStreamHelpers.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStreamHelpers.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf300f8087fd2f300f808 /* include/PxPvdErrorCodes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdErrorCodes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdErrorCodes.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf300f8707fd2f300f870 /* include/PxPvdObjectModelBaseTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdObjectModelBaseTypes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdObjectModelBaseTypes.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf300f8d87fd2f300f8d8 /* include/PxPvdRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdRenderBuffer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdRenderBuffer.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf300f9407fd2f300f940 /* include/PxPvdUserRenderer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdUserRenderer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdUserRenderer.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf300f9a87fd2f300f9a8 /* src/PxProfileEventImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxProfileEventImpl.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf300fa107fd2f300fa10 /* src/PxPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvd.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvd.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf300fa787fd2f300fa78 /* src/PxPvdDataStream.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDataStream.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDataStream.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf300fae07fd2f300fae0 /* src/PxPvdDefaultFileTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf300fb487fd2f300fb48 /* src/PxPvdDefaultSocketTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf300fbb07fd2f300fbb0 /* src/PxPvdImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf300fc187fd2f300fc18 /* src/PxPvdMemClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf300fc807fd2f300fc80 /* src/PxPvdObjectModelMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf300fce87fd2f300fce8 /* src/PxPvdObjectRegistrar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf300fd507fd2f300fd50 /* src/PxPvdProfileZoneClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf300fdb87fd2f300fdb8 /* src/PxPvdUserRenderer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderer.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderer.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf300fe207fd2f300fe20 /* src/PxProfileBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileBase.h"; path = "../../../../PxShared/src/pvd/src/PxProfileBase.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf300fe887fd2f300fe88 /* src/PxProfileCompileTimeEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileCompileTimeEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileCompileTimeEventFilter.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf300fef07fd2f300fef0 /* src/PxProfileContextProvider.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProvider.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProvider.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf300ff587fd2f300ff58 /* src/PxProfileContextProviderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProviderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProviderImpl.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf300ffc07fd2f300ffc0 /* src/PxProfileDataBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataBuffer.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30100287fd2f3010028 /* src/PxProfileDataParsing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataParsing.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataParsing.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30100907fd2f3010090 /* src/PxProfileEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBuffer.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30100f87fd2f30100f8 /* src/PxProfileEventBufferAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferAtomic.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferAtomic.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30101607fd2f3010160 /* src/PxProfileEventBufferClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClient.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClient.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30101c87fd2f30101c8 /* src/PxProfileEventBufferClientManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClientManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClientManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30102307fd2f3010230 /* src/PxProfileEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventFilter.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30102987fd2f3010298 /* src/PxProfileEventHandler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventHandler.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventHandler.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30103007fd2f3010300 /* src/PxProfileEventId.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventId.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventId.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30103687fd2f3010368 /* src/PxProfileEventMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventMutex.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventMutex.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30103d07fd2f30103d0 /* src/PxProfileEventNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventNames.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventNames.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30104387fd2f3010438 /* src/PxProfileEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventParser.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30104a07fd2f30104a0 /* src/PxProfileEventSender.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSender.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSender.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30105087fd2f3010508 /* src/PxProfileEventSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSerialization.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSerialization.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30105707fd2f3010570 /* src/PxProfileEventSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSystem.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSystem.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30105d87fd2f30105d8 /* src/PxProfileEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEvents.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30106407fd2f3010640 /* src/PxProfileMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemory.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemory.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30106a87fd2f30106a8 /* src/PxProfileMemoryBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryBuffer.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30107107fd2f3010710 /* src/PxProfileMemoryEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventBuffer.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30107787fd2f3010778 /* src/PxProfileMemoryEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventParser.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30107e07fd2f30107e0 /* src/PxProfileMemoryEventRecorder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventRecorder.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventRecorder.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30108487fd2f3010848 /* src/PxProfileMemoryEventReflexiveWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventReflexiveWriter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventReflexiveWriter.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30108b07fd2f30108b0 /* src/PxProfileMemoryEventSummarizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventSummarizer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventSummarizer.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30109187fd2f3010918 /* src/PxProfileMemoryEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventTypes.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30109807fd2f3010980 /* src/PxProfileMemoryEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEvents.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30109e87fd2f30109e8 /* src/PxProfileScopedEvent.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedEvent.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedEvent.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3010a507fd2f3010a50 /* src/PxProfileScopedMutexLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedMutexLock.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedMutexLock.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3010ab87fd2f3010ab8 /* src/PxProfileZone.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZone.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZone.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3010b207fd2f3010b20 /* src/PxProfileZoneImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneImpl.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3010b887fd2f3010b88 /* src/PxProfileZoneManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3010bf07fd2f3010bf0 /* src/PxProfileZoneManagerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManagerImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManagerImpl.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3010c587fd2f3010c58 /* src/PxPvdBits.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdBits.h"; path = "../../../../PxShared/src/pvd/src/PxPvdBits.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3010cc07fd2f3010cc0 /* src/PxPvdByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdByteStreams.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3010d287fd2f3010d28 /* src/PxPvdCommStreamEventSink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEventSink.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEventSink.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3010d907fd2f3010d90 /* src/PxPvdCommStreamEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEvents.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEvents.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3010df87fd2f3010df8 /* src/PxPvdCommStreamSDKEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamSDKEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamSDKEventTypes.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3010e607fd2f3010e60 /* src/PxPvdCommStreamTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamTypes.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3010ec87fd2f3010ec8 /* src/PxPvdDefaultFileTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3010f307fd2f3010f30 /* src/PxPvdDefaultSocketTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3010f987fd2f3010f98 /* src/PxPvdFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdFoundation.h"; path = "../../../../PxShared/src/pvd/src/PxPvdFoundation.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30110007fd2f3011000 /* src/PxPvdImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30110687fd2f3011068 /* src/PxPvdInternalByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdInternalByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdInternalByteStreams.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30110d07fd2f30110d0 /* src/PxPvdMarshalling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMarshalling.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMarshalling.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30111387fd2f3011138 /* src/PxPvdMemClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30111a07fd2f30111a0 /* src/PxPvdObjectModel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModel.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModel.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30112087fd2f3011208 /* src/PxPvdObjectModelInternalTypeDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypeDefs.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypeDefs.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30112707fd2f3011270 /* src/PxPvdObjectModelInternalTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypes.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30112d87fd2f30112d8 /* src/PxPvdObjectModelMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30113407fd2f3011340 /* src/PxPvdObjectRegistrar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30113a87fd2f30113a8 /* src/PxPvdProfileZoneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30114107fd2f3011410 /* src/PxPvdUserRenderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderImpl.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30114787fd2f3011478 /* 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 */
- FFF2ed809f207f8ced809f20 /* Resources */ = {
+ FFF2f2809f007fd2f2809f00 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2282,7 +2282,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFCed809f207f8ced809f20 /* Frameworks */ = {
+ FFFCf2809f007fd2f2809f00 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2292,21 +2292,21 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF8ed809f207f8ced809f20 /* Sources */ = {
+ FFF8f2809f007fd2f2809f00 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFFee00ffa87f8cee00ffa8,
- FFFFee0100107f8cee010010,
- FFFFee0100787f8cee010078,
- FFFFee0100e07f8cee0100e0,
- FFFFee0101487f8cee010148,
- FFFFee0101b07f8cee0101b0,
- FFFFee0102187f8cee010218,
- FFFFee0102807f8cee010280,
- FFFFee0102e87f8cee0102e8,
- FFFFee0103507f8cee010350,
- FFFFee0103b87f8cee0103b8,
+ FFFFf300f9a87fd2f300f9a8,
+ FFFFf300fa107fd2f300fa10,
+ FFFFf300fa787fd2f300fa78,
+ FFFFf300fae07fd2f300fae0,
+ FFFFf300fb487fd2f300fb48,
+ FFFFf300fbb07fd2f300fbb0,
+ FFFFf300fc187fd2f300fc18,
+ FFFFf300fc807fd2f300fc80,
+ FFFFf300fce87fd2f300fce8,
+ FFFFf300fd507fd2f300fd50,
+ FFFFf300fdb87fd2f300fdb8,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -2315,108 +2315,108 @@
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
- FFF4ed80bd707f8ced80bd70 /* PBXTargetDependency */ = {
+ FFF4f28080f07fd2f28080f0 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFAec18e0107f8cec18e010 /* PxFoundation */;
- targetProxy = FFF5ec18e0107f8cec18e010 /* PBXContainerItemProxy */;
+ target = FFFAf188de607fd2f188de60 /* PxFoundation */;
+ targetProxy = FFF5f188de607fd2f188de60 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of LowLevel */
- FFFFec70a2f07f8cec70a2f0 /* px_globals.cpp in API Source */= { isa = PBXBuildFile; fileRef = FFFDec70a2f07f8cec70a2f0 /* px_globals.cpp */; };
- FFFFec70d9307f8cec70d930 /* PxsCCD.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDec70d9307f8cec70d930 /* PxsCCD.cpp */; };
- FFFFec70d9987f8cec70d998 /* PxsContactManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDec70d9987f8cec70d998 /* PxsContactManager.cpp */; };
- FFFFec70da007f8cec70da00 /* PxsContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDec70da007f8cec70da00 /* PxsContext.cpp */; };
- FFFFec70da687f8cec70da68 /* PxsDefaultMemoryManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDec70da687f8cec70da68 /* PxsDefaultMemoryManager.cpp */; };
- FFFFec70dad07f8cec70dad0 /* PxsIslandSim.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDec70dad07f8cec70dad0 /* PxsIslandSim.cpp */; };
- FFFFec70db387f8cec70db38 /* PxsMaterialCombiner.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDec70db387f8cec70db38 /* PxsMaterialCombiner.cpp */; };
- FFFFec70dba07f8cec70dba0 /* PxsNphaseImplementationContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDec70dba07f8cec70dba0 /* PxsNphaseImplementationContext.cpp */; };
- FFFFec70dc087f8cec70dc08 /* PxsSimpleIslandManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDec70dc087f8cec70dc08 /* PxsSimpleIslandManager.cpp */; };
- FFFFed026e007f8ced026e00 /* collision/PxcContact.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDed026e007f8ced026e00 /* collision/PxcContact.cpp */; };
- FFFFed026e687f8ced026e68 /* pipeline/PxcContactCache.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDed026e687f8ced026e68 /* pipeline/PxcContactCache.cpp */; };
- FFFFed026ed07f8ced026ed0 /* pipeline/PxcContactMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDed026ed07f8ced026ed0 /* pipeline/PxcContactMethodImpl.cpp */; };
- FFFFed026f387f8ced026f38 /* pipeline/PxcMaterialHeightField.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDed026f387f8ced026f38 /* pipeline/PxcMaterialHeightField.cpp */; };
- FFFFed026fa07f8ced026fa0 /* pipeline/PxcMaterialMesh.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDed026fa07f8ced026fa0 /* pipeline/PxcMaterialMesh.cpp */; };
- FFFFed0270087f8ced027008 /* pipeline/PxcMaterialMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDed0270087f8ced027008 /* pipeline/PxcMaterialMethodImpl.cpp */; };
- FFFFed0270707f8ced027070 /* pipeline/PxcMaterialShape.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDed0270707f8ced027070 /* pipeline/PxcMaterialShape.cpp */; };
- FFFFed0270d87f8ced0270d8 /* pipeline/PxcNpBatch.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDed0270d87f8ced0270d8 /* pipeline/PxcNpBatch.cpp */; };
- FFFFed0271407f8ced027140 /* pipeline/PxcNpCacheStreamPair.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDed0271407f8ced027140 /* pipeline/PxcNpCacheStreamPair.cpp */; };
- FFFFed0271a87f8ced0271a8 /* pipeline/PxcNpContactPrepShared.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDed0271a87f8ced0271a8 /* pipeline/PxcNpContactPrepShared.cpp */; };
- FFFFed0272107f8ced027210 /* pipeline/PxcNpMemBlockPool.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDed0272107f8ced027210 /* pipeline/PxcNpMemBlockPool.cpp */; };
- FFFFed0272787f8ced027278 /* pipeline/PxcNpThreadContext.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDed0272787f8ced027278 /* pipeline/PxcNpThreadContext.cpp */; };
+ FFFFf282abc07fd2f282abc0 /* px_globals.cpp in API Source */= { isa = PBXBuildFile; fileRef = FFFDf282abc07fd2f282abc0 /* px_globals.cpp */; };
+ FFFFf282e2007fd2f282e200 /* PxsCCD.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDf282e2007fd2f282e200 /* PxsCCD.cpp */; };
+ FFFFf282e2687fd2f282e268 /* PxsContactManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDf282e2687fd2f282e268 /* PxsContactManager.cpp */; };
+ FFFFf282e2d07fd2f282e2d0 /* PxsContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDf282e2d07fd2f282e2d0 /* PxsContext.cpp */; };
+ FFFFf282e3387fd2f282e338 /* PxsDefaultMemoryManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDf282e3387fd2f282e338 /* PxsDefaultMemoryManager.cpp */; };
+ FFFFf282e3a07fd2f282e3a0 /* PxsIslandSim.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDf282e3a07fd2f282e3a0 /* PxsIslandSim.cpp */; };
+ FFFFf282e4087fd2f282e408 /* PxsMaterialCombiner.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDf282e4087fd2f282e408 /* PxsMaterialCombiner.cpp */; };
+ FFFFf282e4707fd2f282e470 /* PxsNphaseImplementationContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDf282e4707fd2f282e470 /* PxsNphaseImplementationContext.cpp */; };
+ FFFFf282e4d87fd2f282e4d8 /* PxsSimpleIslandManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDf282e4d87fd2f282e4d8 /* PxsSimpleIslandManager.cpp */; };
+ FFFFf30174007fd2f3017400 /* collision/PxcContact.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDf30174007fd2f3017400 /* collision/PxcContact.cpp */; };
+ FFFFf30174687fd2f3017468 /* pipeline/PxcContactCache.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDf30174687fd2f3017468 /* pipeline/PxcContactCache.cpp */; };
+ FFFFf30174d07fd2f30174d0 /* pipeline/PxcContactMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDf30174d07fd2f30174d0 /* pipeline/PxcContactMethodImpl.cpp */; };
+ FFFFf30175387fd2f3017538 /* pipeline/PxcMaterialHeightField.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDf30175387fd2f3017538 /* pipeline/PxcMaterialHeightField.cpp */; };
+ FFFFf30175a07fd2f30175a0 /* pipeline/PxcMaterialMesh.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDf30175a07fd2f30175a0 /* pipeline/PxcMaterialMesh.cpp */; };
+ FFFFf30176087fd2f3017608 /* pipeline/PxcMaterialMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDf30176087fd2f3017608 /* pipeline/PxcMaterialMethodImpl.cpp */; };
+ FFFFf30176707fd2f3017670 /* pipeline/PxcMaterialShape.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDf30176707fd2f3017670 /* pipeline/PxcMaterialShape.cpp */; };
+ FFFFf30176d87fd2f30176d8 /* pipeline/PxcNpBatch.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDf30176d87fd2f30176d8 /* pipeline/PxcNpBatch.cpp */; };
+ FFFFf30177407fd2f3017740 /* pipeline/PxcNpCacheStreamPair.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDf30177407fd2f3017740 /* pipeline/PxcNpCacheStreamPair.cpp */; };
+ FFFFf30177a87fd2f30177a8 /* pipeline/PxcNpContactPrepShared.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDf30177a87fd2f30177a8 /* pipeline/PxcNpContactPrepShared.cpp */; };
+ FFFFf30178107fd2f3017810 /* pipeline/PxcNpMemBlockPool.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDf30178107fd2f3017810 /* pipeline/PxcNpMemBlockPool.cpp */; };
+ FFFFf30178787fd2f3017878 /* pipeline/PxcNpThreadContext.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDf30178787fd2f3017878 /* pipeline/PxcNpThreadContext.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFDec5094107f8cec509410 /* LowLevel */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevel"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFDec70a2f07f8cec70a2f0 /* px_globals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "px_globals.cpp"; path = "../../LowLevel/API/src/px_globals.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec70c8207f8cec70c820 /* PxsMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCore.h"; path = "../../LowLevel/API/include/PxsMaterialCore.h"; sourceTree = SOURCE_ROOT; };
- FFFDec70c8887f8cec70c888 /* PxsMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialManager.h"; path = "../../LowLevel/API/include/PxsMaterialManager.h"; sourceTree = SOURCE_ROOT; };
- FFFDec70c8f07f8cec70c8f0 /* PxvConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvConfig.h"; path = "../../LowLevel/API/include/PxvConfig.h"; sourceTree = SOURCE_ROOT; };
- FFFDec70c9587f8cec70c958 /* PxvContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvContext.h"; path = "../../LowLevel/API/include/PxvContext.h"; sourceTree = SOURCE_ROOT; };
- FFFDec70c9c07f8cec70c9c0 /* PxvDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvDynamics.h"; path = "../../LowLevel/API/include/PxvDynamics.h"; sourceTree = SOURCE_ROOT; };
- FFFDec70ca287f8cec70ca28 /* PxvGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGeometry.h"; path = "../../LowLevel/API/include/PxvGeometry.h"; sourceTree = SOURCE_ROOT; };
- FFFDec70ca907f8cec70ca90 /* PxvGlobals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGlobals.h"; path = "../../LowLevel/API/include/PxvGlobals.h"; sourceTree = SOURCE_ROOT; };
- FFFDec70caf87f8cec70caf8 /* PxvManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvManager.h"; path = "../../LowLevel/API/include/PxvManager.h"; sourceTree = SOURCE_ROOT; };
- FFFDec70cb607f8cec70cb60 /* PxvSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvSimStats.h"; path = "../../LowLevel/API/include/PxvSimStats.h"; sourceTree = SOURCE_ROOT; };
- FFFDec70d9307f8cec70d930 /* PxsCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.cpp"; path = "../../LowLevel/software/src/PxsCCD.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec70d9987f8cec70d998 /* PxsContactManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.cpp"; path = "../../LowLevel/software/src/PxsContactManager.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec70da007f8cec70da00 /* PxsContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.cpp"; path = "../../LowLevel/software/src/PxsContext.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec70da687f8cec70da68 /* PxsDefaultMemoryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.cpp"; path = "../../LowLevel/software/src/PxsDefaultMemoryManager.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec70dad07f8cec70dad0 /* PxsIslandSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.cpp"; path = "../../LowLevel/software/src/PxsIslandSim.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec70db387f8cec70db38 /* PxsMaterialCombiner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.cpp"; path = "../../LowLevel/software/src/PxsMaterialCombiner.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec70dba07f8cec70dba0 /* PxsNphaseImplementationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.cpp"; path = "../../LowLevel/software/src/PxsNphaseImplementationContext.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDec70dc087f8cec70dc08 /* PxsSimpleIslandManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.cpp"; path = "../../LowLevel/software/src/PxsSimpleIslandManager.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDed01fc007f8ced01fc00 /* PxsBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsBodySim.h"; path = "../../LowLevel/software/include/PxsBodySim.h"; sourceTree = SOURCE_ROOT; };
- FFFDed01fc687f8ced01fc68 /* PxsCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.h"; path = "../../LowLevel/software/include/PxsCCD.h"; sourceTree = SOURCE_ROOT; };
- FFFDed01fcd07f8ced01fcd0 /* PxsContactManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.h"; path = "../../LowLevel/software/include/PxsContactManager.h"; sourceTree = SOURCE_ROOT; };
- FFFDed01fd387f8ced01fd38 /* PxsContactManagerState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManagerState.h"; path = "../../LowLevel/software/include/PxsContactManagerState.h"; sourceTree = SOURCE_ROOT; };
- FFFDed01fda07f8ced01fda0 /* PxsContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.h"; path = "../../LowLevel/software/include/PxsContext.h"; sourceTree = SOURCE_ROOT; };
- FFFDed01fe087f8ced01fe08 /* PxsDefaultMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.h"; path = "../../LowLevel/software/include/PxsDefaultMemoryManager.h"; sourceTree = SOURCE_ROOT; };
- FFFDed01fe707f8ced01fe70 /* PxsHeapMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsHeapMemoryAllocator.h"; path = "../../LowLevel/software/include/PxsHeapMemoryAllocator.h"; sourceTree = SOURCE_ROOT; };
- FFFDed01fed87f8ced01fed8 /* PxsIncrementalConstraintPartitioning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIncrementalConstraintPartitioning.h"; path = "../../LowLevel/software/include/PxsIncrementalConstraintPartitioning.h"; sourceTree = SOURCE_ROOT; };
- FFFDed01ff407f8ced01ff40 /* PxsIslandManagerTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandManagerTypes.h"; path = "../../LowLevel/software/include/PxsIslandManagerTypes.h"; sourceTree = SOURCE_ROOT; };
- FFFDed01ffa87f8ced01ffa8 /* PxsIslandSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.h"; path = "../../LowLevel/software/include/PxsIslandSim.h"; sourceTree = SOURCE_ROOT; };
- FFFDed0200107f8ced020010 /* PxsKernelWrangler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsKernelWrangler.h"; path = "../../LowLevel/software/include/PxsKernelWrangler.h"; sourceTree = SOURCE_ROOT; };
- FFFDed0200787f8ced020078 /* PxsMaterialCombiner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.h"; path = "../../LowLevel/software/include/PxsMaterialCombiner.h"; sourceTree = SOURCE_ROOT; };
- FFFDed0200e07f8ced0200e0 /* PxsMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMemoryManager.h"; path = "../../LowLevel/software/include/PxsMemoryManager.h"; sourceTree = SOURCE_ROOT; };
- FFFDed0201487f8ced020148 /* PxsNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxsNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; };
- FFFDed0201b07f8ced0201b0 /* PxsRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsRigidBody.h"; path = "../../LowLevel/software/include/PxsRigidBody.h"; sourceTree = SOURCE_ROOT; };
- FFFDed0202187f8ced020218 /* PxsShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsShapeSim.h"; path = "../../LowLevel/software/include/PxsShapeSim.h"; sourceTree = SOURCE_ROOT; };
- FFFDed0202807f8ced020280 /* PxsSimpleIslandManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.h"; path = "../../LowLevel/software/include/PxsSimpleIslandManager.h"; sourceTree = SOURCE_ROOT; };
- FFFDed0202e87f8ced0202e8 /* PxsSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimulationController.h"; path = "../../LowLevel/software/include/PxsSimulationController.h"; sourceTree = SOURCE_ROOT; };
- FFFDed0203507f8ced020350 /* PxsTransformCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsTransformCache.h"; path = "../../LowLevel/software/include/PxsTransformCache.h"; sourceTree = SOURCE_ROOT; };
- FFFDed0203b87f8ced0203b8 /* PxvNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxvNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; };
- FFFDed026e007f8ced026e00 /* collision/PxcContact.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContact.cpp"; path = "../../LowLevel/common/src/collision/PxcContact.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDed026e687f8ced026e68 /* pipeline/PxcContactCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactCache.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDed026ed07f8ced026ed0 /* pipeline/PxcContactMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactMethodImpl.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDed026f387f8ced026f38 /* pipeline/PxcMaterialHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialHeightField.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialHeightField.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDed026fa07f8ced026fa0 /* pipeline/PxcMaterialMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMesh.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMesh.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDed0270087f8ced027008 /* pipeline/PxcMaterialMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMethodImpl.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDed0270707f8ced027070 /* pipeline/PxcMaterialShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialShape.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialShape.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDed0270d87f8ced0270d8 /* pipeline/PxcNpBatch.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpBatch.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDed0271407f8ced027140 /* pipeline/PxcNpCacheStreamPair.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpCacheStreamPair.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDed0271a87f8ced0271a8 /* pipeline/PxcNpContactPrepShared.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpContactPrepShared.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDed0272107f8ced027210 /* pipeline/PxcNpMemBlockPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpMemBlockPool.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDed0272787f8ced027278 /* pipeline/PxcNpThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpThreadContext.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDed0276007f8ced027600 /* collision/PxcContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContactMethodImpl.h"; path = "../../LowLevel/common/include/collision/PxcContactMethodImpl.h"; sourceTree = SOURCE_ROOT; };
- FFFDed0276687f8ced027668 /* pipeline/PxcCCDStateStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcCCDStateStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcCCDStateStreamPair.h"; sourceTree = SOURCE_ROOT; };
- FFFDed0276d07f8ced0276d0 /* pipeline/PxcConstraintBlockStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcConstraintBlockStream.h"; path = "../../LowLevel/common/include/pipeline/PxcConstraintBlockStream.h"; sourceTree = SOURCE_ROOT; };
- FFFDed0277387f8ced027738 /* pipeline/PxcContactCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.h"; path = "../../LowLevel/common/include/pipeline/PxcContactCache.h"; sourceTree = SOURCE_ROOT; };
- FFFDed0277a07f8ced0277a0 /* pipeline/PxcMaterialMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.h"; path = "../../LowLevel/common/include/pipeline/PxcMaterialMethodImpl.h"; sourceTree = SOURCE_ROOT; };
- FFFDed0278087f8ced027808 /* pipeline/PxcNpBatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.h"; path = "../../LowLevel/common/include/pipeline/PxcNpBatch.h"; sourceTree = SOURCE_ROOT; };
- FFFDed0278707f8ced027870 /* pipeline/PxcNpCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCache.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCache.h"; sourceTree = SOURCE_ROOT; };
- FFFDed0278d87f8ced0278d8 /* pipeline/PxcNpCacheStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCacheStreamPair.h"; sourceTree = SOURCE_ROOT; };
- FFFDed0279407f8ced027940 /* pipeline/PxcNpContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.h"; path = "../../LowLevel/common/include/pipeline/PxcNpContactPrepShared.h"; sourceTree = SOURCE_ROOT; };
- FFFDed0279a87f8ced0279a8 /* pipeline/PxcNpMemBlockPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.h"; path = "../../LowLevel/common/include/pipeline/PxcNpMemBlockPool.h"; sourceTree = SOURCE_ROOT; };
- FFFDed027a107f8ced027a10 /* pipeline/PxcNpThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.h"; path = "../../LowLevel/common/include/pipeline/PxcNpThreadContext.h"; sourceTree = SOURCE_ROOT; };
- FFFDed027a787f8ced027a78 /* pipeline/PxcNpWorkUnit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpWorkUnit.h"; path = "../../LowLevel/common/include/pipeline/PxcNpWorkUnit.h"; sourceTree = SOURCE_ROOT; };
- FFFDed027ae07f8ced027ae0 /* pipeline/PxcRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcRigidBody.h"; path = "../../LowLevel/common/include/pipeline/PxcRigidBody.h"; sourceTree = SOURCE_ROOT; };
- FFFDed027b487f8ced027b48 /* utils/PxcScratchAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "utils/PxcScratchAllocator.h"; path = "../../LowLevel/common/include/utils/PxcScratchAllocator.h"; sourceTree = SOURCE_ROOT; };
- FFFDed027bb07f8ced027bb0 /* utils/PxcThreadCoherentCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "utils/PxcThreadCoherentCache.h"; path = "../../LowLevel/common/include/utils/PxcThreadCoherentCache.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf28272b07fd2f28272b0 /* LowLevel */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevel"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFDf282abc07fd2f282abc0 /* px_globals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "px_globals.cpp"; path = "../../LowLevel/API/src/px_globals.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf282d0f07fd2f282d0f0 /* PxsMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCore.h"; path = "../../LowLevel/API/include/PxsMaterialCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf282d1587fd2f282d158 /* PxsMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialManager.h"; path = "../../LowLevel/API/include/PxsMaterialManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf282d1c07fd2f282d1c0 /* PxvConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvConfig.h"; path = "../../LowLevel/API/include/PxvConfig.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf282d2287fd2f282d228 /* PxvContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvContext.h"; path = "../../LowLevel/API/include/PxvContext.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf282d2907fd2f282d290 /* PxvDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvDynamics.h"; path = "../../LowLevel/API/include/PxvDynamics.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf282d2f87fd2f282d2f8 /* PxvGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGeometry.h"; path = "../../LowLevel/API/include/PxvGeometry.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf282d3607fd2f282d360 /* PxvGlobals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGlobals.h"; path = "../../LowLevel/API/include/PxvGlobals.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf282d3c87fd2f282d3c8 /* PxvManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvManager.h"; path = "../../LowLevel/API/include/PxvManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf282d4307fd2f282d430 /* PxvSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvSimStats.h"; path = "../../LowLevel/API/include/PxvSimStats.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf282e2007fd2f282e200 /* PxsCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.cpp"; path = "../../LowLevel/software/src/PxsCCD.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf282e2687fd2f282e268 /* PxsContactManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.cpp"; path = "../../LowLevel/software/src/PxsContactManager.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf282e2d07fd2f282e2d0 /* PxsContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.cpp"; path = "../../LowLevel/software/src/PxsContext.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf282e3387fd2f282e338 /* PxsDefaultMemoryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.cpp"; path = "../../LowLevel/software/src/PxsDefaultMemoryManager.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf282e3a07fd2f282e3a0 /* PxsIslandSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.cpp"; path = "../../LowLevel/software/src/PxsIslandSim.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf282e4087fd2f282e408 /* PxsMaterialCombiner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.cpp"; path = "../../LowLevel/software/src/PxsMaterialCombiner.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf282e4707fd2f282e470 /* PxsNphaseImplementationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.cpp"; path = "../../LowLevel/software/src/PxsNphaseImplementationContext.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf282e4d87fd2f282e4d8 /* PxsSimpleIslandManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.cpp"; path = "../../LowLevel/software/src/PxsSimpleIslandManager.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30016007fd2f3001600 /* PxsBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsBodySim.h"; path = "../../LowLevel/software/include/PxsBodySim.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30016687fd2f3001668 /* PxsCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.h"; path = "../../LowLevel/software/include/PxsCCD.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30016d07fd2f30016d0 /* PxsContactManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.h"; path = "../../LowLevel/software/include/PxsContactManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30017387fd2f3001738 /* PxsContactManagerState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManagerState.h"; path = "../../LowLevel/software/include/PxsContactManagerState.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30017a07fd2f30017a0 /* PxsContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.h"; path = "../../LowLevel/software/include/PxsContext.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30018087fd2f3001808 /* PxsDefaultMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.h"; path = "../../LowLevel/software/include/PxsDefaultMemoryManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30018707fd2f3001870 /* PxsHeapMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsHeapMemoryAllocator.h"; path = "../../LowLevel/software/include/PxsHeapMemoryAllocator.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30018d87fd2f30018d8 /* PxsIncrementalConstraintPartitioning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIncrementalConstraintPartitioning.h"; path = "../../LowLevel/software/include/PxsIncrementalConstraintPartitioning.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30019407fd2f3001940 /* PxsIslandManagerTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandManagerTypes.h"; path = "../../LowLevel/software/include/PxsIslandManagerTypes.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30019a87fd2f30019a8 /* PxsIslandSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.h"; path = "../../LowLevel/software/include/PxsIslandSim.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3001a107fd2f3001a10 /* PxsKernelWrangler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsKernelWrangler.h"; path = "../../LowLevel/software/include/PxsKernelWrangler.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3001a787fd2f3001a78 /* PxsMaterialCombiner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.h"; path = "../../LowLevel/software/include/PxsMaterialCombiner.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3001ae07fd2f3001ae0 /* PxsMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMemoryManager.h"; path = "../../LowLevel/software/include/PxsMemoryManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3001b487fd2f3001b48 /* PxsNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxsNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3001bb07fd2f3001bb0 /* PxsRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsRigidBody.h"; path = "../../LowLevel/software/include/PxsRigidBody.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3001c187fd2f3001c18 /* PxsShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsShapeSim.h"; path = "../../LowLevel/software/include/PxsShapeSim.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3001c807fd2f3001c80 /* PxsSimpleIslandManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.h"; path = "../../LowLevel/software/include/PxsSimpleIslandManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3001ce87fd2f3001ce8 /* PxsSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimulationController.h"; path = "../../LowLevel/software/include/PxsSimulationController.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3001d507fd2f3001d50 /* PxsTransformCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsTransformCache.h"; path = "../../LowLevel/software/include/PxsTransformCache.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3001db87fd2f3001db8 /* PxvNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxvNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30174007fd2f3017400 /* collision/PxcContact.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContact.cpp"; path = "../../LowLevel/common/src/collision/PxcContact.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30174687fd2f3017468 /* pipeline/PxcContactCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactCache.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30174d07fd2f30174d0 /* pipeline/PxcContactMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactMethodImpl.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30175387fd2f3017538 /* pipeline/PxcMaterialHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialHeightField.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialHeightField.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30175a07fd2f30175a0 /* pipeline/PxcMaterialMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMesh.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMesh.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30176087fd2f3017608 /* pipeline/PxcMaterialMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMethodImpl.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30176707fd2f3017670 /* pipeline/PxcMaterialShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialShape.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialShape.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30176d87fd2f30176d8 /* pipeline/PxcNpBatch.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpBatch.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30177407fd2f3017740 /* pipeline/PxcNpCacheStreamPair.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpCacheStreamPair.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30177a87fd2f30177a8 /* pipeline/PxcNpContactPrepShared.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpContactPrepShared.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30178107fd2f3017810 /* pipeline/PxcNpMemBlockPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpMemBlockPool.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30178787fd2f3017878 /* pipeline/PxcNpThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpThreadContext.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3017c007fd2f3017c00 /* collision/PxcContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContactMethodImpl.h"; path = "../../LowLevel/common/include/collision/PxcContactMethodImpl.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3017c687fd2f3017c68 /* pipeline/PxcCCDStateStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcCCDStateStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcCCDStateStreamPair.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3017cd07fd2f3017cd0 /* pipeline/PxcConstraintBlockStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcConstraintBlockStream.h"; path = "../../LowLevel/common/include/pipeline/PxcConstraintBlockStream.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3017d387fd2f3017d38 /* pipeline/PxcContactCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.h"; path = "../../LowLevel/common/include/pipeline/PxcContactCache.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3017da07fd2f3017da0 /* pipeline/PxcMaterialMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.h"; path = "../../LowLevel/common/include/pipeline/PxcMaterialMethodImpl.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3017e087fd2f3017e08 /* pipeline/PxcNpBatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.h"; path = "../../LowLevel/common/include/pipeline/PxcNpBatch.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3017e707fd2f3017e70 /* pipeline/PxcNpCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCache.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCache.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3017ed87fd2f3017ed8 /* pipeline/PxcNpCacheStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCacheStreamPair.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3017f407fd2f3017f40 /* pipeline/PxcNpContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.h"; path = "../../LowLevel/common/include/pipeline/PxcNpContactPrepShared.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3017fa87fd2f3017fa8 /* pipeline/PxcNpMemBlockPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.h"; path = "../../LowLevel/common/include/pipeline/PxcNpMemBlockPool.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30180107fd2f3018010 /* pipeline/PxcNpThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.h"; path = "../../LowLevel/common/include/pipeline/PxcNpThreadContext.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30180787fd2f3018078 /* pipeline/PxcNpWorkUnit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpWorkUnit.h"; path = "../../LowLevel/common/include/pipeline/PxcNpWorkUnit.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30180e07fd2f30180e0 /* pipeline/PxcRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcRigidBody.h"; path = "../../LowLevel/common/include/pipeline/PxcRigidBody.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30181487fd2f3018148 /* utils/PxcScratchAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "utils/PxcScratchAllocator.h"; path = "../../LowLevel/common/include/utils/PxcScratchAllocator.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30181b07fd2f30181b0 /* 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 */
- FFF2ec5094107f8cec509410 /* Resources */ = {
+ FFF2f28272b07fd2f28272b0 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2426,7 +2426,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFCec5094107f8cec509410 /* Frameworks */ = {
+ FFFCf28272b07fd2f28272b0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2436,31 +2436,31 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF8ec5094107f8cec509410 /* Sources */ = {
+ FFF8f28272b07fd2f28272b0 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFFec70a2f07f8cec70a2f0,
- FFFFec70d9307f8cec70d930,
- FFFFec70d9987f8cec70d998,
- FFFFec70da007f8cec70da00,
- FFFFec70da687f8cec70da68,
- FFFFec70dad07f8cec70dad0,
- FFFFec70db387f8cec70db38,
- FFFFec70dba07f8cec70dba0,
- FFFFec70dc087f8cec70dc08,
- FFFFed026e007f8ced026e00,
- FFFFed026e687f8ced026e68,
- FFFFed026ed07f8ced026ed0,
- FFFFed026f387f8ced026f38,
- FFFFed026fa07f8ced026fa0,
- FFFFed0270087f8ced027008,
- FFFFed0270707f8ced027070,
- FFFFed0270d87f8ced0270d8,
- FFFFed0271407f8ced027140,
- FFFFed0271a87f8ced0271a8,
- FFFFed0272107f8ced027210,
- FFFFed0272787f8ced027278,
+ FFFFf282abc07fd2f282abc0,
+ FFFFf282e2007fd2f282e200,
+ FFFFf282e2687fd2f282e268,
+ FFFFf282e2d07fd2f282e2d0,
+ FFFFf282e3387fd2f282e338,
+ FFFFf282e3a07fd2f282e3a0,
+ FFFFf282e4087fd2f282e408,
+ FFFFf282e4707fd2f282e470,
+ FFFFf282e4d87fd2f282e4d8,
+ FFFFf30174007fd2f3017400,
+ FFFFf30174687fd2f3017468,
+ FFFFf30174d07fd2f30174d0,
+ FFFFf30175387fd2f3017538,
+ FFFFf30175a07fd2f30175a0,
+ FFFFf30176087fd2f3017608,
+ FFFFf30176707fd2f3017670,
+ FFFFf30176d87fd2f30176d8,
+ FFFFf30177407fd2f3017740,
+ FFFFf30177a87fd2f30177a8,
+ FFFFf30178107fd2f3017810,
+ FFFFf30178787fd2f3017878,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -2472,38 +2472,38 @@
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of LowLevelAABB */
- FFFFeb9b1a707f8ceb9b1a70 /* BpBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDeb9b1a707f8ceb9b1a70 /* BpBroadPhase.cpp */; };
- FFFFeb9b1ad87f8ceb9b1ad8 /* BpBroadPhaseMBP.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDeb9b1ad87f8ceb9b1ad8 /* BpBroadPhaseMBP.cpp */; };
- FFFFeb9b1b407f8ceb9b1b40 /* BpBroadPhaseSap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDeb9b1b407f8ceb9b1b40 /* BpBroadPhaseSap.cpp */; };
- FFFFeb9b1ba87f8ceb9b1ba8 /* BpBroadPhaseSapAux.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDeb9b1ba87f8ceb9b1ba8 /* BpBroadPhaseSapAux.cpp */; };
- FFFFeb9b1c107f8ceb9b1c10 /* BpMBPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDeb9b1c107f8ceb9b1c10 /* BpMBPTasks.cpp */; };
- FFFFeb9b1c787f8ceb9b1c78 /* BpSAPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDeb9b1c787f8ceb9b1c78 /* BpSAPTasks.cpp */; };
- FFFFeb9b1ce07f8ceb9b1ce0 /* BpSimpleAABBManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDeb9b1ce07f8ceb9b1ce0 /* BpSimpleAABBManager.cpp */; };
+ FFFFf3020e707fd2f3020e70 /* BpBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf3020e707fd2f3020e70 /* BpBroadPhase.cpp */; };
+ FFFFf3020ed87fd2f3020ed8 /* BpBroadPhaseMBP.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf3020ed87fd2f3020ed8 /* BpBroadPhaseMBP.cpp */; };
+ FFFFf3020f407fd2f3020f40 /* BpBroadPhaseSap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf3020f407fd2f3020f40 /* BpBroadPhaseSap.cpp */; };
+ FFFFf3020fa87fd2f3020fa8 /* BpBroadPhaseSapAux.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf3020fa87fd2f3020fa8 /* BpBroadPhaseSapAux.cpp */; };
+ FFFFf30210107fd2f3021010 /* BpMBPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf30210107fd2f3021010 /* BpMBPTasks.cpp */; };
+ FFFFf30210787fd2f3021078 /* BpSAPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf30210787fd2f3021078 /* BpSAPTasks.cpp */; };
+ FFFFf30210e07fd2f30210e0 /* BpSimpleAABBManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf30210e07fd2f30210e0 /* BpSimpleAABBManager.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFDec410d307f8cec410d30 /* LowLevelAABB */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelAABB"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFDec411b707f8cec411b70 /* BpAABBManagerTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpAABBManagerTasks.h"; path = "../../LowLevelAABB/include/BpAABBManagerTasks.h"; sourceTree = SOURCE_ROOT; };
- FFFDec411bd87f8cec411bd8 /* BpBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.h"; path = "../../LowLevelAABB/include/BpBroadPhase.h"; sourceTree = SOURCE_ROOT; };
- FFFDec411c407f8cec411c40 /* BpBroadPhaseUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseUpdate.h"; path = "../../LowLevelAABB/include/BpBroadPhaseUpdate.h"; sourceTree = SOURCE_ROOT; };
- FFFDec411ca87f8cec411ca8 /* BpSimpleAABBManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.h"; path = "../../LowLevelAABB/include/BpSimpleAABBManager.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9b18007f8ceb9b1800 /* BpBroadPhaseMBP.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9b18687f8ceb9b1868 /* BpBroadPhaseMBPCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBPCommon.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBPCommon.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9b18d07f8ceb9b18d0 /* BpBroadPhaseSap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9b19387f8ceb9b1938 /* BpBroadPhaseSapAux.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9b19a07f8ceb9b19a0 /* BpMBPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.h"; path = "../../LowLevelAABB/src/BpMBPTasks.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9b1a087f8ceb9b1a08 /* BpSAPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.h"; path = "../../LowLevelAABB/src/BpSAPTasks.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb9b1a707f8ceb9b1a70 /* BpBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.cpp"; path = "../../LowLevelAABB/src/BpBroadPhase.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDeb9b1ad87f8ceb9b1ad8 /* BpBroadPhaseMBP.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDeb9b1b407f8ceb9b1b40 /* BpBroadPhaseSap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDeb9b1ba87f8ceb9b1ba8 /* BpBroadPhaseSapAux.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDeb9b1c107f8ceb9b1c10 /* BpMBPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.cpp"; path = "../../LowLevelAABB/src/BpMBPTasks.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDeb9b1c787f8ceb9b1c78 /* BpSAPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.cpp"; path = "../../LowLevelAABB/src/BpSAPTasks.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDeb9b1ce07f8ceb9b1ce0 /* BpSimpleAABBManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.cpp"; path = "../../LowLevelAABB/src/BpSimpleAABBManager.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2854ea07fd2f2854ea0 /* LowLevelAABB */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelAABB"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFDf284f2807fd2f284f280 /* BpAABBManagerTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpAABBManagerTasks.h"; path = "../../LowLevelAABB/include/BpAABBManagerTasks.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf284f2e87fd2f284f2e8 /* BpBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.h"; path = "../../LowLevelAABB/include/BpBroadPhase.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf284f3507fd2f284f350 /* BpBroadPhaseUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseUpdate.h"; path = "../../LowLevelAABB/include/BpBroadPhaseUpdate.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf284f3b87fd2f284f3b8 /* BpSimpleAABBManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.h"; path = "../../LowLevelAABB/include/BpSimpleAABBManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3020c007fd2f3020c00 /* BpBroadPhaseMBP.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3020c687fd2f3020c68 /* BpBroadPhaseMBPCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBPCommon.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBPCommon.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3020cd07fd2f3020cd0 /* BpBroadPhaseSap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3020d387fd2f3020d38 /* BpBroadPhaseSapAux.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3020da07fd2f3020da0 /* BpMBPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.h"; path = "../../LowLevelAABB/src/BpMBPTasks.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3020e087fd2f3020e08 /* BpSAPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.h"; path = "../../LowLevelAABB/src/BpSAPTasks.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3020e707fd2f3020e70 /* BpBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.cpp"; path = "../../LowLevelAABB/src/BpBroadPhase.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3020ed87fd2f3020ed8 /* BpBroadPhaseMBP.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3020f407fd2f3020f40 /* BpBroadPhaseSap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3020fa87fd2f3020fa8 /* BpBroadPhaseSapAux.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30210107fd2f3021010 /* BpMBPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.cpp"; path = "../../LowLevelAABB/src/BpMBPTasks.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30210787fd2f3021078 /* BpSAPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.cpp"; path = "../../LowLevelAABB/src/BpSAPTasks.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30210e07fd2f30210e0 /* BpSimpleAABBManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.cpp"; path = "../../LowLevelAABB/src/BpSimpleAABBManager.cpp"; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */
/* Begin PBXResourcesBuildPhase section */
- FFF2ec410d307f8cec410d30 /* Resources */ = {
+ FFF2f2854ea07fd2f2854ea0 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2513,7 +2513,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFCec410d307f8cec410d30 /* Frameworks */ = {
+ FFFCf2854ea07fd2f2854ea0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2523,17 +2523,17 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF8ec410d307f8cec410d30 /* Sources */ = {
+ FFF8f2854ea07fd2f2854ea0 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFFeb9b1a707f8ceb9b1a70,
- FFFFeb9b1ad87f8ceb9b1ad8,
- FFFFeb9b1b407f8ceb9b1b40,
- FFFFeb9b1ba87f8ceb9b1ba8,
- FFFFeb9b1c107f8ceb9b1c10,
- FFFFeb9b1c787f8ceb9b1c78,
- FFFFeb9b1ce07f8ceb9b1ce0,
+ FFFFf3020e707fd2f3020e70,
+ FFFFf3020ed87fd2f3020ed8,
+ FFFFf3020f407fd2f3020f40,
+ FFFFf3020fa87fd2f3020fa8,
+ FFFFf30210107fd2f3021010,
+ FFFFf30210787fd2f3021078,
+ FFFFf30210e07fd2f30210e0,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -2545,105 +2545,105 @@
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of LowLevelDynamics */
- FFFFee0174007f8cee017400 /* DyArticulation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDee0174007f8cee017400 /* DyArticulation.cpp */; };
- FFFFee0174687f8cee017468 /* DyArticulationContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDee0174687f8cee017468 /* DyArticulationContactPrep.cpp */; };
- FFFFee0174d07f8cee0174d0 /* DyArticulationContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDee0174d07f8cee0174d0 /* DyArticulationContactPrepPF.cpp */; };
- FFFFee0175387f8cee017538 /* DyArticulationHelper.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDee0175387f8cee017538 /* DyArticulationHelper.cpp */; };
- FFFFee0175a07f8cee0175a0 /* DyArticulationSIMD.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDee0175a07f8cee0175a0 /* DyArticulationSIMD.cpp */; };
- FFFFee0176087f8cee017608 /* DyArticulationScalar.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDee0176087f8cee017608 /* DyArticulationScalar.cpp */; };
- FFFFee0176707f8cee017670 /* DyConstraintPartition.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDee0176707f8cee017670 /* DyConstraintPartition.cpp */; };
- FFFFee0176d87f8cee0176d8 /* DyConstraintSetup.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDee0176d87f8cee0176d8 /* DyConstraintSetup.cpp */; };
- FFFFee0177407f8cee017740 /* DyConstraintSetupBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDee0177407f8cee017740 /* DyConstraintSetupBlock.cpp */; };
- FFFFee0177a87f8cee0177a8 /* DyContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDee0177a87f8cee0177a8 /* DyContactPrep.cpp */; };
- FFFFee0178107f8cee017810 /* DyContactPrep4.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDee0178107f8cee017810 /* DyContactPrep4.cpp */; };
- FFFFee0178787f8cee017878 /* DyContactPrep4PF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDee0178787f8cee017878 /* DyContactPrep4PF.cpp */; };
- FFFFee0178e07f8cee0178e0 /* DyContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDee0178e07f8cee0178e0 /* DyContactPrepPF.cpp */; };
- FFFFee0179487f8cee017948 /* DyDynamics.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDee0179487f8cee017948 /* DyDynamics.cpp */; };
- FFFFee0179b07f8cee0179b0 /* DyFrictionCorrelation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDee0179b07f8cee0179b0 /* DyFrictionCorrelation.cpp */; };
- FFFFee017a187f8cee017a18 /* DyRigidBodyToSolverBody.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDee017a187f8cee017a18 /* DyRigidBodyToSolverBody.cpp */; };
- FFFFee017a807f8cee017a80 /* DySolverConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDee017a807f8cee017a80 /* DySolverConstraints.cpp */; };
- FFFFee017ae87f8cee017ae8 /* DySolverConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDee017ae87f8cee017ae8 /* DySolverConstraintsBlock.cpp */; };
- FFFFee017b507f8cee017b50 /* DySolverControl.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDee017b507f8cee017b50 /* DySolverControl.cpp */; };
- FFFFee017bb87f8cee017bb8 /* DySolverControlPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDee017bb87f8cee017bb8 /* DySolverControlPF.cpp */; };
- FFFFee017c207f8cee017c20 /* DySolverPFConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDee017c207f8cee017c20 /* DySolverPFConstraints.cpp */; };
- FFFFee017c887f8cee017c88 /* DySolverPFConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDee017c887f8cee017c88 /* DySolverPFConstraintsBlock.cpp */; };
- FFFFee017cf07f8cee017cf0 /* DyThreadContext.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDee017cf07f8cee017cf0 /* DyThreadContext.cpp */; };
- FFFFee017d587f8cee017d58 /* DyThresholdTable.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDee017d587f8cee017d58 /* DyThresholdTable.cpp */; };
+ FFFFf3808e007fd2f3808e00 /* DyArticulation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDf3808e007fd2f3808e00 /* DyArticulation.cpp */; };
+ FFFFf3808e687fd2f3808e68 /* DyArticulationContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDf3808e687fd2f3808e68 /* DyArticulationContactPrep.cpp */; };
+ FFFFf3808ed07fd2f3808ed0 /* DyArticulationContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDf3808ed07fd2f3808ed0 /* DyArticulationContactPrepPF.cpp */; };
+ FFFFf3808f387fd2f3808f38 /* DyArticulationHelper.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDf3808f387fd2f3808f38 /* DyArticulationHelper.cpp */; };
+ FFFFf3808fa07fd2f3808fa0 /* DyArticulationSIMD.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDf3808fa07fd2f3808fa0 /* DyArticulationSIMD.cpp */; };
+ FFFFf38090087fd2f3809008 /* DyArticulationScalar.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDf38090087fd2f3809008 /* DyArticulationScalar.cpp */; };
+ FFFFf38090707fd2f3809070 /* DyConstraintPartition.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDf38090707fd2f3809070 /* DyConstraintPartition.cpp */; };
+ FFFFf38090d87fd2f38090d8 /* DyConstraintSetup.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDf38090d87fd2f38090d8 /* DyConstraintSetup.cpp */; };
+ FFFFf38091407fd2f3809140 /* DyConstraintSetupBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDf38091407fd2f3809140 /* DyConstraintSetupBlock.cpp */; };
+ FFFFf38091a87fd2f38091a8 /* DyContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDf38091a87fd2f38091a8 /* DyContactPrep.cpp */; };
+ FFFFf38092107fd2f3809210 /* DyContactPrep4.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDf38092107fd2f3809210 /* DyContactPrep4.cpp */; };
+ FFFFf38092787fd2f3809278 /* DyContactPrep4PF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDf38092787fd2f3809278 /* DyContactPrep4PF.cpp */; };
+ FFFFf38092e07fd2f38092e0 /* DyContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDf38092e07fd2f38092e0 /* DyContactPrepPF.cpp */; };
+ FFFFf38093487fd2f3809348 /* DyDynamics.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDf38093487fd2f3809348 /* DyDynamics.cpp */; };
+ FFFFf38093b07fd2f38093b0 /* DyFrictionCorrelation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDf38093b07fd2f38093b0 /* DyFrictionCorrelation.cpp */; };
+ FFFFf38094187fd2f3809418 /* DyRigidBodyToSolverBody.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDf38094187fd2f3809418 /* DyRigidBodyToSolverBody.cpp */; };
+ FFFFf38094807fd2f3809480 /* DySolverConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDf38094807fd2f3809480 /* DySolverConstraints.cpp */; };
+ FFFFf38094e87fd2f38094e8 /* DySolverConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDf38094e87fd2f38094e8 /* DySolverConstraintsBlock.cpp */; };
+ FFFFf38095507fd2f3809550 /* DySolverControl.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDf38095507fd2f3809550 /* DySolverControl.cpp */; };
+ FFFFf38095b87fd2f38095b8 /* DySolverControlPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDf38095b87fd2f38095b8 /* DySolverControlPF.cpp */; };
+ FFFFf38096207fd2f3809620 /* DySolverPFConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDf38096207fd2f3809620 /* DySolverPFConstraints.cpp */; };
+ FFFFf38096887fd2f3809688 /* DySolverPFConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDf38096887fd2f3809688 /* DySolverPFConstraintsBlock.cpp */; };
+ FFFFf38096f07fd2f38096f0 /* DyThreadContext.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDf38096f07fd2f38096f0 /* DyThreadContext.cpp */; };
+ FFFFf38097587fd2f3809758 /* DyThresholdTable.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDf38097587fd2f3809758 /* DyThresholdTable.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFDed82e9f07f8ced82e9f0 /* LowLevelDynamics */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelDynamics"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFDee0174007f8cee017400 /* DyArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.cpp"; path = "../../LowLevelDynamics/src/DyArticulation.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0174687f8cee017468 /* DyArticulationContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0174d07f8cee0174d0 /* DyArticulationContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0175387f8cee017538 /* DyArticulationHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.cpp"; path = "../../LowLevelDynamics/src/DyArticulationHelper.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0175a07f8cee0175a0 /* DyArticulationSIMD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationSIMD.cpp"; path = "../../LowLevelDynamics/src/DyArticulationSIMD.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0176087f8cee017608 /* DyArticulationScalar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.cpp"; path = "../../LowLevelDynamics/src/DyArticulationScalar.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0176707f8cee017670 /* DyConstraintPartition.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.cpp"; path = "../../LowLevelDynamics/src/DyConstraintPartition.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0176d87f8cee0176d8 /* DyConstraintSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetup.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetup.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0177407f8cee017740 /* DyConstraintSetupBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetupBlock.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetupBlock.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0177a87f8cee0177a8 /* DyContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0178107f8cee017810 /* DyContactPrep4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0178787f8cee017878 /* DyContactPrep4PF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4PF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4PF.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0178e07f8cee0178e0 /* DyContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0179487f8cee017948 /* DyDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.cpp"; path = "../../LowLevelDynamics/src/DyDynamics.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0179b07f8cee0179b0 /* DyFrictionCorrelation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionCorrelation.cpp"; path = "../../LowLevelDynamics/src/DyFrictionCorrelation.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee017a187f8cee017a18 /* DyRigidBodyToSolverBody.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyRigidBodyToSolverBody.cpp"; path = "../../LowLevelDynamics/src/DyRigidBodyToSolverBody.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee017a807f8cee017a80 /* DySolverConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraints.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee017ae87f8cee017ae8 /* DySolverConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee017b507f8cee017b50 /* DySolverControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.cpp"; path = "../../LowLevelDynamics/src/DySolverControl.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee017bb87f8cee017bb8 /* DySolverControlPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.cpp"; path = "../../LowLevelDynamics/src/DySolverControlPF.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee017c207f8cee017c20 /* DySolverPFConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraints.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee017c887f8cee017c88 /* DySolverPFConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee017cf07f8cee017cf0 /* DyThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.cpp"; path = "../../LowLevelDynamics/src/DyThreadContext.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee017d587f8cee017d58 /* DyThresholdTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.cpp"; path = "../../LowLevelDynamics/src/DyThresholdTable.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDed8317907f8ced831790 /* DyArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.h"; path = "../../LowLevelDynamics/include/DyArticulation.h"; sourceTree = SOURCE_ROOT; };
- FFFDed8317f87f8ced8317f8 /* DyConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraint.h"; path = "../../LowLevelDynamics/include/DyConstraint.h"; sourceTree = SOURCE_ROOT; };
- FFFDed8318607f8ced831860 /* DyConstraintWriteBack.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintWriteBack.h"; path = "../../LowLevelDynamics/include/DyConstraintWriteBack.h"; sourceTree = SOURCE_ROOT; };
- FFFDed8318c87f8ced8318c8 /* DyContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContext.h"; path = "../../LowLevelDynamics/include/DyContext.h"; sourceTree = SOURCE_ROOT; };
- FFFDed8319307f8ced831930 /* DySleepingConfigulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySleepingConfigulation.h"; path = "../../LowLevelDynamics/include/DySleepingConfigulation.h"; sourceTree = SOURCE_ROOT; };
- FFFDed8319987f8ced831998 /* DyThresholdTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.h"; path = "../../LowLevelDynamics/include/DyThresholdTable.h"; sourceTree = SOURCE_ROOT; };
- FFFDee018c007f8cee018c00 /* DyArticulationContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.h"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.h"; sourceTree = SOURCE_ROOT; };
- FFFDee018c687f8cee018c68 /* DyArticulationFnsDebug.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsDebug.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsDebug.h"; sourceTree = SOURCE_ROOT; };
- FFFDee018cd07f8cee018cd0 /* DyArticulationFnsScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsScalar.h"; sourceTree = SOURCE_ROOT; };
- FFFDee018d387f8cee018d38 /* DyArticulationFnsSimd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsSimd.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsSimd.h"; sourceTree = SOURCE_ROOT; };
- FFFDee018da07f8cee018da0 /* DyArticulationHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.h"; path = "../../LowLevelDynamics/src/DyArticulationHelper.h"; sourceTree = SOURCE_ROOT; };
- FFFDee018e087f8cee018e08 /* DyArticulationPImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationPImpl.h"; path = "../../LowLevelDynamics/src/DyArticulationPImpl.h"; sourceTree = SOURCE_ROOT; };
- FFFDee018e707f8cee018e70 /* DyArticulationReference.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationReference.h"; path = "../../LowLevelDynamics/src/DyArticulationReference.h"; sourceTree = SOURCE_ROOT; };
- FFFDee018ed87f8cee018ed8 /* DyArticulationScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationScalar.h"; sourceTree = SOURCE_ROOT; };
- FFFDee018f407f8cee018f40 /* DyArticulationUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationUtils.h"; path = "../../LowLevelDynamics/src/DyArticulationUtils.h"; sourceTree = SOURCE_ROOT; };
- FFFDee018fa87f8cee018fa8 /* DyBodyCoreIntegrator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyBodyCoreIntegrator.h"; path = "../../LowLevelDynamics/src/DyBodyCoreIntegrator.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0190107f8cee019010 /* DyConstraintPartition.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.h"; path = "../../LowLevelDynamics/src/DyConstraintPartition.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0190787f8cee019078 /* DyConstraintPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPrep.h"; path = "../../LowLevelDynamics/src/DyConstraintPrep.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0190e07f8cee0190e0 /* DyContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.h"; path = "../../LowLevelDynamics/src/DyContactPrep.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0191487f8cee019148 /* DyContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepShared.h"; path = "../../LowLevelDynamics/src/DyContactPrepShared.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0191b07f8cee0191b0 /* DyContactReduction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactReduction.h"; path = "../../LowLevelDynamics/src/DyContactReduction.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0192187f8cee019218 /* DyCorrelationBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyCorrelationBuffer.h"; path = "../../LowLevelDynamics/src/DyCorrelationBuffer.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0192807f8cee019280 /* DyDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.h"; path = "../../LowLevelDynamics/src/DyDynamics.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0192e87f8cee0192e8 /* DyFrictionPatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatch.h"; path = "../../LowLevelDynamics/src/DyFrictionPatch.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0193507f8cee019350 /* DyFrictionPatchStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatchStreamPair.h"; path = "../../LowLevelDynamics/src/DyFrictionPatchStreamPair.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0193b87f8cee0193b8 /* DySolverBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverBody.h"; path = "../../LowLevelDynamics/src/DySolverBody.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0194207f8cee019420 /* DySolverConstraint1D.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0194887f8cee019488 /* DySolverConstraint1D4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D4.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D4.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0194f07f8cee0194f0 /* DySolverConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintDesc.h"; path = "../../LowLevelDynamics/src/DySolverConstraintDesc.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0195587f8cee019558 /* DySolverConstraintExtShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintExtShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintExtShared.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0195c07f8cee0195c0 /* DySolverConstraintTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintTypes.h"; path = "../../LowLevelDynamics/src/DySolverConstraintTypes.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0196287f8cee019628 /* DySolverConstraintsShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintsShared.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0196907f8cee019690 /* DySolverContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact.h"; path = "../../LowLevelDynamics/src/DySolverContact.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0196f87f8cee0196f8 /* DySolverContact4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact4.h"; path = "../../LowLevelDynamics/src/DySolverContact4.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0197607f8cee019760 /* DySolverContactPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF.h"; path = "../../LowLevelDynamics/src/DySolverContactPF.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0197c87f8cee0197c8 /* DySolverContactPF4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF4.h"; path = "../../LowLevelDynamics/src/DySolverContactPF4.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0198307f8cee019830 /* DySolverContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContext.h"; path = "../../LowLevelDynamics/src/DySolverContext.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0198987f8cee019898 /* DySolverControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.h"; path = "../../LowLevelDynamics/src/DySolverControl.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0199007f8cee019900 /* DySolverControlPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.h"; path = "../../LowLevelDynamics/src/DySolverControlPF.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0199687f8cee019968 /* DySolverCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverCore.h"; path = "../../LowLevelDynamics/src/DySolverCore.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0199d07f8cee0199d0 /* DySolverExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverExt.h"; path = "../../LowLevelDynamics/src/DySolverExt.h"; sourceTree = SOURCE_ROOT; };
- FFFDee019a387f8cee019a38 /* DySpatial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySpatial.h"; path = "../../LowLevelDynamics/src/DySpatial.h"; sourceTree = SOURCE_ROOT; };
- FFFDee019aa07f8cee019aa0 /* DyThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.h"; path = "../../LowLevelDynamics/src/DyThreadContext.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf29090e07fd2f29090e0 /* LowLevelDynamics */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelDynamics"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFDf3808e007fd2f3808e00 /* DyArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.cpp"; path = "../../LowLevelDynamics/src/DyArticulation.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3808e687fd2f3808e68 /* DyArticulationContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3808ed07fd2f3808ed0 /* DyArticulationContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3808f387fd2f3808f38 /* DyArticulationHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.cpp"; path = "../../LowLevelDynamics/src/DyArticulationHelper.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3808fa07fd2f3808fa0 /* DyArticulationSIMD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationSIMD.cpp"; path = "../../LowLevelDynamics/src/DyArticulationSIMD.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf38090087fd2f3809008 /* DyArticulationScalar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.cpp"; path = "../../LowLevelDynamics/src/DyArticulationScalar.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf38090707fd2f3809070 /* DyConstraintPartition.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.cpp"; path = "../../LowLevelDynamics/src/DyConstraintPartition.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf38090d87fd2f38090d8 /* DyConstraintSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetup.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetup.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf38091407fd2f3809140 /* DyConstraintSetupBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetupBlock.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetupBlock.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf38091a87fd2f38091a8 /* DyContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf38092107fd2f3809210 /* DyContactPrep4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf38092787fd2f3809278 /* DyContactPrep4PF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4PF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4PF.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf38092e07fd2f38092e0 /* DyContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf38093487fd2f3809348 /* DyDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.cpp"; path = "../../LowLevelDynamics/src/DyDynamics.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf38093b07fd2f38093b0 /* DyFrictionCorrelation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionCorrelation.cpp"; path = "../../LowLevelDynamics/src/DyFrictionCorrelation.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf38094187fd2f3809418 /* DyRigidBodyToSolverBody.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyRigidBodyToSolverBody.cpp"; path = "../../LowLevelDynamics/src/DyRigidBodyToSolverBody.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf38094807fd2f3809480 /* DySolverConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraints.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf38094e87fd2f38094e8 /* DySolverConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf38095507fd2f3809550 /* DySolverControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.cpp"; path = "../../LowLevelDynamics/src/DySolverControl.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf38095b87fd2f38095b8 /* DySolverControlPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.cpp"; path = "../../LowLevelDynamics/src/DySolverControlPF.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf38096207fd2f3809620 /* DySolverPFConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraints.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf38096887fd2f3809688 /* DySolverPFConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf38096f07fd2f38096f0 /* DyThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.cpp"; path = "../../LowLevelDynamics/src/DyThreadContext.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf38097587fd2f3809758 /* DyThresholdTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.cpp"; path = "../../LowLevelDynamics/src/DyThresholdTable.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf29116f07fd2f29116f0 /* DyArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.h"; path = "../../LowLevelDynamics/include/DyArticulation.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf29117587fd2f2911758 /* DyConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraint.h"; path = "../../LowLevelDynamics/include/DyConstraint.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf29117c07fd2f29117c0 /* DyConstraintWriteBack.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintWriteBack.h"; path = "../../LowLevelDynamics/include/DyConstraintWriteBack.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf29118287fd2f2911828 /* DyContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContext.h"; path = "../../LowLevelDynamics/include/DyContext.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf29118907fd2f2911890 /* DySleepingConfigulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySleepingConfigulation.h"; path = "../../LowLevelDynamics/include/DySleepingConfigulation.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf29118f87fd2f29118f8 /* DyThresholdTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.h"; path = "../../LowLevelDynamics/include/DyThresholdTable.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf380aa007fd2f380aa00 /* DyArticulationContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.h"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf380aa687fd2f380aa68 /* DyArticulationFnsDebug.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsDebug.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsDebug.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf380aad07fd2f380aad0 /* DyArticulationFnsScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsScalar.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf380ab387fd2f380ab38 /* DyArticulationFnsSimd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsSimd.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsSimd.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf380aba07fd2f380aba0 /* DyArticulationHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.h"; path = "../../LowLevelDynamics/src/DyArticulationHelper.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf380ac087fd2f380ac08 /* DyArticulationPImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationPImpl.h"; path = "../../LowLevelDynamics/src/DyArticulationPImpl.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf380ac707fd2f380ac70 /* DyArticulationReference.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationReference.h"; path = "../../LowLevelDynamics/src/DyArticulationReference.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf380acd87fd2f380acd8 /* DyArticulationScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationScalar.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf380ad407fd2f380ad40 /* DyArticulationUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationUtils.h"; path = "../../LowLevelDynamics/src/DyArticulationUtils.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf380ada87fd2f380ada8 /* DyBodyCoreIntegrator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyBodyCoreIntegrator.h"; path = "../../LowLevelDynamics/src/DyBodyCoreIntegrator.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf380ae107fd2f380ae10 /* DyConstraintPartition.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.h"; path = "../../LowLevelDynamics/src/DyConstraintPartition.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf380ae787fd2f380ae78 /* DyConstraintPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPrep.h"; path = "../../LowLevelDynamics/src/DyConstraintPrep.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf380aee07fd2f380aee0 /* DyContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.h"; path = "../../LowLevelDynamics/src/DyContactPrep.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf380af487fd2f380af48 /* DyContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepShared.h"; path = "../../LowLevelDynamics/src/DyContactPrepShared.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf380afb07fd2f380afb0 /* DyContactReduction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactReduction.h"; path = "../../LowLevelDynamics/src/DyContactReduction.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf380b0187fd2f380b018 /* DyCorrelationBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyCorrelationBuffer.h"; path = "../../LowLevelDynamics/src/DyCorrelationBuffer.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf380b0807fd2f380b080 /* DyDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.h"; path = "../../LowLevelDynamics/src/DyDynamics.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf380b0e87fd2f380b0e8 /* DyFrictionPatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatch.h"; path = "../../LowLevelDynamics/src/DyFrictionPatch.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf380b1507fd2f380b150 /* DyFrictionPatchStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatchStreamPair.h"; path = "../../LowLevelDynamics/src/DyFrictionPatchStreamPair.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf380b1b87fd2f380b1b8 /* DySolverBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverBody.h"; path = "../../LowLevelDynamics/src/DySolverBody.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf380b2207fd2f380b220 /* DySolverConstraint1D.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf380b2887fd2f380b288 /* DySolverConstraint1D4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D4.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D4.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf380b2f07fd2f380b2f0 /* DySolverConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintDesc.h"; path = "../../LowLevelDynamics/src/DySolverConstraintDesc.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf380b3587fd2f380b358 /* DySolverConstraintExtShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintExtShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintExtShared.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf380b3c07fd2f380b3c0 /* DySolverConstraintTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintTypes.h"; path = "../../LowLevelDynamics/src/DySolverConstraintTypes.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf380b4287fd2f380b428 /* DySolverConstraintsShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintsShared.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf380b4907fd2f380b490 /* DySolverContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact.h"; path = "../../LowLevelDynamics/src/DySolverContact.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf380b4f87fd2f380b4f8 /* DySolverContact4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact4.h"; path = "../../LowLevelDynamics/src/DySolverContact4.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf380b5607fd2f380b560 /* DySolverContactPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF.h"; path = "../../LowLevelDynamics/src/DySolverContactPF.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf380b5c87fd2f380b5c8 /* DySolverContactPF4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF4.h"; path = "../../LowLevelDynamics/src/DySolverContactPF4.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf380b6307fd2f380b630 /* DySolverContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContext.h"; path = "../../LowLevelDynamics/src/DySolverContext.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf380b6987fd2f380b698 /* DySolverControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.h"; path = "../../LowLevelDynamics/src/DySolverControl.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf380b7007fd2f380b700 /* DySolverControlPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.h"; path = "../../LowLevelDynamics/src/DySolverControlPF.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf380b7687fd2f380b768 /* DySolverCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverCore.h"; path = "../../LowLevelDynamics/src/DySolverCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf380b7d07fd2f380b7d0 /* DySolverExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverExt.h"; path = "../../LowLevelDynamics/src/DySolverExt.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf380b8387fd2f380b838 /* DySpatial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySpatial.h"; path = "../../LowLevelDynamics/src/DySpatial.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf380b8a07fd2f380b8a0 /* DyThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.h"; path = "../../LowLevelDynamics/src/DyThreadContext.h"; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */
/* Begin PBXResourcesBuildPhase section */
- FFF2ed82e9f07f8ced82e9f0 /* Resources */ = {
+ FFF2f29090e07fd2f29090e0 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2653,7 +2653,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFCed82e9f07f8ced82e9f0 /* Frameworks */ = {
+ FFFCf29090e07fd2f29090e0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2663,34 +2663,34 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF8ed82e9f07f8ced82e9f0 /* Sources */ = {
+ FFF8f29090e07fd2f29090e0 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFFee0174007f8cee017400,
- FFFFee0174687f8cee017468,
- FFFFee0174d07f8cee0174d0,
- FFFFee0175387f8cee017538,
- FFFFee0175a07f8cee0175a0,
- FFFFee0176087f8cee017608,
- FFFFee0176707f8cee017670,
- FFFFee0176d87f8cee0176d8,
- FFFFee0177407f8cee017740,
- FFFFee0177a87f8cee0177a8,
- FFFFee0178107f8cee017810,
- FFFFee0178787f8cee017878,
- FFFFee0178e07f8cee0178e0,
- FFFFee0179487f8cee017948,
- FFFFee0179b07f8cee0179b0,
- FFFFee017a187f8cee017a18,
- FFFFee017a807f8cee017a80,
- FFFFee017ae87f8cee017ae8,
- FFFFee017b507f8cee017b50,
- FFFFee017bb87f8cee017bb8,
- FFFFee017c207f8cee017c20,
- FFFFee017c887f8cee017c88,
- FFFFee017cf07f8cee017cf0,
- FFFFee017d587f8cee017d58,
+ FFFFf3808e007fd2f3808e00,
+ FFFFf3808e687fd2f3808e68,
+ FFFFf3808ed07fd2f3808ed0,
+ FFFFf3808f387fd2f3808f38,
+ FFFFf3808fa07fd2f3808fa0,
+ FFFFf38090087fd2f3809008,
+ FFFFf38090707fd2f3809070,
+ FFFFf38090d87fd2f38090d8,
+ FFFFf38091407fd2f3809140,
+ FFFFf38091a87fd2f38091a8,
+ FFFFf38092107fd2f3809210,
+ FFFFf38092787fd2f3809278,
+ FFFFf38092e07fd2f38092e0,
+ FFFFf38093487fd2f3809348,
+ FFFFf38093b07fd2f38093b0,
+ FFFFf38094187fd2f3809418,
+ FFFFf38094807fd2f3809480,
+ FFFFf38094e87fd2f38094e8,
+ FFFFf38095507fd2f3809550,
+ FFFFf38095b87fd2f38095b8,
+ FFFFf38096207fd2f3809620,
+ FFFFf38096887fd2f3809688,
+ FFFFf38096f07fd2f38096f0,
+ FFFFf38097587fd2f3809758,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -2702,73 +2702,73 @@
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of LowLevelCloth */
- FFFFed0328907f8ced032890 /* Allocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDed0328907f8ced032890 /* Allocator.cpp */; };
- FFFFed0328f87f8ced0328f8 /* Factory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDed0328f87f8ced0328f8 /* Factory.cpp */; };
- FFFFed0329607f8ced032960 /* PhaseConfig.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDed0329607f8ced032960 /* PhaseConfig.cpp */; };
- FFFFed0329c87f8ced0329c8 /* SwCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDed0329c87f8ced0329c8 /* SwCloth.cpp */; };
- FFFFed032a307f8ced032a30 /* SwClothData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDed032a307f8ced032a30 /* SwClothData.cpp */; };
- FFFFed032a987f8ced032a98 /* SwCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDed032a987f8ced032a98 /* SwCollision.cpp */; };
- FFFFed032b007f8ced032b00 /* SwFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDed032b007f8ced032b00 /* SwFabric.cpp */; };
- FFFFed032b687f8ced032b68 /* SwFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDed032b687f8ced032b68 /* SwFactory.cpp */; };
- FFFFed032bd07f8ced032bd0 /* SwInterCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDed032bd07f8ced032bd0 /* SwInterCollision.cpp */; };
- FFFFed032c387f8ced032c38 /* SwSelfCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDed032c387f8ced032c38 /* SwSelfCollision.cpp */; };
- FFFFed032ca07f8ced032ca0 /* SwSolver.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDed032ca07f8ced032ca0 /* SwSolver.cpp */; };
- FFFFed032d087f8ced032d08 /* SwSolverKernel.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDed032d087f8ced032d08 /* SwSolverKernel.cpp */; };
- FFFFed032d707f8ced032d70 /* TripletScheduler.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDed032d707f8ced032d70 /* TripletScheduler.cpp */; };
+ FFFFf11b38907fd2f11b3890 /* Allocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf11b38907fd2f11b3890 /* Allocator.cpp */; };
+ FFFFf11b38f87fd2f11b38f8 /* Factory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf11b38f87fd2f11b38f8 /* Factory.cpp */; };
+ FFFFf11b39607fd2f11b3960 /* PhaseConfig.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf11b39607fd2f11b3960 /* PhaseConfig.cpp */; };
+ FFFFf11b39c87fd2f11b39c8 /* SwCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf11b39c87fd2f11b39c8 /* SwCloth.cpp */; };
+ FFFFf11b3a307fd2f11b3a30 /* SwClothData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf11b3a307fd2f11b3a30 /* SwClothData.cpp */; };
+ FFFFf11b3a987fd2f11b3a98 /* SwCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf11b3a987fd2f11b3a98 /* SwCollision.cpp */; };
+ FFFFf11b3b007fd2f11b3b00 /* SwFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf11b3b007fd2f11b3b00 /* SwFabric.cpp */; };
+ FFFFf11b3b687fd2f11b3b68 /* SwFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf11b3b687fd2f11b3b68 /* SwFactory.cpp */; };
+ FFFFf11b3bd07fd2f11b3bd0 /* SwInterCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf11b3bd07fd2f11b3bd0 /* SwInterCollision.cpp */; };
+ FFFFf11b3c387fd2f11b3c38 /* SwSelfCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf11b3c387fd2f11b3c38 /* SwSelfCollision.cpp */; };
+ FFFFf11b3ca07fd2f11b3ca0 /* SwSolver.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf11b3ca07fd2f11b3ca0 /* SwSolver.cpp */; };
+ FFFFf11b3d087fd2f11b3d08 /* SwSolverKernel.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf11b3d087fd2f11b3d08 /* SwSolverKernel.cpp */; };
+ FFFFf11b3d707fd2f11b3d70 /* TripletScheduler.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf11b3d707fd2f11b3d70 /* TripletScheduler.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFDec722a207f8cec722a20 /* LowLevelCloth */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelCloth"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFDec7266e07f8cec7266e0 /* Cloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cloth.h"; path = "../../LowLevelCloth/include/Cloth.h"; sourceTree = SOURCE_ROOT; };
- FFFDec7267487f8cec726748 /* Fabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Fabric.h"; path = "../../LowLevelCloth/include/Fabric.h"; sourceTree = SOURCE_ROOT; };
- FFFDec7267b07f8cec7267b0 /* Factory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.h"; path = "../../LowLevelCloth/include/Factory.h"; sourceTree = SOURCE_ROOT; };
- FFFDec7268187f8cec726818 /* PhaseConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.h"; path = "../../LowLevelCloth/include/PhaseConfig.h"; sourceTree = SOURCE_ROOT; };
- FFFDec7268807f8cec726880 /* Range.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Range.h"; path = "../../LowLevelCloth/include/Range.h"; sourceTree = SOURCE_ROOT; };
- FFFDec7268e87f8cec7268e8 /* Solver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Solver.h"; path = "../../LowLevelCloth/include/Solver.h"; sourceTree = SOURCE_ROOT; };
- FFFDec7269507f8cec726950 /* Types.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Types.h"; path = "../../LowLevelCloth/include/Types.h"; sourceTree = SOURCE_ROOT; };
- FFFDed031e007f8ced031e00 /* Allocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.h"; path = "../../LowLevelCloth/src/Allocator.h"; sourceTree = SOURCE_ROOT; };
- FFFDed031e687f8ced031e68 /* Array.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Array.h"; path = "../../LowLevelCloth/src/Array.h"; sourceTree = SOURCE_ROOT; };
- FFFDed031ed07f8ced031ed0 /* BoundingBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BoundingBox.h"; path = "../../LowLevelCloth/src/BoundingBox.h"; sourceTree = SOURCE_ROOT; };
- FFFDed031f387f8ced031f38 /* ClothBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothBase.h"; path = "../../LowLevelCloth/src/ClothBase.h"; sourceTree = SOURCE_ROOT; };
- FFFDed031fa07f8ced031fa0 /* ClothImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothImpl.h"; path = "../../LowLevelCloth/src/ClothImpl.h"; sourceTree = SOURCE_ROOT; };
- FFFDed0320087f8ced032008 /* IndexPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IndexPair.h"; path = "../../LowLevelCloth/src/IndexPair.h"; sourceTree = SOURCE_ROOT; };
- FFFDed0320707f8ced032070 /* IterationState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IterationState.h"; path = "../../LowLevelCloth/src/IterationState.h"; sourceTree = SOURCE_ROOT; };
- FFFDed0320d87f8ced0320d8 /* MovingAverage.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MovingAverage.h"; path = "../../LowLevelCloth/src/MovingAverage.h"; sourceTree = SOURCE_ROOT; };
- FFFDed0321407f8ced032140 /* PointInterpolator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PointInterpolator.h"; path = "../../LowLevelCloth/src/PointInterpolator.h"; sourceTree = SOURCE_ROOT; };
- FFFDed0321a87f8ced0321a8 /* Simd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd.h"; path = "../../LowLevelCloth/src/Simd.h"; sourceTree = SOURCE_ROOT; };
- FFFDed0322107f8ced032210 /* Simd4f.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd4f.h"; path = "../../LowLevelCloth/src/Simd4f.h"; sourceTree = SOURCE_ROOT; };
- FFFDed0322787f8ced032278 /* Simd4i.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd4i.h"; path = "../../LowLevelCloth/src/Simd4i.h"; sourceTree = SOURCE_ROOT; };
- FFFDed0322e07f8ced0322e0 /* SimdTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SimdTypes.h"; path = "../../LowLevelCloth/src/SimdTypes.h"; sourceTree = SOURCE_ROOT; };
- FFFDed0323487f8ced032348 /* StackAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "StackAllocator.h"; path = "../../LowLevelCloth/src/StackAllocator.h"; sourceTree = SOURCE_ROOT; };
- FFFDed0323b07f8ced0323b0 /* SwCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.h"; path = "../../LowLevelCloth/src/SwCloth.h"; sourceTree = SOURCE_ROOT; };
- FFFDed0324187f8ced032418 /* SwClothData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.h"; path = "../../LowLevelCloth/src/SwClothData.h"; sourceTree = SOURCE_ROOT; };
- FFFDed0324807f8ced032480 /* SwCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.h"; path = "../../LowLevelCloth/src/SwCollision.h"; sourceTree = SOURCE_ROOT; };
- FFFDed0324e87f8ced0324e8 /* SwCollisionHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollisionHelpers.h"; path = "../../LowLevelCloth/src/SwCollisionHelpers.h"; sourceTree = SOURCE_ROOT; };
- FFFDed0325507f8ced032550 /* SwFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.h"; path = "../../LowLevelCloth/src/SwFabric.h"; sourceTree = SOURCE_ROOT; };
- FFFDed0325b87f8ced0325b8 /* SwFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.h"; path = "../../LowLevelCloth/src/SwFactory.h"; sourceTree = SOURCE_ROOT; };
- FFFDed0326207f8ced032620 /* SwInterCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.h"; path = "../../LowLevelCloth/src/SwInterCollision.h"; sourceTree = SOURCE_ROOT; };
- FFFDed0326887f8ced032688 /* SwSelfCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.h"; path = "../../LowLevelCloth/src/SwSelfCollision.h"; sourceTree = SOURCE_ROOT; };
- FFFDed0326f07f8ced0326f0 /* SwSolver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.h"; path = "../../LowLevelCloth/src/SwSolver.h"; sourceTree = SOURCE_ROOT; };
- FFFDed0327587f8ced032758 /* SwSolverKernel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.h"; path = "../../LowLevelCloth/src/SwSolverKernel.h"; sourceTree = SOURCE_ROOT; };
- FFFDed0327c07f8ced0327c0 /* TripletScheduler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.h"; path = "../../LowLevelCloth/src/TripletScheduler.h"; sourceTree = SOURCE_ROOT; };
- FFFDed0328287f8ced032828 /* Vec4T.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Vec4T.h"; path = "../../LowLevelCloth/src/Vec4T.h"; sourceTree = SOURCE_ROOT; };
- FFFDed0328907f8ced032890 /* Allocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.cpp"; path = "../../LowLevelCloth/src/Allocator.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDed0328f87f8ced0328f8 /* Factory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.cpp"; path = "../../LowLevelCloth/src/Factory.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDed0329607f8ced032960 /* PhaseConfig.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.cpp"; path = "../../LowLevelCloth/src/PhaseConfig.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDed0329c87f8ced0329c8 /* SwCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.cpp"; path = "../../LowLevelCloth/src/SwCloth.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDed032a307f8ced032a30 /* SwClothData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.cpp"; path = "../../LowLevelCloth/src/SwClothData.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDed032a987f8ced032a98 /* SwCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.cpp"; path = "../../LowLevelCloth/src/SwCollision.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDed032b007f8ced032b00 /* SwFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.cpp"; path = "../../LowLevelCloth/src/SwFabric.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDed032b687f8ced032b68 /* SwFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.cpp"; path = "../../LowLevelCloth/src/SwFactory.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDed032bd07f8ced032bd0 /* SwInterCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.cpp"; path = "../../LowLevelCloth/src/SwInterCollision.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDed032c387f8ced032c38 /* SwSelfCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.cpp"; path = "../../LowLevelCloth/src/SwSelfCollision.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDed032ca07f8ced032ca0 /* SwSolver.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.cpp"; path = "../../LowLevelCloth/src/SwSolver.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDed032d087f8ced032d08 /* SwSolverKernel.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.cpp"; path = "../../LowLevelCloth/src/SwSolverKernel.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDed032d707f8ced032d70 /* TripletScheduler.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.cpp"; path = "../../LowLevelCloth/src/TripletScheduler.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf188ae307fd2f188ae30 /* LowLevelCloth */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelCloth"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFDf1b114007fd2f1b11400 /* Cloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cloth.h"; path = "../../LowLevelCloth/include/Cloth.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf1b114687fd2f1b11468 /* Fabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Fabric.h"; path = "../../LowLevelCloth/include/Fabric.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf1b114d07fd2f1b114d0 /* Factory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.h"; path = "../../LowLevelCloth/include/Factory.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf1b115387fd2f1b11538 /* PhaseConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.h"; path = "../../LowLevelCloth/include/PhaseConfig.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf1b115a07fd2f1b115a0 /* Range.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Range.h"; path = "../../LowLevelCloth/include/Range.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf1b116087fd2f1b11608 /* Solver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Solver.h"; path = "../../LowLevelCloth/include/Solver.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf1b116707fd2f1b11670 /* Types.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Types.h"; path = "../../LowLevelCloth/include/Types.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11b2e007fd2f11b2e00 /* Allocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.h"; path = "../../LowLevelCloth/src/Allocator.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11b2e687fd2f11b2e68 /* Array.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Array.h"; path = "../../LowLevelCloth/src/Array.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11b2ed07fd2f11b2ed0 /* BoundingBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BoundingBox.h"; path = "../../LowLevelCloth/src/BoundingBox.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11b2f387fd2f11b2f38 /* ClothBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothBase.h"; path = "../../LowLevelCloth/src/ClothBase.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11b2fa07fd2f11b2fa0 /* ClothImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothImpl.h"; path = "../../LowLevelCloth/src/ClothImpl.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11b30087fd2f11b3008 /* IndexPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IndexPair.h"; path = "../../LowLevelCloth/src/IndexPair.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11b30707fd2f11b3070 /* IterationState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IterationState.h"; path = "../../LowLevelCloth/src/IterationState.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11b30d87fd2f11b30d8 /* MovingAverage.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MovingAverage.h"; path = "../../LowLevelCloth/src/MovingAverage.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11b31407fd2f11b3140 /* PointInterpolator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PointInterpolator.h"; path = "../../LowLevelCloth/src/PointInterpolator.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11b31a87fd2f11b31a8 /* Simd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd.h"; path = "../../LowLevelCloth/src/Simd.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11b32107fd2f11b3210 /* Simd4f.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd4f.h"; path = "../../LowLevelCloth/src/Simd4f.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11b32787fd2f11b3278 /* Simd4i.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd4i.h"; path = "../../LowLevelCloth/src/Simd4i.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11b32e07fd2f11b32e0 /* SimdTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SimdTypes.h"; path = "../../LowLevelCloth/src/SimdTypes.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11b33487fd2f11b3348 /* StackAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "StackAllocator.h"; path = "../../LowLevelCloth/src/StackAllocator.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11b33b07fd2f11b33b0 /* SwCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.h"; path = "../../LowLevelCloth/src/SwCloth.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11b34187fd2f11b3418 /* SwClothData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.h"; path = "../../LowLevelCloth/src/SwClothData.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11b34807fd2f11b3480 /* SwCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.h"; path = "../../LowLevelCloth/src/SwCollision.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11b34e87fd2f11b34e8 /* SwCollisionHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollisionHelpers.h"; path = "../../LowLevelCloth/src/SwCollisionHelpers.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11b35507fd2f11b3550 /* SwFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.h"; path = "../../LowLevelCloth/src/SwFabric.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11b35b87fd2f11b35b8 /* SwFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.h"; path = "../../LowLevelCloth/src/SwFactory.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11b36207fd2f11b3620 /* SwInterCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.h"; path = "../../LowLevelCloth/src/SwInterCollision.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11b36887fd2f11b3688 /* SwSelfCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.h"; path = "../../LowLevelCloth/src/SwSelfCollision.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11b36f07fd2f11b36f0 /* SwSolver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.h"; path = "../../LowLevelCloth/src/SwSolver.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11b37587fd2f11b3758 /* SwSolverKernel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.h"; path = "../../LowLevelCloth/src/SwSolverKernel.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11b37c07fd2f11b37c0 /* TripletScheduler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.h"; path = "../../LowLevelCloth/src/TripletScheduler.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11b38287fd2f11b3828 /* Vec4T.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Vec4T.h"; path = "../../LowLevelCloth/src/Vec4T.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf11b38907fd2f11b3890 /* Allocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.cpp"; path = "../../LowLevelCloth/src/Allocator.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf11b38f87fd2f11b38f8 /* Factory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.cpp"; path = "../../LowLevelCloth/src/Factory.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf11b39607fd2f11b3960 /* PhaseConfig.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.cpp"; path = "../../LowLevelCloth/src/PhaseConfig.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf11b39c87fd2f11b39c8 /* SwCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.cpp"; path = "../../LowLevelCloth/src/SwCloth.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf11b3a307fd2f11b3a30 /* SwClothData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.cpp"; path = "../../LowLevelCloth/src/SwClothData.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf11b3a987fd2f11b3a98 /* SwCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.cpp"; path = "../../LowLevelCloth/src/SwCollision.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf11b3b007fd2f11b3b00 /* SwFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.cpp"; path = "../../LowLevelCloth/src/SwFabric.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf11b3b687fd2f11b3b68 /* SwFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.cpp"; path = "../../LowLevelCloth/src/SwFactory.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf11b3bd07fd2f11b3bd0 /* SwInterCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.cpp"; path = "../../LowLevelCloth/src/SwInterCollision.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf11b3c387fd2f11b3c38 /* SwSelfCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.cpp"; path = "../../LowLevelCloth/src/SwSelfCollision.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf11b3ca07fd2f11b3ca0 /* SwSolver.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.cpp"; path = "../../LowLevelCloth/src/SwSolver.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf11b3d087fd2f11b3d08 /* SwSolverKernel.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.cpp"; path = "../../LowLevelCloth/src/SwSolverKernel.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf11b3d707fd2f11b3d70 /* TripletScheduler.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.cpp"; path = "../../LowLevelCloth/src/TripletScheduler.cpp"; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */
/* Begin PBXResourcesBuildPhase section */
- FFF2ec722a207f8cec722a20 /* Resources */ = {
+ FFF2f188ae307fd2f188ae30 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2778,7 +2778,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFCec722a207f8cec722a20 /* Frameworks */ = {
+ FFFCf188ae307fd2f188ae30 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2788,23 +2788,23 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF8ec722a207f8cec722a20 /* Sources */ = {
+ FFF8f188ae307fd2f188ae30 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFFed0328907f8ced032890,
- FFFFed0328f87f8ced0328f8,
- FFFFed0329607f8ced032960,
- FFFFed0329c87f8ced0329c8,
- FFFFed032a307f8ced032a30,
- FFFFed032a987f8ced032a98,
- FFFFed032b007f8ced032b00,
- FFFFed032b687f8ced032b68,
- FFFFed032bd07f8ced032bd0,
- FFFFed032c387f8ced032c38,
- FFFFed032ca07f8ced032ca0,
- FFFFed032d087f8ced032d08,
- FFFFed032d707f8ced032d70,
+ FFFFf11b38907fd2f11b3890,
+ FFFFf11b38f87fd2f11b38f8,
+ FFFFf11b39607fd2f11b3960,
+ FFFFf11b39c87fd2f11b39c8,
+ FFFFf11b3a307fd2f11b3a30,
+ FFFFf11b3a987fd2f11b3a98,
+ FFFFf11b3b007fd2f11b3b00,
+ FFFFf11b3b687fd2f11b3b68,
+ FFFFf11b3bd07fd2f11b3bd0,
+ FFFFf11b3c387fd2f11b3c38,
+ FFFFf11b3ca07fd2f11b3ca0,
+ FFFFf11b3d087fd2f11b3d08,
+ FFFFf11b3d707fd2f11b3d70,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -2816,79 +2816,79 @@
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of LowLevelParticles */
- FFFFee0233587f8cee023358 /* PtBatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0233587f8cee023358 /* PtBatcher.cpp */; };
- FFFFee0233c07f8cee0233c0 /* PtBodyTransformVault.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0233c07f8cee0233c0 /* PtBodyTransformVault.cpp */; };
- FFFFee0234287f8cee023428 /* PtCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0234287f8cee023428 /* PtCollision.cpp */; };
- FFFFee0234907f8cee023490 /* PtCollisionBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0234907f8cee023490 /* PtCollisionBox.cpp */; };
- FFFFee0234f87f8cee0234f8 /* PtCollisionCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0234f87f8cee0234f8 /* PtCollisionCapsule.cpp */; };
- FFFFee0235607f8cee023560 /* PtCollisionConvex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0235607f8cee023560 /* PtCollisionConvex.cpp */; };
- FFFFee0235c87f8cee0235c8 /* PtCollisionMesh.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0235c87f8cee0235c8 /* PtCollisionMesh.cpp */; };
- FFFFee0236307f8cee023630 /* PtCollisionPlane.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0236307f8cee023630 /* PtCollisionPlane.cpp */; };
- FFFFee0236987f8cee023698 /* PtCollisionSphere.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0236987f8cee023698 /* PtCollisionSphere.cpp */; };
- FFFFee0237007f8cee023700 /* PtContextCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0237007f8cee023700 /* PtContextCpu.cpp */; };
- FFFFee0237687f8cee023768 /* PtDynamics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0237687f8cee023768 /* PtDynamics.cpp */; };
- FFFFee0237d07f8cee0237d0 /* PtParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0237d07f8cee0237d0 /* PtParticleData.cpp */; };
- FFFFee0238387f8cee023838 /* PtParticleShapeCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0238387f8cee023838 /* PtParticleShapeCpu.cpp */; };
- FFFFee0238a07f8cee0238a0 /* PtParticleSystemSimCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0238a07f8cee0238a0 /* PtParticleSystemSimCpu.cpp */; };
- FFFFee0239087f8cee023908 /* PtSpatialHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0239087f8cee023908 /* PtSpatialHash.cpp */; };
- FFFFee0239707f8cee023970 /* PtSpatialLocalHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDee0239707f8cee023970 /* PtSpatialLocalHash.cpp */; };
+ FFFFf302bd587fd2f302bd58 /* PtBatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf302bd587fd2f302bd58 /* PtBatcher.cpp */; };
+ FFFFf302bdc07fd2f302bdc0 /* PtBodyTransformVault.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf302bdc07fd2f302bdc0 /* PtBodyTransformVault.cpp */; };
+ FFFFf302be287fd2f302be28 /* PtCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf302be287fd2f302be28 /* PtCollision.cpp */; };
+ FFFFf302be907fd2f302be90 /* PtCollisionBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf302be907fd2f302be90 /* PtCollisionBox.cpp */; };
+ FFFFf302bef87fd2f302bef8 /* PtCollisionCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf302bef87fd2f302bef8 /* PtCollisionCapsule.cpp */; };
+ FFFFf302bf607fd2f302bf60 /* PtCollisionConvex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf302bf607fd2f302bf60 /* PtCollisionConvex.cpp */; };
+ FFFFf302bfc87fd2f302bfc8 /* PtCollisionMesh.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf302bfc87fd2f302bfc8 /* PtCollisionMesh.cpp */; };
+ FFFFf302c0307fd2f302c030 /* PtCollisionPlane.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf302c0307fd2f302c030 /* PtCollisionPlane.cpp */; };
+ FFFFf302c0987fd2f302c098 /* PtCollisionSphere.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf302c0987fd2f302c098 /* PtCollisionSphere.cpp */; };
+ FFFFf302c1007fd2f302c100 /* PtContextCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf302c1007fd2f302c100 /* PtContextCpu.cpp */; };
+ FFFFf302c1687fd2f302c168 /* PtDynamics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf302c1687fd2f302c168 /* PtDynamics.cpp */; };
+ FFFFf302c1d07fd2f302c1d0 /* PtParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf302c1d07fd2f302c1d0 /* PtParticleData.cpp */; };
+ FFFFf302c2387fd2f302c238 /* PtParticleShapeCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf302c2387fd2f302c238 /* PtParticleShapeCpu.cpp */; };
+ FFFFf302c2a07fd2f302c2a0 /* PtParticleSystemSimCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf302c2a07fd2f302c2a0 /* PtParticleSystemSimCpu.cpp */; };
+ FFFFf302c3087fd2f302c308 /* PtSpatialHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf302c3087fd2f302c308 /* PtSpatialHash.cpp */; };
+ FFFFf302c3707fd2f302c370 /* PtSpatialLocalHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf302c3707fd2f302c370 /* PtSpatialLocalHash.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFDed8493f07f8ced8493f0 /* LowLevelParticles */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelParticles"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFDee01da007f8cee01da00 /* PtBodyTransformVault.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.h"; path = "../../LowLevelParticles/include/PtBodyTransformVault.h"; sourceTree = SOURCE_ROOT; };
- FFFDee01da687f8cee01da68 /* PtContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContext.h"; path = "../../LowLevelParticles/include/PtContext.h"; sourceTree = SOURCE_ROOT; };
- FFFDee01dad07f8cee01dad0 /* PtGridCellVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtGridCellVector.h"; path = "../../LowLevelParticles/include/PtGridCellVector.h"; sourceTree = SOURCE_ROOT; };
- FFFDee01db387f8cee01db38 /* PtParticle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticle.h"; path = "../../LowLevelParticles/include/PtParticle.h"; sourceTree = SOURCE_ROOT; };
- FFFDee01dba07f8cee01dba0 /* PtParticleContactManagerStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleContactManagerStream.h"; path = "../../LowLevelParticles/include/PtParticleContactManagerStream.h"; sourceTree = SOURCE_ROOT; };
- FFFDee01dc087f8cee01dc08 /* PtParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.h"; path = "../../LowLevelParticles/include/PtParticleData.h"; sourceTree = SOURCE_ROOT; };
- FFFDee01dc707f8cee01dc70 /* PtParticleShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShape.h"; path = "../../LowLevelParticles/include/PtParticleShape.h"; sourceTree = SOURCE_ROOT; };
- FFFDee01dcd87f8cee01dcd8 /* PtParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemCore.h"; path = "../../LowLevelParticles/include/PtParticleSystemCore.h"; sourceTree = SOURCE_ROOT; };
- FFFDee01dd407f8cee01dd40 /* PtParticleSystemFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemFlags.h"; path = "../../LowLevelParticles/include/PtParticleSystemFlags.h"; sourceTree = SOURCE_ROOT; };
- FFFDee01dda87f8cee01dda8 /* PtParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSim.h"; path = "../../LowLevelParticles/include/PtParticleSystemSim.h"; sourceTree = SOURCE_ROOT; };
- FFFDee022a007f8cee022a00 /* PtBatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.h"; path = "../../LowLevelParticles/src/PtBatcher.h"; sourceTree = SOURCE_ROOT; };
- FFFDee022a687f8cee022a68 /* PtCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.h"; path = "../../LowLevelParticles/src/PtCollision.h"; sourceTree = SOURCE_ROOT; };
- FFFDee022ad07f8cee022ad0 /* PtCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionData.h"; path = "../../LowLevelParticles/src/PtCollisionData.h"; sourceTree = SOURCE_ROOT; };
- FFFDee022b387f8cee022b38 /* PtCollisionHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionHelper.h"; path = "../../LowLevelParticles/src/PtCollisionHelper.h"; sourceTree = SOURCE_ROOT; };
- FFFDee022ba07f8cee022ba0 /* PtCollisionMethods.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMethods.h"; path = "../../LowLevelParticles/src/PtCollisionMethods.h"; sourceTree = SOURCE_ROOT; };
- FFFDee022c087f8cee022c08 /* PtCollisionParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionParameters.h"; path = "../../LowLevelParticles/src/PtCollisionParameters.h"; sourceTree = SOURCE_ROOT; };
- FFFDee022c707f8cee022c70 /* PtConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConfig.h"; path = "../../LowLevelParticles/src/PtConfig.h"; sourceTree = SOURCE_ROOT; };
- FFFDee022cd87f8cee022cd8 /* PtConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConstants.h"; path = "../../LowLevelParticles/src/PtConstants.h"; sourceTree = SOURCE_ROOT; };
- FFFDee022d407f8cee022d40 /* PtContextCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.h"; path = "../../LowLevelParticles/src/PtContextCpu.h"; sourceTree = SOURCE_ROOT; };
- FFFDee022da87f8cee022da8 /* PtDynamicHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicHelper.h"; path = "../../LowLevelParticles/src/PtDynamicHelper.h"; sourceTree = SOURCE_ROOT; };
- FFFDee022e107f8cee022e10 /* PtDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.h"; path = "../../LowLevelParticles/src/PtDynamics.h"; sourceTree = SOURCE_ROOT; };
- FFFDee022e787f8cee022e78 /* PtDynamicsKernels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsKernels.h"; path = "../../LowLevelParticles/src/PtDynamicsKernels.h"; sourceTree = SOURCE_ROOT; };
- FFFDee022ee07f8cee022ee0 /* PtDynamicsParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsParameters.h"; path = "../../LowLevelParticles/src/PtDynamicsParameters.h"; sourceTree = SOURCE_ROOT; };
- FFFDee022f487f8cee022f48 /* PtDynamicsTempBuffers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsTempBuffers.h"; path = "../../LowLevelParticles/src/PtDynamicsTempBuffers.h"; sourceTree = SOURCE_ROOT; };
- FFFDee022fb07f8cee022fb0 /* PtHeightFieldAabbTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtHeightFieldAabbTest.h"; path = "../../LowLevelParticles/src/PtHeightFieldAabbTest.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0230187f8cee023018 /* PtPacketSections.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtPacketSections.h"; path = "../../LowLevelParticles/src/PtPacketSections.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0230807f8cee023080 /* PtParticleCell.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleCell.h"; path = "../../LowLevelParticles/src/PtParticleCell.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0230e87f8cee0230e8 /* PtParticleOpcodeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleOpcodeCache.h"; path = "../../LowLevelParticles/src/PtParticleOpcodeCache.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0231507f8cee023150 /* PtParticleShapeCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.h"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0231b87f8cee0231b8 /* PtParticleSystemSimCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.h"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0232207f8cee023220 /* PtSpatialHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.h"; path = "../../LowLevelParticles/src/PtSpatialHash.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0232887f8cee023288 /* PtSpatialHashHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHashHelper.h"; path = "../../LowLevelParticles/src/PtSpatialHashHelper.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0232f07f8cee0232f0 /* PtTwoWayData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtTwoWayData.h"; path = "../../LowLevelParticles/src/PtTwoWayData.h"; sourceTree = SOURCE_ROOT; };
- FFFDee0233587f8cee023358 /* PtBatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.cpp"; path = "../../LowLevelParticles/src/PtBatcher.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0233c07f8cee0233c0 /* PtBodyTransformVault.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.cpp"; path = "../../LowLevelParticles/src/PtBodyTransformVault.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0234287f8cee023428 /* PtCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.cpp"; path = "../../LowLevelParticles/src/PtCollision.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0234907f8cee023490 /* PtCollisionBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionBox.cpp"; path = "../../LowLevelParticles/src/PtCollisionBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0234f87f8cee0234f8 /* PtCollisionCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionCapsule.cpp"; path = "../../LowLevelParticles/src/PtCollisionCapsule.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0235607f8cee023560 /* PtCollisionConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionConvex.cpp"; path = "../../LowLevelParticles/src/PtCollisionConvex.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0235c87f8cee0235c8 /* PtCollisionMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMesh.cpp"; path = "../../LowLevelParticles/src/PtCollisionMesh.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0236307f8cee023630 /* PtCollisionPlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionPlane.cpp"; path = "../../LowLevelParticles/src/PtCollisionPlane.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0236987f8cee023698 /* PtCollisionSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionSphere.cpp"; path = "../../LowLevelParticles/src/PtCollisionSphere.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0237007f8cee023700 /* PtContextCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.cpp"; path = "../../LowLevelParticles/src/PtContextCpu.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0237687f8cee023768 /* PtDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.cpp"; path = "../../LowLevelParticles/src/PtDynamics.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0237d07f8cee0237d0 /* PtParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.cpp"; path = "../../LowLevelParticles/src/PtParticleData.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0238387f8cee023838 /* PtParticleShapeCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0238a07f8cee0238a0 /* PtParticleSystemSimCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0239087f8cee023908 /* PtSpatialHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialHash.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDee0239707f8cee023970 /* PtSpatialLocalHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialLocalHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialLocalHash.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf28619307fd2f2861930 /* LowLevelParticles */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelParticles"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFDf30256007fd2f3025600 /* PtBodyTransformVault.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.h"; path = "../../LowLevelParticles/include/PtBodyTransformVault.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30256687fd2f3025668 /* PtContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContext.h"; path = "../../LowLevelParticles/include/PtContext.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30256d07fd2f30256d0 /* PtGridCellVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtGridCellVector.h"; path = "../../LowLevelParticles/include/PtGridCellVector.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30257387fd2f3025738 /* PtParticle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticle.h"; path = "../../LowLevelParticles/include/PtParticle.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30257a07fd2f30257a0 /* PtParticleContactManagerStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleContactManagerStream.h"; path = "../../LowLevelParticles/include/PtParticleContactManagerStream.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30258087fd2f3025808 /* PtParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.h"; path = "../../LowLevelParticles/include/PtParticleData.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30258707fd2f3025870 /* PtParticleShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShape.h"; path = "../../LowLevelParticles/include/PtParticleShape.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30258d87fd2f30258d8 /* PtParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemCore.h"; path = "../../LowLevelParticles/include/PtParticleSystemCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30259407fd2f3025940 /* PtParticleSystemFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemFlags.h"; path = "../../LowLevelParticles/include/PtParticleSystemFlags.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30259a87fd2f30259a8 /* PtParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSim.h"; path = "../../LowLevelParticles/include/PtParticleSystemSim.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf302b4007fd2f302b400 /* PtBatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.h"; path = "../../LowLevelParticles/src/PtBatcher.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf302b4687fd2f302b468 /* PtCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.h"; path = "../../LowLevelParticles/src/PtCollision.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf302b4d07fd2f302b4d0 /* PtCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionData.h"; path = "../../LowLevelParticles/src/PtCollisionData.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf302b5387fd2f302b538 /* PtCollisionHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionHelper.h"; path = "../../LowLevelParticles/src/PtCollisionHelper.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf302b5a07fd2f302b5a0 /* PtCollisionMethods.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMethods.h"; path = "../../LowLevelParticles/src/PtCollisionMethods.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf302b6087fd2f302b608 /* PtCollisionParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionParameters.h"; path = "../../LowLevelParticles/src/PtCollisionParameters.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf302b6707fd2f302b670 /* PtConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConfig.h"; path = "../../LowLevelParticles/src/PtConfig.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf302b6d87fd2f302b6d8 /* PtConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConstants.h"; path = "../../LowLevelParticles/src/PtConstants.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf302b7407fd2f302b740 /* PtContextCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.h"; path = "../../LowLevelParticles/src/PtContextCpu.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf302b7a87fd2f302b7a8 /* PtDynamicHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicHelper.h"; path = "../../LowLevelParticles/src/PtDynamicHelper.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf302b8107fd2f302b810 /* PtDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.h"; path = "../../LowLevelParticles/src/PtDynamics.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf302b8787fd2f302b878 /* PtDynamicsKernels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsKernels.h"; path = "../../LowLevelParticles/src/PtDynamicsKernels.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf302b8e07fd2f302b8e0 /* PtDynamicsParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsParameters.h"; path = "../../LowLevelParticles/src/PtDynamicsParameters.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf302b9487fd2f302b948 /* PtDynamicsTempBuffers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsTempBuffers.h"; path = "../../LowLevelParticles/src/PtDynamicsTempBuffers.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf302b9b07fd2f302b9b0 /* PtHeightFieldAabbTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtHeightFieldAabbTest.h"; path = "../../LowLevelParticles/src/PtHeightFieldAabbTest.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf302ba187fd2f302ba18 /* PtPacketSections.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtPacketSections.h"; path = "../../LowLevelParticles/src/PtPacketSections.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf302ba807fd2f302ba80 /* PtParticleCell.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleCell.h"; path = "../../LowLevelParticles/src/PtParticleCell.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf302bae87fd2f302bae8 /* PtParticleOpcodeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleOpcodeCache.h"; path = "../../LowLevelParticles/src/PtParticleOpcodeCache.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf302bb507fd2f302bb50 /* PtParticleShapeCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.h"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf302bbb87fd2f302bbb8 /* PtParticleSystemSimCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.h"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf302bc207fd2f302bc20 /* PtSpatialHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.h"; path = "../../LowLevelParticles/src/PtSpatialHash.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf302bc887fd2f302bc88 /* PtSpatialHashHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHashHelper.h"; path = "../../LowLevelParticles/src/PtSpatialHashHelper.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf302bcf07fd2f302bcf0 /* PtTwoWayData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtTwoWayData.h"; path = "../../LowLevelParticles/src/PtTwoWayData.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf302bd587fd2f302bd58 /* PtBatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.cpp"; path = "../../LowLevelParticles/src/PtBatcher.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf302bdc07fd2f302bdc0 /* PtBodyTransformVault.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.cpp"; path = "../../LowLevelParticles/src/PtBodyTransformVault.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf302be287fd2f302be28 /* PtCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.cpp"; path = "../../LowLevelParticles/src/PtCollision.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf302be907fd2f302be90 /* PtCollisionBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionBox.cpp"; path = "../../LowLevelParticles/src/PtCollisionBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf302bef87fd2f302bef8 /* PtCollisionCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionCapsule.cpp"; path = "../../LowLevelParticles/src/PtCollisionCapsule.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf302bf607fd2f302bf60 /* PtCollisionConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionConvex.cpp"; path = "../../LowLevelParticles/src/PtCollisionConvex.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf302bfc87fd2f302bfc8 /* PtCollisionMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMesh.cpp"; path = "../../LowLevelParticles/src/PtCollisionMesh.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf302c0307fd2f302c030 /* PtCollisionPlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionPlane.cpp"; path = "../../LowLevelParticles/src/PtCollisionPlane.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf302c0987fd2f302c098 /* PtCollisionSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionSphere.cpp"; path = "../../LowLevelParticles/src/PtCollisionSphere.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf302c1007fd2f302c100 /* PtContextCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.cpp"; path = "../../LowLevelParticles/src/PtContextCpu.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf302c1687fd2f302c168 /* PtDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.cpp"; path = "../../LowLevelParticles/src/PtDynamics.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf302c1d07fd2f302c1d0 /* PtParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.cpp"; path = "../../LowLevelParticles/src/PtParticleData.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf302c2387fd2f302c238 /* PtParticleShapeCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf302c2a07fd2f302c2a0 /* PtParticleSystemSimCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf302c3087fd2f302c308 /* PtSpatialHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialHash.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf302c3707fd2f302c370 /* PtSpatialLocalHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialLocalHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialLocalHash.cpp"; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */
/* Begin PBXResourcesBuildPhase section */
- FFF2ed8493f07f8ced8493f0 /* Resources */ = {
+ FFF2f28619307fd2f2861930 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2898,7 +2898,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFCed8493f07f8ced8493f0 /* Frameworks */ = {
+ FFFCf28619307fd2f2861930 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2908,26 +2908,26 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF8ed8493f07f8ced8493f0 /* Sources */ = {
+ FFF8f28619307fd2f2861930 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFFee0233587f8cee023358,
- FFFFee0233c07f8cee0233c0,
- FFFFee0234287f8cee023428,
- FFFFee0234907f8cee023490,
- FFFFee0234f87f8cee0234f8,
- FFFFee0235607f8cee023560,
- FFFFee0235c87f8cee0235c8,
- FFFFee0236307f8cee023630,
- FFFFee0236987f8cee023698,
- FFFFee0237007f8cee023700,
- FFFFee0237687f8cee023768,
- FFFFee0237d07f8cee0237d0,
- FFFFee0238387f8cee023838,
- FFFFee0238a07f8cee0238a0,
- FFFFee0239087f8cee023908,
- FFFFee0239707f8cee023970,
+ FFFFf302bd587fd2f302bd58,
+ FFFFf302bdc07fd2f302bdc0,
+ FFFFf302be287fd2f302be28,
+ FFFFf302be907fd2f302be90,
+ FFFFf302bef87fd2f302bef8,
+ FFFFf302bf607fd2f302bf60,
+ FFFFf302bfc87fd2f302bfc8,
+ FFFFf302c0307fd2f302c030,
+ FFFFf302c0987fd2f302c098,
+ FFFFf302c1007fd2f302c100,
+ FFFFf302c1687fd2f302c168,
+ FFFFf302c1d07fd2f302c1d0,
+ FFFFf302c2387fd2f302c238,
+ FFFFf302c2a07fd2f302c2a0,
+ FFFFf302c3087fd2f302c308,
+ FFFFf302c3707fd2f302c370,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -2939,22 +2939,22 @@
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of PxTask */
- FFFFeb400b407f8ceb400b40 /* src/TaskManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDeb400b407f8ceb400b40 /* src/TaskManager.cpp */; };
+ FFFFf2bf6de07fd2f2bf6de0 /* src/TaskManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf2bf6de07fd2f2bf6de0 /* src/TaskManager.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFDec48c6307f8cec48c630 /* PxTask */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxTask"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFDeb42d3b07f8ceb42d3b0 /* PxCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCpuDispatcher.h"; path = "../../../../PxShared/include/task/PxCpuDispatcher.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb42d4187f8ceb42d418 /* PxGpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuDispatcher.h"; path = "../../../../PxShared/include/task/PxGpuDispatcher.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb42d4807f8ceb42d480 /* PxGpuTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuTask.h"; path = "../../../../PxShared/include/task/PxGpuTask.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb42d4e87f8ceb42d4e8 /* PxTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTask.h"; path = "../../../../PxShared/include/task/PxTask.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb42d5507f8ceb42d550 /* PxTaskDefine.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskDefine.h"; path = "../../../../PxShared/include/task/PxTaskDefine.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb42d5b87f8ceb42d5b8 /* PxTaskManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskManager.h"; path = "../../../../PxShared/include/task/PxTaskManager.h"; sourceTree = SOURCE_ROOT; };
- FFFDeb400b407f8ceb400b40 /* src/TaskManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/TaskManager.cpp"; path = "../../../../PxShared/src/task/src/TaskManager.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf28f6e807fd2f28f6e80 /* PxTask */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxTask"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFDf2bf77e07fd2f2bf77e0 /* PxCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCpuDispatcher.h"; path = "../../../../PxShared/include/task/PxCpuDispatcher.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2bf78487fd2f2bf7848 /* PxGpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuDispatcher.h"; path = "../../../../PxShared/include/task/PxGpuDispatcher.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2bf78b07fd2f2bf78b0 /* PxGpuTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuTask.h"; path = "../../../../PxShared/include/task/PxGpuTask.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2bf79187fd2f2bf7918 /* PxTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTask.h"; path = "../../../../PxShared/include/task/PxTask.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2bf79807fd2f2bf7980 /* PxTaskDefine.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskDefine.h"; path = "../../../../PxShared/include/task/PxTaskDefine.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2bf79e87fd2f2bf79e8 /* PxTaskManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskManager.h"; path = "../../../../PxShared/include/task/PxTaskManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2bf6de07fd2f2bf6de0 /* 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 */
- FFF2ec48c6307f8cec48c630 /* Resources */ = {
+ FFF2f28f6e807fd2f28f6e80 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2964,7 +2964,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFCec48c6307f8cec48c630 /* Frameworks */ = {
+ FFFCf28f6e807fd2f28f6e80 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2974,11 +2974,11 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF8ec48c6307f8cec48c630 /* Sources */ = {
+ FFF8f28f6e807fd2f28f6e80 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFFeb400b407f8ceb400b40,
+ FFFFf2bf6de07fd2f2bf6de0,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -2990,17 +2990,17 @@
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of PsFastXml */
- FFFFeda8b6d07f8ceda8b6d0 /* PsFastXml.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDeda8b6d07f8ceda8b6d0 /* PsFastXml.cpp */; };
+ FFFFf2d244607fd2f2d24460 /* PsFastXml.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf2d244607fd2f2d24460 /* PsFastXml.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFDeda901707f8ceda90170 /* PsFastXml */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PsFastXml"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFDeda8b5d07f8ceda8b5d0 /* PsFastXml.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PsFastXml.h"; path = "../../../../PxShared/src/fastxml/include/PsFastXml.h"; sourceTree = SOURCE_ROOT; };
- FFFDeda8b6d07f8ceda8b6d0 /* PsFastXml.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PsFastXml.cpp"; path = "../../../../PxShared/src/fastxml/src/PsFastXml.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2d23c207fd2f2d23c20 /* PsFastXml */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PsFastXml"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFDf2d243607fd2f2d24360 /* PsFastXml.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PsFastXml.h"; path = "../../../../PxShared/src/fastxml/include/PsFastXml.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2d244607fd2f2d24460 /* 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 */
- FFF2eda901707f8ceda90170 /* Resources */ = {
+ FFF2f2d23c207fd2f2d23c20 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -3010,7 +3010,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFCeda901707f8ceda90170 /* Frameworks */ = {
+ FFFCf2d23c207fd2f2d23c20 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -3020,11 +3020,11 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF8eda901707f8ceda90170 /* Sources */ = {
+ FFF8f2d23c207fd2f2d23c20 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFFeda8b6d07f8ceda8b6d0,
+ FFFFf2d244607fd2f2d24460,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -3036,1974 +3036,1974 @@
/* End PBXTargetDependency section */
/* Begin PBXContainerItemProxy section */
- FFF5eda934e07f8ceda934e0 /* PBXContainerItemProxy */ = {
- containerPortal = FFF9eb57ca007f8ceb57ca00 /* Project object */;
+ FFF5f2d231d07fd2f2d231d0 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF9f0c7c9507fd2f0c7c950 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFAeda934e07f8ceda934e0 /* PhysX */;
+ remoteGlobalIDString = FFFAf2d231d07fd2f2d231d0 /* PhysX */;
remoteInfo = "PhysX";
};
- FFF5eda9c0c07f8ceda9c0c0 /* PBXContainerItemProxy */ = {
- containerPortal = FFF9eb57ca007f8ceb57ca00 /* Project object */;
+ FFF5f2d50f307fd2f2d50f30 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF9f0c7c9507fd2f0c7c950 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFAeda9c0c07f8ceda9c0c0 /* PhysXCharacterKinematic */;
+ remoteGlobalIDString = FFFAf2d50f307fd2f2d50f30 /* PhysXCharacterKinematic */;
remoteInfo = "PhysXCharacterKinematic";
};
- FFF5eda9d5107f8ceda9d510 /* PBXContainerItemProxy */ = {
- containerPortal = FFF9eb57ca007f8ceb57ca00 /* Project object */;
+ FFF5f2d4e3107fd2f2d4e310 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF9f0c7c9507fd2f0c7c950 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFAeda9d5107f8ceda9d510 /* PhysXVehicle */;
+ remoteGlobalIDString = FFFAf2d4e3107fd2f2d4e310 /* PhysXVehicle */;
remoteInfo = "PhysXVehicle";
};
- FFF5edaae9b07f8cedaae9b0 /* PBXContainerItemProxy */ = {
- containerPortal = FFF9eb57ca007f8ceb57ca00 /* Project object */;
+ FFF5f2d5f8507fd2f2d5f850 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF9f0c7c9507fd2f0c7c950 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFAedaae9b07f8cedaae9b0 /* PhysXExtensions */;
+ remoteGlobalIDString = FFFAf2d5f8507fd2f2d5f850 /* PhysXExtensions */;
remoteInfo = "PhysXExtensions";
};
- FFF5edabfac07f8cedabfac0 /* PBXContainerItemProxy */ = {
- containerPortal = FFF9eb57ca007f8ceb57ca00 /* Project object */;
+ FFF5f2d709607fd2f2d70960 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF9f0c7c9507fd2f0c7c950 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFAedabfac07f8cedabfac0 /* SceneQuery */;
+ remoteGlobalIDString = FFFAf2d709607fd2f2d70960 /* SceneQuery */;
remoteInfo = "SceneQuery";
};
- FFF5edac3f107f8cedac3f10 /* PBXContainerItemProxy */ = {
- containerPortal = FFF9eb57ca007f8ceb57ca00 /* Project object */;
+ FFF5f2d74db07fd2f2d74db0 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF9f0c7c9507fd2f0c7c950 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFAedac3f107f8cedac3f10 /* SimulationController */;
+ remoteGlobalIDString = FFFAf2d74db07fd2f2d74db0 /* SimulationController */;
remoteInfo = "SimulationController";
};
- FFF5edac8fa07f8cedac8fa0 /* PBXContainerItemProxy */ = {
- containerPortal = FFF9eb57ca007f8ceb57ca00 /* Project object */;
+ FFF5f1f241a07fd2f1f241a0 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF9f0c7c9507fd2f0c7c950 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFAedac8fa07f8cedac8fa0 /* PhysXCooking */;
+ remoteGlobalIDString = FFFAf1f241a07fd2f1f241a0 /* PhysXCooking */;
remoteInfo = "PhysXCooking";
};
- FFF5ec1a0dc07f8cec1a0dc0 /* PBXContainerItemProxy */ = {
- containerPortal = FFF9eb57ca007f8ceb57ca00 /* Project object */;
+ FFF5f18a0c307fd2f18a0c30 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF9f0c7c9507fd2f0c7c950 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFAec1a0dc07f8cec1a0dc0 /* PhysXCommon */;
+ remoteGlobalIDString = FFFAf18a0c307fd2f18a0c30 /* PhysXCommon */;
remoteInfo = "PhysXCommon";
};
- FFF5ec18e0107f8cec18e010 /* PBXContainerItemProxy */ = {
- containerPortal = FFF9eb57ca007f8ceb57ca00 /* Project object */;
+ FFF5f188de607fd2f188de60 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF9f0c7c9507fd2f0c7c950 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFAec18e0107f8cec18e010 /* PxFoundation */;
+ remoteGlobalIDString = FFFAf188de607fd2f188de60 /* PxFoundation */;
remoteInfo = "PxFoundation";
};
- FFF5ed809f207f8ced809f20 /* PBXContainerItemProxy */ = {
- containerPortal = FFF9eb57ca007f8ceb57ca00 /* Project object */;
+ FFF5f2809f007fd2f2809f00 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF9f0c7c9507fd2f0c7c950 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFAed809f207f8ced809f20 /* PxPvdSDK */;
+ remoteGlobalIDString = FFFAf2809f007fd2f2809f00 /* PxPvdSDK */;
remoteInfo = "PxPvdSDK";
};
- FFF5ec5094107f8cec509410 /* PBXContainerItemProxy */ = {
- containerPortal = FFF9eb57ca007f8ceb57ca00 /* Project object */;
+ FFF5f28272b07fd2f28272b0 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF9f0c7c9507fd2f0c7c950 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFAec5094107f8cec509410 /* LowLevel */;
+ remoteGlobalIDString = FFFAf28272b07fd2f28272b0 /* LowLevel */;
remoteInfo = "LowLevel";
};
- FFF5ec410d307f8cec410d30 /* PBXContainerItemProxy */ = {
- containerPortal = FFF9eb57ca007f8ceb57ca00 /* Project object */;
+ FFF5f2854ea07fd2f2854ea0 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF9f0c7c9507fd2f0c7c950 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFAec410d307f8cec410d30 /* LowLevelAABB */;
+ remoteGlobalIDString = FFFAf2854ea07fd2f2854ea0 /* LowLevelAABB */;
remoteInfo = "LowLevelAABB";
};
- FFF5ed82e9f07f8ced82e9f0 /* PBXContainerItemProxy */ = {
- containerPortal = FFF9eb57ca007f8ceb57ca00 /* Project object */;
+ FFF5f29090e07fd2f29090e0 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF9f0c7c9507fd2f0c7c950 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFAed82e9f07f8ced82e9f0 /* LowLevelDynamics */;
+ remoteGlobalIDString = FFFAf29090e07fd2f29090e0 /* LowLevelDynamics */;
remoteInfo = "LowLevelDynamics";
};
- FFF5ec722a207f8cec722a20 /* PBXContainerItemProxy */ = {
- containerPortal = FFF9eb57ca007f8ceb57ca00 /* Project object */;
+ FFF5f188ae307fd2f188ae30 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF9f0c7c9507fd2f0c7c950 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFAec722a207f8cec722a20 /* LowLevelCloth */;
+ remoteGlobalIDString = FFFAf188ae307fd2f188ae30 /* LowLevelCloth */;
remoteInfo = "LowLevelCloth";
};
- FFF5ed8493f07f8ced8493f0 /* PBXContainerItemProxy */ = {
- containerPortal = FFF9eb57ca007f8ceb57ca00 /* Project object */;
+ FFF5f28619307fd2f2861930 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF9f0c7c9507fd2f0c7c950 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFAed8493f07f8ced8493f0 /* LowLevelParticles */;
+ remoteGlobalIDString = FFFAf28619307fd2f2861930 /* LowLevelParticles */;
remoteInfo = "LowLevelParticles";
};
- FFF5ec48c6307f8cec48c630 /* PBXContainerItemProxy */ = {
- containerPortal = FFF9eb57ca007f8ceb57ca00 /* Project object */;
+ FFF5f28f6e807fd2f28f6e80 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF9f0c7c9507fd2f0c7c950 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFAec48c6307f8cec48c630 /* PxTask */;
+ remoteGlobalIDString = FFFAf28f6e807fd2f28f6e80 /* PxTask */;
remoteInfo = "PxTask";
};
- FFF5eda901707f8ceda90170 /* PBXContainerItemProxy */ = {
- containerPortal = FFF9eb57ca007f8ceb57ca00 /* Project object */;
+ FFF5f2d23c207fd2f2d23c20 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF9f0c7c9507fd2f0c7c950 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFAeda901707f8ceda90170 /* PsFastXml */;
+ remoteGlobalIDString = FFFAf2d23c207fd2f2d23c20 /* PsFastXml */;
remoteInfo = "PsFastXml";
};
/* End PBXContainerItemProxy section */
/* Begin PBXGroup section */
- FFFBeb57ca687f8ceb57ca68 /* PhysX */ = {
+ FFFBf0c7c9b87fd2f0c7c9b8 /* PhysX */ = {
isa = PBXGroup;
children = (
- FFF0eb57ca007f8ceb57ca00 /* Source */,
- FFEEeb57ca007f8ceb57ca00 /* Products */,
+ FFF0f0c7c9507fd2f0c7c950 /* Source */,
+ FFEEf0c7c9507fd2f0c7c950 /* Products */,
);
name = "PhysX";
sourceTree = "<group>";
};
- FFF0eb57ca007f8ceb57ca00 /* Source */ = {
+ FFF0f0c7c9507fd2f0c7c950 /* Source */ = {
isa = PBXGroup;
children = (
- FFFBeda934e07f8ceda934e0,
- FFFBeda9c0c07f8ceda9c0c0,
- FFFBeda9d5107f8ceda9d510,
- FFFBedaae9b07f8cedaae9b0,
- FFFBedabfac07f8cedabfac0,
- FFFBedac3f107f8cedac3f10,
- FFFBedac8fa07f8cedac8fa0,
- FFFBec1a0dc07f8cec1a0dc0,
- FFFBec18e0107f8cec18e010,
- FFFBed809f207f8ced809f20,
- FFFBec5094107f8cec509410,
- FFFBec410d307f8cec410d30,
- FFFBed82e9f07f8ced82e9f0,
- FFFBec722a207f8cec722a20,
- FFFBed8493f07f8ced8493f0,
- FFFBec48c6307f8cec48c630,
- FFFBeda901707f8ceda90170,
+ FFFBf2d231d07fd2f2d231d0,
+ FFFBf2d50f307fd2f2d50f30,
+ FFFBf2d4e3107fd2f2d4e310,
+ FFFBf2d5f8507fd2f2d5f850,
+ FFFBf2d709607fd2f2d70960,
+ FFFBf2d74db07fd2f2d74db0,
+ FFFBf1f241a07fd2f1f241a0,
+ FFFBf18a0c307fd2f18a0c30,
+ FFFBf188de607fd2f188de60,
+ FFFBf2809f007fd2f2809f00,
+ FFFBf28272b07fd2f28272b0,
+ FFFBf2854ea07fd2f2854ea0,
+ FFFBf29090e07fd2f29090e0,
+ FFFBf188ae307fd2f188ae30,
+ FFFBf28619307fd2f2861930,
+ FFFBf28f6e807fd2f28f6e80,
+ FFFBf2d23c207fd2f2d23c20,
);
name = Source;
sourceTree = "<group>";
};
- FFEEeb57ca007f8ceb57ca00 /* Products */ = {
+ FFEEf0c7c9507fd2f0c7c950 /* Products */ = {
isa = PBXGroup;
children = (
- FFFDeda934e07f8ceda934e0,
- FFFDeda9c0c07f8ceda9c0c0,
- FFFDeda9d5107f8ceda9d510,
- FFFDedaae9b07f8cedaae9b0,
- FFFDedabfac07f8cedabfac0,
- FFFDedac3f107f8cedac3f10,
- FFFDedac8fa07f8cedac8fa0,
- FFFDec1a0dc07f8cec1a0dc0,
- FFFDec18e0107f8cec18e010,
- FFFDed809f207f8ced809f20,
- FFFDec5094107f8cec509410,
- FFFDec410d307f8cec410d30,
- FFFDed82e9f07f8ced82e9f0,
- FFFDec722a207f8cec722a20,
- FFFDed8493f07f8ced8493f0,
- FFFDec48c6307f8cec48c630,
- FFFDeda901707f8ceda90170,
+ FFFDf2d231d07fd2f2d231d0,
+ FFFDf2d50f307fd2f2d50f30,
+ FFFDf2d4e3107fd2f2d4e310,
+ FFFDf2d5f8507fd2f2d5f850,
+ FFFDf2d709607fd2f2d70960,
+ FFFDf2d74db07fd2f2d74db0,
+ FFFDf1f241a07fd2f1f241a0,
+ FFFDf18a0c307fd2f18a0c30,
+ FFFDf188de607fd2f188de60,
+ FFFDf2809f007fd2f2809f00,
+ FFFDf28272b07fd2f28272b0,
+ FFFDf2854ea07fd2f2854ea0,
+ FFFDf29090e07fd2f29090e0,
+ FFFDf188ae307fd2f188ae30,
+ FFFDf28619307fd2f2861930,
+ FFFDf28f6e807fd2f28f6e80,
+ FFFDf2d23c207fd2f2d23c20,
);
name = Products;
sourceTree = "<group>";
};
- FFFBeda934e07f8ceda934e0 /* PhysX */ = {
+ FFFBf2d231d07fd2f2d231d0 /* PhysX */ = {
isa = PBXGroup;
children = (
- FFFBedaa3db07f8cedaa3db0 /* src */,
- FFFBedaa3dd87f8cedaa3dd8 /* include */,
- FFFBedaa3e007f8cedaa3e00 /* metadata */,
+ FFFBf2d54cb07fd2f2d54cb0 /* src */,
+ FFFBf2d54cd87fd2f2d54cd8 /* include */,
+ FFFBf2d54d007fd2f2d54d00 /* metadata */,
);
name = "PhysX";
sourceTree = "<group>";
};
- FFFBedaa3db07f8cedaa3db0 /* src */ = {
+ FFFBf2d54cb07fd2f2d54cb0 /* src */ = {
isa = PBXGroup;
children = (
- FFFDee0540007f8cee054000 /* NpActor.h */,
- FFFDee0540687f8cee054068 /* NpActorTemplate.h */,
- FFFDee0540d07f8cee0540d0 /* NpAggregate.h */,
- FFFDee0541387f8cee054138 /* NpArticulation.h */,
- FFFDee0541a07f8cee0541a0 /* NpArticulationJoint.h */,
- FFFDee0542087f8cee054208 /* NpArticulationLink.h */,
- FFFDee0542707f8cee054270 /* NpBatchQuery.h */,
- FFFDee0542d87f8cee0542d8 /* NpCast.h */,
- FFFDee0543407f8cee054340 /* NpConnector.h */,
- FFFDee0543a87f8cee0543a8 /* NpConstraint.h */,
- FFFDee0544107f8cee054410 /* NpFactory.h */,
- FFFDee0544787f8cee054478 /* NpMaterial.h */,
- FFFDee0544e07f8cee0544e0 /* NpMaterialManager.h */,
- FFFDee0545487f8cee054548 /* NpPhysics.h */,
- FFFDee0545b07f8cee0545b0 /* NpPhysicsInsertionCallback.h */,
- FFFDee0546187f8cee054618 /* NpPtrTableStorageManager.h */,
- FFFDee0546807f8cee054680 /* NpPvdSceneQueryCollector.h */,
- FFFDee0546e87f8cee0546e8 /* NpQueryShared.h */,
- FFFDee0547507f8cee054750 /* NpReadCheck.h */,
- FFFDee0547b87f8cee0547b8 /* NpRigidActorTemplate.h */,
- FFFDee0548207f8cee054820 /* NpRigidActorTemplateInternal.h */,
- FFFDee0548887f8cee054888 /* NpRigidBodyTemplate.h */,
- FFFDee0548f07f8cee0548f0 /* NpRigidDynamic.h */,
- FFFDee0549587f8cee054958 /* NpRigidStatic.h */,
- FFFDee0549c07f8cee0549c0 /* NpScene.h */,
- FFFDee054a287f8cee054a28 /* NpSceneQueries.h */,
- FFFDee054a907f8cee054a90 /* NpShape.h */,
- FFFDee054af87f8cee054af8 /* NpShapeManager.h */,
- FFFDee054b607f8cee054b60 /* NpSpatialIndex.h */,
- FFFDee054bc87f8cee054bc8 /* NpVolumeCache.h */,
- FFFDee054c307f8cee054c30 /* NpWriteCheck.h */,
- FFFDee054c987f8cee054c98 /* PvdMetaDataBindingData.h */,
- FFFDee054d007f8cee054d00 /* PvdMetaDataPvdBinding.h */,
- FFFDee054d687f8cee054d68 /* PvdPhysicsClient.h */,
- FFFDee054dd07f8cee054dd0 /* PvdTypeNames.h */,
- FFFDee054e387f8cee054e38 /* NpActor.cpp */,
- FFFDee054ea07f8cee054ea0 /* NpAggregate.cpp */,
- FFFDee054f087f8cee054f08 /* NpArticulation.cpp */,
- FFFDee054f707f8cee054f70 /* NpArticulationJoint.cpp */,
- FFFDee054fd87f8cee054fd8 /* NpArticulationLink.cpp */,
- FFFDee0550407f8cee055040 /* NpBatchQuery.cpp */,
- FFFDee0550a87f8cee0550a8 /* NpConstraint.cpp */,
- FFFDee0551107f8cee055110 /* NpFactory.cpp */,
- FFFDee0551787f8cee055178 /* NpMaterial.cpp */,
- FFFDee0551e07f8cee0551e0 /* NpMetaData.cpp */,
- FFFDee0552487f8cee055248 /* NpPhysics.cpp */,
- FFFDee0552b07f8cee0552b0 /* NpPvdSceneQueryCollector.cpp */,
- FFFDee0553187f8cee055318 /* NpReadCheck.cpp */,
- FFFDee0553807f8cee055380 /* NpRigidDynamic.cpp */,
- FFFDee0553e87f8cee0553e8 /* NpRigidStatic.cpp */,
- FFFDee0554507f8cee055450 /* NpScene.cpp */,
- FFFDee0554b87f8cee0554b8 /* NpSceneQueries.cpp */,
- FFFDee0555207f8cee055520 /* NpSerializerAdapter.cpp */,
- FFFDee0555887f8cee055588 /* NpShape.cpp */,
- FFFDee0555f07f8cee0555f0 /* NpShapeManager.cpp */,
- FFFDee0556587f8cee055658 /* NpSpatialIndex.cpp */,
- FFFDee0556c07f8cee0556c0 /* NpVolumeCache.cpp */,
- FFFDee0557287f8cee055728 /* NpWriteCheck.cpp */,
- FFFDee0557907f8cee055790 /* PvdMetaDataPvdBinding.cpp */,
- FFFDee0557f87f8cee0557f8 /* PvdPhysicsClient.cpp */,
- FFFDee0558607f8cee055860 /* particles/NpParticleBaseTemplate.h */,
- FFFDee0558c87f8cee0558c8 /* particles/NpParticleFluid.h */,
- FFFDee0559307f8cee055930 /* particles/NpParticleFluidReadData.h */,
- FFFDee0559987f8cee055998 /* particles/NpParticleSystem.h */,
- FFFDee055a007f8cee055a00 /* particles/NpParticleFluid.cpp */,
- FFFDee055a687f8cee055a68 /* particles/NpParticleSystem.cpp */,
- FFFDee055ad07f8cee055ad0 /* buffering/ScbActor.h */,
- FFFDee055b387f8cee055b38 /* buffering/ScbAggregate.h */,
- FFFDee055ba07f8cee055ba0 /* buffering/ScbArticulation.h */,
- FFFDee055c087f8cee055c08 /* buffering/ScbArticulationJoint.h */,
- FFFDee055c707f8cee055c70 /* buffering/ScbBase.h */,
- FFFDee055cd87f8cee055cd8 /* buffering/ScbBody.h */,
- FFFDee055d407f8cee055d40 /* buffering/ScbCloth.h */,
- FFFDee055da87f8cee055da8 /* buffering/ScbConstraint.h */,
- FFFDee055e107f8cee055e10 /* buffering/ScbDefs.h */,
- FFFDee055e787f8cee055e78 /* buffering/ScbNpDeps.h */,
- FFFDee055ee07f8cee055ee0 /* buffering/ScbParticleSystem.h */,
- FFFDee055f487f8cee055f48 /* buffering/ScbRigidObject.h */,
- FFFDee055fb07f8cee055fb0 /* buffering/ScbRigidStatic.h */,
- FFFDee0560187f8cee056018 /* buffering/ScbScene.h */,
- FFFDee0560807f8cee056080 /* buffering/ScbSceneBuffer.h */,
- FFFDee0560e87f8cee0560e8 /* buffering/ScbScenePvdClient.h */,
- FFFDee0561507f8cee056150 /* buffering/ScbShape.h */,
- FFFDee0561b87f8cee0561b8 /* buffering/ScbType.h */,
- FFFDee0562207f8cee056220 /* buffering/ScbActor.cpp */,
- FFFDee0562887f8cee056288 /* buffering/ScbAggregate.cpp */,
- FFFDee0562f07f8cee0562f0 /* buffering/ScbBase.cpp */,
- FFFDee0563587f8cee056358 /* buffering/ScbCloth.cpp */,
- FFFDee0563c07f8cee0563c0 /* buffering/ScbMetaData.cpp */,
- FFFDee0564287f8cee056428 /* buffering/ScbParticleSystem.cpp */,
- FFFDee0564907f8cee056490 /* buffering/ScbScene.cpp */,
- FFFDee0564f87f8cee0564f8 /* buffering/ScbScenePvdClient.cpp */,
- FFFDee0565607f8cee056560 /* buffering/ScbShape.cpp */,
- FFFDee0565c87f8cee0565c8 /* cloth/NpCloth.h */,
- FFFDee0566307f8cee056630 /* cloth/NpClothFabric.h */,
- FFFDee0566987f8cee056698 /* cloth/NpClothParticleData.h */,
- FFFDee0567007f8cee056700 /* cloth/NpCloth.cpp */,
- FFFDee0567687f8cee056768 /* cloth/NpClothFabric.cpp */,
- FFFDee0567d07f8cee0567d0 /* cloth/NpClothParticleData.cpp */,
- FFFDee0568387f8cee056838 /* ../../ImmediateMode/src/NpImmediateMode.cpp */,
+ FFFDf383c0007fd2f383c000 /* NpActor.h */,
+ FFFDf383c0687fd2f383c068 /* NpActorTemplate.h */,
+ FFFDf383c0d07fd2f383c0d0 /* NpAggregate.h */,
+ FFFDf383c1387fd2f383c138 /* NpArticulation.h */,
+ FFFDf383c1a07fd2f383c1a0 /* NpArticulationJoint.h */,
+ FFFDf383c2087fd2f383c208 /* NpArticulationLink.h */,
+ FFFDf383c2707fd2f383c270 /* NpBatchQuery.h */,
+ FFFDf383c2d87fd2f383c2d8 /* NpCast.h */,
+ FFFDf383c3407fd2f383c340 /* NpConnector.h */,
+ FFFDf383c3a87fd2f383c3a8 /* NpConstraint.h */,
+ FFFDf383c4107fd2f383c410 /* NpFactory.h */,
+ FFFDf383c4787fd2f383c478 /* NpMaterial.h */,
+ FFFDf383c4e07fd2f383c4e0 /* NpMaterialManager.h */,
+ FFFDf383c5487fd2f383c548 /* NpPhysics.h */,
+ FFFDf383c5b07fd2f383c5b0 /* NpPhysicsInsertionCallback.h */,
+ FFFDf383c6187fd2f383c618 /* NpPtrTableStorageManager.h */,
+ FFFDf383c6807fd2f383c680 /* NpPvdSceneQueryCollector.h */,
+ FFFDf383c6e87fd2f383c6e8 /* NpQueryShared.h */,
+ FFFDf383c7507fd2f383c750 /* NpReadCheck.h */,
+ FFFDf383c7b87fd2f383c7b8 /* NpRigidActorTemplate.h */,
+ FFFDf383c8207fd2f383c820 /* NpRigidActorTemplateInternal.h */,
+ FFFDf383c8887fd2f383c888 /* NpRigidBodyTemplate.h */,
+ FFFDf383c8f07fd2f383c8f0 /* NpRigidDynamic.h */,
+ FFFDf383c9587fd2f383c958 /* NpRigidStatic.h */,
+ FFFDf383c9c07fd2f383c9c0 /* NpScene.h */,
+ FFFDf383ca287fd2f383ca28 /* NpSceneQueries.h */,
+ FFFDf383ca907fd2f383ca90 /* NpShape.h */,
+ FFFDf383caf87fd2f383caf8 /* NpShapeManager.h */,
+ FFFDf383cb607fd2f383cb60 /* NpSpatialIndex.h */,
+ FFFDf383cbc87fd2f383cbc8 /* NpVolumeCache.h */,
+ FFFDf383cc307fd2f383cc30 /* NpWriteCheck.h */,
+ FFFDf383cc987fd2f383cc98 /* PvdMetaDataBindingData.h */,
+ FFFDf383cd007fd2f383cd00 /* PvdMetaDataPvdBinding.h */,
+ FFFDf383cd687fd2f383cd68 /* PvdPhysicsClient.h */,
+ FFFDf383cdd07fd2f383cdd0 /* PvdTypeNames.h */,
+ FFFDf383ce387fd2f383ce38 /* NpActor.cpp */,
+ FFFDf383cea07fd2f383cea0 /* NpAggregate.cpp */,
+ FFFDf383cf087fd2f383cf08 /* NpArticulation.cpp */,
+ FFFDf383cf707fd2f383cf70 /* NpArticulationJoint.cpp */,
+ FFFDf383cfd87fd2f383cfd8 /* NpArticulationLink.cpp */,
+ FFFDf383d0407fd2f383d040 /* NpBatchQuery.cpp */,
+ FFFDf383d0a87fd2f383d0a8 /* NpConstraint.cpp */,
+ FFFDf383d1107fd2f383d110 /* NpFactory.cpp */,
+ FFFDf383d1787fd2f383d178 /* NpMaterial.cpp */,
+ FFFDf383d1e07fd2f383d1e0 /* NpMetaData.cpp */,
+ FFFDf383d2487fd2f383d248 /* NpPhysics.cpp */,
+ FFFDf383d2b07fd2f383d2b0 /* NpPvdSceneQueryCollector.cpp */,
+ FFFDf383d3187fd2f383d318 /* NpReadCheck.cpp */,
+ FFFDf383d3807fd2f383d380 /* NpRigidDynamic.cpp */,
+ FFFDf383d3e87fd2f383d3e8 /* NpRigidStatic.cpp */,
+ FFFDf383d4507fd2f383d450 /* NpScene.cpp */,
+ FFFDf383d4b87fd2f383d4b8 /* NpSceneQueries.cpp */,
+ FFFDf383d5207fd2f383d520 /* NpSerializerAdapter.cpp */,
+ FFFDf383d5887fd2f383d588 /* NpShape.cpp */,
+ FFFDf383d5f07fd2f383d5f0 /* NpShapeManager.cpp */,
+ FFFDf383d6587fd2f383d658 /* NpSpatialIndex.cpp */,
+ FFFDf383d6c07fd2f383d6c0 /* NpVolumeCache.cpp */,
+ FFFDf383d7287fd2f383d728 /* NpWriteCheck.cpp */,
+ FFFDf383d7907fd2f383d790 /* PvdMetaDataPvdBinding.cpp */,
+ FFFDf383d7f87fd2f383d7f8 /* PvdPhysicsClient.cpp */,
+ FFFDf383d8607fd2f383d860 /* particles/NpParticleBaseTemplate.h */,
+ FFFDf383d8c87fd2f383d8c8 /* particles/NpParticleFluid.h */,
+ FFFDf383d9307fd2f383d930 /* particles/NpParticleFluidReadData.h */,
+ FFFDf383d9987fd2f383d998 /* particles/NpParticleSystem.h */,
+ FFFDf383da007fd2f383da00 /* particles/NpParticleFluid.cpp */,
+ FFFDf383da687fd2f383da68 /* particles/NpParticleSystem.cpp */,
+ FFFDf383dad07fd2f383dad0 /* buffering/ScbActor.h */,
+ FFFDf383db387fd2f383db38 /* buffering/ScbAggregate.h */,
+ FFFDf383dba07fd2f383dba0 /* buffering/ScbArticulation.h */,
+ FFFDf383dc087fd2f383dc08 /* buffering/ScbArticulationJoint.h */,
+ FFFDf383dc707fd2f383dc70 /* buffering/ScbBase.h */,
+ FFFDf383dcd87fd2f383dcd8 /* buffering/ScbBody.h */,
+ FFFDf383dd407fd2f383dd40 /* buffering/ScbCloth.h */,
+ FFFDf383dda87fd2f383dda8 /* buffering/ScbConstraint.h */,
+ FFFDf383de107fd2f383de10 /* buffering/ScbDefs.h */,
+ FFFDf383de787fd2f383de78 /* buffering/ScbNpDeps.h */,
+ FFFDf383dee07fd2f383dee0 /* buffering/ScbParticleSystem.h */,
+ FFFDf383df487fd2f383df48 /* buffering/ScbRigidObject.h */,
+ FFFDf383dfb07fd2f383dfb0 /* buffering/ScbRigidStatic.h */,
+ FFFDf383e0187fd2f383e018 /* buffering/ScbScene.h */,
+ FFFDf383e0807fd2f383e080 /* buffering/ScbSceneBuffer.h */,
+ FFFDf383e0e87fd2f383e0e8 /* buffering/ScbScenePvdClient.h */,
+ FFFDf383e1507fd2f383e150 /* buffering/ScbShape.h */,
+ FFFDf383e1b87fd2f383e1b8 /* buffering/ScbType.h */,
+ FFFDf383e2207fd2f383e220 /* buffering/ScbActor.cpp */,
+ FFFDf383e2887fd2f383e288 /* buffering/ScbAggregate.cpp */,
+ FFFDf383e2f07fd2f383e2f0 /* buffering/ScbBase.cpp */,
+ FFFDf383e3587fd2f383e358 /* buffering/ScbCloth.cpp */,
+ FFFDf383e3c07fd2f383e3c0 /* buffering/ScbMetaData.cpp */,
+ FFFDf383e4287fd2f383e428 /* buffering/ScbParticleSystem.cpp */,
+ FFFDf383e4907fd2f383e490 /* buffering/ScbScene.cpp */,
+ FFFDf383e4f87fd2f383e4f8 /* buffering/ScbScenePvdClient.cpp */,
+ FFFDf383e5607fd2f383e560 /* buffering/ScbShape.cpp */,
+ FFFDf383e5c87fd2f383e5c8 /* cloth/NpCloth.h */,
+ FFFDf383e6307fd2f383e630 /* cloth/NpClothFabric.h */,
+ FFFDf383e6987fd2f383e698 /* cloth/NpClothParticleData.h */,
+ FFFDf383e7007fd2f383e700 /* cloth/NpCloth.cpp */,
+ FFFDf383e7687fd2f383e768 /* cloth/NpClothFabric.cpp */,
+ FFFDf383e7d07fd2f383e7d0 /* cloth/NpClothParticleData.cpp */,
+ FFFDf383e8387fd2f383e838 /* ../../ImmediateMode/src/NpImmediateMode.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
- FFFBedaa3dd87f8cedaa3dd8 /* include */ = {
+ FFFBf2d54cd87fd2f2d54cd8 /* include */ = {
isa = PBXGroup;
children = (
- FFFDee04d8007f8cee04d800 /* PxActor.h */,
- FFFDee04d8687f8cee04d868 /* PxAggregate.h */,
- FFFDee04d8d07f8cee04d8d0 /* PxArticulation.h */,
- FFFDee04d9387f8cee04d938 /* PxArticulationJoint.h */,
- FFFDee04d9a07f8cee04d9a0 /* PxArticulationLink.h */,
- FFFDee04da087f8cee04da08 /* PxBatchQuery.h */,
- FFFDee04da707f8cee04da70 /* PxBatchQueryDesc.h */,
- FFFDee04dad87f8cee04dad8 /* PxBroadPhase.h */,
- FFFDee04db407f8cee04db40 /* PxClient.h */,
- FFFDee04dba87f8cee04dba8 /* PxConstraint.h */,
- FFFDee04dc107f8cee04dc10 /* PxConstraintDesc.h */,
- FFFDee04dc787f8cee04dc78 /* PxContact.h */,
- FFFDee04dce07f8cee04dce0 /* PxContactModifyCallback.h */,
- FFFDee04dd487f8cee04dd48 /* PxDeletionListener.h */,
- FFFDee04ddb07f8cee04ddb0 /* PxFiltering.h */,
- FFFDee04de187f8cee04de18 /* PxForceMode.h */,
- FFFDee04de807f8cee04de80 /* PxImmediateMode.h */,
- FFFDee04dee87f8cee04dee8 /* PxLockedData.h */,
- FFFDee04df507f8cee04df50 /* PxMaterial.h */,
- FFFDee04dfb87f8cee04dfb8 /* PxPhysXConfig.h */,
- FFFDee04e0207f8cee04e020 /* PxPhysics.h */,
- FFFDee04e0887f8cee04e088 /* PxPhysicsAPI.h */,
- FFFDee04e0f07f8cee04e0f0 /* PxPhysicsSerialization.h */,
- FFFDee04e1587f8cee04e158 /* PxPhysicsVersion.h */,
- FFFDee04e1c07f8cee04e1c0 /* PxPruningStructure.h */,
- FFFDee04e2287f8cee04e228 /* PxQueryFiltering.h */,
- FFFDee04e2907f8cee04e290 /* PxQueryReport.h */,
- FFFDee04e2f87f8cee04e2f8 /* PxRigidActor.h */,
- FFFDee04e3607f8cee04e360 /* PxRigidBody.h */,
- FFFDee04e3c87f8cee04e3c8 /* PxRigidDynamic.h */,
- FFFDee04e4307f8cee04e430 /* PxRigidStatic.h */,
- FFFDee04e4987f8cee04e498 /* PxScene.h */,
- FFFDee04e5007f8cee04e500 /* PxSceneDesc.h */,
- FFFDee04e5687f8cee04e568 /* PxSceneLock.h */,
- FFFDee04e5d07f8cee04e5d0 /* PxShape.h */,
- FFFDee04e6387f8cee04e638 /* PxSimulationEventCallback.h */,
- FFFDee04e6a07f8cee04e6a0 /* PxSimulationStatistics.h */,
- FFFDee04e7087f8cee04e708 /* PxSpatialIndex.h */,
- FFFDee04e7707f8cee04e770 /* PxVisualizationParameter.h */,
- FFFDee04e7d87f8cee04e7d8 /* PxVolumeCache.h */,
- FFFDee04e8407f8cee04e840 /* particles/PxParticleBase.h */,
- FFFDee04e8a87f8cee04e8a8 /* particles/PxParticleBaseFlag.h */,
- FFFDee04e9107f8cee04e910 /* particles/PxParticleCreationData.h */,
- FFFDee04e9787f8cee04e978 /* particles/PxParticleFlag.h */,
- FFFDee04e9e07f8cee04e9e0 /* particles/PxParticleFluid.h */,
- FFFDee04ea487f8cee04ea48 /* particles/PxParticleFluidReadData.h */,
- FFFDee04eab07f8cee04eab0 /* particles/PxParticleReadData.h */,
- FFFDee04eb187f8cee04eb18 /* particles/PxParticleSystem.h */,
- FFFDee04eb807f8cee04eb80 /* pvd/PxPvdSceneClient.h */,
- FFFDee04ebe87f8cee04ebe8 /* cloth/PxCloth.h */,
- FFFDee04ec507f8cee04ec50 /* cloth/PxClothCollisionData.h */,
- FFFDee04ecb87f8cee04ecb8 /* cloth/PxClothFabric.h */,
- FFFDee04ed207f8cee04ed20 /* cloth/PxClothParticleData.h */,
- FFFDee04ed887f8cee04ed88 /* cloth/PxClothTypes.h */,
+ FFFDf3835a007fd2f3835a00 /* PxActor.h */,
+ FFFDf3835a687fd2f3835a68 /* PxAggregate.h */,
+ FFFDf3835ad07fd2f3835ad0 /* PxArticulation.h */,
+ FFFDf3835b387fd2f3835b38 /* PxArticulationJoint.h */,
+ FFFDf3835ba07fd2f3835ba0 /* PxArticulationLink.h */,
+ FFFDf3835c087fd2f3835c08 /* PxBatchQuery.h */,
+ FFFDf3835c707fd2f3835c70 /* PxBatchQueryDesc.h */,
+ FFFDf3835cd87fd2f3835cd8 /* PxBroadPhase.h */,
+ FFFDf3835d407fd2f3835d40 /* PxClient.h */,
+ FFFDf3835da87fd2f3835da8 /* PxConstraint.h */,
+ FFFDf3835e107fd2f3835e10 /* PxConstraintDesc.h */,
+ FFFDf3835e787fd2f3835e78 /* PxContact.h */,
+ FFFDf3835ee07fd2f3835ee0 /* PxContactModifyCallback.h */,
+ FFFDf3835f487fd2f3835f48 /* PxDeletionListener.h */,
+ FFFDf3835fb07fd2f3835fb0 /* PxFiltering.h */,
+ FFFDf38360187fd2f3836018 /* PxForceMode.h */,
+ FFFDf38360807fd2f3836080 /* PxImmediateMode.h */,
+ FFFDf38360e87fd2f38360e8 /* PxLockedData.h */,
+ FFFDf38361507fd2f3836150 /* PxMaterial.h */,
+ FFFDf38361b87fd2f38361b8 /* PxPhysXConfig.h */,
+ FFFDf38362207fd2f3836220 /* PxPhysics.h */,
+ FFFDf38362887fd2f3836288 /* PxPhysicsAPI.h */,
+ FFFDf38362f07fd2f38362f0 /* PxPhysicsSerialization.h */,
+ FFFDf38363587fd2f3836358 /* PxPhysicsVersion.h */,
+ FFFDf38363c07fd2f38363c0 /* PxPruningStructure.h */,
+ FFFDf38364287fd2f3836428 /* PxQueryFiltering.h */,
+ FFFDf38364907fd2f3836490 /* PxQueryReport.h */,
+ FFFDf38364f87fd2f38364f8 /* PxRigidActor.h */,
+ FFFDf38365607fd2f3836560 /* PxRigidBody.h */,
+ FFFDf38365c87fd2f38365c8 /* PxRigidDynamic.h */,
+ FFFDf38366307fd2f3836630 /* PxRigidStatic.h */,
+ FFFDf38366987fd2f3836698 /* PxScene.h */,
+ FFFDf38367007fd2f3836700 /* PxSceneDesc.h */,
+ FFFDf38367687fd2f3836768 /* PxSceneLock.h */,
+ FFFDf38367d07fd2f38367d0 /* PxShape.h */,
+ FFFDf38368387fd2f3836838 /* PxSimulationEventCallback.h */,
+ FFFDf38368a07fd2f38368a0 /* PxSimulationStatistics.h */,
+ FFFDf38369087fd2f3836908 /* PxSpatialIndex.h */,
+ FFFDf38369707fd2f3836970 /* PxVisualizationParameter.h */,
+ FFFDf38369d87fd2f38369d8 /* PxVolumeCache.h */,
+ FFFDf3836a407fd2f3836a40 /* particles/PxParticleBase.h */,
+ FFFDf3836aa87fd2f3836aa8 /* particles/PxParticleBaseFlag.h */,
+ FFFDf3836b107fd2f3836b10 /* particles/PxParticleCreationData.h */,
+ FFFDf3836b787fd2f3836b78 /* particles/PxParticleFlag.h */,
+ FFFDf3836be07fd2f3836be0 /* particles/PxParticleFluid.h */,
+ FFFDf3836c487fd2f3836c48 /* particles/PxParticleFluidReadData.h */,
+ FFFDf3836cb07fd2f3836cb0 /* particles/PxParticleReadData.h */,
+ FFFDf3836d187fd2f3836d18 /* particles/PxParticleSystem.h */,
+ FFFDf3836d807fd2f3836d80 /* pvd/PxPvdSceneClient.h */,
+ FFFDf3836de87fd2f3836de8 /* cloth/PxCloth.h */,
+ FFFDf3836e507fd2f3836e50 /* cloth/PxClothCollisionData.h */,
+ FFFDf3836eb87fd2f3836eb8 /* cloth/PxClothFabric.h */,
+ FFFDf3836f207fd2f3836f20 /* cloth/PxClothParticleData.h */,
+ FFFDf3836f887fd2f3836f88 /* cloth/PxClothTypes.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
- FFFBedaa3e007f8cedaa3e00 /* metadata */ = {
+ FFFBf2d54d007fd2f2d54d00 /* metadata */ = {
isa = PBXGroup;
children = (
- FFFDee04ae007f8cee04ae00 /* core/include/PvdMetaDataDefineProperties.h */,
- FFFDee04ae687f8cee04ae68 /* core/include/PvdMetaDataExtensions.h */,
- FFFDee04aed07f8cee04aed0 /* core/include/PvdMetaDataPropertyVisitor.h */,
- FFFDee04af387f8cee04af38 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */,
- FFFDee04afa07f8cee04afa0 /* core/include/PxAutoGeneratedMetaDataObjects.h */,
- FFFDee04b0087f8cee04b008 /* core/include/PxMetaDataCompare.h */,
- FFFDee04b0707f8cee04b070 /* core/include/PxMetaDataCppPrefix.h */,
- FFFDee04b0d87f8cee04b0d8 /* core/include/PxMetaDataObjects.h */,
- FFFDee04b1407f8cee04b140 /* core/include/RepXMetaDataPropertyVisitor.h */,
- FFFDee04b1a87f8cee04b1a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */,
- FFFDee04b2107f8cee04b210 /* core/src/PxMetaDataObjects.cpp */,
+ FFFDf38330007fd2f3833000 /* core/include/PvdMetaDataDefineProperties.h */,
+ FFFDf38330687fd2f3833068 /* core/include/PvdMetaDataExtensions.h */,
+ FFFDf38330d07fd2f38330d0 /* core/include/PvdMetaDataPropertyVisitor.h */,
+ FFFDf38331387fd2f3833138 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */,
+ FFFDf38331a07fd2f38331a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */,
+ FFFDf38332087fd2f3833208 /* core/include/PxMetaDataCompare.h */,
+ FFFDf38332707fd2f3833270 /* core/include/PxMetaDataCppPrefix.h */,
+ FFFDf38332d87fd2f38332d8 /* core/include/PxMetaDataObjects.h */,
+ FFFDf38333407fd2f3833340 /* core/include/RepXMetaDataPropertyVisitor.h */,
+ FFFDf38333a87fd2f38333a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */,
+ FFFDf38334107fd2f3833410 /* core/src/PxMetaDataObjects.cpp */,
);
name = "metadata";
sourceTree = SOURCE_ROOT;
};
- FFFBeda9c0c07f8ceda9c0c0 /* PhysXCharacterKinematic */ = {
+ FFFBf2d50f307fd2f2d50f30 /* PhysXCharacterKinematic */ = {
isa = PBXGroup;
children = (
- FFFBedaa31407f8cedaa3140 /* include */,
- FFFBedaa31687f8cedaa3168 /* src */,
+ FFFBf2d53fd07fd2f2d53fd0 /* include */,
+ FFFBf2d53ff87fd2f2d53ff8 /* src */,
);
name = "PhysXCharacterKinematic";
sourceTree = "<group>";
};
- FFFBedaa31407f8cedaa3140 /* include */ = {
+ FFFBf2d53fd07fd2f2d53fd0 /* include */ = {
isa = PBXGroup;
children = (
- FFFDedaa31907f8cedaa3190 /* PxBoxController.h */,
- FFFDedaa31f87f8cedaa31f8 /* PxCapsuleController.h */,
- FFFDedaa32607f8cedaa3260 /* PxCharacter.h */,
- FFFDedaa32c87f8cedaa32c8 /* PxController.h */,
- FFFDedaa33307f8cedaa3330 /* PxControllerBehavior.h */,
- FFFDedaa33987f8cedaa3398 /* PxControllerManager.h */,
- FFFDedaa34007f8cedaa3400 /* PxControllerObstacles.h */,
- FFFDedaa34687f8cedaa3468 /* PxExtended.h */,
+ FFFDf2d540207fd2f2d54020 /* PxBoxController.h */,
+ FFFDf2d540887fd2f2d54088 /* PxCapsuleController.h */,
+ FFFDf2d540f07fd2f2d540f0 /* PxCharacter.h */,
+ FFFDf2d541587fd2f2d54158 /* PxController.h */,
+ FFFDf2d541c07fd2f2d541c0 /* PxControllerBehavior.h */,
+ FFFDf2d542287fd2f2d54228 /* PxControllerManager.h */,
+ FFFDf2d542907fd2f2d54290 /* PxControllerObstacles.h */,
+ FFFDf2d542f87fd2f2d542f8 /* PxExtended.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
- FFFBedaa31687f8cedaa3168 /* src */ = {
+ FFFBf2d53ff87fd2f2d53ff8 /* src */ = {
isa = PBXGroup;
children = (
- FFFDee050e007f8cee050e00 /* CctBoxController.h */,
- FFFDee050e687f8cee050e68 /* CctCapsuleController.h */,
- FFFDee050ed07f8cee050ed0 /* CctCharacterController.h */,
- FFFDee050f387f8cee050f38 /* CctCharacterControllerManager.h */,
- FFFDee050fa07f8cee050fa0 /* CctController.h */,
- FFFDee0510087f8cee051008 /* CctInternalStructs.h */,
- FFFDee0510707f8cee051070 /* CctObstacleContext.h */,
- FFFDee0510d87f8cee0510d8 /* CctSweptBox.h */,
- FFFDee0511407f8cee051140 /* CctSweptCapsule.h */,
- FFFDee0511a87f8cee0511a8 /* CctSweptVolume.h */,
- FFFDee0512107f8cee051210 /* CctUtils.h */,
- FFFDee0512787f8cee051278 /* CctBoxController.cpp */,
- FFFDee0512e07f8cee0512e0 /* CctCapsuleController.cpp */,
- FFFDee0513487f8cee051348 /* CctCharacterController.cpp */,
- FFFDee0513b07f8cee0513b0 /* CctCharacterControllerCallbacks.cpp */,
- FFFDee0514187f8cee051418 /* CctCharacterControllerManager.cpp */,
- FFFDee0514807f8cee051480 /* CctController.cpp */,
- FFFDee0514e87f8cee0514e8 /* CctObstacleContext.cpp */,
- FFFDee0515507f8cee051550 /* CctSweptBox.cpp */,
- FFFDee0515b87f8cee0515b8 /* CctSweptCapsule.cpp */,
- FFFDee0516207f8cee051620 /* CctSweptVolume.cpp */,
+ FFFDf38390007fd2f3839000 /* CctBoxController.h */,
+ FFFDf38390687fd2f3839068 /* CctCapsuleController.h */,
+ FFFDf38390d07fd2f38390d0 /* CctCharacterController.h */,
+ FFFDf38391387fd2f3839138 /* CctCharacterControllerManager.h */,
+ FFFDf38391a07fd2f38391a0 /* CctController.h */,
+ FFFDf38392087fd2f3839208 /* CctInternalStructs.h */,
+ FFFDf38392707fd2f3839270 /* CctObstacleContext.h */,
+ FFFDf38392d87fd2f38392d8 /* CctSweptBox.h */,
+ FFFDf38393407fd2f3839340 /* CctSweptCapsule.h */,
+ FFFDf38393a87fd2f38393a8 /* CctSweptVolume.h */,
+ FFFDf38394107fd2f3839410 /* CctUtils.h */,
+ FFFDf38394787fd2f3839478 /* CctBoxController.cpp */,
+ FFFDf38394e07fd2f38394e0 /* CctCapsuleController.cpp */,
+ FFFDf38395487fd2f3839548 /* CctCharacterController.cpp */,
+ FFFDf38395b07fd2f38395b0 /* CctCharacterControllerCallbacks.cpp */,
+ FFFDf38396187fd2f3839618 /* CctCharacterControllerManager.cpp */,
+ FFFDf38396807fd2f3839680 /* CctController.cpp */,
+ FFFDf38396e87fd2f38396e8 /* CctObstacleContext.cpp */,
+ FFFDf38397507fd2f3839750 /* CctSweptBox.cpp */,
+ FFFDf38397b87fd2f38397b8 /* CctSweptCapsule.cpp */,
+ FFFDf38398207fd2f3839820 /* CctSweptVolume.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
- FFFBeda9d5107f8ceda9d510 /* PhysXVehicle */ = {
+ FFFBf2d4e3107fd2f2d4e310 /* PhysXVehicle */ = {
isa = PBXGroup;
children = (
- FFFBedaadb107f8cedaadb10 /* include */,
- FFFBedaadb387f8cedaadb38 /* src */,
- FFFBedaadb607f8cedaadb60 /* metadata */,
+ FFFBf2d5e9b07fd2f2d5e9b0 /* include */,
+ FFFBf2d5e9d87fd2f2d5e9d8 /* src */,
+ FFFBf2d5ea007fd2f2d5ea00 /* metadata */,
);
name = "PhysXVehicle";
sourceTree = "<group>";
};
- FFFBedaadb107f8cedaadb10 /* include */ = {
+ FFFBf2d5e9b07fd2f2d5e9b0 /* include */ = {
isa = PBXGroup;
children = (
- FFFDee056a007f8cee056a00 /* PxVehicleComponents.h */,
- FFFDee056a687f8cee056a68 /* PxVehicleDrive.h */,
- FFFDee056ad07f8cee056ad0 /* PxVehicleDrive4W.h */,
- FFFDee056b387f8cee056b38 /* PxVehicleDriveNW.h */,
- FFFDee056ba07f8cee056ba0 /* PxVehicleDriveTank.h */,
- FFFDee056c087f8cee056c08 /* PxVehicleNoDrive.h */,
- FFFDee056c707f8cee056c70 /* PxVehicleSDK.h */,
- FFFDee056cd87f8cee056cd8 /* PxVehicleShaders.h */,
- FFFDee056d407f8cee056d40 /* PxVehicleTireFriction.h */,
- FFFDee056da87f8cee056da8 /* PxVehicleUpdate.h */,
- FFFDee056e107f8cee056e10 /* PxVehicleUtil.h */,
- FFFDee056e787f8cee056e78 /* PxVehicleUtilControl.h */,
- FFFDee056ee07f8cee056ee0 /* PxVehicleUtilSetup.h */,
- FFFDee056f487f8cee056f48 /* PxVehicleUtilTelemetry.h */,
- FFFDee056fb07f8cee056fb0 /* PxVehicleWheels.h */,
+ FFFDf383ea007fd2f383ea00 /* PxVehicleComponents.h */,
+ FFFDf383ea687fd2f383ea68 /* PxVehicleDrive.h */,
+ FFFDf383ead07fd2f383ead0 /* PxVehicleDrive4W.h */,
+ FFFDf383eb387fd2f383eb38 /* PxVehicleDriveNW.h */,
+ FFFDf383eba07fd2f383eba0 /* PxVehicleDriveTank.h */,
+ FFFDf383ec087fd2f383ec08 /* PxVehicleNoDrive.h */,
+ FFFDf383ec707fd2f383ec70 /* PxVehicleSDK.h */,
+ FFFDf383ecd87fd2f383ecd8 /* PxVehicleShaders.h */,
+ FFFDf383ed407fd2f383ed40 /* PxVehicleTireFriction.h */,
+ FFFDf383eda87fd2f383eda8 /* PxVehicleUpdate.h */,
+ FFFDf383ee107fd2f383ee10 /* PxVehicleUtil.h */,
+ FFFDf383ee787fd2f383ee78 /* PxVehicleUtilControl.h */,
+ FFFDf383eee07fd2f383eee0 /* PxVehicleUtilSetup.h */,
+ FFFDf383ef487fd2f383ef48 /* PxVehicleUtilTelemetry.h */,
+ FFFDf383efb07fd2f383efb0 /* PxVehicleWheels.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
- FFFBedaadb387f8cedaadb38 /* src */ = {
+ FFFBf2d5e9d87fd2f2d5e9d8 /* src */ = {
isa = PBXGroup;
children = (
- FFFDee0588007f8cee058800 /* PxVehicleDefaults.h */,
- FFFDee0588687f8cee058868 /* PxVehicleLinearMath.h */,
- FFFDee0588d07f8cee0588d0 /* PxVehicleSerialization.h */,
- FFFDee0589387f8cee058938 /* PxVehicleSuspLimitConstraintShader.h */,
- FFFDee0589a07f8cee0589a0 /* PxVehicleSuspWheelTire4.h */,
- FFFDee058a087f8cee058a08 /* PxVehicleComponents.cpp */,
- FFFDee058a707f8cee058a70 /* PxVehicleDrive.cpp */,
- FFFDee058ad87f8cee058ad8 /* PxVehicleDrive4W.cpp */,
- FFFDee058b407f8cee058b40 /* PxVehicleDriveNW.cpp */,
- FFFDee058ba87f8cee058ba8 /* PxVehicleDriveTank.cpp */,
- FFFDee058c107f8cee058c10 /* PxVehicleMetaData.cpp */,
- FFFDee058c787f8cee058c78 /* PxVehicleNoDrive.cpp */,
- FFFDee058ce07f8cee058ce0 /* PxVehicleSDK.cpp */,
- FFFDee058d487f8cee058d48 /* PxVehicleSerialization.cpp */,
- FFFDee058db07f8cee058db0 /* PxVehicleSuspWheelTire4.cpp */,
- FFFDee058e187f8cee058e18 /* PxVehicleTireFriction.cpp */,
- FFFDee058e807f8cee058e80 /* PxVehicleUpdate.cpp */,
- FFFDee058ee87f8cee058ee8 /* PxVehicleWheels.cpp */,
- FFFDee058f507f8cee058f50 /* VehicleUtilControl.cpp */,
- FFFDee058fb87f8cee058fb8 /* VehicleUtilSetup.cpp */,
- FFFDee0590207f8cee059020 /* VehicleUtilTelemetry.cpp */,
+ FFFDf38408007fd2f3840800 /* PxVehicleDefaults.h */,
+ FFFDf38408687fd2f3840868 /* PxVehicleLinearMath.h */,
+ FFFDf38408d07fd2f38408d0 /* PxVehicleSerialization.h */,
+ FFFDf38409387fd2f3840938 /* PxVehicleSuspLimitConstraintShader.h */,
+ FFFDf38409a07fd2f38409a0 /* PxVehicleSuspWheelTire4.h */,
+ FFFDf3840a087fd2f3840a08 /* PxVehicleComponents.cpp */,
+ FFFDf3840a707fd2f3840a70 /* PxVehicleDrive.cpp */,
+ FFFDf3840ad87fd2f3840ad8 /* PxVehicleDrive4W.cpp */,
+ FFFDf3840b407fd2f3840b40 /* PxVehicleDriveNW.cpp */,
+ FFFDf3840ba87fd2f3840ba8 /* PxVehicleDriveTank.cpp */,
+ FFFDf3840c107fd2f3840c10 /* PxVehicleMetaData.cpp */,
+ FFFDf3840c787fd2f3840c78 /* PxVehicleNoDrive.cpp */,
+ FFFDf3840ce07fd2f3840ce0 /* PxVehicleSDK.cpp */,
+ FFFDf3840d487fd2f3840d48 /* PxVehicleSerialization.cpp */,
+ FFFDf3840db07fd2f3840db0 /* PxVehicleSuspWheelTire4.cpp */,
+ FFFDf3840e187fd2f3840e18 /* PxVehicleTireFriction.cpp */,
+ FFFDf3840e807fd2f3840e80 /* PxVehicleUpdate.cpp */,
+ FFFDf3840ee87fd2f3840ee8 /* PxVehicleWheels.cpp */,
+ FFFDf3840f507fd2f3840f50 /* VehicleUtilControl.cpp */,
+ FFFDf3840fb87fd2f3840fb8 /* VehicleUtilSetup.cpp */,
+ FFFDf38410207fd2f3841020 /* VehicleUtilTelemetry.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
- FFFBedaadb607f8cedaadb60 /* metadata */ = {
+ FFFBf2d5ea007fd2f2d5ea00 /* metadata */ = {
isa = PBXGroup;
children = (
- FFFDedaaed907f8cedaaed90 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */,
- FFFDedaaedf87f8cedaaedf8 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */,
- FFFDedaaee607f8cedaaee60 /* include/PxVehicleMetaDataObjects.h */,
- FFFDedaaeec87f8cedaaeec8 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */,
- FFFDedaaef307f8cedaaef30 /* src/PxVehicleMetaDataObjects.cpp */,
+ FFFDf2d5fc307fd2f2d5fc30 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */,
+ FFFDf2d5fc987fd2f2d5fc98 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */,
+ FFFDf2d5fd007fd2f2d5fd00 /* include/PxVehicleMetaDataObjects.h */,
+ FFFDf2d5fd687fd2f2d5fd68 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */,
+ FFFDf2d5fdd07fd2f2d5fdd0 /* src/PxVehicleMetaDataObjects.cpp */,
);
name = "metadata";
sourceTree = SOURCE_ROOT;
};
- FFFBedaae9b07f8cedaae9b0 /* PhysXExtensions */ = {
+ FFFBf2d5f8507fd2f2d5f850 /* PhysXExtensions */ = {
isa = PBXGroup;
children = (
- FFFBedab0ff07f8cedab0ff0 /* include */,
- FFFBedab10187f8cedab1018 /* src */,
- FFFBedab10407f8cedab1040 /* serialization */,
- FFFBedab10687f8cedab1068 /* metadata */,
+ FFFBf2d61e907fd2f2d61e90 /* include */,
+ FFFBf2d61eb87fd2f2d61eb8 /* src */,
+ FFFBf2d61ee07fd2f2d61ee0 /* serialization */,
+ FFFBf2d61f087fd2f2d61f08 /* metadata */,
);
name = "PhysXExtensions";
sourceTree = "<group>";
};
- FFFBedab0ff07f8cedab0ff0 /* include */ = {
+ FFFBf2d61e907fd2f2d61e90 /* include */ = {
isa = PBXGroup;
children = (
- FFFDee05c0007f8cee05c000 /* PxBinaryConverter.h */,
- FFFDee05c0687f8cee05c068 /* PxBroadPhaseExt.h */,
- FFFDee05c0d07f8cee05c0d0 /* PxClothFabricCooker.h */,
- FFFDee05c1387f8cee05c138 /* PxClothMeshDesc.h */,
- FFFDee05c1a07f8cee05c1a0 /* PxClothMeshQuadifier.h */,
- FFFDee05c2087f8cee05c208 /* PxClothTetherCooker.h */,
- FFFDee05c2707f8cee05c270 /* PxCollectionExt.h */,
- FFFDee05c2d87f8cee05c2d8 /* PxConstraintExt.h */,
- FFFDee05c3407f8cee05c340 /* PxConvexMeshExt.h */,
- FFFDee05c3a87f8cee05c3a8 /* PxD6Joint.h */,
- FFFDee05c4107f8cee05c410 /* PxDefaultAllocator.h */,
- FFFDee05c4787f8cee05c478 /* PxDefaultCpuDispatcher.h */,
- FFFDee05c4e07f8cee05c4e0 /* PxDefaultErrorCallback.h */,
- FFFDee05c5487f8cee05c548 /* PxDefaultSimulationFilterShader.h */,
- FFFDee05c5b07f8cee05c5b0 /* PxDefaultStreams.h */,
- FFFDee05c6187f8cee05c618 /* PxDistanceJoint.h */,
- FFFDee05c6807f8cee05c680 /* PxExtensionsAPI.h */,
- FFFDee05c6e87f8cee05c6e8 /* PxFixedJoint.h */,
- FFFDee05c7507f8cee05c750 /* PxJoint.h */,
- FFFDee05c7b87f8cee05c7b8 /* PxJointLimit.h */,
- FFFDee05c8207f8cee05c820 /* PxMassProperties.h */,
- FFFDee05c8887f8cee05c888 /* PxParticleExt.h */,
- FFFDee05c8f07f8cee05c8f0 /* PxPrismaticJoint.h */,
- FFFDee05c9587f8cee05c958 /* PxRaycastCCD.h */,
- FFFDee05c9c07f8cee05c9c0 /* PxRepXSerializer.h */,
- FFFDee05ca287f8cee05ca28 /* PxRepXSimpleType.h */,
- FFFDee05ca907f8cee05ca90 /* PxRevoluteJoint.h */,
- FFFDee05caf87f8cee05caf8 /* PxRigidActorExt.h */,
- FFFDee05cb607f8cee05cb60 /* PxRigidBodyExt.h */,
- FFFDee05cbc87f8cee05cbc8 /* PxSceneQueryExt.h */,
- FFFDee05cc307f8cee05cc30 /* PxSerialization.h */,
- FFFDee05cc987f8cee05cc98 /* PxShapeExt.h */,
- FFFDee05cd007f8cee05cd00 /* PxSimpleFactory.h */,
- FFFDee05cd687f8cee05cd68 /* PxSmoothNormals.h */,
- FFFDee05cdd07f8cee05cdd0 /* PxSphericalJoint.h */,
- FFFDee05ce387f8cee05ce38 /* PxStringTableExt.h */,
- FFFDee05cea07f8cee05cea0 /* PxTriangleMeshExt.h */,
+ FFFDf38440007fd2f3844000 /* PxBinaryConverter.h */,
+ FFFDf38440687fd2f3844068 /* PxBroadPhaseExt.h */,
+ FFFDf38440d07fd2f38440d0 /* PxClothFabricCooker.h */,
+ FFFDf38441387fd2f3844138 /* PxClothMeshDesc.h */,
+ FFFDf38441a07fd2f38441a0 /* PxClothMeshQuadifier.h */,
+ FFFDf38442087fd2f3844208 /* PxClothTetherCooker.h */,
+ FFFDf38442707fd2f3844270 /* PxCollectionExt.h */,
+ FFFDf38442d87fd2f38442d8 /* PxConstraintExt.h */,
+ FFFDf38443407fd2f3844340 /* PxConvexMeshExt.h */,
+ FFFDf38443a87fd2f38443a8 /* PxD6Joint.h */,
+ FFFDf38444107fd2f3844410 /* PxDefaultAllocator.h */,
+ FFFDf38444787fd2f3844478 /* PxDefaultCpuDispatcher.h */,
+ FFFDf38444e07fd2f38444e0 /* PxDefaultErrorCallback.h */,
+ FFFDf38445487fd2f3844548 /* PxDefaultSimulationFilterShader.h */,
+ FFFDf38445b07fd2f38445b0 /* PxDefaultStreams.h */,
+ FFFDf38446187fd2f3844618 /* PxDistanceJoint.h */,
+ FFFDf38446807fd2f3844680 /* PxExtensionsAPI.h */,
+ FFFDf38446e87fd2f38446e8 /* PxFixedJoint.h */,
+ FFFDf38447507fd2f3844750 /* PxJoint.h */,
+ FFFDf38447b87fd2f38447b8 /* PxJointLimit.h */,
+ FFFDf38448207fd2f3844820 /* PxMassProperties.h */,
+ FFFDf38448887fd2f3844888 /* PxParticleExt.h */,
+ FFFDf38448f07fd2f38448f0 /* PxPrismaticJoint.h */,
+ FFFDf38449587fd2f3844958 /* PxRaycastCCD.h */,
+ FFFDf38449c07fd2f38449c0 /* PxRepXSerializer.h */,
+ FFFDf3844a287fd2f3844a28 /* PxRepXSimpleType.h */,
+ FFFDf3844a907fd2f3844a90 /* PxRevoluteJoint.h */,
+ FFFDf3844af87fd2f3844af8 /* PxRigidActorExt.h */,
+ FFFDf3844b607fd2f3844b60 /* PxRigidBodyExt.h */,
+ FFFDf3844bc87fd2f3844bc8 /* PxSceneQueryExt.h */,
+ FFFDf3844c307fd2f3844c30 /* PxSerialization.h */,
+ FFFDf3844c987fd2f3844c98 /* PxShapeExt.h */,
+ FFFDf3844d007fd2f3844d00 /* PxSimpleFactory.h */,
+ FFFDf3844d687fd2f3844d68 /* PxSmoothNormals.h */,
+ FFFDf3844dd07fd2f3844dd0 /* PxSphericalJoint.h */,
+ FFFDf3844e387fd2f3844e38 /* PxStringTableExt.h */,
+ FFFDf3844ea07fd2f3844ea0 /* PxTriangleMeshExt.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
- FFFBedab10187f8cedab1018 /* src */ = {
+ FFFBf2d61eb87fd2f2d61eb8 /* src */ = {
isa = PBXGroup;
children = (
- FFFDee05aa007f8cee05aa00 /* ExtConstraintHelper.h */,
- FFFDee05aa687f8cee05aa68 /* ExtCpuWorkerThread.h */,
- FFFDee05aad07f8cee05aad0 /* ExtD6Joint.h */,
- FFFDee05ab387f8cee05ab38 /* ExtDefaultCpuDispatcher.h */,
- FFFDee05aba07f8cee05aba0 /* ExtDistanceJoint.h */,
- FFFDee05ac087f8cee05ac08 /* ExtFixedJoint.h */,
- FFFDee05ac707f8cee05ac70 /* ExtInertiaTensor.h */,
- FFFDee05acd87f8cee05acd8 /* ExtJoint.h */,
- FFFDee05ad407f8cee05ad40 /* ExtJointMetaDataExtensions.h */,
- FFFDee05ada87f8cee05ada8 /* ExtPlatform.h */,
- FFFDee05ae107f8cee05ae10 /* ExtPrismaticJoint.h */,
- FFFDee05ae787f8cee05ae78 /* ExtPvd.h */,
- FFFDee05aee07f8cee05aee0 /* ExtRevoluteJoint.h */,
- FFFDee05af487f8cee05af48 /* ExtSerialization.h */,
- FFFDee05afb07f8cee05afb0 /* ExtSharedQueueEntryPool.h */,
- FFFDee05b0187f8cee05b018 /* ExtSphericalJoint.h */,
- FFFDee05b0807f8cee05b080 /* ExtTaskQueueHelper.h */,
- FFFDee05b0e87f8cee05b0e8 /* ExtBroadPhase.cpp */,
- FFFDee05b1507f8cee05b150 /* ExtClothFabricCooker.cpp */,
- FFFDee05b1b87f8cee05b1b8 /* ExtClothGeodesicTetherCooker.cpp */,
- FFFDee05b2207f8cee05b220 /* ExtClothMeshQuadifier.cpp */,
- FFFDee05b2887f8cee05b288 /* ExtClothSimpleTetherCooker.cpp */,
- FFFDee05b2f07f8cee05b2f0 /* ExtCollection.cpp */,
- FFFDee05b3587f8cee05b358 /* ExtConvexMeshExt.cpp */,
- FFFDee05b3c07f8cee05b3c0 /* ExtCpuWorkerThread.cpp */,
- FFFDee05b4287f8cee05b428 /* ExtD6Joint.cpp */,
- FFFDee05b4907f8cee05b490 /* ExtD6JointSolverPrep.cpp */,
- FFFDee05b4f87f8cee05b4f8 /* ExtDefaultCpuDispatcher.cpp */,
- FFFDee05b5607f8cee05b560 /* ExtDefaultErrorCallback.cpp */,
- FFFDee05b5c87f8cee05b5c8 /* ExtDefaultSimulationFilterShader.cpp */,
- FFFDee05b6307f8cee05b630 /* ExtDefaultStreams.cpp */,
- FFFDee05b6987f8cee05b698 /* ExtDistanceJoint.cpp */,
- FFFDee05b7007f8cee05b700 /* ExtDistanceJointSolverPrep.cpp */,
- FFFDee05b7687f8cee05b768 /* ExtExtensions.cpp */,
- FFFDee05b7d07f8cee05b7d0 /* ExtFixedJoint.cpp */,
- FFFDee05b8387f8cee05b838 /* ExtFixedJointSolverPrep.cpp */,
- FFFDee05b8a07f8cee05b8a0 /* ExtJoint.cpp */,
- FFFDee05b9087f8cee05b908 /* ExtMetaData.cpp */,
- FFFDee05b9707f8cee05b970 /* ExtParticleExt.cpp */,
- FFFDee05b9d87f8cee05b9d8 /* ExtPrismaticJoint.cpp */,
- FFFDee05ba407f8cee05ba40 /* ExtPrismaticJointSolverPrep.cpp */,
- FFFDee05baa87f8cee05baa8 /* ExtPvd.cpp */,
- FFFDee05bb107f8cee05bb10 /* ExtPxStringTable.cpp */,
- FFFDee05bb787f8cee05bb78 /* ExtRaycastCCD.cpp */,
- FFFDee05bbe07f8cee05bbe0 /* ExtRevoluteJoint.cpp */,
- FFFDee05bc487f8cee05bc48 /* ExtRevoluteJointSolverPrep.cpp */,
- FFFDee05bcb07f8cee05bcb0 /* ExtRigidBodyExt.cpp */,
- FFFDee05bd187f8cee05bd18 /* ExtSceneQueryExt.cpp */,
- FFFDee05bd807f8cee05bd80 /* ExtSimpleFactory.cpp */,
- FFFDee05bde87f8cee05bde8 /* ExtSmoothNormals.cpp */,
- FFFDee05be507f8cee05be50 /* ExtSphericalJoint.cpp */,
- FFFDee05beb87f8cee05beb8 /* ExtSphericalJointSolverPrep.cpp */,
- FFFDee05bf207f8cee05bf20 /* ExtTriangleMeshExt.cpp */,
+ FFFDf3842a007fd2f3842a00 /* ExtConstraintHelper.h */,
+ FFFDf3842a687fd2f3842a68 /* ExtCpuWorkerThread.h */,
+ FFFDf3842ad07fd2f3842ad0 /* ExtD6Joint.h */,
+ FFFDf3842b387fd2f3842b38 /* ExtDefaultCpuDispatcher.h */,
+ FFFDf3842ba07fd2f3842ba0 /* ExtDistanceJoint.h */,
+ FFFDf3842c087fd2f3842c08 /* ExtFixedJoint.h */,
+ FFFDf3842c707fd2f3842c70 /* ExtInertiaTensor.h */,
+ FFFDf3842cd87fd2f3842cd8 /* ExtJoint.h */,
+ FFFDf3842d407fd2f3842d40 /* ExtJointMetaDataExtensions.h */,
+ FFFDf3842da87fd2f3842da8 /* ExtPlatform.h */,
+ FFFDf3842e107fd2f3842e10 /* ExtPrismaticJoint.h */,
+ FFFDf3842e787fd2f3842e78 /* ExtPvd.h */,
+ FFFDf3842ee07fd2f3842ee0 /* ExtRevoluteJoint.h */,
+ FFFDf3842f487fd2f3842f48 /* ExtSerialization.h */,
+ FFFDf3842fb07fd2f3842fb0 /* ExtSharedQueueEntryPool.h */,
+ FFFDf38430187fd2f3843018 /* ExtSphericalJoint.h */,
+ FFFDf38430807fd2f3843080 /* ExtTaskQueueHelper.h */,
+ FFFDf38430e87fd2f38430e8 /* ExtBroadPhase.cpp */,
+ FFFDf38431507fd2f3843150 /* ExtClothFabricCooker.cpp */,
+ FFFDf38431b87fd2f38431b8 /* ExtClothGeodesicTetherCooker.cpp */,
+ FFFDf38432207fd2f3843220 /* ExtClothMeshQuadifier.cpp */,
+ FFFDf38432887fd2f3843288 /* ExtClothSimpleTetherCooker.cpp */,
+ FFFDf38432f07fd2f38432f0 /* ExtCollection.cpp */,
+ FFFDf38433587fd2f3843358 /* ExtConvexMeshExt.cpp */,
+ FFFDf38433c07fd2f38433c0 /* ExtCpuWorkerThread.cpp */,
+ FFFDf38434287fd2f3843428 /* ExtD6Joint.cpp */,
+ FFFDf38434907fd2f3843490 /* ExtD6JointSolverPrep.cpp */,
+ FFFDf38434f87fd2f38434f8 /* ExtDefaultCpuDispatcher.cpp */,
+ FFFDf38435607fd2f3843560 /* ExtDefaultErrorCallback.cpp */,
+ FFFDf38435c87fd2f38435c8 /* ExtDefaultSimulationFilterShader.cpp */,
+ FFFDf38436307fd2f3843630 /* ExtDefaultStreams.cpp */,
+ FFFDf38436987fd2f3843698 /* ExtDistanceJoint.cpp */,
+ FFFDf38437007fd2f3843700 /* ExtDistanceJointSolverPrep.cpp */,
+ FFFDf38437687fd2f3843768 /* ExtExtensions.cpp */,
+ FFFDf38437d07fd2f38437d0 /* ExtFixedJoint.cpp */,
+ FFFDf38438387fd2f3843838 /* ExtFixedJointSolverPrep.cpp */,
+ FFFDf38438a07fd2f38438a0 /* ExtJoint.cpp */,
+ FFFDf38439087fd2f3843908 /* ExtMetaData.cpp */,
+ FFFDf38439707fd2f3843970 /* ExtParticleExt.cpp */,
+ FFFDf38439d87fd2f38439d8 /* ExtPrismaticJoint.cpp */,
+ FFFDf3843a407fd2f3843a40 /* ExtPrismaticJointSolverPrep.cpp */,
+ FFFDf3843aa87fd2f3843aa8 /* ExtPvd.cpp */,
+ FFFDf3843b107fd2f3843b10 /* ExtPxStringTable.cpp */,
+ FFFDf3843b787fd2f3843b78 /* ExtRaycastCCD.cpp */,
+ FFFDf3843be07fd2f3843be0 /* ExtRevoluteJoint.cpp */,
+ FFFDf3843c487fd2f3843c48 /* ExtRevoluteJointSolverPrep.cpp */,
+ FFFDf3843cb07fd2f3843cb0 /* ExtRigidBodyExt.cpp */,
+ FFFDf3843d187fd2f3843d18 /* ExtSceneQueryExt.cpp */,
+ FFFDf3843d807fd2f3843d80 /* ExtSimpleFactory.cpp */,
+ FFFDf3843de87fd2f3843de8 /* ExtSmoothNormals.cpp */,
+ FFFDf3843e507fd2f3843e50 /* ExtSphericalJoint.cpp */,
+ FFFDf3843eb87fd2f3843eb8 /* ExtSphericalJointSolverPrep.cpp */,
+ FFFDf3843f207fd2f3843f20 /* ExtTriangleMeshExt.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
- FFFBedab10407f8cedab1040 /* serialization */ = {
+ FFFBf2d61ee07fd2f2d61ee0 /* serialization */ = {
isa = PBXGroup;
children = (
- FFFDee05f4007f8cee05f400 /* SnSerialUtils.h */,
- FFFDee05f4687f8cee05f468 /* SnSerializationRegistry.h */,
- FFFDee05f4d07f8cee05f4d0 /* SnSerialUtils.cpp */,
- FFFDee05f5387f8cee05f538 /* SnSerialization.cpp */,
- FFFDee05f5a07f8cee05f5a0 /* SnSerializationRegistry.cpp */,
- FFFDee05f6087f8cee05f608 /* Binary/SnConvX.h */,
- FFFDee05f6707f8cee05f670 /* Binary/SnConvX_Align.h */,
- FFFDee05f6d87f8cee05f6d8 /* Binary/SnConvX_Common.h */,
- FFFDee05f7407f8cee05f740 /* Binary/SnConvX_MetaData.h */,
- FFFDee05f7a87f8cee05f7a8 /* Binary/SnConvX_Output.h */,
- FFFDee05f8107f8cee05f810 /* Binary/SnConvX_Union.h */,
- FFFDee05f8787f8cee05f878 /* Binary/SnSerializationContext.h */,
- FFFDee05f8e07f8cee05f8e0 /* Binary/SnBinaryDeserialization.cpp */,
- FFFDee05f9487f8cee05f948 /* Binary/SnBinarySerialization.cpp */,
- FFFDee05f9b07f8cee05f9b0 /* Binary/SnConvX.cpp */,
- FFFDee05fa187f8cee05fa18 /* Binary/SnConvX_Align.cpp */,
- FFFDee05fa807f8cee05fa80 /* Binary/SnConvX_Convert.cpp */,
- FFFDee05fae87f8cee05fae8 /* Binary/SnConvX_Error.cpp */,
- FFFDee05fb507f8cee05fb50 /* Binary/SnConvX_MetaData.cpp */,
- FFFDee05fbb87f8cee05fbb8 /* Binary/SnConvX_Output.cpp */,
- FFFDee05fc207f8cee05fc20 /* Binary/SnConvX_Union.cpp */,
- FFFDee05fc887f8cee05fc88 /* Binary/SnSerializationContext.cpp */,
- FFFDee05fcf07f8cee05fcf0 /* Xml/SnJointRepXSerializer.h */,
- FFFDee05fd587f8cee05fd58 /* Xml/SnPxStreamOperators.h */,
- FFFDee05fdc07f8cee05fdc0 /* Xml/SnRepX1_0Defaults.h */,
- FFFDee05fe287f8cee05fe28 /* Xml/SnRepX3_1Defaults.h */,
- FFFDee05fe907f8cee05fe90 /* Xml/SnRepX3_2Defaults.h */,
- FFFDee05fef87f8cee05fef8 /* Xml/SnRepXCollection.h */,
- FFFDee05ff607f8cee05ff60 /* Xml/SnRepXCoreSerializer.h */,
- FFFDee05ffc87f8cee05ffc8 /* Xml/SnRepXSerializerImpl.h */,
- FFFDee0600307f8cee060030 /* Xml/SnRepXUpgrader.h */,
- FFFDee0600987f8cee060098 /* Xml/SnSimpleXmlWriter.h */,
- FFFDee0601007f8cee060100 /* Xml/SnXmlDeserializer.h */,
- FFFDee0601687f8cee060168 /* Xml/SnXmlImpl.h */,
- FFFDee0601d07f8cee0601d0 /* Xml/SnXmlMemoryAllocator.h */,
- FFFDee0602387f8cee060238 /* Xml/SnXmlMemoryPool.h */,
- FFFDee0602a07f8cee0602a0 /* Xml/SnXmlMemoryPoolStreams.h */,
- FFFDee0603087f8cee060308 /* Xml/SnXmlReader.h */,
- FFFDee0603707f8cee060370 /* Xml/SnXmlSerializer.h */,
- FFFDee0603d87f8cee0603d8 /* Xml/SnXmlSimpleXmlWriter.h */,
- FFFDee0604407f8cee060440 /* Xml/SnXmlStringToType.h */,
- FFFDee0604a87f8cee0604a8 /* Xml/SnXmlVisitorReader.h */,
- FFFDee0605107f8cee060510 /* Xml/SnXmlVisitorWriter.h */,
- FFFDee0605787f8cee060578 /* Xml/SnXmlWriter.h */,
- FFFDee0605e07f8cee0605e0 /* Xml/SnJointRepXSerializer.cpp */,
- FFFDee0606487f8cee060648 /* Xml/SnRepXCoreSerializer.cpp */,
- FFFDee0606b07f8cee0606b0 /* Xml/SnRepXUpgrader.cpp */,
- FFFDee0607187f8cee060718 /* Xml/SnXmlSerialization.cpp */,
- FFFDee0607807f8cee060780 /* File/SnFile.h */,
+ FFFDf38474007fd2f3847400 /* SnSerialUtils.h */,
+ FFFDf38474687fd2f3847468 /* SnSerializationRegistry.h */,
+ FFFDf38474d07fd2f38474d0 /* SnSerialUtils.cpp */,
+ FFFDf38475387fd2f3847538 /* SnSerialization.cpp */,
+ FFFDf38475a07fd2f38475a0 /* SnSerializationRegistry.cpp */,
+ FFFDf38476087fd2f3847608 /* Binary/SnConvX.h */,
+ FFFDf38476707fd2f3847670 /* Binary/SnConvX_Align.h */,
+ FFFDf38476d87fd2f38476d8 /* Binary/SnConvX_Common.h */,
+ FFFDf38477407fd2f3847740 /* Binary/SnConvX_MetaData.h */,
+ FFFDf38477a87fd2f38477a8 /* Binary/SnConvX_Output.h */,
+ FFFDf38478107fd2f3847810 /* Binary/SnConvX_Union.h */,
+ FFFDf38478787fd2f3847878 /* Binary/SnSerializationContext.h */,
+ FFFDf38478e07fd2f38478e0 /* Binary/SnBinaryDeserialization.cpp */,
+ FFFDf38479487fd2f3847948 /* Binary/SnBinarySerialization.cpp */,
+ FFFDf38479b07fd2f38479b0 /* Binary/SnConvX.cpp */,
+ FFFDf3847a187fd2f3847a18 /* Binary/SnConvX_Align.cpp */,
+ FFFDf3847a807fd2f3847a80 /* Binary/SnConvX_Convert.cpp */,
+ FFFDf3847ae87fd2f3847ae8 /* Binary/SnConvX_Error.cpp */,
+ FFFDf3847b507fd2f3847b50 /* Binary/SnConvX_MetaData.cpp */,
+ FFFDf3847bb87fd2f3847bb8 /* Binary/SnConvX_Output.cpp */,
+ FFFDf3847c207fd2f3847c20 /* Binary/SnConvX_Union.cpp */,
+ FFFDf3847c887fd2f3847c88 /* Binary/SnSerializationContext.cpp */,
+ FFFDf3847cf07fd2f3847cf0 /* Xml/SnJointRepXSerializer.h */,
+ FFFDf3847d587fd2f3847d58 /* Xml/SnPxStreamOperators.h */,
+ FFFDf3847dc07fd2f3847dc0 /* Xml/SnRepX1_0Defaults.h */,
+ FFFDf3847e287fd2f3847e28 /* Xml/SnRepX3_1Defaults.h */,
+ FFFDf3847e907fd2f3847e90 /* Xml/SnRepX3_2Defaults.h */,
+ FFFDf3847ef87fd2f3847ef8 /* Xml/SnRepXCollection.h */,
+ FFFDf3847f607fd2f3847f60 /* Xml/SnRepXCoreSerializer.h */,
+ FFFDf3847fc87fd2f3847fc8 /* Xml/SnRepXSerializerImpl.h */,
+ FFFDf38480307fd2f3848030 /* Xml/SnRepXUpgrader.h */,
+ FFFDf38480987fd2f3848098 /* Xml/SnSimpleXmlWriter.h */,
+ FFFDf38481007fd2f3848100 /* Xml/SnXmlDeserializer.h */,
+ FFFDf38481687fd2f3848168 /* Xml/SnXmlImpl.h */,
+ FFFDf38481d07fd2f38481d0 /* Xml/SnXmlMemoryAllocator.h */,
+ FFFDf38482387fd2f3848238 /* Xml/SnXmlMemoryPool.h */,
+ FFFDf38482a07fd2f38482a0 /* Xml/SnXmlMemoryPoolStreams.h */,
+ FFFDf38483087fd2f3848308 /* Xml/SnXmlReader.h */,
+ FFFDf38483707fd2f3848370 /* Xml/SnXmlSerializer.h */,
+ FFFDf38483d87fd2f38483d8 /* Xml/SnXmlSimpleXmlWriter.h */,
+ FFFDf38484407fd2f3848440 /* Xml/SnXmlStringToType.h */,
+ FFFDf38484a87fd2f38484a8 /* Xml/SnXmlVisitorReader.h */,
+ FFFDf38485107fd2f3848510 /* Xml/SnXmlVisitorWriter.h */,
+ FFFDf38485787fd2f3848578 /* Xml/SnXmlWriter.h */,
+ FFFDf38485e07fd2f38485e0 /* Xml/SnJointRepXSerializer.cpp */,
+ FFFDf38486487fd2f3848648 /* Xml/SnRepXCoreSerializer.cpp */,
+ FFFDf38486b07fd2f38486b0 /* Xml/SnRepXUpgrader.cpp */,
+ FFFDf38487187fd2f3848718 /* Xml/SnXmlSerialization.cpp */,
+ FFFDf38487807fd2f3848780 /* File/SnFile.h */,
);
name = "serialization";
sourceTree = SOURCE_ROOT;
};
- FFFBedab10687f8cedab1068 /* metadata */ = {
+ FFFBf2d61f087fd2f2d61f08 /* metadata */ = {
isa = PBXGroup;
children = (
- FFFDee05d0007f8cee05d000 /* core/include/PvdMetaDataDefineProperties.h */,
- FFFDee05d0687f8cee05d068 /* core/include/PvdMetaDataExtensions.h */,
- FFFDee05d0d07f8cee05d0d0 /* core/include/PvdMetaDataPropertyVisitor.h */,
- FFFDee05d1387f8cee05d138 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */,
- FFFDee05d1a07f8cee05d1a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */,
- FFFDee05d2087f8cee05d208 /* core/include/PxMetaDataCompare.h */,
- FFFDee05d2707f8cee05d270 /* core/include/PxMetaDataCppPrefix.h */,
- FFFDee05d2d87f8cee05d2d8 /* core/include/PxMetaDataObjects.h */,
- FFFDee05d3407f8cee05d340 /* core/include/RepXMetaDataPropertyVisitor.h */,
- FFFDee05d3a87f8cee05d3a8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */,
- FFFDee05d4107f8cee05d410 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */,
- FFFDee05d4787f8cee05d478 /* extensions/include/PxExtensionMetaDataObjects.h */,
- FFFDee05d4e07f8cee05d4e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */,
+ FFFDf38450007fd2f3845000 /* core/include/PvdMetaDataDefineProperties.h */,
+ FFFDf38450687fd2f3845068 /* core/include/PvdMetaDataExtensions.h */,
+ FFFDf38450d07fd2f38450d0 /* core/include/PvdMetaDataPropertyVisitor.h */,
+ FFFDf38451387fd2f3845138 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */,
+ FFFDf38451a07fd2f38451a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */,
+ FFFDf38452087fd2f3845208 /* core/include/PxMetaDataCompare.h */,
+ FFFDf38452707fd2f3845270 /* core/include/PxMetaDataCppPrefix.h */,
+ FFFDf38452d87fd2f38452d8 /* core/include/PxMetaDataObjects.h */,
+ FFFDf38453407fd2f3845340 /* core/include/RepXMetaDataPropertyVisitor.h */,
+ FFFDf38453a87fd2f38453a8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */,
+ FFFDf38454107fd2f3845410 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */,
+ FFFDf38454787fd2f3845478 /* extensions/include/PxExtensionMetaDataObjects.h */,
+ FFFDf38454e07fd2f38454e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */,
);
name = "metadata";
sourceTree = SOURCE_ROOT;
};
- FFFBedabfac07f8cedabfac0 /* SceneQuery */ = {
+ FFFBf2d709607fd2f2d70960 /* SceneQuery */ = {
isa = PBXGroup;
children = (
- FFFBedac23407f8cedac2340 /* src */,
- FFFBedac23687f8cedac2368 /* include */,
+ FFFBf2d731e07fd2f2d731e0 /* src */,
+ FFFBf2d732087fd2f2d73208 /* include */,
);
name = "SceneQuery";
sourceTree = "<group>";
};
- FFFBedac23407f8cedac2340 /* src */ = {
+ FFFBf2d731e07fd2f2d731e0 /* src */ = {
isa = PBXGroup;
children = (
- FFFDee0634007f8cee063400 /* SqAABBPruner.cpp */,
- FFFDee0634687f8cee063468 /* SqAABBTree.cpp */,
- FFFDee0634d07f8cee0634d0 /* SqAABBTreeBuild.cpp */,
- FFFDee0635387f8cee063538 /* SqAABBTreeUpdateMap.cpp */,
- FFFDee0635a07f8cee0635a0 /* SqBounds.cpp */,
- FFFDee0636087f8cee063608 /* SqBucketPruner.cpp */,
- FFFDee0636707f8cee063670 /* SqExtendedBucketPruner.cpp */,
- FFFDee0636d87f8cee0636d8 /* SqIncrementalAABBPrunerCore.cpp */,
- FFFDee0637407f8cee063740 /* SqIncrementalAABBTree.cpp */,
- FFFDee0637a87f8cee0637a8 /* SqMetaData.cpp */,
- FFFDee0638107f8cee063810 /* SqPruningPool.cpp */,
- FFFDee0638787f8cee063878 /* SqPruningStructure.cpp */,
- FFFDee0638e07f8cee0638e0 /* SqSceneQueryManager.cpp */,
- FFFDee0639487f8cee063948 /* SqAABBPruner.h */,
- FFFDee0639b07f8cee0639b0 /* SqAABBTree.h */,
- FFFDee063a187f8cee063a18 /* SqAABBTreeBuild.h */,
- FFFDee063a807f8cee063a80 /* SqAABBTreeQuery.h */,
- FFFDee063ae87f8cee063ae8 /* SqAABBTreeUpdateMap.h */,
- FFFDee063b507f8cee063b50 /* SqBounds.h */,
- FFFDee063bb87f8cee063bb8 /* SqBucketPruner.h */,
- FFFDee063c207f8cee063c20 /* SqExtendedBucketPruner.h */,
- FFFDee063c887f8cee063c88 /* SqIncrementalAABBPrunerCore.h */,
- FFFDee063cf07f8cee063cf0 /* SqIncrementalAABBTree.h */,
- FFFDee063d587f8cee063d58 /* SqPrunerTestsSIMD.h */,
- FFFDee063dc07f8cee063dc0 /* SqPruningPool.h */,
- FFFDee063e287f8cee063e28 /* SqTypedef.h */,
+ FFFDf384b4007fd2f384b400 /* SqAABBPruner.cpp */,
+ FFFDf384b4687fd2f384b468 /* SqAABBTree.cpp */,
+ FFFDf384b4d07fd2f384b4d0 /* SqAABBTreeBuild.cpp */,
+ FFFDf384b5387fd2f384b538 /* SqAABBTreeUpdateMap.cpp */,
+ FFFDf384b5a07fd2f384b5a0 /* SqBounds.cpp */,
+ FFFDf384b6087fd2f384b608 /* SqBucketPruner.cpp */,
+ FFFDf384b6707fd2f384b670 /* SqExtendedBucketPruner.cpp */,
+ FFFDf384b6d87fd2f384b6d8 /* SqIncrementalAABBPrunerCore.cpp */,
+ FFFDf384b7407fd2f384b740 /* SqIncrementalAABBTree.cpp */,
+ FFFDf384b7a87fd2f384b7a8 /* SqMetaData.cpp */,
+ FFFDf384b8107fd2f384b810 /* SqPruningPool.cpp */,
+ FFFDf384b8787fd2f384b878 /* SqPruningStructure.cpp */,
+ FFFDf384b8e07fd2f384b8e0 /* SqSceneQueryManager.cpp */,
+ FFFDf384b9487fd2f384b948 /* SqAABBPruner.h */,
+ FFFDf384b9b07fd2f384b9b0 /* SqAABBTree.h */,
+ FFFDf384ba187fd2f384ba18 /* SqAABBTreeBuild.h */,
+ FFFDf384ba807fd2f384ba80 /* SqAABBTreeQuery.h */,
+ FFFDf384bae87fd2f384bae8 /* SqAABBTreeUpdateMap.h */,
+ FFFDf384bb507fd2f384bb50 /* SqBounds.h */,
+ FFFDf384bbb87fd2f384bbb8 /* SqBucketPruner.h */,
+ FFFDf384bc207fd2f384bc20 /* SqExtendedBucketPruner.h */,
+ FFFDf384bc887fd2f384bc88 /* SqIncrementalAABBPrunerCore.h */,
+ FFFDf384bcf07fd2f384bcf0 /* SqIncrementalAABBTree.h */,
+ FFFDf384bd587fd2f384bd58 /* SqPrunerTestsSIMD.h */,
+ FFFDf384bdc07fd2f384bdc0 /* SqPruningPool.h */,
+ FFFDf384be287fd2f384be28 /* SqTypedef.h */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
- FFFBedac23687f8cedac2368 /* include */ = {
+ FFFBf2d732087fd2f2d73208 /* include */ = {
isa = PBXGroup;
children = (
- FFFDedac3ce07f8cedac3ce0 /* SqPruner.h */,
- FFFDedac3d487f8cedac3d48 /* SqPrunerMergeData.h */,
- FFFDedac3db07f8cedac3db0 /* SqPruningStructure.h */,
- FFFDedac3e187f8cedac3e18 /* SqSceneQueryManager.h */,
+ FFFDf2d74b807fd2f2d74b80 /* SqPruner.h */,
+ FFFDf2d74be87fd2f2d74be8 /* SqPrunerMergeData.h */,
+ FFFDf2d74c507fd2f2d74c50 /* SqPruningStructure.h */,
+ FFFDf2d74cb87fd2f2d74cb8 /* SqSceneQueryManager.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
- FFFBedac3f107f8cedac3f10 /* SimulationController */ = {
+ FFFBf2d74db07fd2f2d74db0 /* SimulationController */ = {
isa = PBXGroup;
children = (
- FFFBedac8b607f8cedac8b60 /* include */,
- FFFBedac8b887f8cedac8b88 /* src */,
+ FFFBf2d79a007fd2f2d79a00 /* include */,
+ FFFBf2d79a287fd2f2d79a28 /* src */,
);
name = "SimulationController";
sourceTree = "<group>";
};
- FFFBedac8b607f8cedac8b60 /* include */ = {
+ FFFBf2d79a007fd2f2d79a00 /* include */ = {
isa = PBXGroup;
children = (
- FFFDee0660007f8cee066000 /* ScActorCore.h */,
- FFFDee0660687f8cee066068 /* ScArticulationCore.h */,
- FFFDee0660d07f8cee0660d0 /* ScArticulationJointCore.h */,
- FFFDee0661387f8cee066138 /* ScBodyCore.h */,
- FFFDee0661a07f8cee0661a0 /* ScClothCore.h */,
- FFFDee0662087f8cee066208 /* ScClothFabricCore.h */,
- FFFDee0662707f8cee066270 /* ScConstraintCore.h */,
- FFFDee0662d87f8cee0662d8 /* ScIterators.h */,
- FFFDee0663407f8cee066340 /* ScMaterialCore.h */,
- FFFDee0663a87f8cee0663a8 /* ScParticleSystemCore.h */,
- FFFDee0664107f8cee066410 /* ScPhysics.h */,
- FFFDee0664787f8cee066478 /* ScRigidCore.h */,
- FFFDee0664e07f8cee0664e0 /* ScScene.h */,
- FFFDee0665487f8cee066548 /* ScShapeCore.h */,
- FFFDee0665b07f8cee0665b0 /* ScStaticCore.h */,
+ FFFDf384e0007fd2f384e000 /* ScActorCore.h */,
+ FFFDf384e0687fd2f384e068 /* ScArticulationCore.h */,
+ FFFDf384e0d07fd2f384e0d0 /* ScArticulationJointCore.h */,
+ FFFDf384e1387fd2f384e138 /* ScBodyCore.h */,
+ FFFDf384e1a07fd2f384e1a0 /* ScClothCore.h */,
+ FFFDf384e2087fd2f384e208 /* ScClothFabricCore.h */,
+ FFFDf384e2707fd2f384e270 /* ScConstraintCore.h */,
+ FFFDf384e2d87fd2f384e2d8 /* ScIterators.h */,
+ FFFDf384e3407fd2f384e340 /* ScMaterialCore.h */,
+ FFFDf384e3a87fd2f384e3a8 /* ScParticleSystemCore.h */,
+ FFFDf384e4107fd2f384e410 /* ScPhysics.h */,
+ FFFDf384e4787fd2f384e478 /* ScRigidCore.h */,
+ FFFDf384e4e07fd2f384e4e0 /* ScScene.h */,
+ FFFDf384e5487fd2f384e548 /* ScShapeCore.h */,
+ FFFDf384e5b07fd2f384e5b0 /* ScStaticCore.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
- FFFBedac8b887f8cedac8b88 /* src */ = {
+ FFFBf2d79a287fd2f2d79a28 /* src */ = {
isa = PBXGroup;
children = (
- FFFDee0692007f8cee069200 /* ScActorElementPair.h */,
- FFFDee0692687f8cee069268 /* ScActorInteraction.h */,
- FFFDee0692d07f8cee0692d0 /* ScActorPair.h */,
- FFFDee0693387f8cee069338 /* ScActorSim.h */,
- FFFDee0693a07f8cee0693a0 /* ScArticulationJointSim.h */,
- FFFDee0694087f8cee069408 /* ScArticulationSim.h */,
- FFFDee0694707f8cee069470 /* ScBodySim.h */,
- FFFDee0694d87f8cee0694d8 /* ScClient.h */,
- FFFDee0695407f8cee069540 /* ScConstraintGroupNode.h */,
- FFFDee0695a87f8cee0695a8 /* ScConstraintInteraction.h */,
- FFFDee0696107f8cee069610 /* ScConstraintProjectionManager.h */,
- FFFDee0696787f8cee069678 /* ScConstraintProjectionTree.h */,
- FFFDee0696e07f8cee0696e0 /* ScConstraintSim.h */,
- FFFDee0697487f8cee069748 /* ScContactReportBuffer.h */,
- FFFDee0697b07f8cee0697b0 /* ScContactStream.h */,
- FFFDee0698187f8cee069818 /* ScElementInteractionMarker.h */,
- FFFDee0698807f8cee069880 /* ScElementSim.h */,
- FFFDee0698e87f8cee0698e8 /* ScElementSimInteraction.h */,
- FFFDee0699507f8cee069950 /* ScInteraction.h */,
- FFFDee0699b87f8cee0699b8 /* ScInteractionFlags.h */,
- FFFDee069a207f8cee069a20 /* ScNPhaseCore.h */,
- FFFDee069a887f8cee069a88 /* ScObjectIDTracker.h */,
- FFFDee069af07f8cee069af0 /* ScRbElementInteraction.h */,
- FFFDee069b587f8cee069b58 /* ScRigidSim.h */,
- FFFDee069bc07f8cee069bc0 /* ScShapeInteraction.h */,
- FFFDee069c287f8cee069c28 /* ScShapeIterator.h */,
- FFFDee069c907f8cee069c90 /* ScShapeSim.h */,
- FFFDee069cf87f8cee069cf8 /* ScSimStateData.h */,
- FFFDee069d607f8cee069d60 /* ScSimStats.h */,
- FFFDee069dc87f8cee069dc8 /* ScSimulationController.h */,
- FFFDee069e307f8cee069e30 /* ScSqBoundsManager.h */,
- FFFDee069e987f8cee069e98 /* ScStaticSim.h */,
- FFFDee069f007f8cee069f00 /* ScTriggerInteraction.h */,
- FFFDee069f687f8cee069f68 /* ScTriggerPairs.h */,
- FFFDee069fd07f8cee069fd0 /* ScActorCore.cpp */,
- FFFDee06a0387f8cee06a038 /* ScActorSim.cpp */,
- FFFDee06a0a07f8cee06a0a0 /* ScArticulationCore.cpp */,
- FFFDee06a1087f8cee06a108 /* ScArticulationJointCore.cpp */,
- FFFDee06a1707f8cee06a170 /* ScArticulationJointSim.cpp */,
- FFFDee06a1d87f8cee06a1d8 /* ScArticulationSim.cpp */,
- FFFDee06a2407f8cee06a240 /* ScBodyCore.cpp */,
- FFFDee06a2a87f8cee06a2a8 /* ScBodyCoreKinematic.cpp */,
- FFFDee06a3107f8cee06a310 /* ScBodySim.cpp */,
- FFFDee06a3787f8cee06a378 /* ScConstraintCore.cpp */,
- FFFDee06a3e07f8cee06a3e0 /* ScConstraintGroupNode.cpp */,
- FFFDee06a4487f8cee06a448 /* ScConstraintInteraction.cpp */,
- FFFDee06a4b07f8cee06a4b0 /* ScConstraintProjectionManager.cpp */,
- FFFDee06a5187f8cee06a518 /* ScConstraintProjectionTree.cpp */,
- FFFDee06a5807f8cee06a580 /* ScConstraintSim.cpp */,
- FFFDee06a5e87f8cee06a5e8 /* ScElementInteractionMarker.cpp */,
- FFFDee06a6507f8cee06a650 /* ScElementSim.cpp */,
- FFFDee06a6b87f8cee06a6b8 /* ScInteraction.cpp */,
- FFFDee06a7207f8cee06a720 /* ScIterators.cpp */,
- FFFDee06a7887f8cee06a788 /* ScMaterialCore.cpp */,
- FFFDee06a7f07f8cee06a7f0 /* ScMetaData.cpp */,
- FFFDee06a8587f8cee06a858 /* ScNPhaseCore.cpp */,
- FFFDee06a8c07f8cee06a8c0 /* ScPhysics.cpp */,
- FFFDee06a9287f8cee06a928 /* ScRigidCore.cpp */,
- FFFDee06a9907f8cee06a990 /* ScRigidSim.cpp */,
- FFFDee06a9f87f8cee06a9f8 /* ScScene.cpp */,
- FFFDee06aa607f8cee06aa60 /* ScShapeCore.cpp */,
- FFFDee06aac87f8cee06aac8 /* ScShapeInteraction.cpp */,
- FFFDee06ab307f8cee06ab30 /* ScShapeSim.cpp */,
- FFFDee06ab987f8cee06ab98 /* ScSimStats.cpp */,
- FFFDee06ac007f8cee06ac00 /* ScSimulationController.cpp */,
- FFFDee06ac687f8cee06ac68 /* ScSqBoundsManager.cpp */,
- FFFDee06acd07f8cee06acd0 /* ScStaticCore.cpp */,
- FFFDee06ad387f8cee06ad38 /* ScStaticSim.cpp */,
- FFFDee06ada07f8cee06ada0 /* ScTriggerInteraction.cpp */,
- FFFDee06ae087f8cee06ae08 /* particles/ScParticleBodyInteraction.h */,
- FFFDee06ae707f8cee06ae70 /* particles/ScParticlePacketShape.h */,
- FFFDee06aed87f8cee06aed8 /* particles/ScParticleSystemSim.h */,
- FFFDee06af407f8cee06af40 /* particles/ScParticleBodyInteraction.cpp */,
- FFFDee06afa87f8cee06afa8 /* particles/ScParticlePacketShape.cpp */,
- FFFDee06b0107f8cee06b010 /* particles/ScParticleSystemCore.cpp */,
- FFFDee06b0787f8cee06b078 /* particles/ScParticleSystemSim.cpp */,
- FFFDee06b0e07f8cee06b0e0 /* cloth/ScClothShape.h */,
- FFFDee06b1487f8cee06b148 /* cloth/ScClothSim.h */,
- FFFDee06b1b07f8cee06b1b0 /* cloth/ScClothCore.cpp */,
- FFFDee06b2187f8cee06b218 /* cloth/ScClothFabricCore.cpp */,
- FFFDee06b2807f8cee06b280 /* cloth/ScClothShape.cpp */,
- FFFDee06b2e87f8cee06b2e8 /* cloth/ScClothSim.cpp */,
+ FFFDf202e8007fd2f202e800 /* ScActorElementPair.h */,
+ FFFDf202e8687fd2f202e868 /* ScActorInteraction.h */,
+ FFFDf202e8d07fd2f202e8d0 /* ScActorPair.h */,
+ FFFDf202e9387fd2f202e938 /* ScActorSim.h */,
+ FFFDf202e9a07fd2f202e9a0 /* ScArticulationJointSim.h */,
+ FFFDf202ea087fd2f202ea08 /* ScArticulationSim.h */,
+ FFFDf202ea707fd2f202ea70 /* ScBodySim.h */,
+ FFFDf202ead87fd2f202ead8 /* ScClient.h */,
+ FFFDf202eb407fd2f202eb40 /* ScConstraintGroupNode.h */,
+ FFFDf202eba87fd2f202eba8 /* ScConstraintInteraction.h */,
+ FFFDf202ec107fd2f202ec10 /* ScConstraintProjectionManager.h */,
+ FFFDf202ec787fd2f202ec78 /* ScConstraintProjectionTree.h */,
+ FFFDf202ece07fd2f202ece0 /* ScConstraintSim.h */,
+ FFFDf202ed487fd2f202ed48 /* ScContactReportBuffer.h */,
+ FFFDf202edb07fd2f202edb0 /* ScContactStream.h */,
+ FFFDf202ee187fd2f202ee18 /* ScElementInteractionMarker.h */,
+ FFFDf202ee807fd2f202ee80 /* ScElementSim.h */,
+ FFFDf202eee87fd2f202eee8 /* ScElementSimInteraction.h */,
+ FFFDf202ef507fd2f202ef50 /* ScInteraction.h */,
+ FFFDf202efb87fd2f202efb8 /* ScInteractionFlags.h */,
+ FFFDf202f0207fd2f202f020 /* ScNPhaseCore.h */,
+ FFFDf202f0887fd2f202f088 /* ScObjectIDTracker.h */,
+ FFFDf202f0f07fd2f202f0f0 /* ScRbElementInteraction.h */,
+ FFFDf202f1587fd2f202f158 /* ScRigidSim.h */,
+ FFFDf202f1c07fd2f202f1c0 /* ScShapeInteraction.h */,
+ FFFDf202f2287fd2f202f228 /* ScShapeIterator.h */,
+ FFFDf202f2907fd2f202f290 /* ScShapeSim.h */,
+ FFFDf202f2f87fd2f202f2f8 /* ScSimStateData.h */,
+ FFFDf202f3607fd2f202f360 /* ScSimStats.h */,
+ FFFDf202f3c87fd2f202f3c8 /* ScSimulationController.h */,
+ FFFDf202f4307fd2f202f430 /* ScSqBoundsManager.h */,
+ FFFDf202f4987fd2f202f498 /* ScStaticSim.h */,
+ FFFDf202f5007fd2f202f500 /* ScTriggerInteraction.h */,
+ FFFDf202f5687fd2f202f568 /* ScTriggerPairs.h */,
+ FFFDf202f5d07fd2f202f5d0 /* ScActorCore.cpp */,
+ FFFDf202f6387fd2f202f638 /* ScActorSim.cpp */,
+ FFFDf202f6a07fd2f202f6a0 /* ScArticulationCore.cpp */,
+ FFFDf202f7087fd2f202f708 /* ScArticulationJointCore.cpp */,
+ FFFDf202f7707fd2f202f770 /* ScArticulationJointSim.cpp */,
+ FFFDf202f7d87fd2f202f7d8 /* ScArticulationSim.cpp */,
+ FFFDf202f8407fd2f202f840 /* ScBodyCore.cpp */,
+ FFFDf202f8a87fd2f202f8a8 /* ScBodyCoreKinematic.cpp */,
+ FFFDf202f9107fd2f202f910 /* ScBodySim.cpp */,
+ FFFDf202f9787fd2f202f978 /* ScConstraintCore.cpp */,
+ FFFDf202f9e07fd2f202f9e0 /* ScConstraintGroupNode.cpp */,
+ FFFDf202fa487fd2f202fa48 /* ScConstraintInteraction.cpp */,
+ FFFDf202fab07fd2f202fab0 /* ScConstraintProjectionManager.cpp */,
+ FFFDf202fb187fd2f202fb18 /* ScConstraintProjectionTree.cpp */,
+ FFFDf202fb807fd2f202fb80 /* ScConstraintSim.cpp */,
+ FFFDf202fbe87fd2f202fbe8 /* ScElementInteractionMarker.cpp */,
+ FFFDf202fc507fd2f202fc50 /* ScElementSim.cpp */,
+ FFFDf202fcb87fd2f202fcb8 /* ScInteraction.cpp */,
+ FFFDf202fd207fd2f202fd20 /* ScIterators.cpp */,
+ FFFDf202fd887fd2f202fd88 /* ScMaterialCore.cpp */,
+ FFFDf202fdf07fd2f202fdf0 /* ScMetaData.cpp */,
+ FFFDf202fe587fd2f202fe58 /* ScNPhaseCore.cpp */,
+ FFFDf202fec07fd2f202fec0 /* ScPhysics.cpp */,
+ FFFDf202ff287fd2f202ff28 /* ScRigidCore.cpp */,
+ FFFDf202ff907fd2f202ff90 /* ScRigidSim.cpp */,
+ FFFDf202fff87fd2f202fff8 /* ScScene.cpp */,
+ FFFDf20300607fd2f2030060 /* ScShapeCore.cpp */,
+ FFFDf20300c87fd2f20300c8 /* ScShapeInteraction.cpp */,
+ FFFDf20301307fd2f2030130 /* ScShapeSim.cpp */,
+ FFFDf20301987fd2f2030198 /* ScSimStats.cpp */,
+ FFFDf20302007fd2f2030200 /* ScSimulationController.cpp */,
+ FFFDf20302687fd2f2030268 /* ScSqBoundsManager.cpp */,
+ FFFDf20302d07fd2f20302d0 /* ScStaticCore.cpp */,
+ FFFDf20303387fd2f2030338 /* ScStaticSim.cpp */,
+ FFFDf20303a07fd2f20303a0 /* ScTriggerInteraction.cpp */,
+ FFFDf20304087fd2f2030408 /* particles/ScParticleBodyInteraction.h */,
+ FFFDf20304707fd2f2030470 /* particles/ScParticlePacketShape.h */,
+ FFFDf20304d87fd2f20304d8 /* particles/ScParticleSystemSim.h */,
+ FFFDf20305407fd2f2030540 /* particles/ScParticleBodyInteraction.cpp */,
+ FFFDf20305a87fd2f20305a8 /* particles/ScParticlePacketShape.cpp */,
+ FFFDf20306107fd2f2030610 /* particles/ScParticleSystemCore.cpp */,
+ FFFDf20306787fd2f2030678 /* particles/ScParticleSystemSim.cpp */,
+ FFFDf20306e07fd2f20306e0 /* cloth/ScClothShape.h */,
+ FFFDf20307487fd2f2030748 /* cloth/ScClothSim.h */,
+ FFFDf20307b07fd2f20307b0 /* cloth/ScClothCore.cpp */,
+ FFFDf20308187fd2f2030818 /* cloth/ScClothFabricCore.cpp */,
+ FFFDf20308807fd2f2030880 /* cloth/ScClothShape.cpp */,
+ FFFDf20308e87fd2f20308e8 /* cloth/ScClothSim.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
- FFFBedac8fa07f8cedac8fa0 /* PhysXCooking */ = {
+ FFFBf1f241a07fd2f1f241a0 /* PhysXCooking */ = {
isa = PBXGroup;
children = (
- FFFBedacd4207f8cedacd420 /* include */,
- FFFBedacd4487f8cedacd448 /* src */,
+ FFFBf1f255207fd2f1f25520 /* include */,
+ FFFBf1f255487fd2f1f25548 /* src */,
);
name = "PhysXCooking";
sourceTree = "<group>";
};
- FFFBedacd4207f8cedacd420 /* include */ = {
+ FFFBf1f255207fd2f1f25520 /* include */ = {
isa = PBXGroup;
children = (
- FFFDedad32507f8cedad3250 /* PxBVH33MidphaseDesc.h */,
- FFFDedad32b87f8cedad32b8 /* PxBVH34MidphaseDesc.h */,
- FFFDedad33207f8cedad3320 /* PxConvexMeshDesc.h */,
- FFFDedad33887f8cedad3388 /* PxCooking.h */,
- FFFDedad33f07f8cedad33f0 /* PxMidphaseDesc.h */,
- FFFDedad34587f8cedad3458 /* PxTriangleMeshDesc.h */,
- FFFDedad34c07f8cedad34c0 /* Pxc.h */,
+ FFFDf1f270707fd2f1f27070 /* PxBVH33MidphaseDesc.h */,
+ FFFDf1f270d87fd2f1f270d8 /* PxBVH34MidphaseDesc.h */,
+ FFFDf1f271407fd2f1f27140 /* PxConvexMeshDesc.h */,
+ FFFDf1f271a87fd2f1f271a8 /* PxCooking.h */,
+ FFFDf1f272107fd2f1f27210 /* PxMidphaseDesc.h */,
+ FFFDf1f272787fd2f1f27278 /* PxTriangleMeshDesc.h */,
+ FFFDf1f272e07fd2f1f272e0 /* Pxc.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
- FFFBedacd4487f8cedacd448 /* src */ = {
+ FFFBf1f255487fd2f1f25548 /* src */ = {
isa = PBXGroup;
children = (
- FFFDee06d4007f8cee06d400 /* Adjacencies.cpp */,
- FFFDee06d4687f8cee06d468 /* Cooking.cpp */,
- FFFDee06d4d07f8cee06d4d0 /* CookingUtils.cpp */,
- FFFDee06d5387f8cee06d538 /* EdgeList.cpp */,
- FFFDee06d5a07f8cee06d5a0 /* MeshCleaner.cpp */,
- FFFDee06d6087f8cee06d608 /* Quantizer.cpp */,
- FFFDee06d6707f8cee06d670 /* Adjacencies.h */,
- FFFDee06d6d87f8cee06d6d8 /* Cooking.h */,
- FFFDee06d7407f8cee06d740 /* CookingUtils.h */,
- FFFDee06d7a87f8cee06d7a8 /* EdgeList.h */,
- FFFDee06d8107f8cee06d810 /* MeshCleaner.h */,
- FFFDee06d8787f8cee06d878 /* Quantizer.h */,
- FFFDee06d8e07f8cee06d8e0 /* mesh/GrbTriangleMeshCooking.cpp */,
- FFFDee06d9487f8cee06d948 /* mesh/HeightFieldCooking.cpp */,
- FFFDee06d9b07f8cee06d9b0 /* mesh/RTreeCooking.cpp */,
- FFFDee06da187f8cee06da18 /* mesh/TriangleMeshBuilder.cpp */,
- FFFDee06da807f8cee06da80 /* mesh/GrbTriangleMeshCooking.h */,
- FFFDee06dae87f8cee06dae8 /* mesh/HeightFieldCooking.h */,
- FFFDee06db507f8cee06db50 /* mesh/QuickSelect.h */,
- FFFDee06dbb87f8cee06dbb8 /* mesh/RTreeCooking.h */,
- FFFDee06dc207f8cee06dc20 /* mesh/TriangleMeshBuilder.h */,
- FFFDee06dc887f8cee06dc88 /* convex/BigConvexDataBuilder.cpp */,
- FFFDee06dcf07f8cee06dcf0 /* convex/ConvexHullBuilder.cpp */,
- FFFDee06dd587f8cee06dd58 /* convex/ConvexHullLib.cpp */,
- FFFDee06ddc07f8cee06ddc0 /* convex/ConvexHullUtils.cpp */,
- FFFDee06de287f8cee06de28 /* convex/ConvexMeshBuilder.cpp */,
- FFFDee06de907f8cee06de90 /* convex/ConvexPolygonsBuilder.cpp */,
- FFFDee06def87f8cee06def8 /* convex/InflationConvexHullLib.cpp */,
- FFFDee06df607f8cee06df60 /* convex/QuickHullConvexHullLib.cpp */,
- FFFDee06dfc87f8cee06dfc8 /* convex/VolumeIntegration.cpp */,
- FFFDee06e0307f8cee06e030 /* convex/BigConvexDataBuilder.h */,
- FFFDee06e0987f8cee06e098 /* convex/ConvexHullBuilder.h */,
- FFFDee06e1007f8cee06e100 /* convex/ConvexHullLib.h */,
- FFFDee06e1687f8cee06e168 /* convex/ConvexHullUtils.h */,
- FFFDee06e1d07f8cee06e1d0 /* convex/ConvexMeshBuilder.h */,
- FFFDee06e2387f8cee06e238 /* convex/ConvexPolygonsBuilder.h */,
- FFFDee06e2a07f8cee06e2a0 /* convex/InflationConvexHullLib.h */,
- FFFDee06e3087f8cee06e308 /* convex/QuickHullConvexHullLib.h */,
- FFFDee06e3707f8cee06e370 /* convex/VolumeIntegration.h */,
+ FFFDf2036a007fd2f2036a00 /* Adjacencies.cpp */,
+ FFFDf2036a687fd2f2036a68 /* Cooking.cpp */,
+ FFFDf2036ad07fd2f2036ad0 /* CookingUtils.cpp */,
+ FFFDf2036b387fd2f2036b38 /* EdgeList.cpp */,
+ FFFDf2036ba07fd2f2036ba0 /* MeshCleaner.cpp */,
+ FFFDf2036c087fd2f2036c08 /* Quantizer.cpp */,
+ FFFDf2036c707fd2f2036c70 /* Adjacencies.h */,
+ FFFDf2036cd87fd2f2036cd8 /* Cooking.h */,
+ FFFDf2036d407fd2f2036d40 /* CookingUtils.h */,
+ FFFDf2036da87fd2f2036da8 /* EdgeList.h */,
+ FFFDf2036e107fd2f2036e10 /* MeshCleaner.h */,
+ FFFDf2036e787fd2f2036e78 /* Quantizer.h */,
+ FFFDf2036ee07fd2f2036ee0 /* mesh/GrbTriangleMeshCooking.cpp */,
+ FFFDf2036f487fd2f2036f48 /* mesh/HeightFieldCooking.cpp */,
+ FFFDf2036fb07fd2f2036fb0 /* mesh/RTreeCooking.cpp */,
+ FFFDf20370187fd2f2037018 /* mesh/TriangleMeshBuilder.cpp */,
+ FFFDf20370807fd2f2037080 /* mesh/GrbTriangleMeshCooking.h */,
+ FFFDf20370e87fd2f20370e8 /* mesh/HeightFieldCooking.h */,
+ FFFDf20371507fd2f2037150 /* mesh/QuickSelect.h */,
+ FFFDf20371b87fd2f20371b8 /* mesh/RTreeCooking.h */,
+ FFFDf20372207fd2f2037220 /* mesh/TriangleMeshBuilder.h */,
+ FFFDf20372887fd2f2037288 /* convex/BigConvexDataBuilder.cpp */,
+ FFFDf20372f07fd2f20372f0 /* convex/ConvexHullBuilder.cpp */,
+ FFFDf20373587fd2f2037358 /* convex/ConvexHullLib.cpp */,
+ FFFDf20373c07fd2f20373c0 /* convex/ConvexHullUtils.cpp */,
+ FFFDf20374287fd2f2037428 /* convex/ConvexMeshBuilder.cpp */,
+ FFFDf20374907fd2f2037490 /* convex/ConvexPolygonsBuilder.cpp */,
+ FFFDf20374f87fd2f20374f8 /* convex/InflationConvexHullLib.cpp */,
+ FFFDf20375607fd2f2037560 /* convex/QuickHullConvexHullLib.cpp */,
+ FFFDf20375c87fd2f20375c8 /* convex/VolumeIntegration.cpp */,
+ FFFDf20376307fd2f2037630 /* convex/BigConvexDataBuilder.h */,
+ FFFDf20376987fd2f2037698 /* convex/ConvexHullBuilder.h */,
+ FFFDf20377007fd2f2037700 /* convex/ConvexHullLib.h */,
+ FFFDf20377687fd2f2037768 /* convex/ConvexHullUtils.h */,
+ FFFDf20377d07fd2f20377d0 /* convex/ConvexMeshBuilder.h */,
+ FFFDf20378387fd2f2037838 /* convex/ConvexPolygonsBuilder.h */,
+ FFFDf20378a07fd2f20378a0 /* convex/InflationConvexHullLib.h */,
+ FFFDf20379087fd2f2037908 /* convex/QuickHullConvexHullLib.h */,
+ FFFDf20379707fd2f2037970 /* convex/VolumeIntegration.h */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
- FFFBec1a0dc07f8cec1a0dc0 /* PhysXCommon */ = {
+ FFFBf18a0c307fd2f18a0c30 /* PhysXCommon */ = {
isa = PBXGroup;
children = (
- FFFBec1a36107f8cec1a3610 /* include */,
- FFFBec1a36387f8cec1a3638 /* common */,
- FFFBec1a36607f8cec1a3660 /* geomutils */,
+ FFFBf18a33c07fd2f18a33c0 /* include */,
+ FFFBf18a33e87fd2f18a33e8 /* common */,
+ FFFBf18a34107fd2f18a3410 /* geomutils */,
);
name = "PhysXCommon";
sourceTree = "<group>";
};
- FFFBec1a36107f8cec1a3610 /* include */ = {
+ FFFBf18a33c07fd2f18a33c0 /* include */ = {
isa = PBXGroup;
children = (
- FFFDec80ec007f8cec80ec00 /* common/PxBase.h */,
- FFFDec80ec687f8cec80ec68 /* common/PxCollection.h */,
- FFFDec80ecd07f8cec80ecd0 /* common/PxCoreUtilityTypes.h */,
- FFFDec80ed387f8cec80ed38 /* common/PxMetaData.h */,
- FFFDec80eda07f8cec80eda0 /* common/PxMetaDataFlags.h */,
- FFFDec80ee087f8cec80ee08 /* common/PxPhysXCommonConfig.h */,
- FFFDec80ee707f8cec80ee70 /* common/PxPhysicsInsertionCallback.h */,
- FFFDec80eed87f8cec80eed8 /* common/PxRenderBuffer.h */,
- FFFDec80ef407f8cec80ef40 /* common/PxSerialFramework.h */,
- FFFDec80efa87f8cec80efa8 /* common/PxSerializer.h */,
- FFFDec80f0107f8cec80f010 /* common/PxStringTable.h */,
- FFFDec80f0787f8cec80f078 /* common/PxTolerancesScale.h */,
- FFFDec80f0e07f8cec80f0e0 /* common/PxTypeInfo.h */,
- FFFDec80f1487f8cec80f148 /* geometry/PxBoxGeometry.h */,
- FFFDec80f1b07f8cec80f1b0 /* geometry/PxCapsuleGeometry.h */,
- FFFDec80f2187f8cec80f218 /* geometry/PxConvexMesh.h */,
- FFFDec80f2807f8cec80f280 /* geometry/PxConvexMeshGeometry.h */,
- FFFDec80f2e87f8cec80f2e8 /* geometry/PxGeometry.h */,
- FFFDec80f3507f8cec80f350 /* geometry/PxGeometryHelpers.h */,
- FFFDec80f3b87f8cec80f3b8 /* geometry/PxGeometryQuery.h */,
- FFFDec80f4207f8cec80f420 /* geometry/PxHeightField.h */,
- FFFDec80f4887f8cec80f488 /* geometry/PxHeightFieldDesc.h */,
- FFFDec80f4f07f8cec80f4f0 /* geometry/PxHeightFieldFlag.h */,
- FFFDec80f5587f8cec80f558 /* geometry/PxHeightFieldGeometry.h */,
- FFFDec80f5c07f8cec80f5c0 /* geometry/PxHeightFieldSample.h */,
- FFFDec80f6287f8cec80f628 /* geometry/PxMeshQuery.h */,
- FFFDec80f6907f8cec80f690 /* geometry/PxMeshScale.h */,
- FFFDec80f6f87f8cec80f6f8 /* geometry/PxPlaneGeometry.h */,
- FFFDec80f7607f8cec80f760 /* geometry/PxSimpleTriangleMesh.h */,
- FFFDec80f7c87f8cec80f7c8 /* geometry/PxSphereGeometry.h */,
- FFFDec80f8307f8cec80f830 /* geometry/PxTriangle.h */,
- FFFDec80f8987f8cec80f898 /* geometry/PxTriangleMesh.h */,
- FFFDec80f9007f8cec80f900 /* geometry/PxTriangleMeshGeometry.h */,
+ FFFDf200ec007fd2f200ec00 /* common/PxBase.h */,
+ FFFDf200ec687fd2f200ec68 /* common/PxCollection.h */,
+ FFFDf200ecd07fd2f200ecd0 /* common/PxCoreUtilityTypes.h */,
+ FFFDf200ed387fd2f200ed38 /* common/PxMetaData.h */,
+ FFFDf200eda07fd2f200eda0 /* common/PxMetaDataFlags.h */,
+ FFFDf200ee087fd2f200ee08 /* common/PxPhysXCommonConfig.h */,
+ FFFDf200ee707fd2f200ee70 /* common/PxPhysicsInsertionCallback.h */,
+ FFFDf200eed87fd2f200eed8 /* common/PxRenderBuffer.h */,
+ FFFDf200ef407fd2f200ef40 /* common/PxSerialFramework.h */,
+ FFFDf200efa87fd2f200efa8 /* common/PxSerializer.h */,
+ FFFDf200f0107fd2f200f010 /* common/PxStringTable.h */,
+ FFFDf200f0787fd2f200f078 /* common/PxTolerancesScale.h */,
+ FFFDf200f0e07fd2f200f0e0 /* common/PxTypeInfo.h */,
+ FFFDf200f1487fd2f200f148 /* geometry/PxBoxGeometry.h */,
+ FFFDf200f1b07fd2f200f1b0 /* geometry/PxCapsuleGeometry.h */,
+ FFFDf200f2187fd2f200f218 /* geometry/PxConvexMesh.h */,
+ FFFDf200f2807fd2f200f280 /* geometry/PxConvexMeshGeometry.h */,
+ FFFDf200f2e87fd2f200f2e8 /* geometry/PxGeometry.h */,
+ FFFDf200f3507fd2f200f350 /* geometry/PxGeometryHelpers.h */,
+ FFFDf200f3b87fd2f200f3b8 /* geometry/PxGeometryQuery.h */,
+ FFFDf200f4207fd2f200f420 /* geometry/PxHeightField.h */,
+ FFFDf200f4887fd2f200f488 /* geometry/PxHeightFieldDesc.h */,
+ FFFDf200f4f07fd2f200f4f0 /* geometry/PxHeightFieldFlag.h */,
+ FFFDf200f5587fd2f200f558 /* geometry/PxHeightFieldGeometry.h */,
+ FFFDf200f5c07fd2f200f5c0 /* geometry/PxHeightFieldSample.h */,
+ FFFDf200f6287fd2f200f628 /* geometry/PxMeshQuery.h */,
+ FFFDf200f6907fd2f200f690 /* geometry/PxMeshScale.h */,
+ FFFDf200f6f87fd2f200f6f8 /* geometry/PxPlaneGeometry.h */,
+ FFFDf200f7607fd2f200f760 /* geometry/PxSimpleTriangleMesh.h */,
+ FFFDf200f7c87fd2f200f7c8 /* geometry/PxSphereGeometry.h */,
+ FFFDf200f8307fd2f200f830 /* geometry/PxTriangle.h */,
+ FFFDf200f8987fd2f200f898 /* geometry/PxTriangleMesh.h */,
+ FFFDf200f9007fd2f200f900 /* geometry/PxTriangleMeshGeometry.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
- FFFBec1a36387f8cec1a3638 /* common */ = {
+ FFFBf18a33e87fd2f18a33e8 /* common */ = {
isa = PBXGroup;
children = (
- FFFDeb9aa8007f8ceb9aa800 /* src/CmBoxPruning.cpp */,
- FFFDeb9aa8687f8ceb9aa868 /* src/CmCollection.cpp */,
- FFFDeb9aa8d07f8ceb9aa8d0 /* src/CmMathUtils.cpp */,
- FFFDeb9aa9387f8ceb9aa938 /* src/CmPtrTable.cpp */,
- FFFDeb9aa9a07f8ceb9aa9a0 /* src/CmRadixSort.cpp */,
- FFFDeb9aaa087f8ceb9aaa08 /* src/CmRadixSortBuffered.cpp */,
- FFFDeb9aaa707f8ceb9aaa70 /* src/CmRenderOutput.cpp */,
- FFFDeb9aaad87f8ceb9aaad8 /* src/CmVisualization.cpp */,
- FFFDeb9aab407f8ceb9aab40 /* src/CmBitMap.h */,
- FFFDeb9aaba87f8ceb9aaba8 /* src/CmBoxPruning.h */,
- FFFDeb9aac107f8ceb9aac10 /* src/CmCollection.h */,
- FFFDeb9aac787f8ceb9aac78 /* src/CmConeLimitHelper.h */,
- FFFDeb9aace07f8ceb9aace0 /* src/CmFlushPool.h */,
- FFFDeb9aad487f8ceb9aad48 /* src/CmIDPool.h */,
- FFFDeb9aadb07f8ceb9aadb0 /* src/CmIO.h */,
- FFFDeb9aae187f8ceb9aae18 /* src/CmMatrix34.h */,
- FFFDeb9aae807f8ceb9aae80 /* src/CmPhysXCommon.h */,
- FFFDeb9aaee87f8ceb9aaee8 /* src/CmPool.h */,
- FFFDeb9aaf507f8ceb9aaf50 /* src/CmPreallocatingPool.h */,
- FFFDeb9aafb87f8ceb9aafb8 /* src/CmPriorityQueue.h */,
- FFFDeb9ab0207f8ceb9ab020 /* src/CmPtrTable.h */,
- FFFDeb9ab0887f8ceb9ab088 /* src/CmQueue.h */,
- FFFDeb9ab0f07f8ceb9ab0f0 /* src/CmRadixSort.h */,
- FFFDeb9ab1587f8ceb9ab158 /* src/CmRadixSortBuffered.h */,
- FFFDeb9ab1c07f8ceb9ab1c0 /* src/CmRefCountable.h */,
- FFFDeb9ab2287f8ceb9ab228 /* src/CmRenderBuffer.h */,
- FFFDeb9ab2907f8ceb9ab290 /* src/CmRenderOutput.h */,
- FFFDeb9ab2f87f8ceb9ab2f8 /* src/CmScaling.h */,
- FFFDeb9ab3607f8ceb9ab360 /* src/CmSpatialVector.h */,
- FFFDeb9ab3c87f8ceb9ab3c8 /* src/CmTask.h */,
- FFFDeb9ab4307f8ceb9ab430 /* src/CmTaskPool.h */,
- FFFDeb9ab4987f8ceb9ab498 /* src/CmTmpMem.h */,
- FFFDeb9ab5007f8ceb9ab500 /* src/CmTransformUtils.h */,
- FFFDeb9ab5687f8ceb9ab568 /* src/CmUtils.h */,
- FFFDeb9ab5d07f8ceb9ab5d0 /* src/CmVisualization.h */,
+ FFFDf11aa8007fd2f11aa800 /* src/CmBoxPruning.cpp */,
+ FFFDf11aa8687fd2f11aa868 /* src/CmCollection.cpp */,
+ FFFDf11aa8d07fd2f11aa8d0 /* src/CmMathUtils.cpp */,
+ FFFDf11aa9387fd2f11aa938 /* src/CmPtrTable.cpp */,
+ FFFDf11aa9a07fd2f11aa9a0 /* src/CmRadixSort.cpp */,
+ FFFDf11aaa087fd2f11aaa08 /* src/CmRadixSortBuffered.cpp */,
+ FFFDf11aaa707fd2f11aaa70 /* src/CmRenderOutput.cpp */,
+ FFFDf11aaad87fd2f11aaad8 /* src/CmVisualization.cpp */,
+ FFFDf11aab407fd2f11aab40 /* src/CmBitMap.h */,
+ FFFDf11aaba87fd2f11aaba8 /* src/CmBoxPruning.h */,
+ FFFDf11aac107fd2f11aac10 /* src/CmCollection.h */,
+ FFFDf11aac787fd2f11aac78 /* src/CmConeLimitHelper.h */,
+ FFFDf11aace07fd2f11aace0 /* src/CmFlushPool.h */,
+ FFFDf11aad487fd2f11aad48 /* src/CmIDPool.h */,
+ FFFDf11aadb07fd2f11aadb0 /* src/CmIO.h */,
+ FFFDf11aae187fd2f11aae18 /* src/CmMatrix34.h */,
+ FFFDf11aae807fd2f11aae80 /* src/CmPhysXCommon.h */,
+ FFFDf11aaee87fd2f11aaee8 /* src/CmPool.h */,
+ FFFDf11aaf507fd2f11aaf50 /* src/CmPreallocatingPool.h */,
+ FFFDf11aafb87fd2f11aafb8 /* src/CmPriorityQueue.h */,
+ FFFDf11ab0207fd2f11ab020 /* src/CmPtrTable.h */,
+ FFFDf11ab0887fd2f11ab088 /* src/CmQueue.h */,
+ FFFDf11ab0f07fd2f11ab0f0 /* src/CmRadixSort.h */,
+ FFFDf11ab1587fd2f11ab158 /* src/CmRadixSortBuffered.h */,
+ FFFDf11ab1c07fd2f11ab1c0 /* src/CmRefCountable.h */,
+ FFFDf11ab2287fd2f11ab228 /* src/CmRenderBuffer.h */,
+ FFFDf11ab2907fd2f11ab290 /* src/CmRenderOutput.h */,
+ FFFDf11ab2f87fd2f11ab2f8 /* src/CmScaling.h */,
+ FFFDf11ab3607fd2f11ab360 /* src/CmSpatialVector.h */,
+ FFFDf11ab3c87fd2f11ab3c8 /* src/CmTask.h */,
+ FFFDf11ab4307fd2f11ab430 /* src/CmTaskPool.h */,
+ FFFDf11ab4987fd2f11ab498 /* src/CmTmpMem.h */,
+ FFFDf11ab5007fd2f11ab500 /* src/CmTransformUtils.h */,
+ FFFDf11ab5687fd2f11ab568 /* src/CmUtils.h */,
+ FFFDf11ab5d07fd2f11ab5d0 /* src/CmVisualization.h */,
);
name = "common";
sourceTree = SOURCE_ROOT;
};
- FFFBec1a36607f8cec1a3660 /* geomutils */ = {
+ FFFBf18a34107fd2f18a3410 /* geomutils */ = {
isa = PBXGroup;
children = (
- FFFDec8010007f8cec801000 /* headers/GuAxes.h */,
- FFFDec8010687f8cec801068 /* headers/GuBox.h */,
- FFFDec8010d07f8cec8010d0 /* headers/GuDistanceSegmentBox.h */,
- FFFDec8011387f8cec801138 /* headers/GuDistanceSegmentSegment.h */,
- FFFDec8011a07f8cec8011a0 /* headers/GuIntersectionBoxBox.h */,
- FFFDec8012087f8cec801208 /* headers/GuIntersectionTriangleBox.h */,
- FFFDec8012707f8cec801270 /* headers/GuRaycastTests.h */,
- FFFDec8012d87f8cec8012d8 /* headers/GuSIMDHelpers.h */,
- FFFDec8013407f8cec801340 /* headers/GuSegment.h */,
- FFFDec8013a87f8cec8013a8 /* ../../Include/GeomUtils */,
- FFFDec8014107f8cec801410 /* src/GuBounds.h */,
- FFFDec8014787f8cec801478 /* src/GuCapsule.h */,
- FFFDec8014e07f8cec8014e0 /* src/GuCenterExtents.h */,
- FFFDec8015487f8cec801548 /* src/GuGeometryUnion.h */,
- FFFDec8015b07f8cec8015b0 /* src/GuInternal.h */,
- FFFDec8016187f8cec801618 /* src/GuMTD.h */,
- FFFDec8016807f8cec801680 /* src/GuMeshFactory.h */,
- FFFDec8016e87f8cec8016e8 /* src/GuOverlapTests.h */,
- FFFDec8017507f8cec801750 /* src/GuSerialize.h */,
- FFFDec8017b87f8cec8017b8 /* src/GuSphere.h */,
- FFFDec8018207f8cec801820 /* src/GuSweepMTD.h */,
- FFFDec8018887f8cec801888 /* src/GuSweepSharedTests.h */,
- FFFDec8018f07f8cec8018f0 /* src/GuSweepTests.h */,
- FFFDec8019587f8cec801958 /* src/contact/GuContactMethodImpl.h */,
- FFFDec8019c07f8cec8019c0 /* src/contact/GuContactPolygonPolygon.h */,
- FFFDec801a287f8cec801a28 /* src/contact/GuFeatureCode.h */,
- FFFDec801a907f8cec801a90 /* src/contact/GuLegacyTraceLineCallback.h */,
- FFFDec801af87f8cec801af8 /* src/common/GuBarycentricCoordinates.h */,
- FFFDec801b607f8cec801b60 /* src/common/GuBoxConversion.h */,
- FFFDec801bc87f8cec801bc8 /* src/common/GuEdgeCache.h */,
- FFFDec801c307f8cec801c30 /* src/common/GuEdgeListData.h */,
- FFFDec801c987f8cec801c98 /* src/common/GuSeparatingAxes.h */,
- FFFDec801d007f8cec801d00 /* src/convex/GuBigConvexData.h */,
- FFFDec801d687f8cec801d68 /* src/convex/GuBigConvexData2.h */,
- FFFDec801dd07f8cec801dd0 /* src/convex/GuConvexEdgeFlags.h */,
- FFFDec801e387f8cec801e38 /* src/convex/GuConvexHelper.h */,
- FFFDec801ea07f8cec801ea0 /* src/convex/GuConvexMesh.h */,
- FFFDec801f087f8cec801f08 /* src/convex/GuConvexMeshData.h */,
- FFFDec801f707f8cec801f70 /* src/convex/GuConvexSupportTable.h */,
- FFFDec801fd87f8cec801fd8 /* src/convex/GuConvexUtilsInternal.h */,
- FFFDec8020407f8cec802040 /* src/convex/GuCubeIndex.h */,
- FFFDec8020a87f8cec8020a8 /* src/convex/GuHillClimbing.h */,
- FFFDec8021107f8cec802110 /* src/convex/GuShapeConvex.h */,
- FFFDec8021787f8cec802178 /* src/distance/GuDistancePointBox.h */,
- FFFDec8021e07f8cec8021e0 /* src/distance/GuDistancePointSegment.h */,
- FFFDec8022487f8cec802248 /* src/distance/GuDistancePointTriangle.h */,
- FFFDec8022b07f8cec8022b0 /* src/distance/GuDistancePointTriangleSIMD.h */,
- FFFDec8023187f8cec802318 /* src/distance/GuDistanceSegmentSegmentSIMD.h */,
- FFFDec8023807f8cec802380 /* src/distance/GuDistanceSegmentTriangle.h */,
- FFFDec8023e87f8cec8023e8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */,
- FFFDec8024507f8cec802450 /* src/sweep/GuSweepBoxBox.h */,
- FFFDec8024b87f8cec8024b8 /* src/sweep/GuSweepBoxSphere.h */,
- FFFDec8025207f8cec802520 /* src/sweep/GuSweepBoxTriangle_FeatureBased.h */,
- FFFDec8025887f8cec802588 /* src/sweep/GuSweepBoxTriangle_SAT.h */,
- FFFDec8025f07f8cec8025f0 /* src/sweep/GuSweepCapsuleBox.h */,
- FFFDec8026587f8cec802658 /* src/sweep/GuSweepCapsuleCapsule.h */,
- FFFDec8026c07f8cec8026c0 /* src/sweep/GuSweepCapsuleTriangle.h */,
- FFFDec8027287f8cec802728 /* src/sweep/GuSweepSphereCapsule.h */,
- FFFDec8027907f8cec802790 /* src/sweep/GuSweepSphereSphere.h */,
- FFFDec8027f87f8cec8027f8 /* src/sweep/GuSweepSphereTriangle.h */,
- FFFDec8028607f8cec802860 /* src/sweep/GuSweepTriangleUtils.h */,
- FFFDec8028c87f8cec8028c8 /* src/gjk/GuEPA.h */,
- FFFDec8029307f8cec802930 /* src/gjk/GuEPAFacet.h */,
- FFFDec8029987f8cec802998 /* src/gjk/GuGJK.h */,
- FFFDec802a007f8cec802a00 /* src/gjk/GuGJKPenetration.h */,
- FFFDec802a687f8cec802a68 /* src/gjk/GuGJKRaycast.h */,
- FFFDec802ad07f8cec802ad0 /* src/gjk/GuGJKSimplex.h */,
- FFFDec802b387f8cec802b38 /* src/gjk/GuGJKTest.h */,
- FFFDec802ba07f8cec802ba0 /* src/gjk/GuGJKType.h */,
- FFFDec802c087f8cec802c08 /* src/gjk/GuGJKUtil.h */,
- FFFDec802c707f8cec802c70 /* src/gjk/GuVecBox.h */,
- FFFDec802cd87f8cec802cd8 /* src/gjk/GuVecCapsule.h */,
- FFFDec802d407f8cec802d40 /* src/gjk/GuVecConvex.h */,
- FFFDec802da87f8cec802da8 /* src/gjk/GuVecConvexHull.h */,
- FFFDec802e107f8cec802e10 /* src/gjk/GuVecConvexHullNoScale.h */,
- FFFDec802e787f8cec802e78 /* src/gjk/GuVecPlane.h */,
- FFFDec802ee07f8cec802ee0 /* src/gjk/GuVecShrunkBox.h */,
- FFFDec802f487f8cec802f48 /* src/gjk/GuVecShrunkConvexHull.h */,
- FFFDec802fb07f8cec802fb0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */,
- FFFDec8030187f8cec803018 /* src/gjk/GuVecSphere.h */,
- FFFDec8030807f8cec803080 /* src/gjk/GuVecTriangle.h */,
- FFFDec8030e87f8cec8030e8 /* src/intersection/GuIntersectionCapsuleTriangle.h */,
- FFFDec8031507f8cec803150 /* src/intersection/GuIntersectionEdgeEdge.h */,
- FFFDec8031b87f8cec8031b8 /* src/intersection/GuIntersectionRay.h */,
- FFFDec8032207f8cec803220 /* src/intersection/GuIntersectionRayBox.h */,
- FFFDec8032887f8cec803288 /* src/intersection/GuIntersectionRayBoxSIMD.h */,
- FFFDec8032f07f8cec8032f0 /* src/intersection/GuIntersectionRayCapsule.h */,
- FFFDec8033587f8cec803358 /* src/intersection/GuIntersectionRayPlane.h */,
- FFFDec8033c07f8cec8033c0 /* src/intersection/GuIntersectionRaySphere.h */,
- FFFDec8034287f8cec803428 /* src/intersection/GuIntersectionRayTriangle.h */,
- FFFDec8034907f8cec803490 /* src/intersection/GuIntersectionSphereBox.h */,
- FFFDec8034f87f8cec8034f8 /* src/mesh/GuBV32.h */,
- FFFDec8035607f8cec803560 /* src/mesh/GuBV32Build.h */,
- FFFDec8035c87f8cec8035c8 /* src/mesh/GuBV4.h */,
- FFFDec8036307f8cec803630 /* src/mesh/GuBV4Build.h */,
- FFFDec8036987f8cec803698 /* src/mesh/GuBV4Settings.h */,
- FFFDec8037007f8cec803700 /* src/mesh/GuBV4_AABBAABBSweepTest.h */,
- FFFDec8037687f8cec803768 /* src/mesh/GuBV4_BoxBoxOverlapTest.h */,
- FFFDec8037d07f8cec8037d0 /* src/mesh/GuBV4_BoxOverlap_Internal.h */,
- FFFDec8038387f8cec803838 /* src/mesh/GuBV4_BoxSweep_Internal.h */,
- FFFDec8038a07f8cec8038a0 /* src/mesh/GuBV4_BoxSweep_Params.h */,
- FFFDec8039087f8cec803908 /* src/mesh/GuBV4_CapsuleSweep_Internal.h */,
- FFFDec8039707f8cec803970 /* src/mesh/GuBV4_Common.h */,
- FFFDec8039d87f8cec8039d8 /* src/mesh/GuBV4_Internal.h */,
- FFFDec803a407f8cec803a40 /* src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h */,
- FFFDec803aa87f8cec803aa8 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h */,
- FFFDec803b107f8cec803b10 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h */,
- FFFDec803b787f8cec803b78 /* src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h */,
- FFFDec803be07f8cec803be0 /* src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h */,
- FFFDec803c487f8cec803c48 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h */,
- FFFDec803cb07f8cec803cb0 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h */,
- FFFDec803d187f8cec803d18 /* src/mesh/GuBV4_Slabs.h */,
- FFFDec803d807f8cec803d80 /* src/mesh/GuBV4_Slabs_KajiyaNoOrder.h */,
- FFFDec803de87f8cec803de8 /* src/mesh/GuBV4_Slabs_KajiyaOrdered.h */,
- FFFDec803e507f8cec803e50 /* src/mesh/GuBV4_Slabs_SwizzledNoOrder.h */,
- FFFDec803eb87f8cec803eb8 /* src/mesh/GuBV4_Slabs_SwizzledOrdered.h */,
- FFFDec803f207f8cec803f20 /* src/mesh/GuBVConstants.h */,
- FFFDec803f887f8cec803f88 /* src/mesh/GuMeshData.h */,
- FFFDec803ff07f8cec803ff0 /* src/mesh/GuMidphaseInterface.h */,
- FFFDec8040587f8cec804058 /* src/mesh/GuRTree.h */,
- FFFDec8040c07f8cec8040c0 /* src/mesh/GuSweepConvexTri.h */,
- FFFDec8041287f8cec804128 /* src/mesh/GuSweepMesh.h */,
- FFFDec8041907f8cec804190 /* src/mesh/GuTriangle32.h */,
- FFFDec8041f87f8cec8041f8 /* src/mesh/GuTriangleCache.h */,
- FFFDec8042607f8cec804260 /* src/mesh/GuTriangleMesh.h */,
- FFFDec8042c87f8cec8042c8 /* src/mesh/GuTriangleMeshBV4.h */,
- FFFDec8043307f8cec804330 /* src/mesh/GuTriangleMeshRTree.h */,
- FFFDec8043987f8cec804398 /* src/mesh/GuTriangleVertexPointers.h */,
- FFFDec8044007f8cec804400 /* src/hf/GuEntityReport.h */,
- FFFDec8044687f8cec804468 /* src/hf/GuHeightField.h */,
- FFFDec8044d07f8cec8044d0 /* src/hf/GuHeightFieldData.h */,
- FFFDec8045387f8cec804538 /* src/hf/GuHeightFieldUtil.h */,
- FFFDec8045a07f8cec8045a0 /* src/pcm/GuPCMContactConvexCommon.h */,
- FFFDec8046087f8cec804608 /* src/pcm/GuPCMContactGen.h */,
- FFFDec8046707f8cec804670 /* src/pcm/GuPCMContactGenUtil.h */,
- FFFDec8046d87f8cec8046d8 /* src/pcm/GuPCMContactMeshCallback.h */,
- FFFDec8047407f8cec804740 /* src/pcm/GuPCMShapeConvex.h */,
- FFFDec8047a87f8cec8047a8 /* src/pcm/GuPCMTriangleContactGen.h */,
- FFFDec8048107f8cec804810 /* src/pcm/GuPersistentContactManifold.h */,
- FFFDec8048787f8cec804878 /* src/ccd/GuCCDSweepConvexMesh.h */,
- FFFDec8048e07f8cec8048e0 /* src/GuBounds.cpp */,
- FFFDec8049487f8cec804948 /* src/GuBox.cpp */,
- FFFDec8049b07f8cec8049b0 /* src/GuCCTSweepTests.cpp */,
- FFFDec804a187f8cec804a18 /* src/GuCapsule.cpp */,
- FFFDec804a807f8cec804a80 /* src/GuGeometryQuery.cpp */,
- FFFDec804ae87f8cec804ae8 /* src/GuGeometryUnion.cpp */,
- FFFDec804b507f8cec804b50 /* src/GuInternal.cpp */,
- FFFDec804bb87f8cec804bb8 /* src/GuMTD.cpp */,
- FFFDec804c207f8cec804c20 /* src/GuMeshFactory.cpp */,
- FFFDec804c887f8cec804c88 /* src/GuMetaData.cpp */,
- FFFDec804cf07f8cec804cf0 /* src/GuOverlapTests.cpp */,
- FFFDec804d587f8cec804d58 /* src/GuRaycastTests.cpp */,
- FFFDec804dc07f8cec804dc0 /* src/GuSerialize.cpp */,
- FFFDec804e287f8cec804e28 /* src/GuSweepMTD.cpp */,
- FFFDec804e907f8cec804e90 /* src/GuSweepSharedTests.cpp */,
- FFFDec804ef87f8cec804ef8 /* src/GuSweepTests.cpp */,
- FFFDec804f607f8cec804f60 /* src/contact/GuContactBoxBox.cpp */,
- FFFDec804fc87f8cec804fc8 /* src/contact/GuContactCapsuleBox.cpp */,
- FFFDec8050307f8cec805030 /* src/contact/GuContactCapsuleCapsule.cpp */,
- FFFDec8050987f8cec805098 /* src/contact/GuContactCapsuleConvex.cpp */,
- FFFDec8051007f8cec805100 /* src/contact/GuContactCapsuleMesh.cpp */,
- FFFDec8051687f8cec805168 /* src/contact/GuContactConvexConvex.cpp */,
- FFFDec8051d07f8cec8051d0 /* src/contact/GuContactConvexMesh.cpp */,
- FFFDec8052387f8cec805238 /* src/contact/GuContactPlaneBox.cpp */,
- FFFDec8052a07f8cec8052a0 /* src/contact/GuContactPlaneCapsule.cpp */,
- FFFDec8053087f8cec805308 /* src/contact/GuContactPlaneConvex.cpp */,
- FFFDec8053707f8cec805370 /* src/contact/GuContactPolygonPolygon.cpp */,
- FFFDec8053d87f8cec8053d8 /* src/contact/GuContactSphereBox.cpp */,
- FFFDec8054407f8cec805440 /* src/contact/GuContactSphereCapsule.cpp */,
- FFFDec8054a87f8cec8054a8 /* src/contact/GuContactSphereMesh.cpp */,
- FFFDec8055107f8cec805510 /* src/contact/GuContactSpherePlane.cpp */,
- FFFDec8055787f8cec805578 /* src/contact/GuContactSphereSphere.cpp */,
- FFFDec8055e07f8cec8055e0 /* src/contact/GuFeatureCode.cpp */,
- FFFDec8056487f8cec805648 /* src/contact/GuLegacyContactBoxHeightField.cpp */,
- FFFDec8056b07f8cec8056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */,
- FFFDec8057187f8cec805718 /* src/contact/GuLegacyContactConvexHeightField.cpp */,
- FFFDec8057807f8cec805780 /* src/contact/GuLegacyContactSphereHeightField.cpp */,
- FFFDec8057e87f8cec8057e8 /* src/common/GuBarycentricCoordinates.cpp */,
- FFFDec8058507f8cec805850 /* src/common/GuSeparatingAxes.cpp */,
- FFFDec8058b87f8cec8058b8 /* src/convex/GuBigConvexData.cpp */,
- FFFDec8059207f8cec805920 /* src/convex/GuConvexHelper.cpp */,
- FFFDec8059887f8cec805988 /* src/convex/GuConvexMesh.cpp */,
- FFFDec8059f07f8cec8059f0 /* src/convex/GuConvexSupportTable.cpp */,
- FFFDec805a587f8cec805a58 /* src/convex/GuConvexUtilsInternal.cpp */,
- FFFDec805ac07f8cec805ac0 /* src/convex/GuHillClimbing.cpp */,
- FFFDec805b287f8cec805b28 /* src/convex/GuShapeConvex.cpp */,
- FFFDec805b907f8cec805b90 /* src/distance/GuDistancePointBox.cpp */,
- FFFDec805bf87f8cec805bf8 /* src/distance/GuDistancePointTriangle.cpp */,
- FFFDec805c607f8cec805c60 /* src/distance/GuDistanceSegmentBox.cpp */,
- FFFDec805cc87f8cec805cc8 /* src/distance/GuDistanceSegmentSegment.cpp */,
- FFFDec805d307f8cec805d30 /* src/distance/GuDistanceSegmentTriangle.cpp */,
- FFFDec805d987f8cec805d98 /* src/sweep/GuSweepBoxBox.cpp */,
- FFFDec805e007f8cec805e00 /* src/sweep/GuSweepBoxSphere.cpp */,
- FFFDec805e687f8cec805e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */,
- FFFDec805ed07f8cec805ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */,
- FFFDec805f387f8cec805f38 /* src/sweep/GuSweepCapsuleBox.cpp */,
- FFFDec805fa07f8cec805fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */,
- FFFDec8060087f8cec806008 /* src/sweep/GuSweepCapsuleTriangle.cpp */,
- FFFDec8060707f8cec806070 /* src/sweep/GuSweepSphereCapsule.cpp */,
- FFFDec8060d87f8cec8060d8 /* src/sweep/GuSweepSphereSphere.cpp */,
- FFFDec8061407f8cec806140 /* src/sweep/GuSweepSphereTriangle.cpp */,
- FFFDec8061a87f8cec8061a8 /* src/sweep/GuSweepTriangleUtils.cpp */,
- FFFDec8062107f8cec806210 /* src/gjk/GuEPA.cpp */,
- FFFDec8062787f8cec806278 /* src/gjk/GuGJKSimplex.cpp */,
- FFFDec8062e07f8cec8062e0 /* src/gjk/GuGJKTest.cpp */,
- FFFDec8063487f8cec806348 /* src/intersection/GuIntersectionBoxBox.cpp */,
- FFFDec8063b07f8cec8063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */,
- FFFDec8064187f8cec806418 /* src/intersection/GuIntersectionEdgeEdge.cpp */,
- FFFDec8064807f8cec806480 /* src/intersection/GuIntersectionRayBox.cpp */,
- FFFDec8064e87f8cec8064e8 /* src/intersection/GuIntersectionRayCapsule.cpp */,
- FFFDec8065507f8cec806550 /* src/intersection/GuIntersectionRaySphere.cpp */,
- FFFDec8065b87f8cec8065b8 /* src/intersection/GuIntersectionSphereBox.cpp */,
- FFFDec8066207f8cec806620 /* src/intersection/GuIntersectionTriangleBox.cpp */,
- FFFDec8066887f8cec806688 /* src/mesh/GuBV32.cpp */,
- FFFDec8066f07f8cec8066f0 /* src/mesh/GuBV32Build.cpp */,
- FFFDec8067587f8cec806758 /* src/mesh/GuBV4.cpp */,
- FFFDec8067c07f8cec8067c0 /* src/mesh/GuBV4Build.cpp */,
- FFFDec8068287f8cec806828 /* src/mesh/GuBV4_AABBSweep.cpp */,
- FFFDec8068907f8cec806890 /* src/mesh/GuBV4_BoxOverlap.cpp */,
- FFFDec8068f87f8cec8068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */,
- FFFDec8069607f8cec806960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */,
- FFFDec8069c87f8cec8069c8 /* src/mesh/GuBV4_OBBSweep.cpp */,
- FFFDec806a307f8cec806a30 /* src/mesh/GuBV4_Raycast.cpp */,
- FFFDec806a987f8cec806a98 /* src/mesh/GuBV4_SphereOverlap.cpp */,
- FFFDec806b007f8cec806b00 /* src/mesh/GuBV4_SphereSweep.cpp */,
- FFFDec806b687f8cec806b68 /* src/mesh/GuMeshQuery.cpp */,
- FFFDec806bd07f8cec806bd0 /* src/mesh/GuMidphaseBV4.cpp */,
- FFFDec806c387f8cec806c38 /* src/mesh/GuMidphaseRTree.cpp */,
- FFFDec806ca07f8cec806ca0 /* src/mesh/GuOverlapTestsMesh.cpp */,
- FFFDec806d087f8cec806d08 /* src/mesh/GuRTree.cpp */,
- FFFDec806d707f8cec806d70 /* src/mesh/GuRTreeQueries.cpp */,
- FFFDec806dd87f8cec806dd8 /* src/mesh/GuSweepsMesh.cpp */,
- FFFDec806e407f8cec806e40 /* src/mesh/GuTriangleMesh.cpp */,
- FFFDec806ea87f8cec806ea8 /* src/mesh/GuTriangleMeshBV4.cpp */,
- FFFDec806f107f8cec806f10 /* src/mesh/GuTriangleMeshRTree.cpp */,
- FFFDec806f787f8cec806f78 /* src/hf/GuHeightField.cpp */,
- FFFDec806fe07f8cec806fe0 /* src/hf/GuHeightFieldUtil.cpp */,
- FFFDec8070487f8cec807048 /* src/hf/GuOverlapTestsHF.cpp */,
- FFFDec8070b07f8cec8070b0 /* src/hf/GuSweepsHF.cpp */,
- FFFDec8071187f8cec807118 /* src/pcm/GuPCMContactBoxBox.cpp */,
- FFFDec8071807f8cec807180 /* src/pcm/GuPCMContactBoxConvex.cpp */,
- FFFDec8071e87f8cec8071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */,
- FFFDec8072507f8cec807250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */,
- FFFDec8072b87f8cec8072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */,
- FFFDec8073207f8cec807320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */,
- FFFDec8073887f8cec807388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */,
- FFFDec8073f07f8cec8073f0 /* src/pcm/GuPCMContactConvexCommon.cpp */,
- FFFDec8074587f8cec807458 /* src/pcm/GuPCMContactConvexConvex.cpp */,
- FFFDec8074c07f8cec8074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */,
- FFFDec8075287f8cec807528 /* src/pcm/GuPCMContactConvexMesh.cpp */,
- FFFDec8075907f8cec807590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */,
- FFFDec8075f87f8cec8075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */,
- FFFDec8076607f8cec807660 /* src/pcm/GuPCMContactPlaneBox.cpp */,
- FFFDec8076c87f8cec8076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */,
- FFFDec8077307f8cec807730 /* src/pcm/GuPCMContactPlaneConvex.cpp */,
- FFFDec8077987f8cec807798 /* src/pcm/GuPCMContactSphereBox.cpp */,
- FFFDec8078007f8cec807800 /* src/pcm/GuPCMContactSphereCapsule.cpp */,
- FFFDec8078687f8cec807868 /* src/pcm/GuPCMContactSphereConvex.cpp */,
- FFFDec8078d07f8cec8078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */,
- FFFDec8079387f8cec807938 /* src/pcm/GuPCMContactSphereMesh.cpp */,
- FFFDec8079a07f8cec8079a0 /* src/pcm/GuPCMContactSpherePlane.cpp */,
- FFFDec807a087f8cec807a08 /* src/pcm/GuPCMContactSphereSphere.cpp */,
- FFFDec807a707f8cec807a70 /* src/pcm/GuPCMShapeConvex.cpp */,
- FFFDec807ad87f8cec807ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */,
- FFFDec807b407f8cec807b40 /* src/pcm/GuPersistentContactManifold.cpp */,
- FFFDec807ba87f8cec807ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */,
- FFFDec807c107f8cec807c10 /* src/ccd/GuCCDSweepPrimitives.cpp */,
+ FFFDf20010007fd2f2001000 /* headers/GuAxes.h */,
+ FFFDf20010687fd2f2001068 /* headers/GuBox.h */,
+ FFFDf20010d07fd2f20010d0 /* headers/GuDistanceSegmentBox.h */,
+ FFFDf20011387fd2f2001138 /* headers/GuDistanceSegmentSegment.h */,
+ FFFDf20011a07fd2f20011a0 /* headers/GuIntersectionBoxBox.h */,
+ FFFDf20012087fd2f2001208 /* headers/GuIntersectionTriangleBox.h */,
+ FFFDf20012707fd2f2001270 /* headers/GuRaycastTests.h */,
+ FFFDf20012d87fd2f20012d8 /* headers/GuSIMDHelpers.h */,
+ FFFDf20013407fd2f2001340 /* headers/GuSegment.h */,
+ FFFDf20013a87fd2f20013a8 /* ../../Include/GeomUtils */,
+ FFFDf20014107fd2f2001410 /* src/GuBounds.h */,
+ FFFDf20014787fd2f2001478 /* src/GuCapsule.h */,
+ FFFDf20014e07fd2f20014e0 /* src/GuCenterExtents.h */,
+ FFFDf20015487fd2f2001548 /* src/GuGeometryUnion.h */,
+ FFFDf20015b07fd2f20015b0 /* src/GuInternal.h */,
+ FFFDf20016187fd2f2001618 /* src/GuMTD.h */,
+ FFFDf20016807fd2f2001680 /* src/GuMeshFactory.h */,
+ FFFDf20016e87fd2f20016e8 /* src/GuOverlapTests.h */,
+ FFFDf20017507fd2f2001750 /* src/GuSerialize.h */,
+ FFFDf20017b87fd2f20017b8 /* src/GuSphere.h */,
+ FFFDf20018207fd2f2001820 /* src/GuSweepMTD.h */,
+ FFFDf20018887fd2f2001888 /* src/GuSweepSharedTests.h */,
+ FFFDf20018f07fd2f20018f0 /* src/GuSweepTests.h */,
+ FFFDf20019587fd2f2001958 /* src/contact/GuContactMethodImpl.h */,
+ FFFDf20019c07fd2f20019c0 /* src/contact/GuContactPolygonPolygon.h */,
+ FFFDf2001a287fd2f2001a28 /* src/contact/GuFeatureCode.h */,
+ FFFDf2001a907fd2f2001a90 /* src/contact/GuLegacyTraceLineCallback.h */,
+ FFFDf2001af87fd2f2001af8 /* src/common/GuBarycentricCoordinates.h */,
+ FFFDf2001b607fd2f2001b60 /* src/common/GuBoxConversion.h */,
+ FFFDf2001bc87fd2f2001bc8 /* src/common/GuEdgeCache.h */,
+ FFFDf2001c307fd2f2001c30 /* src/common/GuEdgeListData.h */,
+ FFFDf2001c987fd2f2001c98 /* src/common/GuSeparatingAxes.h */,
+ FFFDf2001d007fd2f2001d00 /* src/convex/GuBigConvexData.h */,
+ FFFDf2001d687fd2f2001d68 /* src/convex/GuBigConvexData2.h */,
+ FFFDf2001dd07fd2f2001dd0 /* src/convex/GuConvexEdgeFlags.h */,
+ FFFDf2001e387fd2f2001e38 /* src/convex/GuConvexHelper.h */,
+ FFFDf2001ea07fd2f2001ea0 /* src/convex/GuConvexMesh.h */,
+ FFFDf2001f087fd2f2001f08 /* src/convex/GuConvexMeshData.h */,
+ FFFDf2001f707fd2f2001f70 /* src/convex/GuConvexSupportTable.h */,
+ FFFDf2001fd87fd2f2001fd8 /* src/convex/GuConvexUtilsInternal.h */,
+ FFFDf20020407fd2f2002040 /* src/convex/GuCubeIndex.h */,
+ FFFDf20020a87fd2f20020a8 /* src/convex/GuHillClimbing.h */,
+ FFFDf20021107fd2f2002110 /* src/convex/GuShapeConvex.h */,
+ FFFDf20021787fd2f2002178 /* src/distance/GuDistancePointBox.h */,
+ FFFDf20021e07fd2f20021e0 /* src/distance/GuDistancePointSegment.h */,
+ FFFDf20022487fd2f2002248 /* src/distance/GuDistancePointTriangle.h */,
+ FFFDf20022b07fd2f20022b0 /* src/distance/GuDistancePointTriangleSIMD.h */,
+ FFFDf20023187fd2f2002318 /* src/distance/GuDistanceSegmentSegmentSIMD.h */,
+ FFFDf20023807fd2f2002380 /* src/distance/GuDistanceSegmentTriangle.h */,
+ FFFDf20023e87fd2f20023e8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */,
+ FFFDf20024507fd2f2002450 /* src/sweep/GuSweepBoxBox.h */,
+ FFFDf20024b87fd2f20024b8 /* src/sweep/GuSweepBoxSphere.h */,
+ FFFDf20025207fd2f2002520 /* src/sweep/GuSweepBoxTriangle_FeatureBased.h */,
+ FFFDf20025887fd2f2002588 /* src/sweep/GuSweepBoxTriangle_SAT.h */,
+ FFFDf20025f07fd2f20025f0 /* src/sweep/GuSweepCapsuleBox.h */,
+ FFFDf20026587fd2f2002658 /* src/sweep/GuSweepCapsuleCapsule.h */,
+ FFFDf20026c07fd2f20026c0 /* src/sweep/GuSweepCapsuleTriangle.h */,
+ FFFDf20027287fd2f2002728 /* src/sweep/GuSweepSphereCapsule.h */,
+ FFFDf20027907fd2f2002790 /* src/sweep/GuSweepSphereSphere.h */,
+ FFFDf20027f87fd2f20027f8 /* src/sweep/GuSweepSphereTriangle.h */,
+ FFFDf20028607fd2f2002860 /* src/sweep/GuSweepTriangleUtils.h */,
+ FFFDf20028c87fd2f20028c8 /* src/gjk/GuEPA.h */,
+ FFFDf20029307fd2f2002930 /* src/gjk/GuEPAFacet.h */,
+ FFFDf20029987fd2f2002998 /* src/gjk/GuGJK.h */,
+ FFFDf2002a007fd2f2002a00 /* src/gjk/GuGJKPenetration.h */,
+ FFFDf2002a687fd2f2002a68 /* src/gjk/GuGJKRaycast.h */,
+ FFFDf2002ad07fd2f2002ad0 /* src/gjk/GuGJKSimplex.h */,
+ FFFDf2002b387fd2f2002b38 /* src/gjk/GuGJKTest.h */,
+ FFFDf2002ba07fd2f2002ba0 /* src/gjk/GuGJKType.h */,
+ FFFDf2002c087fd2f2002c08 /* src/gjk/GuGJKUtil.h */,
+ FFFDf2002c707fd2f2002c70 /* src/gjk/GuVecBox.h */,
+ FFFDf2002cd87fd2f2002cd8 /* src/gjk/GuVecCapsule.h */,
+ FFFDf2002d407fd2f2002d40 /* src/gjk/GuVecConvex.h */,
+ FFFDf2002da87fd2f2002da8 /* src/gjk/GuVecConvexHull.h */,
+ FFFDf2002e107fd2f2002e10 /* src/gjk/GuVecConvexHullNoScale.h */,
+ FFFDf2002e787fd2f2002e78 /* src/gjk/GuVecPlane.h */,
+ FFFDf2002ee07fd2f2002ee0 /* src/gjk/GuVecShrunkBox.h */,
+ FFFDf2002f487fd2f2002f48 /* src/gjk/GuVecShrunkConvexHull.h */,
+ FFFDf2002fb07fd2f2002fb0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */,
+ FFFDf20030187fd2f2003018 /* src/gjk/GuVecSphere.h */,
+ FFFDf20030807fd2f2003080 /* src/gjk/GuVecTriangle.h */,
+ FFFDf20030e87fd2f20030e8 /* src/intersection/GuIntersectionCapsuleTriangle.h */,
+ FFFDf20031507fd2f2003150 /* src/intersection/GuIntersectionEdgeEdge.h */,
+ FFFDf20031b87fd2f20031b8 /* src/intersection/GuIntersectionRay.h */,
+ FFFDf20032207fd2f2003220 /* src/intersection/GuIntersectionRayBox.h */,
+ FFFDf20032887fd2f2003288 /* src/intersection/GuIntersectionRayBoxSIMD.h */,
+ FFFDf20032f07fd2f20032f0 /* src/intersection/GuIntersectionRayCapsule.h */,
+ FFFDf20033587fd2f2003358 /* src/intersection/GuIntersectionRayPlane.h */,
+ FFFDf20033c07fd2f20033c0 /* src/intersection/GuIntersectionRaySphere.h */,
+ FFFDf20034287fd2f2003428 /* src/intersection/GuIntersectionRayTriangle.h */,
+ FFFDf20034907fd2f2003490 /* src/intersection/GuIntersectionSphereBox.h */,
+ FFFDf20034f87fd2f20034f8 /* src/mesh/GuBV32.h */,
+ FFFDf20035607fd2f2003560 /* src/mesh/GuBV32Build.h */,
+ FFFDf20035c87fd2f20035c8 /* src/mesh/GuBV4.h */,
+ FFFDf20036307fd2f2003630 /* src/mesh/GuBV4Build.h */,
+ FFFDf20036987fd2f2003698 /* src/mesh/GuBV4Settings.h */,
+ FFFDf20037007fd2f2003700 /* src/mesh/GuBV4_AABBAABBSweepTest.h */,
+ FFFDf20037687fd2f2003768 /* src/mesh/GuBV4_BoxBoxOverlapTest.h */,
+ FFFDf20037d07fd2f20037d0 /* src/mesh/GuBV4_BoxOverlap_Internal.h */,
+ FFFDf20038387fd2f2003838 /* src/mesh/GuBV4_BoxSweep_Internal.h */,
+ FFFDf20038a07fd2f20038a0 /* src/mesh/GuBV4_BoxSweep_Params.h */,
+ FFFDf20039087fd2f2003908 /* src/mesh/GuBV4_CapsuleSweep_Internal.h */,
+ FFFDf20039707fd2f2003970 /* src/mesh/GuBV4_Common.h */,
+ FFFDf20039d87fd2f20039d8 /* src/mesh/GuBV4_Internal.h */,
+ FFFDf2003a407fd2f2003a40 /* src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h */,
+ FFFDf2003aa87fd2f2003aa8 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h */,
+ FFFDf2003b107fd2f2003b10 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h */,
+ FFFDf2003b787fd2f2003b78 /* src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h */,
+ FFFDf2003be07fd2f2003be0 /* src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h */,
+ FFFDf2003c487fd2f2003c48 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h */,
+ FFFDf2003cb07fd2f2003cb0 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h */,
+ FFFDf2003d187fd2f2003d18 /* src/mesh/GuBV4_Slabs.h */,
+ FFFDf2003d807fd2f2003d80 /* src/mesh/GuBV4_Slabs_KajiyaNoOrder.h */,
+ FFFDf2003de87fd2f2003de8 /* src/mesh/GuBV4_Slabs_KajiyaOrdered.h */,
+ FFFDf2003e507fd2f2003e50 /* src/mesh/GuBV4_Slabs_SwizzledNoOrder.h */,
+ FFFDf2003eb87fd2f2003eb8 /* src/mesh/GuBV4_Slabs_SwizzledOrdered.h */,
+ FFFDf2003f207fd2f2003f20 /* src/mesh/GuBVConstants.h */,
+ FFFDf2003f887fd2f2003f88 /* src/mesh/GuMeshData.h */,
+ FFFDf2003ff07fd2f2003ff0 /* src/mesh/GuMidphaseInterface.h */,
+ FFFDf20040587fd2f2004058 /* src/mesh/GuRTree.h */,
+ FFFDf20040c07fd2f20040c0 /* src/mesh/GuSweepConvexTri.h */,
+ FFFDf20041287fd2f2004128 /* src/mesh/GuSweepMesh.h */,
+ FFFDf20041907fd2f2004190 /* src/mesh/GuTriangle32.h */,
+ FFFDf20041f87fd2f20041f8 /* src/mesh/GuTriangleCache.h */,
+ FFFDf20042607fd2f2004260 /* src/mesh/GuTriangleMesh.h */,
+ FFFDf20042c87fd2f20042c8 /* src/mesh/GuTriangleMeshBV4.h */,
+ FFFDf20043307fd2f2004330 /* src/mesh/GuTriangleMeshRTree.h */,
+ FFFDf20043987fd2f2004398 /* src/mesh/GuTriangleVertexPointers.h */,
+ FFFDf20044007fd2f2004400 /* src/hf/GuEntityReport.h */,
+ FFFDf20044687fd2f2004468 /* src/hf/GuHeightField.h */,
+ FFFDf20044d07fd2f20044d0 /* src/hf/GuHeightFieldData.h */,
+ FFFDf20045387fd2f2004538 /* src/hf/GuHeightFieldUtil.h */,
+ FFFDf20045a07fd2f20045a0 /* src/pcm/GuPCMContactConvexCommon.h */,
+ FFFDf20046087fd2f2004608 /* src/pcm/GuPCMContactGen.h */,
+ FFFDf20046707fd2f2004670 /* src/pcm/GuPCMContactGenUtil.h */,
+ FFFDf20046d87fd2f20046d8 /* src/pcm/GuPCMContactMeshCallback.h */,
+ FFFDf20047407fd2f2004740 /* src/pcm/GuPCMShapeConvex.h */,
+ FFFDf20047a87fd2f20047a8 /* src/pcm/GuPCMTriangleContactGen.h */,
+ FFFDf20048107fd2f2004810 /* src/pcm/GuPersistentContactManifold.h */,
+ FFFDf20048787fd2f2004878 /* src/ccd/GuCCDSweepConvexMesh.h */,
+ FFFDf20048e07fd2f20048e0 /* src/GuBounds.cpp */,
+ FFFDf20049487fd2f2004948 /* src/GuBox.cpp */,
+ FFFDf20049b07fd2f20049b0 /* src/GuCCTSweepTests.cpp */,
+ FFFDf2004a187fd2f2004a18 /* src/GuCapsule.cpp */,
+ FFFDf2004a807fd2f2004a80 /* src/GuGeometryQuery.cpp */,
+ FFFDf2004ae87fd2f2004ae8 /* src/GuGeometryUnion.cpp */,
+ FFFDf2004b507fd2f2004b50 /* src/GuInternal.cpp */,
+ FFFDf2004bb87fd2f2004bb8 /* src/GuMTD.cpp */,
+ FFFDf2004c207fd2f2004c20 /* src/GuMeshFactory.cpp */,
+ FFFDf2004c887fd2f2004c88 /* src/GuMetaData.cpp */,
+ FFFDf2004cf07fd2f2004cf0 /* src/GuOverlapTests.cpp */,
+ FFFDf2004d587fd2f2004d58 /* src/GuRaycastTests.cpp */,
+ FFFDf2004dc07fd2f2004dc0 /* src/GuSerialize.cpp */,
+ FFFDf2004e287fd2f2004e28 /* src/GuSweepMTD.cpp */,
+ FFFDf2004e907fd2f2004e90 /* src/GuSweepSharedTests.cpp */,
+ FFFDf2004ef87fd2f2004ef8 /* src/GuSweepTests.cpp */,
+ FFFDf2004f607fd2f2004f60 /* src/contact/GuContactBoxBox.cpp */,
+ FFFDf2004fc87fd2f2004fc8 /* src/contact/GuContactCapsuleBox.cpp */,
+ FFFDf20050307fd2f2005030 /* src/contact/GuContactCapsuleCapsule.cpp */,
+ FFFDf20050987fd2f2005098 /* src/contact/GuContactCapsuleConvex.cpp */,
+ FFFDf20051007fd2f2005100 /* src/contact/GuContactCapsuleMesh.cpp */,
+ FFFDf20051687fd2f2005168 /* src/contact/GuContactConvexConvex.cpp */,
+ FFFDf20051d07fd2f20051d0 /* src/contact/GuContactConvexMesh.cpp */,
+ FFFDf20052387fd2f2005238 /* src/contact/GuContactPlaneBox.cpp */,
+ FFFDf20052a07fd2f20052a0 /* src/contact/GuContactPlaneCapsule.cpp */,
+ FFFDf20053087fd2f2005308 /* src/contact/GuContactPlaneConvex.cpp */,
+ FFFDf20053707fd2f2005370 /* src/contact/GuContactPolygonPolygon.cpp */,
+ FFFDf20053d87fd2f20053d8 /* src/contact/GuContactSphereBox.cpp */,
+ FFFDf20054407fd2f2005440 /* src/contact/GuContactSphereCapsule.cpp */,
+ FFFDf20054a87fd2f20054a8 /* src/contact/GuContactSphereMesh.cpp */,
+ FFFDf20055107fd2f2005510 /* src/contact/GuContactSpherePlane.cpp */,
+ FFFDf20055787fd2f2005578 /* src/contact/GuContactSphereSphere.cpp */,
+ FFFDf20055e07fd2f20055e0 /* src/contact/GuFeatureCode.cpp */,
+ FFFDf20056487fd2f2005648 /* src/contact/GuLegacyContactBoxHeightField.cpp */,
+ FFFDf20056b07fd2f20056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */,
+ FFFDf20057187fd2f2005718 /* src/contact/GuLegacyContactConvexHeightField.cpp */,
+ FFFDf20057807fd2f2005780 /* src/contact/GuLegacyContactSphereHeightField.cpp */,
+ FFFDf20057e87fd2f20057e8 /* src/common/GuBarycentricCoordinates.cpp */,
+ FFFDf20058507fd2f2005850 /* src/common/GuSeparatingAxes.cpp */,
+ FFFDf20058b87fd2f20058b8 /* src/convex/GuBigConvexData.cpp */,
+ FFFDf20059207fd2f2005920 /* src/convex/GuConvexHelper.cpp */,
+ FFFDf20059887fd2f2005988 /* src/convex/GuConvexMesh.cpp */,
+ FFFDf20059f07fd2f20059f0 /* src/convex/GuConvexSupportTable.cpp */,
+ FFFDf2005a587fd2f2005a58 /* src/convex/GuConvexUtilsInternal.cpp */,
+ FFFDf2005ac07fd2f2005ac0 /* src/convex/GuHillClimbing.cpp */,
+ FFFDf2005b287fd2f2005b28 /* src/convex/GuShapeConvex.cpp */,
+ FFFDf2005b907fd2f2005b90 /* src/distance/GuDistancePointBox.cpp */,
+ FFFDf2005bf87fd2f2005bf8 /* src/distance/GuDistancePointTriangle.cpp */,
+ FFFDf2005c607fd2f2005c60 /* src/distance/GuDistanceSegmentBox.cpp */,
+ FFFDf2005cc87fd2f2005cc8 /* src/distance/GuDistanceSegmentSegment.cpp */,
+ FFFDf2005d307fd2f2005d30 /* src/distance/GuDistanceSegmentTriangle.cpp */,
+ FFFDf2005d987fd2f2005d98 /* src/sweep/GuSweepBoxBox.cpp */,
+ FFFDf2005e007fd2f2005e00 /* src/sweep/GuSweepBoxSphere.cpp */,
+ FFFDf2005e687fd2f2005e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */,
+ FFFDf2005ed07fd2f2005ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */,
+ FFFDf2005f387fd2f2005f38 /* src/sweep/GuSweepCapsuleBox.cpp */,
+ FFFDf2005fa07fd2f2005fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */,
+ FFFDf20060087fd2f2006008 /* src/sweep/GuSweepCapsuleTriangle.cpp */,
+ FFFDf20060707fd2f2006070 /* src/sweep/GuSweepSphereCapsule.cpp */,
+ FFFDf20060d87fd2f20060d8 /* src/sweep/GuSweepSphereSphere.cpp */,
+ FFFDf20061407fd2f2006140 /* src/sweep/GuSweepSphereTriangle.cpp */,
+ FFFDf20061a87fd2f20061a8 /* src/sweep/GuSweepTriangleUtils.cpp */,
+ FFFDf20062107fd2f2006210 /* src/gjk/GuEPA.cpp */,
+ FFFDf20062787fd2f2006278 /* src/gjk/GuGJKSimplex.cpp */,
+ FFFDf20062e07fd2f20062e0 /* src/gjk/GuGJKTest.cpp */,
+ FFFDf20063487fd2f2006348 /* src/intersection/GuIntersectionBoxBox.cpp */,
+ FFFDf20063b07fd2f20063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */,
+ FFFDf20064187fd2f2006418 /* src/intersection/GuIntersectionEdgeEdge.cpp */,
+ FFFDf20064807fd2f2006480 /* src/intersection/GuIntersectionRayBox.cpp */,
+ FFFDf20064e87fd2f20064e8 /* src/intersection/GuIntersectionRayCapsule.cpp */,
+ FFFDf20065507fd2f2006550 /* src/intersection/GuIntersectionRaySphere.cpp */,
+ FFFDf20065b87fd2f20065b8 /* src/intersection/GuIntersectionSphereBox.cpp */,
+ FFFDf20066207fd2f2006620 /* src/intersection/GuIntersectionTriangleBox.cpp */,
+ FFFDf20066887fd2f2006688 /* src/mesh/GuBV32.cpp */,
+ FFFDf20066f07fd2f20066f0 /* src/mesh/GuBV32Build.cpp */,
+ FFFDf20067587fd2f2006758 /* src/mesh/GuBV4.cpp */,
+ FFFDf20067c07fd2f20067c0 /* src/mesh/GuBV4Build.cpp */,
+ FFFDf20068287fd2f2006828 /* src/mesh/GuBV4_AABBSweep.cpp */,
+ FFFDf20068907fd2f2006890 /* src/mesh/GuBV4_BoxOverlap.cpp */,
+ FFFDf20068f87fd2f20068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */,
+ FFFDf20069607fd2f2006960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */,
+ FFFDf20069c87fd2f20069c8 /* src/mesh/GuBV4_OBBSweep.cpp */,
+ FFFDf2006a307fd2f2006a30 /* src/mesh/GuBV4_Raycast.cpp */,
+ FFFDf2006a987fd2f2006a98 /* src/mesh/GuBV4_SphereOverlap.cpp */,
+ FFFDf2006b007fd2f2006b00 /* src/mesh/GuBV4_SphereSweep.cpp */,
+ FFFDf2006b687fd2f2006b68 /* src/mesh/GuMeshQuery.cpp */,
+ FFFDf2006bd07fd2f2006bd0 /* src/mesh/GuMidphaseBV4.cpp */,
+ FFFDf2006c387fd2f2006c38 /* src/mesh/GuMidphaseRTree.cpp */,
+ FFFDf2006ca07fd2f2006ca0 /* src/mesh/GuOverlapTestsMesh.cpp */,
+ FFFDf2006d087fd2f2006d08 /* src/mesh/GuRTree.cpp */,
+ FFFDf2006d707fd2f2006d70 /* src/mesh/GuRTreeQueries.cpp */,
+ FFFDf2006dd87fd2f2006dd8 /* src/mesh/GuSweepsMesh.cpp */,
+ FFFDf2006e407fd2f2006e40 /* src/mesh/GuTriangleMesh.cpp */,
+ FFFDf2006ea87fd2f2006ea8 /* src/mesh/GuTriangleMeshBV4.cpp */,
+ FFFDf2006f107fd2f2006f10 /* src/mesh/GuTriangleMeshRTree.cpp */,
+ FFFDf2006f787fd2f2006f78 /* src/hf/GuHeightField.cpp */,
+ FFFDf2006fe07fd2f2006fe0 /* src/hf/GuHeightFieldUtil.cpp */,
+ FFFDf20070487fd2f2007048 /* src/hf/GuOverlapTestsHF.cpp */,
+ FFFDf20070b07fd2f20070b0 /* src/hf/GuSweepsHF.cpp */,
+ FFFDf20071187fd2f2007118 /* src/pcm/GuPCMContactBoxBox.cpp */,
+ FFFDf20071807fd2f2007180 /* src/pcm/GuPCMContactBoxConvex.cpp */,
+ FFFDf20071e87fd2f20071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */,
+ FFFDf20072507fd2f2007250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */,
+ FFFDf20072b87fd2f20072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */,
+ FFFDf20073207fd2f2007320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */,
+ FFFDf20073887fd2f2007388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */,
+ FFFDf20073f07fd2f20073f0 /* src/pcm/GuPCMContactConvexCommon.cpp */,
+ FFFDf20074587fd2f2007458 /* src/pcm/GuPCMContactConvexConvex.cpp */,
+ FFFDf20074c07fd2f20074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */,
+ FFFDf20075287fd2f2007528 /* src/pcm/GuPCMContactConvexMesh.cpp */,
+ FFFDf20075907fd2f2007590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */,
+ FFFDf20075f87fd2f20075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */,
+ FFFDf20076607fd2f2007660 /* src/pcm/GuPCMContactPlaneBox.cpp */,
+ FFFDf20076c87fd2f20076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */,
+ FFFDf20077307fd2f2007730 /* src/pcm/GuPCMContactPlaneConvex.cpp */,
+ FFFDf20077987fd2f2007798 /* src/pcm/GuPCMContactSphereBox.cpp */,
+ FFFDf20078007fd2f2007800 /* src/pcm/GuPCMContactSphereCapsule.cpp */,
+ FFFDf20078687fd2f2007868 /* src/pcm/GuPCMContactSphereConvex.cpp */,
+ FFFDf20078d07fd2f20078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */,
+ FFFDf20079387fd2f2007938 /* src/pcm/GuPCMContactSphereMesh.cpp */,
+ FFFDf20079a07fd2f20079a0 /* src/pcm/GuPCMContactSpherePlane.cpp */,
+ FFFDf2007a087fd2f2007a08 /* src/pcm/GuPCMContactSphereSphere.cpp */,
+ FFFDf2007a707fd2f2007a70 /* src/pcm/GuPCMShapeConvex.cpp */,
+ FFFDf2007ad87fd2f2007ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */,
+ FFFDf2007b407fd2f2007b40 /* src/pcm/GuPersistentContactManifold.cpp */,
+ FFFDf2007ba87fd2f2007ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */,
+ FFFDf2007c107fd2f2007c10 /* src/ccd/GuCCDSweepPrimitives.cpp */,
);
name = "geomutils";
sourceTree = SOURCE_ROOT;
};
- FFFBec18e0107f8cec18e010 /* PxFoundation */ = {
+ FFFBf188de607fd2f188de60 /* PxFoundation */ = {
isa = PBXGroup;
children = (
- FFFBec18e5b07f8cec18e5b0 /* include */,
- FFFBec18e5d87f8cec18e5d8 /* src */,
+ FFFBf188e4c07fd2f188e4c0 /* include */,
+ FFFBf188e4e87fd2f188e4e8 /* src */,
);
name = "PxFoundation";
sourceTree = "<group>";
};
- FFFBec18e5b07f8cec18e5b0 /* include */ = {
+ FFFBf188e4c07fd2f188e4c0 /* include */ = {
isa = PBXGroup;
children = (
- FFFDeb996c007f8ceb996c00 /* Px.h */,
- FFFDeb996c687f8ceb996c68 /* PxAllocatorCallback.h */,
- FFFDeb996cd07f8ceb996cd0 /* PxAssert.h */,
- FFFDeb996d387f8ceb996d38 /* PxBitAndData.h */,
- FFFDeb996da07f8ceb996da0 /* PxBounds3.h */,
- FFFDeb996e087f8ceb996e08 /* PxErrorCallback.h */,
- FFFDeb996e707f8ceb996e70 /* PxErrors.h */,
- FFFDeb996ed87f8ceb996ed8 /* PxFlags.h */,
- FFFDeb996f407f8ceb996f40 /* PxFoundation.h */,
- FFFDeb996fa87f8ceb996fa8 /* PxFoundationVersion.h */,
- FFFDeb9970107f8ceb997010 /* PxIO.h */,
- FFFDeb9970787f8ceb997078 /* PxIntrinsics.h */,
- FFFDeb9970e07f8ceb9970e0 /* PxMat33.h */,
- FFFDeb9971487f8ceb997148 /* PxMat44.h */,
- FFFDeb9971b07f8ceb9971b0 /* PxMath.h */,
- FFFDeb9972187f8ceb997218 /* PxMathUtils.h */,
- FFFDeb9972807f8ceb997280 /* PxMemory.h */,
- FFFDeb9972e87f8ceb9972e8 /* PxPlane.h */,
- FFFDeb9973507f8ceb997350 /* PxPreprocessor.h */,
- FFFDeb9973b87f8ceb9973b8 /* PxProfiler.h */,
- FFFDeb9974207f8ceb997420 /* PxQuat.h */,
- FFFDeb9974887f8ceb997488 /* PxSimpleTypes.h */,
- FFFDeb9974f07f8ceb9974f0 /* PxStrideIterator.h */,
- FFFDeb9975587f8ceb997558 /* PxTransform.h */,
- FFFDeb9975c07f8ceb9975c0 /* PxUnionCast.h */,
- FFFDeb9976287f8ceb997628 /* PxVec2.h */,
- FFFDeb9976907f8ceb997690 /* PxVec3.h */,
- FFFDeb9976f87f8ceb9976f8 /* PxVec4.h */,
- FFFDeb9977607f8ceb997760 /* unix/PxUnixIntrinsics.h */,
+ FFFDf1196c007fd2f1196c00 /* Px.h */,
+ FFFDf1196c687fd2f1196c68 /* PxAllocatorCallback.h */,
+ FFFDf1196cd07fd2f1196cd0 /* PxAssert.h */,
+ FFFDf1196d387fd2f1196d38 /* PxBitAndData.h */,
+ FFFDf1196da07fd2f1196da0 /* PxBounds3.h */,
+ FFFDf1196e087fd2f1196e08 /* PxErrorCallback.h */,
+ FFFDf1196e707fd2f1196e70 /* PxErrors.h */,
+ FFFDf1196ed87fd2f1196ed8 /* PxFlags.h */,
+ FFFDf1196f407fd2f1196f40 /* PxFoundation.h */,
+ FFFDf1196fa87fd2f1196fa8 /* PxFoundationVersion.h */,
+ FFFDf11970107fd2f1197010 /* PxIO.h */,
+ FFFDf11970787fd2f1197078 /* PxIntrinsics.h */,
+ FFFDf11970e07fd2f11970e0 /* PxMat33.h */,
+ FFFDf11971487fd2f1197148 /* PxMat44.h */,
+ FFFDf11971b07fd2f11971b0 /* PxMath.h */,
+ FFFDf11972187fd2f1197218 /* PxMathUtils.h */,
+ FFFDf11972807fd2f1197280 /* PxMemory.h */,
+ FFFDf11972e87fd2f11972e8 /* PxPlane.h */,
+ FFFDf11973507fd2f1197350 /* PxPreprocessor.h */,
+ FFFDf11973b87fd2f11973b8 /* PxProfiler.h */,
+ FFFDf11974207fd2f1197420 /* PxQuat.h */,
+ FFFDf11974887fd2f1197488 /* PxSimpleTypes.h */,
+ FFFDf11974f07fd2f11974f0 /* PxStrideIterator.h */,
+ FFFDf11975587fd2f1197558 /* PxTransform.h */,
+ FFFDf11975c07fd2f11975c0 /* PxUnionCast.h */,
+ FFFDf11976287fd2f1197628 /* PxVec2.h */,
+ FFFDf11976907fd2f1197690 /* PxVec3.h */,
+ FFFDf11976f87fd2f11976f8 /* PxVec4.h */,
+ FFFDf11977607fd2f1197760 /* unix/PxUnixIntrinsics.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
- FFFBec18e5d87f8cec18e5d8 /* src */ = {
+ FFFBf188e4e87fd2f188e4e8 /* src */ = {
isa = PBXGroup;
children = (
- FFFDeb9a12007f8ceb9a1200 /* include/Ps.h */,
- FFFDeb9a12687f8ceb9a1268 /* include/PsAlignedMalloc.h */,
- FFFDeb9a12d07f8ceb9a12d0 /* include/PsAlloca.h */,
- FFFDeb9a13387f8ceb9a1338 /* include/PsAllocator.h */,
- FFFDeb9a13a07f8ceb9a13a0 /* include/PsAoS.h */,
- FFFDeb9a14087f8ceb9a1408 /* include/PsArray.h */,
- FFFDeb9a14707f8ceb9a1470 /* include/PsAtomic.h */,
- FFFDeb9a14d87f8ceb9a14d8 /* include/PsBasicTemplates.h */,
- FFFDeb9a15407f8ceb9a1540 /* include/PsBitUtils.h */,
- FFFDeb9a15a87f8ceb9a15a8 /* include/PsBroadcast.h */,
- FFFDeb9a16107f8ceb9a1610 /* include/PsCpu.h */,
- FFFDeb9a16787f8ceb9a1678 /* include/PsFPU.h */,
- FFFDeb9a16e07f8ceb9a16e0 /* include/PsFoundation.h */,
- FFFDeb9a17487f8ceb9a1748 /* include/PsHash.h */,
- FFFDeb9a17b07f8ceb9a17b0 /* include/PsHashInternals.h */,
- FFFDeb9a18187f8ceb9a1818 /* include/PsHashMap.h */,
- FFFDeb9a18807f8ceb9a1880 /* include/PsHashSet.h */,
- FFFDeb9a18e87f8ceb9a18e8 /* include/PsInlineAllocator.h */,
- FFFDeb9a19507f8ceb9a1950 /* include/PsInlineAoS.h */,
- FFFDeb9a19b87f8ceb9a19b8 /* include/PsInlineArray.h */,
- FFFDeb9a1a207f8ceb9a1a20 /* include/PsIntrinsics.h */,
- FFFDeb9a1a887f8ceb9a1a88 /* include/PsMathUtils.h */,
- FFFDeb9a1af07f8ceb9a1af0 /* include/PsMutex.h */,
- FFFDeb9a1b587f8ceb9a1b58 /* include/PsPool.h */,
- FFFDeb9a1bc07f8ceb9a1bc0 /* include/PsSList.h */,
- FFFDeb9a1c287f8ceb9a1c28 /* include/PsSocket.h */,
- FFFDeb9a1c907f8ceb9a1c90 /* include/PsSort.h */,
- FFFDeb9a1cf87f8ceb9a1cf8 /* include/PsSortInternals.h */,
- FFFDeb9a1d607f8ceb9a1d60 /* include/PsString.h */,
- FFFDeb9a1dc87f8ceb9a1dc8 /* include/PsSync.h */,
- FFFDeb9a1e307f8ceb9a1e30 /* include/PsTempAllocator.h */,
- FFFDeb9a1e987f8ceb9a1e98 /* include/PsThread.h */,
- FFFDeb9a1f007f8ceb9a1f00 /* include/PsTime.h */,
- FFFDeb9a1f687f8ceb9a1f68 /* include/PsUserAllocated.h */,
- FFFDeb9a1fd07f8ceb9a1fd0 /* include/PsUtilities.h */,
- FFFDeb9a20387f8ceb9a2038 /* include/PsVecMath.h */,
- FFFDeb9a20a07f8ceb9a20a0 /* include/PsVecMathAoSScalar.h */,
- FFFDeb9a21087f8ceb9a2108 /* include/PsVecMathAoSScalarInline.h */,
- FFFDeb9a21707f8ceb9a2170 /* include/PsVecMathSSE.h */,
- FFFDeb9a21d87f8ceb9a21d8 /* include/PsVecMathUtilities.h */,
- FFFDeb9a22407f8ceb9a2240 /* include/PsVecQuat.h */,
- FFFDeb9a22a87f8ceb9a22a8 /* include/PsVecTransform.h */,
- FFFDeb9a23107f8ceb9a2310 /* include/unix/PsUnixAoS.h */,
- FFFDeb9a23787f8ceb9a2378 /* include/unix/PsUnixFPU.h */,
- FFFDeb9a23e07f8ceb9a23e0 /* include/unix/PsUnixInlineAoS.h */,
- FFFDeb9a24487f8ceb9a2448 /* include/unix/PsUnixIntrinsics.h */,
- FFFDeb9a24b07f8ceb9a24b0 /* include/unix/PsUnixTrigConstants.h */,
- FFFDeb9a25187f8ceb9a2518 /* src/PsAllocator.cpp */,
- FFFDeb9a25807f8ceb9a2580 /* src/PsAssert.cpp */,
- FFFDeb9a25e87f8ceb9a25e8 /* src/PsFoundation.cpp */,
- FFFDeb9a26507f8ceb9a2650 /* src/PsMathUtils.cpp */,
- FFFDeb9a26b87f8ceb9a26b8 /* src/PsString.cpp */,
- FFFDeb9a27207f8ceb9a2720 /* src/PsTempAllocator.cpp */,
- FFFDeb9a27887f8ceb9a2788 /* src/PsUtilities.cpp */,
- FFFDeb9a27f07f8ceb9a27f0 /* src/unix/PsUnixAtomic.cpp */,
- FFFDeb9a28587f8ceb9a2858 /* src/unix/PsUnixCpu.cpp */,
- FFFDeb9a28c07f8ceb9a28c0 /* src/unix/PsUnixFPU.cpp */,
- FFFDeb9a29287f8ceb9a2928 /* src/unix/PsUnixMutex.cpp */,
- FFFDeb9a29907f8ceb9a2990 /* src/unix/PsUnixPrintString.cpp */,
- FFFDeb9a29f87f8ceb9a29f8 /* src/unix/PsUnixSList.cpp */,
- FFFDeb9a2a607f8ceb9a2a60 /* src/unix/PsUnixSocket.cpp */,
- FFFDeb9a2ac87f8ceb9a2ac8 /* src/unix/PsUnixSync.cpp */,
- FFFDeb9a2b307f8ceb9a2b30 /* src/unix/PsUnixThread.cpp */,
- FFFDeb9a2b987f8ceb9a2b98 /* src/unix/PsUnixTime.cpp */,
+ FFFDf11a12007fd2f11a1200 /* include/Ps.h */,
+ FFFDf11a12687fd2f11a1268 /* include/PsAlignedMalloc.h */,
+ FFFDf11a12d07fd2f11a12d0 /* include/PsAlloca.h */,
+ FFFDf11a13387fd2f11a1338 /* include/PsAllocator.h */,
+ FFFDf11a13a07fd2f11a13a0 /* include/PsAoS.h */,
+ FFFDf11a14087fd2f11a1408 /* include/PsArray.h */,
+ FFFDf11a14707fd2f11a1470 /* include/PsAtomic.h */,
+ FFFDf11a14d87fd2f11a14d8 /* include/PsBasicTemplates.h */,
+ FFFDf11a15407fd2f11a1540 /* include/PsBitUtils.h */,
+ FFFDf11a15a87fd2f11a15a8 /* include/PsBroadcast.h */,
+ FFFDf11a16107fd2f11a1610 /* include/PsCpu.h */,
+ FFFDf11a16787fd2f11a1678 /* include/PsFPU.h */,
+ FFFDf11a16e07fd2f11a16e0 /* include/PsFoundation.h */,
+ FFFDf11a17487fd2f11a1748 /* include/PsHash.h */,
+ FFFDf11a17b07fd2f11a17b0 /* include/PsHashInternals.h */,
+ FFFDf11a18187fd2f11a1818 /* include/PsHashMap.h */,
+ FFFDf11a18807fd2f11a1880 /* include/PsHashSet.h */,
+ FFFDf11a18e87fd2f11a18e8 /* include/PsInlineAllocator.h */,
+ FFFDf11a19507fd2f11a1950 /* include/PsInlineAoS.h */,
+ FFFDf11a19b87fd2f11a19b8 /* include/PsInlineArray.h */,
+ FFFDf11a1a207fd2f11a1a20 /* include/PsIntrinsics.h */,
+ FFFDf11a1a887fd2f11a1a88 /* include/PsMathUtils.h */,
+ FFFDf11a1af07fd2f11a1af0 /* include/PsMutex.h */,
+ FFFDf11a1b587fd2f11a1b58 /* include/PsPool.h */,
+ FFFDf11a1bc07fd2f11a1bc0 /* include/PsSList.h */,
+ FFFDf11a1c287fd2f11a1c28 /* include/PsSocket.h */,
+ FFFDf11a1c907fd2f11a1c90 /* include/PsSort.h */,
+ FFFDf11a1cf87fd2f11a1cf8 /* include/PsSortInternals.h */,
+ FFFDf11a1d607fd2f11a1d60 /* include/PsString.h */,
+ FFFDf11a1dc87fd2f11a1dc8 /* include/PsSync.h */,
+ FFFDf11a1e307fd2f11a1e30 /* include/PsTempAllocator.h */,
+ FFFDf11a1e987fd2f11a1e98 /* include/PsThread.h */,
+ FFFDf11a1f007fd2f11a1f00 /* include/PsTime.h */,
+ FFFDf11a1f687fd2f11a1f68 /* include/PsUserAllocated.h */,
+ FFFDf11a1fd07fd2f11a1fd0 /* include/PsUtilities.h */,
+ FFFDf11a20387fd2f11a2038 /* include/PsVecMath.h */,
+ FFFDf11a20a07fd2f11a20a0 /* include/PsVecMathAoSScalar.h */,
+ FFFDf11a21087fd2f11a2108 /* include/PsVecMathAoSScalarInline.h */,
+ FFFDf11a21707fd2f11a2170 /* include/PsVecMathSSE.h */,
+ FFFDf11a21d87fd2f11a21d8 /* include/PsVecMathUtilities.h */,
+ FFFDf11a22407fd2f11a2240 /* include/PsVecQuat.h */,
+ FFFDf11a22a87fd2f11a22a8 /* include/PsVecTransform.h */,
+ FFFDf11a23107fd2f11a2310 /* include/unix/PsUnixAoS.h */,
+ FFFDf11a23787fd2f11a2378 /* include/unix/PsUnixFPU.h */,
+ FFFDf11a23e07fd2f11a23e0 /* include/unix/PsUnixInlineAoS.h */,
+ FFFDf11a24487fd2f11a2448 /* include/unix/PsUnixIntrinsics.h */,
+ FFFDf11a24b07fd2f11a24b0 /* include/unix/PsUnixTrigConstants.h */,
+ FFFDf11a25187fd2f11a2518 /* src/PsAllocator.cpp */,
+ FFFDf11a25807fd2f11a2580 /* src/PsAssert.cpp */,
+ FFFDf11a25e87fd2f11a25e8 /* src/PsFoundation.cpp */,
+ FFFDf11a26507fd2f11a2650 /* src/PsMathUtils.cpp */,
+ FFFDf11a26b87fd2f11a26b8 /* src/PsString.cpp */,
+ FFFDf11a27207fd2f11a2720 /* src/PsTempAllocator.cpp */,
+ FFFDf11a27887fd2f11a2788 /* src/PsUtilities.cpp */,
+ FFFDf11a27f07fd2f11a27f0 /* src/unix/PsUnixAtomic.cpp */,
+ FFFDf11a28587fd2f11a2858 /* src/unix/PsUnixCpu.cpp */,
+ FFFDf11a28c07fd2f11a28c0 /* src/unix/PsUnixFPU.cpp */,
+ FFFDf11a29287fd2f11a2928 /* src/unix/PsUnixMutex.cpp */,
+ FFFDf11a29907fd2f11a2990 /* src/unix/PsUnixPrintString.cpp */,
+ FFFDf11a29f87fd2f11a29f8 /* src/unix/PsUnixSList.cpp */,
+ FFFDf11a2a607fd2f11a2a60 /* src/unix/PsUnixSocket.cpp */,
+ FFFDf11a2ac87fd2f11a2ac8 /* src/unix/PsUnixSync.cpp */,
+ FFFDf11a2b307fd2f11a2b30 /* src/unix/PsUnixThread.cpp */,
+ FFFDf11a2b987fd2f11a2b98 /* src/unix/PsUnixTime.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
- FFFBed809f207f8ced809f20 /* PxPvdSDK */ = {
+ FFFBf2809f007fd2f2809f00 /* PxPvdSDK */ = {
isa = PBXGroup;
children = (
- FFFBed80c5f07f8ced80c5f0 /* include */,
- FFFBed80c6187f8ced80c618 /* src */,
+ FFFBf280c3a07fd2f280c3a0 /* include */,
+ FFFBf280c3c87fd2f280c3c8 /* src */,
);
name = "PxPvdSDK";
sourceTree = "<group>";
};
- FFFBed80c5f07f8ced80c5f0 /* include */ = {
+ FFFBf280c3a07fd2f280c3a0 /* include */ = {
isa = PBXGroup;
children = (
- FFFDed80ccc07f8ced80ccc0 /* PxPvd.h */,
- FFFDed80cd287f8ced80cd28 /* PxPvdTransport.h */,
+ FFFDf280cc207fd2f280cc20 /* PxPvd.h */,
+ FFFDf280cc887fd2f280cc88 /* PxPvdTransport.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
- FFFBed80c6187f8ced80c618 /* src */ = {
+ FFFBf280c3c87fd2f280c3c8 /* src */ = {
isa = PBXGroup;
children = (
- FFFDee00fc007f8cee00fc00 /* include/PsPvd.h */,
- FFFDee00fc687f8cee00fc68 /* include/PxProfileAllocatorWrapper.h */,
- FFFDee00fcd07f8cee00fcd0 /* include/PxPvdClient.h */,
- FFFDee00fd387f8cee00fd38 /* include/PxPvdDataStream.h */,
- FFFDee00fda07f8cee00fda0 /* include/PxPvdDataStreamHelpers.h */,
- FFFDee00fe087f8cee00fe08 /* include/PxPvdErrorCodes.h */,
- FFFDee00fe707f8cee00fe70 /* include/PxPvdObjectModelBaseTypes.h */,
- FFFDee00fed87f8cee00fed8 /* include/PxPvdRenderBuffer.h */,
- FFFDee00ff407f8cee00ff40 /* include/PxPvdUserRenderer.h */,
- FFFDee00ffa87f8cee00ffa8 /* src/PxProfileEventImpl.cpp */,
- FFFDee0100107f8cee010010 /* src/PxPvd.cpp */,
- FFFDee0100787f8cee010078 /* src/PxPvdDataStream.cpp */,
- FFFDee0100e07f8cee0100e0 /* src/PxPvdDefaultFileTransport.cpp */,
- FFFDee0101487f8cee010148 /* src/PxPvdDefaultSocketTransport.cpp */,
- FFFDee0101b07f8cee0101b0 /* src/PxPvdImpl.cpp */,
- FFFDee0102187f8cee010218 /* src/PxPvdMemClient.cpp */,
- FFFDee0102807f8cee010280 /* src/PxPvdObjectModelMetaData.cpp */,
- FFFDee0102e87f8cee0102e8 /* src/PxPvdObjectRegistrar.cpp */,
- FFFDee0103507f8cee010350 /* src/PxPvdProfileZoneClient.cpp */,
- FFFDee0103b87f8cee0103b8 /* src/PxPvdUserRenderer.cpp */,
- FFFDee0104207f8cee010420 /* src/PxProfileBase.h */,
- FFFDee0104887f8cee010488 /* src/PxProfileCompileTimeEventFilter.h */,
- FFFDee0104f07f8cee0104f0 /* src/PxProfileContextProvider.h */,
- FFFDee0105587f8cee010558 /* src/PxProfileContextProviderImpl.h */,
- FFFDee0105c07f8cee0105c0 /* src/PxProfileDataBuffer.h */,
- FFFDee0106287f8cee010628 /* src/PxProfileDataParsing.h */,
- FFFDee0106907f8cee010690 /* src/PxProfileEventBuffer.h */,
- FFFDee0106f87f8cee0106f8 /* src/PxProfileEventBufferAtomic.h */,
- FFFDee0107607f8cee010760 /* src/PxProfileEventBufferClient.h */,
- FFFDee0107c87f8cee0107c8 /* src/PxProfileEventBufferClientManager.h */,
- FFFDee0108307f8cee010830 /* src/PxProfileEventFilter.h */,
- FFFDee0108987f8cee010898 /* src/PxProfileEventHandler.h */,
- FFFDee0109007f8cee010900 /* src/PxProfileEventId.h */,
- FFFDee0109687f8cee010968 /* src/PxProfileEventMutex.h */,
- FFFDee0109d07f8cee0109d0 /* src/PxProfileEventNames.h */,
- FFFDee010a387f8cee010a38 /* src/PxProfileEventParser.h */,
- FFFDee010aa07f8cee010aa0 /* src/PxProfileEventSender.h */,
- FFFDee010b087f8cee010b08 /* src/PxProfileEventSerialization.h */,
- FFFDee010b707f8cee010b70 /* src/PxProfileEventSystem.h */,
- FFFDee010bd87f8cee010bd8 /* src/PxProfileEvents.h */,
- FFFDee010c407f8cee010c40 /* src/PxProfileMemory.h */,
- FFFDee010ca87f8cee010ca8 /* src/PxProfileMemoryBuffer.h */,
- FFFDee010d107f8cee010d10 /* src/PxProfileMemoryEventBuffer.h */,
- FFFDee010d787f8cee010d78 /* src/PxProfileMemoryEventParser.h */,
- FFFDee010de07f8cee010de0 /* src/PxProfileMemoryEventRecorder.h */,
- FFFDee010e487f8cee010e48 /* src/PxProfileMemoryEventReflexiveWriter.h */,
- FFFDee010eb07f8cee010eb0 /* src/PxProfileMemoryEventSummarizer.h */,
- FFFDee010f187f8cee010f18 /* src/PxProfileMemoryEventTypes.h */,
- FFFDee010f807f8cee010f80 /* src/PxProfileMemoryEvents.h */,
- FFFDee010fe87f8cee010fe8 /* src/PxProfileScopedEvent.h */,
- FFFDee0110507f8cee011050 /* src/PxProfileScopedMutexLock.h */,
- FFFDee0110b87f8cee0110b8 /* src/PxProfileZone.h */,
- FFFDee0111207f8cee011120 /* src/PxProfileZoneImpl.h */,
- FFFDee0111887f8cee011188 /* src/PxProfileZoneManager.h */,
- FFFDee0111f07f8cee0111f0 /* src/PxProfileZoneManagerImpl.h */,
- FFFDee0112587f8cee011258 /* src/PxPvdBits.h */,
- FFFDee0112c07f8cee0112c0 /* src/PxPvdByteStreams.h */,
- FFFDee0113287f8cee011328 /* src/PxPvdCommStreamEventSink.h */,
- FFFDee0113907f8cee011390 /* src/PxPvdCommStreamEvents.h */,
- FFFDee0113f87f8cee0113f8 /* src/PxPvdCommStreamSDKEventTypes.h */,
- FFFDee0114607f8cee011460 /* src/PxPvdCommStreamTypes.h */,
- FFFDee0114c87f8cee0114c8 /* src/PxPvdDefaultFileTransport.h */,
- FFFDee0115307f8cee011530 /* src/PxPvdDefaultSocketTransport.h */,
- FFFDee0115987f8cee011598 /* src/PxPvdFoundation.h */,
- FFFDee0116007f8cee011600 /* src/PxPvdImpl.h */,
- FFFDee0116687f8cee011668 /* src/PxPvdInternalByteStreams.h */,
- FFFDee0116d07f8cee0116d0 /* src/PxPvdMarshalling.h */,
- FFFDee0117387f8cee011738 /* src/PxPvdMemClient.h */,
- FFFDee0117a07f8cee0117a0 /* src/PxPvdObjectModel.h */,
- FFFDee0118087f8cee011808 /* src/PxPvdObjectModelInternalTypeDefs.h */,
- FFFDee0118707f8cee011870 /* src/PxPvdObjectModelInternalTypes.h */,
- FFFDee0118d87f8cee0118d8 /* src/PxPvdObjectModelMetaData.h */,
- FFFDee0119407f8cee011940 /* src/PxPvdObjectRegistrar.h */,
- FFFDee0119a87f8cee0119a8 /* src/PxPvdProfileZoneClient.h */,
- FFFDee011a107f8cee011a10 /* src/PxPvdUserRenderImpl.h */,
- FFFDee011a787f8cee011a78 /* src/PxPvdUserRenderTypes.h */,
+ FFFDf300f6007fd2f300f600 /* include/PsPvd.h */,
+ FFFDf300f6687fd2f300f668 /* include/PxProfileAllocatorWrapper.h */,
+ FFFDf300f6d07fd2f300f6d0 /* include/PxPvdClient.h */,
+ FFFDf300f7387fd2f300f738 /* include/PxPvdDataStream.h */,
+ FFFDf300f7a07fd2f300f7a0 /* include/PxPvdDataStreamHelpers.h */,
+ FFFDf300f8087fd2f300f808 /* include/PxPvdErrorCodes.h */,
+ FFFDf300f8707fd2f300f870 /* include/PxPvdObjectModelBaseTypes.h */,
+ FFFDf300f8d87fd2f300f8d8 /* include/PxPvdRenderBuffer.h */,
+ FFFDf300f9407fd2f300f940 /* include/PxPvdUserRenderer.h */,
+ FFFDf300f9a87fd2f300f9a8 /* src/PxProfileEventImpl.cpp */,
+ FFFDf300fa107fd2f300fa10 /* src/PxPvd.cpp */,
+ FFFDf300fa787fd2f300fa78 /* src/PxPvdDataStream.cpp */,
+ FFFDf300fae07fd2f300fae0 /* src/PxPvdDefaultFileTransport.cpp */,
+ FFFDf300fb487fd2f300fb48 /* src/PxPvdDefaultSocketTransport.cpp */,
+ FFFDf300fbb07fd2f300fbb0 /* src/PxPvdImpl.cpp */,
+ FFFDf300fc187fd2f300fc18 /* src/PxPvdMemClient.cpp */,
+ FFFDf300fc807fd2f300fc80 /* src/PxPvdObjectModelMetaData.cpp */,
+ FFFDf300fce87fd2f300fce8 /* src/PxPvdObjectRegistrar.cpp */,
+ FFFDf300fd507fd2f300fd50 /* src/PxPvdProfileZoneClient.cpp */,
+ FFFDf300fdb87fd2f300fdb8 /* src/PxPvdUserRenderer.cpp */,
+ FFFDf300fe207fd2f300fe20 /* src/PxProfileBase.h */,
+ FFFDf300fe887fd2f300fe88 /* src/PxProfileCompileTimeEventFilter.h */,
+ FFFDf300fef07fd2f300fef0 /* src/PxProfileContextProvider.h */,
+ FFFDf300ff587fd2f300ff58 /* src/PxProfileContextProviderImpl.h */,
+ FFFDf300ffc07fd2f300ffc0 /* src/PxProfileDataBuffer.h */,
+ FFFDf30100287fd2f3010028 /* src/PxProfileDataParsing.h */,
+ FFFDf30100907fd2f3010090 /* src/PxProfileEventBuffer.h */,
+ FFFDf30100f87fd2f30100f8 /* src/PxProfileEventBufferAtomic.h */,
+ FFFDf30101607fd2f3010160 /* src/PxProfileEventBufferClient.h */,
+ FFFDf30101c87fd2f30101c8 /* src/PxProfileEventBufferClientManager.h */,
+ FFFDf30102307fd2f3010230 /* src/PxProfileEventFilter.h */,
+ FFFDf30102987fd2f3010298 /* src/PxProfileEventHandler.h */,
+ FFFDf30103007fd2f3010300 /* src/PxProfileEventId.h */,
+ FFFDf30103687fd2f3010368 /* src/PxProfileEventMutex.h */,
+ FFFDf30103d07fd2f30103d0 /* src/PxProfileEventNames.h */,
+ FFFDf30104387fd2f3010438 /* src/PxProfileEventParser.h */,
+ FFFDf30104a07fd2f30104a0 /* src/PxProfileEventSender.h */,
+ FFFDf30105087fd2f3010508 /* src/PxProfileEventSerialization.h */,
+ FFFDf30105707fd2f3010570 /* src/PxProfileEventSystem.h */,
+ FFFDf30105d87fd2f30105d8 /* src/PxProfileEvents.h */,
+ FFFDf30106407fd2f3010640 /* src/PxProfileMemory.h */,
+ FFFDf30106a87fd2f30106a8 /* src/PxProfileMemoryBuffer.h */,
+ FFFDf30107107fd2f3010710 /* src/PxProfileMemoryEventBuffer.h */,
+ FFFDf30107787fd2f3010778 /* src/PxProfileMemoryEventParser.h */,
+ FFFDf30107e07fd2f30107e0 /* src/PxProfileMemoryEventRecorder.h */,
+ FFFDf30108487fd2f3010848 /* src/PxProfileMemoryEventReflexiveWriter.h */,
+ FFFDf30108b07fd2f30108b0 /* src/PxProfileMemoryEventSummarizer.h */,
+ FFFDf30109187fd2f3010918 /* src/PxProfileMemoryEventTypes.h */,
+ FFFDf30109807fd2f3010980 /* src/PxProfileMemoryEvents.h */,
+ FFFDf30109e87fd2f30109e8 /* src/PxProfileScopedEvent.h */,
+ FFFDf3010a507fd2f3010a50 /* src/PxProfileScopedMutexLock.h */,
+ FFFDf3010ab87fd2f3010ab8 /* src/PxProfileZone.h */,
+ FFFDf3010b207fd2f3010b20 /* src/PxProfileZoneImpl.h */,
+ FFFDf3010b887fd2f3010b88 /* src/PxProfileZoneManager.h */,
+ FFFDf3010bf07fd2f3010bf0 /* src/PxProfileZoneManagerImpl.h */,
+ FFFDf3010c587fd2f3010c58 /* src/PxPvdBits.h */,
+ FFFDf3010cc07fd2f3010cc0 /* src/PxPvdByteStreams.h */,
+ FFFDf3010d287fd2f3010d28 /* src/PxPvdCommStreamEventSink.h */,
+ FFFDf3010d907fd2f3010d90 /* src/PxPvdCommStreamEvents.h */,
+ FFFDf3010df87fd2f3010df8 /* src/PxPvdCommStreamSDKEventTypes.h */,
+ FFFDf3010e607fd2f3010e60 /* src/PxPvdCommStreamTypes.h */,
+ FFFDf3010ec87fd2f3010ec8 /* src/PxPvdDefaultFileTransport.h */,
+ FFFDf3010f307fd2f3010f30 /* src/PxPvdDefaultSocketTransport.h */,
+ FFFDf3010f987fd2f3010f98 /* src/PxPvdFoundation.h */,
+ FFFDf30110007fd2f3011000 /* src/PxPvdImpl.h */,
+ FFFDf30110687fd2f3011068 /* src/PxPvdInternalByteStreams.h */,
+ FFFDf30110d07fd2f30110d0 /* src/PxPvdMarshalling.h */,
+ FFFDf30111387fd2f3011138 /* src/PxPvdMemClient.h */,
+ FFFDf30111a07fd2f30111a0 /* src/PxPvdObjectModel.h */,
+ FFFDf30112087fd2f3011208 /* src/PxPvdObjectModelInternalTypeDefs.h */,
+ FFFDf30112707fd2f3011270 /* src/PxPvdObjectModelInternalTypes.h */,
+ FFFDf30112d87fd2f30112d8 /* src/PxPvdObjectModelMetaData.h */,
+ FFFDf30113407fd2f3011340 /* src/PxPvdObjectRegistrar.h */,
+ FFFDf30113a87fd2f30113a8 /* src/PxPvdProfileZoneClient.h */,
+ FFFDf30114107fd2f3011410 /* src/PxPvdUserRenderImpl.h */,
+ FFFDf30114787fd2f3011478 /* src/PxPvdUserRenderTypes.h */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
- FFFBec5094107f8cec509410 /* LowLevel */ = {
+ FFFBf28272b07fd2f28272b0 /* LowLevel */ = {
isa = PBXGroup;
children = (
- FFFBec70b4f07f8cec70b4f0 /* API Source */,
- FFFBec70b5187f8cec70b518 /* API Includes */,
- FFFBec70b5407f8cec70b540 /* Software Source */,
- FFFBec70b5687f8cec70b568 /* Software Includes */,
- FFFBec70b5907f8cec70b590 /* Common Source */,
- FFFBec70b5b87f8cec70b5b8 /* Common Includes */,
+ FFFBf282bdc07fd2f282bdc0 /* API Source */,
+ FFFBf282bde87fd2f282bde8 /* API Includes */,
+ FFFBf282be107fd2f282be10 /* Software Source */,
+ FFFBf282be387fd2f282be38 /* Software Includes */,
+ FFFBf282be607fd2f282be60 /* Common Source */,
+ FFFBf282be887fd2f282be88 /* Common Includes */,
);
name = "LowLevel";
sourceTree = "<group>";
};
- FFFBec70b4f07f8cec70b4f0 /* API Source */ = {
+ FFFBf282bdc07fd2f282bdc0 /* API Source */ = {
isa = PBXGroup;
children = (
- FFFDec70a2f07f8cec70a2f0 /* px_globals.cpp */,
+ FFFDf282abc07fd2f282abc0 /* px_globals.cpp */,
);
name = "API Source";
sourceTree = SOURCE_ROOT;
};
- FFFBec70b5187f8cec70b518 /* API Includes */ = {
+ FFFBf282bde87fd2f282bde8 /* API Includes */ = {
isa = PBXGroup;
children = (
- FFFDec70c8207f8cec70c820 /* PxsMaterialCore.h */,
- FFFDec70c8887f8cec70c888 /* PxsMaterialManager.h */,
- FFFDec70c8f07f8cec70c8f0 /* PxvConfig.h */,
- FFFDec70c9587f8cec70c958 /* PxvContext.h */,
- FFFDec70c9c07f8cec70c9c0 /* PxvDynamics.h */,
- FFFDec70ca287f8cec70ca28 /* PxvGeometry.h */,
- FFFDec70ca907f8cec70ca90 /* PxvGlobals.h */,
- FFFDec70caf87f8cec70caf8 /* PxvManager.h */,
- FFFDec70cb607f8cec70cb60 /* PxvSimStats.h */,
+ FFFDf282d0f07fd2f282d0f0 /* PxsMaterialCore.h */,
+ FFFDf282d1587fd2f282d158 /* PxsMaterialManager.h */,
+ FFFDf282d1c07fd2f282d1c0 /* PxvConfig.h */,
+ FFFDf282d2287fd2f282d228 /* PxvContext.h */,
+ FFFDf282d2907fd2f282d290 /* PxvDynamics.h */,
+ FFFDf282d2f87fd2f282d2f8 /* PxvGeometry.h */,
+ FFFDf282d3607fd2f282d360 /* PxvGlobals.h */,
+ FFFDf282d3c87fd2f282d3c8 /* PxvManager.h */,
+ FFFDf282d4307fd2f282d430 /* PxvSimStats.h */,
);
name = "API Includes";
sourceTree = SOURCE_ROOT;
};
- FFFBec70b5407f8cec70b540 /* Software Source */ = {
+ FFFBf282be107fd2f282be10 /* Software Source */ = {
isa = PBXGroup;
children = (
- FFFDec70d9307f8cec70d930 /* PxsCCD.cpp */,
- FFFDec70d9987f8cec70d998 /* PxsContactManager.cpp */,
- FFFDec70da007f8cec70da00 /* PxsContext.cpp */,
- FFFDec70da687f8cec70da68 /* PxsDefaultMemoryManager.cpp */,
- FFFDec70dad07f8cec70dad0 /* PxsIslandSim.cpp */,
- FFFDec70db387f8cec70db38 /* PxsMaterialCombiner.cpp */,
- FFFDec70dba07f8cec70dba0 /* PxsNphaseImplementationContext.cpp */,
- FFFDec70dc087f8cec70dc08 /* PxsSimpleIslandManager.cpp */,
+ FFFDf282e2007fd2f282e200 /* PxsCCD.cpp */,
+ FFFDf282e2687fd2f282e268 /* PxsContactManager.cpp */,
+ FFFDf282e2d07fd2f282e2d0 /* PxsContext.cpp */,
+ FFFDf282e3387fd2f282e338 /* PxsDefaultMemoryManager.cpp */,
+ FFFDf282e3a07fd2f282e3a0 /* PxsIslandSim.cpp */,
+ FFFDf282e4087fd2f282e408 /* PxsMaterialCombiner.cpp */,
+ FFFDf282e4707fd2f282e470 /* PxsNphaseImplementationContext.cpp */,
+ FFFDf282e4d87fd2f282e4d8 /* PxsSimpleIslandManager.cpp */,
);
name = "Software Source";
sourceTree = SOURCE_ROOT;
};
- FFFBec70b5687f8cec70b568 /* Software Includes */ = {
+ FFFBf282be387fd2f282be38 /* Software Includes */ = {
isa = PBXGroup;
children = (
- FFFDed01fc007f8ced01fc00 /* PxsBodySim.h */,
- FFFDed01fc687f8ced01fc68 /* PxsCCD.h */,
- FFFDed01fcd07f8ced01fcd0 /* PxsContactManager.h */,
- FFFDed01fd387f8ced01fd38 /* PxsContactManagerState.h */,
- FFFDed01fda07f8ced01fda0 /* PxsContext.h */,
- FFFDed01fe087f8ced01fe08 /* PxsDefaultMemoryManager.h */,
- FFFDed01fe707f8ced01fe70 /* PxsHeapMemoryAllocator.h */,
- FFFDed01fed87f8ced01fed8 /* PxsIncrementalConstraintPartitioning.h */,
- FFFDed01ff407f8ced01ff40 /* PxsIslandManagerTypes.h */,
- FFFDed01ffa87f8ced01ffa8 /* PxsIslandSim.h */,
- FFFDed0200107f8ced020010 /* PxsKernelWrangler.h */,
- FFFDed0200787f8ced020078 /* PxsMaterialCombiner.h */,
- FFFDed0200e07f8ced0200e0 /* PxsMemoryManager.h */,
- FFFDed0201487f8ced020148 /* PxsNphaseImplementationContext.h */,
- FFFDed0201b07f8ced0201b0 /* PxsRigidBody.h */,
- FFFDed0202187f8ced020218 /* PxsShapeSim.h */,
- FFFDed0202807f8ced020280 /* PxsSimpleIslandManager.h */,
- FFFDed0202e87f8ced0202e8 /* PxsSimulationController.h */,
- FFFDed0203507f8ced020350 /* PxsTransformCache.h */,
- FFFDed0203b87f8ced0203b8 /* PxvNphaseImplementationContext.h */,
+ FFFDf30016007fd2f3001600 /* PxsBodySim.h */,
+ FFFDf30016687fd2f3001668 /* PxsCCD.h */,
+ FFFDf30016d07fd2f30016d0 /* PxsContactManager.h */,
+ FFFDf30017387fd2f3001738 /* PxsContactManagerState.h */,
+ FFFDf30017a07fd2f30017a0 /* PxsContext.h */,
+ FFFDf30018087fd2f3001808 /* PxsDefaultMemoryManager.h */,
+ FFFDf30018707fd2f3001870 /* PxsHeapMemoryAllocator.h */,
+ FFFDf30018d87fd2f30018d8 /* PxsIncrementalConstraintPartitioning.h */,
+ FFFDf30019407fd2f3001940 /* PxsIslandManagerTypes.h */,
+ FFFDf30019a87fd2f30019a8 /* PxsIslandSim.h */,
+ FFFDf3001a107fd2f3001a10 /* PxsKernelWrangler.h */,
+ FFFDf3001a787fd2f3001a78 /* PxsMaterialCombiner.h */,
+ FFFDf3001ae07fd2f3001ae0 /* PxsMemoryManager.h */,
+ FFFDf3001b487fd2f3001b48 /* PxsNphaseImplementationContext.h */,
+ FFFDf3001bb07fd2f3001bb0 /* PxsRigidBody.h */,
+ FFFDf3001c187fd2f3001c18 /* PxsShapeSim.h */,
+ FFFDf3001c807fd2f3001c80 /* PxsSimpleIslandManager.h */,
+ FFFDf3001ce87fd2f3001ce8 /* PxsSimulationController.h */,
+ FFFDf3001d507fd2f3001d50 /* PxsTransformCache.h */,
+ FFFDf3001db87fd2f3001db8 /* PxvNphaseImplementationContext.h */,
);
name = "Software Includes";
sourceTree = SOURCE_ROOT;
};
- FFFBec70b5907f8cec70b590 /* Common Source */ = {
+ FFFBf282be607fd2f282be60 /* Common Source */ = {
isa = PBXGroup;
children = (
- FFFDed026e007f8ced026e00 /* collision/PxcContact.cpp */,
- FFFDed026e687f8ced026e68 /* pipeline/PxcContactCache.cpp */,
- FFFDed026ed07f8ced026ed0 /* pipeline/PxcContactMethodImpl.cpp */,
- FFFDed026f387f8ced026f38 /* pipeline/PxcMaterialHeightField.cpp */,
- FFFDed026fa07f8ced026fa0 /* pipeline/PxcMaterialMesh.cpp */,
- FFFDed0270087f8ced027008 /* pipeline/PxcMaterialMethodImpl.cpp */,
- FFFDed0270707f8ced027070 /* pipeline/PxcMaterialShape.cpp */,
- FFFDed0270d87f8ced0270d8 /* pipeline/PxcNpBatch.cpp */,
- FFFDed0271407f8ced027140 /* pipeline/PxcNpCacheStreamPair.cpp */,
- FFFDed0271a87f8ced0271a8 /* pipeline/PxcNpContactPrepShared.cpp */,
- FFFDed0272107f8ced027210 /* pipeline/PxcNpMemBlockPool.cpp */,
- FFFDed0272787f8ced027278 /* pipeline/PxcNpThreadContext.cpp */,
+ FFFDf30174007fd2f3017400 /* collision/PxcContact.cpp */,
+ FFFDf30174687fd2f3017468 /* pipeline/PxcContactCache.cpp */,
+ FFFDf30174d07fd2f30174d0 /* pipeline/PxcContactMethodImpl.cpp */,
+ FFFDf30175387fd2f3017538 /* pipeline/PxcMaterialHeightField.cpp */,
+ FFFDf30175a07fd2f30175a0 /* pipeline/PxcMaterialMesh.cpp */,
+ FFFDf30176087fd2f3017608 /* pipeline/PxcMaterialMethodImpl.cpp */,
+ FFFDf30176707fd2f3017670 /* pipeline/PxcMaterialShape.cpp */,
+ FFFDf30176d87fd2f30176d8 /* pipeline/PxcNpBatch.cpp */,
+ FFFDf30177407fd2f3017740 /* pipeline/PxcNpCacheStreamPair.cpp */,
+ FFFDf30177a87fd2f30177a8 /* pipeline/PxcNpContactPrepShared.cpp */,
+ FFFDf30178107fd2f3017810 /* pipeline/PxcNpMemBlockPool.cpp */,
+ FFFDf30178787fd2f3017878 /* pipeline/PxcNpThreadContext.cpp */,
);
name = "Common Source";
sourceTree = SOURCE_ROOT;
};
- FFFBec70b5b87f8cec70b5b8 /* Common Includes */ = {
+ FFFBf282be887fd2f282be88 /* Common Includes */ = {
isa = PBXGroup;
children = (
- FFFDed0276007f8ced027600 /* collision/PxcContactMethodImpl.h */,
- FFFDed0276687f8ced027668 /* pipeline/PxcCCDStateStreamPair.h */,
- FFFDed0276d07f8ced0276d0 /* pipeline/PxcConstraintBlockStream.h */,
- FFFDed0277387f8ced027738 /* pipeline/PxcContactCache.h */,
- FFFDed0277a07f8ced0277a0 /* pipeline/PxcMaterialMethodImpl.h */,
- FFFDed0278087f8ced027808 /* pipeline/PxcNpBatch.h */,
- FFFDed0278707f8ced027870 /* pipeline/PxcNpCache.h */,
- FFFDed0278d87f8ced0278d8 /* pipeline/PxcNpCacheStreamPair.h */,
- FFFDed0279407f8ced027940 /* pipeline/PxcNpContactPrepShared.h */,
- FFFDed0279a87f8ced0279a8 /* pipeline/PxcNpMemBlockPool.h */,
- FFFDed027a107f8ced027a10 /* pipeline/PxcNpThreadContext.h */,
- FFFDed027a787f8ced027a78 /* pipeline/PxcNpWorkUnit.h */,
- FFFDed027ae07f8ced027ae0 /* pipeline/PxcRigidBody.h */,
- FFFDed027b487f8ced027b48 /* utils/PxcScratchAllocator.h */,
- FFFDed027bb07f8ced027bb0 /* utils/PxcThreadCoherentCache.h */,
+ FFFDf3017c007fd2f3017c00 /* collision/PxcContactMethodImpl.h */,
+ FFFDf3017c687fd2f3017c68 /* pipeline/PxcCCDStateStreamPair.h */,
+ FFFDf3017cd07fd2f3017cd0 /* pipeline/PxcConstraintBlockStream.h */,
+ FFFDf3017d387fd2f3017d38 /* pipeline/PxcContactCache.h */,
+ FFFDf3017da07fd2f3017da0 /* pipeline/PxcMaterialMethodImpl.h */,
+ FFFDf3017e087fd2f3017e08 /* pipeline/PxcNpBatch.h */,
+ FFFDf3017e707fd2f3017e70 /* pipeline/PxcNpCache.h */,
+ FFFDf3017ed87fd2f3017ed8 /* pipeline/PxcNpCacheStreamPair.h */,
+ FFFDf3017f407fd2f3017f40 /* pipeline/PxcNpContactPrepShared.h */,
+ FFFDf3017fa87fd2f3017fa8 /* pipeline/PxcNpMemBlockPool.h */,
+ FFFDf30180107fd2f3018010 /* pipeline/PxcNpThreadContext.h */,
+ FFFDf30180787fd2f3018078 /* pipeline/PxcNpWorkUnit.h */,
+ FFFDf30180e07fd2f30180e0 /* pipeline/PxcRigidBody.h */,
+ FFFDf30181487fd2f3018148 /* utils/PxcScratchAllocator.h */,
+ FFFDf30181b07fd2f30181b0 /* utils/PxcThreadCoherentCache.h */,
);
name = "Common Includes";
sourceTree = SOURCE_ROOT;
};
- FFFBec410d307f8cec410d30 /* LowLevelAABB */ = {
+ FFFBf2854ea07fd2f2854ea0 /* LowLevelAABB */ = {
isa = PBXGroup;
children = (
- FFFBec18cd807f8cec18cd80 /* include */,
- FFFBec18cda87f8cec18cda8 /* src */,
+ FFFBf284ed607fd2f284ed60 /* include */,
+ FFFBf284ed887fd2f284ed88 /* src */,
);
name = "LowLevelAABB";
sourceTree = "<group>";
};
- FFFBec18cd807f8cec18cd80 /* include */ = {
+ FFFBf284ed607fd2f284ed60 /* include */ = {
isa = PBXGroup;
children = (
- FFFDec411b707f8cec411b70 /* BpAABBManagerTasks.h */,
- FFFDec411bd87f8cec411bd8 /* BpBroadPhase.h */,
- FFFDec411c407f8cec411c40 /* BpBroadPhaseUpdate.h */,
- FFFDec411ca87f8cec411ca8 /* BpSimpleAABBManager.h */,
+ FFFDf284f2807fd2f284f280 /* BpAABBManagerTasks.h */,
+ FFFDf284f2e87fd2f284f2e8 /* BpBroadPhase.h */,
+ FFFDf284f3507fd2f284f350 /* BpBroadPhaseUpdate.h */,
+ FFFDf284f3b87fd2f284f3b8 /* BpSimpleAABBManager.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
- FFFBec18cda87f8cec18cda8 /* src */ = {
+ FFFBf284ed887fd2f284ed88 /* src */ = {
isa = PBXGroup;
children = (
- FFFDeb9b18007f8ceb9b1800 /* BpBroadPhaseMBP.h */,
- FFFDeb9b18687f8ceb9b1868 /* BpBroadPhaseMBPCommon.h */,
- FFFDeb9b18d07f8ceb9b18d0 /* BpBroadPhaseSap.h */,
- FFFDeb9b19387f8ceb9b1938 /* BpBroadPhaseSapAux.h */,
- FFFDeb9b19a07f8ceb9b19a0 /* BpMBPTasks.h */,
- FFFDeb9b1a087f8ceb9b1a08 /* BpSAPTasks.h */,
- FFFDeb9b1a707f8ceb9b1a70 /* BpBroadPhase.cpp */,
- FFFDeb9b1ad87f8ceb9b1ad8 /* BpBroadPhaseMBP.cpp */,
- FFFDeb9b1b407f8ceb9b1b40 /* BpBroadPhaseSap.cpp */,
- FFFDeb9b1ba87f8ceb9b1ba8 /* BpBroadPhaseSapAux.cpp */,
- FFFDeb9b1c107f8ceb9b1c10 /* BpMBPTasks.cpp */,
- FFFDeb9b1c787f8ceb9b1c78 /* BpSAPTasks.cpp */,
- FFFDeb9b1ce07f8ceb9b1ce0 /* BpSimpleAABBManager.cpp */,
+ FFFDf3020c007fd2f3020c00 /* BpBroadPhaseMBP.h */,
+ FFFDf3020c687fd2f3020c68 /* BpBroadPhaseMBPCommon.h */,
+ FFFDf3020cd07fd2f3020cd0 /* BpBroadPhaseSap.h */,
+ FFFDf3020d387fd2f3020d38 /* BpBroadPhaseSapAux.h */,
+ FFFDf3020da07fd2f3020da0 /* BpMBPTasks.h */,
+ FFFDf3020e087fd2f3020e08 /* BpSAPTasks.h */,
+ FFFDf3020e707fd2f3020e70 /* BpBroadPhase.cpp */,
+ FFFDf3020ed87fd2f3020ed8 /* BpBroadPhaseMBP.cpp */,
+ FFFDf3020f407fd2f3020f40 /* BpBroadPhaseSap.cpp */,
+ FFFDf3020fa87fd2f3020fa8 /* BpBroadPhaseSapAux.cpp */,
+ FFFDf30210107fd2f3021010 /* BpMBPTasks.cpp */,
+ FFFDf30210787fd2f3021078 /* BpSAPTasks.cpp */,
+ FFFDf30210e07fd2f30210e0 /* BpSimpleAABBManager.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
- FFFBed82e9f07f8ced82e9f0 /* LowLevelDynamics */ = {
+ FFFBf29090e07fd2f29090e0 /* LowLevelDynamics */ = {
isa = PBXGroup;
children = (
- FFFBed8202b07f8ced8202b0 /* Dynamics Source */,
- FFFBed8202d87f8ced8202d8 /* Dynamics Includes */,
- FFFBed8203007f8ced820300 /* Dynamics Internal Includes */,
+ FFFBf29100707fd2f2910070 /* Dynamics Source */,
+ FFFBf29100987fd2f2910098 /* Dynamics Includes */,
+ FFFBf29100c07fd2f29100c0 /* Dynamics Internal Includes */,
);
name = "LowLevelDynamics";
sourceTree = "<group>";
};
- FFFBed8202b07f8ced8202b0 /* Dynamics Source */ = {
+ FFFBf29100707fd2f2910070 /* Dynamics Source */ = {
isa = PBXGroup;
children = (
- FFFDee0174007f8cee017400 /* DyArticulation.cpp */,
- FFFDee0174687f8cee017468 /* DyArticulationContactPrep.cpp */,
- FFFDee0174d07f8cee0174d0 /* DyArticulationContactPrepPF.cpp */,
- FFFDee0175387f8cee017538 /* DyArticulationHelper.cpp */,
- FFFDee0175a07f8cee0175a0 /* DyArticulationSIMD.cpp */,
- FFFDee0176087f8cee017608 /* DyArticulationScalar.cpp */,
- FFFDee0176707f8cee017670 /* DyConstraintPartition.cpp */,
- FFFDee0176d87f8cee0176d8 /* DyConstraintSetup.cpp */,
- FFFDee0177407f8cee017740 /* DyConstraintSetupBlock.cpp */,
- FFFDee0177a87f8cee0177a8 /* DyContactPrep.cpp */,
- FFFDee0178107f8cee017810 /* DyContactPrep4.cpp */,
- FFFDee0178787f8cee017878 /* DyContactPrep4PF.cpp */,
- FFFDee0178e07f8cee0178e0 /* DyContactPrepPF.cpp */,
- FFFDee0179487f8cee017948 /* DyDynamics.cpp */,
- FFFDee0179b07f8cee0179b0 /* DyFrictionCorrelation.cpp */,
- FFFDee017a187f8cee017a18 /* DyRigidBodyToSolverBody.cpp */,
- FFFDee017a807f8cee017a80 /* DySolverConstraints.cpp */,
- FFFDee017ae87f8cee017ae8 /* DySolverConstraintsBlock.cpp */,
- FFFDee017b507f8cee017b50 /* DySolverControl.cpp */,
- FFFDee017bb87f8cee017bb8 /* DySolverControlPF.cpp */,
- FFFDee017c207f8cee017c20 /* DySolverPFConstraints.cpp */,
- FFFDee017c887f8cee017c88 /* DySolverPFConstraintsBlock.cpp */,
- FFFDee017cf07f8cee017cf0 /* DyThreadContext.cpp */,
- FFFDee017d587f8cee017d58 /* DyThresholdTable.cpp */,
+ FFFDf3808e007fd2f3808e00 /* DyArticulation.cpp */,
+ FFFDf3808e687fd2f3808e68 /* DyArticulationContactPrep.cpp */,
+ FFFDf3808ed07fd2f3808ed0 /* DyArticulationContactPrepPF.cpp */,
+ FFFDf3808f387fd2f3808f38 /* DyArticulationHelper.cpp */,
+ FFFDf3808fa07fd2f3808fa0 /* DyArticulationSIMD.cpp */,
+ FFFDf38090087fd2f3809008 /* DyArticulationScalar.cpp */,
+ FFFDf38090707fd2f3809070 /* DyConstraintPartition.cpp */,
+ FFFDf38090d87fd2f38090d8 /* DyConstraintSetup.cpp */,
+ FFFDf38091407fd2f3809140 /* DyConstraintSetupBlock.cpp */,
+ FFFDf38091a87fd2f38091a8 /* DyContactPrep.cpp */,
+ FFFDf38092107fd2f3809210 /* DyContactPrep4.cpp */,
+ FFFDf38092787fd2f3809278 /* DyContactPrep4PF.cpp */,
+ FFFDf38092e07fd2f38092e0 /* DyContactPrepPF.cpp */,
+ FFFDf38093487fd2f3809348 /* DyDynamics.cpp */,
+ FFFDf38093b07fd2f38093b0 /* DyFrictionCorrelation.cpp */,
+ FFFDf38094187fd2f3809418 /* DyRigidBodyToSolverBody.cpp */,
+ FFFDf38094807fd2f3809480 /* DySolverConstraints.cpp */,
+ FFFDf38094e87fd2f38094e8 /* DySolverConstraintsBlock.cpp */,
+ FFFDf38095507fd2f3809550 /* DySolverControl.cpp */,
+ FFFDf38095b87fd2f38095b8 /* DySolverControlPF.cpp */,
+ FFFDf38096207fd2f3809620 /* DySolverPFConstraints.cpp */,
+ FFFDf38096887fd2f3809688 /* DySolverPFConstraintsBlock.cpp */,
+ FFFDf38096f07fd2f38096f0 /* DyThreadContext.cpp */,
+ FFFDf38097587fd2f3809758 /* DyThresholdTable.cpp */,
);
name = "Dynamics Source";
sourceTree = SOURCE_ROOT;
};
- FFFBed8202d87f8ced8202d8 /* Dynamics Includes */ = {
+ FFFBf29100987fd2f2910098 /* Dynamics Includes */ = {
isa = PBXGroup;
children = (
- FFFDed8317907f8ced831790 /* DyArticulation.h */,
- FFFDed8317f87f8ced8317f8 /* DyConstraint.h */,
- FFFDed8318607f8ced831860 /* DyConstraintWriteBack.h */,
- FFFDed8318c87f8ced8318c8 /* DyContext.h */,
- FFFDed8319307f8ced831930 /* DySleepingConfigulation.h */,
- FFFDed8319987f8ced831998 /* DyThresholdTable.h */,
+ FFFDf29116f07fd2f29116f0 /* DyArticulation.h */,
+ FFFDf29117587fd2f2911758 /* DyConstraint.h */,
+ FFFDf29117c07fd2f29117c0 /* DyConstraintWriteBack.h */,
+ FFFDf29118287fd2f2911828 /* DyContext.h */,
+ FFFDf29118907fd2f2911890 /* DySleepingConfigulation.h */,
+ FFFDf29118f87fd2f29118f8 /* DyThresholdTable.h */,
);
name = "Dynamics Includes";
sourceTree = SOURCE_ROOT;
};
- FFFBed8203007f8ced820300 /* Dynamics Internal Includes */ = {
+ FFFBf29100c07fd2f29100c0 /* Dynamics Internal Includes */ = {
isa = PBXGroup;
children = (
- FFFDee018c007f8cee018c00 /* DyArticulationContactPrep.h */,
- FFFDee018c687f8cee018c68 /* DyArticulationFnsDebug.h */,
- FFFDee018cd07f8cee018cd0 /* DyArticulationFnsScalar.h */,
- FFFDee018d387f8cee018d38 /* DyArticulationFnsSimd.h */,
- FFFDee018da07f8cee018da0 /* DyArticulationHelper.h */,
- FFFDee018e087f8cee018e08 /* DyArticulationPImpl.h */,
- FFFDee018e707f8cee018e70 /* DyArticulationReference.h */,
- FFFDee018ed87f8cee018ed8 /* DyArticulationScalar.h */,
- FFFDee018f407f8cee018f40 /* DyArticulationUtils.h */,
- FFFDee018fa87f8cee018fa8 /* DyBodyCoreIntegrator.h */,
- FFFDee0190107f8cee019010 /* DyConstraintPartition.h */,
- FFFDee0190787f8cee019078 /* DyConstraintPrep.h */,
- FFFDee0190e07f8cee0190e0 /* DyContactPrep.h */,
- FFFDee0191487f8cee019148 /* DyContactPrepShared.h */,
- FFFDee0191b07f8cee0191b0 /* DyContactReduction.h */,
- FFFDee0192187f8cee019218 /* DyCorrelationBuffer.h */,
- FFFDee0192807f8cee019280 /* DyDynamics.h */,
- FFFDee0192e87f8cee0192e8 /* DyFrictionPatch.h */,
- FFFDee0193507f8cee019350 /* DyFrictionPatchStreamPair.h */,
- FFFDee0193b87f8cee0193b8 /* DySolverBody.h */,
- FFFDee0194207f8cee019420 /* DySolverConstraint1D.h */,
- FFFDee0194887f8cee019488 /* DySolverConstraint1D4.h */,
- FFFDee0194f07f8cee0194f0 /* DySolverConstraintDesc.h */,
- FFFDee0195587f8cee019558 /* DySolverConstraintExtShared.h */,
- FFFDee0195c07f8cee0195c0 /* DySolverConstraintTypes.h */,
- FFFDee0196287f8cee019628 /* DySolverConstraintsShared.h */,
- FFFDee0196907f8cee019690 /* DySolverContact.h */,
- FFFDee0196f87f8cee0196f8 /* DySolverContact4.h */,
- FFFDee0197607f8cee019760 /* DySolverContactPF.h */,
- FFFDee0197c87f8cee0197c8 /* DySolverContactPF4.h */,
- FFFDee0198307f8cee019830 /* DySolverContext.h */,
- FFFDee0198987f8cee019898 /* DySolverControl.h */,
- FFFDee0199007f8cee019900 /* DySolverControlPF.h */,
- FFFDee0199687f8cee019968 /* DySolverCore.h */,
- FFFDee0199d07f8cee0199d0 /* DySolverExt.h */,
- FFFDee019a387f8cee019a38 /* DySpatial.h */,
- FFFDee019aa07f8cee019aa0 /* DyThreadContext.h */,
+ FFFDf380aa007fd2f380aa00 /* DyArticulationContactPrep.h */,
+ FFFDf380aa687fd2f380aa68 /* DyArticulationFnsDebug.h */,
+ FFFDf380aad07fd2f380aad0 /* DyArticulationFnsScalar.h */,
+ FFFDf380ab387fd2f380ab38 /* DyArticulationFnsSimd.h */,
+ FFFDf380aba07fd2f380aba0 /* DyArticulationHelper.h */,
+ FFFDf380ac087fd2f380ac08 /* DyArticulationPImpl.h */,
+ FFFDf380ac707fd2f380ac70 /* DyArticulationReference.h */,
+ FFFDf380acd87fd2f380acd8 /* DyArticulationScalar.h */,
+ FFFDf380ad407fd2f380ad40 /* DyArticulationUtils.h */,
+ FFFDf380ada87fd2f380ada8 /* DyBodyCoreIntegrator.h */,
+ FFFDf380ae107fd2f380ae10 /* DyConstraintPartition.h */,
+ FFFDf380ae787fd2f380ae78 /* DyConstraintPrep.h */,
+ FFFDf380aee07fd2f380aee0 /* DyContactPrep.h */,
+ FFFDf380af487fd2f380af48 /* DyContactPrepShared.h */,
+ FFFDf380afb07fd2f380afb0 /* DyContactReduction.h */,
+ FFFDf380b0187fd2f380b018 /* DyCorrelationBuffer.h */,
+ FFFDf380b0807fd2f380b080 /* DyDynamics.h */,
+ FFFDf380b0e87fd2f380b0e8 /* DyFrictionPatch.h */,
+ FFFDf380b1507fd2f380b150 /* DyFrictionPatchStreamPair.h */,
+ FFFDf380b1b87fd2f380b1b8 /* DySolverBody.h */,
+ FFFDf380b2207fd2f380b220 /* DySolverConstraint1D.h */,
+ FFFDf380b2887fd2f380b288 /* DySolverConstraint1D4.h */,
+ FFFDf380b2f07fd2f380b2f0 /* DySolverConstraintDesc.h */,
+ FFFDf380b3587fd2f380b358 /* DySolverConstraintExtShared.h */,
+ FFFDf380b3c07fd2f380b3c0 /* DySolverConstraintTypes.h */,
+ FFFDf380b4287fd2f380b428 /* DySolverConstraintsShared.h */,
+ FFFDf380b4907fd2f380b490 /* DySolverContact.h */,
+ FFFDf380b4f87fd2f380b4f8 /* DySolverContact4.h */,
+ FFFDf380b5607fd2f380b560 /* DySolverContactPF.h */,
+ FFFDf380b5c87fd2f380b5c8 /* DySolverContactPF4.h */,
+ FFFDf380b6307fd2f380b630 /* DySolverContext.h */,
+ FFFDf380b6987fd2f380b698 /* DySolverControl.h */,
+ FFFDf380b7007fd2f380b700 /* DySolverControlPF.h */,
+ FFFDf380b7687fd2f380b768 /* DySolverCore.h */,
+ FFFDf380b7d07fd2f380b7d0 /* DySolverExt.h */,
+ FFFDf380b8387fd2f380b838 /* DySpatial.h */,
+ FFFDf380b8a07fd2f380b8a0 /* DyThreadContext.h */,
);
name = "Dynamics Internal Includes";
sourceTree = SOURCE_ROOT;
};
- FFFBec722a207f8cec722a20 /* LowLevelCloth */ = {
+ FFFBf188ae307fd2f188ae30 /* LowLevelCloth */ = {
isa = PBXGroup;
children = (
- FFFBec72fde07f8cec72fde0 /* include */,
- FFFBec72fe087f8cec72fe08 /* src */,
+ FFFBf188d8e07fd2f188d8e0 /* include */,
+ FFFBf188d9087fd2f188d908 /* src */,
);
name = "LowLevelCloth";
sourceTree = "<group>";
};
- FFFBec72fde07f8cec72fde0 /* include */ = {
+ FFFBf188d8e07fd2f188d8e0 /* include */ = {
isa = PBXGroup;
children = (
- FFFDec7266e07f8cec7266e0 /* Cloth.h */,
- FFFDec7267487f8cec726748 /* Fabric.h */,
- FFFDec7267b07f8cec7267b0 /* Factory.h */,
- FFFDec7268187f8cec726818 /* PhaseConfig.h */,
- FFFDec7268807f8cec726880 /* Range.h */,
- FFFDec7268e87f8cec7268e8 /* Solver.h */,
- FFFDec7269507f8cec726950 /* Types.h */,
+ FFFDf1b114007fd2f1b11400 /* Cloth.h */,
+ FFFDf1b114687fd2f1b11468 /* Fabric.h */,
+ FFFDf1b114d07fd2f1b114d0 /* Factory.h */,
+ FFFDf1b115387fd2f1b11538 /* PhaseConfig.h */,
+ FFFDf1b115a07fd2f1b115a0 /* Range.h */,
+ FFFDf1b116087fd2f1b11608 /* Solver.h */,
+ FFFDf1b116707fd2f1b11670 /* Types.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
- FFFBec72fe087f8cec72fe08 /* src */ = {
+ FFFBf188d9087fd2f188d908 /* src */ = {
isa = PBXGroup;
children = (
- FFFDed031e007f8ced031e00 /* Allocator.h */,
- FFFDed031e687f8ced031e68 /* Array.h */,
- FFFDed031ed07f8ced031ed0 /* BoundingBox.h */,
- FFFDed031f387f8ced031f38 /* ClothBase.h */,
- FFFDed031fa07f8ced031fa0 /* ClothImpl.h */,
- FFFDed0320087f8ced032008 /* IndexPair.h */,
- FFFDed0320707f8ced032070 /* IterationState.h */,
- FFFDed0320d87f8ced0320d8 /* MovingAverage.h */,
- FFFDed0321407f8ced032140 /* PointInterpolator.h */,
- FFFDed0321a87f8ced0321a8 /* Simd.h */,
- FFFDed0322107f8ced032210 /* Simd4f.h */,
- FFFDed0322787f8ced032278 /* Simd4i.h */,
- FFFDed0322e07f8ced0322e0 /* SimdTypes.h */,
- FFFDed0323487f8ced032348 /* StackAllocator.h */,
- FFFDed0323b07f8ced0323b0 /* SwCloth.h */,
- FFFDed0324187f8ced032418 /* SwClothData.h */,
- FFFDed0324807f8ced032480 /* SwCollision.h */,
- FFFDed0324e87f8ced0324e8 /* SwCollisionHelpers.h */,
- FFFDed0325507f8ced032550 /* SwFabric.h */,
- FFFDed0325b87f8ced0325b8 /* SwFactory.h */,
- FFFDed0326207f8ced032620 /* SwInterCollision.h */,
- FFFDed0326887f8ced032688 /* SwSelfCollision.h */,
- FFFDed0326f07f8ced0326f0 /* SwSolver.h */,
- FFFDed0327587f8ced032758 /* SwSolverKernel.h */,
- FFFDed0327c07f8ced0327c0 /* TripletScheduler.h */,
- FFFDed0328287f8ced032828 /* Vec4T.h */,
- FFFDed0328907f8ced032890 /* Allocator.cpp */,
- FFFDed0328f87f8ced0328f8 /* Factory.cpp */,
- FFFDed0329607f8ced032960 /* PhaseConfig.cpp */,
- FFFDed0329c87f8ced0329c8 /* SwCloth.cpp */,
- FFFDed032a307f8ced032a30 /* SwClothData.cpp */,
- FFFDed032a987f8ced032a98 /* SwCollision.cpp */,
- FFFDed032b007f8ced032b00 /* SwFabric.cpp */,
- FFFDed032b687f8ced032b68 /* SwFactory.cpp */,
- FFFDed032bd07f8ced032bd0 /* SwInterCollision.cpp */,
- FFFDed032c387f8ced032c38 /* SwSelfCollision.cpp */,
- FFFDed032ca07f8ced032ca0 /* SwSolver.cpp */,
- FFFDed032d087f8ced032d08 /* SwSolverKernel.cpp */,
- FFFDed032d707f8ced032d70 /* TripletScheduler.cpp */,
+ FFFDf11b2e007fd2f11b2e00 /* Allocator.h */,
+ FFFDf11b2e687fd2f11b2e68 /* Array.h */,
+ FFFDf11b2ed07fd2f11b2ed0 /* BoundingBox.h */,
+ FFFDf11b2f387fd2f11b2f38 /* ClothBase.h */,
+ FFFDf11b2fa07fd2f11b2fa0 /* ClothImpl.h */,
+ FFFDf11b30087fd2f11b3008 /* IndexPair.h */,
+ FFFDf11b30707fd2f11b3070 /* IterationState.h */,
+ FFFDf11b30d87fd2f11b30d8 /* MovingAverage.h */,
+ FFFDf11b31407fd2f11b3140 /* PointInterpolator.h */,
+ FFFDf11b31a87fd2f11b31a8 /* Simd.h */,
+ FFFDf11b32107fd2f11b3210 /* Simd4f.h */,
+ FFFDf11b32787fd2f11b3278 /* Simd4i.h */,
+ FFFDf11b32e07fd2f11b32e0 /* SimdTypes.h */,
+ FFFDf11b33487fd2f11b3348 /* StackAllocator.h */,
+ FFFDf11b33b07fd2f11b33b0 /* SwCloth.h */,
+ FFFDf11b34187fd2f11b3418 /* SwClothData.h */,
+ FFFDf11b34807fd2f11b3480 /* SwCollision.h */,
+ FFFDf11b34e87fd2f11b34e8 /* SwCollisionHelpers.h */,
+ FFFDf11b35507fd2f11b3550 /* SwFabric.h */,
+ FFFDf11b35b87fd2f11b35b8 /* SwFactory.h */,
+ FFFDf11b36207fd2f11b3620 /* SwInterCollision.h */,
+ FFFDf11b36887fd2f11b3688 /* SwSelfCollision.h */,
+ FFFDf11b36f07fd2f11b36f0 /* SwSolver.h */,
+ FFFDf11b37587fd2f11b3758 /* SwSolverKernel.h */,
+ FFFDf11b37c07fd2f11b37c0 /* TripletScheduler.h */,
+ FFFDf11b38287fd2f11b3828 /* Vec4T.h */,
+ FFFDf11b38907fd2f11b3890 /* Allocator.cpp */,
+ FFFDf11b38f87fd2f11b38f8 /* Factory.cpp */,
+ FFFDf11b39607fd2f11b3960 /* PhaseConfig.cpp */,
+ FFFDf11b39c87fd2f11b39c8 /* SwCloth.cpp */,
+ FFFDf11b3a307fd2f11b3a30 /* SwClothData.cpp */,
+ FFFDf11b3a987fd2f11b3a98 /* SwCollision.cpp */,
+ FFFDf11b3b007fd2f11b3b00 /* SwFabric.cpp */,
+ FFFDf11b3b687fd2f11b3b68 /* SwFactory.cpp */,
+ FFFDf11b3bd07fd2f11b3bd0 /* SwInterCollision.cpp */,
+ FFFDf11b3c387fd2f11b3c38 /* SwSelfCollision.cpp */,
+ FFFDf11b3ca07fd2f11b3ca0 /* SwSolver.cpp */,
+ FFFDf11b3d087fd2f11b3d08 /* SwSolverKernel.cpp */,
+ FFFDf11b3d707fd2f11b3d70 /* TripletScheduler.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
- FFFBed8493f07f8ced8493f0 /* LowLevelParticles */ = {
+ FFFBf28619307fd2f2861930 /* LowLevelParticles */ = {
isa = PBXGroup;
children = (
- FFFBed84c0707f8ced84c070 /* include */,
- FFFBed84c0987f8ced84c098 /* src */,
+ FFFBf285ea807fd2f285ea80 /* include */,
+ FFFBf285eaa87fd2f285eaa8 /* src */,
);
name = "LowLevelParticles";
sourceTree = "<group>";
};
- FFFBed84c0707f8ced84c070 /* include */ = {
+ FFFBf285ea807fd2f285ea80 /* include */ = {
isa = PBXGroup;
children = (
- FFFDee01da007f8cee01da00 /* PtBodyTransformVault.h */,
- FFFDee01da687f8cee01da68 /* PtContext.h */,
- FFFDee01dad07f8cee01dad0 /* PtGridCellVector.h */,
- FFFDee01db387f8cee01db38 /* PtParticle.h */,
- FFFDee01dba07f8cee01dba0 /* PtParticleContactManagerStream.h */,
- FFFDee01dc087f8cee01dc08 /* PtParticleData.h */,
- FFFDee01dc707f8cee01dc70 /* PtParticleShape.h */,
- FFFDee01dcd87f8cee01dcd8 /* PtParticleSystemCore.h */,
- FFFDee01dd407f8cee01dd40 /* PtParticleSystemFlags.h */,
- FFFDee01dda87f8cee01dda8 /* PtParticleSystemSim.h */,
+ FFFDf30256007fd2f3025600 /* PtBodyTransformVault.h */,
+ FFFDf30256687fd2f3025668 /* PtContext.h */,
+ FFFDf30256d07fd2f30256d0 /* PtGridCellVector.h */,
+ FFFDf30257387fd2f3025738 /* PtParticle.h */,
+ FFFDf30257a07fd2f30257a0 /* PtParticleContactManagerStream.h */,
+ FFFDf30258087fd2f3025808 /* PtParticleData.h */,
+ FFFDf30258707fd2f3025870 /* PtParticleShape.h */,
+ FFFDf30258d87fd2f30258d8 /* PtParticleSystemCore.h */,
+ FFFDf30259407fd2f3025940 /* PtParticleSystemFlags.h */,
+ FFFDf30259a87fd2f30259a8 /* PtParticleSystemSim.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
- FFFBed84c0987f8ced84c098 /* src */ = {
+ FFFBf285eaa87fd2f285eaa8 /* src */ = {
isa = PBXGroup;
children = (
- FFFDee022a007f8cee022a00 /* PtBatcher.h */,
- FFFDee022a687f8cee022a68 /* PtCollision.h */,
- FFFDee022ad07f8cee022ad0 /* PtCollisionData.h */,
- FFFDee022b387f8cee022b38 /* PtCollisionHelper.h */,
- FFFDee022ba07f8cee022ba0 /* PtCollisionMethods.h */,
- FFFDee022c087f8cee022c08 /* PtCollisionParameters.h */,
- FFFDee022c707f8cee022c70 /* PtConfig.h */,
- FFFDee022cd87f8cee022cd8 /* PtConstants.h */,
- FFFDee022d407f8cee022d40 /* PtContextCpu.h */,
- FFFDee022da87f8cee022da8 /* PtDynamicHelper.h */,
- FFFDee022e107f8cee022e10 /* PtDynamics.h */,
- FFFDee022e787f8cee022e78 /* PtDynamicsKernels.h */,
- FFFDee022ee07f8cee022ee0 /* PtDynamicsParameters.h */,
- FFFDee022f487f8cee022f48 /* PtDynamicsTempBuffers.h */,
- FFFDee022fb07f8cee022fb0 /* PtHeightFieldAabbTest.h */,
- FFFDee0230187f8cee023018 /* PtPacketSections.h */,
- FFFDee0230807f8cee023080 /* PtParticleCell.h */,
- FFFDee0230e87f8cee0230e8 /* PtParticleOpcodeCache.h */,
- FFFDee0231507f8cee023150 /* PtParticleShapeCpu.h */,
- FFFDee0231b87f8cee0231b8 /* PtParticleSystemSimCpu.h */,
- FFFDee0232207f8cee023220 /* PtSpatialHash.h */,
- FFFDee0232887f8cee023288 /* PtSpatialHashHelper.h */,
- FFFDee0232f07f8cee0232f0 /* PtTwoWayData.h */,
- FFFDee0233587f8cee023358 /* PtBatcher.cpp */,
- FFFDee0233c07f8cee0233c0 /* PtBodyTransformVault.cpp */,
- FFFDee0234287f8cee023428 /* PtCollision.cpp */,
- FFFDee0234907f8cee023490 /* PtCollisionBox.cpp */,
- FFFDee0234f87f8cee0234f8 /* PtCollisionCapsule.cpp */,
- FFFDee0235607f8cee023560 /* PtCollisionConvex.cpp */,
- FFFDee0235c87f8cee0235c8 /* PtCollisionMesh.cpp */,
- FFFDee0236307f8cee023630 /* PtCollisionPlane.cpp */,
- FFFDee0236987f8cee023698 /* PtCollisionSphere.cpp */,
- FFFDee0237007f8cee023700 /* PtContextCpu.cpp */,
- FFFDee0237687f8cee023768 /* PtDynamics.cpp */,
- FFFDee0237d07f8cee0237d0 /* PtParticleData.cpp */,
- FFFDee0238387f8cee023838 /* PtParticleShapeCpu.cpp */,
- FFFDee0238a07f8cee0238a0 /* PtParticleSystemSimCpu.cpp */,
- FFFDee0239087f8cee023908 /* PtSpatialHash.cpp */,
- FFFDee0239707f8cee023970 /* PtSpatialLocalHash.cpp */,
+ FFFDf302b4007fd2f302b400 /* PtBatcher.h */,
+ FFFDf302b4687fd2f302b468 /* PtCollision.h */,
+ FFFDf302b4d07fd2f302b4d0 /* PtCollisionData.h */,
+ FFFDf302b5387fd2f302b538 /* PtCollisionHelper.h */,
+ FFFDf302b5a07fd2f302b5a0 /* PtCollisionMethods.h */,
+ FFFDf302b6087fd2f302b608 /* PtCollisionParameters.h */,
+ FFFDf302b6707fd2f302b670 /* PtConfig.h */,
+ FFFDf302b6d87fd2f302b6d8 /* PtConstants.h */,
+ FFFDf302b7407fd2f302b740 /* PtContextCpu.h */,
+ FFFDf302b7a87fd2f302b7a8 /* PtDynamicHelper.h */,
+ FFFDf302b8107fd2f302b810 /* PtDynamics.h */,
+ FFFDf302b8787fd2f302b878 /* PtDynamicsKernels.h */,
+ FFFDf302b8e07fd2f302b8e0 /* PtDynamicsParameters.h */,
+ FFFDf302b9487fd2f302b948 /* PtDynamicsTempBuffers.h */,
+ FFFDf302b9b07fd2f302b9b0 /* PtHeightFieldAabbTest.h */,
+ FFFDf302ba187fd2f302ba18 /* PtPacketSections.h */,
+ FFFDf302ba807fd2f302ba80 /* PtParticleCell.h */,
+ FFFDf302bae87fd2f302bae8 /* PtParticleOpcodeCache.h */,
+ FFFDf302bb507fd2f302bb50 /* PtParticleShapeCpu.h */,
+ FFFDf302bbb87fd2f302bbb8 /* PtParticleSystemSimCpu.h */,
+ FFFDf302bc207fd2f302bc20 /* PtSpatialHash.h */,
+ FFFDf302bc887fd2f302bc88 /* PtSpatialHashHelper.h */,
+ FFFDf302bcf07fd2f302bcf0 /* PtTwoWayData.h */,
+ FFFDf302bd587fd2f302bd58 /* PtBatcher.cpp */,
+ FFFDf302bdc07fd2f302bdc0 /* PtBodyTransformVault.cpp */,
+ FFFDf302be287fd2f302be28 /* PtCollision.cpp */,
+ FFFDf302be907fd2f302be90 /* PtCollisionBox.cpp */,
+ FFFDf302bef87fd2f302bef8 /* PtCollisionCapsule.cpp */,
+ FFFDf302bf607fd2f302bf60 /* PtCollisionConvex.cpp */,
+ FFFDf302bfc87fd2f302bfc8 /* PtCollisionMesh.cpp */,
+ FFFDf302c0307fd2f302c030 /* PtCollisionPlane.cpp */,
+ FFFDf302c0987fd2f302c098 /* PtCollisionSphere.cpp */,
+ FFFDf302c1007fd2f302c100 /* PtContextCpu.cpp */,
+ FFFDf302c1687fd2f302c168 /* PtDynamics.cpp */,
+ FFFDf302c1d07fd2f302c1d0 /* PtParticleData.cpp */,
+ FFFDf302c2387fd2f302c238 /* PtParticleShapeCpu.cpp */,
+ FFFDf302c2a07fd2f302c2a0 /* PtParticleSystemSimCpu.cpp */,
+ FFFDf302c3087fd2f302c308 /* PtSpatialHash.cpp */,
+ FFFDf302c3707fd2f302c370 /* PtSpatialLocalHash.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
- FFFBec48c6307f8cec48c630 /* PxTask */ = {
+ FFFBf28f6e807fd2f28f6e80 /* PxTask */ = {
isa = PBXGroup;
children = (
- FFFBeb4076d07f8ceb4076d0 /* include */,
- FFFBeb4076f87f8ceb4076f8 /* src */,
+ FFFBf28f5b007fd2f28f5b00 /* include */,
+ FFFBf28f5b287fd2f28f5b28 /* src */,
);
name = "PxTask";
sourceTree = "<group>";
};
- FFFBeb4076d07f8ceb4076d0 /* include */ = {
+ FFFBf28f5b007fd2f28f5b00 /* include */ = {
isa = PBXGroup;
children = (
- FFFDeb42d3b07f8ceb42d3b0 /* PxCpuDispatcher.h */,
- FFFDeb42d4187f8ceb42d418 /* PxGpuDispatcher.h */,
- FFFDeb42d4807f8ceb42d480 /* PxGpuTask.h */,
- FFFDeb42d4e87f8ceb42d4e8 /* PxTask.h */,
- FFFDeb42d5507f8ceb42d550 /* PxTaskDefine.h */,
- FFFDeb42d5b87f8ceb42d5b8 /* PxTaskManager.h */,
+ FFFDf2bf77e07fd2f2bf77e0 /* PxCpuDispatcher.h */,
+ FFFDf2bf78487fd2f2bf7848 /* PxGpuDispatcher.h */,
+ FFFDf2bf78b07fd2f2bf78b0 /* PxGpuTask.h */,
+ FFFDf2bf79187fd2f2bf7918 /* PxTask.h */,
+ FFFDf2bf79807fd2f2bf7980 /* PxTaskDefine.h */,
+ FFFDf2bf79e87fd2f2bf79e8 /* PxTaskManager.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
- FFFBeb4076f87f8ceb4076f8 /* src */ = {
+ FFFBf28f5b287fd2f28f5b28 /* src */ = {
isa = PBXGroup;
children = (
- FFFDeb400b407f8ceb400b40 /* src/TaskManager.cpp */,
+ FFFDf2bf6de07fd2f2bf6de0 /* src/TaskManager.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
- FFFBeda901707f8ceda90170 /* PsFastXml */ = {
+ FFFBf2d23c207fd2f2d23c20 /* PsFastXml */ = {
isa = PBXGroup;
children = (
- FFFBeda907507f8ceda90750 /* include */,
- FFFBeda907787f8ceda90778 /* src */,
+ FFFBf2d241d07fd2f2d241d0 /* include */,
+ FFFBf2d241f87fd2f2d241f8 /* src */,
);
name = "PsFastXml";
sourceTree = "<group>";
};
- FFFBeda907507f8ceda90750 /* include */ = {
+ FFFBf2d241d07fd2f2d241d0 /* include */ = {
isa = PBXGroup;
children = (
- FFFDeda8b5d07f8ceda8b5d0 /* PsFastXml.h */,
+ FFFDf2d243607fd2f2d24360 /* PsFastXml.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
- FFFBeda907787f8ceda90778 /* src */ = {
+ FFFBf2d241f87fd2f2d241f8 /* src */ = {
isa = PBXGroup;
children = (
- FFFDeda8b6d07f8ceda8b6d0 /* PsFastXml.cpp */,
+ FFFDf2d244607fd2f2d24460 /* PsFastXml.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
@@ -5011,61 +5011,61 @@
/* End PBXGroup section */
/* Begin PBXNativeTarget section */
- FFFAeda934e07f8ceda934e0 /* PhysX */ = {
+ FFFAf2d231d07fd2f2d231d0 /* PhysX */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF6eda934e07f8ceda934e0 /* Build configuration list for PBXNativeTarget "PhysX" */;
+ buildConfigurationList = FFF6f2d231d07fd2f2d231d0 /* Build configuration list for PBXNativeTarget "PhysX" */;
buildPhases = (
- FFF2eda934e07f8ceda934e0,
- FFF8eda934e07f8ceda934e0,
- FFFCeda934e07f8ceda934e0,
+ FFF2f2d231d07fd2f2d231d0,
+ FFF8f2d231d07fd2f2d231d0,
+ FFFCf2d231d07fd2f2d231d0,
);
buildRules = (
);
dependencies = (
- FFF4eda9c6c07f8ceda9c6c0, /* LowLevel */
- FFF4eda9f1907f8ceda9f190, /* LowLevelAABB */
- FFF4eda9f2507f8ceda9f250, /* LowLevelCloth */
- FFF4eda9f1f07f8ceda9f1f0, /* LowLevelDynamics */
- FFF4eda9bf707f8ceda9bf70, /* LowLevelParticles */
- FFF4eda9c6607f8ceda9c660, /* PhysXCommon */
- FFF4eda938007f8ceda93800, /* PxFoundation */
- FFF4eda934b07f8ceda934b0, /* PxPvdSDK */
- FFF4eda9c0b07f8ceda9c0b0, /* PxTask */
- FFF4eda9bfd07f8ceda9bfd0, /* SceneQuery */
- FFF4eda9c0307f8ceda9c030, /* SimulationController */
+ FFF4f2d4ca507fd2f2d4ca50, /* LowLevel */
+ FFF4f2d50a707fd2f2d50a70, /* LowLevelAABB */
+ FFF4f2d50b307fd2f2d50b30, /* LowLevelCloth */
+ FFF4f2d50ad07fd2f2d50ad0, /* LowLevelDynamics */
+ FFF4f2d4cd407fd2f2d4cd40, /* LowLevelParticles */
+ FFF4f2d4dbf07fd2f2d4dbf0, /* PhysXCommon */
+ FFF4f2d234f07fd2f2d234f0, /* PxFoundation */
+ FFF4f2d22ac07fd2f2d22ac0, /* PxPvdSDK */
+ FFF4f2d4ce307fd2f2d4ce30, /* PxTask */
+ FFF4f2d4cda07fd2f2d4cda0, /* SceneQuery */
+ FFF4f2d4ce007fd2f2d4ce00, /* SimulationController */
);
name = "PhysX";
productName = "PhysX";
- productReference = FFFDeda934e07f8ceda934e0 /* PhysX */;
+ productReference = FFFDf2d231d07fd2f2d231d0 /* PhysX */;
productType = "com.apple.product-type.library.static";
};
- FFFAeda9c0c07f8ceda9c0c0 /* PhysXCharacterKinematic */ = {
+ FFFAf2d50f307fd2f2d50f30 /* PhysXCharacterKinematic */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF6eda9c0c07f8ceda9c0c0 /* Build configuration list for PBXNativeTarget "PhysXCharacterKinematic" */;
+ buildConfigurationList = FFF6f2d50f307fd2f2d50f30 /* Build configuration list for PBXNativeTarget "PhysXCharacterKinematic" */;
buildPhases = (
- FFF2eda9c0c07f8ceda9c0c0,
- FFF8eda9c0c07f8ceda9c0c0,
- FFFCeda9c0c07f8ceda9c0c0,
+ FFF2f2d50f307fd2f2d50f30,
+ FFF8f2d50f307fd2f2d50f30,
+ FFFCf2d50f307fd2f2d50f30,
);
buildRules = (
);
dependencies = (
- FFF4eda9dbc07f8ceda9dbc0, /* PhysXCommon */
- FFF4edaa27a07f8cedaa27a0, /* PhysXExtensions */
- FFF4edaa19707f8cedaa1970, /* PxFoundation */
+ FFF4f2d522007fd2f2d52200, /* PhysXCommon */
+ FFF4f2d53c007fd2f2d53c00, /* PhysXExtensions */
+ FFF4f2d52da07fd2f2d52da0, /* PxFoundation */
);
name = "PhysXCharacterKinematic";
productName = "PhysXCharacterKinematic";
- productReference = FFFDeda9c0c07f8ceda9c0c0 /* PhysXCharacterKinematic */;
+ productReference = FFFDf2d50f307fd2f2d50f30 /* PhysXCharacterKinematic */;
productType = "com.apple.product-type.library.static";
};
- FFFAeda9d5107f8ceda9d510 /* PhysXVehicle */ = {
+ FFFAf2d4e3107fd2f2d4e310 /* PhysXVehicle */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF6eda9d5107f8ceda9d510 /* Build configuration list for PBXNativeTarget "PhysXVehicle" */;
+ buildConfigurationList = FFF6f2d4e3107fd2f2d4e310 /* Build configuration list for PBXNativeTarget "PhysXVehicle" */;
buildPhases = (
- FFF2eda9d5107f8ceda9d510,
- FFF8eda9d5107f8ceda9d510,
- FFFCeda9d5107f8ceda9d510,
+ FFF2f2d4e3107fd2f2d4e310,
+ FFF8f2d4e3107fd2f2d4e310,
+ FFFCf2d4e3107fd2f2d4e310,
);
buildRules = (
);
@@ -5073,34 +5073,34 @@
);
name = "PhysXVehicle";
productName = "PhysXVehicle";
- productReference = FFFDeda9d5107f8ceda9d510 /* PhysXVehicle */;
+ productReference = FFFDf2d4e3107fd2f2d4e310 /* PhysXVehicle */;
productType = "com.apple.product-type.library.static";
};
- FFFAedaae9b07f8cedaae9b0 /* PhysXExtensions */ = {
+ FFFAf2d5f8507fd2f2d5f850 /* PhysXExtensions */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF6edaae9b07f8cedaae9b0 /* Build configuration list for PBXNativeTarget "PhysXExtensions" */;
+ buildConfigurationList = FFF6f2d5f8507fd2f2d5f850 /* Build configuration list for PBXNativeTarget "PhysXExtensions" */;
buildPhases = (
- FFF2edaae9b07f8cedaae9b0,
- FFF8edaae9b07f8cedaae9b0,
- FFFCedaae9b07f8cedaae9b0,
+ FFF2f2d5f8507fd2f2d5f850,
+ FFF8f2d5f8507fd2f2d5f850,
+ FFFCf2d5f8507fd2f2d5f850,
);
buildRules = (
);
dependencies = (
- FFF4edaae0807f8cedaae080, /* PsFastXml */
+ FFF4f2d5ef207fd2f2d5ef20, /* PsFastXml */
);
name = "PhysXExtensions";
productName = "PhysXExtensions";
- productReference = FFFDedaae9b07f8cedaae9b0 /* PhysXExtensions */;
+ productReference = FFFDf2d5f8507fd2f2d5f850 /* PhysXExtensions */;
productType = "com.apple.product-type.library.static";
};
- FFFAedabfac07f8cedabfac0 /* SceneQuery */ = {
+ FFFAf2d709607fd2f2d70960 /* SceneQuery */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF6edabfac07f8cedabfac0 /* Build configuration list for PBXNativeTarget "SceneQuery" */;
+ buildConfigurationList = FFF6f2d709607fd2f2d70960 /* Build configuration list for PBXNativeTarget "SceneQuery" */;
buildPhases = (
- FFF2edabfac07f8cedabfac0,
- FFF8edabfac07f8cedabfac0,
- FFFCedabfac07f8cedabfac0,
+ FFF2f2d709607fd2f2d70960,
+ FFF8f2d709607fd2f2d70960,
+ FFFCf2d709607fd2f2d70960,
);
buildRules = (
);
@@ -5108,16 +5108,16 @@
);
name = "SceneQuery";
productName = "SceneQuery";
- productReference = FFFDedabfac07f8cedabfac0 /* SceneQuery */;
+ productReference = FFFDf2d709607fd2f2d70960 /* SceneQuery */;
productType = "com.apple.product-type.library.static";
};
- FFFAedac3f107f8cedac3f10 /* SimulationController */ = {
+ FFFAf2d74db07fd2f2d74db0 /* SimulationController */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF6edac3f107f8cedac3f10 /* Build configuration list for PBXNativeTarget "SimulationController" */;
+ buildConfigurationList = FFF6f2d74db07fd2f2d74db0 /* Build configuration list for PBXNativeTarget "SimulationController" */;
buildPhases = (
- FFF2edac3f107f8cedac3f10,
- FFF8edac3f107f8cedac3f10,
- FFFCedac3f107f8cedac3f10,
+ FFF2f2d74db07fd2f2d74db0,
+ FFF8f2d74db07fd2f2d74db0,
+ FFFCf2d74db07fd2f2d74db0,
);
buildRules = (
);
@@ -5125,54 +5125,54 @@
);
name = "SimulationController";
productName = "SimulationController";
- productReference = FFFDedac3f107f8cedac3f10 /* SimulationController */;
+ productReference = FFFDf2d74db07fd2f2d74db0 /* SimulationController */;
productType = "com.apple.product-type.library.static";
};
- FFFAedac8fa07f8cedac8fa0 /* PhysXCooking */ = {
+ FFFAf1f241a07fd2f1f241a0 /* PhysXCooking */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF6edac8fa07f8cedac8fa0 /* Build configuration list for PBXNativeTarget "PhysXCooking" */;
+ buildConfigurationList = FFF6f1f241a07fd2f1f241a0 /* Build configuration list for PBXNativeTarget "PhysXCooking" */;
buildPhases = (
- FFF2edac8fa07f8cedac8fa0,
- FFF8edac8fa07f8cedac8fa0,
- FFFCedac8fa07f8cedac8fa0,
+ FFF2f1f241a07fd2f1f241a0,
+ FFF8f1f241a07fd2f1f241a0,
+ FFFCf1f241a07fd2f1f241a0,
);
buildRules = (
);
dependencies = (
- FFF4edad3bc07f8cedad3bc0, /* PhysXCommon */
- FFF4edaceb507f8cedaceb50, /* PhysXExtensions */
- FFF4edacf0307f8cedacf030, /* PxFoundation */
+ FFF4f1f259107fd2f1f25910, /* PhysXCommon */
+ FFF4f1f2aeb07fd2f1f2aeb0, /* PhysXExtensions */
+ FFF4f1f240707fd2f1f24070, /* PxFoundation */
);
name = "PhysXCooking";
productName = "PhysXCooking";
- productReference = FFFDedac8fa07f8cedac8fa0 /* PhysXCooking */;
+ productReference = FFFDf1f241a07fd2f1f241a0 /* PhysXCooking */;
productType = "com.apple.product-type.library.static";
};
- FFFAec1a0dc07f8cec1a0dc0 /* PhysXCommon */ = {
+ FFFAf18a0c307fd2f18a0c30 /* PhysXCommon */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF6ec1a0dc07f8cec1a0dc0 /* Build configuration list for PBXNativeTarget "PhysXCommon" */;
+ buildConfigurationList = FFF6f18a0c307fd2f18a0c30 /* Build configuration list for PBXNativeTarget "PhysXCommon" */;
buildPhases = (
- FFF2ec1a0dc07f8cec1a0dc0,
- FFF8ec1a0dc07f8cec1a0dc0,
- FFFCec1a0dc07f8cec1a0dc0,
+ FFF2f18a0c307fd2f18a0c30,
+ FFF8f18a0c307fd2f18a0c30,
+ FFFCf18a0c307fd2f18a0c30,
);
buildRules = (
);
dependencies = (
- FFF4ec3fbdb07f8cec3fbdb0, /* PxFoundation */
+ FFF4f1b07af07fd2f1b07af0, /* PxFoundation */
);
name = "PhysXCommon";
productName = "PhysXCommon";
- productReference = FFFDec1a0dc07f8cec1a0dc0 /* PhysXCommon */;
+ productReference = FFFDf18a0c307fd2f18a0c30 /* PhysXCommon */;
productType = "com.apple.product-type.library.static";
};
- FFFAec18e0107f8cec18e010 /* PxFoundation */ = {
+ FFFAf188de607fd2f188de60 /* PxFoundation */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF6ec18e0107f8cec18e010 /* Build configuration list for PBXNativeTarget "PxFoundation" */;
+ buildConfigurationList = FFF6f188de607fd2f188de60 /* Build configuration list for PBXNativeTarget "PxFoundation" */;
buildPhases = (
- FFF2ec18e0107f8cec18e010,
- FFF8ec18e0107f8cec18e010,
- FFFCec18e0107f8cec18e010,
+ FFF2f188de607fd2f188de60,
+ FFF8f188de607fd2f188de60,
+ FFFCf188de607fd2f188de60,
);
buildRules = (
);
@@ -5180,34 +5180,34 @@
);
name = "PxFoundation";
productName = "PxFoundation";
- productReference = FFFDec18e0107f8cec18e010 /* PxFoundation */;
+ productReference = FFFDf188de607fd2f188de60 /* PxFoundation */;
productType = "com.apple.product-type.library.static";
};
- FFFAed809f207f8ced809f20 /* PxPvdSDK */ = {
+ FFFAf2809f007fd2f2809f00 /* PxPvdSDK */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF6ed809f207f8ced809f20 /* Build configuration list for PBXNativeTarget "PxPvdSDK" */;
+ buildConfigurationList = FFF6f2809f007fd2f2809f00 /* Build configuration list for PBXNativeTarget "PxPvdSDK" */;
buildPhases = (
- FFF2ed809f207f8ced809f20,
- FFF8ed809f207f8ced809f20,
- FFFCed809f207f8ced809f20,
+ FFF2f2809f007fd2f2809f00,
+ FFF8f2809f007fd2f2809f00,
+ FFFCf2809f007fd2f2809f00,
);
buildRules = (
);
dependencies = (
- FFF4ed80bd707f8ced80bd70, /* PxFoundation */
+ FFF4f28080f07fd2f28080f0, /* PxFoundation */
);
name = "PxPvdSDK";
productName = "PxPvdSDK";
- productReference = FFFDed809f207f8ced809f20 /* PxPvdSDK */;
+ productReference = FFFDf2809f007fd2f2809f00 /* PxPvdSDK */;
productType = "com.apple.product-type.library.static";
};
- FFFAec5094107f8cec509410 /* LowLevel */ = {
+ FFFAf28272b07fd2f28272b0 /* LowLevel */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF6ec5094107f8cec509410 /* Build configuration list for PBXNativeTarget "LowLevel" */;
+ buildConfigurationList = FFF6f28272b07fd2f28272b0 /* Build configuration list for PBXNativeTarget "LowLevel" */;
buildPhases = (
- FFF2ec5094107f8cec509410,
- FFF8ec5094107f8cec509410,
- FFFCec5094107f8cec509410,
+ FFF2f28272b07fd2f28272b0,
+ FFF8f28272b07fd2f28272b0,
+ FFFCf28272b07fd2f28272b0,
);
buildRules = (
);
@@ -5215,16 +5215,16 @@
);
name = "LowLevel";
productName = "LowLevel";
- productReference = FFFDec5094107f8cec509410 /* LowLevel */;
+ productReference = FFFDf28272b07fd2f28272b0 /* LowLevel */;
productType = "com.apple.product-type.library.static";
};
- FFFAec410d307f8cec410d30 /* LowLevelAABB */ = {
+ FFFAf2854ea07fd2f2854ea0 /* LowLevelAABB */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF6ec410d307f8cec410d30 /* Build configuration list for PBXNativeTarget "LowLevelAABB" */;
+ buildConfigurationList = FFF6f2854ea07fd2f2854ea0 /* Build configuration list for PBXNativeTarget "LowLevelAABB" */;
buildPhases = (
- FFF2ec410d307f8cec410d30,
- FFF8ec410d307f8cec410d30,
- FFFCec410d307f8cec410d30,
+ FFF2f2854ea07fd2f2854ea0,
+ FFF8f2854ea07fd2f2854ea0,
+ FFFCf2854ea07fd2f2854ea0,
);
buildRules = (
);
@@ -5232,16 +5232,16 @@
);
name = "LowLevelAABB";
productName = "LowLevelAABB";
- productReference = FFFDec410d307f8cec410d30 /* LowLevelAABB */;
+ productReference = FFFDf2854ea07fd2f2854ea0 /* LowLevelAABB */;
productType = "com.apple.product-type.library.static";
};
- FFFAed82e9f07f8ced82e9f0 /* LowLevelDynamics */ = {
+ FFFAf29090e07fd2f29090e0 /* LowLevelDynamics */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF6ed82e9f07f8ced82e9f0 /* Build configuration list for PBXNativeTarget "LowLevelDynamics" */;
+ buildConfigurationList = FFF6f29090e07fd2f29090e0 /* Build configuration list for PBXNativeTarget "LowLevelDynamics" */;
buildPhases = (
- FFF2ed82e9f07f8ced82e9f0,
- FFF8ed82e9f07f8ced82e9f0,
- FFFCed82e9f07f8ced82e9f0,
+ FFF2f29090e07fd2f29090e0,
+ FFF8f29090e07fd2f29090e0,
+ FFFCf29090e07fd2f29090e0,
);
buildRules = (
);
@@ -5249,16 +5249,16 @@
);
name = "LowLevelDynamics";
productName = "LowLevelDynamics";
- productReference = FFFDed82e9f07f8ced82e9f0 /* LowLevelDynamics */;
+ productReference = FFFDf29090e07fd2f29090e0 /* LowLevelDynamics */;
productType = "com.apple.product-type.library.static";
};
- FFFAec722a207f8cec722a20 /* LowLevelCloth */ = {
+ FFFAf188ae307fd2f188ae30 /* LowLevelCloth */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF6ec722a207f8cec722a20 /* Build configuration list for PBXNativeTarget "LowLevelCloth" */;
+ buildConfigurationList = FFF6f188ae307fd2f188ae30 /* Build configuration list for PBXNativeTarget "LowLevelCloth" */;
buildPhases = (
- FFF2ec722a207f8cec722a20,
- FFF8ec722a207f8cec722a20,
- FFFCec722a207f8cec722a20,
+ FFF2f188ae307fd2f188ae30,
+ FFF8f188ae307fd2f188ae30,
+ FFFCf188ae307fd2f188ae30,
);
buildRules = (
);
@@ -5266,16 +5266,16 @@
);
name = "LowLevelCloth";
productName = "LowLevelCloth";
- productReference = FFFDec722a207f8cec722a20 /* LowLevelCloth */;
+ productReference = FFFDf188ae307fd2f188ae30 /* LowLevelCloth */;
productType = "com.apple.product-type.library.static";
};
- FFFAed8493f07f8ced8493f0 /* LowLevelParticles */ = {
+ FFFAf28619307fd2f2861930 /* LowLevelParticles */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF6ed8493f07f8ced8493f0 /* Build configuration list for PBXNativeTarget "LowLevelParticles" */;
+ buildConfigurationList = FFF6f28619307fd2f2861930 /* Build configuration list for PBXNativeTarget "LowLevelParticles" */;
buildPhases = (
- FFF2ed8493f07f8ced8493f0,
- FFF8ed8493f07f8ced8493f0,
- FFFCed8493f07f8ced8493f0,
+ FFF2f28619307fd2f2861930,
+ FFF8f28619307fd2f2861930,
+ FFFCf28619307fd2f2861930,
);
buildRules = (
);
@@ -5283,16 +5283,16 @@
);
name = "LowLevelParticles";
productName = "LowLevelParticles";
- productReference = FFFDed8493f07f8ced8493f0 /* LowLevelParticles */;
+ productReference = FFFDf28619307fd2f2861930 /* LowLevelParticles */;
productType = "com.apple.product-type.library.static";
};
- FFFAec48c6307f8cec48c630 /* PxTask */ = {
+ FFFAf28f6e807fd2f28f6e80 /* PxTask */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF6ec48c6307f8cec48c630 /* Build configuration list for PBXNativeTarget "PxTask" */;
+ buildConfigurationList = FFF6f28f6e807fd2f28f6e80 /* Build configuration list for PBXNativeTarget "PxTask" */;
buildPhases = (
- FFF2ec48c6307f8cec48c630,
- FFF8ec48c6307f8cec48c630,
- FFFCec48c6307f8cec48c630,
+ FFF2f28f6e807fd2f28f6e80,
+ FFF8f28f6e807fd2f28f6e80,
+ FFFCf28f6e807fd2f28f6e80,
);
buildRules = (
);
@@ -5300,16 +5300,16 @@
);
name = "PxTask";
productName = "PxTask";
- productReference = FFFDec48c6307f8cec48c630 /* PxTask */;
+ productReference = FFFDf28f6e807fd2f28f6e80 /* PxTask */;
productType = "com.apple.product-type.library.static";
};
- FFFAeda901707f8ceda90170 /* PsFastXml */ = {
+ FFFAf2d23c207fd2f2d23c20 /* PsFastXml */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF6eda901707f8ceda90170 /* Build configuration list for PBXNativeTarget "PsFastXml" */;
+ buildConfigurationList = FFF6f2d23c207fd2f2d23c20 /* Build configuration list for PBXNativeTarget "PsFastXml" */;
buildPhases = (
- FFF2eda901707f8ceda90170,
- FFF8eda901707f8ceda90170,
- FFFCeda901707f8ceda90170,
+ FFF2f2d23c207fd2f2d23c20,
+ FFF8f2d23c207fd2f2d23c20,
+ FFFCf2d23c207fd2f2d23c20,
);
buildRules = (
);
@@ -5317,213 +5317,213 @@
);
name = "PsFastXml";
productName = "PsFastXml";
- productReference = FFFDeda901707f8ceda90170 /* PsFastXml */;
+ productReference = FFFDf2d23c207fd2f2d23c20 /* PsFastXml */;
productType = "com.apple.product-type.library.static";
};
/* End PBXNativeTarget section */
/* Begin XCConfigurationList section */
- FFF6eda934e07f8ceda934e0 = {
+ FFF6f2d231d07fd2f2d231d0 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF7ee06ee007f8cee06ee00,
- FFF7ee06f4f07f8cee06f4f0,
- FFF7ee06fbe07f8cee06fbe0,
- FFF7ee0702d07f8cee0702d0,
+ FFF7f20384007fd2f2038400,
+ FFF7f2038af07fd2f2038af0,
+ FFF7f20391e07fd2f20391e0,
+ FFF7f20398d07fd2f20398d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "release";
};
- FFF6eda9c0c07f8ceda9c0c0 = {
+ FFF6f2d50f307fd2f2d50f30 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF7ee070a007f8cee070a00,
- FFF7ee0710f07f8cee0710f0,
- FFF7ee0717e07f8cee0717e0,
- FFF7ee071ed07f8cee071ed0,
+ FFF7f203a0007fd2f203a000,
+ FFF7f203a6f07fd2f203a6f0,
+ FFF7f203ade07fd2f203ade0,
+ FFF7f203b4d07fd2f203b4d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
- FFF6eda9d5107f8ceda9d510 = {
+ FFF6f2d4e3107fd2f2d4e310 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF7ee0726007f8cee072600,
- FFF7ee072cf07f8cee072cf0,
- FFF7ee0733e07f8cee0733e0,
- FFF7ee073ad07f8cee073ad0,
+ FFF7f203bc007fd2f203bc00,
+ FFF7f203c2f07fd2f203c2f0,
+ FFF7f203c9e07fd2f203c9e0,
+ FFF7f203d0d07fd2f203d0d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
- FFF6edaae9b07f8cedaae9b0 = {
+ FFF6f2d5f8507fd2f2d5f850 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF7ee0742007f8cee074200,
- FFF7ee0748f07f8cee0748f0,
- FFF7ee074fe07f8cee074fe0,
- FFF7ee0756d07f8cee0756d0,
+ FFF7f203d8007fd2f203d800,
+ FFF7f203def07fd2f203def0,
+ FFF7f203e5e07fd2f203e5e0,
+ FFF7f203ecd07fd2f203ecd0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
- FFF6edabfac07f8cedabfac0 = {
+ FFF6f2d709607fd2f2d70960 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF7ee075e007f8cee075e00,
- FFF7ee0764f07f8cee0764f0,
- FFF7ee076be07f8cee076be0,
- FFF7ee0772d07f8cee0772d0,
+ FFF7f2040c007fd2f2040c00,
+ FFF7f20412f07fd2f20412f0,
+ FFF7f20419e07fd2f20419e0,
+ FFF7f20420d07fd2f20420d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
- FFF6edac3f107f8cedac3f10 = {
+ FFF6f2d74db07fd2f2d74db0 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF7ee077a007f8cee077a00,
- FFF7ee0780f07f8cee0780f0,
- FFF7ee0787e07f8cee0787e0,
- FFF7ee078ed07f8cee078ed0,
+ FFF7f20428007fd2f2042800,
+ FFF7f2042ef07fd2f2042ef0,
+ FFF7f20435e07fd2f20435e0,
+ FFF7f2043cd07fd2f2043cd0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
- FFF6edac8fa07f8cedac8fa0 = {
+ FFF6f1f241a07fd2f1f241a0 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF7ee0796007f8cee079600,
- FFF7ee079cf07f8cee079cf0,
- FFF7ee07a3e07f8cee07a3e0,
- FFF7ee07aad07f8cee07aad0,
+ FFF7f20444007fd2f2044400,
+ FFF7f2044af07fd2f2044af0,
+ FFF7f20451e07fd2f20451e0,
+ FFF7f20458d07fd2f20458d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "release";
};
- FFF6ec1a0dc07f8cec1a0dc0 = {
+ FFF6f18a0c307fd2f18a0c30 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF7ec8110007f8cec811000,
- FFF7ec8116f07f8cec8116f0,
- FFF7ec811de07f8cec811de0,
- FFF7ec8124d07f8cec8124d0,
+ FFF7f20110007fd2f2011000,
+ FFF7f20116f07fd2f20116f0,
+ FFF7f2011de07fd2f2011de0,
+ FFF7f20124d07fd2f20124d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "release";
};
- FFF6ec18e0107f8cec18e010 = {
+ FFF6f188de607fd2f188de60 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF7eb9888007f8ceb988800,
- FFF7eb988ef07f8ceb988ef0,
- FFF7eb9895e07f8ceb9895e0,
- FFF7eb989cd07f8ceb989cd0,
+ FFF7f11888007fd2f1188800,
+ FFF7f1188ef07fd2f1188ef0,
+ FFF7f11895e07fd2f11895e0,
+ FFF7f1189cd07fd2f1189cd0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
- FFF6ed809f207f8ced809f20 = {
+ FFF6f2809f007fd2f2809f00 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF7ee00ca007f8cee00ca00,
- FFF7ee00d0f07f8cee00d0f0,
- FFF7ee00d7e07f8cee00d7e0,
- FFF7ee00ded07f8cee00ded0,
+ FFF7f300c2007fd2f300c200,
+ FFF7f300c8f07fd2f300c8f0,
+ FFF7f300cfe07fd2f300cfe0,
+ FFF7f300d6d07fd2f300d6d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
- FFF6ec5094107f8cec509410 = {
+ FFF6f28272b07fd2f28272b0 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF7ed0294007f8ced029400,
- FFF7ed029af07f8ced029af0,
- FFF7ed02a1e07f8ced02a1e0,
- FFF7ed02a8d07f8ced02a8d0,
+ FFF7f3019a007fd2f3019a00,
+ FFF7f301a0f07fd2f301a0f0,
+ FFF7f301a7e07fd2f301a7e0,
+ FFF7f301aed07fd2f301aed0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
- FFF6ec410d307f8cec410d30 = {
+ FFF6f2854ea07fd2f2854ea0 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF7eb9b36007f8ceb9b3600,
- FFF7eb9b3cf07f8ceb9b3cf0,
- FFF7eb9b43e07f8ceb9b43e0,
- FFF7eb9b4ad07f8ceb9b4ad0,
+ FFF7f3022a007fd2f3022a00,
+ FFF7f30230f07fd2f30230f0,
+ FFF7f30237e07fd2f30237e0,
+ FFF7f3023ed07fd2f3023ed0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
- FFF6ed82e9f07f8ced82e9f0 = {
+ FFF6f29090e07fd2f29090e0 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF7ee01a6007f8cee01a600,
- FFF7ee01acf07f8cee01acf0,
- FFF7ee01b3e07f8cee01b3e0,
- FFF7ee01bad07f8cee01bad0,
+ FFF7f380c4007fd2f380c400,
+ FFF7f380caf07fd2f380caf0,
+ FFF7f380d1e07fd2f380d1e0,
+ FFF7f380d8d07fd2f380d8d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
- FFF6ec722a207f8cec722a20 = {
+ FFF6f188ae307fd2f188ae30 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF7ed0338007f8ced033800,
- FFF7ed033ef07f8ced033ef0,
- FFF7ed0345e07f8ced0345e0,
- FFF7ed034cd07f8ced034cd0,
+ FFF7f11b48007fd2f11b4800,
+ FFF7f11b4ef07fd2f11b4ef0,
+ FFF7f11b55e07fd2f11b55e0,
+ FFF7f11b5cd07fd2f11b5cd0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
- FFF6ed8493f07f8ced8493f0 = {
+ FFF6f28619307fd2f2861930 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF7ee0244007f8cee024400,
- FFF7ee024af07f8cee024af0,
- FFF7ee0251e07f8cee0251e0,
- FFF7ee0258d07f8cee0258d0,
+ FFF7f302ce007fd2f302ce00,
+ FFF7f302d4f07fd2f302d4f0,
+ FFF7f302dbe07fd2f302dbe0,
+ FFF7f302e2d07fd2f302e2d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
- FFF6ec48c6307f8cec48c630 = {
+ FFF6f28f6e807fd2f28f6e80 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF7ec8152007f8cec815200,
- FFF7ec8158f07f8cec8158f0,
- FFF7ec815fe07f8cec815fe0,
- FFF7ec8166d07f8cec8166d0,
+ FFF7f3051c007fd2f3051c00,
+ FFF7f30522f07fd2f30522f0,
+ FFF7f30529e07fd2f30529e0,
+ FFF7f30530d07fd2f30530d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
- FFF6eda901707f8ceda90170 = {
+ FFF6f2d23c207fd2f2d23c20 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF7ee048a007f8cee048a00,
- FFF7ee0490f07f8cee0490f0,
- FFF7ee0497e07f8cee0497e0,
- FFF7ee049ed07f8cee049ed0,
+ FFF7f3830c007fd2f3830c00,
+ FFF7f38312f07fd2f38312f0,
+ FFF7f38319e07fd2f38319e0,
+ FFF7f38320d07fd2f38320d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
- FFF6eb57ca007f8ceb57ca00 = {
+ FFF6f0c7c9507fd2f0c7c950 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF3ee06ee007f8cee06ee00 /* release */,
- FFF3ee06f4f07f8cee06f4f0 /* debug */,
- FFF3ee06fbe07f8cee06fbe0 /* checked */,
- FFF3ee0702d07f8cee0702d0 /* profile */,
+ FFF3f20384007fd2f2038400 /* release */,
+ FFF3f2038af07fd2f2038af0 /* debug */,
+ FFF3f20391e07fd2f20391e0 /* checked */,
+ FFF3f20398d07fd2f20398d0 /* profile */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "release";
};
/* End XCConfigurationList section */
/* Begin XCBuildConfiguration section */
- FFF7ee06ee007f8cee06ee00 /* release */ = {
+ FFF7f20384007fd2f2038400 /* 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++";
@@ -5554,7 +5554,7 @@
};
name = "release";
};
- FFF7ee06f4f07f8cee06f4f0 /* debug */ = {
+ FFF7f2038af07fd2f2038af0 /* 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++";
@@ -5585,7 +5585,7 @@
};
name = "debug";
};
- FFF7ee06fbe07f8cee06fbe0 /* checked */ = {
+ FFF7f20391e07fd2f20391e0 /* 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++";
@@ -5616,7 +5616,7 @@
};
name = "checked";
};
- FFF7ee0702d07f8cee0702d0 /* profile */ = {
+ FFF7f20398d07fd2f20398d0 /* 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++";
@@ -5647,7 +5647,7 @@
};
name = "profile";
};
- FFF7ee070a007f8cee070a00 /* debug */ = {
+ FFF7f203a0007fd2f203a000 /* 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++";
@@ -5678,7 +5678,7 @@
};
name = "debug";
};
- FFF7ee0710f07f8cee0710f0 /* checked */ = {
+ FFF7f203a6f07fd2f203a6f0 /* 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++";
@@ -5709,7 +5709,7 @@
};
name = "checked";
};
- FFF7ee0717e07f8cee0717e0 /* profile */ = {
+ FFF7f203ade07fd2f203ade0 /* 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++";
@@ -5740,7 +5740,7 @@
};
name = "profile";
};
- FFF7ee071ed07f8cee071ed0 /* release */ = {
+ FFF7f203b4d07fd2f203b4d0 /* 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++";
@@ -5771,7 +5771,7 @@
};
name = "release";
};
- FFF7ee0726007f8cee072600 /* debug */ = {
+ FFF7f203bc007fd2f203bc00 /* 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++";
@@ -5802,7 +5802,7 @@
};
name = "debug";
};
- FFF7ee072cf07f8cee072cf0 /* checked */ = {
+ FFF7f203c2f07fd2f203c2f0 /* 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++";
@@ -5833,7 +5833,7 @@
};
name = "checked";
};
- FFF7ee0733e07f8cee0733e0 /* profile */ = {
+ FFF7f203c9e07fd2f203c9e0 /* 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++";
@@ -5864,7 +5864,7 @@
};
name = "profile";
};
- FFF7ee073ad07f8cee073ad0 /* release */ = {
+ FFF7f203d0d07fd2f203d0d0 /* 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++";
@@ -5895,7 +5895,7 @@
};
name = "release";
};
- FFF7ee0742007f8cee074200 /* debug */ = {
+ FFF7f203d8007fd2f203d800 /* 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++";
@@ -5926,7 +5926,7 @@
};
name = "debug";
};
- FFF7ee0748f07f8cee0748f0 /* checked */ = {
+ FFF7f203def07fd2f203def0 /* 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++";
@@ -5957,7 +5957,7 @@
};
name = "checked";
};
- FFF7ee074fe07f8cee074fe0 /* profile */ = {
+ FFF7f203e5e07fd2f203e5e0 /* 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++";
@@ -5988,7 +5988,7 @@
};
name = "profile";
};
- FFF7ee0756d07f8cee0756d0 /* release */ = {
+ FFF7f203ecd07fd2f203ecd0 /* 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++";
@@ -6019,7 +6019,7 @@
};
name = "release";
};
- FFF7ee075e007f8cee075e00 /* debug */ = {
+ FFF7f2040c007fd2f2040c00 /* 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++";
@@ -6050,7 +6050,7 @@
};
name = "debug";
};
- FFF7ee0764f07f8cee0764f0 /* checked */ = {
+ FFF7f20412f07fd2f20412f0 /* 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++";
@@ -6081,7 +6081,7 @@
};
name = "checked";
};
- FFF7ee076be07f8cee076be0 /* profile */ = {
+ FFF7f20419e07fd2f20419e0 /* 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++";
@@ -6112,7 +6112,7 @@
};
name = "profile";
};
- FFF7ee0772d07f8cee0772d0 /* release */ = {
+ FFF7f20420d07fd2f20420d0 /* 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++";
@@ -6143,7 +6143,7 @@
};
name = "release";
};
- FFF7ee077a007f8cee077a00 /* debug */ = {
+ FFF7f20428007fd2f2042800 /* 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++";
@@ -6174,7 +6174,7 @@
};
name = "debug";
};
- FFF7ee0780f07f8cee0780f0 /* checked */ = {
+ FFF7f2042ef07fd2f2042ef0 /* 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++";
@@ -6205,7 +6205,7 @@
};
name = "checked";
};
- FFF7ee0787e07f8cee0787e0 /* profile */ = {
+ FFF7f20435e07fd2f20435e0 /* 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++";
@@ -6236,7 +6236,7 @@
};
name = "profile";
};
- FFF7ee078ed07f8cee078ed0 /* release */ = {
+ FFF7f2043cd07fd2f2043cd0 /* 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++";
@@ -6267,7 +6267,7 @@
};
name = "release";
};
- FFF7ee0796007f8cee079600 /* release */ = {
+ FFF7f20444007fd2f2044400 /* 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++";
@@ -6298,7 +6298,7 @@
};
name = "release";
};
- FFF7ee079cf07f8cee079cf0 /* debug */ = {
+ FFF7f2044af07fd2f2044af0 /* 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++";
@@ -6329,7 +6329,7 @@
};
name = "debug";
};
- FFF7ee07a3e07f8cee07a3e0 /* checked */ = {
+ FFF7f20451e07fd2f20451e0 /* 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++";
@@ -6360,7 +6360,7 @@
};
name = "checked";
};
- FFF7ee07aad07f8cee07aad0 /* profile */ = {
+ FFF7f20458d07fd2f20458d0 /* 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++";
@@ -6391,7 +6391,7 @@
};
name = "profile";
};
- FFF7ec8110007f8cec811000 /* release */ = {
+ FFF7f20110007fd2f2011000 /* 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++";
@@ -6422,7 +6422,7 @@
};
name = "release";
};
- FFF7ec8116f07f8cec8116f0 /* debug */ = {
+ FFF7f20116f07fd2f20116f0 /* 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++";
@@ -6453,7 +6453,7 @@
};
name = "debug";
};
- FFF7ec811de07f8cec811de0 /* checked */ = {
+ FFF7f2011de07fd2f2011de0 /* 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++";
@@ -6484,7 +6484,7 @@
};
name = "checked";
};
- FFF7ec8124d07f8cec8124d0 /* profile */ = {
+ FFF7f20124d07fd2f20124d0 /* 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++";
@@ -6515,7 +6515,7 @@
};
name = "profile";
};
- FFF7eb9888007f8ceb988800 /* debug */ = {
+ FFF7f11888007fd2f1188800 /* 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++";
@@ -6546,7 +6546,7 @@
};
name = "debug";
};
- FFF7eb988ef07f8ceb988ef0 /* release */ = {
+ FFF7f1188ef07fd2f1188ef0 /* 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++";
@@ -6577,7 +6577,7 @@
};
name = "release";
};
- FFF7eb9895e07f8ceb9895e0 /* checked */ = {
+ FFF7f11895e07fd2f11895e0 /* 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++";
@@ -6608,7 +6608,7 @@
};
name = "checked";
};
- FFF7eb989cd07f8ceb989cd0 /* profile */ = {
+ FFF7f1189cd07fd2f1189cd0 /* 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++";
@@ -6639,7 +6639,7 @@
};
name = "profile";
};
- FFF7ee00ca007f8cee00ca00 /* debug */ = {
+ FFF7f300c2007fd2f300c200 /* 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++";
@@ -6670,7 +6670,7 @@
};
name = "debug";
};
- FFF7ee00d0f07f8cee00d0f0 /* release */ = {
+ FFF7f300c8f07fd2f300c8f0 /* 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++";
@@ -6701,7 +6701,7 @@
};
name = "release";
};
- FFF7ee00d7e07f8cee00d7e0 /* checked */ = {
+ FFF7f300cfe07fd2f300cfe0 /* 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++";
@@ -6732,7 +6732,7 @@
};
name = "checked";
};
- FFF7ee00ded07f8cee00ded0 /* profile */ = {
+ FFF7f300d6d07fd2f300d6d0 /* 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++";
@@ -6763,7 +6763,7 @@
};
name = "profile";
};
- FFF7ed0294007f8ced029400 /* debug */ = {
+ FFF7f3019a007fd2f3019a00 /* 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++";
@@ -6794,7 +6794,7 @@
};
name = "debug";
};
- FFF7ed029af07f8ced029af0 /* checked */ = {
+ FFF7f301a0f07fd2f301a0f0 /* 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++";
@@ -6825,7 +6825,7 @@
};
name = "checked";
};
- FFF7ed02a1e07f8ced02a1e0 /* profile */ = {
+ FFF7f301a7e07fd2f301a7e0 /* 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++";
@@ -6856,7 +6856,7 @@
};
name = "profile";
};
- FFF7ed02a8d07f8ced02a8d0 /* release */ = {
+ FFF7f301aed07fd2f301aed0 /* 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++";
@@ -6887,7 +6887,7 @@
};
name = "release";
};
- FFF7eb9b36007f8ceb9b3600 /* debug */ = {
+ FFF7f3022a007fd2f3022a00 /* 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++";
@@ -6918,7 +6918,7 @@
};
name = "debug";
};
- FFF7eb9b3cf07f8ceb9b3cf0 /* checked */ = {
+ FFF7f30230f07fd2f30230f0 /* 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++";
@@ -6949,7 +6949,7 @@
};
name = "checked";
};
- FFF7eb9b43e07f8ceb9b43e0 /* profile */ = {
+ FFF7f30237e07fd2f30237e0 /* 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++";
@@ -6980,7 +6980,7 @@
};
name = "profile";
};
- FFF7eb9b4ad07f8ceb9b4ad0 /* release */ = {
+ FFF7f3023ed07fd2f3023ed0 /* 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++";
@@ -7011,7 +7011,7 @@
};
name = "release";
};
- FFF7ee01a6007f8cee01a600 /* debug */ = {
+ FFF7f380c4007fd2f380c400 /* 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++";
@@ -7042,7 +7042,7 @@
};
name = "debug";
};
- FFF7ee01acf07f8cee01acf0 /* checked */ = {
+ FFF7f380caf07fd2f380caf0 /* 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++";
@@ -7073,7 +7073,7 @@
};
name = "checked";
};
- FFF7ee01b3e07f8cee01b3e0 /* profile */ = {
+ FFF7f380d1e07fd2f380d1e0 /* 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++";
@@ -7104,7 +7104,7 @@
};
name = "profile";
};
- FFF7ee01bad07f8cee01bad0 /* release */ = {
+ FFF7f380d8d07fd2f380d8d0 /* 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++";
@@ -7135,7 +7135,7 @@
};
name = "release";
};
- FFF7ed0338007f8ced033800 /* debug */ = {
+ FFF7f11b48007fd2f11b4800 /* 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++";
@@ -7166,7 +7166,7 @@
};
name = "debug";
};
- FFF7ed033ef07f8ced033ef0 /* checked */ = {
+ FFF7f11b4ef07fd2f11b4ef0 /* 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++";
@@ -7197,7 +7197,7 @@
};
name = "checked";
};
- FFF7ed0345e07f8ced0345e0 /* profile */ = {
+ FFF7f11b55e07fd2f11b55e0 /* 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++";
@@ -7228,7 +7228,7 @@
};
name = "profile";
};
- FFF7ed034cd07f8ced034cd0 /* release */ = {
+ FFF7f11b5cd07fd2f11b5cd0 /* 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++";
@@ -7259,7 +7259,7 @@
};
name = "release";
};
- FFF7ee0244007f8cee024400 /* debug */ = {
+ FFF7f302ce007fd2f302ce00 /* 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++";
@@ -7290,7 +7290,7 @@
};
name = "debug";
};
- FFF7ee024af07f8cee024af0 /* checked */ = {
+ FFF7f302d4f07fd2f302d4f0 /* 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++";
@@ -7321,7 +7321,7 @@
};
name = "checked";
};
- FFF7ee0251e07f8cee0251e0 /* profile */ = {
+ FFF7f302dbe07fd2f302dbe0 /* 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++";
@@ -7352,7 +7352,7 @@
};
name = "profile";
};
- FFF7ee0258d07f8cee0258d0 /* release */ = {
+ FFF7f302e2d07fd2f302e2d0 /* 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++";
@@ -7383,7 +7383,7 @@
};
name = "release";
};
- FFF7ec8152007f8cec815200 /* debug */ = {
+ FFF7f3051c007fd2f3051c00 /* 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++";
@@ -7414,7 +7414,7 @@
};
name = "debug";
};
- FFF7ec8158f07f8cec8158f0 /* release */ = {
+ FFF7f30522f07fd2f30522f0 /* 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++";
@@ -7445,7 +7445,7 @@
};
name = "release";
};
- FFF7ec815fe07f8cec815fe0 /* checked */ = {
+ FFF7f30529e07fd2f30529e0 /* 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++";
@@ -7476,7 +7476,7 @@
};
name = "checked";
};
- FFF7ec8166d07f8cec8166d0 /* profile */ = {
+ FFF7f30530d07fd2f30530d0 /* 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++";
@@ -7507,7 +7507,7 @@
};
name = "profile";
};
- FFF7ee048a007f8cee048a00 /* debug */ = {
+ FFF7f3830c007fd2f3830c00 /* 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++";
@@ -7538,7 +7538,7 @@
};
name = "debug";
};
- FFF7ee0490f07f8cee0490f0 /* release */ = {
+ FFF7f38312f07fd2f38312f0 /* 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++";
@@ -7569,7 +7569,7 @@
};
name = "release";
};
- FFF7ee0497e07f8cee0497e0 /* checked */ = {
+ FFF7f38319e07fd2f38319e0 /* 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++";
@@ -7600,7 +7600,7 @@
};
name = "checked";
};
- FFF7ee049ed07f8cee049ed0 /* profile */ = {
+ FFF7f38320d07fd2f38320d0 /* 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++";
@@ -7631,25 +7631,25 @@
};
name = "profile";
};
- FFF3ee06ee007f8cee06ee00 /* release */ = {
+ FFF3f20384007fd2f2038400 /* release */ = {
isa = XCBuildConfiguration;
buildSettings = {
};
name = "release";
};
- FFF3ee06f4f07f8cee06f4f0 /* debug */ = {
+ FFF3f2038af07fd2f2038af0 /* debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
};
name = "debug";
};
- FFF3ee06fbe07f8cee06fbe0 /* checked */ = {
+ FFF3f20391e07fd2f20391e0 /* checked */ = {
isa = XCBuildConfiguration;
buildSettings = {
};
name = "checked";
};
- FFF3ee0702d07f8cee0702d0 /* profile */ = {
+ FFF3f20398d07fd2f20398d0 /* profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
};
@@ -7658,34 +7658,34 @@
/* End XCBuildConfiguration section */
/* Begin PBXProject section */
- FFF9eb57ca007f8ceb57ca00 /* Project object */ = {
+ FFF9f0c7c9507fd2f0c7c950 /* Project object */ = {
isa = PBXProject;
- buildConfigurationList = FFF6eb57ca007f8ceb57ca00 /* Build configuration list for PBXProject PhysX */;
+ buildConfigurationList = FFF6f0c7c9507fd2f0c7c950 /* Build configuration list for PBXProject PhysX */;
compatibilityVersion = "Xcode 3.2";
hasScannedForEncodings = 1;
- mainGroup = FFFBeb57ca687f8ceb57ca68 /* PhysX */;
+ mainGroup = FFFBf0c7c9b87fd2f0c7c9b8 /* PhysX */;
targets = (
- FFFAeda934e07f8ceda934e0,
- FFFAeda9c0c07f8ceda9c0c0,
- FFFAeda9d5107f8ceda9d510,
- FFFAedaae9b07f8cedaae9b0,
- FFFAedabfac07f8cedabfac0,
- FFFAedac3f107f8cedac3f10,
- FFFAedac8fa07f8cedac8fa0,
- FFFAec1a0dc07f8cec1a0dc0,
- FFFAec18e0107f8cec18e010,
- FFFAed809f207f8ced809f20,
- FFFAec5094107f8cec509410,
- FFFAec410d307f8cec410d30,
- FFFAed82e9f07f8ced82e9f0,
- FFFAec722a207f8cec722a20,
- FFFAed8493f07f8ced8493f0,
- FFFAec48c6307f8cec48c630,
- FFFAeda901707f8ceda90170,
+ FFFAf2d231d07fd2f2d231d0,
+ FFFAf2d50f307fd2f2d50f30,
+ FFFAf2d4e3107fd2f2d4e310,
+ FFFAf2d5f8507fd2f2d5f850,
+ FFFAf2d709607fd2f2d70960,
+ FFFAf2d74db07fd2f2d74db0,
+ FFFAf1f241a07fd2f1f241a0,
+ FFFAf18a0c307fd2f18a0c30,
+ FFFAf188de607fd2f188de60,
+ FFFAf2809f007fd2f2809f00,
+ FFFAf28272b07fd2f28272b0,
+ FFFAf2854ea07fd2f2854ea0,
+ FFFAf29090e07fd2f29090e0,
+ FFFAf188ae307fd2f188ae30,
+ FFFAf28619307fd2f2861930,
+ FFFAf28f6e807fd2f28f6e80,
+ FFFAf2d23c207fd2f2d23c20,
);
};
/* End PBXProject section */
};
- rootObject = FFF9eb57ca007f8ceb57ca00 /* Project object */;
+ rootObject = FFF9f0c7c9507fd2f0c7c950 /* 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 5bb47692..a8fc6a43 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 */
- FFFFd2c6c4207ff3d2c6c420 /* SceneQuery in Frameworks */= { isa = PBXBuildFile; fileRef = FFFDd2c8ff407ff3d2c8ff40 /* SceneQuery */; };
- FFFFd2c6c4807ff3d2c6c480 /* SimulationController in Frameworks */= { isa = PBXBuildFile; fileRef = FFFDd2c944907ff3d2c94490 /* SimulationController */; };
- FFFFd0a220387ff3d0a22038 /* NpActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a220387ff3d0a22038 /* NpActor.cpp */; };
- FFFFd0a220a07ff3d0a220a0 /* NpAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a220a07ff3d0a220a0 /* NpAggregate.cpp */; };
- FFFFd0a221087ff3d0a22108 /* NpArticulation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a221087ff3d0a22108 /* NpArticulation.cpp */; };
- FFFFd0a221707ff3d0a22170 /* NpArticulationJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a221707ff3d0a22170 /* NpArticulationJoint.cpp */; };
- FFFFd0a221d87ff3d0a221d8 /* NpArticulationLink.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a221d87ff3d0a221d8 /* NpArticulationLink.cpp */; };
- FFFFd0a222407ff3d0a22240 /* NpBatchQuery.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a222407ff3d0a22240 /* NpBatchQuery.cpp */; };
- FFFFd0a222a87ff3d0a222a8 /* NpConstraint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a222a87ff3d0a222a8 /* NpConstraint.cpp */; };
- FFFFd0a223107ff3d0a22310 /* NpFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a223107ff3d0a22310 /* NpFactory.cpp */; };
- FFFFd0a223787ff3d0a22378 /* NpMaterial.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a223787ff3d0a22378 /* NpMaterial.cpp */; };
- FFFFd0a223e07ff3d0a223e0 /* NpMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a223e07ff3d0a223e0 /* NpMetaData.cpp */; };
- FFFFd0a224487ff3d0a22448 /* NpPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a224487ff3d0a22448 /* NpPhysics.cpp */; };
- FFFFd0a224b07ff3d0a224b0 /* NpPvdSceneQueryCollector.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a224b07ff3d0a224b0 /* NpPvdSceneQueryCollector.cpp */; };
- FFFFd0a225187ff3d0a22518 /* NpReadCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a225187ff3d0a22518 /* NpReadCheck.cpp */; };
- FFFFd0a225807ff3d0a22580 /* NpRigidDynamic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a225807ff3d0a22580 /* NpRigidDynamic.cpp */; };
- FFFFd0a225e87ff3d0a225e8 /* NpRigidStatic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a225e87ff3d0a225e8 /* NpRigidStatic.cpp */; };
- FFFFd0a226507ff3d0a22650 /* NpScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a226507ff3d0a22650 /* NpScene.cpp */; };
- FFFFd0a226b87ff3d0a226b8 /* NpSceneQueries.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a226b87ff3d0a226b8 /* NpSceneQueries.cpp */; };
- FFFFd0a227207ff3d0a22720 /* NpSerializerAdapter.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a227207ff3d0a22720 /* NpSerializerAdapter.cpp */; };
- FFFFd0a227887ff3d0a22788 /* NpShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a227887ff3d0a22788 /* NpShape.cpp */; };
- FFFFd0a227f07ff3d0a227f0 /* NpShapeManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a227f07ff3d0a227f0 /* NpShapeManager.cpp */; };
- FFFFd0a228587ff3d0a22858 /* NpSpatialIndex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a228587ff3d0a22858 /* NpSpatialIndex.cpp */; };
- FFFFd0a228c07ff3d0a228c0 /* NpVolumeCache.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a228c07ff3d0a228c0 /* NpVolumeCache.cpp */; };
- FFFFd0a229287ff3d0a22928 /* NpWriteCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a229287ff3d0a22928 /* NpWriteCheck.cpp */; };
- FFFFd0a229907ff3d0a22990 /* PvdMetaDataPvdBinding.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a229907ff3d0a22990 /* PvdMetaDataPvdBinding.cpp */; };
- FFFFd0a229f87ff3d0a229f8 /* PvdPhysicsClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a229f87ff3d0a229f8 /* PvdPhysicsClient.cpp */; };
- FFFFd0a22c007ff3d0a22c00 /* particles/NpParticleFluid.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a22c007ff3d0a22c00 /* particles/NpParticleFluid.cpp */; };
- FFFFd0a22c687ff3d0a22c68 /* particles/NpParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a22c687ff3d0a22c68 /* particles/NpParticleSystem.cpp */; };
- FFFFd0a234207ff3d0a23420 /* buffering/ScbActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a234207ff3d0a23420 /* buffering/ScbActor.cpp */; };
- FFFFd0a234887ff3d0a23488 /* buffering/ScbAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a234887ff3d0a23488 /* buffering/ScbAggregate.cpp */; };
- FFFFd0a234f07ff3d0a234f0 /* buffering/ScbBase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a234f07ff3d0a234f0 /* buffering/ScbBase.cpp */; };
- FFFFd0a235587ff3d0a23558 /* buffering/ScbCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a235587ff3d0a23558 /* buffering/ScbCloth.cpp */; };
- FFFFd0a235c07ff3d0a235c0 /* buffering/ScbMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a235c07ff3d0a235c0 /* buffering/ScbMetaData.cpp */; };
- FFFFd0a236287ff3d0a23628 /* buffering/ScbParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a236287ff3d0a23628 /* buffering/ScbParticleSystem.cpp */; };
- FFFFd0a236907ff3d0a23690 /* buffering/ScbScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a236907ff3d0a23690 /* buffering/ScbScene.cpp */; };
- FFFFd0a236f87ff3d0a236f8 /* buffering/ScbScenePvdClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a236f87ff3d0a236f8 /* buffering/ScbScenePvdClient.cpp */; };
- FFFFd0a237607ff3d0a23760 /* buffering/ScbShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a237607ff3d0a23760 /* buffering/ScbShape.cpp */; };
- FFFFd0a239007ff3d0a23900 /* cloth/NpCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a239007ff3d0a23900 /* cloth/NpCloth.cpp */; };
- FFFFd0a239687ff3d0a23968 /* cloth/NpClothFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a239687ff3d0a23968 /* cloth/NpClothFabric.cpp */; };
- FFFFd0a239d07ff3d0a239d0 /* cloth/NpClothParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a239d07ff3d0a239d0 /* cloth/NpClothParticleData.cpp */; };
- FFFFd0a23a387ff3d0a23a38 /* ../../ImmediateMode/src/NpImmediateMode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a23a387ff3d0a23a38 /* ../../ImmediateMode/src/NpImmediateMode.cpp */; };
- FFFFd0a1dfa87ff3d0a1dfa8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDd0a1dfa87ff3d0a1dfa8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */; };
- FFFFd0a1e0107ff3d0a1e010 /* core/src/PxMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDd0a1e0107ff3d0a1e010 /* core/src/PxMetaDataObjects.cpp */; };
+ FFFF3dad31f07f8d3dad31f0 /* SceneQuery in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD3cc2ae407f8d3cc2ae40 /* SceneQuery */; };
+ FFFF3dad32507f8d3dad3250 /* SimulationController in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD3cc2f2707f8d3cc2f270 /* SimulationController */; };
+ FFFF3d07c0387f8d3d07c038 /* NpActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d07c0387f8d3d07c038 /* NpActor.cpp */; };
+ FFFF3d07c0a07f8d3d07c0a0 /* NpAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d07c0a07f8d3d07c0a0 /* NpAggregate.cpp */; };
+ FFFF3d07c1087f8d3d07c108 /* NpArticulation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d07c1087f8d3d07c108 /* NpArticulation.cpp */; };
+ FFFF3d07c1707f8d3d07c170 /* NpArticulationJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d07c1707f8d3d07c170 /* NpArticulationJoint.cpp */; };
+ FFFF3d07c1d87f8d3d07c1d8 /* NpArticulationLink.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d07c1d87f8d3d07c1d8 /* NpArticulationLink.cpp */; };
+ FFFF3d07c2407f8d3d07c240 /* NpBatchQuery.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d07c2407f8d3d07c240 /* NpBatchQuery.cpp */; };
+ FFFF3d07c2a87f8d3d07c2a8 /* NpConstraint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d07c2a87f8d3d07c2a8 /* NpConstraint.cpp */; };
+ FFFF3d07c3107f8d3d07c310 /* NpFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d07c3107f8d3d07c310 /* NpFactory.cpp */; };
+ FFFF3d07c3787f8d3d07c378 /* NpMaterial.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d07c3787f8d3d07c378 /* NpMaterial.cpp */; };
+ FFFF3d07c3e07f8d3d07c3e0 /* NpMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d07c3e07f8d3d07c3e0 /* NpMetaData.cpp */; };
+ FFFF3d07c4487f8d3d07c448 /* NpPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d07c4487f8d3d07c448 /* NpPhysics.cpp */; };
+ FFFF3d07c4b07f8d3d07c4b0 /* NpPvdSceneQueryCollector.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d07c4b07f8d3d07c4b0 /* NpPvdSceneQueryCollector.cpp */; };
+ FFFF3d07c5187f8d3d07c518 /* NpReadCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d07c5187f8d3d07c518 /* NpReadCheck.cpp */; };
+ FFFF3d07c5807f8d3d07c580 /* NpRigidDynamic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d07c5807f8d3d07c580 /* NpRigidDynamic.cpp */; };
+ FFFF3d07c5e87f8d3d07c5e8 /* NpRigidStatic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d07c5e87f8d3d07c5e8 /* NpRigidStatic.cpp */; };
+ FFFF3d07c6507f8d3d07c650 /* NpScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d07c6507f8d3d07c650 /* NpScene.cpp */; };
+ FFFF3d07c6b87f8d3d07c6b8 /* NpSceneQueries.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d07c6b87f8d3d07c6b8 /* NpSceneQueries.cpp */; };
+ FFFF3d07c7207f8d3d07c720 /* NpSerializerAdapter.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d07c7207f8d3d07c720 /* NpSerializerAdapter.cpp */; };
+ FFFF3d07c7887f8d3d07c788 /* NpShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d07c7887f8d3d07c788 /* NpShape.cpp */; };
+ FFFF3d07c7f07f8d3d07c7f0 /* NpShapeManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d07c7f07f8d3d07c7f0 /* NpShapeManager.cpp */; };
+ FFFF3d07c8587f8d3d07c858 /* NpSpatialIndex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d07c8587f8d3d07c858 /* NpSpatialIndex.cpp */; };
+ FFFF3d07c8c07f8d3d07c8c0 /* NpVolumeCache.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d07c8c07f8d3d07c8c0 /* NpVolumeCache.cpp */; };
+ FFFF3d07c9287f8d3d07c928 /* NpWriteCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d07c9287f8d3d07c928 /* NpWriteCheck.cpp */; };
+ FFFF3d07c9907f8d3d07c990 /* PvdMetaDataPvdBinding.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d07c9907f8d3d07c990 /* PvdMetaDataPvdBinding.cpp */; };
+ FFFF3d07c9f87f8d3d07c9f8 /* PvdPhysicsClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d07c9f87f8d3d07c9f8 /* PvdPhysicsClient.cpp */; };
+ FFFF3d07cc007f8d3d07cc00 /* particles/NpParticleFluid.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d07cc007f8d3d07cc00 /* particles/NpParticleFluid.cpp */; };
+ FFFF3d07cc687f8d3d07cc68 /* particles/NpParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d07cc687f8d3d07cc68 /* particles/NpParticleSystem.cpp */; };
+ FFFF3d07d4207f8d3d07d420 /* buffering/ScbActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d07d4207f8d3d07d420 /* buffering/ScbActor.cpp */; };
+ FFFF3d07d4887f8d3d07d488 /* buffering/ScbAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d07d4887f8d3d07d488 /* buffering/ScbAggregate.cpp */; };
+ FFFF3d07d4f07f8d3d07d4f0 /* buffering/ScbBase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d07d4f07f8d3d07d4f0 /* buffering/ScbBase.cpp */; };
+ FFFF3d07d5587f8d3d07d558 /* buffering/ScbCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d07d5587f8d3d07d558 /* buffering/ScbCloth.cpp */; };
+ FFFF3d07d5c07f8d3d07d5c0 /* buffering/ScbMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d07d5c07f8d3d07d5c0 /* buffering/ScbMetaData.cpp */; };
+ FFFF3d07d6287f8d3d07d628 /* buffering/ScbParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d07d6287f8d3d07d628 /* buffering/ScbParticleSystem.cpp */; };
+ FFFF3d07d6907f8d3d07d690 /* buffering/ScbScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d07d6907f8d3d07d690 /* buffering/ScbScene.cpp */; };
+ FFFF3d07d6f87f8d3d07d6f8 /* buffering/ScbScenePvdClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d07d6f87f8d3d07d6f8 /* buffering/ScbScenePvdClient.cpp */; };
+ FFFF3d07d7607f8d3d07d760 /* buffering/ScbShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d07d7607f8d3d07d760 /* buffering/ScbShape.cpp */; };
+ FFFF3d07d9007f8d3d07d900 /* cloth/NpCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d07d9007f8d3d07d900 /* cloth/NpCloth.cpp */; };
+ FFFF3d07d9687f8d3d07d968 /* cloth/NpClothFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d07d9687f8d3d07d968 /* cloth/NpClothFabric.cpp */; };
+ FFFF3d07d9d07f8d3d07d9d0 /* cloth/NpClothParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d07d9d07f8d3d07d9d0 /* cloth/NpClothParticleData.cpp */; };
+ FFFF3d07da387f8d3d07da38 /* ../../ImmediateMode/src/NpImmediateMode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d07da387f8d3d07da38 /* ../../ImmediateMode/src/NpImmediateMode.cpp */; };
+ FFFF3d0723a87f8d3d0723a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD3d0723a87f8d3d0723a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */; };
+ FFFF3d0724107f8d3d072410 /* core/src/PxMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD3d0724107f8d3d072410 /* core/src/PxMetaDataObjects.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFDd2c639507ff3d2c63950 /* PhysX */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysX"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFDd0a212007ff3d0a21200 /* NpActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.h"; path = "../../PhysX/src/NpActor.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a212687ff3d0a21268 /* NpActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActorTemplate.h"; path = "../../PhysX/src/NpActorTemplate.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a212d07ff3d0a212d0 /* NpAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.h"; path = "../../PhysX/src/NpAggregate.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a213387ff3d0a21338 /* NpArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.h"; path = "../../PhysX/src/NpArticulation.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a213a07ff3d0a213a0 /* NpArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.h"; path = "../../PhysX/src/NpArticulationJoint.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a214087ff3d0a21408 /* NpArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.h"; path = "../../PhysX/src/NpArticulationLink.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a214707ff3d0a21470 /* NpBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.h"; path = "../../PhysX/src/NpBatchQuery.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a214d87ff3d0a214d8 /* NpCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpCast.h"; path = "../../PhysX/src/NpCast.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a215407ff3d0a21540 /* NpConnector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConnector.h"; path = "../../PhysX/src/NpConnector.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a215a87ff3d0a215a8 /* NpConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.h"; path = "../../PhysX/src/NpConstraint.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a216107ff3d0a21610 /* NpFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.h"; path = "../../PhysX/src/NpFactory.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a216787ff3d0a21678 /* NpMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.h"; path = "../../PhysX/src/NpMaterial.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a216e07ff3d0a216e0 /* NpMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterialManager.h"; path = "../../PhysX/src/NpMaterialManager.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a217487ff3d0a21748 /* NpPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.h"; path = "../../PhysX/src/NpPhysics.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a217b07ff3d0a217b0 /* NpPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysicsInsertionCallback.h"; path = "../../PhysX/src/NpPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a218187ff3d0a21818 /* NpPtrTableStorageManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPtrTableStorageManager.h"; path = "../../PhysX/src/NpPtrTableStorageManager.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a218807ff3d0a21880 /* NpPvdSceneQueryCollector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.h"; path = "../../PhysX/src/NpPvdSceneQueryCollector.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a218e87ff3d0a218e8 /* NpQueryShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpQueryShared.h"; path = "../../PhysX/src/NpQueryShared.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a219507ff3d0a21950 /* NpReadCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.h"; path = "../../PhysX/src/NpReadCheck.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a219b87ff3d0a219b8 /* NpRigidActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplate.h"; path = "../../PhysX/src/NpRigidActorTemplate.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a21a207ff3d0a21a20 /* NpRigidActorTemplateInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplateInternal.h"; path = "../../PhysX/src/NpRigidActorTemplateInternal.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a21a887ff3d0a21a88 /* NpRigidBodyTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidBodyTemplate.h"; path = "../../PhysX/src/NpRigidBodyTemplate.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a21af07ff3d0a21af0 /* NpRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.h"; path = "../../PhysX/src/NpRigidDynamic.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a21b587ff3d0a21b58 /* NpRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.h"; path = "../../PhysX/src/NpRigidStatic.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a21bc07ff3d0a21bc0 /* NpScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.h"; path = "../../PhysX/src/NpScene.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a21c287ff3d0a21c28 /* NpSceneQueries.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.h"; path = "../../PhysX/src/NpSceneQueries.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a21c907ff3d0a21c90 /* NpShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.h"; path = "../../PhysX/src/NpShape.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a21cf87ff3d0a21cf8 /* NpShapeManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.h"; path = "../../PhysX/src/NpShapeManager.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a21d607ff3d0a21d60 /* NpSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.h"; path = "../../PhysX/src/NpSpatialIndex.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a21dc87ff3d0a21dc8 /* NpVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.h"; path = "../../PhysX/src/NpVolumeCache.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a21e307ff3d0a21e30 /* NpWriteCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.h"; path = "../../PhysX/src/NpWriteCheck.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a21e987ff3d0a21e98 /* PvdMetaDataBindingData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataBindingData.h"; path = "../../PhysX/src/PvdMetaDataBindingData.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a21f007ff3d0a21f00 /* PvdMetaDataPvdBinding.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.h"; path = "../../PhysX/src/PvdMetaDataPvdBinding.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a21f687ff3d0a21f68 /* PvdPhysicsClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.h"; path = "../../PhysX/src/PvdPhysicsClient.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a21fd07ff3d0a21fd0 /* PvdTypeNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdTypeNames.h"; path = "../../PhysX/src/PvdTypeNames.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a220387ff3d0a22038 /* NpActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.cpp"; path = "../../PhysX/src/NpActor.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a220a07ff3d0a220a0 /* NpAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.cpp"; path = "../../PhysX/src/NpAggregate.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a221087ff3d0a22108 /* NpArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.cpp"; path = "../../PhysX/src/NpArticulation.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a221707ff3d0a22170 /* NpArticulationJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.cpp"; path = "../../PhysX/src/NpArticulationJoint.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a221d87ff3d0a221d8 /* NpArticulationLink.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.cpp"; path = "../../PhysX/src/NpArticulationLink.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a222407ff3d0a22240 /* NpBatchQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.cpp"; path = "../../PhysX/src/NpBatchQuery.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a222a87ff3d0a222a8 /* NpConstraint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.cpp"; path = "../../PhysX/src/NpConstraint.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a223107ff3d0a22310 /* NpFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.cpp"; path = "../../PhysX/src/NpFactory.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a223787ff3d0a22378 /* NpMaterial.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.cpp"; path = "../../PhysX/src/NpMaterial.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a223e07ff3d0a223e0 /* NpMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMetaData.cpp"; path = "../../PhysX/src/NpMetaData.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a224487ff3d0a22448 /* NpPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.cpp"; path = "../../PhysX/src/NpPhysics.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a224b07ff3d0a224b0 /* NpPvdSceneQueryCollector.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.cpp"; path = "../../PhysX/src/NpPvdSceneQueryCollector.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a225187ff3d0a22518 /* NpReadCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.cpp"; path = "../../PhysX/src/NpReadCheck.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a225807ff3d0a22580 /* NpRigidDynamic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.cpp"; path = "../../PhysX/src/NpRigidDynamic.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a225e87ff3d0a225e8 /* NpRigidStatic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.cpp"; path = "../../PhysX/src/NpRigidStatic.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a226507ff3d0a22650 /* NpScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.cpp"; path = "../../PhysX/src/NpScene.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a226b87ff3d0a226b8 /* NpSceneQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.cpp"; path = "../../PhysX/src/NpSceneQueries.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a227207ff3d0a22720 /* NpSerializerAdapter.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSerializerAdapter.cpp"; path = "../../PhysX/src/NpSerializerAdapter.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a227887ff3d0a22788 /* NpShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.cpp"; path = "../../PhysX/src/NpShape.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a227f07ff3d0a227f0 /* NpShapeManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.cpp"; path = "../../PhysX/src/NpShapeManager.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a228587ff3d0a22858 /* NpSpatialIndex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.cpp"; path = "../../PhysX/src/NpSpatialIndex.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a228c07ff3d0a228c0 /* NpVolumeCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.cpp"; path = "../../PhysX/src/NpVolumeCache.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a229287ff3d0a22928 /* NpWriteCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.cpp"; path = "../../PhysX/src/NpWriteCheck.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a229907ff3d0a22990 /* PvdMetaDataPvdBinding.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.cpp"; path = "../../PhysX/src/PvdMetaDataPvdBinding.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a229f87ff3d0a229f8 /* PvdPhysicsClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.cpp"; path = "../../PhysX/src/PvdPhysicsClient.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a22a607ff3d0a22a60 /* particles/NpParticleBaseTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleBaseTemplate.h"; path = "../../PhysX/src/particles/NpParticleBaseTemplate.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a22ac87ff3d0a22ac8 /* particles/NpParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.h"; path = "../../PhysX/src/particles/NpParticleFluid.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a22b307ff3d0a22b30 /* particles/NpParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluidReadData.h"; path = "../../PhysX/src/particles/NpParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a22b987ff3d0a22b98 /* particles/NpParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.h"; path = "../../PhysX/src/particles/NpParticleSystem.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a22c007ff3d0a22c00 /* particles/NpParticleFluid.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.cpp"; path = "../../PhysX/src/particles/NpParticleFluid.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a22c687ff3d0a22c68 /* particles/NpParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.cpp"; path = "../../PhysX/src/particles/NpParticleSystem.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a22cd07ff3d0a22cd0 /* buffering/ScbActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.h"; path = "../../PhysX/src/buffering/ScbActor.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a22d387ff3d0a22d38 /* buffering/ScbAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.h"; path = "../../PhysX/src/buffering/ScbAggregate.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a22da07ff3d0a22da0 /* buffering/ScbArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulation.h"; path = "../../PhysX/src/buffering/ScbArticulation.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a22e087ff3d0a22e08 /* buffering/ScbArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulationJoint.h"; path = "../../PhysX/src/buffering/ScbArticulationJoint.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a22e707ff3d0a22e70 /* buffering/ScbBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.h"; path = "../../PhysX/src/buffering/ScbBase.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a22ed87ff3d0a22ed8 /* buffering/ScbBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBody.h"; path = "../../PhysX/src/buffering/ScbBody.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a22f407ff3d0a22f40 /* buffering/ScbCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.h"; path = "../../PhysX/src/buffering/ScbCloth.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a22fa87ff3d0a22fa8 /* buffering/ScbConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbConstraint.h"; path = "../../PhysX/src/buffering/ScbConstraint.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a230107ff3d0a23010 /* buffering/ScbDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbDefs.h"; path = "../../PhysX/src/buffering/ScbDefs.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a230787ff3d0a23078 /* buffering/ScbNpDeps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbNpDeps.h"; path = "../../PhysX/src/buffering/ScbNpDeps.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a230e07ff3d0a230e0 /* buffering/ScbParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.h"; path = "../../PhysX/src/buffering/ScbParticleSystem.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a231487ff3d0a23148 /* buffering/ScbRigidObject.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidObject.h"; path = "../../PhysX/src/buffering/ScbRigidObject.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a231b07ff3d0a231b0 /* buffering/ScbRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidStatic.h"; path = "../../PhysX/src/buffering/ScbRigidStatic.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a232187ff3d0a23218 /* buffering/ScbScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.h"; path = "../../PhysX/src/buffering/ScbScene.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a232807ff3d0a23280 /* buffering/ScbSceneBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbSceneBuffer.h"; path = "../../PhysX/src/buffering/ScbSceneBuffer.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a232e87ff3d0a232e8 /* buffering/ScbScenePvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.h"; path = "../../PhysX/src/buffering/ScbScenePvdClient.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a233507ff3d0a23350 /* buffering/ScbShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.h"; path = "../../PhysX/src/buffering/ScbShape.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a233b87ff3d0a233b8 /* buffering/ScbType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbType.h"; path = "../../PhysX/src/buffering/ScbType.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a234207ff3d0a23420 /* buffering/ScbActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.cpp"; path = "../../PhysX/src/buffering/ScbActor.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a234887ff3d0a23488 /* buffering/ScbAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.cpp"; path = "../../PhysX/src/buffering/ScbAggregate.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a234f07ff3d0a234f0 /* buffering/ScbBase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.cpp"; path = "../../PhysX/src/buffering/ScbBase.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a235587ff3d0a23558 /* buffering/ScbCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.cpp"; path = "../../PhysX/src/buffering/ScbCloth.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a235c07ff3d0a235c0 /* buffering/ScbMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbMetaData.cpp"; path = "../../PhysX/src/buffering/ScbMetaData.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a236287ff3d0a23628 /* buffering/ScbParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.cpp"; path = "../../PhysX/src/buffering/ScbParticleSystem.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a236907ff3d0a23690 /* buffering/ScbScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.cpp"; path = "../../PhysX/src/buffering/ScbScene.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a236f87ff3d0a236f8 /* buffering/ScbScenePvdClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.cpp"; path = "../../PhysX/src/buffering/ScbScenePvdClient.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a237607ff3d0a23760 /* buffering/ScbShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.cpp"; path = "../../PhysX/src/buffering/ScbShape.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a237c87ff3d0a237c8 /* cloth/NpCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.h"; path = "../../PhysX/src/cloth/NpCloth.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a238307ff3d0a23830 /* cloth/NpClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.h"; path = "../../PhysX/src/cloth/NpClothFabric.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a238987ff3d0a23898 /* cloth/NpClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.h"; path = "../../PhysX/src/cloth/NpClothParticleData.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a239007ff3d0a23900 /* cloth/NpCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.cpp"; path = "../../PhysX/src/cloth/NpCloth.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a239687ff3d0a23968 /* cloth/NpClothFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.cpp"; path = "../../PhysX/src/cloth/NpClothFabric.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a239d07ff3d0a239d0 /* cloth/NpClothParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.cpp"; path = "../../PhysX/src/cloth/NpClothParticleData.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a23a387ff3d0a23a38 /* ../../ImmediateMode/src/NpImmediateMode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "../../ImmediateMode/src/NpImmediateMode.cpp"; path = "../../ImmediateMode/src/NpImmediateMode.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1ec007ff3d0a1ec00 /* PxActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxActor.h"; path = "../../../Include/PxActor.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1ec687ff3d0a1ec68 /* PxAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAggregate.h"; path = "../../../Include/PxAggregate.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1ecd07ff3d0a1ecd0 /* PxArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulation.h"; path = "../../../Include/PxArticulation.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1ed387ff3d0a1ed38 /* PxArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationJoint.h"; path = "../../../Include/PxArticulationJoint.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1eda07ff3d0a1eda0 /* PxArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationLink.h"; path = "../../../Include/PxArticulationLink.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1ee087ff3d0a1ee08 /* PxBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQuery.h"; path = "../../../Include/PxBatchQuery.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1ee707ff3d0a1ee70 /* PxBatchQueryDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQueryDesc.h"; path = "../../../Include/PxBatchQueryDesc.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1eed87ff3d0a1eed8 /* PxBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhase.h"; path = "../../../Include/PxBroadPhase.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1ef407ff3d0a1ef40 /* PxClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClient.h"; path = "../../../Include/PxClient.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1efa87ff3d0a1efa8 /* PxConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraint.h"; path = "../../../Include/PxConstraint.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1f0107ff3d0a1f010 /* PxConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintDesc.h"; path = "../../../Include/PxConstraintDesc.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1f0787ff3d0a1f078 /* PxContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContact.h"; path = "../../../Include/PxContact.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1f0e07ff3d0a1f0e0 /* PxContactModifyCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContactModifyCallback.h"; path = "../../../Include/PxContactModifyCallback.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1f1487ff3d0a1f148 /* PxDeletionListener.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDeletionListener.h"; path = "../../../Include/PxDeletionListener.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1f1b07ff3d0a1f1b0 /* PxFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFiltering.h"; path = "../../../Include/PxFiltering.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1f2187ff3d0a1f218 /* PxForceMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxForceMode.h"; path = "../../../Include/PxForceMode.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1f2807ff3d0a1f280 /* PxImmediateMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxImmediateMode.h"; path = "../../../Include/PxImmediateMode.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1f2e87ff3d0a1f2e8 /* PxLockedData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxLockedData.h"; path = "../../../Include/PxLockedData.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1f3507ff3d0a1f350 /* PxMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMaterial.h"; path = "../../../Include/PxMaterial.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1f3b87ff3d0a1f3b8 /* PxPhysXConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysXConfig.h"; path = "../../../Include/PxPhysXConfig.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1f4207ff3d0a1f420 /* PxPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysics.h"; path = "../../../Include/PxPhysics.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1f4887ff3d0a1f488 /* PxPhysicsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsAPI.h"; path = "../../../Include/PxPhysicsAPI.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1f4f07ff3d0a1f4f0 /* PxPhysicsSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsSerialization.h"; path = "../../../Include/PxPhysicsSerialization.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1f5587ff3d0a1f558 /* PxPhysicsVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsVersion.h"; path = "../../../Include/PxPhysicsVersion.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1f5c07ff3d0a1f5c0 /* PxPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPruningStructure.h"; path = "../../../Include/PxPruningStructure.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1f6287ff3d0a1f628 /* PxQueryFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryFiltering.h"; path = "../../../Include/PxQueryFiltering.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1f6907ff3d0a1f690 /* PxQueryReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryReport.h"; path = "../../../Include/PxQueryReport.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1f6f87ff3d0a1f6f8 /* PxRigidActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActor.h"; path = "../../../Include/PxRigidActor.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1f7607ff3d0a1f760 /* PxRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBody.h"; path = "../../../Include/PxRigidBody.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1f7c87ff3d0a1f7c8 /* PxRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidDynamic.h"; path = "../../../Include/PxRigidDynamic.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1f8307ff3d0a1f830 /* PxRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidStatic.h"; path = "../../../Include/PxRigidStatic.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1f8987ff3d0a1f898 /* PxScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxScene.h"; path = "../../../Include/PxScene.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1f9007ff3d0a1f900 /* PxSceneDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneDesc.h"; path = "../../../Include/PxSceneDesc.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1f9687ff3d0a1f968 /* PxSceneLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneLock.h"; path = "../../../Include/PxSceneLock.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1f9d07ff3d0a1f9d0 /* PxShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShape.h"; path = "../../../Include/PxShape.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1fa387ff3d0a1fa38 /* PxSimulationEventCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationEventCallback.h"; path = "../../../Include/PxSimulationEventCallback.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1faa07ff3d0a1faa0 /* PxSimulationStatistics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationStatistics.h"; path = "../../../Include/PxSimulationStatistics.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1fb087ff3d0a1fb08 /* PxSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSpatialIndex.h"; path = "../../../Include/PxSpatialIndex.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1fb707ff3d0a1fb70 /* PxVisualizationParameter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVisualizationParameter.h"; path = "../../../Include/PxVisualizationParameter.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1fbd87ff3d0a1fbd8 /* PxVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVolumeCache.h"; path = "../../../Include/PxVolumeCache.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1fc407ff3d0a1fc40 /* particles/PxParticleBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBase.h"; path = "../../../Include/particles/PxParticleBase.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1fca87ff3d0a1fca8 /* particles/PxParticleBaseFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBaseFlag.h"; path = "../../../Include/particles/PxParticleBaseFlag.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1fd107ff3d0a1fd10 /* particles/PxParticleCreationData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleCreationData.h"; path = "../../../Include/particles/PxParticleCreationData.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1fd787ff3d0a1fd78 /* particles/PxParticleFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFlag.h"; path = "../../../Include/particles/PxParticleFlag.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1fde07ff3d0a1fde0 /* particles/PxParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluid.h"; path = "../../../Include/particles/PxParticleFluid.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1fe487ff3d0a1fe48 /* particles/PxParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluidReadData.h"; path = "../../../Include/particles/PxParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1feb07ff3d0a1feb0 /* particles/PxParticleReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleReadData.h"; path = "../../../Include/particles/PxParticleReadData.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1ff187ff3d0a1ff18 /* particles/PxParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleSystem.h"; path = "../../../Include/particles/PxParticleSystem.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1ff807ff3d0a1ff80 /* pvd/PxPvdSceneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pvd/PxPvdSceneClient.h"; path = "../../../Include/pvd/PxPvdSceneClient.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1ffe87ff3d0a1ffe8 /* cloth/PxCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxCloth.h"; path = "../../../Include/cloth/PxCloth.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a200507ff3d0a20050 /* cloth/PxClothCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothCollisionData.h"; path = "../../../Include/cloth/PxClothCollisionData.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a200b87ff3d0a200b8 /* cloth/PxClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothFabric.h"; path = "../../../Include/cloth/PxClothFabric.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a201207ff3d0a20120 /* cloth/PxClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothParticleData.h"; path = "../../../Include/cloth/PxClothParticleData.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a201887ff3d0a20188 /* cloth/PxClothTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothTypes.h"; path = "../../../Include/cloth/PxClothTypes.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1dc007ff3d0a1dc00 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1dc687ff3d0a1dc68 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1dcd07ff3d0a1dcd0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1dd387ff3d0a1dd38 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1dda07ff3d0a1dda0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1de087ff3d0a1de08 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1de707ff3d0a1de70 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1ded87ff3d0a1ded8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1df407ff3d0a1df40 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1dfa87ff3d0a1dfa8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "core/src/PxAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXMetaData/core/src/PxAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1e0107ff3d0a1e010 /* core/src/PxMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "core/src/PxMetaDataObjects.cpp"; path = "../../PhysXMetaData/core/src/PxMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3daca7207f8d3daca720 /* PhysX */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysX"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFD3d07b2007f8d3d07b200 /* NpActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.h"; path = "../../PhysX/src/NpActor.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07b2687f8d3d07b268 /* NpActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActorTemplate.h"; path = "../../PhysX/src/NpActorTemplate.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07b2d07f8d3d07b2d0 /* NpAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.h"; path = "../../PhysX/src/NpAggregate.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07b3387f8d3d07b338 /* NpArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.h"; path = "../../PhysX/src/NpArticulation.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07b3a07f8d3d07b3a0 /* NpArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.h"; path = "../../PhysX/src/NpArticulationJoint.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07b4087f8d3d07b408 /* NpArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.h"; path = "../../PhysX/src/NpArticulationLink.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07b4707f8d3d07b470 /* NpBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.h"; path = "../../PhysX/src/NpBatchQuery.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07b4d87f8d3d07b4d8 /* NpCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpCast.h"; path = "../../PhysX/src/NpCast.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07b5407f8d3d07b540 /* NpConnector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConnector.h"; path = "../../PhysX/src/NpConnector.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07b5a87f8d3d07b5a8 /* NpConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.h"; path = "../../PhysX/src/NpConstraint.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07b6107f8d3d07b610 /* NpFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.h"; path = "../../PhysX/src/NpFactory.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07b6787f8d3d07b678 /* NpMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.h"; path = "../../PhysX/src/NpMaterial.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07b6e07f8d3d07b6e0 /* NpMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterialManager.h"; path = "../../PhysX/src/NpMaterialManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07b7487f8d3d07b748 /* NpPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.h"; path = "../../PhysX/src/NpPhysics.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07b7b07f8d3d07b7b0 /* NpPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysicsInsertionCallback.h"; path = "../../PhysX/src/NpPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07b8187f8d3d07b818 /* NpPtrTableStorageManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPtrTableStorageManager.h"; path = "../../PhysX/src/NpPtrTableStorageManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07b8807f8d3d07b880 /* NpPvdSceneQueryCollector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.h"; path = "../../PhysX/src/NpPvdSceneQueryCollector.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07b8e87f8d3d07b8e8 /* NpQueryShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpQueryShared.h"; path = "../../PhysX/src/NpQueryShared.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07b9507f8d3d07b950 /* NpReadCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.h"; path = "../../PhysX/src/NpReadCheck.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07b9b87f8d3d07b9b8 /* NpRigidActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplate.h"; path = "../../PhysX/src/NpRigidActorTemplate.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07ba207f8d3d07ba20 /* NpRigidActorTemplateInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplateInternal.h"; path = "../../PhysX/src/NpRigidActorTemplateInternal.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07ba887f8d3d07ba88 /* NpRigidBodyTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidBodyTemplate.h"; path = "../../PhysX/src/NpRigidBodyTemplate.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07baf07f8d3d07baf0 /* NpRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.h"; path = "../../PhysX/src/NpRigidDynamic.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07bb587f8d3d07bb58 /* NpRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.h"; path = "../../PhysX/src/NpRigidStatic.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07bbc07f8d3d07bbc0 /* NpScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.h"; path = "../../PhysX/src/NpScene.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07bc287f8d3d07bc28 /* NpSceneQueries.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.h"; path = "../../PhysX/src/NpSceneQueries.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07bc907f8d3d07bc90 /* NpShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.h"; path = "../../PhysX/src/NpShape.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07bcf87f8d3d07bcf8 /* NpShapeManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.h"; path = "../../PhysX/src/NpShapeManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07bd607f8d3d07bd60 /* NpSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.h"; path = "../../PhysX/src/NpSpatialIndex.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07bdc87f8d3d07bdc8 /* NpVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.h"; path = "../../PhysX/src/NpVolumeCache.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07be307f8d3d07be30 /* NpWriteCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.h"; path = "../../PhysX/src/NpWriteCheck.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07be987f8d3d07be98 /* PvdMetaDataBindingData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataBindingData.h"; path = "../../PhysX/src/PvdMetaDataBindingData.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07bf007f8d3d07bf00 /* PvdMetaDataPvdBinding.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.h"; path = "../../PhysX/src/PvdMetaDataPvdBinding.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07bf687f8d3d07bf68 /* PvdPhysicsClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.h"; path = "../../PhysX/src/PvdPhysicsClient.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07bfd07f8d3d07bfd0 /* PvdTypeNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdTypeNames.h"; path = "../../PhysX/src/PvdTypeNames.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07c0387f8d3d07c038 /* NpActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.cpp"; path = "../../PhysX/src/NpActor.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07c0a07f8d3d07c0a0 /* NpAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.cpp"; path = "../../PhysX/src/NpAggregate.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07c1087f8d3d07c108 /* NpArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.cpp"; path = "../../PhysX/src/NpArticulation.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07c1707f8d3d07c170 /* NpArticulationJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.cpp"; path = "../../PhysX/src/NpArticulationJoint.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07c1d87f8d3d07c1d8 /* NpArticulationLink.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.cpp"; path = "../../PhysX/src/NpArticulationLink.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07c2407f8d3d07c240 /* NpBatchQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.cpp"; path = "../../PhysX/src/NpBatchQuery.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07c2a87f8d3d07c2a8 /* NpConstraint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.cpp"; path = "../../PhysX/src/NpConstraint.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07c3107f8d3d07c310 /* NpFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.cpp"; path = "../../PhysX/src/NpFactory.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07c3787f8d3d07c378 /* NpMaterial.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.cpp"; path = "../../PhysX/src/NpMaterial.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07c3e07f8d3d07c3e0 /* NpMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMetaData.cpp"; path = "../../PhysX/src/NpMetaData.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07c4487f8d3d07c448 /* NpPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.cpp"; path = "../../PhysX/src/NpPhysics.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07c4b07f8d3d07c4b0 /* NpPvdSceneQueryCollector.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.cpp"; path = "../../PhysX/src/NpPvdSceneQueryCollector.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07c5187f8d3d07c518 /* NpReadCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.cpp"; path = "../../PhysX/src/NpReadCheck.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07c5807f8d3d07c580 /* NpRigidDynamic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.cpp"; path = "../../PhysX/src/NpRigidDynamic.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07c5e87f8d3d07c5e8 /* NpRigidStatic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.cpp"; path = "../../PhysX/src/NpRigidStatic.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07c6507f8d3d07c650 /* NpScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.cpp"; path = "../../PhysX/src/NpScene.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07c6b87f8d3d07c6b8 /* NpSceneQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.cpp"; path = "../../PhysX/src/NpSceneQueries.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07c7207f8d3d07c720 /* NpSerializerAdapter.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSerializerAdapter.cpp"; path = "../../PhysX/src/NpSerializerAdapter.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07c7887f8d3d07c788 /* NpShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.cpp"; path = "../../PhysX/src/NpShape.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07c7f07f8d3d07c7f0 /* NpShapeManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.cpp"; path = "../../PhysX/src/NpShapeManager.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07c8587f8d3d07c858 /* NpSpatialIndex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.cpp"; path = "../../PhysX/src/NpSpatialIndex.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07c8c07f8d3d07c8c0 /* NpVolumeCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.cpp"; path = "../../PhysX/src/NpVolumeCache.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07c9287f8d3d07c928 /* NpWriteCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.cpp"; path = "../../PhysX/src/NpWriteCheck.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07c9907f8d3d07c990 /* PvdMetaDataPvdBinding.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.cpp"; path = "../../PhysX/src/PvdMetaDataPvdBinding.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07c9f87f8d3d07c9f8 /* PvdPhysicsClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.cpp"; path = "../../PhysX/src/PvdPhysicsClient.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07ca607f8d3d07ca60 /* particles/NpParticleBaseTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleBaseTemplate.h"; path = "../../PhysX/src/particles/NpParticleBaseTemplate.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07cac87f8d3d07cac8 /* particles/NpParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.h"; path = "../../PhysX/src/particles/NpParticleFluid.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07cb307f8d3d07cb30 /* particles/NpParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluidReadData.h"; path = "../../PhysX/src/particles/NpParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07cb987f8d3d07cb98 /* particles/NpParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.h"; path = "../../PhysX/src/particles/NpParticleSystem.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07cc007f8d3d07cc00 /* particles/NpParticleFluid.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.cpp"; path = "../../PhysX/src/particles/NpParticleFluid.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07cc687f8d3d07cc68 /* particles/NpParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.cpp"; path = "../../PhysX/src/particles/NpParticleSystem.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07ccd07f8d3d07ccd0 /* buffering/ScbActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.h"; path = "../../PhysX/src/buffering/ScbActor.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07cd387f8d3d07cd38 /* buffering/ScbAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.h"; path = "../../PhysX/src/buffering/ScbAggregate.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07cda07f8d3d07cda0 /* buffering/ScbArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulation.h"; path = "../../PhysX/src/buffering/ScbArticulation.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07ce087f8d3d07ce08 /* buffering/ScbArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulationJoint.h"; path = "../../PhysX/src/buffering/ScbArticulationJoint.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07ce707f8d3d07ce70 /* buffering/ScbBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.h"; path = "../../PhysX/src/buffering/ScbBase.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07ced87f8d3d07ced8 /* buffering/ScbBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBody.h"; path = "../../PhysX/src/buffering/ScbBody.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07cf407f8d3d07cf40 /* buffering/ScbCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.h"; path = "../../PhysX/src/buffering/ScbCloth.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07cfa87f8d3d07cfa8 /* buffering/ScbConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbConstraint.h"; path = "../../PhysX/src/buffering/ScbConstraint.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07d0107f8d3d07d010 /* buffering/ScbDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbDefs.h"; path = "../../PhysX/src/buffering/ScbDefs.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07d0787f8d3d07d078 /* buffering/ScbNpDeps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbNpDeps.h"; path = "../../PhysX/src/buffering/ScbNpDeps.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07d0e07f8d3d07d0e0 /* buffering/ScbParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.h"; path = "../../PhysX/src/buffering/ScbParticleSystem.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07d1487f8d3d07d148 /* buffering/ScbRigidObject.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidObject.h"; path = "../../PhysX/src/buffering/ScbRigidObject.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07d1b07f8d3d07d1b0 /* buffering/ScbRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidStatic.h"; path = "../../PhysX/src/buffering/ScbRigidStatic.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07d2187f8d3d07d218 /* buffering/ScbScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.h"; path = "../../PhysX/src/buffering/ScbScene.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07d2807f8d3d07d280 /* buffering/ScbSceneBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbSceneBuffer.h"; path = "../../PhysX/src/buffering/ScbSceneBuffer.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07d2e87f8d3d07d2e8 /* buffering/ScbScenePvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.h"; path = "../../PhysX/src/buffering/ScbScenePvdClient.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07d3507f8d3d07d350 /* buffering/ScbShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.h"; path = "../../PhysX/src/buffering/ScbShape.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07d3b87f8d3d07d3b8 /* buffering/ScbType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbType.h"; path = "../../PhysX/src/buffering/ScbType.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07d4207f8d3d07d420 /* buffering/ScbActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.cpp"; path = "../../PhysX/src/buffering/ScbActor.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07d4887f8d3d07d488 /* buffering/ScbAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.cpp"; path = "../../PhysX/src/buffering/ScbAggregate.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07d4f07f8d3d07d4f0 /* buffering/ScbBase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.cpp"; path = "../../PhysX/src/buffering/ScbBase.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07d5587f8d3d07d558 /* buffering/ScbCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.cpp"; path = "../../PhysX/src/buffering/ScbCloth.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07d5c07f8d3d07d5c0 /* buffering/ScbMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbMetaData.cpp"; path = "../../PhysX/src/buffering/ScbMetaData.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07d6287f8d3d07d628 /* buffering/ScbParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.cpp"; path = "../../PhysX/src/buffering/ScbParticleSystem.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07d6907f8d3d07d690 /* buffering/ScbScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.cpp"; path = "../../PhysX/src/buffering/ScbScene.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07d6f87f8d3d07d6f8 /* buffering/ScbScenePvdClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.cpp"; path = "../../PhysX/src/buffering/ScbScenePvdClient.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07d7607f8d3d07d760 /* buffering/ScbShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.cpp"; path = "../../PhysX/src/buffering/ScbShape.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07d7c87f8d3d07d7c8 /* cloth/NpCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.h"; path = "../../PhysX/src/cloth/NpCloth.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07d8307f8d3d07d830 /* cloth/NpClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.h"; path = "../../PhysX/src/cloth/NpClothFabric.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07d8987f8d3d07d898 /* cloth/NpClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.h"; path = "../../PhysX/src/cloth/NpClothParticleData.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07d9007f8d3d07d900 /* cloth/NpCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.cpp"; path = "../../PhysX/src/cloth/NpCloth.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07d9687f8d3d07d968 /* cloth/NpClothFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.cpp"; path = "../../PhysX/src/cloth/NpClothFabric.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07d9d07f8d3d07d9d0 /* cloth/NpClothParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.cpp"; path = "../../PhysX/src/cloth/NpClothParticleData.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07da387f8d3d07da38 /* ../../ImmediateMode/src/NpImmediateMode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "../../ImmediateMode/src/NpImmediateMode.cpp"; path = "../../ImmediateMode/src/NpImmediateMode.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d074a007f8d3d074a00 /* PxActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxActor.h"; path = "../../../Include/PxActor.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d074a687f8d3d074a68 /* PxAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAggregate.h"; path = "../../../Include/PxAggregate.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d074ad07f8d3d074ad0 /* PxArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulation.h"; path = "../../../Include/PxArticulation.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d074b387f8d3d074b38 /* PxArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationJoint.h"; path = "../../../Include/PxArticulationJoint.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d074ba07f8d3d074ba0 /* PxArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationLink.h"; path = "../../../Include/PxArticulationLink.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d074c087f8d3d074c08 /* PxBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQuery.h"; path = "../../../Include/PxBatchQuery.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d074c707f8d3d074c70 /* PxBatchQueryDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQueryDesc.h"; path = "../../../Include/PxBatchQueryDesc.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d074cd87f8d3d074cd8 /* PxBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhase.h"; path = "../../../Include/PxBroadPhase.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d074d407f8d3d074d40 /* PxClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClient.h"; path = "../../../Include/PxClient.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d074da87f8d3d074da8 /* PxConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraint.h"; path = "../../../Include/PxConstraint.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d074e107f8d3d074e10 /* PxConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintDesc.h"; path = "../../../Include/PxConstraintDesc.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d074e787f8d3d074e78 /* PxContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContact.h"; path = "../../../Include/PxContact.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d074ee07f8d3d074ee0 /* PxContactModifyCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContactModifyCallback.h"; path = "../../../Include/PxContactModifyCallback.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d074f487f8d3d074f48 /* PxDeletionListener.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDeletionListener.h"; path = "../../../Include/PxDeletionListener.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d074fb07f8d3d074fb0 /* PxFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFiltering.h"; path = "../../../Include/PxFiltering.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0750187f8d3d075018 /* PxForceMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxForceMode.h"; path = "../../../Include/PxForceMode.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0750807f8d3d075080 /* PxImmediateMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxImmediateMode.h"; path = "../../../Include/PxImmediateMode.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0750e87f8d3d0750e8 /* PxLockedData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxLockedData.h"; path = "../../../Include/PxLockedData.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0751507f8d3d075150 /* PxMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMaterial.h"; path = "../../../Include/PxMaterial.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0751b87f8d3d0751b8 /* PxPhysXConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysXConfig.h"; path = "../../../Include/PxPhysXConfig.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0752207f8d3d075220 /* PxPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysics.h"; path = "../../../Include/PxPhysics.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0752887f8d3d075288 /* PxPhysicsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsAPI.h"; path = "../../../Include/PxPhysicsAPI.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0752f07f8d3d0752f0 /* PxPhysicsSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsSerialization.h"; path = "../../../Include/PxPhysicsSerialization.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0753587f8d3d075358 /* PxPhysicsVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsVersion.h"; path = "../../../Include/PxPhysicsVersion.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0753c07f8d3d0753c0 /* PxPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPruningStructure.h"; path = "../../../Include/PxPruningStructure.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0754287f8d3d075428 /* PxQueryFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryFiltering.h"; path = "../../../Include/PxQueryFiltering.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0754907f8d3d075490 /* PxQueryReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryReport.h"; path = "../../../Include/PxQueryReport.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0754f87f8d3d0754f8 /* PxRigidActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActor.h"; path = "../../../Include/PxRigidActor.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0755607f8d3d075560 /* PxRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBody.h"; path = "../../../Include/PxRigidBody.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0755c87f8d3d0755c8 /* PxRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidDynamic.h"; path = "../../../Include/PxRigidDynamic.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0756307f8d3d075630 /* PxRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidStatic.h"; path = "../../../Include/PxRigidStatic.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0756987f8d3d075698 /* PxScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxScene.h"; path = "../../../Include/PxScene.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0757007f8d3d075700 /* PxSceneDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneDesc.h"; path = "../../../Include/PxSceneDesc.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0757687f8d3d075768 /* PxSceneLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneLock.h"; path = "../../../Include/PxSceneLock.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0757d07f8d3d0757d0 /* PxShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShape.h"; path = "../../../Include/PxShape.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0758387f8d3d075838 /* PxSimulationEventCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationEventCallback.h"; path = "../../../Include/PxSimulationEventCallback.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0758a07f8d3d0758a0 /* PxSimulationStatistics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationStatistics.h"; path = "../../../Include/PxSimulationStatistics.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0759087f8d3d075908 /* PxSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSpatialIndex.h"; path = "../../../Include/PxSpatialIndex.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0759707f8d3d075970 /* PxVisualizationParameter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVisualizationParameter.h"; path = "../../../Include/PxVisualizationParameter.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0759d87f8d3d0759d8 /* PxVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVolumeCache.h"; path = "../../../Include/PxVolumeCache.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d075a407f8d3d075a40 /* particles/PxParticleBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBase.h"; path = "../../../Include/particles/PxParticleBase.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d075aa87f8d3d075aa8 /* particles/PxParticleBaseFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBaseFlag.h"; path = "../../../Include/particles/PxParticleBaseFlag.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d075b107f8d3d075b10 /* particles/PxParticleCreationData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleCreationData.h"; path = "../../../Include/particles/PxParticleCreationData.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d075b787f8d3d075b78 /* particles/PxParticleFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFlag.h"; path = "../../../Include/particles/PxParticleFlag.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d075be07f8d3d075be0 /* particles/PxParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluid.h"; path = "../../../Include/particles/PxParticleFluid.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d075c487f8d3d075c48 /* particles/PxParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluidReadData.h"; path = "../../../Include/particles/PxParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d075cb07f8d3d075cb0 /* particles/PxParticleReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleReadData.h"; path = "../../../Include/particles/PxParticleReadData.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d075d187f8d3d075d18 /* particles/PxParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleSystem.h"; path = "../../../Include/particles/PxParticleSystem.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d075d807f8d3d075d80 /* pvd/PxPvdSceneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pvd/PxPvdSceneClient.h"; path = "../../../Include/pvd/PxPvdSceneClient.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d075de87f8d3d075de8 /* cloth/PxCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxCloth.h"; path = "../../../Include/cloth/PxCloth.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d075e507f8d3d075e50 /* cloth/PxClothCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothCollisionData.h"; path = "../../../Include/cloth/PxClothCollisionData.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d075eb87f8d3d075eb8 /* cloth/PxClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothFabric.h"; path = "../../../Include/cloth/PxClothFabric.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d075f207f8d3d075f20 /* cloth/PxClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothParticleData.h"; path = "../../../Include/cloth/PxClothParticleData.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d075f887f8d3d075f88 /* cloth/PxClothTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothTypes.h"; path = "../../../Include/cloth/PxClothTypes.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0720007f8d3d072000 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0720687f8d3d072068 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0720d07f8d3d0720d0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0721387f8d3d072138 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0721a07f8d3d0721a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0722087f8d3d072208 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0722707f8d3d072270 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0722d87f8d3d0722d8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0723407f8d3d072340 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0723a87f8d3d0723a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "core/src/PxAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXMetaData/core/src/PxAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0724107f8d3d072410 /* 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 */
- FFF2d2c639507ff3d2c63950 /* Resources */ = {
+ FFF23daca7207f8d3daca720 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -233,7 +233,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFCd2c639507ff3d2c63950 /* Frameworks */ = {
+ FFFC3daca7207f8d3daca720 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -243,52 +243,52 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF8d2c639507ff3d2c63950 /* Sources */ = {
+ FFF83daca7207f8d3daca720 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFFd0a220387ff3d0a22038,
- FFFFd0a220a07ff3d0a220a0,
- FFFFd0a221087ff3d0a22108,
- FFFFd0a221707ff3d0a22170,
- FFFFd0a221d87ff3d0a221d8,
- FFFFd0a222407ff3d0a22240,
- FFFFd0a222a87ff3d0a222a8,
- FFFFd0a223107ff3d0a22310,
- FFFFd0a223787ff3d0a22378,
- FFFFd0a223e07ff3d0a223e0,
- FFFFd0a224487ff3d0a22448,
- FFFFd0a224b07ff3d0a224b0,
- FFFFd0a225187ff3d0a22518,
- FFFFd0a225807ff3d0a22580,
- FFFFd0a225e87ff3d0a225e8,
- FFFFd0a226507ff3d0a22650,
- FFFFd0a226b87ff3d0a226b8,
- FFFFd0a227207ff3d0a22720,
- FFFFd0a227887ff3d0a22788,
- FFFFd0a227f07ff3d0a227f0,
- FFFFd0a228587ff3d0a22858,
- FFFFd0a228c07ff3d0a228c0,
- FFFFd0a229287ff3d0a22928,
- FFFFd0a229907ff3d0a22990,
- FFFFd0a229f87ff3d0a229f8,
- FFFFd0a22c007ff3d0a22c00,
- FFFFd0a22c687ff3d0a22c68,
- FFFFd0a234207ff3d0a23420,
- FFFFd0a234887ff3d0a23488,
- FFFFd0a234f07ff3d0a234f0,
- FFFFd0a235587ff3d0a23558,
- FFFFd0a235c07ff3d0a235c0,
- FFFFd0a236287ff3d0a23628,
- FFFFd0a236907ff3d0a23690,
- FFFFd0a236f87ff3d0a236f8,
- FFFFd0a237607ff3d0a23760,
- FFFFd0a239007ff3d0a23900,
- FFFFd0a239687ff3d0a23968,
- FFFFd0a239d07ff3d0a239d0,
- FFFFd0a23a387ff3d0a23a38,
- FFFFd0a1dfa87ff3d0a1dfa8,
- FFFFd0a1e0107ff3d0a1e010,
+ FFFF3d07c0387f8d3d07c038,
+ FFFF3d07c0a07f8d3d07c0a0,
+ FFFF3d07c1087f8d3d07c108,
+ FFFF3d07c1707f8d3d07c170,
+ FFFF3d07c1d87f8d3d07c1d8,
+ FFFF3d07c2407f8d3d07c240,
+ FFFF3d07c2a87f8d3d07c2a8,
+ FFFF3d07c3107f8d3d07c310,
+ FFFF3d07c3787f8d3d07c378,
+ FFFF3d07c3e07f8d3d07c3e0,
+ FFFF3d07c4487f8d3d07c448,
+ FFFF3d07c4b07f8d3d07c4b0,
+ FFFF3d07c5187f8d3d07c518,
+ FFFF3d07c5807f8d3d07c580,
+ FFFF3d07c5e87f8d3d07c5e8,
+ FFFF3d07c6507f8d3d07c650,
+ FFFF3d07c6b87f8d3d07c6b8,
+ FFFF3d07c7207f8d3d07c720,
+ FFFF3d07c7887f8d3d07c788,
+ FFFF3d07c7f07f8d3d07c7f0,
+ FFFF3d07c8587f8d3d07c858,
+ FFFF3d07c8c07f8d3d07c8c0,
+ FFFF3d07c9287f8d3d07c928,
+ FFFF3d07c9907f8d3d07c990,
+ FFFF3d07c9f87f8d3d07c9f8,
+ FFFF3d07cc007f8d3d07cc00,
+ FFFF3d07cc687f8d3d07cc68,
+ FFFF3d07d4207f8d3d07d420,
+ FFFF3d07d4887f8d3d07d488,
+ FFFF3d07d4f07f8d3d07d4f0,
+ FFFF3d07d5587f8d3d07d558,
+ FFFF3d07d5c07f8d3d07d5c0,
+ FFFF3d07d6287f8d3d07d628,
+ FFFF3d07d6907f8d3d07d690,
+ FFFF3d07d6f87f8d3d07d6f8,
+ FFFF3d07d7607f8d3d07d760,
+ FFFF3d07d9007f8d3d07d900,
+ FFFF3d07d9687f8d3d07d968,
+ FFFF3d07d9d07f8d3d07d9d0,
+ FFFF3d07da387f8d3d07da38,
+ FFFF3d0723a87f8d3d0723a8,
+ FFFF3d0724107f8d3d072410,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -297,112 +297,112 @@
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
- FFF4d2c6cb107ff3d2c6cb10 /* PBXTargetDependency */ = {
+ FFF43dad38e07f8d3dad38e0 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFAd1610fe07ff3d1610fe0 /* LowLevel */;
- targetProxy = FFF5d1610fe07ff3d1610fe0 /* PBXContainerItemProxy */;
+ target = FFFA3cc0c2b07f8d3cc0c2b0 /* LowLevel */;
+ targetProxy = FFF53cc0c2b07f8d3cc0c2b0 /* PBXContainerItemProxy */;
};
- FFF4d2c6f5e07ff3d2c6f5e0 /* PBXTargetDependency */ = {
+ FFF43dad63b07f8d3dad63b0 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFAd1635bb07ff3d1635bb0 /* LowLevelAABB */;
- targetProxy = FFF5d1635bb07ff3d1635bb0 /* PBXContainerItemProxy */;
+ target = FFFA3cf17c907f8d3cf17c90 /* LowLevelAABB */;
+ targetProxy = FFF53cf17c907f8d3cf17c90 /* PBXContainerItemProxy */;
};
- FFF4d2c6f6a07ff3d2c6f6a0 /* PBXTargetDependency */ = {
+ FFF43dad64707f8d3dad6470 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFAd16276007ff3d1627600 /* LowLevelCloth */;
- targetProxy = FFF5d16276007ff3d1627600 /* PBXContainerItemProxy */;
+ target = FFFA3b43b7807f8d3b43b780 /* LowLevelCloth */;
+ targetProxy = FFF53b43b7807f8d3b43b780 /* PBXContainerItemProxy */;
};
- FFF4d2c6f6407ff3d2c6f640 /* PBXTargetDependency */ = {
+ FFF43dad64107f8d3dad6410 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFAd14331607ff3d1433160 /* LowLevelDynamics */;
- targetProxy = FFF5d14331607ff3d1433160 /* PBXContainerItemProxy */;
+ target = FFFA3cf3b3a07f8d3cf3b3a0 /* LowLevelDynamics */;
+ targetProxy = FFF53cf3b3a07f8d3cf3b3a0 /* PBXContainerItemProxy */;
};
- FFF4d2c6c3c07ff3d2c6c3c0 /* PBXTargetDependency */ = {
+ FFF43dad31907f8d3dad3190 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFAd1664d207ff3d1664d20 /* LowLevelParticles */;
- targetProxy = FFF5d1664d207ff3d1664d20 /* PBXContainerItemProxy */;
+ target = FFFA3cf5d0c07f8d3cf5d0c0 /* LowLevelParticles */;
+ targetProxy = FFF53cf5d0c07f8d3cf5d0c0 /* PBXContainerItemProxy */;
};
- FFF4d2c6cab07ff3d2c6cab0 /* PBXTargetDependency */ = {
+ FFF43dad38807f8d3dad3880 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFAd10a67707ff3d10a6770 /* PhysXCommon */;
- targetProxy = FFF5d10a67707ff3d10a6770 /* PBXContainerItemProxy */;
+ target = FFFA3c99d3f07f8d3c99d3f0 /* PhysXCommon */;
+ targetProxy = FFF53c99d3f07f8d3c99d3f0 /* PBXContainerItemProxy */;
};
- FFF4d2c63c407ff3d2c63c40 /* PBXTargetDependency */ = {
+ FFF43dacaa107f8d3dacaa10 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFAd108e7507ff3d108e750 /* PxFoundation */;
- targetProxy = FFF5d108e7507ff3d108e750 /* PBXContainerItemProxy */;
+ target = FFFA3c9892007f8d3c989200 /* PxFoundation */;
+ targetProxy = FFF53c9892007f8d3c989200 /* PBXContainerItemProxy */;
};
- FFF4d2c638f07ff3d2c638f0 /* PBXTargetDependency */ = {
+ FFF43daca6c07f8d3daca6c0 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFAd17098707ff3d1709870 /* PxPvdSDK */;
- targetProxy = FFF5d17098707ff3d1709870 /* PBXContainerItemProxy */;
+ target = FFFA3cd0c6b07f8d3cd0c6b0 /* PxPvdSDK */;
+ targetProxy = FFF53cd0c6b07f8d3cd0c6b0 /* PBXContainerItemProxy */;
};
- FFF4d2c6c5007ff3d2c6c500 /* PBXTargetDependency */ = {
+ FFF43dad32d07f8d3dad32d0 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFAd17372b07ff3d17372b0 /* PxTask */;
- targetProxy = FFF5d17372b07ff3d17372b0 /* PBXContainerItemProxy */;
+ target = FFFA3b4815b07f8d3b4815b0 /* PxTask */;
+ targetProxy = FFF53b4815b07f8d3b4815b0 /* PBXContainerItemProxy */;
};
- FFF4d2c6c4207ff3d2c6c420 /* PBXTargetDependency */ = {
+ FFF43dad31f07f8d3dad31f0 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFAd2c8ff407ff3d2c8ff40 /* SceneQuery */;
- targetProxy = FFF5d2c8ff407ff3d2c8ff40 /* PBXContainerItemProxy */;
+ target = FFFA3cc2ae407f8d3cc2ae40 /* SceneQuery */;
+ targetProxy = FFF53cc2ae407f8d3cc2ae40 /* PBXContainerItemProxy */;
};
- FFF4d2c6c4807ff3d2c6c480 /* PBXTargetDependency */ = {
+ FFF43dad32507f8d3dad3250 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFAd2c944907ff3d2c94490 /* SimulationController */;
- targetProxy = FFF5d2c944907ff3d2c94490 /* PBXContainerItemProxy */;
+ target = FFFA3cc2f2707f8d3cc2f270 /* SimulationController */;
+ targetProxy = FFF53cc2f2707f8d3cc2f270 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of PhysXCharacterKinematic */
- FFFFd2c71ea07ff3d2c71ea0 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFDd2c7d5c07ff3d2c7d5c0 /* PhysXExtensions */; };
- FFFFd0a1b6787ff3d0a1b678 /* CctBoxController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a1b6787ff3d0a1b678 /* CctBoxController.cpp */; };
- FFFFd0a1b6e07ff3d0a1b6e0 /* CctCapsuleController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a1b6e07ff3d0a1b6e0 /* CctCapsuleController.cpp */; };
- FFFFd0a1b7487ff3d0a1b748 /* CctCharacterController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a1b7487ff3d0a1b748 /* CctCharacterController.cpp */; };
- FFFFd0a1b7b07ff3d0a1b7b0 /* CctCharacterControllerCallbacks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a1b7b07ff3d0a1b7b0 /* CctCharacterControllerCallbacks.cpp */; };
- FFFFd0a1b8187ff3d0a1b818 /* CctCharacterControllerManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a1b8187ff3d0a1b818 /* CctCharacterControllerManager.cpp */; };
- FFFFd0a1b8807ff3d0a1b880 /* CctController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a1b8807ff3d0a1b880 /* CctController.cpp */; };
- FFFFd0a1b8e87ff3d0a1b8e8 /* CctObstacleContext.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a1b8e87ff3d0a1b8e8 /* CctObstacleContext.cpp */; };
- FFFFd0a1b9507ff3d0a1b950 /* CctSweptBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a1b9507ff3d0a1b950 /* CctSweptBox.cpp */; };
- FFFFd0a1b9b87ff3d0a1b9b8 /* CctSweptCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a1b9b87ff3d0a1b9b8 /* CctSweptCapsule.cpp */; };
- FFFFd0a1ba207ff3d0a1ba20 /* CctSweptVolume.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a1ba207ff3d0a1ba20 /* CctSweptVolume.cpp */; };
+ FFFF3dad8c707f8d3dad8c70 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD3dae43907f8d3dae4390 /* PhysXExtensions */; };
+ FFFF3d0784787f8d3d078478 /* CctBoxController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d0784787f8d3d078478 /* CctBoxController.cpp */; };
+ FFFF3d0784e07f8d3d0784e0 /* CctCapsuleController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d0784e07f8d3d0784e0 /* CctCapsuleController.cpp */; };
+ FFFF3d0785487f8d3d078548 /* CctCharacterController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d0785487f8d3d078548 /* CctCharacterController.cpp */; };
+ FFFF3d0785b07f8d3d0785b0 /* CctCharacterControllerCallbacks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d0785b07f8d3d0785b0 /* CctCharacterControllerCallbacks.cpp */; };
+ FFFF3d0786187f8d3d078618 /* CctCharacterControllerManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d0786187f8d3d078618 /* CctCharacterControllerManager.cpp */; };
+ FFFF3d0786807f8d3d078680 /* CctController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d0786807f8d3d078680 /* CctController.cpp */; };
+ FFFF3d0786e87f8d3d0786e8 /* CctObstacleContext.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d0786e87f8d3d0786e8 /* CctObstacleContext.cpp */; };
+ FFFF3d0787507f8d3d078750 /* CctSweptBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d0787507f8d3d078750 /* CctSweptBox.cpp */; };
+ FFFF3d0787b87f8d3d0787b8 /* CctSweptCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d0787b87f8d3d0787b8 /* CctSweptCapsule.cpp */; };
+ FFFF3d0788207f8d3d078820 /* CctSweptVolume.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d0788207f8d3d078820 /* CctSweptVolume.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFDd2c6c5107ff3d2c6c510 /* PhysXCharacterKinematic */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCharacterKinematic"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFDd2c735a07ff3d2c735a0 /* PxBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBoxController.h"; path = "../../../Include/characterkinematic/PxBoxController.h"; sourceTree = SOURCE_ROOT; };
- FFFDd2c736087ff3d2c73608 /* PxCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCapsuleController.h"; path = "../../../Include/characterkinematic/PxCapsuleController.h"; sourceTree = SOURCE_ROOT; };
- FFFDd2c736707ff3d2c73670 /* PxCharacter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCharacter.h"; path = "../../../Include/characterkinematic/PxCharacter.h"; sourceTree = SOURCE_ROOT; };
- FFFDd2c736d87ff3d2c736d8 /* PxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxController.h"; path = "../../../Include/characterkinematic/PxController.h"; sourceTree = SOURCE_ROOT; };
- FFFDd2c737407ff3d2c73740 /* PxControllerBehavior.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerBehavior.h"; path = "../../../Include/characterkinematic/PxControllerBehavior.h"; sourceTree = SOURCE_ROOT; };
- FFFDd2c737a87ff3d2c737a8 /* PxControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerManager.h"; path = "../../../Include/characterkinematic/PxControllerManager.h"; sourceTree = SOURCE_ROOT; };
- FFFDd2c738107ff3d2c73810 /* PxControllerObstacles.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerObstacles.h"; path = "../../../Include/characterkinematic/PxControllerObstacles.h"; sourceTree = SOURCE_ROOT; };
- FFFDd2c738787ff3d2c73878 /* PxExtended.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtended.h"; path = "../../../Include/characterkinematic/PxExtended.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1b2007ff3d0a1b200 /* CctBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.h"; path = "../../PhysXCharacterKinematic/src/CctBoxController.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1b2687ff3d0a1b268 /* CctCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.h"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1b2d07ff3d0a1b2d0 /* CctCharacterController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1b3387ff3d0a1b338 /* CctCharacterControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1b3a07ff3d0a1b3a0 /* CctController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.h"; path = "../../PhysXCharacterKinematic/src/CctController.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1b4087ff3d0a1b408 /* CctInternalStructs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctInternalStructs.h"; path = "../../PhysXCharacterKinematic/src/CctInternalStructs.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1b4707ff3d0a1b470 /* CctObstacleContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.h"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1b4d87ff3d0a1b4d8 /* CctSweptBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.h"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1b5407ff3d0a1b540 /* CctSweptCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.h"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1b5a87ff3d0a1b5a8 /* CctSweptVolume.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.h"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1b6107ff3d0a1b610 /* CctUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctUtils.h"; path = "../../PhysXCharacterKinematic/src/CctUtils.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1b6787ff3d0a1b678 /* CctBoxController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.cpp"; path = "../../PhysXCharacterKinematic/src/CctBoxController.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1b6e07ff3d0a1b6e0 /* CctCapsuleController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1b7487ff3d0a1b748 /* CctCharacterController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1b7b07ff3d0a1b7b0 /* CctCharacterControllerCallbacks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerCallbacks.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerCallbacks.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1b8187ff3d0a1b818 /* CctCharacterControllerManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1b8807ff3d0a1b880 /* CctController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.cpp"; path = "../../PhysXCharacterKinematic/src/CctController.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1b8e87ff3d0a1b8e8 /* CctObstacleContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.cpp"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1b9507ff3d0a1b950 /* CctSweptBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1b9b87ff3d0a1b9b8 /* CctSweptCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1ba207ff3d0a1ba20 /* CctSweptVolume.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3dad32e07f8d3dad32e0 /* PhysXCharacterKinematic */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCharacterKinematic"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFD3dada3707f8d3dada370 /* PxBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBoxController.h"; path = "../../../Include/characterkinematic/PxBoxController.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3dada3d87f8d3dada3d8 /* PxCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCapsuleController.h"; path = "../../../Include/characterkinematic/PxCapsuleController.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3dada4407f8d3dada440 /* PxCharacter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCharacter.h"; path = "../../../Include/characterkinematic/PxCharacter.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3dada4a87f8d3dada4a8 /* PxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxController.h"; path = "../../../Include/characterkinematic/PxController.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3dada5107f8d3dada510 /* PxControllerBehavior.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerBehavior.h"; path = "../../../Include/characterkinematic/PxControllerBehavior.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3dada5787f8d3dada578 /* PxControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerManager.h"; path = "../../../Include/characterkinematic/PxControllerManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3dada5e07f8d3dada5e0 /* PxControllerObstacles.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerObstacles.h"; path = "../../../Include/characterkinematic/PxControllerObstacles.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3dada6487f8d3dada648 /* PxExtended.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtended.h"; path = "../../../Include/characterkinematic/PxExtended.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0780007f8d3d078000 /* CctBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.h"; path = "../../PhysXCharacterKinematic/src/CctBoxController.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0780687f8d3d078068 /* CctCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.h"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0780d07f8d3d0780d0 /* CctCharacterController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0781387f8d3d078138 /* CctCharacterControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0781a07f8d3d0781a0 /* CctController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.h"; path = "../../PhysXCharacterKinematic/src/CctController.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0782087f8d3d078208 /* CctInternalStructs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctInternalStructs.h"; path = "../../PhysXCharacterKinematic/src/CctInternalStructs.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0782707f8d3d078270 /* CctObstacleContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.h"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0782d87f8d3d0782d8 /* CctSweptBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.h"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0783407f8d3d078340 /* CctSweptCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.h"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0783a87f8d3d0783a8 /* CctSweptVolume.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.h"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0784107f8d3d078410 /* CctUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctUtils.h"; path = "../../PhysXCharacterKinematic/src/CctUtils.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0784787f8d3d078478 /* CctBoxController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.cpp"; path = "../../PhysXCharacterKinematic/src/CctBoxController.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0784e07f8d3d0784e0 /* CctCapsuleController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0785487f8d3d078548 /* CctCharacterController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0785b07f8d3d0785b0 /* CctCharacterControllerCallbacks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerCallbacks.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerCallbacks.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0786187f8d3d078618 /* CctCharacterControllerManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0786807f8d3d078680 /* CctController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.cpp"; path = "../../PhysXCharacterKinematic/src/CctController.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0786e87f8d3d0786e8 /* CctObstacleContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.cpp"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0787507f8d3d078750 /* CctSweptBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0787b87f8d3d0787b8 /* CctSweptCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0788207f8d3d078820 /* CctSweptVolume.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.cpp"; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */
/* Begin PBXResourcesBuildPhase section */
- FFF2d2c6c5107ff3d2c6c510 /* Resources */ = {
+ FFF23dad32e07f8d3dad32e0 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -412,7 +412,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFCd2c6c5107ff3d2c6c510 /* Frameworks */ = {
+ FFFC3dad32e07f8d3dad32e0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -422,20 +422,20 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF8d2c6c5107ff3d2c6c510 /* Sources */ = {
+ FFF83dad32e07f8d3dad32e0 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFFd0a1b6787ff3d0a1b678,
- FFFFd0a1b6e07ff3d0a1b6e0,
- FFFFd0a1b7487ff3d0a1b748,
- FFFFd0a1b7b07ff3d0a1b7b0,
- FFFFd0a1b8187ff3d0a1b818,
- FFFFd0a1b8807ff3d0a1b880,
- FFFFd0a1b8e87ff3d0a1b8e8,
- FFFFd0a1b9507ff3d0a1b950,
- FFFFd0a1b9b87ff3d0a1b9b8,
- FFFFd0a1ba207ff3d0a1ba20,
+ FFFF3d0784787f8d3d078478,
+ FFFF3d0784e07f8d3d0784e0,
+ FFFF3d0785487f8d3d078548,
+ FFFF3d0785b07f8d3d0785b0,
+ FFFF3d0786187f8d3d078618,
+ FFFF3d0786807f8d3d078680,
+ FFFF3d0786e87f8d3d0786e8,
+ FFFF3d0787507f8d3d078750,
+ FFFF3d0787b87f8d3d0787b8,
+ FFFF3d0788207f8d3d078820,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -444,91 +444,91 @@
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
- FFF4d2c733507ff3d2c73350 /* PBXTargetDependency */ = {
+ FFF43dada1207f8d3dada120 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFAd10a67707ff3d10a6770 /* PhysXCommon */;
- targetProxy = FFF5d10a67707ff3d10a6770 /* PBXContainerItemProxy */;
+ target = FFFA3c99d3f07f8d3c99d3f0 /* PhysXCommon */;
+ targetProxy = FFF53c99d3f07f8d3c99d3f0 /* PBXContainerItemProxy */;
};
- FFF4d2c71ea07ff3d2c71ea0 /* PBXTargetDependency */ = {
+ FFF43dad8c707f8d3dad8c70 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFAd2c7d5c07ff3d2c7d5c0 /* PhysXExtensions */;
- targetProxy = FFF5d2c7d5c07ff3d2c7d5c0 /* PBXContainerItemProxy */;
+ target = FFFA3dae43907f8d3dae4390 /* PhysXExtensions */;
+ targetProxy = FFF53dae43907f8d3dae4390 /* PBXContainerItemProxy */;
};
- FFF4d2c723507ff3d2c72350 /* PBXTargetDependency */ = {
+ FFF43dad91207f8d3dad9120 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFAd108e7507ff3d108e750 /* PxFoundation */;
- targetProxy = FFF5d108e7507ff3d108e750 /* PBXContainerItemProxy */;
+ target = FFFA3c9892007f8d3c989200 /* PxFoundation */;
+ targetProxy = FFF53c9892007f8d3c989200 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of PhysXVehicle */
- FFFFd0a264087ff3d0a26408 /* PxVehicleComponents.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a264087ff3d0a26408 /* PxVehicleComponents.cpp */; };
- FFFFd0a264707ff3d0a26470 /* PxVehicleDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a264707ff3d0a26470 /* PxVehicleDrive.cpp */; };
- FFFFd0a264d87ff3d0a264d8 /* PxVehicleDrive4W.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a264d87ff3d0a264d8 /* PxVehicleDrive4W.cpp */; };
- FFFFd0a265407ff3d0a26540 /* PxVehicleDriveNW.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a265407ff3d0a26540 /* PxVehicleDriveNW.cpp */; };
- FFFFd0a265a87ff3d0a265a8 /* PxVehicleDriveTank.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a265a87ff3d0a265a8 /* PxVehicleDriveTank.cpp */; };
- FFFFd0a266107ff3d0a26610 /* PxVehicleMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a266107ff3d0a26610 /* PxVehicleMetaData.cpp */; };
- FFFFd0a266787ff3d0a26678 /* PxVehicleNoDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a266787ff3d0a26678 /* PxVehicleNoDrive.cpp */; };
- FFFFd0a266e07ff3d0a266e0 /* PxVehicleSDK.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a266e07ff3d0a266e0 /* PxVehicleSDK.cpp */; };
- FFFFd0a267487ff3d0a26748 /* PxVehicleSerialization.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a267487ff3d0a26748 /* PxVehicleSerialization.cpp */; };
- FFFFd0a267b07ff3d0a267b0 /* PxVehicleSuspWheelTire4.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a267b07ff3d0a267b0 /* PxVehicleSuspWheelTire4.cpp */; };
- FFFFd0a268187ff3d0a26818 /* PxVehicleTireFriction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a268187ff3d0a26818 /* PxVehicleTireFriction.cpp */; };
- FFFFd0a268807ff3d0a26880 /* PxVehicleUpdate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a268807ff3d0a26880 /* PxVehicleUpdate.cpp */; };
- FFFFd0a268e87ff3d0a268e8 /* PxVehicleWheels.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a268e87ff3d0a268e8 /* PxVehicleWheels.cpp */; };
- FFFFd0a269507ff3d0a26950 /* VehicleUtilControl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a269507ff3d0a26950 /* VehicleUtilControl.cpp */; };
- FFFFd0a269b87ff3d0a269b8 /* VehicleUtilSetup.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a269b87ff3d0a269b8 /* VehicleUtilSetup.cpp */; };
- FFFFd0a26a207ff3d0a26a20 /* VehicleUtilTelemetry.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a26a207ff3d0a26a20 /* VehicleUtilTelemetry.cpp */; };
- FFFFd2c7f4987ff3d2c7f498 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDd2c7f4987ff3d2c7f498 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */; };
- FFFFd2c7f5007ff3d2c7f500 /* src/PxVehicleMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDd2c7f5007ff3d2c7f500 /* src/PxVehicleMetaDataObjects.cpp */; };
+ FFFF3d07fc087f8d3d07fc08 /* PxVehicleComponents.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d07fc087f8d3d07fc08 /* PxVehicleComponents.cpp */; };
+ FFFF3d07fc707f8d3d07fc70 /* PxVehicleDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d07fc707f8d3d07fc70 /* PxVehicleDrive.cpp */; };
+ FFFF3d07fcd87f8d3d07fcd8 /* PxVehicleDrive4W.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d07fcd87f8d3d07fcd8 /* PxVehicleDrive4W.cpp */; };
+ FFFF3d07fd407f8d3d07fd40 /* PxVehicleDriveNW.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d07fd407f8d3d07fd40 /* PxVehicleDriveNW.cpp */; };
+ FFFF3d07fda87f8d3d07fda8 /* PxVehicleDriveTank.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d07fda87f8d3d07fda8 /* PxVehicleDriveTank.cpp */; };
+ FFFF3d07fe107f8d3d07fe10 /* PxVehicleMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d07fe107f8d3d07fe10 /* PxVehicleMetaData.cpp */; };
+ FFFF3d07fe787f8d3d07fe78 /* PxVehicleNoDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d07fe787f8d3d07fe78 /* PxVehicleNoDrive.cpp */; };
+ FFFF3d07fee07f8d3d07fee0 /* PxVehicleSDK.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d07fee07f8d3d07fee0 /* PxVehicleSDK.cpp */; };
+ FFFF3d07ff487f8d3d07ff48 /* PxVehicleSerialization.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d07ff487f8d3d07ff48 /* PxVehicleSerialization.cpp */; };
+ FFFF3d07ffb07f8d3d07ffb0 /* PxVehicleSuspWheelTire4.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d07ffb07f8d3d07ffb0 /* PxVehicleSuspWheelTire4.cpp */; };
+ FFFF3d0800187f8d3d080018 /* PxVehicleTireFriction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d0800187f8d3d080018 /* PxVehicleTireFriction.cpp */; };
+ FFFF3d0800807f8d3d080080 /* PxVehicleUpdate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d0800807f8d3d080080 /* PxVehicleUpdate.cpp */; };
+ FFFF3d0800e87f8d3d0800e8 /* PxVehicleWheels.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d0800e87f8d3d0800e8 /* PxVehicleWheels.cpp */; };
+ FFFF3d0801507f8d3d080150 /* VehicleUtilControl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d0801507f8d3d080150 /* VehicleUtilControl.cpp */; };
+ FFFF3d0801b87f8d3d0801b8 /* VehicleUtilSetup.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d0801b87f8d3d0801b8 /* VehicleUtilSetup.cpp */; };
+ FFFF3d0802207f8d3d080220 /* VehicleUtilTelemetry.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d0802207f8d3d080220 /* VehicleUtilTelemetry.cpp */; };
+ FFFF3dae62687f8d3dae6268 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD3dae62687f8d3dae6268 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */; };
+ FFFF3dae62d07f8d3dae62d0 /* src/PxVehicleMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD3dae62d07f8d3dae62d0 /* src/PxVehicleMetaDataObjects.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFDd2c6d8507ff3d2c6d850 /* PhysXVehicle */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXVehicle"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFDd0a1d0007ff3d0a1d000 /* PxVehicleComponents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.h"; path = "../../../Include/vehicle/PxVehicleComponents.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1d0687ff3d0a1d068 /* PxVehicleDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.h"; path = "../../../Include/vehicle/PxVehicleDrive.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1d0d07ff3d0a1d0d0 /* PxVehicleDrive4W.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.h"; path = "../../../Include/vehicle/PxVehicleDrive4W.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1d1387ff3d0a1d138 /* PxVehicleDriveNW.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.h"; path = "../../../Include/vehicle/PxVehicleDriveNW.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1d1a07ff3d0a1d1a0 /* PxVehicleDriveTank.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.h"; path = "../../../Include/vehicle/PxVehicleDriveTank.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1d2087ff3d0a1d208 /* PxVehicleNoDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.h"; path = "../../../Include/vehicle/PxVehicleNoDrive.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1d2707ff3d0a1d270 /* PxVehicleSDK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.h"; path = "../../../Include/vehicle/PxVehicleSDK.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1d2d87ff3d0a1d2d8 /* PxVehicleShaders.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleShaders.h"; path = "../../../Include/vehicle/PxVehicleShaders.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1d3407ff3d0a1d340 /* PxVehicleTireFriction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.h"; path = "../../../Include/vehicle/PxVehicleTireFriction.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1d3a87ff3d0a1d3a8 /* PxVehicleUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.h"; path = "../../../Include/vehicle/PxVehicleUpdate.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1d4107ff3d0a1d410 /* PxVehicleUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtil.h"; path = "../../../Include/vehicle/PxVehicleUtil.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1d4787ff3d0a1d478 /* PxVehicleUtilControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilControl.h"; path = "../../../Include/vehicle/PxVehicleUtilControl.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1d4e07ff3d0a1d4e0 /* PxVehicleUtilSetup.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilSetup.h"; path = "../../../Include/vehicle/PxVehicleUtilSetup.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1d5487ff3d0a1d548 /* PxVehicleUtilTelemetry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilTelemetry.h"; path = "../../../Include/vehicle/PxVehicleUtilTelemetry.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a1d5b07ff3d0a1d5b0 /* PxVehicleWheels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.h"; path = "../../../Include/vehicle/PxVehicleWheels.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a262007ff3d0a26200 /* PxVehicleDefaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDefaults.h"; path = "../../PhysXVehicle/src/PxVehicleDefaults.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a262687ff3d0a26268 /* PxVehicleLinearMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleLinearMath.h"; path = "../../PhysXVehicle/src/PxVehicleLinearMath.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a262d07ff3d0a262d0 /* PxVehicleSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.h"; path = "../../PhysXVehicle/src/PxVehicleSerialization.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a263387ff3d0a26338 /* PxVehicleSuspLimitConstraintShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspLimitConstraintShader.h"; path = "../../PhysXVehicle/src/PxVehicleSuspLimitConstraintShader.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a263a07ff3d0a263a0 /* PxVehicleSuspWheelTire4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.h"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a264087ff3d0a26408 /* PxVehicleComponents.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.cpp"; path = "../../PhysXVehicle/src/PxVehicleComponents.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a264707ff3d0a26470 /* PxVehicleDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a264d87ff3d0a264d8 /* PxVehicleDrive4W.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive4W.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a265407ff3d0a26540 /* PxVehicleDriveNW.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveNW.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a265a87ff3d0a265a8 /* PxVehicleDriveTank.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveTank.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a266107ff3d0a26610 /* PxVehicleMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleMetaData.cpp"; path = "../../PhysXVehicle/src/PxVehicleMetaData.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a266787ff3d0a26678 /* PxVehicleNoDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleNoDrive.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a266e07ff3d0a266e0 /* PxVehicleSDK.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.cpp"; path = "../../PhysXVehicle/src/PxVehicleSDK.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a267487ff3d0a26748 /* PxVehicleSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.cpp"; path = "../../PhysXVehicle/src/PxVehicleSerialization.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a267b07ff3d0a267b0 /* PxVehicleSuspWheelTire4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.cpp"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a268187ff3d0a26818 /* PxVehicleTireFriction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.cpp"; path = "../../PhysXVehicle/src/PxVehicleTireFriction.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a268807ff3d0a26880 /* PxVehicleUpdate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.cpp"; path = "../../PhysXVehicle/src/PxVehicleUpdate.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a268e87ff3d0a268e8 /* PxVehicleWheels.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.cpp"; path = "../../PhysXVehicle/src/PxVehicleWheels.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a269507ff3d0a26950 /* VehicleUtilControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilControl.cpp"; path = "../../PhysXVehicle/src/VehicleUtilControl.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a269b87ff3d0a269b8 /* VehicleUtilSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilSetup.cpp"; path = "../../PhysXVehicle/src/VehicleUtilSetup.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a26a207ff3d0a26a20 /* VehicleUtilTelemetry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilTelemetry.cpp"; path = "../../PhysXVehicle/src/VehicleUtilTelemetry.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd2c7f3607ff3d2c7f360 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; };
- FFFDd2c7f3c87ff3d2c7f3c8 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
- FFFDd2c7f4307ff3d2c7f430 /* include/PxVehicleMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
- FFFDd2c7f4987ff3d2c7f498 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXVehicle/src/PhysXMetaData/src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd2c7f5007ff3d2c7f500 /* src/PxVehicleMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxVehicleMetaDataObjects.cpp"; path = "../../PhysXVehicle/src/PhysXMetaData/src/PxVehicleMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3dad46207f8d3dad4620 /* PhysXVehicle */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXVehicle"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFD3d07dc007f8d3d07dc00 /* PxVehicleComponents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.h"; path = "../../../Include/vehicle/PxVehicleComponents.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07dc687f8d3d07dc68 /* PxVehicleDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.h"; path = "../../../Include/vehicle/PxVehicleDrive.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07dcd07f8d3d07dcd0 /* PxVehicleDrive4W.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.h"; path = "../../../Include/vehicle/PxVehicleDrive4W.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07dd387f8d3d07dd38 /* PxVehicleDriveNW.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.h"; path = "../../../Include/vehicle/PxVehicleDriveNW.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07dda07f8d3d07dda0 /* PxVehicleDriveTank.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.h"; path = "../../../Include/vehicle/PxVehicleDriveTank.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07de087f8d3d07de08 /* PxVehicleNoDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.h"; path = "../../../Include/vehicle/PxVehicleNoDrive.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07de707f8d3d07de70 /* PxVehicleSDK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.h"; path = "../../../Include/vehicle/PxVehicleSDK.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07ded87f8d3d07ded8 /* PxVehicleShaders.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleShaders.h"; path = "../../../Include/vehicle/PxVehicleShaders.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07df407f8d3d07df40 /* PxVehicleTireFriction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.h"; path = "../../../Include/vehicle/PxVehicleTireFriction.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07dfa87f8d3d07dfa8 /* PxVehicleUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.h"; path = "../../../Include/vehicle/PxVehicleUpdate.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07e0107f8d3d07e010 /* PxVehicleUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtil.h"; path = "../../../Include/vehicle/PxVehicleUtil.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07e0787f8d3d07e078 /* PxVehicleUtilControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilControl.h"; path = "../../../Include/vehicle/PxVehicleUtilControl.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07e0e07f8d3d07e0e0 /* PxVehicleUtilSetup.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilSetup.h"; path = "../../../Include/vehicle/PxVehicleUtilSetup.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07e1487f8d3d07e148 /* PxVehicleUtilTelemetry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilTelemetry.h"; path = "../../../Include/vehicle/PxVehicleUtilTelemetry.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07e1b07f8d3d07e1b0 /* PxVehicleWheels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.h"; path = "../../../Include/vehicle/PxVehicleWheels.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07fa007f8d3d07fa00 /* PxVehicleDefaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDefaults.h"; path = "../../PhysXVehicle/src/PxVehicleDefaults.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07fa687f8d3d07fa68 /* PxVehicleLinearMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleLinearMath.h"; path = "../../PhysXVehicle/src/PxVehicleLinearMath.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07fad07f8d3d07fad0 /* PxVehicleSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.h"; path = "../../PhysXVehicle/src/PxVehicleSerialization.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07fb387f8d3d07fb38 /* PxVehicleSuspLimitConstraintShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspLimitConstraintShader.h"; path = "../../PhysXVehicle/src/PxVehicleSuspLimitConstraintShader.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07fba07f8d3d07fba0 /* PxVehicleSuspWheelTire4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.h"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07fc087f8d3d07fc08 /* PxVehicleComponents.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.cpp"; path = "../../PhysXVehicle/src/PxVehicleComponents.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07fc707f8d3d07fc70 /* PxVehicleDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07fcd87f8d3d07fcd8 /* PxVehicleDrive4W.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive4W.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07fd407f8d3d07fd40 /* PxVehicleDriveNW.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveNW.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07fda87f8d3d07fda8 /* PxVehicleDriveTank.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveTank.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07fe107f8d3d07fe10 /* PxVehicleMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleMetaData.cpp"; path = "../../PhysXVehicle/src/PxVehicleMetaData.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07fe787f8d3d07fe78 /* PxVehicleNoDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleNoDrive.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07fee07f8d3d07fee0 /* PxVehicleSDK.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.cpp"; path = "../../PhysXVehicle/src/PxVehicleSDK.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07ff487f8d3d07ff48 /* PxVehicleSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.cpp"; path = "../../PhysXVehicle/src/PxVehicleSerialization.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d07ffb07f8d3d07ffb0 /* PxVehicleSuspWheelTire4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.cpp"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0800187f8d3d080018 /* PxVehicleTireFriction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.cpp"; path = "../../PhysXVehicle/src/PxVehicleTireFriction.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0800807f8d3d080080 /* PxVehicleUpdate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.cpp"; path = "../../PhysXVehicle/src/PxVehicleUpdate.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0800e87f8d3d0800e8 /* PxVehicleWheels.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.cpp"; path = "../../PhysXVehicle/src/PxVehicleWheels.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0801507f8d3d080150 /* VehicleUtilControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilControl.cpp"; path = "../../PhysXVehicle/src/VehicleUtilControl.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0801b87f8d3d0801b8 /* VehicleUtilSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilSetup.cpp"; path = "../../PhysXVehicle/src/VehicleUtilSetup.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0802207f8d3d080220 /* VehicleUtilTelemetry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilTelemetry.cpp"; path = "../../PhysXVehicle/src/VehicleUtilTelemetry.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3dae61307f8d3dae6130 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3dae61987f8d3dae6198 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3dae62007f8d3dae6200 /* include/PxVehicleMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3dae62687f8d3dae6268 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXVehicle/src/PhysXMetaData/src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3dae62d07f8d3dae62d0 /* 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 */
- FFF2d2c6d8507ff3d2c6d850 /* Resources */ = {
+ FFF23dad46207f8d3dad4620 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -538,7 +538,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFCd2c6d8507ff3d2c6d850 /* Frameworks */ = {
+ FFFC3dad46207f8d3dad4620 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -548,28 +548,28 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF8d2c6d8507ff3d2c6d850 /* Sources */ = {
+ FFF83dad46207f8d3dad4620 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFFd0a264087ff3d0a26408,
- FFFFd0a264707ff3d0a26470,
- FFFFd0a264d87ff3d0a264d8,
- FFFFd0a265407ff3d0a26540,
- FFFFd0a265a87ff3d0a265a8,
- FFFFd0a266107ff3d0a26610,
- FFFFd0a266787ff3d0a26678,
- FFFFd0a266e07ff3d0a266e0,
- FFFFd0a267487ff3d0a26748,
- FFFFd0a267b07ff3d0a267b0,
- FFFFd0a268187ff3d0a26818,
- FFFFd0a268807ff3d0a26880,
- FFFFd0a268e87ff3d0a268e8,
- FFFFd0a269507ff3d0a26950,
- FFFFd0a269b87ff3d0a269b8,
- FFFFd0a26a207ff3d0a26a20,
- FFFFd2c7f4987ff3d2c7f498,
- FFFFd2c7f5007ff3d2c7f500,
+ FFFF3d07fc087f8d3d07fc08,
+ FFFF3d07fc707f8d3d07fc70,
+ FFFF3d07fcd87f8d3d07fcd8,
+ FFFF3d07fd407f8d3d07fd40,
+ FFFF3d07fda87f8d3d07fda8,
+ FFFF3d07fe107f8d3d07fe10,
+ FFFF3d07fe787f8d3d07fe78,
+ FFFF3d07fee07f8d3d07fee0,
+ FFFF3d07ff487f8d3d07ff48,
+ FFFF3d07ffb07f8d3d07ffb0,
+ FFFF3d0800187f8d3d080018,
+ FFFF3d0800807f8d3d080080,
+ FFFF3d0800e87f8d3d0800e8,
+ FFFF3d0801507f8d3d080150,
+ FFFF3d0801b87f8d3d0801b8,
+ FFFF3d0802207f8d3d080220,
+ FFFF3dae62687f8d3dae6268,
+ FFFF3dae62d07f8d3dae62d0,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -581,220 +581,220 @@
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of PhysXExtensions */
- FFFFd0a28ae87ff3d0a28ae8 /* ExtBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a28ae87ff3d0a28ae8 /* ExtBroadPhase.cpp */; };
- FFFFd0a28b507ff3d0a28b50 /* ExtClothFabricCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a28b507ff3d0a28b50 /* ExtClothFabricCooker.cpp */; };
- FFFFd0a28bb87ff3d0a28bb8 /* ExtClothGeodesicTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a28bb87ff3d0a28bb8 /* ExtClothGeodesicTetherCooker.cpp */; };
- FFFFd0a28c207ff3d0a28c20 /* ExtClothMeshQuadifier.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a28c207ff3d0a28c20 /* ExtClothMeshQuadifier.cpp */; };
- FFFFd0a28c887ff3d0a28c88 /* ExtClothSimpleTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a28c887ff3d0a28c88 /* ExtClothSimpleTetherCooker.cpp */; };
- FFFFd0a28cf07ff3d0a28cf0 /* ExtCollection.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a28cf07ff3d0a28cf0 /* ExtCollection.cpp */; };
- FFFFd0a28d587ff3d0a28d58 /* ExtConvexMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a28d587ff3d0a28d58 /* ExtConvexMeshExt.cpp */; };
- FFFFd0a28dc07ff3d0a28dc0 /* ExtCpuWorkerThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a28dc07ff3d0a28dc0 /* ExtCpuWorkerThread.cpp */; };
- FFFFd0a28e287ff3d0a28e28 /* ExtD6Joint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a28e287ff3d0a28e28 /* ExtD6Joint.cpp */; };
- FFFFd0a28e907ff3d0a28e90 /* ExtD6JointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a28e907ff3d0a28e90 /* ExtD6JointSolverPrep.cpp */; };
- FFFFd0a28ef87ff3d0a28ef8 /* ExtDefaultCpuDispatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a28ef87ff3d0a28ef8 /* ExtDefaultCpuDispatcher.cpp */; };
- FFFFd0a28f607ff3d0a28f60 /* ExtDefaultErrorCallback.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a28f607ff3d0a28f60 /* ExtDefaultErrorCallback.cpp */; };
- FFFFd0a28fc87ff3d0a28fc8 /* ExtDefaultSimulationFilterShader.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a28fc87ff3d0a28fc8 /* ExtDefaultSimulationFilterShader.cpp */; };
- FFFFd0a290307ff3d0a29030 /* ExtDefaultStreams.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a290307ff3d0a29030 /* ExtDefaultStreams.cpp */; };
- FFFFd0a290987ff3d0a29098 /* ExtDistanceJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a290987ff3d0a29098 /* ExtDistanceJoint.cpp */; };
- FFFFd0a291007ff3d0a29100 /* ExtDistanceJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a291007ff3d0a29100 /* ExtDistanceJointSolverPrep.cpp */; };
- FFFFd0a291687ff3d0a29168 /* ExtExtensions.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a291687ff3d0a29168 /* ExtExtensions.cpp */; };
- FFFFd0a291d07ff3d0a291d0 /* ExtFixedJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a291d07ff3d0a291d0 /* ExtFixedJoint.cpp */; };
- FFFFd0a292387ff3d0a29238 /* ExtFixedJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a292387ff3d0a29238 /* ExtFixedJointSolverPrep.cpp */; };
- FFFFd0a292a07ff3d0a292a0 /* ExtJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a292a07ff3d0a292a0 /* ExtJoint.cpp */; };
- FFFFd0a293087ff3d0a29308 /* ExtMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a293087ff3d0a29308 /* ExtMetaData.cpp */; };
- FFFFd0a293707ff3d0a29370 /* ExtParticleExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a293707ff3d0a29370 /* ExtParticleExt.cpp */; };
- FFFFd0a293d87ff3d0a293d8 /* ExtPrismaticJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a293d87ff3d0a293d8 /* ExtPrismaticJoint.cpp */; };
- FFFFd0a294407ff3d0a29440 /* ExtPrismaticJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a294407ff3d0a29440 /* ExtPrismaticJointSolverPrep.cpp */; };
- FFFFd0a294a87ff3d0a294a8 /* ExtPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a294a87ff3d0a294a8 /* ExtPvd.cpp */; };
- FFFFd0a295107ff3d0a29510 /* ExtPxStringTable.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a295107ff3d0a29510 /* ExtPxStringTable.cpp */; };
- FFFFd0a295787ff3d0a29578 /* ExtRaycastCCD.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a295787ff3d0a29578 /* ExtRaycastCCD.cpp */; };
- FFFFd0a295e07ff3d0a295e0 /* ExtRevoluteJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a295e07ff3d0a295e0 /* ExtRevoluteJoint.cpp */; };
- FFFFd0a296487ff3d0a29648 /* ExtRevoluteJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a296487ff3d0a29648 /* ExtRevoluteJointSolverPrep.cpp */; };
- FFFFd0a296b07ff3d0a296b0 /* ExtRigidBodyExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a296b07ff3d0a296b0 /* ExtRigidBodyExt.cpp */; };
- FFFFd0a297187ff3d0a29718 /* ExtSceneQueryExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a297187ff3d0a29718 /* ExtSceneQueryExt.cpp */; };
- FFFFd0a297807ff3d0a29780 /* ExtSimpleFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a297807ff3d0a29780 /* ExtSimpleFactory.cpp */; };
- FFFFd0a297e87ff3d0a297e8 /* ExtSmoothNormals.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a297e87ff3d0a297e8 /* ExtSmoothNormals.cpp */; };
- FFFFd0a298507ff3d0a29850 /* ExtSphericalJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a298507ff3d0a29850 /* ExtSphericalJoint.cpp */; };
- FFFFd0a298b87ff3d0a298b8 /* ExtSphericalJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a298b87ff3d0a298b8 /* ExtSphericalJointSolverPrep.cpp */; };
- FFFFd0a299207ff3d0a29920 /* ExtTriangleMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a299207ff3d0a29920 /* ExtTriangleMeshExt.cpp */; };
- FFFFd0a2ced07ff3d0a2ced0 /* SnSerialUtils.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDd0a2ced07ff3d0a2ced0 /* SnSerialUtils.cpp */; };
- FFFFd0a2cf387ff3d0a2cf38 /* SnSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDd0a2cf387ff3d0a2cf38 /* SnSerialization.cpp */; };
- FFFFd0a2cfa07ff3d0a2cfa0 /* SnSerializationRegistry.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDd0a2cfa07ff3d0a2cfa0 /* SnSerializationRegistry.cpp */; };
- FFFFd0a2d2e07ff3d0a2d2e0 /* Binary/SnBinaryDeserialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDd0a2d2e07ff3d0a2d2e0 /* Binary/SnBinaryDeserialization.cpp */; };
- FFFFd0a2d3487ff3d0a2d348 /* Binary/SnBinarySerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDd0a2d3487ff3d0a2d348 /* Binary/SnBinarySerialization.cpp */; };
- FFFFd0a2d3b07ff3d0a2d3b0 /* Binary/SnConvX.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDd0a2d3b07ff3d0a2d3b0 /* Binary/SnConvX.cpp */; };
- FFFFd0a2d4187ff3d0a2d418 /* Binary/SnConvX_Align.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDd0a2d4187ff3d0a2d418 /* Binary/SnConvX_Align.cpp */; };
- FFFFd0a2d4807ff3d0a2d480 /* Binary/SnConvX_Convert.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDd0a2d4807ff3d0a2d480 /* Binary/SnConvX_Convert.cpp */; };
- FFFFd0a2d4e87ff3d0a2d4e8 /* Binary/SnConvX_Error.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDd0a2d4e87ff3d0a2d4e8 /* Binary/SnConvX_Error.cpp */; };
- FFFFd0a2d5507ff3d0a2d550 /* Binary/SnConvX_MetaData.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDd0a2d5507ff3d0a2d550 /* Binary/SnConvX_MetaData.cpp */; };
- FFFFd0a2d5b87ff3d0a2d5b8 /* Binary/SnConvX_Output.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDd0a2d5b87ff3d0a2d5b8 /* Binary/SnConvX_Output.cpp */; };
- FFFFd0a2d6207ff3d0a2d620 /* Binary/SnConvX_Union.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDd0a2d6207ff3d0a2d620 /* Binary/SnConvX_Union.cpp */; };
- FFFFd0a2d6887ff3d0a2d688 /* Binary/SnSerializationContext.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDd0a2d6887ff3d0a2d688 /* Binary/SnSerializationContext.cpp */; };
- FFFFd0a2dfe07ff3d0a2dfe0 /* Xml/SnJointRepXSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDd0a2dfe07ff3d0a2dfe0 /* Xml/SnJointRepXSerializer.cpp */; };
- FFFFd0a2e0487ff3d0a2e048 /* Xml/SnRepXCoreSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDd0a2e0487ff3d0a2e048 /* Xml/SnRepXCoreSerializer.cpp */; };
- FFFFd0a2e0b07ff3d0a2e0b0 /* Xml/SnRepXUpgrader.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDd0a2e0b07ff3d0a2e0b0 /* Xml/SnRepXUpgrader.cpp */; };
- FFFFd0a2e1187ff3d0a2e118 /* Xml/SnXmlSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDd0a2e1187ff3d0a2e118 /* Xml/SnXmlSerialization.cpp */; };
- FFFFd0a2aee07ff3d0a2aee0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDd0a2aee07ff3d0a2aee0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */; };
+ FFFF3d0822e87f8d3d0822e8 /* ExtBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d0822e87f8d3d0822e8 /* ExtBroadPhase.cpp */; };
+ FFFF3d0823507f8d3d082350 /* ExtClothFabricCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d0823507f8d3d082350 /* ExtClothFabricCooker.cpp */; };
+ FFFF3d0823b87f8d3d0823b8 /* ExtClothGeodesicTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d0823b87f8d3d0823b8 /* ExtClothGeodesicTetherCooker.cpp */; };
+ FFFF3d0824207f8d3d082420 /* ExtClothMeshQuadifier.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d0824207f8d3d082420 /* ExtClothMeshQuadifier.cpp */; };
+ FFFF3d0824887f8d3d082488 /* ExtClothSimpleTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d0824887f8d3d082488 /* ExtClothSimpleTetherCooker.cpp */; };
+ FFFF3d0824f07f8d3d0824f0 /* ExtCollection.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d0824f07f8d3d0824f0 /* ExtCollection.cpp */; };
+ FFFF3d0825587f8d3d082558 /* ExtConvexMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d0825587f8d3d082558 /* ExtConvexMeshExt.cpp */; };
+ FFFF3d0825c07f8d3d0825c0 /* ExtCpuWorkerThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d0825c07f8d3d0825c0 /* ExtCpuWorkerThread.cpp */; };
+ FFFF3d0826287f8d3d082628 /* ExtD6Joint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d0826287f8d3d082628 /* ExtD6Joint.cpp */; };
+ FFFF3d0826907f8d3d082690 /* ExtD6JointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d0826907f8d3d082690 /* ExtD6JointSolverPrep.cpp */; };
+ FFFF3d0826f87f8d3d0826f8 /* ExtDefaultCpuDispatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d0826f87f8d3d0826f8 /* ExtDefaultCpuDispatcher.cpp */; };
+ FFFF3d0827607f8d3d082760 /* ExtDefaultErrorCallback.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d0827607f8d3d082760 /* ExtDefaultErrorCallback.cpp */; };
+ FFFF3d0827c87f8d3d0827c8 /* ExtDefaultSimulationFilterShader.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d0827c87f8d3d0827c8 /* ExtDefaultSimulationFilterShader.cpp */; };
+ FFFF3d0828307f8d3d082830 /* ExtDefaultStreams.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d0828307f8d3d082830 /* ExtDefaultStreams.cpp */; };
+ FFFF3d0828987f8d3d082898 /* ExtDistanceJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d0828987f8d3d082898 /* ExtDistanceJoint.cpp */; };
+ FFFF3d0829007f8d3d082900 /* ExtDistanceJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d0829007f8d3d082900 /* ExtDistanceJointSolverPrep.cpp */; };
+ FFFF3d0829687f8d3d082968 /* ExtExtensions.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d0829687f8d3d082968 /* ExtExtensions.cpp */; };
+ FFFF3d0829d07f8d3d0829d0 /* ExtFixedJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d0829d07f8d3d0829d0 /* ExtFixedJoint.cpp */; };
+ FFFF3d082a387f8d3d082a38 /* ExtFixedJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d082a387f8d3d082a38 /* ExtFixedJointSolverPrep.cpp */; };
+ FFFF3d082aa07f8d3d082aa0 /* ExtJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d082aa07f8d3d082aa0 /* ExtJoint.cpp */; };
+ FFFF3d082b087f8d3d082b08 /* ExtMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d082b087f8d3d082b08 /* ExtMetaData.cpp */; };
+ FFFF3d082b707f8d3d082b70 /* ExtParticleExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d082b707f8d3d082b70 /* ExtParticleExt.cpp */; };
+ FFFF3d082bd87f8d3d082bd8 /* ExtPrismaticJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d082bd87f8d3d082bd8 /* ExtPrismaticJoint.cpp */; };
+ FFFF3d082c407f8d3d082c40 /* ExtPrismaticJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d082c407f8d3d082c40 /* ExtPrismaticJointSolverPrep.cpp */; };
+ FFFF3d082ca87f8d3d082ca8 /* ExtPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d082ca87f8d3d082ca8 /* ExtPvd.cpp */; };
+ FFFF3d082d107f8d3d082d10 /* ExtPxStringTable.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d082d107f8d3d082d10 /* ExtPxStringTable.cpp */; };
+ FFFF3d082d787f8d3d082d78 /* ExtRaycastCCD.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d082d787f8d3d082d78 /* ExtRaycastCCD.cpp */; };
+ FFFF3d082de07f8d3d082de0 /* ExtRevoluteJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d082de07f8d3d082de0 /* ExtRevoluteJoint.cpp */; };
+ FFFF3d082e487f8d3d082e48 /* ExtRevoluteJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d082e487f8d3d082e48 /* ExtRevoluteJointSolverPrep.cpp */; };
+ FFFF3d082eb07f8d3d082eb0 /* ExtRigidBodyExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d082eb07f8d3d082eb0 /* ExtRigidBodyExt.cpp */; };
+ FFFF3d082f187f8d3d082f18 /* ExtSceneQueryExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d082f187f8d3d082f18 /* ExtSceneQueryExt.cpp */; };
+ FFFF3d082f807f8d3d082f80 /* ExtSimpleFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d082f807f8d3d082f80 /* ExtSimpleFactory.cpp */; };
+ FFFF3d082fe87f8d3d082fe8 /* ExtSmoothNormals.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d082fe87f8d3d082fe8 /* ExtSmoothNormals.cpp */; };
+ FFFF3d0830507f8d3d083050 /* ExtSphericalJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d0830507f8d3d083050 /* ExtSphericalJoint.cpp */; };
+ FFFF3d0830b87f8d3d0830b8 /* ExtSphericalJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d0830b87f8d3d0830b8 /* ExtSphericalJointSolverPrep.cpp */; };
+ FFFF3d0831207f8d3d083120 /* ExtTriangleMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d0831207f8d3d083120 /* ExtTriangleMeshExt.cpp */; };
+ FFFF3d0866d07f8d3d0866d0 /* SnSerialUtils.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD3d0866d07f8d3d0866d0 /* SnSerialUtils.cpp */; };
+ FFFF3d0867387f8d3d086738 /* SnSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD3d0867387f8d3d086738 /* SnSerialization.cpp */; };
+ FFFF3d0867a07f8d3d0867a0 /* SnSerializationRegistry.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD3d0867a07f8d3d0867a0 /* SnSerializationRegistry.cpp */; };
+ FFFF3d086ae07f8d3d086ae0 /* Binary/SnBinaryDeserialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD3d086ae07f8d3d086ae0 /* Binary/SnBinaryDeserialization.cpp */; };
+ FFFF3d086b487f8d3d086b48 /* Binary/SnBinarySerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD3d086b487f8d3d086b48 /* Binary/SnBinarySerialization.cpp */; };
+ FFFF3d086bb07f8d3d086bb0 /* Binary/SnConvX.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD3d086bb07f8d3d086bb0 /* Binary/SnConvX.cpp */; };
+ FFFF3d086c187f8d3d086c18 /* Binary/SnConvX_Align.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD3d086c187f8d3d086c18 /* Binary/SnConvX_Align.cpp */; };
+ FFFF3d086c807f8d3d086c80 /* Binary/SnConvX_Convert.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD3d086c807f8d3d086c80 /* Binary/SnConvX_Convert.cpp */; };
+ FFFF3d086ce87f8d3d086ce8 /* Binary/SnConvX_Error.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD3d086ce87f8d3d086ce8 /* Binary/SnConvX_Error.cpp */; };
+ FFFF3d086d507f8d3d086d50 /* Binary/SnConvX_MetaData.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD3d086d507f8d3d086d50 /* Binary/SnConvX_MetaData.cpp */; };
+ FFFF3d086db87f8d3d086db8 /* Binary/SnConvX_Output.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD3d086db87f8d3d086db8 /* Binary/SnConvX_Output.cpp */; };
+ FFFF3d086e207f8d3d086e20 /* Binary/SnConvX_Union.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD3d086e207f8d3d086e20 /* Binary/SnConvX_Union.cpp */; };
+ FFFF3d086e887f8d3d086e88 /* Binary/SnSerializationContext.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD3d086e887f8d3d086e88 /* Binary/SnSerializationContext.cpp */; };
+ FFFF3d0877e07f8d3d0877e0 /* Xml/SnJointRepXSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD3d0877e07f8d3d0877e0 /* Xml/SnJointRepXSerializer.cpp */; };
+ FFFF3d0878487f8d3d087848 /* Xml/SnRepXCoreSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD3d0878487f8d3d087848 /* Xml/SnRepXCoreSerializer.cpp */; };
+ FFFF3d0878b07f8d3d0878b0 /* Xml/SnRepXUpgrader.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD3d0878b07f8d3d0878b0 /* Xml/SnRepXUpgrader.cpp */; };
+ FFFF3d0879187f8d3d087918 /* Xml/SnXmlSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD3d0879187f8d3d087918 /* Xml/SnXmlSerialization.cpp */; };
+ FFFF3c1b7ce07f8d3c1b7ce0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD3c1b7ce07f8d3c1b7ce0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFDd2c7d5c07ff3d2c7d5c0 /* PhysXExtensions */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXExtensions"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFDd0a29a007ff3d0a29a00 /* PxBinaryConverter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBinaryConverter.h"; path = "../../../Include/extensions/PxBinaryConverter.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a29a687ff3d0a29a68 /* PxBroadPhaseExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhaseExt.h"; path = "../../../Include/extensions/PxBroadPhaseExt.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a29ad07ff3d0a29ad0 /* PxClothFabricCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothFabricCooker.h"; path = "../../../Include/extensions/PxClothFabricCooker.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a29b387ff3d0a29b38 /* PxClothMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshDesc.h"; path = "../../../Include/extensions/PxClothMeshDesc.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a29ba07ff3d0a29ba0 /* PxClothMeshQuadifier.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshQuadifier.h"; path = "../../../Include/extensions/PxClothMeshQuadifier.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a29c087ff3d0a29c08 /* PxClothTetherCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothTetherCooker.h"; path = "../../../Include/extensions/PxClothTetherCooker.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a29c707ff3d0a29c70 /* PxCollectionExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCollectionExt.h"; path = "../../../Include/extensions/PxCollectionExt.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a29cd87ff3d0a29cd8 /* PxConstraintExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintExt.h"; path = "../../../Include/extensions/PxConstraintExt.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a29d407ff3d0a29d40 /* PxConvexMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshExt.h"; path = "../../../Include/extensions/PxConvexMeshExt.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a29da87ff3d0a29da8 /* PxD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxD6Joint.h"; path = "../../../Include/extensions/PxD6Joint.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a29e107ff3d0a29e10 /* PxDefaultAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultAllocator.h"; path = "../../../Include/extensions/PxDefaultAllocator.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a29e787ff3d0a29e78 /* PxDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultCpuDispatcher.h"; path = "../../../Include/extensions/PxDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a29ee07ff3d0a29ee0 /* PxDefaultErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultErrorCallback.h"; path = "../../../Include/extensions/PxDefaultErrorCallback.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a29f487ff3d0a29f48 /* PxDefaultSimulationFilterShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultSimulationFilterShader.h"; path = "../../../Include/extensions/PxDefaultSimulationFilterShader.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a29fb07ff3d0a29fb0 /* PxDefaultStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultStreams.h"; path = "../../../Include/extensions/PxDefaultStreams.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2a0187ff3d0a2a018 /* PxDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDistanceJoint.h"; path = "../../../Include/extensions/PxDistanceJoint.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2a0807ff3d0a2a080 /* PxExtensionsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtensionsAPI.h"; path = "../../../Include/extensions/PxExtensionsAPI.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2a0e87ff3d0a2a0e8 /* PxFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFixedJoint.h"; path = "../../../Include/extensions/PxFixedJoint.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2a1507ff3d0a2a150 /* PxJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJoint.h"; path = "../../../Include/extensions/PxJoint.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2a1b87ff3d0a2a1b8 /* PxJointLimit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJointLimit.h"; path = "../../../Include/extensions/PxJointLimit.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2a2207ff3d0a2a220 /* PxMassProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMassProperties.h"; path = "../../../Include/extensions/PxMassProperties.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2a2887ff3d0a2a288 /* PxParticleExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxParticleExt.h"; path = "../../../Include/extensions/PxParticleExt.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2a2f07ff3d0a2a2f0 /* PxPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPrismaticJoint.h"; path = "../../../Include/extensions/PxPrismaticJoint.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2a3587ff3d0a2a358 /* PxRaycastCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRaycastCCD.h"; path = "../../../Include/extensions/PxRaycastCCD.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2a3c07ff3d0a2a3c0 /* PxRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSerializer.h"; path = "../../../Include/extensions/PxRepXSerializer.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2a4287ff3d0a2a428 /* PxRepXSimpleType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSimpleType.h"; path = "../../../Include/extensions/PxRepXSimpleType.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2a4907ff3d0a2a490 /* PxRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRevoluteJoint.h"; path = "../../../Include/extensions/PxRevoluteJoint.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2a4f87ff3d0a2a4f8 /* PxRigidActorExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActorExt.h"; path = "../../../Include/extensions/PxRigidActorExt.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2a5607ff3d0a2a560 /* PxRigidBodyExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBodyExt.h"; path = "../../../Include/extensions/PxRigidBodyExt.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2a5c87ff3d0a2a5c8 /* PxSceneQueryExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneQueryExt.h"; path = "../../../Include/extensions/PxSceneQueryExt.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2a6307ff3d0a2a630 /* PxSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSerialization.h"; path = "../../../Include/extensions/PxSerialization.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2a6987ff3d0a2a698 /* PxShapeExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShapeExt.h"; path = "../../../Include/extensions/PxShapeExt.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2a7007ff3d0a2a700 /* PxSimpleFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleFactory.h"; path = "../../../Include/extensions/PxSimpleFactory.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2a7687ff3d0a2a768 /* PxSmoothNormals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSmoothNormals.h"; path = "../../../Include/extensions/PxSmoothNormals.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2a7d07ff3d0a2a7d0 /* PxSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSphericalJoint.h"; path = "../../../Include/extensions/PxSphericalJoint.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2a8387ff3d0a2a838 /* PxStringTableExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStringTableExt.h"; path = "../../../Include/extensions/PxStringTableExt.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2a8a07ff3d0a2a8a0 /* PxTriangleMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshExt.h"; path = "../../../Include/extensions/PxTriangleMeshExt.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a284007ff3d0a28400 /* ExtConstraintHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConstraintHelper.h"; path = "../../PhysXExtensions/src/ExtConstraintHelper.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a284687ff3d0a28468 /* ExtCpuWorkerThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.h"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a284d07ff3d0a284d0 /* ExtD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.h"; path = "../../PhysXExtensions/src/ExtD6Joint.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a285387ff3d0a28538 /* ExtDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.h"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a285a07ff3d0a285a0 /* ExtDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.h"; path = "../../PhysXExtensions/src/ExtDistanceJoint.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a286087ff3d0a28608 /* ExtFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.h"; path = "../../PhysXExtensions/src/ExtFixedJoint.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a286707ff3d0a28670 /* ExtInertiaTensor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtInertiaTensor.h"; path = "../../PhysXExtensions/src/ExtInertiaTensor.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a286d87ff3d0a286d8 /* ExtJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.h"; path = "../../PhysXExtensions/src/ExtJoint.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a287407ff3d0a28740 /* ExtJointMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJointMetaDataExtensions.h"; path = "../../PhysXExtensions/src/ExtJointMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a287a87ff3d0a287a8 /* ExtPlatform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPlatform.h"; path = "../../PhysXExtensions/src/ExtPlatform.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a288107ff3d0a28810 /* ExtPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.h"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a288787ff3d0a28878 /* ExtPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.h"; path = "../../PhysXExtensions/src/ExtPvd.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a288e07ff3d0a288e0 /* ExtRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.h"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a289487ff3d0a28948 /* ExtSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSerialization.h"; path = "../../PhysXExtensions/src/ExtSerialization.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a289b07ff3d0a289b0 /* ExtSharedQueueEntryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSharedQueueEntryPool.h"; path = "../../PhysXExtensions/src/ExtSharedQueueEntryPool.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a28a187ff3d0a28a18 /* ExtSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.h"; path = "../../PhysXExtensions/src/ExtSphericalJoint.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a28a807ff3d0a28a80 /* ExtTaskQueueHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTaskQueueHelper.h"; path = "../../PhysXExtensions/src/ExtTaskQueueHelper.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a28ae87ff3d0a28ae8 /* ExtBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtBroadPhase.cpp"; path = "../../PhysXExtensions/src/ExtBroadPhase.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a28b507ff3d0a28b50 /* ExtClothFabricCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothFabricCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothFabricCooker.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a28bb87ff3d0a28bb8 /* ExtClothGeodesicTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothGeodesicTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothGeodesicTetherCooker.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a28c207ff3d0a28c20 /* ExtClothMeshQuadifier.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothMeshQuadifier.cpp"; path = "../../PhysXExtensions/src/ExtClothMeshQuadifier.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a28c887ff3d0a28c88 /* ExtClothSimpleTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothSimpleTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothSimpleTetherCooker.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a28cf07ff3d0a28cf0 /* ExtCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCollection.cpp"; path = "../../PhysXExtensions/src/ExtCollection.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a28d587ff3d0a28d58 /* ExtConvexMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConvexMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtConvexMeshExt.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a28dc07ff3d0a28dc0 /* ExtCpuWorkerThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.cpp"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a28e287ff3d0a28e28 /* ExtD6Joint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.cpp"; path = "../../PhysXExtensions/src/ExtD6Joint.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a28e907ff3d0a28e90 /* ExtD6JointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6JointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtD6JointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a28ef87ff3d0a28ef8 /* ExtDefaultCpuDispatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.cpp"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a28f607ff3d0a28f60 /* ExtDefaultErrorCallback.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultErrorCallback.cpp"; path = "../../PhysXExtensions/src/ExtDefaultErrorCallback.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a28fc87ff3d0a28fc8 /* ExtDefaultSimulationFilterShader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultSimulationFilterShader.cpp"; path = "../../PhysXExtensions/src/ExtDefaultSimulationFilterShader.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a290307ff3d0a29030 /* ExtDefaultStreams.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultStreams.cpp"; path = "../../PhysXExtensions/src/ExtDefaultStreams.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a290987ff3d0a29098 /* ExtDistanceJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJoint.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a291007ff3d0a29100 /* ExtDistanceJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a291687ff3d0a29168 /* ExtExtensions.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtExtensions.cpp"; path = "../../PhysXExtensions/src/ExtExtensions.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a291d07ff3d0a291d0 /* ExtFixedJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.cpp"; path = "../../PhysXExtensions/src/ExtFixedJoint.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a292387ff3d0a29238 /* ExtFixedJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtFixedJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a292a07ff3d0a292a0 /* ExtJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.cpp"; path = "../../PhysXExtensions/src/ExtJoint.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a293087ff3d0a29308 /* ExtMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtMetaData.cpp"; path = "../../PhysXExtensions/src/ExtMetaData.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a293707ff3d0a29370 /* ExtParticleExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtParticleExt.cpp"; path = "../../PhysXExtensions/src/ExtParticleExt.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a293d87ff3d0a293d8 /* ExtPrismaticJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a294407ff3d0a29440 /* ExtPrismaticJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a294a87ff3d0a294a8 /* ExtPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.cpp"; path = "../../PhysXExtensions/src/ExtPvd.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a295107ff3d0a29510 /* ExtPxStringTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPxStringTable.cpp"; path = "../../PhysXExtensions/src/ExtPxStringTable.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a295787ff3d0a29578 /* ExtRaycastCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRaycastCCD.cpp"; path = "../../PhysXExtensions/src/ExtRaycastCCD.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a295e07ff3d0a295e0 /* ExtRevoluteJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a296487ff3d0a29648 /* ExtRevoluteJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a296b07ff3d0a296b0 /* ExtRigidBodyExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRigidBodyExt.cpp"; path = "../../PhysXExtensions/src/ExtRigidBodyExt.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a297187ff3d0a29718 /* ExtSceneQueryExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSceneQueryExt.cpp"; path = "../../PhysXExtensions/src/ExtSceneQueryExt.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a297807ff3d0a29780 /* ExtSimpleFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSimpleFactory.cpp"; path = "../../PhysXExtensions/src/ExtSimpleFactory.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a297e87ff3d0a297e8 /* ExtSmoothNormals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSmoothNormals.cpp"; path = "../../PhysXExtensions/src/ExtSmoothNormals.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a298507ff3d0a29850 /* ExtSphericalJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJoint.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a298b87ff3d0a298b8 /* ExtSphericalJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a299207ff3d0a29920 /* ExtTriangleMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTriangleMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtTriangleMeshExt.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2ce007ff3d0a2ce00 /* SnSerialUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.h"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2ce687ff3d0a2ce68 /* SnSerializationRegistry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.h"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2ced07ff3d0a2ced0 /* SnSerialUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2cf387ff3d0a2cf38 /* SnSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialization.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2cfa07ff3d0a2cfa0 /* SnSerializationRegistry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2d0087ff3d0a2d008 /* Binary/SnConvX.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2d0707ff3d0a2d070 /* Binary/SnConvX_Align.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2d0d87ff3d0a2d0d8 /* Binary/SnConvX_Common.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Common.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Common.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2d1407ff3d0a2d140 /* Binary/SnConvX_MetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2d1a87ff3d0a2d1a8 /* Binary/SnConvX_Output.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2d2107ff3d0a2d210 /* Binary/SnConvX_Union.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2d2787ff3d0a2d278 /* Binary/SnSerializationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2d2e07ff3d0a2d2e0 /* Binary/SnBinaryDeserialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinaryDeserialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinaryDeserialization.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2d3487ff3d0a2d348 /* Binary/SnBinarySerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinarySerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinarySerialization.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2d3b07ff3d0a2d3b0 /* Binary/SnConvX.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2d4187ff3d0a2d418 /* Binary/SnConvX_Align.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2d4807ff3d0a2d480 /* Binary/SnConvX_Convert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Convert.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Convert.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2d4e87ff3d0a2d4e8 /* Binary/SnConvX_Error.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Error.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Error.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2d5507ff3d0a2d550 /* Binary/SnConvX_MetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2d5b87ff3d0a2d5b8 /* Binary/SnConvX_Output.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2d6207ff3d0a2d620 /* Binary/SnConvX_Union.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2d6887ff3d0a2d688 /* Binary/SnSerializationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2d6f07ff3d0a2d6f0 /* Xml/SnJointRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnJointRepXSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2d7587ff3d0a2d758 /* Xml/SnPxStreamOperators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnPxStreamOperators.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnPxStreamOperators.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2d7c07ff3d0a2d7c0 /* Xml/SnRepX1_0Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX1_0Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX1_0Defaults.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2d8287ff3d0a2d828 /* Xml/SnRepX3_1Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_1Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_1Defaults.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2d8907ff3d0a2d890 /* Xml/SnRepX3_2Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_2Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_2Defaults.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2d8f87ff3d0a2d8f8 /* Xml/SnRepXCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCollection.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCollection.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2d9607ff3d0a2d960 /* Xml/SnRepXCoreSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2d9c87ff3d0a2d9c8 /* Xml/SnRepXSerializerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXSerializerImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXSerializerImpl.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2da307ff3d0a2da30 /* Xml/SnRepXUpgrader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2da987ff3d0a2da98 /* Xml/SnSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2db007ff3d0a2db00 /* Xml/SnXmlDeserializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlDeserializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlDeserializer.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2db687ff3d0a2db68 /* Xml/SnXmlImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlImpl.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2dbd07ff3d0a2dbd0 /* Xml/SnXmlMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryAllocator.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryAllocator.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2dc387ff3d0a2dc38 /* Xml/SnXmlMemoryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPool.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPool.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2dca07ff3d0a2dca0 /* Xml/SnXmlMemoryPoolStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPoolStreams.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPoolStreams.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2dd087ff3d0a2dd08 /* Xml/SnXmlReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlReader.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2dd707ff3d0a2dd70 /* Xml/SnXmlSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerializer.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2ddd87ff3d0a2ddd8 /* Xml/SnXmlSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2de407ff3d0a2de40 /* Xml/SnXmlStringToType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlStringToType.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlStringToType.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2dea87ff3d0a2dea8 /* Xml/SnXmlVisitorReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorReader.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2df107ff3d0a2df10 /* Xml/SnXmlVisitorWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorWriter.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2df787ff3d0a2df78 /* Xml/SnXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlWriter.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2dfe07ff3d0a2dfe0 /* Xml/SnJointRepXSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnJointRepXSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2e0487ff3d0a2e048 /* Xml/SnRepXCoreSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2e0b07ff3d0a2e0b0 /* Xml/SnRepXUpgrader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2e1187ff3d0a2e118 /* Xml/SnXmlSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerialization.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2e1807ff3d0a2e180 /* File/SnFile.h */= { isa = PBXFileReference; fileEncoding = 4; name = "File/SnFile.h"; path = "../../PhysXExtensions/src/serialization/File/SnFile.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2aa007ff3d0a2aa00 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2aa687ff3d0a2aa68 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2aad07ff3d0a2aad0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2ab387ff3d0a2ab38 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2aba07ff3d0a2aba0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2ac087ff3d0a2ac08 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2ac707ff3d0a2ac70 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2acd87ff3d0a2acd8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2ad407ff3d0a2ad40 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2ada87ff3d0a2ada8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2ae107ff3d0a2ae10 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2ae787ff3d0a2ae78 /* extensions/include/PxExtensionMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a2aee07ff3d0a2aee0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXMetaData/extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3dae43907f8d3dae4390 /* PhysXExtensions */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXExtensions"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFD3d0832007f8d3d083200 /* PxBinaryConverter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBinaryConverter.h"; path = "../../../Include/extensions/PxBinaryConverter.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0832687f8d3d083268 /* PxBroadPhaseExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhaseExt.h"; path = "../../../Include/extensions/PxBroadPhaseExt.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0832d07f8d3d0832d0 /* PxClothFabricCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothFabricCooker.h"; path = "../../../Include/extensions/PxClothFabricCooker.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0833387f8d3d083338 /* PxClothMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshDesc.h"; path = "../../../Include/extensions/PxClothMeshDesc.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0833a07f8d3d0833a0 /* PxClothMeshQuadifier.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshQuadifier.h"; path = "../../../Include/extensions/PxClothMeshQuadifier.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0834087f8d3d083408 /* PxClothTetherCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothTetherCooker.h"; path = "../../../Include/extensions/PxClothTetherCooker.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0834707f8d3d083470 /* PxCollectionExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCollectionExt.h"; path = "../../../Include/extensions/PxCollectionExt.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0834d87f8d3d0834d8 /* PxConstraintExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintExt.h"; path = "../../../Include/extensions/PxConstraintExt.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0835407f8d3d083540 /* PxConvexMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshExt.h"; path = "../../../Include/extensions/PxConvexMeshExt.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0835a87f8d3d0835a8 /* PxD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxD6Joint.h"; path = "../../../Include/extensions/PxD6Joint.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0836107f8d3d083610 /* PxDefaultAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultAllocator.h"; path = "../../../Include/extensions/PxDefaultAllocator.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0836787f8d3d083678 /* PxDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultCpuDispatcher.h"; path = "../../../Include/extensions/PxDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0836e07f8d3d0836e0 /* PxDefaultErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultErrorCallback.h"; path = "../../../Include/extensions/PxDefaultErrorCallback.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0837487f8d3d083748 /* PxDefaultSimulationFilterShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultSimulationFilterShader.h"; path = "../../../Include/extensions/PxDefaultSimulationFilterShader.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0837b07f8d3d0837b0 /* PxDefaultStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultStreams.h"; path = "../../../Include/extensions/PxDefaultStreams.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0838187f8d3d083818 /* PxDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDistanceJoint.h"; path = "../../../Include/extensions/PxDistanceJoint.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0838807f8d3d083880 /* PxExtensionsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtensionsAPI.h"; path = "../../../Include/extensions/PxExtensionsAPI.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0838e87f8d3d0838e8 /* PxFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFixedJoint.h"; path = "../../../Include/extensions/PxFixedJoint.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0839507f8d3d083950 /* PxJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJoint.h"; path = "../../../Include/extensions/PxJoint.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0839b87f8d3d0839b8 /* PxJointLimit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJointLimit.h"; path = "../../../Include/extensions/PxJointLimit.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d083a207f8d3d083a20 /* PxMassProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMassProperties.h"; path = "../../../Include/extensions/PxMassProperties.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d083a887f8d3d083a88 /* PxParticleExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxParticleExt.h"; path = "../../../Include/extensions/PxParticleExt.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d083af07f8d3d083af0 /* PxPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPrismaticJoint.h"; path = "../../../Include/extensions/PxPrismaticJoint.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d083b587f8d3d083b58 /* PxRaycastCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRaycastCCD.h"; path = "../../../Include/extensions/PxRaycastCCD.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d083bc07f8d3d083bc0 /* PxRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSerializer.h"; path = "../../../Include/extensions/PxRepXSerializer.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d083c287f8d3d083c28 /* PxRepXSimpleType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSimpleType.h"; path = "../../../Include/extensions/PxRepXSimpleType.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d083c907f8d3d083c90 /* PxRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRevoluteJoint.h"; path = "../../../Include/extensions/PxRevoluteJoint.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d083cf87f8d3d083cf8 /* PxRigidActorExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActorExt.h"; path = "../../../Include/extensions/PxRigidActorExt.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d083d607f8d3d083d60 /* PxRigidBodyExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBodyExt.h"; path = "../../../Include/extensions/PxRigidBodyExt.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d083dc87f8d3d083dc8 /* PxSceneQueryExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneQueryExt.h"; path = "../../../Include/extensions/PxSceneQueryExt.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d083e307f8d3d083e30 /* PxSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSerialization.h"; path = "../../../Include/extensions/PxSerialization.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d083e987f8d3d083e98 /* PxShapeExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShapeExt.h"; path = "../../../Include/extensions/PxShapeExt.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d083f007f8d3d083f00 /* PxSimpleFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleFactory.h"; path = "../../../Include/extensions/PxSimpleFactory.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d083f687f8d3d083f68 /* PxSmoothNormals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSmoothNormals.h"; path = "../../../Include/extensions/PxSmoothNormals.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d083fd07f8d3d083fd0 /* PxSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSphericalJoint.h"; path = "../../../Include/extensions/PxSphericalJoint.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0840387f8d3d084038 /* PxStringTableExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStringTableExt.h"; path = "../../../Include/extensions/PxStringTableExt.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0840a07f8d3d0840a0 /* PxTriangleMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshExt.h"; path = "../../../Include/extensions/PxTriangleMeshExt.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d081c007f8d3d081c00 /* ExtConstraintHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConstraintHelper.h"; path = "../../PhysXExtensions/src/ExtConstraintHelper.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d081c687f8d3d081c68 /* ExtCpuWorkerThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.h"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d081cd07f8d3d081cd0 /* ExtD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.h"; path = "../../PhysXExtensions/src/ExtD6Joint.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d081d387f8d3d081d38 /* ExtDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.h"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d081da07f8d3d081da0 /* ExtDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.h"; path = "../../PhysXExtensions/src/ExtDistanceJoint.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d081e087f8d3d081e08 /* ExtFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.h"; path = "../../PhysXExtensions/src/ExtFixedJoint.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d081e707f8d3d081e70 /* ExtInertiaTensor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtInertiaTensor.h"; path = "../../PhysXExtensions/src/ExtInertiaTensor.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d081ed87f8d3d081ed8 /* ExtJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.h"; path = "../../PhysXExtensions/src/ExtJoint.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d081f407f8d3d081f40 /* ExtJointMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJointMetaDataExtensions.h"; path = "../../PhysXExtensions/src/ExtJointMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d081fa87f8d3d081fa8 /* ExtPlatform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPlatform.h"; path = "../../PhysXExtensions/src/ExtPlatform.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0820107f8d3d082010 /* ExtPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.h"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0820787f8d3d082078 /* ExtPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.h"; path = "../../PhysXExtensions/src/ExtPvd.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0820e07f8d3d0820e0 /* ExtRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.h"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0821487f8d3d082148 /* ExtSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSerialization.h"; path = "../../PhysXExtensions/src/ExtSerialization.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0821b07f8d3d0821b0 /* ExtSharedQueueEntryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSharedQueueEntryPool.h"; path = "../../PhysXExtensions/src/ExtSharedQueueEntryPool.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0822187f8d3d082218 /* ExtSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.h"; path = "../../PhysXExtensions/src/ExtSphericalJoint.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0822807f8d3d082280 /* ExtTaskQueueHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTaskQueueHelper.h"; path = "../../PhysXExtensions/src/ExtTaskQueueHelper.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0822e87f8d3d0822e8 /* ExtBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtBroadPhase.cpp"; path = "../../PhysXExtensions/src/ExtBroadPhase.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0823507f8d3d082350 /* ExtClothFabricCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothFabricCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothFabricCooker.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0823b87f8d3d0823b8 /* ExtClothGeodesicTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothGeodesicTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothGeodesicTetherCooker.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0824207f8d3d082420 /* ExtClothMeshQuadifier.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothMeshQuadifier.cpp"; path = "../../PhysXExtensions/src/ExtClothMeshQuadifier.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0824887f8d3d082488 /* ExtClothSimpleTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothSimpleTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothSimpleTetherCooker.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0824f07f8d3d0824f0 /* ExtCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCollection.cpp"; path = "../../PhysXExtensions/src/ExtCollection.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0825587f8d3d082558 /* ExtConvexMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConvexMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtConvexMeshExt.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0825c07f8d3d0825c0 /* ExtCpuWorkerThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.cpp"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0826287f8d3d082628 /* ExtD6Joint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.cpp"; path = "../../PhysXExtensions/src/ExtD6Joint.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0826907f8d3d082690 /* ExtD6JointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6JointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtD6JointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0826f87f8d3d0826f8 /* ExtDefaultCpuDispatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.cpp"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0827607f8d3d082760 /* ExtDefaultErrorCallback.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultErrorCallback.cpp"; path = "../../PhysXExtensions/src/ExtDefaultErrorCallback.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0827c87f8d3d0827c8 /* ExtDefaultSimulationFilterShader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultSimulationFilterShader.cpp"; path = "../../PhysXExtensions/src/ExtDefaultSimulationFilterShader.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0828307f8d3d082830 /* ExtDefaultStreams.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultStreams.cpp"; path = "../../PhysXExtensions/src/ExtDefaultStreams.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0828987f8d3d082898 /* ExtDistanceJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJoint.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0829007f8d3d082900 /* ExtDistanceJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0829687f8d3d082968 /* ExtExtensions.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtExtensions.cpp"; path = "../../PhysXExtensions/src/ExtExtensions.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0829d07f8d3d0829d0 /* ExtFixedJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.cpp"; path = "../../PhysXExtensions/src/ExtFixedJoint.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d082a387f8d3d082a38 /* ExtFixedJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtFixedJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d082aa07f8d3d082aa0 /* ExtJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.cpp"; path = "../../PhysXExtensions/src/ExtJoint.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d082b087f8d3d082b08 /* ExtMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtMetaData.cpp"; path = "../../PhysXExtensions/src/ExtMetaData.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d082b707f8d3d082b70 /* ExtParticleExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtParticleExt.cpp"; path = "../../PhysXExtensions/src/ExtParticleExt.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d082bd87f8d3d082bd8 /* ExtPrismaticJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d082c407f8d3d082c40 /* ExtPrismaticJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d082ca87f8d3d082ca8 /* ExtPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.cpp"; path = "../../PhysXExtensions/src/ExtPvd.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d082d107f8d3d082d10 /* ExtPxStringTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPxStringTable.cpp"; path = "../../PhysXExtensions/src/ExtPxStringTable.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d082d787f8d3d082d78 /* ExtRaycastCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRaycastCCD.cpp"; path = "../../PhysXExtensions/src/ExtRaycastCCD.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d082de07f8d3d082de0 /* ExtRevoluteJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d082e487f8d3d082e48 /* ExtRevoluteJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d082eb07f8d3d082eb0 /* ExtRigidBodyExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRigidBodyExt.cpp"; path = "../../PhysXExtensions/src/ExtRigidBodyExt.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d082f187f8d3d082f18 /* ExtSceneQueryExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSceneQueryExt.cpp"; path = "../../PhysXExtensions/src/ExtSceneQueryExt.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d082f807f8d3d082f80 /* ExtSimpleFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSimpleFactory.cpp"; path = "../../PhysXExtensions/src/ExtSimpleFactory.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d082fe87f8d3d082fe8 /* ExtSmoothNormals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSmoothNormals.cpp"; path = "../../PhysXExtensions/src/ExtSmoothNormals.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0830507f8d3d083050 /* ExtSphericalJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJoint.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0830b87f8d3d0830b8 /* ExtSphericalJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0831207f8d3d083120 /* ExtTriangleMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTriangleMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtTriangleMeshExt.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0866007f8d3d086600 /* SnSerialUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.h"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0866687f8d3d086668 /* SnSerializationRegistry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.h"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0866d07f8d3d0866d0 /* SnSerialUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0867387f8d3d086738 /* SnSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialization.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0867a07f8d3d0867a0 /* SnSerializationRegistry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0868087f8d3d086808 /* Binary/SnConvX.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0868707f8d3d086870 /* Binary/SnConvX_Align.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0868d87f8d3d0868d8 /* Binary/SnConvX_Common.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Common.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Common.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0869407f8d3d086940 /* Binary/SnConvX_MetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0869a87f8d3d0869a8 /* Binary/SnConvX_Output.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d086a107f8d3d086a10 /* Binary/SnConvX_Union.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d086a787f8d3d086a78 /* Binary/SnSerializationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d086ae07f8d3d086ae0 /* Binary/SnBinaryDeserialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinaryDeserialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinaryDeserialization.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d086b487f8d3d086b48 /* Binary/SnBinarySerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinarySerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinarySerialization.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d086bb07f8d3d086bb0 /* Binary/SnConvX.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d086c187f8d3d086c18 /* Binary/SnConvX_Align.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d086c807f8d3d086c80 /* Binary/SnConvX_Convert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Convert.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Convert.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d086ce87f8d3d086ce8 /* Binary/SnConvX_Error.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Error.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Error.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d086d507f8d3d086d50 /* Binary/SnConvX_MetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d086db87f8d3d086db8 /* Binary/SnConvX_Output.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d086e207f8d3d086e20 /* Binary/SnConvX_Union.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d086e887f8d3d086e88 /* Binary/SnSerializationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d086ef07f8d3d086ef0 /* Xml/SnJointRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnJointRepXSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d086f587f8d3d086f58 /* Xml/SnPxStreamOperators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnPxStreamOperators.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnPxStreamOperators.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d086fc07f8d3d086fc0 /* Xml/SnRepX1_0Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX1_0Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX1_0Defaults.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0870287f8d3d087028 /* Xml/SnRepX3_1Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_1Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_1Defaults.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0870907f8d3d087090 /* Xml/SnRepX3_2Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_2Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_2Defaults.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0870f87f8d3d0870f8 /* Xml/SnRepXCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCollection.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCollection.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0871607f8d3d087160 /* Xml/SnRepXCoreSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0871c87f8d3d0871c8 /* Xml/SnRepXSerializerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXSerializerImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXSerializerImpl.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0872307f8d3d087230 /* Xml/SnRepXUpgrader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0872987f8d3d087298 /* Xml/SnSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0873007f8d3d087300 /* Xml/SnXmlDeserializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlDeserializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlDeserializer.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0873687f8d3d087368 /* Xml/SnXmlImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlImpl.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0873d07f8d3d0873d0 /* Xml/SnXmlMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryAllocator.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryAllocator.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0874387f8d3d087438 /* Xml/SnXmlMemoryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPool.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPool.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0874a07f8d3d0874a0 /* Xml/SnXmlMemoryPoolStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPoolStreams.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPoolStreams.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0875087f8d3d087508 /* Xml/SnXmlReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlReader.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0875707f8d3d087570 /* Xml/SnXmlSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerializer.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0875d87f8d3d0875d8 /* Xml/SnXmlSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0876407f8d3d087640 /* Xml/SnXmlStringToType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlStringToType.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlStringToType.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0876a87f8d3d0876a8 /* Xml/SnXmlVisitorReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorReader.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0877107f8d3d087710 /* Xml/SnXmlVisitorWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorWriter.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0877787f8d3d087778 /* Xml/SnXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlWriter.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0877e07f8d3d0877e0 /* Xml/SnJointRepXSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnJointRepXSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0878487f8d3d087848 /* Xml/SnRepXCoreSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0878b07f8d3d0878b0 /* Xml/SnRepXUpgrader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0879187f8d3d087918 /* Xml/SnXmlSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerialization.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0879807f8d3d087980 /* File/SnFile.h */= { isa = PBXFileReference; fileEncoding = 4; name = "File/SnFile.h"; path = "../../PhysXExtensions/src/serialization/File/SnFile.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1b78007f8d3c1b7800 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1b78687f8d3c1b7868 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1b78d07f8d3c1b78d0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1b79387f8d3c1b7938 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1b79a07f8d3c1b79a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1b7a087f8d3c1b7a08 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1b7a707f8d3c1b7a70 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1b7ad87f8d3c1b7ad8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1b7b407f8d3c1b7b40 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1b7ba87f8d3c1b7ba8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1b7c107f8d3c1b7c10 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1b7c787f8d3c1b7c78 /* extensions/include/PxExtensionMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1b7ce07f8d3c1b7ce0 /* 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 */
- FFF2d2c7d5c07ff3d2c7d5c0 /* Resources */ = {
+ FFF23dae43907f8d3dae4390 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -804,7 +804,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFCd2c7d5c07ff3d2c7d5c0 /* Frameworks */ = {
+ FFFC3dae43907f8d3dae4390 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -814,64 +814,64 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF8d2c7d5c07ff3d2c7d5c0 /* Sources */ = {
+ FFF83dae43907f8d3dae4390 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFFd0a28ae87ff3d0a28ae8,
- FFFFd0a28b507ff3d0a28b50,
- FFFFd0a28bb87ff3d0a28bb8,
- FFFFd0a28c207ff3d0a28c20,
- FFFFd0a28c887ff3d0a28c88,
- FFFFd0a28cf07ff3d0a28cf0,
- FFFFd0a28d587ff3d0a28d58,
- FFFFd0a28dc07ff3d0a28dc0,
- FFFFd0a28e287ff3d0a28e28,
- FFFFd0a28e907ff3d0a28e90,
- FFFFd0a28ef87ff3d0a28ef8,
- FFFFd0a28f607ff3d0a28f60,
- FFFFd0a28fc87ff3d0a28fc8,
- FFFFd0a290307ff3d0a29030,
- FFFFd0a290987ff3d0a29098,
- FFFFd0a291007ff3d0a29100,
- FFFFd0a291687ff3d0a29168,
- FFFFd0a291d07ff3d0a291d0,
- FFFFd0a292387ff3d0a29238,
- FFFFd0a292a07ff3d0a292a0,
- FFFFd0a293087ff3d0a29308,
- FFFFd0a293707ff3d0a29370,
- FFFFd0a293d87ff3d0a293d8,
- FFFFd0a294407ff3d0a29440,
- FFFFd0a294a87ff3d0a294a8,
- FFFFd0a295107ff3d0a29510,
- FFFFd0a295787ff3d0a29578,
- FFFFd0a295e07ff3d0a295e0,
- FFFFd0a296487ff3d0a29648,
- FFFFd0a296b07ff3d0a296b0,
- FFFFd0a297187ff3d0a29718,
- FFFFd0a297807ff3d0a29780,
- FFFFd0a297e87ff3d0a297e8,
- FFFFd0a298507ff3d0a29850,
- FFFFd0a298b87ff3d0a298b8,
- FFFFd0a299207ff3d0a29920,
- FFFFd0a2ced07ff3d0a2ced0,
- FFFFd0a2cf387ff3d0a2cf38,
- FFFFd0a2cfa07ff3d0a2cfa0,
- FFFFd0a2d2e07ff3d0a2d2e0,
- FFFFd0a2d3487ff3d0a2d348,
- FFFFd0a2d3b07ff3d0a2d3b0,
- FFFFd0a2d4187ff3d0a2d418,
- FFFFd0a2d4807ff3d0a2d480,
- FFFFd0a2d4e87ff3d0a2d4e8,
- FFFFd0a2d5507ff3d0a2d550,
- FFFFd0a2d5b87ff3d0a2d5b8,
- FFFFd0a2d6207ff3d0a2d620,
- FFFFd0a2d6887ff3d0a2d688,
- FFFFd0a2dfe07ff3d0a2dfe0,
- FFFFd0a2e0487ff3d0a2e048,
- FFFFd0a2e0b07ff3d0a2e0b0,
- FFFFd0a2e1187ff3d0a2e118,
- FFFFd0a2aee07ff3d0a2aee0,
+ FFFF3d0822e87f8d3d0822e8,
+ FFFF3d0823507f8d3d082350,
+ FFFF3d0823b87f8d3d0823b8,
+ FFFF3d0824207f8d3d082420,
+ FFFF3d0824887f8d3d082488,
+ FFFF3d0824f07f8d3d0824f0,
+ FFFF3d0825587f8d3d082558,
+ FFFF3d0825c07f8d3d0825c0,
+ FFFF3d0826287f8d3d082628,
+ FFFF3d0826907f8d3d082690,
+ FFFF3d0826f87f8d3d0826f8,
+ FFFF3d0827607f8d3d082760,
+ FFFF3d0827c87f8d3d0827c8,
+ FFFF3d0828307f8d3d082830,
+ FFFF3d0828987f8d3d082898,
+ FFFF3d0829007f8d3d082900,
+ FFFF3d0829687f8d3d082968,
+ FFFF3d0829d07f8d3d0829d0,
+ FFFF3d082a387f8d3d082a38,
+ FFFF3d082aa07f8d3d082aa0,
+ FFFF3d082b087f8d3d082b08,
+ FFFF3d082b707f8d3d082b70,
+ FFFF3d082bd87f8d3d082bd8,
+ FFFF3d082c407f8d3d082c40,
+ FFFF3d082ca87f8d3d082ca8,
+ FFFF3d082d107f8d3d082d10,
+ FFFF3d082d787f8d3d082d78,
+ FFFF3d082de07f8d3d082de0,
+ FFFF3d082e487f8d3d082e48,
+ FFFF3d082eb07f8d3d082eb0,
+ FFFF3d082f187f8d3d082f18,
+ FFFF3d082f807f8d3d082f80,
+ FFFF3d082fe87f8d3d082fe8,
+ FFFF3d0830507f8d3d083050,
+ FFFF3d0830b87f8d3d0830b8,
+ FFFF3d0831207f8d3d083120,
+ FFFF3d0866d07f8d3d0866d0,
+ FFFF3d0867387f8d3d086738,
+ FFFF3d0867a07f8d3d0867a0,
+ FFFF3d086ae07f8d3d086ae0,
+ FFFF3d086b487f8d3d086b48,
+ FFFF3d086bb07f8d3d086bb0,
+ FFFF3d086c187f8d3d086c18,
+ FFFF3d086c807f8d3d086c80,
+ FFFF3d086ce87f8d3d086ce8,
+ FFFF3d086d507f8d3d086d50,
+ FFFF3d086db87f8d3d086db8,
+ FFFF3d086e207f8d3d086e20,
+ FFFF3d086e887f8d3d086e88,
+ FFFF3d0877e07f8d3d0877e0,
+ FFFF3d0878487f8d3d087848,
+ FFFF3d0878b07f8d3d0878b0,
+ FFFF3d0879187f8d3d087918,
+ FFFF3c1b7ce07f8d3c1b7ce0,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -880,65 +880,65 @@
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
- FFF4d2c7ccc07ff3d2c7ccc0 /* PBXTargetDependency */ = {
+ FFF43dae3a907f8d3dae3a90 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFAd2c601707ff3d2c60170 /* PsFastXml */;
- targetProxy = FFF5d2c601707ff3d2c60170 /* PBXContainerItemProxy */;
+ target = FFFA3dac6c007f8d3dac6c00 /* PsFastXml */;
+ targetProxy = FFF53dac6c007f8d3dac6c00 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of SceneQuery */
- FFFFd0a30e007ff3d0a30e00 /* SqAABBPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a30e007ff3d0a30e00 /* SqAABBPruner.cpp */; };
- FFFFd0a30e687ff3d0a30e68 /* SqAABBTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a30e687ff3d0a30e68 /* SqAABBTree.cpp */; };
- FFFFd0a30ed07ff3d0a30ed0 /* SqAABBTreeBuild.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a30ed07ff3d0a30ed0 /* SqAABBTreeBuild.cpp */; };
- FFFFd0a30f387ff3d0a30f38 /* SqAABBTreeUpdateMap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a30f387ff3d0a30f38 /* SqAABBTreeUpdateMap.cpp */; };
- FFFFd0a30fa07ff3d0a30fa0 /* SqBounds.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a30fa07ff3d0a30fa0 /* SqBounds.cpp */; };
- FFFFd0a310087ff3d0a31008 /* SqBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a310087ff3d0a31008 /* SqBucketPruner.cpp */; };
- FFFFd0a310707ff3d0a31070 /* SqExtendedBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a310707ff3d0a31070 /* SqExtendedBucketPruner.cpp */; };
- FFFFd0a310d87ff3d0a310d8 /* SqIncrementalAABBPrunerCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a310d87ff3d0a310d8 /* SqIncrementalAABBPrunerCore.cpp */; };
- FFFFd0a311407ff3d0a31140 /* SqIncrementalAABBTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a311407ff3d0a31140 /* SqIncrementalAABBTree.cpp */; };
- FFFFd0a311a87ff3d0a311a8 /* SqMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a311a87ff3d0a311a8 /* SqMetaData.cpp */; };
- FFFFd0a312107ff3d0a31210 /* SqPruningPool.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a312107ff3d0a31210 /* SqPruningPool.cpp */; };
- FFFFd0a312787ff3d0a31278 /* SqPruningStructure.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a312787ff3d0a31278 /* SqPruningStructure.cpp */; };
- FFFFd0a312e07ff3d0a312e0 /* SqSceneQueryManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd0a312e07ff3d0a312e0 /* SqSceneQueryManager.cpp */; };
+ FFFF3c1be0007f8d3c1be000 /* SqAABBPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1be0007f8d3c1be000 /* SqAABBPruner.cpp */; };
+ FFFF3c1be0687f8d3c1be068 /* SqAABBTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1be0687f8d3c1be068 /* SqAABBTree.cpp */; };
+ FFFF3c1be0d07f8d3c1be0d0 /* SqAABBTreeBuild.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1be0d07f8d3c1be0d0 /* SqAABBTreeBuild.cpp */; };
+ FFFF3c1be1387f8d3c1be138 /* SqAABBTreeUpdateMap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1be1387f8d3c1be138 /* SqAABBTreeUpdateMap.cpp */; };
+ FFFF3c1be1a07f8d3c1be1a0 /* SqBounds.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1be1a07f8d3c1be1a0 /* SqBounds.cpp */; };
+ FFFF3c1be2087f8d3c1be208 /* SqBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1be2087f8d3c1be208 /* SqBucketPruner.cpp */; };
+ FFFF3c1be2707f8d3c1be270 /* SqExtendedBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1be2707f8d3c1be270 /* SqExtendedBucketPruner.cpp */; };
+ FFFF3c1be2d87f8d3c1be2d8 /* SqIncrementalAABBPrunerCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1be2d87f8d3c1be2d8 /* SqIncrementalAABBPrunerCore.cpp */; };
+ FFFF3c1be3407f8d3c1be340 /* SqIncrementalAABBTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1be3407f8d3c1be340 /* SqIncrementalAABBTree.cpp */; };
+ FFFF3c1be3a87f8d3c1be3a8 /* SqMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1be3a87f8d3c1be3a8 /* SqMetaData.cpp */; };
+ FFFF3c1be4107f8d3c1be410 /* SqPruningPool.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1be4107f8d3c1be410 /* SqPruningPool.cpp */; };
+ FFFF3c1be4787f8d3c1be478 /* SqPruningStructure.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1be4787f8d3c1be478 /* SqPruningStructure.cpp */; };
+ FFFF3c1be4e07f8d3c1be4e0 /* SqSceneQueryManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1be4e07f8d3c1be4e0 /* SqSceneQueryManager.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFDd2c8ff407ff3d2c8ff40 /* SceneQuery */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SceneQuery"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFDd0a30e007ff3d0a30e00 /* SqAABBPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.cpp"; path = "../../SceneQuery/src/SqAABBPruner.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a30e687ff3d0a30e68 /* SqAABBTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.cpp"; path = "../../SceneQuery/src/SqAABBTree.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a30ed07ff3d0a30ed0 /* SqAABBTreeBuild.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeBuild.cpp"; path = "../../SceneQuery/src/SqAABBTreeBuild.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a30f387ff3d0a30f38 /* SqAABBTreeUpdateMap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.cpp"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a30fa07ff3d0a30fa0 /* SqBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.cpp"; path = "../../SceneQuery/src/SqBounds.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a310087ff3d0a31008 /* SqBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.cpp"; path = "../../SceneQuery/src/SqBucketPruner.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a310707ff3d0a31070 /* SqExtendedBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.cpp"; path = "../../SceneQuery/src/SqExtendedBucketPruner.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a310d87ff3d0a310d8 /* SqIncrementalAABBPrunerCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqIncrementalAABBPrunerCore.cpp"; path = "../../SceneQuery/src/SqIncrementalAABBPrunerCore.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a311407ff3d0a31140 /* SqIncrementalAABBTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqIncrementalAABBTree.cpp"; path = "../../SceneQuery/src/SqIncrementalAABBTree.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a311a87ff3d0a311a8 /* SqMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqMetaData.cpp"; path = "../../SceneQuery/src/SqMetaData.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a312107ff3d0a31210 /* SqPruningPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.cpp"; path = "../../SceneQuery/src/SqPruningPool.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a312787ff3d0a31278 /* SqPruningStructure.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.cpp"; path = "../../SceneQuery/src/SqPruningStructure.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a312e07ff3d0a312e0 /* SqSceneQueryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.cpp"; path = "../../SceneQuery/src/SqSceneQueryManager.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd0a313487ff3d0a31348 /* SqAABBPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.h"; path = "../../SceneQuery/src/SqAABBPruner.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a313b07ff3d0a313b0 /* SqAABBTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.h"; path = "../../SceneQuery/src/SqAABBTree.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a314187ff3d0a31418 /* SqAABBTreeBuild.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeBuild.h"; path = "../../SceneQuery/src/SqAABBTreeBuild.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a314807ff3d0a31480 /* SqAABBTreeQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeQuery.h"; path = "../../SceneQuery/src/SqAABBTreeQuery.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a314e87ff3d0a314e8 /* SqAABBTreeUpdateMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.h"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a315507ff3d0a31550 /* SqBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.h"; path = "../../SceneQuery/src/SqBounds.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a315b87ff3d0a315b8 /* SqBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.h"; path = "../../SceneQuery/src/SqBucketPruner.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a316207ff3d0a31620 /* SqExtendedBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.h"; path = "../../SceneQuery/src/SqExtendedBucketPruner.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a316887ff3d0a31688 /* SqIncrementalAABBPrunerCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqIncrementalAABBPrunerCore.h"; path = "../../SceneQuery/src/SqIncrementalAABBPrunerCore.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a316f07ff3d0a316f0 /* SqIncrementalAABBTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqIncrementalAABBTree.h"; path = "../../SceneQuery/src/SqIncrementalAABBTree.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a317587ff3d0a31758 /* SqPrunerTestsSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerTestsSIMD.h"; path = "../../SceneQuery/src/SqPrunerTestsSIMD.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a317c07ff3d0a317c0 /* SqPruningPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.h"; path = "../../SceneQuery/src/SqPruningPool.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a318287ff3d0a31828 /* SqTypedef.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqTypedef.h"; path = "../../SceneQuery/src/SqTypedef.h"; sourceTree = SOURCE_ROOT; };
- FFFDd2c941d07ff3d2c941d0 /* SqPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruner.h"; path = "../../SceneQuery/include/SqPruner.h"; sourceTree = SOURCE_ROOT; };
- FFFDd2c942387ff3d2c94238 /* SqPrunerMergeData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerMergeData.h"; path = "../../SceneQuery/include/SqPrunerMergeData.h"; sourceTree = SOURCE_ROOT; };
- FFFDd2c942a07ff3d2c942a0 /* SqPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.h"; path = "../../SceneQuery/include/SqPruningStructure.h"; sourceTree = SOURCE_ROOT; };
- FFFDd2c943087ff3d2c94308 /* SqSceneQueryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.h"; path = "../../SceneQuery/include/SqSceneQueryManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3cc2ae407f8d3cc2ae40 /* SceneQuery */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SceneQuery"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFD3c1be0007f8d3c1be000 /* SqAABBPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.cpp"; path = "../../SceneQuery/src/SqAABBPruner.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1be0687f8d3c1be068 /* SqAABBTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.cpp"; path = "../../SceneQuery/src/SqAABBTree.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1be0d07f8d3c1be0d0 /* SqAABBTreeBuild.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeBuild.cpp"; path = "../../SceneQuery/src/SqAABBTreeBuild.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1be1387f8d3c1be138 /* SqAABBTreeUpdateMap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.cpp"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1be1a07f8d3c1be1a0 /* SqBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.cpp"; path = "../../SceneQuery/src/SqBounds.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1be2087f8d3c1be208 /* SqBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.cpp"; path = "../../SceneQuery/src/SqBucketPruner.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1be2707f8d3c1be270 /* SqExtendedBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.cpp"; path = "../../SceneQuery/src/SqExtendedBucketPruner.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1be2d87f8d3c1be2d8 /* SqIncrementalAABBPrunerCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqIncrementalAABBPrunerCore.cpp"; path = "../../SceneQuery/src/SqIncrementalAABBPrunerCore.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1be3407f8d3c1be340 /* SqIncrementalAABBTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqIncrementalAABBTree.cpp"; path = "../../SceneQuery/src/SqIncrementalAABBTree.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1be3a87f8d3c1be3a8 /* SqMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqMetaData.cpp"; path = "../../SceneQuery/src/SqMetaData.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1be4107f8d3c1be410 /* SqPruningPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.cpp"; path = "../../SceneQuery/src/SqPruningPool.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1be4787f8d3c1be478 /* SqPruningStructure.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.cpp"; path = "../../SceneQuery/src/SqPruningStructure.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1be4e07f8d3c1be4e0 /* SqSceneQueryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.cpp"; path = "../../SceneQuery/src/SqSceneQueryManager.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1be5487f8d3c1be548 /* SqAABBPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.h"; path = "../../SceneQuery/src/SqAABBPruner.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1be5b07f8d3c1be5b0 /* SqAABBTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.h"; path = "../../SceneQuery/src/SqAABBTree.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1be6187f8d3c1be618 /* SqAABBTreeBuild.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeBuild.h"; path = "../../SceneQuery/src/SqAABBTreeBuild.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1be6807f8d3c1be680 /* SqAABBTreeQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeQuery.h"; path = "../../SceneQuery/src/SqAABBTreeQuery.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1be6e87f8d3c1be6e8 /* SqAABBTreeUpdateMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.h"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1be7507f8d3c1be750 /* SqBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.h"; path = "../../SceneQuery/src/SqBounds.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1be7b87f8d3c1be7b8 /* SqBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.h"; path = "../../SceneQuery/src/SqBucketPruner.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1be8207f8d3c1be820 /* SqExtendedBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.h"; path = "../../SceneQuery/src/SqExtendedBucketPruner.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1be8887f8d3c1be888 /* SqIncrementalAABBPrunerCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqIncrementalAABBPrunerCore.h"; path = "../../SceneQuery/src/SqIncrementalAABBPrunerCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1be8f07f8d3c1be8f0 /* SqIncrementalAABBTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqIncrementalAABBTree.h"; path = "../../SceneQuery/src/SqIncrementalAABBTree.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1be9587f8d3c1be958 /* SqPrunerTestsSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerTestsSIMD.h"; path = "../../SceneQuery/src/SqPrunerTestsSIMD.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1be9c07f8d3c1be9c0 /* SqPruningPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.h"; path = "../../SceneQuery/src/SqPruningPool.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1bea287f8d3c1bea28 /* SqTypedef.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqTypedef.h"; path = "../../SceneQuery/src/SqTypedef.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3cc2efb07f8d3cc2efb0 /* SqPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruner.h"; path = "../../SceneQuery/include/SqPruner.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3cc2f0187f8d3cc2f018 /* SqPrunerMergeData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerMergeData.h"; path = "../../SceneQuery/include/SqPrunerMergeData.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3cc2f0807f8d3cc2f080 /* SqPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.h"; path = "../../SceneQuery/include/SqPruningStructure.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3cc2f0e87f8d3cc2f0e8 /* SqSceneQueryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.h"; path = "../../SceneQuery/include/SqSceneQueryManager.h"; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */
/* Begin PBXResourcesBuildPhase section */
- FFF2d2c8ff407ff3d2c8ff40 /* Resources */ = {
+ FFF23cc2ae407f8d3cc2ae40 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -948,7 +948,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFCd2c8ff407ff3d2c8ff40 /* Frameworks */ = {
+ FFFC3cc2ae407f8d3cc2ae40 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -958,23 +958,23 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF8d2c8ff407ff3d2c8ff40 /* Sources */ = {
+ FFF83cc2ae407f8d3cc2ae40 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFFd0a30e007ff3d0a30e00,
- FFFFd0a30e687ff3d0a30e68,
- FFFFd0a30ed07ff3d0a30ed0,
- FFFFd0a30f387ff3d0a30f38,
- FFFFd0a30fa07ff3d0a30fa0,
- FFFFd0a310087ff3d0a31008,
- FFFFd0a310707ff3d0a31070,
- FFFFd0a310d87ff3d0a310d8,
- FFFFd0a311407ff3d0a31140,
- FFFFd0a311a87ff3d0a311a8,
- FFFFd0a312107ff3d0a31210,
- FFFFd0a312787ff3d0a31278,
- FFFFd0a312e07ff3d0a312e0,
+ FFFF3c1be0007f8d3c1be000,
+ FFFF3c1be0687f8d3c1be068,
+ FFFF3c1be0d07f8d3c1be0d0,
+ FFFF3c1be1387f8d3c1be138,
+ FFFF3c1be1a07f8d3c1be1a0,
+ FFFF3c1be2087f8d3c1be208,
+ FFFF3c1be2707f8d3c1be270,
+ FFFF3c1be2d87f8d3c1be2d8,
+ FFFF3c1be3407f8d3c1be340,
+ FFFF3c1be3a87f8d3c1be3a8,
+ FFFF3c1be4107f8d3c1be410,
+ FFFF3c1be4787f8d3c1be478,
+ FFFF3c1be4e07f8d3c1be4e0,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -986,154 +986,154 @@
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of SimulationController */
- FFFFd3801dd07ff3d3801dd0 /* ScActorCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd3801dd07ff3d3801dd0 /* ScActorCore.cpp */; };
- FFFFd3801e387ff3d3801e38 /* ScActorSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd3801e387ff3d3801e38 /* ScActorSim.cpp */; };
- FFFFd3801ea07ff3d3801ea0 /* ScArticulationCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd3801ea07ff3d3801ea0 /* ScArticulationCore.cpp */; };
- FFFFd3801f087ff3d3801f08 /* ScArticulationJointCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd3801f087ff3d3801f08 /* ScArticulationJointCore.cpp */; };
- FFFFd3801f707ff3d3801f70 /* ScArticulationJointSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd3801f707ff3d3801f70 /* ScArticulationJointSim.cpp */; };
- FFFFd3801fd87ff3d3801fd8 /* ScArticulationSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd3801fd87ff3d3801fd8 /* ScArticulationSim.cpp */; };
- FFFFd38020407ff3d3802040 /* ScBodyCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd38020407ff3d3802040 /* ScBodyCore.cpp */; };
- FFFFd38020a87ff3d38020a8 /* ScBodyCoreKinematic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd38020a87ff3d38020a8 /* ScBodyCoreKinematic.cpp */; };
- FFFFd38021107ff3d3802110 /* ScBodySim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd38021107ff3d3802110 /* ScBodySim.cpp */; };
- FFFFd38021787ff3d3802178 /* ScConstraintCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd38021787ff3d3802178 /* ScConstraintCore.cpp */; };
- FFFFd38021e07ff3d38021e0 /* ScConstraintGroupNode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd38021e07ff3d38021e0 /* ScConstraintGroupNode.cpp */; };
- FFFFd38022487ff3d3802248 /* ScConstraintInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd38022487ff3d3802248 /* ScConstraintInteraction.cpp */; };
- FFFFd38022b07ff3d38022b0 /* ScConstraintProjectionManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd38022b07ff3d38022b0 /* ScConstraintProjectionManager.cpp */; };
- FFFFd38023187ff3d3802318 /* ScConstraintProjectionTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd38023187ff3d3802318 /* ScConstraintProjectionTree.cpp */; };
- FFFFd38023807ff3d3802380 /* ScConstraintSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd38023807ff3d3802380 /* ScConstraintSim.cpp */; };
- FFFFd38023e87ff3d38023e8 /* ScElementInteractionMarker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd38023e87ff3d38023e8 /* ScElementInteractionMarker.cpp */; };
- FFFFd38024507ff3d3802450 /* ScElementSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd38024507ff3d3802450 /* ScElementSim.cpp */; };
- FFFFd38024b87ff3d38024b8 /* ScInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd38024b87ff3d38024b8 /* ScInteraction.cpp */; };
- FFFFd38025207ff3d3802520 /* ScIterators.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd38025207ff3d3802520 /* ScIterators.cpp */; };
- FFFFd38025887ff3d3802588 /* ScMaterialCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd38025887ff3d3802588 /* ScMaterialCore.cpp */; };
- FFFFd38025f07ff3d38025f0 /* ScMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd38025f07ff3d38025f0 /* ScMetaData.cpp */; };
- FFFFd38026587ff3d3802658 /* ScNPhaseCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd38026587ff3d3802658 /* ScNPhaseCore.cpp */; };
- FFFFd38026c07ff3d38026c0 /* ScPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd38026c07ff3d38026c0 /* ScPhysics.cpp */; };
- FFFFd38027287ff3d3802728 /* ScRigidCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd38027287ff3d3802728 /* ScRigidCore.cpp */; };
- FFFFd38027907ff3d3802790 /* ScRigidSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd38027907ff3d3802790 /* ScRigidSim.cpp */; };
- FFFFd38027f87ff3d38027f8 /* ScScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd38027f87ff3d38027f8 /* ScScene.cpp */; };
- FFFFd38028607ff3d3802860 /* ScShapeCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd38028607ff3d3802860 /* ScShapeCore.cpp */; };
- FFFFd38028c87ff3d38028c8 /* ScShapeInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd38028c87ff3d38028c8 /* ScShapeInteraction.cpp */; };
- FFFFd38029307ff3d3802930 /* ScShapeSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd38029307ff3d3802930 /* ScShapeSim.cpp */; };
- FFFFd38029987ff3d3802998 /* ScSimStats.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd38029987ff3d3802998 /* ScSimStats.cpp */; };
- FFFFd3802a007ff3d3802a00 /* ScSimulationController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd3802a007ff3d3802a00 /* ScSimulationController.cpp */; };
- FFFFd3802a687ff3d3802a68 /* ScSqBoundsManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd3802a687ff3d3802a68 /* ScSqBoundsManager.cpp */; };
- FFFFd3802ad07ff3d3802ad0 /* ScStaticCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd3802ad07ff3d3802ad0 /* ScStaticCore.cpp */; };
- FFFFd3802b387ff3d3802b38 /* ScStaticSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd3802b387ff3d3802b38 /* ScStaticSim.cpp */; };
- FFFFd3802ba07ff3d3802ba0 /* ScTriggerInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd3802ba07ff3d3802ba0 /* ScTriggerInteraction.cpp */; };
- FFFFd3802d407ff3d3802d40 /* particles/ScParticleBodyInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd3802d407ff3d3802d40 /* particles/ScParticleBodyInteraction.cpp */; };
- FFFFd3802da87ff3d3802da8 /* particles/ScParticlePacketShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd3802da87ff3d3802da8 /* particles/ScParticlePacketShape.cpp */; };
- FFFFd3802e107ff3d3802e10 /* particles/ScParticleSystemCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd3802e107ff3d3802e10 /* particles/ScParticleSystemCore.cpp */; };
- FFFFd3802e787ff3d3802e78 /* particles/ScParticleSystemSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd3802e787ff3d3802e78 /* particles/ScParticleSystemSim.cpp */; };
- FFFFd3802fb07ff3d3802fb0 /* cloth/ScClothCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd3802fb07ff3d3802fb0 /* cloth/ScClothCore.cpp */; };
- FFFFd38030187ff3d3803018 /* cloth/ScClothFabricCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd38030187ff3d3803018 /* cloth/ScClothFabricCore.cpp */; };
- FFFFd38030807ff3d3803080 /* cloth/ScClothShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd38030807ff3d3803080 /* cloth/ScClothShape.cpp */; };
- FFFFd38030e87ff3d38030e8 /* cloth/ScClothSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd38030e87ff3d38030e8 /* cloth/ScClothSim.cpp */; };
+ FFFF3c1c4bd07f8d3c1c4bd0 /* ScActorCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c4bd07f8d3c1c4bd0 /* ScActorCore.cpp */; };
+ FFFF3c1c4c387f8d3c1c4c38 /* ScActorSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c4c387f8d3c1c4c38 /* ScActorSim.cpp */; };
+ FFFF3c1c4ca07f8d3c1c4ca0 /* ScArticulationCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c4ca07f8d3c1c4ca0 /* ScArticulationCore.cpp */; };
+ FFFF3c1c4d087f8d3c1c4d08 /* ScArticulationJointCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c4d087f8d3c1c4d08 /* ScArticulationJointCore.cpp */; };
+ FFFF3c1c4d707f8d3c1c4d70 /* ScArticulationJointSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c4d707f8d3c1c4d70 /* ScArticulationJointSim.cpp */; };
+ FFFF3c1c4dd87f8d3c1c4dd8 /* ScArticulationSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c4dd87f8d3c1c4dd8 /* ScArticulationSim.cpp */; };
+ FFFF3c1c4e407f8d3c1c4e40 /* ScBodyCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c4e407f8d3c1c4e40 /* ScBodyCore.cpp */; };
+ FFFF3c1c4ea87f8d3c1c4ea8 /* ScBodyCoreKinematic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c4ea87f8d3c1c4ea8 /* ScBodyCoreKinematic.cpp */; };
+ FFFF3c1c4f107f8d3c1c4f10 /* ScBodySim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c4f107f8d3c1c4f10 /* ScBodySim.cpp */; };
+ FFFF3c1c4f787f8d3c1c4f78 /* ScConstraintCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c4f787f8d3c1c4f78 /* ScConstraintCore.cpp */; };
+ FFFF3c1c4fe07f8d3c1c4fe0 /* ScConstraintGroupNode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c4fe07f8d3c1c4fe0 /* ScConstraintGroupNode.cpp */; };
+ FFFF3c1c50487f8d3c1c5048 /* ScConstraintInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c50487f8d3c1c5048 /* ScConstraintInteraction.cpp */; };
+ FFFF3c1c50b07f8d3c1c50b0 /* ScConstraintProjectionManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c50b07f8d3c1c50b0 /* ScConstraintProjectionManager.cpp */; };
+ FFFF3c1c51187f8d3c1c5118 /* ScConstraintProjectionTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c51187f8d3c1c5118 /* ScConstraintProjectionTree.cpp */; };
+ FFFF3c1c51807f8d3c1c5180 /* ScConstraintSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c51807f8d3c1c5180 /* ScConstraintSim.cpp */; };
+ FFFF3c1c51e87f8d3c1c51e8 /* ScElementInteractionMarker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c51e87f8d3c1c51e8 /* ScElementInteractionMarker.cpp */; };
+ FFFF3c1c52507f8d3c1c5250 /* ScElementSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c52507f8d3c1c5250 /* ScElementSim.cpp */; };
+ FFFF3c1c52b87f8d3c1c52b8 /* ScInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c52b87f8d3c1c52b8 /* ScInteraction.cpp */; };
+ FFFF3c1c53207f8d3c1c5320 /* ScIterators.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c53207f8d3c1c5320 /* ScIterators.cpp */; };
+ FFFF3c1c53887f8d3c1c5388 /* ScMaterialCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c53887f8d3c1c5388 /* ScMaterialCore.cpp */; };
+ FFFF3c1c53f07f8d3c1c53f0 /* ScMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c53f07f8d3c1c53f0 /* ScMetaData.cpp */; };
+ FFFF3c1c54587f8d3c1c5458 /* ScNPhaseCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c54587f8d3c1c5458 /* ScNPhaseCore.cpp */; };
+ FFFF3c1c54c07f8d3c1c54c0 /* ScPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c54c07f8d3c1c54c0 /* ScPhysics.cpp */; };
+ FFFF3c1c55287f8d3c1c5528 /* ScRigidCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c55287f8d3c1c5528 /* ScRigidCore.cpp */; };
+ FFFF3c1c55907f8d3c1c5590 /* ScRigidSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c55907f8d3c1c5590 /* ScRigidSim.cpp */; };
+ FFFF3c1c55f87f8d3c1c55f8 /* ScScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c55f87f8d3c1c55f8 /* ScScene.cpp */; };
+ FFFF3c1c56607f8d3c1c5660 /* ScShapeCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c56607f8d3c1c5660 /* ScShapeCore.cpp */; };
+ FFFF3c1c56c87f8d3c1c56c8 /* ScShapeInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c56c87f8d3c1c56c8 /* ScShapeInteraction.cpp */; };
+ FFFF3c1c57307f8d3c1c5730 /* ScShapeSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c57307f8d3c1c5730 /* ScShapeSim.cpp */; };
+ FFFF3c1c57987f8d3c1c5798 /* ScSimStats.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c57987f8d3c1c5798 /* ScSimStats.cpp */; };
+ FFFF3c1c58007f8d3c1c5800 /* ScSimulationController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c58007f8d3c1c5800 /* ScSimulationController.cpp */; };
+ FFFF3c1c58687f8d3c1c5868 /* ScSqBoundsManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c58687f8d3c1c5868 /* ScSqBoundsManager.cpp */; };
+ FFFF3c1c58d07f8d3c1c58d0 /* ScStaticCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c58d07f8d3c1c58d0 /* ScStaticCore.cpp */; };
+ FFFF3c1c59387f8d3c1c5938 /* ScStaticSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c59387f8d3c1c5938 /* ScStaticSim.cpp */; };
+ FFFF3c1c59a07f8d3c1c59a0 /* ScTriggerInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c59a07f8d3c1c59a0 /* ScTriggerInteraction.cpp */; };
+ FFFF3c1c5b407f8d3c1c5b40 /* particles/ScParticleBodyInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c5b407f8d3c1c5b40 /* particles/ScParticleBodyInteraction.cpp */; };
+ FFFF3c1c5ba87f8d3c1c5ba8 /* particles/ScParticlePacketShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c5ba87f8d3c1c5ba8 /* particles/ScParticlePacketShape.cpp */; };
+ FFFF3c1c5c107f8d3c1c5c10 /* particles/ScParticleSystemCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c5c107f8d3c1c5c10 /* particles/ScParticleSystemCore.cpp */; };
+ FFFF3c1c5c787f8d3c1c5c78 /* particles/ScParticleSystemSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c5c787f8d3c1c5c78 /* particles/ScParticleSystemSim.cpp */; };
+ FFFF3c1c5db07f8d3c1c5db0 /* cloth/ScClothCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c5db07f8d3c1c5db0 /* cloth/ScClothCore.cpp */; };
+ FFFF3c1c5e187f8d3c1c5e18 /* cloth/ScClothFabricCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c5e187f8d3c1c5e18 /* cloth/ScClothFabricCore.cpp */; };
+ FFFF3c1c5e807f8d3c1c5e80 /* cloth/ScClothShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c5e807f8d3c1c5e80 /* cloth/ScClothShape.cpp */; };
+ FFFF3c1c5ee87f8d3c1c5ee8 /* cloth/ScClothSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c5ee87f8d3c1c5ee8 /* cloth/ScClothSim.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFDd2c944907ff3d2c94490 /* SimulationController */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SimulationController"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFDd0a33a007ff3d0a33a00 /* ScActorCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.h"; path = "../../SimulationController/include/ScActorCore.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a33a687ff3d0a33a68 /* ScArticulationCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.h"; path = "../../SimulationController/include/ScArticulationCore.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a33ad07ff3d0a33ad0 /* ScArticulationJointCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.h"; path = "../../SimulationController/include/ScArticulationJointCore.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a33b387ff3d0a33b38 /* ScBodyCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.h"; path = "../../SimulationController/include/ScBodyCore.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a33ba07ff3d0a33ba0 /* ScClothCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothCore.h"; path = "../../SimulationController/include/ScClothCore.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a33c087ff3d0a33c08 /* ScClothFabricCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothFabricCore.h"; path = "../../SimulationController/include/ScClothFabricCore.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a33c707ff3d0a33c70 /* ScConstraintCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.h"; path = "../../SimulationController/include/ScConstraintCore.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a33cd87ff3d0a33cd8 /* ScIterators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.h"; path = "../../SimulationController/include/ScIterators.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a33d407ff3d0a33d40 /* ScMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.h"; path = "../../SimulationController/include/ScMaterialCore.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a33da87ff3d0a33da8 /* ScParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScParticleSystemCore.h"; path = "../../SimulationController/include/ScParticleSystemCore.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a33e107ff3d0a33e10 /* ScPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.h"; path = "../../SimulationController/include/ScPhysics.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a33e787ff3d0a33e78 /* ScRigidCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.h"; path = "../../SimulationController/include/ScRigidCore.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a33ee07ff3d0a33ee0 /* ScScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.h"; path = "../../SimulationController/include/ScScene.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a33f487ff3d0a33f48 /* ScShapeCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.h"; path = "../../SimulationController/include/ScShapeCore.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0a33fb07ff3d0a33fb0 /* ScStaticCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.h"; path = "../../SimulationController/include/ScStaticCore.h"; sourceTree = SOURCE_ROOT; };
- FFFDd38010007ff3d3801000 /* ScActorElementPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorElementPair.h"; path = "../../SimulationController/src/ScActorElementPair.h"; sourceTree = SOURCE_ROOT; };
- FFFDd38010687ff3d3801068 /* ScActorInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorInteraction.h"; path = "../../SimulationController/src/ScActorInteraction.h"; sourceTree = SOURCE_ROOT; };
- FFFDd38010d07ff3d38010d0 /* ScActorPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorPair.h"; path = "../../SimulationController/src/ScActorPair.h"; sourceTree = SOURCE_ROOT; };
- FFFDd38011387ff3d3801138 /* ScActorSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.h"; path = "../../SimulationController/src/ScActorSim.h"; sourceTree = SOURCE_ROOT; };
- FFFDd38011a07ff3d38011a0 /* ScArticulationJointSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.h"; path = "../../SimulationController/src/ScArticulationJointSim.h"; sourceTree = SOURCE_ROOT; };
- FFFDd38012087ff3d3801208 /* ScArticulationSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.h"; path = "../../SimulationController/src/ScArticulationSim.h"; sourceTree = SOURCE_ROOT; };
- FFFDd38012707ff3d3801270 /* ScBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.h"; path = "../../SimulationController/src/ScBodySim.h"; sourceTree = SOURCE_ROOT; };
- FFFDd38012d87ff3d38012d8 /* ScClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClient.h"; path = "../../SimulationController/src/ScClient.h"; sourceTree = SOURCE_ROOT; };
- FFFDd38013407ff3d3801340 /* ScConstraintGroupNode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.h"; path = "../../SimulationController/src/ScConstraintGroupNode.h"; sourceTree = SOURCE_ROOT; };
- FFFDd38013a87ff3d38013a8 /* ScConstraintInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.h"; path = "../../SimulationController/src/ScConstraintInteraction.h"; sourceTree = SOURCE_ROOT; };
- FFFDd38014107ff3d3801410 /* ScConstraintProjectionManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.h"; path = "../../SimulationController/src/ScConstraintProjectionManager.h"; sourceTree = SOURCE_ROOT; };
- FFFDd38014787ff3d3801478 /* ScConstraintProjectionTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.h"; path = "../../SimulationController/src/ScConstraintProjectionTree.h"; sourceTree = SOURCE_ROOT; };
- FFFDd38014e07ff3d38014e0 /* ScConstraintSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.h"; path = "../../SimulationController/src/ScConstraintSim.h"; sourceTree = SOURCE_ROOT; };
- FFFDd38015487ff3d3801548 /* ScContactReportBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactReportBuffer.h"; path = "../../SimulationController/src/ScContactReportBuffer.h"; sourceTree = SOURCE_ROOT; };
- FFFDd38015b07ff3d38015b0 /* ScContactStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactStream.h"; path = "../../SimulationController/src/ScContactStream.h"; sourceTree = SOURCE_ROOT; };
- FFFDd38016187ff3d3801618 /* ScElementInteractionMarker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.h"; path = "../../SimulationController/src/ScElementInteractionMarker.h"; sourceTree = SOURCE_ROOT; };
- FFFDd38016807ff3d3801680 /* ScElementSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.h"; path = "../../SimulationController/src/ScElementSim.h"; sourceTree = SOURCE_ROOT; };
- FFFDd38016e87ff3d38016e8 /* ScElementSimInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSimInteraction.h"; path = "../../SimulationController/src/ScElementSimInteraction.h"; sourceTree = SOURCE_ROOT; };
- FFFDd38017507ff3d3801750 /* ScInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.h"; path = "../../SimulationController/src/ScInteraction.h"; sourceTree = SOURCE_ROOT; };
- FFFDd38017b87ff3d38017b8 /* ScInteractionFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteractionFlags.h"; path = "../../SimulationController/src/ScInteractionFlags.h"; sourceTree = SOURCE_ROOT; };
- FFFDd38018207ff3d3801820 /* ScNPhaseCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.h"; path = "../../SimulationController/src/ScNPhaseCore.h"; sourceTree = SOURCE_ROOT; };
- FFFDd38018887ff3d3801888 /* ScObjectIDTracker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScObjectIDTracker.h"; path = "../../SimulationController/src/ScObjectIDTracker.h"; sourceTree = SOURCE_ROOT; };
- FFFDd38018f07ff3d38018f0 /* ScRbElementInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRbElementInteraction.h"; path = "../../SimulationController/src/ScRbElementInteraction.h"; sourceTree = SOURCE_ROOT; };
- FFFDd38019587ff3d3801958 /* ScRigidSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.h"; path = "../../SimulationController/src/ScRigidSim.h"; sourceTree = SOURCE_ROOT; };
- FFFDd38019c07ff3d38019c0 /* ScShapeInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.h"; path = "../../SimulationController/src/ScShapeInteraction.h"; sourceTree = SOURCE_ROOT; };
- FFFDd3801a287ff3d3801a28 /* ScShapeIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeIterator.h"; path = "../../SimulationController/src/ScShapeIterator.h"; sourceTree = SOURCE_ROOT; };
- FFFDd3801a907ff3d3801a90 /* ScShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.h"; path = "../../SimulationController/src/ScShapeSim.h"; sourceTree = SOURCE_ROOT; };
- FFFDd3801af87ff3d3801af8 /* ScSimStateData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStateData.h"; path = "../../SimulationController/src/ScSimStateData.h"; sourceTree = SOURCE_ROOT; };
- FFFDd3801b607ff3d3801b60 /* ScSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.h"; path = "../../SimulationController/src/ScSimStats.h"; sourceTree = SOURCE_ROOT; };
- FFFDd3801bc87ff3d3801bc8 /* ScSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.h"; path = "../../SimulationController/src/ScSimulationController.h"; sourceTree = SOURCE_ROOT; };
- FFFDd3801c307ff3d3801c30 /* ScSqBoundsManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.h"; path = "../../SimulationController/src/ScSqBoundsManager.h"; sourceTree = SOURCE_ROOT; };
- FFFDd3801c987ff3d3801c98 /* ScStaticSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.h"; path = "../../SimulationController/src/ScStaticSim.h"; sourceTree = SOURCE_ROOT; };
- FFFDd3801d007ff3d3801d00 /* ScTriggerInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.h"; path = "../../SimulationController/src/ScTriggerInteraction.h"; sourceTree = SOURCE_ROOT; };
- FFFDd3801d687ff3d3801d68 /* ScTriggerPairs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerPairs.h"; path = "../../SimulationController/src/ScTriggerPairs.h"; sourceTree = SOURCE_ROOT; };
- FFFDd3801dd07ff3d3801dd0 /* ScActorCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.cpp"; path = "../../SimulationController/src/ScActorCore.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd3801e387ff3d3801e38 /* ScActorSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.cpp"; path = "../../SimulationController/src/ScActorSim.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd3801ea07ff3d3801ea0 /* ScArticulationCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.cpp"; path = "../../SimulationController/src/ScArticulationCore.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd3801f087ff3d3801f08 /* ScArticulationJointCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.cpp"; path = "../../SimulationController/src/ScArticulationJointCore.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd3801f707ff3d3801f70 /* ScArticulationJointSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.cpp"; path = "../../SimulationController/src/ScArticulationJointSim.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd3801fd87ff3d3801fd8 /* ScArticulationSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.cpp"; path = "../../SimulationController/src/ScArticulationSim.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd38020407ff3d3802040 /* ScBodyCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.cpp"; path = "../../SimulationController/src/ScBodyCore.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd38020a87ff3d38020a8 /* ScBodyCoreKinematic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCoreKinematic.cpp"; path = "../../SimulationController/src/ScBodyCoreKinematic.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd38021107ff3d3802110 /* ScBodySim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.cpp"; path = "../../SimulationController/src/ScBodySim.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd38021787ff3d3802178 /* ScConstraintCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.cpp"; path = "../../SimulationController/src/ScConstraintCore.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd38021e07ff3d38021e0 /* ScConstraintGroupNode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.cpp"; path = "../../SimulationController/src/ScConstraintGroupNode.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd38022487ff3d3802248 /* ScConstraintInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.cpp"; path = "../../SimulationController/src/ScConstraintInteraction.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd38022b07ff3d38022b0 /* ScConstraintProjectionManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.cpp"; path = "../../SimulationController/src/ScConstraintProjectionManager.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd38023187ff3d3802318 /* ScConstraintProjectionTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.cpp"; path = "../../SimulationController/src/ScConstraintProjectionTree.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd38023807ff3d3802380 /* ScConstraintSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.cpp"; path = "../../SimulationController/src/ScConstraintSim.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd38023e87ff3d38023e8 /* ScElementInteractionMarker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.cpp"; path = "../../SimulationController/src/ScElementInteractionMarker.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd38024507ff3d3802450 /* ScElementSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.cpp"; path = "../../SimulationController/src/ScElementSim.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd38024b87ff3d38024b8 /* ScInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.cpp"; path = "../../SimulationController/src/ScInteraction.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd38025207ff3d3802520 /* ScIterators.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.cpp"; path = "../../SimulationController/src/ScIterators.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd38025887ff3d3802588 /* ScMaterialCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.cpp"; path = "../../SimulationController/src/ScMaterialCore.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd38025f07ff3d38025f0 /* ScMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMetaData.cpp"; path = "../../SimulationController/src/ScMetaData.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd38026587ff3d3802658 /* ScNPhaseCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.cpp"; path = "../../SimulationController/src/ScNPhaseCore.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd38026c07ff3d38026c0 /* ScPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.cpp"; path = "../../SimulationController/src/ScPhysics.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd38027287ff3d3802728 /* ScRigidCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.cpp"; path = "../../SimulationController/src/ScRigidCore.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd38027907ff3d3802790 /* ScRigidSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.cpp"; path = "../../SimulationController/src/ScRigidSim.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd38027f87ff3d38027f8 /* ScScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.cpp"; path = "../../SimulationController/src/ScScene.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd38028607ff3d3802860 /* ScShapeCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.cpp"; path = "../../SimulationController/src/ScShapeCore.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd38028c87ff3d38028c8 /* ScShapeInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.cpp"; path = "../../SimulationController/src/ScShapeInteraction.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd38029307ff3d3802930 /* ScShapeSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.cpp"; path = "../../SimulationController/src/ScShapeSim.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd38029987ff3d3802998 /* ScSimStats.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.cpp"; path = "../../SimulationController/src/ScSimStats.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd3802a007ff3d3802a00 /* ScSimulationController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.cpp"; path = "../../SimulationController/src/ScSimulationController.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd3802a687ff3d3802a68 /* ScSqBoundsManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.cpp"; path = "../../SimulationController/src/ScSqBoundsManager.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd3802ad07ff3d3802ad0 /* ScStaticCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.cpp"; path = "../../SimulationController/src/ScStaticCore.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd3802b387ff3d3802b38 /* ScStaticSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.cpp"; path = "../../SimulationController/src/ScStaticSim.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd3802ba07ff3d3802ba0 /* ScTriggerInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.cpp"; path = "../../SimulationController/src/ScTriggerInteraction.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd3802c087ff3d3802c08 /* particles/ScParticleBodyInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.h"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.h"; sourceTree = SOURCE_ROOT; };
- FFFDd3802c707ff3d3802c70 /* particles/ScParticlePacketShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.h"; path = "../../SimulationController/src/particles/ScParticlePacketShape.h"; sourceTree = SOURCE_ROOT; };
- FFFDd3802cd87ff3d3802cd8 /* particles/ScParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.h"; path = "../../SimulationController/src/particles/ScParticleSystemSim.h"; sourceTree = SOURCE_ROOT; };
- FFFDd3802d407ff3d3802d40 /* particles/ScParticleBodyInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.cpp"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd3802da87ff3d3802da8 /* particles/ScParticlePacketShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.cpp"; path = "../../SimulationController/src/particles/ScParticlePacketShape.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd3802e107ff3d3802e10 /* particles/ScParticleSystemCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemCore.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemCore.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd3802e787ff3d3802e78 /* particles/ScParticleSystemSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemSim.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd3802ee07ff3d3802ee0 /* cloth/ScClothShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.h"; path = "../../SimulationController/src/cloth/ScClothShape.h"; sourceTree = SOURCE_ROOT; };
- FFFDd3802f487ff3d3802f48 /* cloth/ScClothSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothSim.h"; path = "../../SimulationController/src/cloth/ScClothSim.h"; sourceTree = SOURCE_ROOT; };
- FFFDd3802fb07ff3d3802fb0 /* cloth/ScClothCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothCore.cpp"; path = "../../SimulationController/src/cloth/ScClothCore.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd38030187ff3d3803018 /* cloth/ScClothFabricCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothFabricCore.cpp"; path = "../../SimulationController/src/cloth/ScClothFabricCore.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd38030807ff3d3803080 /* cloth/ScClothShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.cpp"; path = "../../SimulationController/src/cloth/ScClothShape.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd38030e87ff3d38030e8 /* cloth/ScClothSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothSim.cpp"; path = "../../SimulationController/src/cloth/ScClothSim.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3cc2f2707f8d3cc2f270 /* SimulationController */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SimulationController"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFD3c1c0c007f8d3c1c0c00 /* ScActorCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.h"; path = "../../SimulationController/include/ScActorCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c0c687f8d3c1c0c68 /* ScArticulationCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.h"; path = "../../SimulationController/include/ScArticulationCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c0cd07f8d3c1c0cd0 /* ScArticulationJointCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.h"; path = "../../SimulationController/include/ScArticulationJointCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c0d387f8d3c1c0d38 /* ScBodyCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.h"; path = "../../SimulationController/include/ScBodyCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c0da07f8d3c1c0da0 /* ScClothCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothCore.h"; path = "../../SimulationController/include/ScClothCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c0e087f8d3c1c0e08 /* ScClothFabricCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothFabricCore.h"; path = "../../SimulationController/include/ScClothFabricCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c0e707f8d3c1c0e70 /* ScConstraintCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.h"; path = "../../SimulationController/include/ScConstraintCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c0ed87f8d3c1c0ed8 /* ScIterators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.h"; path = "../../SimulationController/include/ScIterators.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c0f407f8d3c1c0f40 /* ScMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.h"; path = "../../SimulationController/include/ScMaterialCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c0fa87f8d3c1c0fa8 /* ScParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScParticleSystemCore.h"; path = "../../SimulationController/include/ScParticleSystemCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c10107f8d3c1c1010 /* ScPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.h"; path = "../../SimulationController/include/ScPhysics.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c10787f8d3c1c1078 /* ScRigidCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.h"; path = "../../SimulationController/include/ScRigidCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c10e07f8d3c1c10e0 /* ScScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.h"; path = "../../SimulationController/include/ScScene.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c11487f8d3c1c1148 /* ScShapeCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.h"; path = "../../SimulationController/include/ScShapeCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c11b07f8d3c1c11b0 /* ScStaticCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.h"; path = "../../SimulationController/include/ScStaticCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c3e007f8d3c1c3e00 /* ScActorElementPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorElementPair.h"; path = "../../SimulationController/src/ScActorElementPair.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c3e687f8d3c1c3e68 /* ScActorInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorInteraction.h"; path = "../../SimulationController/src/ScActorInteraction.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c3ed07f8d3c1c3ed0 /* ScActorPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorPair.h"; path = "../../SimulationController/src/ScActorPair.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c3f387f8d3c1c3f38 /* ScActorSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.h"; path = "../../SimulationController/src/ScActorSim.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c3fa07f8d3c1c3fa0 /* ScArticulationJointSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.h"; path = "../../SimulationController/src/ScArticulationJointSim.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c40087f8d3c1c4008 /* ScArticulationSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.h"; path = "../../SimulationController/src/ScArticulationSim.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c40707f8d3c1c4070 /* ScBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.h"; path = "../../SimulationController/src/ScBodySim.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c40d87f8d3c1c40d8 /* ScClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClient.h"; path = "../../SimulationController/src/ScClient.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c41407f8d3c1c4140 /* ScConstraintGroupNode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.h"; path = "../../SimulationController/src/ScConstraintGroupNode.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c41a87f8d3c1c41a8 /* ScConstraintInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.h"; path = "../../SimulationController/src/ScConstraintInteraction.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c42107f8d3c1c4210 /* ScConstraintProjectionManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.h"; path = "../../SimulationController/src/ScConstraintProjectionManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c42787f8d3c1c4278 /* ScConstraintProjectionTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.h"; path = "../../SimulationController/src/ScConstraintProjectionTree.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c42e07f8d3c1c42e0 /* ScConstraintSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.h"; path = "../../SimulationController/src/ScConstraintSim.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c43487f8d3c1c4348 /* ScContactReportBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactReportBuffer.h"; path = "../../SimulationController/src/ScContactReportBuffer.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c43b07f8d3c1c43b0 /* ScContactStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactStream.h"; path = "../../SimulationController/src/ScContactStream.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c44187f8d3c1c4418 /* ScElementInteractionMarker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.h"; path = "../../SimulationController/src/ScElementInteractionMarker.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c44807f8d3c1c4480 /* ScElementSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.h"; path = "../../SimulationController/src/ScElementSim.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c44e87f8d3c1c44e8 /* ScElementSimInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSimInteraction.h"; path = "../../SimulationController/src/ScElementSimInteraction.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c45507f8d3c1c4550 /* ScInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.h"; path = "../../SimulationController/src/ScInteraction.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c45b87f8d3c1c45b8 /* ScInteractionFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteractionFlags.h"; path = "../../SimulationController/src/ScInteractionFlags.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c46207f8d3c1c4620 /* ScNPhaseCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.h"; path = "../../SimulationController/src/ScNPhaseCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c46887f8d3c1c4688 /* ScObjectIDTracker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScObjectIDTracker.h"; path = "../../SimulationController/src/ScObjectIDTracker.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c46f07f8d3c1c46f0 /* ScRbElementInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRbElementInteraction.h"; path = "../../SimulationController/src/ScRbElementInteraction.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c47587f8d3c1c4758 /* ScRigidSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.h"; path = "../../SimulationController/src/ScRigidSim.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c47c07f8d3c1c47c0 /* ScShapeInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.h"; path = "../../SimulationController/src/ScShapeInteraction.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c48287f8d3c1c4828 /* ScShapeIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeIterator.h"; path = "../../SimulationController/src/ScShapeIterator.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c48907f8d3c1c4890 /* ScShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.h"; path = "../../SimulationController/src/ScShapeSim.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c48f87f8d3c1c48f8 /* ScSimStateData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStateData.h"; path = "../../SimulationController/src/ScSimStateData.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c49607f8d3c1c4960 /* ScSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.h"; path = "../../SimulationController/src/ScSimStats.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c49c87f8d3c1c49c8 /* ScSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.h"; path = "../../SimulationController/src/ScSimulationController.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c4a307f8d3c1c4a30 /* ScSqBoundsManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.h"; path = "../../SimulationController/src/ScSqBoundsManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c4a987f8d3c1c4a98 /* ScStaticSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.h"; path = "../../SimulationController/src/ScStaticSim.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c4b007f8d3c1c4b00 /* ScTriggerInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.h"; path = "../../SimulationController/src/ScTriggerInteraction.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c4b687f8d3c1c4b68 /* ScTriggerPairs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerPairs.h"; path = "../../SimulationController/src/ScTriggerPairs.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c4bd07f8d3c1c4bd0 /* ScActorCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.cpp"; path = "../../SimulationController/src/ScActorCore.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c4c387f8d3c1c4c38 /* ScActorSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.cpp"; path = "../../SimulationController/src/ScActorSim.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c4ca07f8d3c1c4ca0 /* ScArticulationCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.cpp"; path = "../../SimulationController/src/ScArticulationCore.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c4d087f8d3c1c4d08 /* ScArticulationJointCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.cpp"; path = "../../SimulationController/src/ScArticulationJointCore.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c4d707f8d3c1c4d70 /* ScArticulationJointSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.cpp"; path = "../../SimulationController/src/ScArticulationJointSim.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c4dd87f8d3c1c4dd8 /* ScArticulationSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.cpp"; path = "../../SimulationController/src/ScArticulationSim.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c4e407f8d3c1c4e40 /* ScBodyCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.cpp"; path = "../../SimulationController/src/ScBodyCore.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c4ea87f8d3c1c4ea8 /* ScBodyCoreKinematic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCoreKinematic.cpp"; path = "../../SimulationController/src/ScBodyCoreKinematic.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c4f107f8d3c1c4f10 /* ScBodySim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.cpp"; path = "../../SimulationController/src/ScBodySim.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c4f787f8d3c1c4f78 /* ScConstraintCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.cpp"; path = "../../SimulationController/src/ScConstraintCore.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c4fe07f8d3c1c4fe0 /* ScConstraintGroupNode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.cpp"; path = "../../SimulationController/src/ScConstraintGroupNode.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c50487f8d3c1c5048 /* ScConstraintInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.cpp"; path = "../../SimulationController/src/ScConstraintInteraction.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c50b07f8d3c1c50b0 /* ScConstraintProjectionManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.cpp"; path = "../../SimulationController/src/ScConstraintProjectionManager.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c51187f8d3c1c5118 /* ScConstraintProjectionTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.cpp"; path = "../../SimulationController/src/ScConstraintProjectionTree.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c51807f8d3c1c5180 /* ScConstraintSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.cpp"; path = "../../SimulationController/src/ScConstraintSim.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c51e87f8d3c1c51e8 /* ScElementInteractionMarker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.cpp"; path = "../../SimulationController/src/ScElementInteractionMarker.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c52507f8d3c1c5250 /* ScElementSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.cpp"; path = "../../SimulationController/src/ScElementSim.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c52b87f8d3c1c52b8 /* ScInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.cpp"; path = "../../SimulationController/src/ScInteraction.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c53207f8d3c1c5320 /* ScIterators.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.cpp"; path = "../../SimulationController/src/ScIterators.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c53887f8d3c1c5388 /* ScMaterialCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.cpp"; path = "../../SimulationController/src/ScMaterialCore.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c53f07f8d3c1c53f0 /* ScMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMetaData.cpp"; path = "../../SimulationController/src/ScMetaData.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c54587f8d3c1c5458 /* ScNPhaseCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.cpp"; path = "../../SimulationController/src/ScNPhaseCore.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c54c07f8d3c1c54c0 /* ScPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.cpp"; path = "../../SimulationController/src/ScPhysics.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c55287f8d3c1c5528 /* ScRigidCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.cpp"; path = "../../SimulationController/src/ScRigidCore.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c55907f8d3c1c5590 /* ScRigidSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.cpp"; path = "../../SimulationController/src/ScRigidSim.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c55f87f8d3c1c55f8 /* ScScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.cpp"; path = "../../SimulationController/src/ScScene.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c56607f8d3c1c5660 /* ScShapeCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.cpp"; path = "../../SimulationController/src/ScShapeCore.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c56c87f8d3c1c56c8 /* ScShapeInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.cpp"; path = "../../SimulationController/src/ScShapeInteraction.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c57307f8d3c1c5730 /* ScShapeSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.cpp"; path = "../../SimulationController/src/ScShapeSim.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c57987f8d3c1c5798 /* ScSimStats.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.cpp"; path = "../../SimulationController/src/ScSimStats.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c58007f8d3c1c5800 /* ScSimulationController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.cpp"; path = "../../SimulationController/src/ScSimulationController.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c58687f8d3c1c5868 /* ScSqBoundsManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.cpp"; path = "../../SimulationController/src/ScSqBoundsManager.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c58d07f8d3c1c58d0 /* ScStaticCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.cpp"; path = "../../SimulationController/src/ScStaticCore.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c59387f8d3c1c5938 /* ScStaticSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.cpp"; path = "../../SimulationController/src/ScStaticSim.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c59a07f8d3c1c59a0 /* ScTriggerInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.cpp"; path = "../../SimulationController/src/ScTriggerInteraction.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c5a087f8d3c1c5a08 /* particles/ScParticleBodyInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.h"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c5a707f8d3c1c5a70 /* particles/ScParticlePacketShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.h"; path = "../../SimulationController/src/particles/ScParticlePacketShape.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c5ad87f8d3c1c5ad8 /* particles/ScParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.h"; path = "../../SimulationController/src/particles/ScParticleSystemSim.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c5b407f8d3c1c5b40 /* particles/ScParticleBodyInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.cpp"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c5ba87f8d3c1c5ba8 /* particles/ScParticlePacketShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.cpp"; path = "../../SimulationController/src/particles/ScParticlePacketShape.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c5c107f8d3c1c5c10 /* particles/ScParticleSystemCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemCore.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemCore.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c5c787f8d3c1c5c78 /* particles/ScParticleSystemSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemSim.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c5ce07f8d3c1c5ce0 /* cloth/ScClothShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.h"; path = "../../SimulationController/src/cloth/ScClothShape.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c5d487f8d3c1c5d48 /* cloth/ScClothSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothSim.h"; path = "../../SimulationController/src/cloth/ScClothSim.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c5db07f8d3c1c5db0 /* cloth/ScClothCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothCore.cpp"; path = "../../SimulationController/src/cloth/ScClothCore.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c5e187f8d3c1c5e18 /* cloth/ScClothFabricCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothFabricCore.cpp"; path = "../../SimulationController/src/cloth/ScClothFabricCore.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c5e807f8d3c1c5e80 /* cloth/ScClothShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.cpp"; path = "../../SimulationController/src/cloth/ScClothShape.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c5ee87f8d3c1c5ee8 /* 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 */
- FFF2d2c944907ff3d2c94490 /* Resources */ = {
+ FFF23cc2f2707f8d3cc2f270 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -1143,7 +1143,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFCd2c944907ff3d2c94490 /* Frameworks */ = {
+ FFFC3cc2f2707f8d3cc2f270 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -1153,53 +1153,53 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF8d2c944907ff3d2c94490 /* Sources */ = {
+ FFF83cc2f2707f8d3cc2f270 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFFd3801dd07ff3d3801dd0,
- FFFFd3801e387ff3d3801e38,
- FFFFd3801ea07ff3d3801ea0,
- FFFFd3801f087ff3d3801f08,
- FFFFd3801f707ff3d3801f70,
- FFFFd3801fd87ff3d3801fd8,
- FFFFd38020407ff3d3802040,
- FFFFd38020a87ff3d38020a8,
- FFFFd38021107ff3d3802110,
- FFFFd38021787ff3d3802178,
- FFFFd38021e07ff3d38021e0,
- FFFFd38022487ff3d3802248,
- FFFFd38022b07ff3d38022b0,
- FFFFd38023187ff3d3802318,
- FFFFd38023807ff3d3802380,
- FFFFd38023e87ff3d38023e8,
- FFFFd38024507ff3d3802450,
- FFFFd38024b87ff3d38024b8,
- FFFFd38025207ff3d3802520,
- FFFFd38025887ff3d3802588,
- FFFFd38025f07ff3d38025f0,
- FFFFd38026587ff3d3802658,
- FFFFd38026c07ff3d38026c0,
- FFFFd38027287ff3d3802728,
- FFFFd38027907ff3d3802790,
- FFFFd38027f87ff3d38027f8,
- FFFFd38028607ff3d3802860,
- FFFFd38028c87ff3d38028c8,
- FFFFd38029307ff3d3802930,
- FFFFd38029987ff3d3802998,
- FFFFd3802a007ff3d3802a00,
- FFFFd3802a687ff3d3802a68,
- FFFFd3802ad07ff3d3802ad0,
- FFFFd3802b387ff3d3802b38,
- FFFFd3802ba07ff3d3802ba0,
- FFFFd3802d407ff3d3802d40,
- FFFFd3802da87ff3d3802da8,
- FFFFd3802e107ff3d3802e10,
- FFFFd3802e787ff3d3802e78,
- FFFFd3802fb07ff3d3802fb0,
- FFFFd38030187ff3d3803018,
- FFFFd38030807ff3d3803080,
- FFFFd38030e87ff3d38030e8,
+ FFFF3c1c4bd07f8d3c1c4bd0,
+ FFFF3c1c4c387f8d3c1c4c38,
+ FFFF3c1c4ca07f8d3c1c4ca0,
+ FFFF3c1c4d087f8d3c1c4d08,
+ FFFF3c1c4d707f8d3c1c4d70,
+ FFFF3c1c4dd87f8d3c1c4dd8,
+ FFFF3c1c4e407f8d3c1c4e40,
+ FFFF3c1c4ea87f8d3c1c4ea8,
+ FFFF3c1c4f107f8d3c1c4f10,
+ FFFF3c1c4f787f8d3c1c4f78,
+ FFFF3c1c4fe07f8d3c1c4fe0,
+ FFFF3c1c50487f8d3c1c5048,
+ FFFF3c1c50b07f8d3c1c50b0,
+ FFFF3c1c51187f8d3c1c5118,
+ FFFF3c1c51807f8d3c1c5180,
+ FFFF3c1c51e87f8d3c1c51e8,
+ FFFF3c1c52507f8d3c1c5250,
+ FFFF3c1c52b87f8d3c1c52b8,
+ FFFF3c1c53207f8d3c1c5320,
+ FFFF3c1c53887f8d3c1c5388,
+ FFFF3c1c53f07f8d3c1c53f0,
+ FFFF3c1c54587f8d3c1c5458,
+ FFFF3c1c54c07f8d3c1c54c0,
+ FFFF3c1c55287f8d3c1c5528,
+ FFFF3c1c55907f8d3c1c5590,
+ FFFF3c1c55f87f8d3c1c55f8,
+ FFFF3c1c56607f8d3c1c5660,
+ FFFF3c1c56c87f8d3c1c56c8,
+ FFFF3c1c57307f8d3c1c5730,
+ FFFF3c1c57987f8d3c1c5798,
+ FFFF3c1c58007f8d3c1c5800,
+ FFFF3c1c58687f8d3c1c5868,
+ FFFF3c1c58d07f8d3c1c58d0,
+ FFFF3c1c59387f8d3c1c5938,
+ FFFF3c1c59a07f8d3c1c59a0,
+ FFFF3c1c5b407f8d3c1c5b40,
+ FFFF3c1c5ba87f8d3c1c5ba8,
+ FFFF3c1c5c107f8d3c1c5c10,
+ FFFF3c1c5c787f8d3c1c5c78,
+ FFFF3c1c5db07f8d3c1c5db0,
+ FFFF3c1c5e187f8d3c1c5e18,
+ FFFF3c1c5e807f8d3c1c5e80,
+ FFFF3c1c5ee87f8d3c1c5ee8,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -1211,80 +1211,80 @@
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of PhysXCooking */
- FFFFd2f097e07ff3d2f097e0 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFDd2c7d5c07ff3d2c7d5c0 /* PhysXExtensions */; };
- FFFFd38082007ff3d3808200 /* Adjacencies.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd38082007ff3d3808200 /* Adjacencies.cpp */; };
- FFFFd38082687ff3d3808268 /* Cooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd38082687ff3d3808268 /* Cooking.cpp */; };
- FFFFd38082d07ff3d38082d0 /* CookingUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd38082d07ff3d38082d0 /* CookingUtils.cpp */; };
- FFFFd38083387ff3d3808338 /* EdgeList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd38083387ff3d3808338 /* EdgeList.cpp */; };
- FFFFd38083a07ff3d38083a0 /* MeshCleaner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd38083a07ff3d38083a0 /* MeshCleaner.cpp */; };
- FFFFd38084087ff3d3808408 /* Quantizer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd38084087ff3d3808408 /* Quantizer.cpp */; };
- FFFFd38086e07ff3d38086e0 /* mesh/GrbTriangleMeshCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd38086e07ff3d38086e0 /* mesh/GrbTriangleMeshCooking.cpp */; };
- FFFFd38087487ff3d3808748 /* mesh/HeightFieldCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd38087487ff3d3808748 /* mesh/HeightFieldCooking.cpp */; };
- FFFFd38087b07ff3d38087b0 /* mesh/RTreeCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd38087b07ff3d38087b0 /* mesh/RTreeCooking.cpp */; };
- FFFFd38088187ff3d3808818 /* mesh/TriangleMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd38088187ff3d3808818 /* mesh/TriangleMeshBuilder.cpp */; };
- FFFFd3808a887ff3d3808a88 /* convex/BigConvexDataBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd3808a887ff3d3808a88 /* convex/BigConvexDataBuilder.cpp */; };
- FFFFd3808af07ff3d3808af0 /* convex/ConvexHullBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd3808af07ff3d3808af0 /* convex/ConvexHullBuilder.cpp */; };
- FFFFd3808b587ff3d3808b58 /* convex/ConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd3808b587ff3d3808b58 /* convex/ConvexHullLib.cpp */; };
- FFFFd3808bc07ff3d3808bc0 /* convex/ConvexHullUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd3808bc07ff3d3808bc0 /* convex/ConvexHullUtils.cpp */; };
- FFFFd3808c287ff3d3808c28 /* convex/ConvexMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd3808c287ff3d3808c28 /* convex/ConvexMeshBuilder.cpp */; };
- FFFFd3808c907ff3d3808c90 /* convex/ConvexPolygonsBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd3808c907ff3d3808c90 /* convex/ConvexPolygonsBuilder.cpp */; };
- FFFFd3808cf87ff3d3808cf8 /* convex/InflationConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd3808cf87ff3d3808cf8 /* convex/InflationConvexHullLib.cpp */; };
- FFFFd3808d607ff3d3808d60 /* convex/QuickHullConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd3808d607ff3d3808d60 /* convex/QuickHullConvexHullLib.cpp */; };
- FFFFd3808dc87ff3d3808dc8 /* convex/VolumeIntegration.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd3808dc87ff3d3808dc8 /* convex/VolumeIntegration.cpp */; };
+ FFFF3cc362a07f8d3cc362a0 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD3dae43907f8d3dae4390 /* PhysXExtensions */; };
+ FFFF3c1c80007f8d3c1c8000 /* Adjacencies.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c80007f8d3c1c8000 /* Adjacencies.cpp */; };
+ FFFF3c1c80687f8d3c1c8068 /* Cooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c80687f8d3c1c8068 /* Cooking.cpp */; };
+ FFFF3c1c80d07f8d3c1c80d0 /* CookingUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c80d07f8d3c1c80d0 /* CookingUtils.cpp */; };
+ FFFF3c1c81387f8d3c1c8138 /* EdgeList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c81387f8d3c1c8138 /* EdgeList.cpp */; };
+ FFFF3c1c81a07f8d3c1c81a0 /* MeshCleaner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c81a07f8d3c1c81a0 /* MeshCleaner.cpp */; };
+ FFFF3c1c82087f8d3c1c8208 /* Quantizer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c82087f8d3c1c8208 /* Quantizer.cpp */; };
+ FFFF3c1c84e07f8d3c1c84e0 /* mesh/GrbTriangleMeshCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c84e07f8d3c1c84e0 /* mesh/GrbTriangleMeshCooking.cpp */; };
+ FFFF3c1c85487f8d3c1c8548 /* mesh/HeightFieldCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c85487f8d3c1c8548 /* mesh/HeightFieldCooking.cpp */; };
+ FFFF3c1c85b07f8d3c1c85b0 /* mesh/RTreeCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c85b07f8d3c1c85b0 /* mesh/RTreeCooking.cpp */; };
+ FFFF3c1c86187f8d3c1c8618 /* mesh/TriangleMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c86187f8d3c1c8618 /* mesh/TriangleMeshBuilder.cpp */; };
+ FFFF3c1c88887f8d3c1c8888 /* convex/BigConvexDataBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c88887f8d3c1c8888 /* convex/BigConvexDataBuilder.cpp */; };
+ FFFF3c1c88f07f8d3c1c88f0 /* convex/ConvexHullBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c88f07f8d3c1c88f0 /* convex/ConvexHullBuilder.cpp */; };
+ FFFF3c1c89587f8d3c1c8958 /* convex/ConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c89587f8d3c1c8958 /* convex/ConvexHullLib.cpp */; };
+ FFFF3c1c89c07f8d3c1c89c0 /* convex/ConvexHullUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c89c07f8d3c1c89c0 /* convex/ConvexHullUtils.cpp */; };
+ FFFF3c1c8a287f8d3c1c8a28 /* convex/ConvexMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c8a287f8d3c1c8a28 /* convex/ConvexMeshBuilder.cpp */; };
+ FFFF3c1c8a907f8d3c1c8a90 /* convex/ConvexPolygonsBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c8a907f8d3c1c8a90 /* convex/ConvexPolygonsBuilder.cpp */; };
+ FFFF3c1c8af87f8d3c1c8af8 /* convex/InflationConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c8af87f8d3c1c8af8 /* convex/InflationConvexHullLib.cpp */; };
+ FFFF3c1c8b607f8d3c1c8b60 /* convex/QuickHullConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c8b607f8d3c1c8b60 /* convex/QuickHullConvexHullLib.cpp */; };
+ FFFF3c1c8bc87f8d3c1c8bc8 /* convex/VolumeIntegration.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c8bc87f8d3c1c8bc8 /* convex/VolumeIntegration.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFDd2f00d507ff3d2f00d50 /* PhysXCooking */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCooking"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFDd2f08f507ff3d2f08f50 /* PxBVH33MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH33MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH33MidphaseDesc.h"; sourceTree = SOURCE_ROOT; };
- FFFDd2f08fb87ff3d2f08fb8 /* PxBVH34MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH34MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH34MidphaseDesc.h"; sourceTree = SOURCE_ROOT; };
- FFFDd2f090207ff3d2f09020 /* PxConvexMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshDesc.h"; path = "../../../Include/cooking/PxConvexMeshDesc.h"; sourceTree = SOURCE_ROOT; };
- FFFDd2f090887ff3d2f09088 /* PxCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCooking.h"; path = "../../../Include/cooking/PxCooking.h"; sourceTree = SOURCE_ROOT; };
- FFFDd2f090f07ff3d2f090f0 /* PxMidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMidphaseDesc.h"; path = "../../../Include/cooking/PxMidphaseDesc.h"; sourceTree = SOURCE_ROOT; };
- FFFDd2f091587ff3d2f09158 /* PxTriangleMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshDesc.h"; path = "../../../Include/cooking/PxTriangleMeshDesc.h"; sourceTree = SOURCE_ROOT; };
- FFFDd2f091c07ff3d2f091c0 /* Pxc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Pxc.h"; path = "../../../Include/cooking/Pxc.h"; sourceTree = SOURCE_ROOT; };
- FFFDd38082007ff3d3808200 /* Adjacencies.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.cpp"; path = "../../PhysXCooking/src/Adjacencies.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd38082687ff3d3808268 /* Cooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.cpp"; path = "../../PhysXCooking/src/Cooking.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd38082d07ff3d38082d0 /* CookingUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.cpp"; path = "../../PhysXCooking/src/CookingUtils.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd38083387ff3d3808338 /* EdgeList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.cpp"; path = "../../PhysXCooking/src/EdgeList.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd38083a07ff3d38083a0 /* MeshCleaner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.cpp"; path = "../../PhysXCooking/src/MeshCleaner.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd38084087ff3d3808408 /* Quantizer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.cpp"; path = "../../PhysXCooking/src/Quantizer.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd38084707ff3d3808470 /* Adjacencies.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.h"; path = "../../PhysXCooking/src/Adjacencies.h"; sourceTree = SOURCE_ROOT; };
- FFFDd38084d87ff3d38084d8 /* Cooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.h"; path = "../../PhysXCooking/src/Cooking.h"; sourceTree = SOURCE_ROOT; };
- FFFDd38085407ff3d3808540 /* CookingUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.h"; path = "../../PhysXCooking/src/CookingUtils.h"; sourceTree = SOURCE_ROOT; };
- FFFDd38085a87ff3d38085a8 /* EdgeList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.h"; path = "../../PhysXCooking/src/EdgeList.h"; sourceTree = SOURCE_ROOT; };
- FFFDd38086107ff3d3808610 /* MeshCleaner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.h"; path = "../../PhysXCooking/src/MeshCleaner.h"; sourceTree = SOURCE_ROOT; };
- FFFDd38086787ff3d3808678 /* Quantizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.h"; path = "../../PhysXCooking/src/Quantizer.h"; sourceTree = SOURCE_ROOT; };
- FFFDd38086e07ff3d38086e0 /* mesh/GrbTriangleMeshCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.cpp"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd38087487ff3d3808748 /* mesh/HeightFieldCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.cpp"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd38087b07ff3d38087b0 /* mesh/RTreeCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.cpp"; path = "../../PhysXCooking/src/mesh/RTreeCooking.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd38088187ff3d3808818 /* mesh/TriangleMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.cpp"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd38088807ff3d3808880 /* mesh/GrbTriangleMeshCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.h"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.h"; sourceTree = SOURCE_ROOT; };
- FFFDd38088e87ff3d38088e8 /* mesh/HeightFieldCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.h"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.h"; sourceTree = SOURCE_ROOT; };
- FFFDd38089507ff3d3808950 /* mesh/QuickSelect.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/QuickSelect.h"; path = "../../PhysXCooking/src/mesh/QuickSelect.h"; sourceTree = SOURCE_ROOT; };
- FFFDd38089b87ff3d38089b8 /* mesh/RTreeCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.h"; path = "../../PhysXCooking/src/mesh/RTreeCooking.h"; sourceTree = SOURCE_ROOT; };
- FFFDd3808a207ff3d3808a20 /* mesh/TriangleMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.h"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.h"; sourceTree = SOURCE_ROOT; };
- FFFDd3808a887ff3d3808a88 /* convex/BigConvexDataBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.cpp"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd3808af07ff3d3808af0 /* convex/ConvexHullBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd3808b587ff3d3808b58 /* convex/ConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd3808bc07ff3d3808bc0 /* convex/ConvexHullUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd3808c287ff3d3808c28 /* convex/ConvexMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd3808c907ff3d3808c90 /* convex/ConvexPolygonsBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd3808cf87ff3d3808cf8 /* convex/InflationConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd3808d607ff3d3808d60 /* convex/QuickHullConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd3808dc87ff3d3808dc8 /* convex/VolumeIntegration.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/VolumeIntegration.cpp"; path = "../../PhysXCooking/src/convex/VolumeIntegration.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd3808e307ff3d3808e30 /* convex/BigConvexDataBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.h"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.h"; sourceTree = SOURCE_ROOT; };
- FFFDd3808e987ff3d3808e98 /* convex/ConvexHullBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.h"; sourceTree = SOURCE_ROOT; };
- FFFDd3808f007ff3d3808f00 /* convex/ConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.h"; path = "../../PhysXCooking/src/convex/ConvexHullLib.h"; sourceTree = SOURCE_ROOT; };
- FFFDd3808f687ff3d3808f68 /* convex/ConvexHullUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.h"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.h"; sourceTree = SOURCE_ROOT; };
- FFFDd3808fd07ff3d3808fd0 /* convex/ConvexMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.h"; sourceTree = SOURCE_ROOT; };
- FFFDd38090387ff3d3809038 /* convex/ConvexPolygonsBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.h"; sourceTree = SOURCE_ROOT; };
- FFFDd38090a07ff3d38090a0 /* convex/InflationConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.h"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.h"; sourceTree = SOURCE_ROOT; };
- FFFDd38091087ff3d3809108 /* convex/QuickHullConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.h"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.h"; sourceTree = SOURCE_ROOT; };
- FFFDd38091707ff3d3809170 /* convex/VolumeIntegration.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/VolumeIntegration.h"; path = "../../PhysXCooking/src/convex/VolumeIntegration.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3cc226e07f8d3cc226e0 /* PhysXCooking */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCooking"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFD3cc3a3807f8d3cc3a380 /* PxBVH33MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH33MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH33MidphaseDesc.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3cc3a3e87f8d3cc3a3e8 /* PxBVH34MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH34MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH34MidphaseDesc.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3cc3a4507f8d3cc3a450 /* PxConvexMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshDesc.h"; path = "../../../Include/cooking/PxConvexMeshDesc.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3cc3a4b87f8d3cc3a4b8 /* PxCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCooking.h"; path = "../../../Include/cooking/PxCooking.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3cc3a5207f8d3cc3a520 /* PxMidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMidphaseDesc.h"; path = "../../../Include/cooking/PxMidphaseDesc.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3cc3a5887f8d3cc3a588 /* PxTriangleMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshDesc.h"; path = "../../../Include/cooking/PxTriangleMeshDesc.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3cc3a5f07f8d3cc3a5f0 /* Pxc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Pxc.h"; path = "../../../Include/cooking/Pxc.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c80007f8d3c1c8000 /* Adjacencies.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.cpp"; path = "../../PhysXCooking/src/Adjacencies.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c80687f8d3c1c8068 /* Cooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.cpp"; path = "../../PhysXCooking/src/Cooking.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c80d07f8d3c1c80d0 /* CookingUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.cpp"; path = "../../PhysXCooking/src/CookingUtils.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c81387f8d3c1c8138 /* EdgeList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.cpp"; path = "../../PhysXCooking/src/EdgeList.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c81a07f8d3c1c81a0 /* MeshCleaner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.cpp"; path = "../../PhysXCooking/src/MeshCleaner.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c82087f8d3c1c8208 /* Quantizer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.cpp"; path = "../../PhysXCooking/src/Quantizer.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c82707f8d3c1c8270 /* Adjacencies.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.h"; path = "../../PhysXCooking/src/Adjacencies.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c82d87f8d3c1c82d8 /* Cooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.h"; path = "../../PhysXCooking/src/Cooking.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c83407f8d3c1c8340 /* CookingUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.h"; path = "../../PhysXCooking/src/CookingUtils.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c83a87f8d3c1c83a8 /* EdgeList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.h"; path = "../../PhysXCooking/src/EdgeList.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c84107f8d3c1c8410 /* MeshCleaner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.h"; path = "../../PhysXCooking/src/MeshCleaner.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c84787f8d3c1c8478 /* Quantizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.h"; path = "../../PhysXCooking/src/Quantizer.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c84e07f8d3c1c84e0 /* mesh/GrbTriangleMeshCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.cpp"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c85487f8d3c1c8548 /* mesh/HeightFieldCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.cpp"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c85b07f8d3c1c85b0 /* mesh/RTreeCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.cpp"; path = "../../PhysXCooking/src/mesh/RTreeCooking.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c86187f8d3c1c8618 /* mesh/TriangleMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.cpp"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c86807f8d3c1c8680 /* mesh/GrbTriangleMeshCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.h"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c86e87f8d3c1c86e8 /* mesh/HeightFieldCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.h"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c87507f8d3c1c8750 /* mesh/QuickSelect.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/QuickSelect.h"; path = "../../PhysXCooking/src/mesh/QuickSelect.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c87b87f8d3c1c87b8 /* mesh/RTreeCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.h"; path = "../../PhysXCooking/src/mesh/RTreeCooking.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c88207f8d3c1c8820 /* mesh/TriangleMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.h"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c88887f8d3c1c8888 /* convex/BigConvexDataBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.cpp"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c88f07f8d3c1c88f0 /* convex/ConvexHullBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c89587f8d3c1c8958 /* convex/ConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c89c07f8d3c1c89c0 /* convex/ConvexHullUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c8a287f8d3c1c8a28 /* convex/ConvexMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c8a907f8d3c1c8a90 /* convex/ConvexPolygonsBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c8af87f8d3c1c8af8 /* convex/InflationConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c8b607f8d3c1c8b60 /* convex/QuickHullConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c8bc87f8d3c1c8bc8 /* convex/VolumeIntegration.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/VolumeIntegration.cpp"; path = "../../PhysXCooking/src/convex/VolumeIntegration.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c8c307f8d3c1c8c30 /* convex/BigConvexDataBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.h"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c8c987f8d3c1c8c98 /* convex/ConvexHullBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c8d007f8d3c1c8d00 /* convex/ConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.h"; path = "../../PhysXCooking/src/convex/ConvexHullLib.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c8d687f8d3c1c8d68 /* convex/ConvexHullUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.h"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c8dd07f8d3c1c8dd0 /* convex/ConvexMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c8e387f8d3c1c8e38 /* convex/ConvexPolygonsBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c8ea07f8d3c1c8ea0 /* convex/InflationConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.h"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c8f087f8d3c1c8f08 /* convex/QuickHullConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.h"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1c8f707f8d3c1c8f70 /* 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 */
- FFF2d2f00d507ff3d2f00d50 /* Resources */ = {
+ FFF23cc226e07f8d3cc226e0 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -1294,7 +1294,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFCd2f00d507ff3d2f00d50 /* Frameworks */ = {
+ FFFC3cc226e07f8d3cc226e0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -1304,29 +1304,29 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF8d2f00d507ff3d2f00d50 /* Sources */ = {
+ FFF83cc226e07f8d3cc226e0 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFFd38082007ff3d3808200,
- FFFFd38082687ff3d3808268,
- FFFFd38082d07ff3d38082d0,
- FFFFd38083387ff3d3808338,
- FFFFd38083a07ff3d38083a0,
- FFFFd38084087ff3d3808408,
- FFFFd38086e07ff3d38086e0,
- FFFFd38087487ff3d3808748,
- FFFFd38087b07ff3d38087b0,
- FFFFd38088187ff3d3808818,
- FFFFd3808a887ff3d3808a88,
- FFFFd3808af07ff3d3808af0,
- FFFFd3808b587ff3d3808b58,
- FFFFd3808bc07ff3d3808bc0,
- FFFFd3808c287ff3d3808c28,
- FFFFd3808c907ff3d3808c90,
- FFFFd3808cf87ff3d3808cf8,
- FFFFd3808d607ff3d3808d60,
- FFFFd3808dc87ff3d3808dc8,
+ FFFF3c1c80007f8d3c1c8000,
+ FFFF3c1c80687f8d3c1c8068,
+ FFFF3c1c80d07f8d3c1c80d0,
+ FFFF3c1c81387f8d3c1c8138,
+ FFFF3c1c81a07f8d3c1c81a0,
+ FFFF3c1c82087f8d3c1c8208,
+ FFFF3c1c84e07f8d3c1c84e0,
+ FFFF3c1c85487f8d3c1c8548,
+ FFFF3c1c85b07f8d3c1c85b0,
+ FFFF3c1c86187f8d3c1c8618,
+ FFFF3c1c88887f8d3c1c8888,
+ FFFF3c1c88f07f8d3c1c88f0,
+ FFFF3c1c89587f8d3c1c8958,
+ FFFF3c1c89c07f8d3c1c89c0,
+ FFFF3c1c8a287f8d3c1c8a28,
+ FFFF3c1c8a907f8d3c1c8a90,
+ FFFF3c1c8af87f8d3c1c8af8,
+ FFFF3c1c8b607f8d3c1c8b60,
+ FFFF3c1c8bc87f8d3c1c8bc8,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -1335,514 +1335,514 @@
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
- FFF4d2f067f07ff3d2f067f0 /* PBXTargetDependency */ = {
+ FFF43cc3d1007f8d3cc3d100 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFAd10a67707ff3d10a6770 /* PhysXCommon */;
- targetProxy = FFF5d10a67707ff3d10a6770 /* PBXContainerItemProxy */;
+ target = FFFA3c99d3f07f8d3c99d3f0 /* PhysXCommon */;
+ targetProxy = FFF53c99d3f07f8d3c99d3f0 /* PBXContainerItemProxy */;
};
- FFF4d2f097e07ff3d2f097e0 /* PBXTargetDependency */ = {
+ FFF43cc362a07f8d3cc362a0 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFAd2c7d5c07ff3d2c7d5c0 /* PhysXExtensions */;
- targetProxy = FFF5d2c7d5c07ff3d2c7d5c0 /* PBXContainerItemProxy */;
+ target = FFFA3dae43907f8d3dae4390 /* PhysXExtensions */;
+ targetProxy = FFF53dae43907f8d3dae4390 /* PBXContainerItemProxy */;
};
- FFF4d2f005907ff3d2f00590 /* PBXTargetDependency */ = {
+ FFF43cc28dd07f8d3cc28dd0 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFAd108e7507ff3d108e750 /* PxFoundation */;
- targetProxy = FFF5d108e7507ff3d108e750 /* PBXContainerItemProxy */;
+ target = FFFA3c9892007f8d3c989200 /* PxFoundation */;
+ targetProxy = FFF53c9892007f8d3c989200 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of PhysXCommon */
- FFFFd09aa4007ff3d09aa400 /* src/CmBoxPruning.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDd09aa4007ff3d09aa400 /* src/CmBoxPruning.cpp */; };
- FFFFd09aa4687ff3d09aa468 /* src/CmCollection.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDd09aa4687ff3d09aa468 /* src/CmCollection.cpp */; };
- FFFFd09aa4d07ff3d09aa4d0 /* src/CmMathUtils.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDd09aa4d07ff3d09aa4d0 /* src/CmMathUtils.cpp */; };
- FFFFd09aa5387ff3d09aa538 /* src/CmPtrTable.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDd09aa5387ff3d09aa538 /* src/CmPtrTable.cpp */; };
- FFFFd09aa5a07ff3d09aa5a0 /* src/CmRadixSort.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDd09aa5a07ff3d09aa5a0 /* src/CmRadixSort.cpp */; };
- FFFFd09aa6087ff3d09aa608 /* src/CmRadixSortBuffered.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDd09aa6087ff3d09aa608 /* src/CmRadixSortBuffered.cpp */; };
- FFFFd09aa6707ff3d09aa670 /* src/CmRenderOutput.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDd09aa6707ff3d09aa670 /* src/CmRenderOutput.cpp */; };
- FFFFd09aa6d87ff3d09aa6d8 /* src/CmVisualization.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDd09aa6d87ff3d09aa6d8 /* src/CmVisualization.cpp */; };
- FFFFd18013a87ff3d18013a8 /* ../../Include/GeomUtils in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18013a87ff3d18013a8 /* ../../Include/GeomUtils */; };
- FFFFd18048e07ff3d18048e0 /* src/GuBounds.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18048e07ff3d18048e0 /* src/GuBounds.cpp */; };
- FFFFd18049487ff3d1804948 /* src/GuBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18049487ff3d1804948 /* src/GuBox.cpp */; };
- FFFFd18049b07ff3d18049b0 /* src/GuCCTSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18049b07ff3d18049b0 /* src/GuCCTSweepTests.cpp */; };
- FFFFd1804a187ff3d1804a18 /* src/GuCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd1804a187ff3d1804a18 /* src/GuCapsule.cpp */; };
- FFFFd1804a807ff3d1804a80 /* src/GuGeometryQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd1804a807ff3d1804a80 /* src/GuGeometryQuery.cpp */; };
- FFFFd1804ae87ff3d1804ae8 /* src/GuGeometryUnion.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd1804ae87ff3d1804ae8 /* src/GuGeometryUnion.cpp */; };
- FFFFd1804b507ff3d1804b50 /* src/GuInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd1804b507ff3d1804b50 /* src/GuInternal.cpp */; };
- FFFFd1804bb87ff3d1804bb8 /* src/GuMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd1804bb87ff3d1804bb8 /* src/GuMTD.cpp */; };
- FFFFd1804c207ff3d1804c20 /* src/GuMeshFactory.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd1804c207ff3d1804c20 /* src/GuMeshFactory.cpp */; };
- FFFFd1804c887ff3d1804c88 /* src/GuMetaData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd1804c887ff3d1804c88 /* src/GuMetaData.cpp */; };
- FFFFd1804cf07ff3d1804cf0 /* src/GuOverlapTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd1804cf07ff3d1804cf0 /* src/GuOverlapTests.cpp */; };
- FFFFd1804d587ff3d1804d58 /* src/GuRaycastTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd1804d587ff3d1804d58 /* src/GuRaycastTests.cpp */; };
- FFFFd1804dc07ff3d1804dc0 /* src/GuSerialize.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd1804dc07ff3d1804dc0 /* src/GuSerialize.cpp */; };
- FFFFd1804e287ff3d1804e28 /* src/GuSweepMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd1804e287ff3d1804e28 /* src/GuSweepMTD.cpp */; };
- FFFFd1804e907ff3d1804e90 /* src/GuSweepSharedTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd1804e907ff3d1804e90 /* src/GuSweepSharedTests.cpp */; };
- FFFFd1804ef87ff3d1804ef8 /* src/GuSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd1804ef87ff3d1804ef8 /* src/GuSweepTests.cpp */; };
- FFFFd1804f607ff3d1804f60 /* src/contact/GuContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd1804f607ff3d1804f60 /* src/contact/GuContactBoxBox.cpp */; };
- FFFFd1804fc87ff3d1804fc8 /* src/contact/GuContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd1804fc87ff3d1804fc8 /* src/contact/GuContactCapsuleBox.cpp */; };
- FFFFd18050307ff3d1805030 /* src/contact/GuContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18050307ff3d1805030 /* src/contact/GuContactCapsuleCapsule.cpp */; };
- FFFFd18050987ff3d1805098 /* src/contact/GuContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18050987ff3d1805098 /* src/contact/GuContactCapsuleConvex.cpp */; };
- FFFFd18051007ff3d1805100 /* src/contact/GuContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18051007ff3d1805100 /* src/contact/GuContactCapsuleMesh.cpp */; };
- FFFFd18051687ff3d1805168 /* src/contact/GuContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18051687ff3d1805168 /* src/contact/GuContactConvexConvex.cpp */; };
- FFFFd18051d07ff3d18051d0 /* src/contact/GuContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18051d07ff3d18051d0 /* src/contact/GuContactConvexMesh.cpp */; };
- FFFFd18052387ff3d1805238 /* src/contact/GuContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18052387ff3d1805238 /* src/contact/GuContactPlaneBox.cpp */; };
- FFFFd18052a07ff3d18052a0 /* src/contact/GuContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18052a07ff3d18052a0 /* src/contact/GuContactPlaneCapsule.cpp */; };
- FFFFd18053087ff3d1805308 /* src/contact/GuContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18053087ff3d1805308 /* src/contact/GuContactPlaneConvex.cpp */; };
- FFFFd18053707ff3d1805370 /* src/contact/GuContactPolygonPolygon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18053707ff3d1805370 /* src/contact/GuContactPolygonPolygon.cpp */; };
- FFFFd18053d87ff3d18053d8 /* src/contact/GuContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18053d87ff3d18053d8 /* src/contact/GuContactSphereBox.cpp */; };
- FFFFd18054407ff3d1805440 /* src/contact/GuContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18054407ff3d1805440 /* src/contact/GuContactSphereCapsule.cpp */; };
- FFFFd18054a87ff3d18054a8 /* src/contact/GuContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18054a87ff3d18054a8 /* src/contact/GuContactSphereMesh.cpp */; };
- FFFFd18055107ff3d1805510 /* src/contact/GuContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18055107ff3d1805510 /* src/contact/GuContactSpherePlane.cpp */; };
- FFFFd18055787ff3d1805578 /* src/contact/GuContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18055787ff3d1805578 /* src/contact/GuContactSphereSphere.cpp */; };
- FFFFd18055e07ff3d18055e0 /* src/contact/GuFeatureCode.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18055e07ff3d18055e0 /* src/contact/GuFeatureCode.cpp */; };
- FFFFd18056487ff3d1805648 /* src/contact/GuLegacyContactBoxHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18056487ff3d1805648 /* src/contact/GuLegacyContactBoxHeightField.cpp */; };
- FFFFd18056b07ff3d18056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18056b07ff3d18056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */; };
- FFFFd18057187ff3d1805718 /* src/contact/GuLegacyContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18057187ff3d1805718 /* src/contact/GuLegacyContactConvexHeightField.cpp */; };
- FFFFd18057807ff3d1805780 /* src/contact/GuLegacyContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18057807ff3d1805780 /* src/contact/GuLegacyContactSphereHeightField.cpp */; };
- FFFFd18057e87ff3d18057e8 /* src/common/GuBarycentricCoordinates.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18057e87ff3d18057e8 /* src/common/GuBarycentricCoordinates.cpp */; };
- FFFFd18058507ff3d1805850 /* src/common/GuSeparatingAxes.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18058507ff3d1805850 /* src/common/GuSeparatingAxes.cpp */; };
- FFFFd18058b87ff3d18058b8 /* src/convex/GuBigConvexData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18058b87ff3d18058b8 /* src/convex/GuBigConvexData.cpp */; };
- FFFFd18059207ff3d1805920 /* src/convex/GuConvexHelper.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18059207ff3d1805920 /* src/convex/GuConvexHelper.cpp */; };
- FFFFd18059887ff3d1805988 /* src/convex/GuConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18059887ff3d1805988 /* src/convex/GuConvexMesh.cpp */; };
- FFFFd18059f07ff3d18059f0 /* src/convex/GuConvexSupportTable.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18059f07ff3d18059f0 /* src/convex/GuConvexSupportTable.cpp */; };
- FFFFd1805a587ff3d1805a58 /* src/convex/GuConvexUtilsInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd1805a587ff3d1805a58 /* src/convex/GuConvexUtilsInternal.cpp */; };
- FFFFd1805ac07ff3d1805ac0 /* src/convex/GuHillClimbing.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd1805ac07ff3d1805ac0 /* src/convex/GuHillClimbing.cpp */; };
- FFFFd1805b287ff3d1805b28 /* src/convex/GuShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd1805b287ff3d1805b28 /* src/convex/GuShapeConvex.cpp */; };
- FFFFd1805b907ff3d1805b90 /* src/distance/GuDistancePointBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd1805b907ff3d1805b90 /* src/distance/GuDistancePointBox.cpp */; };
- FFFFd1805bf87ff3d1805bf8 /* src/distance/GuDistancePointTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd1805bf87ff3d1805bf8 /* src/distance/GuDistancePointTriangle.cpp */; };
- FFFFd1805c607ff3d1805c60 /* src/distance/GuDistanceSegmentBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd1805c607ff3d1805c60 /* src/distance/GuDistanceSegmentBox.cpp */; };
- FFFFd1805cc87ff3d1805cc8 /* src/distance/GuDistanceSegmentSegment.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd1805cc87ff3d1805cc8 /* src/distance/GuDistanceSegmentSegment.cpp */; };
- FFFFd1805d307ff3d1805d30 /* src/distance/GuDistanceSegmentTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd1805d307ff3d1805d30 /* src/distance/GuDistanceSegmentTriangle.cpp */; };
- FFFFd1805d987ff3d1805d98 /* src/sweep/GuSweepBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd1805d987ff3d1805d98 /* src/sweep/GuSweepBoxBox.cpp */; };
- FFFFd1805e007ff3d1805e00 /* src/sweep/GuSweepBoxSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd1805e007ff3d1805e00 /* src/sweep/GuSweepBoxSphere.cpp */; };
- FFFFd1805e687ff3d1805e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd1805e687ff3d1805e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */; };
- FFFFd1805ed07ff3d1805ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd1805ed07ff3d1805ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */; };
- FFFFd1805f387ff3d1805f38 /* src/sweep/GuSweepCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd1805f387ff3d1805f38 /* src/sweep/GuSweepCapsuleBox.cpp */; };
- FFFFd1805fa07ff3d1805fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd1805fa07ff3d1805fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */; };
- FFFFd18060087ff3d1806008 /* src/sweep/GuSweepCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18060087ff3d1806008 /* src/sweep/GuSweepCapsuleTriangle.cpp */; };
- FFFFd18060707ff3d1806070 /* src/sweep/GuSweepSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18060707ff3d1806070 /* src/sweep/GuSweepSphereCapsule.cpp */; };
- FFFFd18060d87ff3d18060d8 /* src/sweep/GuSweepSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18060d87ff3d18060d8 /* src/sweep/GuSweepSphereSphere.cpp */; };
- FFFFd18061407ff3d1806140 /* src/sweep/GuSweepSphereTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18061407ff3d1806140 /* src/sweep/GuSweepSphereTriangle.cpp */; };
- FFFFd18061a87ff3d18061a8 /* src/sweep/GuSweepTriangleUtils.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18061a87ff3d18061a8 /* src/sweep/GuSweepTriangleUtils.cpp */; };
- FFFFd18062107ff3d1806210 /* src/gjk/GuEPA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18062107ff3d1806210 /* src/gjk/GuEPA.cpp */; };
- FFFFd18062787ff3d1806278 /* src/gjk/GuGJKSimplex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18062787ff3d1806278 /* src/gjk/GuGJKSimplex.cpp */; };
- FFFFd18062e07ff3d18062e0 /* src/gjk/GuGJKTest.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18062e07ff3d18062e0 /* src/gjk/GuGJKTest.cpp */; };
- FFFFd18063487ff3d1806348 /* src/intersection/GuIntersectionBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18063487ff3d1806348 /* src/intersection/GuIntersectionBoxBox.cpp */; };
- FFFFd18063b07ff3d18063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18063b07ff3d18063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */; };
- FFFFd18064187ff3d1806418 /* src/intersection/GuIntersectionEdgeEdge.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18064187ff3d1806418 /* src/intersection/GuIntersectionEdgeEdge.cpp */; };
- FFFFd18064807ff3d1806480 /* src/intersection/GuIntersectionRayBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18064807ff3d1806480 /* src/intersection/GuIntersectionRayBox.cpp */; };
- FFFFd18064e87ff3d18064e8 /* src/intersection/GuIntersectionRayCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18064e87ff3d18064e8 /* src/intersection/GuIntersectionRayCapsule.cpp */; };
- FFFFd18065507ff3d1806550 /* src/intersection/GuIntersectionRaySphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18065507ff3d1806550 /* src/intersection/GuIntersectionRaySphere.cpp */; };
- FFFFd18065b87ff3d18065b8 /* src/intersection/GuIntersectionSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18065b87ff3d18065b8 /* src/intersection/GuIntersectionSphereBox.cpp */; };
- FFFFd18066207ff3d1806620 /* src/intersection/GuIntersectionTriangleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18066207ff3d1806620 /* src/intersection/GuIntersectionTriangleBox.cpp */; };
- FFFFd18066887ff3d1806688 /* src/mesh/GuBV32.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18066887ff3d1806688 /* src/mesh/GuBV32.cpp */; };
- FFFFd18066f07ff3d18066f0 /* src/mesh/GuBV32Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18066f07ff3d18066f0 /* src/mesh/GuBV32Build.cpp */; };
- FFFFd18067587ff3d1806758 /* src/mesh/GuBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18067587ff3d1806758 /* src/mesh/GuBV4.cpp */; };
- FFFFd18067c07ff3d18067c0 /* src/mesh/GuBV4Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18067c07ff3d18067c0 /* src/mesh/GuBV4Build.cpp */; };
- FFFFd18068287ff3d1806828 /* src/mesh/GuBV4_AABBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18068287ff3d1806828 /* src/mesh/GuBV4_AABBSweep.cpp */; };
- FFFFd18068907ff3d1806890 /* src/mesh/GuBV4_BoxOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18068907ff3d1806890 /* src/mesh/GuBV4_BoxOverlap.cpp */; };
- FFFFd18068f87ff3d18068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18068f87ff3d18068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */; };
- FFFFd18069607ff3d1806960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18069607ff3d1806960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */; };
- FFFFd18069c87ff3d18069c8 /* src/mesh/GuBV4_OBBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18069c87ff3d18069c8 /* src/mesh/GuBV4_OBBSweep.cpp */; };
- FFFFd1806a307ff3d1806a30 /* src/mesh/GuBV4_Raycast.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd1806a307ff3d1806a30 /* src/mesh/GuBV4_Raycast.cpp */; };
- FFFFd1806a987ff3d1806a98 /* src/mesh/GuBV4_SphereOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd1806a987ff3d1806a98 /* src/mesh/GuBV4_SphereOverlap.cpp */; };
- FFFFd1806b007ff3d1806b00 /* src/mesh/GuBV4_SphereSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd1806b007ff3d1806b00 /* src/mesh/GuBV4_SphereSweep.cpp */; };
- FFFFd1806b687ff3d1806b68 /* src/mesh/GuMeshQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd1806b687ff3d1806b68 /* src/mesh/GuMeshQuery.cpp */; };
- FFFFd1806bd07ff3d1806bd0 /* src/mesh/GuMidphaseBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd1806bd07ff3d1806bd0 /* src/mesh/GuMidphaseBV4.cpp */; };
- FFFFd1806c387ff3d1806c38 /* src/mesh/GuMidphaseRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd1806c387ff3d1806c38 /* src/mesh/GuMidphaseRTree.cpp */; };
- FFFFd1806ca07ff3d1806ca0 /* src/mesh/GuOverlapTestsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd1806ca07ff3d1806ca0 /* src/mesh/GuOverlapTestsMesh.cpp */; };
- FFFFd1806d087ff3d1806d08 /* src/mesh/GuRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd1806d087ff3d1806d08 /* src/mesh/GuRTree.cpp */; };
- FFFFd1806d707ff3d1806d70 /* src/mesh/GuRTreeQueries.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd1806d707ff3d1806d70 /* src/mesh/GuRTreeQueries.cpp */; };
- FFFFd1806dd87ff3d1806dd8 /* src/mesh/GuSweepsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd1806dd87ff3d1806dd8 /* src/mesh/GuSweepsMesh.cpp */; };
- FFFFd1806e407ff3d1806e40 /* src/mesh/GuTriangleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd1806e407ff3d1806e40 /* src/mesh/GuTriangleMesh.cpp */; };
- FFFFd1806ea87ff3d1806ea8 /* src/mesh/GuTriangleMeshBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd1806ea87ff3d1806ea8 /* src/mesh/GuTriangleMeshBV4.cpp */; };
- FFFFd1806f107ff3d1806f10 /* src/mesh/GuTriangleMeshRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd1806f107ff3d1806f10 /* src/mesh/GuTriangleMeshRTree.cpp */; };
- FFFFd1806f787ff3d1806f78 /* src/hf/GuHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd1806f787ff3d1806f78 /* src/hf/GuHeightField.cpp */; };
- FFFFd1806fe07ff3d1806fe0 /* src/hf/GuHeightFieldUtil.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd1806fe07ff3d1806fe0 /* src/hf/GuHeightFieldUtil.cpp */; };
- FFFFd18070487ff3d1807048 /* src/hf/GuOverlapTestsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18070487ff3d1807048 /* src/hf/GuOverlapTestsHF.cpp */; };
- FFFFd18070b07ff3d18070b0 /* src/hf/GuSweepsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18070b07ff3d18070b0 /* src/hf/GuSweepsHF.cpp */; };
- FFFFd18071187ff3d1807118 /* src/pcm/GuPCMContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18071187ff3d1807118 /* src/pcm/GuPCMContactBoxBox.cpp */; };
- FFFFd18071807ff3d1807180 /* src/pcm/GuPCMContactBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18071807ff3d1807180 /* src/pcm/GuPCMContactBoxConvex.cpp */; };
- FFFFd18071e87ff3d18071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18071e87ff3d18071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */; };
- FFFFd18072507ff3d1807250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18072507ff3d1807250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */; };
- FFFFd18072b87ff3d18072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18072b87ff3d18072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */; };
- FFFFd18073207ff3d1807320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18073207ff3d1807320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */; };
- FFFFd18073887ff3d1807388 /* src/pcm/GuPCMContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18073887ff3d1807388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */; };
- FFFFd18073f07ff3d18073f0 /* src/pcm/GuPCMContactConvexCommon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18073f07ff3d18073f0 /* src/pcm/GuPCMContactConvexCommon.cpp */; };
- FFFFd18074587ff3d1807458 /* src/pcm/GuPCMContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18074587ff3d1807458 /* src/pcm/GuPCMContactConvexConvex.cpp */; };
- FFFFd18074c07ff3d18074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18074c07ff3d18074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */; };
- FFFFd18075287ff3d1807528 /* src/pcm/GuPCMContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18075287ff3d1807528 /* src/pcm/GuPCMContactConvexMesh.cpp */; };
- FFFFd18075907ff3d1807590 /* src/pcm/GuPCMContactGenBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18075907ff3d1807590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */; };
- FFFFd18075f87ff3d18075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18075f87ff3d18075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */; };
- FFFFd18076607ff3d1807660 /* src/pcm/GuPCMContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18076607ff3d1807660 /* src/pcm/GuPCMContactPlaneBox.cpp */; };
- FFFFd18076c87ff3d18076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18076c87ff3d18076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */; };
- FFFFd18077307ff3d1807730 /* src/pcm/GuPCMContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18077307ff3d1807730 /* src/pcm/GuPCMContactPlaneConvex.cpp */; };
- FFFFd18077987ff3d1807798 /* src/pcm/GuPCMContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18077987ff3d1807798 /* src/pcm/GuPCMContactSphereBox.cpp */; };
- FFFFd18078007ff3d1807800 /* src/pcm/GuPCMContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18078007ff3d1807800 /* src/pcm/GuPCMContactSphereCapsule.cpp */; };
- FFFFd18078687ff3d1807868 /* src/pcm/GuPCMContactSphereConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18078687ff3d1807868 /* src/pcm/GuPCMContactSphereConvex.cpp */; };
- FFFFd18078d07ff3d18078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18078d07ff3d18078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */; };
- FFFFd18079387ff3d1807938 /* src/pcm/GuPCMContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18079387ff3d1807938 /* src/pcm/GuPCMContactSphereMesh.cpp */; };
- FFFFd18079a07ff3d18079a0 /* src/pcm/GuPCMContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd18079a07ff3d18079a0 /* src/pcm/GuPCMContactSpherePlane.cpp */; };
- FFFFd1807a087ff3d1807a08 /* src/pcm/GuPCMContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd1807a087ff3d1807a08 /* src/pcm/GuPCMContactSphereSphere.cpp */; };
- FFFFd1807a707ff3d1807a70 /* src/pcm/GuPCMShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd1807a707ff3d1807a70 /* src/pcm/GuPCMShapeConvex.cpp */; };
- FFFFd1807ad87ff3d1807ad8 /* src/pcm/GuPCMTriangleContactGen.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd1807ad87ff3d1807ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */; };
- FFFFd1807b407ff3d1807b40 /* src/pcm/GuPersistentContactManifold.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd1807b407ff3d1807b40 /* src/pcm/GuPersistentContactManifold.cpp */; };
- FFFFd1807ba87ff3d1807ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd1807ba87ff3d1807ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */; };
- FFFFd1807c107ff3d1807c10 /* src/ccd/GuCCDSweepPrimitives.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDd1807c107ff3d1807c10 /* src/ccd/GuCCDSweepPrimitives.cpp */; };
+ FFFF3c1a82007f8d3c1a8200 /* src/CmBoxPruning.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD3c1a82007f8d3c1a8200 /* src/CmBoxPruning.cpp */; };
+ FFFF3c1a82687f8d3c1a8268 /* src/CmCollection.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD3c1a82687f8d3c1a8268 /* src/CmCollection.cpp */; };
+ FFFF3c1a82d07f8d3c1a82d0 /* src/CmMathUtils.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD3c1a82d07f8d3c1a82d0 /* src/CmMathUtils.cpp */; };
+ FFFF3c1a83387f8d3c1a8338 /* src/CmPtrTable.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD3c1a83387f8d3c1a8338 /* src/CmPtrTable.cpp */; };
+ FFFF3c1a83a07f8d3c1a83a0 /* src/CmRadixSort.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD3c1a83a07f8d3c1a83a0 /* src/CmRadixSort.cpp */; };
+ FFFF3c1a84087f8d3c1a8408 /* src/CmRadixSortBuffered.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD3c1a84087f8d3c1a8408 /* src/CmRadixSortBuffered.cpp */; };
+ FFFF3c1a84707f8d3c1a8470 /* src/CmRenderOutput.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD3c1a84707f8d3c1a8470 /* src/CmRenderOutput.cpp */; };
+ FFFF3c1a84d87f8d3c1a84d8 /* src/CmVisualization.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD3c1a84d87f8d3c1a84d8 /* src/CmVisualization.cpp */; };
+ FFFF3b8045a87f8d3b8045a8 /* ../../Include/GeomUtils in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b8045a87f8d3b8045a8 /* ../../Include/GeomUtils */; };
+ FFFF3b807ae07f8d3b807ae0 /* src/GuBounds.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b807ae07f8d3b807ae0 /* src/GuBounds.cpp */; };
+ FFFF3b807b487f8d3b807b48 /* src/GuBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b807b487f8d3b807b48 /* src/GuBox.cpp */; };
+ FFFF3b807bb07f8d3b807bb0 /* src/GuCCTSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b807bb07f8d3b807bb0 /* src/GuCCTSweepTests.cpp */; };
+ FFFF3b807c187f8d3b807c18 /* src/GuCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b807c187f8d3b807c18 /* src/GuCapsule.cpp */; };
+ FFFF3b807c807f8d3b807c80 /* src/GuGeometryQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b807c807f8d3b807c80 /* src/GuGeometryQuery.cpp */; };
+ FFFF3b807ce87f8d3b807ce8 /* src/GuGeometryUnion.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b807ce87f8d3b807ce8 /* src/GuGeometryUnion.cpp */; };
+ FFFF3b807d507f8d3b807d50 /* src/GuInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b807d507f8d3b807d50 /* src/GuInternal.cpp */; };
+ FFFF3b807db87f8d3b807db8 /* src/GuMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b807db87f8d3b807db8 /* src/GuMTD.cpp */; };
+ FFFF3b807e207f8d3b807e20 /* src/GuMeshFactory.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b807e207f8d3b807e20 /* src/GuMeshFactory.cpp */; };
+ FFFF3b807e887f8d3b807e88 /* src/GuMetaData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b807e887f8d3b807e88 /* src/GuMetaData.cpp */; };
+ FFFF3b807ef07f8d3b807ef0 /* src/GuOverlapTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b807ef07f8d3b807ef0 /* src/GuOverlapTests.cpp */; };
+ FFFF3b807f587f8d3b807f58 /* src/GuRaycastTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b807f587f8d3b807f58 /* src/GuRaycastTests.cpp */; };
+ FFFF3b807fc07f8d3b807fc0 /* src/GuSerialize.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b807fc07f8d3b807fc0 /* src/GuSerialize.cpp */; };
+ FFFF3b8080287f8d3b808028 /* src/GuSweepMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b8080287f8d3b808028 /* src/GuSweepMTD.cpp */; };
+ FFFF3b8080907f8d3b808090 /* src/GuSweepSharedTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b8080907f8d3b808090 /* src/GuSweepSharedTests.cpp */; };
+ FFFF3b8080f87f8d3b8080f8 /* src/GuSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b8080f87f8d3b8080f8 /* src/GuSweepTests.cpp */; };
+ FFFF3b8081607f8d3b808160 /* src/contact/GuContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b8081607f8d3b808160 /* src/contact/GuContactBoxBox.cpp */; };
+ FFFF3b8081c87f8d3b8081c8 /* src/contact/GuContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b8081c87f8d3b8081c8 /* src/contact/GuContactCapsuleBox.cpp */; };
+ FFFF3b8082307f8d3b808230 /* src/contact/GuContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b8082307f8d3b808230 /* src/contact/GuContactCapsuleCapsule.cpp */; };
+ FFFF3b8082987f8d3b808298 /* src/contact/GuContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b8082987f8d3b808298 /* src/contact/GuContactCapsuleConvex.cpp */; };
+ FFFF3b8083007f8d3b808300 /* src/contact/GuContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b8083007f8d3b808300 /* src/contact/GuContactCapsuleMesh.cpp */; };
+ FFFF3b8083687f8d3b808368 /* src/contact/GuContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b8083687f8d3b808368 /* src/contact/GuContactConvexConvex.cpp */; };
+ FFFF3b8083d07f8d3b8083d0 /* src/contact/GuContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b8083d07f8d3b8083d0 /* src/contact/GuContactConvexMesh.cpp */; };
+ FFFF3b8084387f8d3b808438 /* src/contact/GuContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b8084387f8d3b808438 /* src/contact/GuContactPlaneBox.cpp */; };
+ FFFF3b8084a07f8d3b8084a0 /* src/contact/GuContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b8084a07f8d3b8084a0 /* src/contact/GuContactPlaneCapsule.cpp */; };
+ FFFF3b8085087f8d3b808508 /* src/contact/GuContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b8085087f8d3b808508 /* src/contact/GuContactPlaneConvex.cpp */; };
+ FFFF3b8085707f8d3b808570 /* src/contact/GuContactPolygonPolygon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b8085707f8d3b808570 /* src/contact/GuContactPolygonPolygon.cpp */; };
+ FFFF3b8085d87f8d3b8085d8 /* src/contact/GuContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b8085d87f8d3b8085d8 /* src/contact/GuContactSphereBox.cpp */; };
+ FFFF3b8086407f8d3b808640 /* src/contact/GuContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b8086407f8d3b808640 /* src/contact/GuContactSphereCapsule.cpp */; };
+ FFFF3b8086a87f8d3b8086a8 /* src/contact/GuContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b8086a87f8d3b8086a8 /* src/contact/GuContactSphereMesh.cpp */; };
+ FFFF3b8087107f8d3b808710 /* src/contact/GuContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b8087107f8d3b808710 /* src/contact/GuContactSpherePlane.cpp */; };
+ FFFF3b8087787f8d3b808778 /* src/contact/GuContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b8087787f8d3b808778 /* src/contact/GuContactSphereSphere.cpp */; };
+ FFFF3b8087e07f8d3b8087e0 /* src/contact/GuFeatureCode.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b8087e07f8d3b8087e0 /* src/contact/GuFeatureCode.cpp */; };
+ FFFF3b8088487f8d3b808848 /* src/contact/GuLegacyContactBoxHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b8088487f8d3b808848 /* src/contact/GuLegacyContactBoxHeightField.cpp */; };
+ FFFF3b8088b07f8d3b8088b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b8088b07f8d3b8088b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */; };
+ FFFF3b8089187f8d3b808918 /* src/contact/GuLegacyContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b8089187f8d3b808918 /* src/contact/GuLegacyContactConvexHeightField.cpp */; };
+ FFFF3b8089807f8d3b808980 /* src/contact/GuLegacyContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b8089807f8d3b808980 /* src/contact/GuLegacyContactSphereHeightField.cpp */; };
+ FFFF3b8089e87f8d3b8089e8 /* src/common/GuBarycentricCoordinates.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b8089e87f8d3b8089e8 /* src/common/GuBarycentricCoordinates.cpp */; };
+ FFFF3b808a507f8d3b808a50 /* src/common/GuSeparatingAxes.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b808a507f8d3b808a50 /* src/common/GuSeparatingAxes.cpp */; };
+ FFFF3b808ab87f8d3b808ab8 /* src/convex/GuBigConvexData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b808ab87f8d3b808ab8 /* src/convex/GuBigConvexData.cpp */; };
+ FFFF3b808b207f8d3b808b20 /* src/convex/GuConvexHelper.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b808b207f8d3b808b20 /* src/convex/GuConvexHelper.cpp */; };
+ FFFF3b808b887f8d3b808b88 /* src/convex/GuConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b808b887f8d3b808b88 /* src/convex/GuConvexMesh.cpp */; };
+ FFFF3b808bf07f8d3b808bf0 /* src/convex/GuConvexSupportTable.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b808bf07f8d3b808bf0 /* src/convex/GuConvexSupportTable.cpp */; };
+ FFFF3b808c587f8d3b808c58 /* src/convex/GuConvexUtilsInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b808c587f8d3b808c58 /* src/convex/GuConvexUtilsInternal.cpp */; };
+ FFFF3b808cc07f8d3b808cc0 /* src/convex/GuHillClimbing.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b808cc07f8d3b808cc0 /* src/convex/GuHillClimbing.cpp */; };
+ FFFF3b808d287f8d3b808d28 /* src/convex/GuShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b808d287f8d3b808d28 /* src/convex/GuShapeConvex.cpp */; };
+ FFFF3b808d907f8d3b808d90 /* src/distance/GuDistancePointBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b808d907f8d3b808d90 /* src/distance/GuDistancePointBox.cpp */; };
+ FFFF3b808df87f8d3b808df8 /* src/distance/GuDistancePointTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b808df87f8d3b808df8 /* src/distance/GuDistancePointTriangle.cpp */; };
+ FFFF3b808e607f8d3b808e60 /* src/distance/GuDistanceSegmentBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b808e607f8d3b808e60 /* src/distance/GuDistanceSegmentBox.cpp */; };
+ FFFF3b808ec87f8d3b808ec8 /* src/distance/GuDistanceSegmentSegment.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b808ec87f8d3b808ec8 /* src/distance/GuDistanceSegmentSegment.cpp */; };
+ FFFF3b808f307f8d3b808f30 /* src/distance/GuDistanceSegmentTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b808f307f8d3b808f30 /* src/distance/GuDistanceSegmentTriangle.cpp */; };
+ FFFF3b808f987f8d3b808f98 /* src/sweep/GuSweepBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b808f987f8d3b808f98 /* src/sweep/GuSweepBoxBox.cpp */; };
+ FFFF3b8090007f8d3b809000 /* src/sweep/GuSweepBoxSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b8090007f8d3b809000 /* src/sweep/GuSweepBoxSphere.cpp */; };
+ FFFF3b8090687f8d3b809068 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b8090687f8d3b809068 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */; };
+ FFFF3b8090d07f8d3b8090d0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b8090d07f8d3b8090d0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */; };
+ FFFF3b8091387f8d3b809138 /* src/sweep/GuSweepCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b8091387f8d3b809138 /* src/sweep/GuSweepCapsuleBox.cpp */; };
+ FFFF3b8091a07f8d3b8091a0 /* src/sweep/GuSweepCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b8091a07f8d3b8091a0 /* src/sweep/GuSweepCapsuleCapsule.cpp */; };
+ FFFF3b8092087f8d3b809208 /* src/sweep/GuSweepCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b8092087f8d3b809208 /* src/sweep/GuSweepCapsuleTriangle.cpp */; };
+ FFFF3b8092707f8d3b809270 /* src/sweep/GuSweepSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b8092707f8d3b809270 /* src/sweep/GuSweepSphereCapsule.cpp */; };
+ FFFF3b8092d87f8d3b8092d8 /* src/sweep/GuSweepSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b8092d87f8d3b8092d8 /* src/sweep/GuSweepSphereSphere.cpp */; };
+ FFFF3b8093407f8d3b809340 /* src/sweep/GuSweepSphereTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b8093407f8d3b809340 /* src/sweep/GuSweepSphereTriangle.cpp */; };
+ FFFF3b8093a87f8d3b8093a8 /* src/sweep/GuSweepTriangleUtils.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b8093a87f8d3b8093a8 /* src/sweep/GuSweepTriangleUtils.cpp */; };
+ FFFF3b8094107f8d3b809410 /* src/gjk/GuEPA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b8094107f8d3b809410 /* src/gjk/GuEPA.cpp */; };
+ FFFF3b8094787f8d3b809478 /* src/gjk/GuGJKSimplex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b8094787f8d3b809478 /* src/gjk/GuGJKSimplex.cpp */; };
+ FFFF3b8094e07f8d3b8094e0 /* src/gjk/GuGJKTest.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b8094e07f8d3b8094e0 /* src/gjk/GuGJKTest.cpp */; };
+ FFFF3b8095487f8d3b809548 /* src/intersection/GuIntersectionBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b8095487f8d3b809548 /* src/intersection/GuIntersectionBoxBox.cpp */; };
+ FFFF3b8095b07f8d3b8095b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b8095b07f8d3b8095b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */; };
+ FFFF3b8096187f8d3b809618 /* src/intersection/GuIntersectionEdgeEdge.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b8096187f8d3b809618 /* src/intersection/GuIntersectionEdgeEdge.cpp */; };
+ FFFF3b8096807f8d3b809680 /* src/intersection/GuIntersectionRayBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b8096807f8d3b809680 /* src/intersection/GuIntersectionRayBox.cpp */; };
+ FFFF3b8096e87f8d3b8096e8 /* src/intersection/GuIntersectionRayCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b8096e87f8d3b8096e8 /* src/intersection/GuIntersectionRayCapsule.cpp */; };
+ FFFF3b8097507f8d3b809750 /* src/intersection/GuIntersectionRaySphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b8097507f8d3b809750 /* src/intersection/GuIntersectionRaySphere.cpp */; };
+ FFFF3b8097b87f8d3b8097b8 /* src/intersection/GuIntersectionSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b8097b87f8d3b8097b8 /* src/intersection/GuIntersectionSphereBox.cpp */; };
+ FFFF3b8098207f8d3b809820 /* src/intersection/GuIntersectionTriangleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b8098207f8d3b809820 /* src/intersection/GuIntersectionTriangleBox.cpp */; };
+ FFFF3b8098887f8d3b809888 /* src/mesh/GuBV32.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b8098887f8d3b809888 /* src/mesh/GuBV32.cpp */; };
+ FFFF3b8098f07f8d3b8098f0 /* src/mesh/GuBV32Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b8098f07f8d3b8098f0 /* src/mesh/GuBV32Build.cpp */; };
+ FFFF3b8099587f8d3b809958 /* src/mesh/GuBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b8099587f8d3b809958 /* src/mesh/GuBV4.cpp */; };
+ FFFF3b8099c07f8d3b8099c0 /* src/mesh/GuBV4Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b8099c07f8d3b8099c0 /* src/mesh/GuBV4Build.cpp */; };
+ FFFF3b809a287f8d3b809a28 /* src/mesh/GuBV4_AABBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b809a287f8d3b809a28 /* src/mesh/GuBV4_AABBSweep.cpp */; };
+ FFFF3b809a907f8d3b809a90 /* src/mesh/GuBV4_BoxOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b809a907f8d3b809a90 /* src/mesh/GuBV4_BoxOverlap.cpp */; };
+ FFFF3b809af87f8d3b809af8 /* src/mesh/GuBV4_CapsuleSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b809af87f8d3b809af8 /* src/mesh/GuBV4_CapsuleSweep.cpp */; };
+ FFFF3b809b607f8d3b809b60 /* src/mesh/GuBV4_CapsuleSweepAA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b809b607f8d3b809b60 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */; };
+ FFFF3b809bc87f8d3b809bc8 /* src/mesh/GuBV4_OBBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b809bc87f8d3b809bc8 /* src/mesh/GuBV4_OBBSweep.cpp */; };
+ FFFF3b809c307f8d3b809c30 /* src/mesh/GuBV4_Raycast.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b809c307f8d3b809c30 /* src/mesh/GuBV4_Raycast.cpp */; };
+ FFFF3b809c987f8d3b809c98 /* src/mesh/GuBV4_SphereOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b809c987f8d3b809c98 /* src/mesh/GuBV4_SphereOverlap.cpp */; };
+ FFFF3b809d007f8d3b809d00 /* src/mesh/GuBV4_SphereSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b809d007f8d3b809d00 /* src/mesh/GuBV4_SphereSweep.cpp */; };
+ FFFF3b809d687f8d3b809d68 /* src/mesh/GuMeshQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b809d687f8d3b809d68 /* src/mesh/GuMeshQuery.cpp */; };
+ FFFF3b809dd07f8d3b809dd0 /* src/mesh/GuMidphaseBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b809dd07f8d3b809dd0 /* src/mesh/GuMidphaseBV4.cpp */; };
+ FFFF3b809e387f8d3b809e38 /* src/mesh/GuMidphaseRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b809e387f8d3b809e38 /* src/mesh/GuMidphaseRTree.cpp */; };
+ FFFF3b809ea07f8d3b809ea0 /* src/mesh/GuOverlapTestsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b809ea07f8d3b809ea0 /* src/mesh/GuOverlapTestsMesh.cpp */; };
+ FFFF3b809f087f8d3b809f08 /* src/mesh/GuRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b809f087f8d3b809f08 /* src/mesh/GuRTree.cpp */; };
+ FFFF3b809f707f8d3b809f70 /* src/mesh/GuRTreeQueries.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b809f707f8d3b809f70 /* src/mesh/GuRTreeQueries.cpp */; };
+ FFFF3b809fd87f8d3b809fd8 /* src/mesh/GuSweepsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b809fd87f8d3b809fd8 /* src/mesh/GuSweepsMesh.cpp */; };
+ FFFF3b80a0407f8d3b80a040 /* src/mesh/GuTriangleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b80a0407f8d3b80a040 /* src/mesh/GuTriangleMesh.cpp */; };
+ FFFF3b80a0a87f8d3b80a0a8 /* src/mesh/GuTriangleMeshBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b80a0a87f8d3b80a0a8 /* src/mesh/GuTriangleMeshBV4.cpp */; };
+ FFFF3b80a1107f8d3b80a110 /* src/mesh/GuTriangleMeshRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b80a1107f8d3b80a110 /* src/mesh/GuTriangleMeshRTree.cpp */; };
+ FFFF3b80a1787f8d3b80a178 /* src/hf/GuHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b80a1787f8d3b80a178 /* src/hf/GuHeightField.cpp */; };
+ FFFF3b80a1e07f8d3b80a1e0 /* src/hf/GuHeightFieldUtil.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b80a1e07f8d3b80a1e0 /* src/hf/GuHeightFieldUtil.cpp */; };
+ FFFF3b80a2487f8d3b80a248 /* src/hf/GuOverlapTestsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b80a2487f8d3b80a248 /* src/hf/GuOverlapTestsHF.cpp */; };
+ FFFF3b80a2b07f8d3b80a2b0 /* src/hf/GuSweepsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b80a2b07f8d3b80a2b0 /* src/hf/GuSweepsHF.cpp */; };
+ FFFF3b80a3187f8d3b80a318 /* src/pcm/GuPCMContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b80a3187f8d3b80a318 /* src/pcm/GuPCMContactBoxBox.cpp */; };
+ FFFF3b80a3807f8d3b80a380 /* src/pcm/GuPCMContactBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b80a3807f8d3b80a380 /* src/pcm/GuPCMContactBoxConvex.cpp */; };
+ FFFF3b80a3e87f8d3b80a3e8 /* src/pcm/GuPCMContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b80a3e87f8d3b80a3e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */; };
+ FFFF3b80a4507f8d3b80a450 /* src/pcm/GuPCMContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b80a4507f8d3b80a450 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */; };
+ FFFF3b80a4b87f8d3b80a4b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b80a4b87f8d3b80a4b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */; };
+ FFFF3b80a5207f8d3b80a520 /* src/pcm/GuPCMContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b80a5207f8d3b80a520 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */; };
+ FFFF3b80a5887f8d3b80a588 /* src/pcm/GuPCMContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b80a5887f8d3b80a588 /* src/pcm/GuPCMContactCapsuleMesh.cpp */; };
+ FFFF3b80a5f07f8d3b80a5f0 /* src/pcm/GuPCMContactConvexCommon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b80a5f07f8d3b80a5f0 /* src/pcm/GuPCMContactConvexCommon.cpp */; };
+ FFFF3b80a6587f8d3b80a658 /* src/pcm/GuPCMContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b80a6587f8d3b80a658 /* src/pcm/GuPCMContactConvexConvex.cpp */; };
+ FFFF3b80a6c07f8d3b80a6c0 /* src/pcm/GuPCMContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b80a6c07f8d3b80a6c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */; };
+ FFFF3b80a7287f8d3b80a728 /* src/pcm/GuPCMContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b80a7287f8d3b80a728 /* src/pcm/GuPCMContactConvexMesh.cpp */; };
+ FFFF3b80a7907f8d3b80a790 /* src/pcm/GuPCMContactGenBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b80a7907f8d3b80a790 /* src/pcm/GuPCMContactGenBoxConvex.cpp */; };
+ FFFF3b80a7f87f8d3b80a7f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b80a7f87f8d3b80a7f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */; };
+ FFFF3b80a8607f8d3b80a860 /* src/pcm/GuPCMContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b80a8607f8d3b80a860 /* src/pcm/GuPCMContactPlaneBox.cpp */; };
+ FFFF3b80a8c87f8d3b80a8c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b80a8c87f8d3b80a8c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */; };
+ FFFF3b80a9307f8d3b80a930 /* src/pcm/GuPCMContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b80a9307f8d3b80a930 /* src/pcm/GuPCMContactPlaneConvex.cpp */; };
+ FFFF3b80a9987f8d3b80a998 /* src/pcm/GuPCMContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b80a9987f8d3b80a998 /* src/pcm/GuPCMContactSphereBox.cpp */; };
+ FFFF3b80aa007f8d3b80aa00 /* src/pcm/GuPCMContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b80aa007f8d3b80aa00 /* src/pcm/GuPCMContactSphereCapsule.cpp */; };
+ FFFF3b80aa687f8d3b80aa68 /* src/pcm/GuPCMContactSphereConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b80aa687f8d3b80aa68 /* src/pcm/GuPCMContactSphereConvex.cpp */; };
+ FFFF3b80aad07f8d3b80aad0 /* src/pcm/GuPCMContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b80aad07f8d3b80aad0 /* src/pcm/GuPCMContactSphereHeightField.cpp */; };
+ FFFF3b80ab387f8d3b80ab38 /* src/pcm/GuPCMContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b80ab387f8d3b80ab38 /* src/pcm/GuPCMContactSphereMesh.cpp */; };
+ FFFF3b80aba07f8d3b80aba0 /* src/pcm/GuPCMContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b80aba07f8d3b80aba0 /* src/pcm/GuPCMContactSpherePlane.cpp */; };
+ FFFF3b80ac087f8d3b80ac08 /* src/pcm/GuPCMContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b80ac087f8d3b80ac08 /* src/pcm/GuPCMContactSphereSphere.cpp */; };
+ FFFF3b80ac707f8d3b80ac70 /* src/pcm/GuPCMShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b80ac707f8d3b80ac70 /* src/pcm/GuPCMShapeConvex.cpp */; };
+ FFFF3b80acd87f8d3b80acd8 /* src/pcm/GuPCMTriangleContactGen.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b80acd87f8d3b80acd8 /* src/pcm/GuPCMTriangleContactGen.cpp */; };
+ FFFF3b80ad407f8d3b80ad40 /* src/pcm/GuPersistentContactManifold.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b80ad407f8d3b80ad40 /* src/pcm/GuPersistentContactManifold.cpp */; };
+ FFFF3b80ada87f8d3b80ada8 /* src/ccd/GuCCDSweepConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b80ada87f8d3b80ada8 /* src/ccd/GuCCDSweepConvexMesh.cpp */; };
+ FFFF3b80ae107f8d3b80ae10 /* src/ccd/GuCCDSweepPrimitives.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3b80ae107f8d3b80ae10 /* src/ccd/GuCCDSweepPrimitives.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFDd10a67707ff3d10a6770 /* PhysXCommon */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCommon"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFDd180ec007ff3d180ec00 /* common/PxBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxBase.h"; path = "../../../Include/common/PxBase.h"; sourceTree = SOURCE_ROOT; };
- FFFDd180ec687ff3d180ec68 /* common/PxCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCollection.h"; path = "../../../Include/common/PxCollection.h"; sourceTree = SOURCE_ROOT; };
- FFFDd180ecd07ff3d180ecd0 /* common/PxCoreUtilityTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCoreUtilityTypes.h"; path = "../../../Include/common/PxCoreUtilityTypes.h"; sourceTree = SOURCE_ROOT; };
- FFFDd180ed387ff3d180ed38 /* common/PxMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaData.h"; path = "../../../Include/common/PxMetaData.h"; sourceTree = SOURCE_ROOT; };
- FFFDd180eda07ff3d180eda0 /* common/PxMetaDataFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaDataFlags.h"; path = "../../../Include/common/PxMetaDataFlags.h"; sourceTree = SOURCE_ROOT; };
- FFFDd180ee087ff3d180ee08 /* common/PxPhysXCommonConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysXCommonConfig.h"; path = "../../../Include/common/PxPhysXCommonConfig.h"; sourceTree = SOURCE_ROOT; };
- FFFDd180ee707ff3d180ee70 /* common/PxPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysicsInsertionCallback.h"; path = "../../../Include/common/PxPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; };
- FFFDd180eed87ff3d180eed8 /* common/PxRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxRenderBuffer.h"; path = "../../../Include/common/PxRenderBuffer.h"; sourceTree = SOURCE_ROOT; };
- FFFDd180ef407ff3d180ef40 /* common/PxSerialFramework.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerialFramework.h"; path = "../../../Include/common/PxSerialFramework.h"; sourceTree = SOURCE_ROOT; };
- FFFDd180efa87ff3d180efa8 /* common/PxSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerializer.h"; path = "../../../Include/common/PxSerializer.h"; sourceTree = SOURCE_ROOT; };
- FFFDd180f0107ff3d180f010 /* common/PxStringTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxStringTable.h"; path = "../../../Include/common/PxStringTable.h"; sourceTree = SOURCE_ROOT; };
- FFFDd180f0787ff3d180f078 /* common/PxTolerancesScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTolerancesScale.h"; path = "../../../Include/common/PxTolerancesScale.h"; sourceTree = SOURCE_ROOT; };
- FFFDd180f0e07ff3d180f0e0 /* common/PxTypeInfo.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTypeInfo.h"; path = "../../../Include/common/PxTypeInfo.h"; sourceTree = SOURCE_ROOT; };
- FFFDd180f1487ff3d180f148 /* geometry/PxBoxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxBoxGeometry.h"; path = "../../../Include/geometry/PxBoxGeometry.h"; sourceTree = SOURCE_ROOT; };
- FFFDd180f1b07ff3d180f1b0 /* geometry/PxCapsuleGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxCapsuleGeometry.h"; path = "../../../Include/geometry/PxCapsuleGeometry.h"; sourceTree = SOURCE_ROOT; };
- FFFDd180f2187ff3d180f218 /* geometry/PxConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMesh.h"; path = "../../../Include/geometry/PxConvexMesh.h"; sourceTree = SOURCE_ROOT; };
- FFFDd180f2807ff3d180f280 /* geometry/PxConvexMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMeshGeometry.h"; path = "../../../Include/geometry/PxConvexMeshGeometry.h"; sourceTree = SOURCE_ROOT; };
- FFFDd180f2e87ff3d180f2e8 /* geometry/PxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometry.h"; path = "../../../Include/geometry/PxGeometry.h"; sourceTree = SOURCE_ROOT; };
- FFFDd180f3507ff3d180f350 /* geometry/PxGeometryHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryHelpers.h"; path = "../../../Include/geometry/PxGeometryHelpers.h"; sourceTree = SOURCE_ROOT; };
- FFFDd180f3b87ff3d180f3b8 /* geometry/PxGeometryQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryQuery.h"; path = "../../../Include/geometry/PxGeometryQuery.h"; sourceTree = SOURCE_ROOT; };
- FFFDd180f4207ff3d180f420 /* geometry/PxHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightField.h"; path = "../../../Include/geometry/PxHeightField.h"; sourceTree = SOURCE_ROOT; };
- FFFDd180f4887ff3d180f488 /* geometry/PxHeightFieldDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldDesc.h"; path = "../../../Include/geometry/PxHeightFieldDesc.h"; sourceTree = SOURCE_ROOT; };
- FFFDd180f4f07ff3d180f4f0 /* geometry/PxHeightFieldFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldFlag.h"; path = "../../../Include/geometry/PxHeightFieldFlag.h"; sourceTree = SOURCE_ROOT; };
- FFFDd180f5587ff3d180f558 /* geometry/PxHeightFieldGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldGeometry.h"; path = "../../../Include/geometry/PxHeightFieldGeometry.h"; sourceTree = SOURCE_ROOT; };
- FFFDd180f5c07ff3d180f5c0 /* geometry/PxHeightFieldSample.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldSample.h"; path = "../../../Include/geometry/PxHeightFieldSample.h"; sourceTree = SOURCE_ROOT; };
- FFFDd180f6287ff3d180f628 /* geometry/PxMeshQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshQuery.h"; path = "../../../Include/geometry/PxMeshQuery.h"; sourceTree = SOURCE_ROOT; };
- FFFDd180f6907ff3d180f690 /* geometry/PxMeshScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshScale.h"; path = "../../../Include/geometry/PxMeshScale.h"; sourceTree = SOURCE_ROOT; };
- FFFDd180f6f87ff3d180f6f8 /* geometry/PxPlaneGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxPlaneGeometry.h"; path = "../../../Include/geometry/PxPlaneGeometry.h"; sourceTree = SOURCE_ROOT; };
- FFFDd180f7607ff3d180f760 /* geometry/PxSimpleTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSimpleTriangleMesh.h"; path = "../../../Include/geometry/PxSimpleTriangleMesh.h"; sourceTree = SOURCE_ROOT; };
- FFFDd180f7c87ff3d180f7c8 /* geometry/PxSphereGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSphereGeometry.h"; path = "../../../Include/geometry/PxSphereGeometry.h"; sourceTree = SOURCE_ROOT; };
- FFFDd180f8307ff3d180f830 /* geometry/PxTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangle.h"; path = "../../../Include/geometry/PxTriangle.h"; sourceTree = SOURCE_ROOT; };
- FFFDd180f8987ff3d180f898 /* geometry/PxTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMesh.h"; path = "../../../Include/geometry/PxTriangleMesh.h"; sourceTree = SOURCE_ROOT; };
- FFFDd180f9007ff3d180f900 /* geometry/PxTriangleMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMeshGeometry.h"; path = "../../../Include/geometry/PxTriangleMeshGeometry.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09aa4007ff3d09aa400 /* src/CmBoxPruning.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.cpp"; path = "../../Common/src/CmBoxPruning.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09aa4687ff3d09aa468 /* src/CmCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.cpp"; path = "../../Common/src/CmCollection.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09aa4d07ff3d09aa4d0 /* src/CmMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMathUtils.cpp"; path = "../../Common/src/CmMathUtils.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09aa5387ff3d09aa538 /* src/CmPtrTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.cpp"; path = "../../Common/src/CmPtrTable.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09aa5a07ff3d09aa5a0 /* src/CmRadixSort.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.cpp"; path = "../../Common/src/CmRadixSort.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09aa6087ff3d09aa608 /* src/CmRadixSortBuffered.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.cpp"; path = "../../Common/src/CmRadixSortBuffered.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09aa6707ff3d09aa670 /* src/CmRenderOutput.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.cpp"; path = "../../Common/src/CmRenderOutput.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09aa6d87ff3d09aa6d8 /* src/CmVisualization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.cpp"; path = "../../Common/src/CmVisualization.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09aa7407ff3d09aa740 /* src/CmBitMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBitMap.h"; path = "../../Common/src/CmBitMap.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09aa7a87ff3d09aa7a8 /* src/CmBoxPruning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.h"; path = "../../Common/src/CmBoxPruning.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09aa8107ff3d09aa810 /* src/CmCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.h"; path = "../../Common/src/CmCollection.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09aa8787ff3d09aa878 /* src/CmConeLimitHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmConeLimitHelper.h"; path = "../../Common/src/CmConeLimitHelper.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09aa8e07ff3d09aa8e0 /* src/CmFlushPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmFlushPool.h"; path = "../../Common/src/CmFlushPool.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09aa9487ff3d09aa948 /* src/CmIDPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIDPool.h"; path = "../../Common/src/CmIDPool.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09aa9b07ff3d09aa9b0 /* src/CmIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIO.h"; path = "../../Common/src/CmIO.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09aaa187ff3d09aaa18 /* src/CmMatrix34.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMatrix34.h"; path = "../../Common/src/CmMatrix34.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09aaa807ff3d09aaa80 /* src/CmPhysXCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPhysXCommon.h"; path = "../../Common/src/CmPhysXCommon.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09aaae87ff3d09aaae8 /* src/CmPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPool.h"; path = "../../Common/src/CmPool.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09aab507ff3d09aab50 /* src/CmPreallocatingPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPreallocatingPool.h"; path = "../../Common/src/CmPreallocatingPool.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09aabb87ff3d09aabb8 /* src/CmPriorityQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPriorityQueue.h"; path = "../../Common/src/CmPriorityQueue.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09aac207ff3d09aac20 /* src/CmPtrTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.h"; path = "../../Common/src/CmPtrTable.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09aac887ff3d09aac88 /* src/CmQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmQueue.h"; path = "../../Common/src/CmQueue.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09aacf07ff3d09aacf0 /* src/CmRadixSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.h"; path = "../../Common/src/CmRadixSort.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09aad587ff3d09aad58 /* src/CmRadixSortBuffered.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.h"; path = "../../Common/src/CmRadixSortBuffered.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09aadc07ff3d09aadc0 /* src/CmRefCountable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRefCountable.h"; path = "../../Common/src/CmRefCountable.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09aae287ff3d09aae28 /* src/CmRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderBuffer.h"; path = "../../Common/src/CmRenderBuffer.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09aae907ff3d09aae90 /* src/CmRenderOutput.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.h"; path = "../../Common/src/CmRenderOutput.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09aaef87ff3d09aaef8 /* src/CmScaling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmScaling.h"; path = "../../Common/src/CmScaling.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09aaf607ff3d09aaf60 /* src/CmSpatialVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmSpatialVector.h"; path = "../../Common/src/CmSpatialVector.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09aafc87ff3d09aafc8 /* src/CmTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTask.h"; path = "../../Common/src/CmTask.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09ab0307ff3d09ab030 /* src/CmTaskPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTaskPool.h"; path = "../../Common/src/CmTaskPool.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09ab0987ff3d09ab098 /* src/CmTmpMem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTmpMem.h"; path = "../../Common/src/CmTmpMem.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09ab1007ff3d09ab100 /* src/CmTransformUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTransformUtils.h"; path = "../../Common/src/CmTransformUtils.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09ab1687ff3d09ab168 /* src/CmUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmUtils.h"; path = "../../Common/src/CmUtils.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09ab1d07ff3d09ab1d0 /* src/CmVisualization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.h"; path = "../../Common/src/CmVisualization.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18010007ff3d1801000 /* headers/GuAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuAxes.h"; path = "../../GeomUtils/headers/GuAxes.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18010687ff3d1801068 /* headers/GuBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuBox.h"; path = "../../GeomUtils/headers/GuBox.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18010d07ff3d18010d0 /* headers/GuDistanceSegmentBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentBox.h"; path = "../../GeomUtils/headers/GuDistanceSegmentBox.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18011387ff3d1801138 /* headers/GuDistanceSegmentSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentSegment.h"; path = "../../GeomUtils/headers/GuDistanceSegmentSegment.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18011a07ff3d18011a0 /* headers/GuIntersectionBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionBoxBox.h"; path = "../../GeomUtils/headers/GuIntersectionBoxBox.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18012087ff3d1801208 /* headers/GuIntersectionTriangleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionTriangleBox.h"; path = "../../GeomUtils/headers/GuIntersectionTriangleBox.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18012707ff3d1801270 /* headers/GuRaycastTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuRaycastTests.h"; path = "../../GeomUtils/headers/GuRaycastTests.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18012d87ff3d18012d8 /* headers/GuSIMDHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSIMDHelpers.h"; path = "../../GeomUtils/headers/GuSIMDHelpers.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18013407ff3d1801340 /* headers/GuSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSegment.h"; path = "../../GeomUtils/headers/GuSegment.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18013a87ff3d18013a8 /* ../../Include/GeomUtils */= { isa = PBXFileReference; fileEncoding = 4; name = "../../Include/GeomUtils"; path = "../../../Include/GeomUtils"; sourceTree = SOURCE_ROOT; };
- FFFDd18014107ff3d1801410 /* src/GuBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.h"; path = "../../GeomUtils/src/GuBounds.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18014787ff3d1801478 /* src/GuCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.h"; path = "../../GeomUtils/src/GuCapsule.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18014e07ff3d18014e0 /* src/GuCenterExtents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCenterExtents.h"; path = "../../GeomUtils/src/GuCenterExtents.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18015487ff3d1801548 /* src/GuGeometryUnion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.h"; path = "../../GeomUtils/src/GuGeometryUnion.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18015b07ff3d18015b0 /* src/GuInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.h"; path = "../../GeomUtils/src/GuInternal.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18016187ff3d1801618 /* src/GuMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.h"; path = "../../GeomUtils/src/GuMTD.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18016807ff3d1801680 /* src/GuMeshFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.h"; path = "../../GeomUtils/src/GuMeshFactory.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18016e87ff3d18016e8 /* src/GuOverlapTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.h"; path = "../../GeomUtils/src/GuOverlapTests.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18017507ff3d1801750 /* src/GuSerialize.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.h"; path = "../../GeomUtils/src/GuSerialize.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18017b87ff3d18017b8 /* src/GuSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSphere.h"; path = "../../GeomUtils/src/GuSphere.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18018207ff3d1801820 /* src/GuSweepMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.h"; path = "../../GeomUtils/src/GuSweepMTD.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18018887ff3d1801888 /* src/GuSweepSharedTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.h"; path = "../../GeomUtils/src/GuSweepSharedTests.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18018f07ff3d18018f0 /* src/GuSweepTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.h"; path = "../../GeomUtils/src/GuSweepTests.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18019587ff3d1801958 /* src/contact/GuContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactMethodImpl.h"; path = "../../GeomUtils/src/contact/GuContactMethodImpl.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18019c07ff3d18019c0 /* src/contact/GuContactPolygonPolygon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.h"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.h"; sourceTree = SOURCE_ROOT; };
- FFFDd1801a287ff3d1801a28 /* src/contact/GuFeatureCode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.h"; path = "../../GeomUtils/src/contact/GuFeatureCode.h"; sourceTree = SOURCE_ROOT; };
- FFFDd1801a907ff3d1801a90 /* src/contact/GuLegacyTraceLineCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyTraceLineCallback.h"; path = "../../GeomUtils/src/contact/GuLegacyTraceLineCallback.h"; sourceTree = SOURCE_ROOT; };
- FFFDd1801af87ff3d1801af8 /* src/common/GuBarycentricCoordinates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.h"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.h"; sourceTree = SOURCE_ROOT; };
- FFFDd1801b607ff3d1801b60 /* src/common/GuBoxConversion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBoxConversion.h"; path = "../../GeomUtils/src/common/GuBoxConversion.h"; sourceTree = SOURCE_ROOT; };
- FFFDd1801bc87ff3d1801bc8 /* src/common/GuEdgeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeCache.h"; path = "../../GeomUtils/src/common/GuEdgeCache.h"; sourceTree = SOURCE_ROOT; };
- FFFDd1801c307ff3d1801c30 /* src/common/GuEdgeListData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeListData.h"; path = "../../GeomUtils/src/common/GuEdgeListData.h"; sourceTree = SOURCE_ROOT; };
- FFFDd1801c987ff3d1801c98 /* src/common/GuSeparatingAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.h"; path = "../../GeomUtils/src/common/GuSeparatingAxes.h"; sourceTree = SOURCE_ROOT; };
- FFFDd1801d007ff3d1801d00 /* src/convex/GuBigConvexData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.h"; path = "../../GeomUtils/src/convex/GuBigConvexData.h"; sourceTree = SOURCE_ROOT; };
- FFFDd1801d687ff3d1801d68 /* src/convex/GuBigConvexData2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData2.h"; path = "../../GeomUtils/src/convex/GuBigConvexData2.h"; sourceTree = SOURCE_ROOT; };
- FFFDd1801dd07ff3d1801dd0 /* src/convex/GuConvexEdgeFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexEdgeFlags.h"; path = "../../GeomUtils/src/convex/GuConvexEdgeFlags.h"; sourceTree = SOURCE_ROOT; };
- FFFDd1801e387ff3d1801e38 /* src/convex/GuConvexHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.h"; path = "../../GeomUtils/src/convex/GuConvexHelper.h"; sourceTree = SOURCE_ROOT; };
- FFFDd1801ea07ff3d1801ea0 /* src/convex/GuConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.h"; path = "../../GeomUtils/src/convex/GuConvexMesh.h"; sourceTree = SOURCE_ROOT; };
- FFFDd1801f087ff3d1801f08 /* src/convex/GuConvexMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMeshData.h"; path = "../../GeomUtils/src/convex/GuConvexMeshData.h"; sourceTree = SOURCE_ROOT; };
- FFFDd1801f707ff3d1801f70 /* src/convex/GuConvexSupportTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.h"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.h"; sourceTree = SOURCE_ROOT; };
- FFFDd1801fd87ff3d1801fd8 /* src/convex/GuConvexUtilsInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.h"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18020407ff3d1802040 /* src/convex/GuCubeIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuCubeIndex.h"; path = "../../GeomUtils/src/convex/GuCubeIndex.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18020a87ff3d18020a8 /* src/convex/GuHillClimbing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.h"; path = "../../GeomUtils/src/convex/GuHillClimbing.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18021107ff3d1802110 /* src/convex/GuShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.h"; path = "../../GeomUtils/src/convex/GuShapeConvex.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18021787ff3d1802178 /* src/distance/GuDistancePointBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.h"; path = "../../GeomUtils/src/distance/GuDistancePointBox.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18021e07ff3d18021e0 /* src/distance/GuDistancePointSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointSegment.h"; path = "../../GeomUtils/src/distance/GuDistancePointSegment.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18022487ff3d1802248 /* src/distance/GuDistancePointTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18022b07ff3d18022b0 /* src/distance/GuDistancePointTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangleSIMD.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18023187ff3d1802318 /* src/distance/GuDistanceSegmentSegmentSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegmentSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegmentSIMD.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18023807ff3d1802380 /* src/distance/GuDistanceSegmentTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18023e87ff3d18023e8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangleSIMD.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18024507ff3d1802450 /* src/sweep/GuSweepBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18024b87ff3d18024b8 /* src/sweep/GuSweepBoxSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18025207ff3d1802520 /* 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; };
- FFFDd18025887ff3d1802588 /* 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; };
- FFFDd18025f07ff3d18025f0 /* src/sweep/GuSweepCapsuleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18026587ff3d1802658 /* src/sweep/GuSweepCapsuleCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18026c07ff3d18026c0 /* src/sweep/GuSweepCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18027287ff3d1802728 /* src/sweep/GuSweepSphereCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18027907ff3d1802790 /* src/sweep/GuSweepSphereSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18027f87ff3d18027f8 /* src/sweep/GuSweepSphereTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18028607ff3d1802860 /* src/sweep/GuSweepTriangleUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.h"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18028c87ff3d18028c8 /* src/gjk/GuEPA.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.h"; path = "../../GeomUtils/src/gjk/GuEPA.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18029307ff3d1802930 /* src/gjk/GuEPAFacet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPAFacet.h"; path = "../../GeomUtils/src/gjk/GuEPAFacet.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18029987ff3d1802998 /* src/gjk/GuGJK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJK.h"; path = "../../GeomUtils/src/gjk/GuGJK.h"; sourceTree = SOURCE_ROOT; };
- FFFDd1802a007ff3d1802a00 /* src/gjk/GuGJKPenetration.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKPenetration.h"; path = "../../GeomUtils/src/gjk/GuGJKPenetration.h"; sourceTree = SOURCE_ROOT; };
- FFFDd1802a687ff3d1802a68 /* src/gjk/GuGJKRaycast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKRaycast.h"; path = "../../GeomUtils/src/gjk/GuGJKRaycast.h"; sourceTree = SOURCE_ROOT; };
- FFFDd1802ad07ff3d1802ad0 /* src/gjk/GuGJKSimplex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.h"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.h"; sourceTree = SOURCE_ROOT; };
- FFFDd1802b387ff3d1802b38 /* src/gjk/GuGJKTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.h"; path = "../../GeomUtils/src/gjk/GuGJKTest.h"; sourceTree = SOURCE_ROOT; };
- FFFDd1802ba07ff3d1802ba0 /* src/gjk/GuGJKType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKType.h"; path = "../../GeomUtils/src/gjk/GuGJKType.h"; sourceTree = SOURCE_ROOT; };
- FFFDd1802c087ff3d1802c08 /* src/gjk/GuGJKUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKUtil.h"; path = "../../GeomUtils/src/gjk/GuGJKUtil.h"; sourceTree = SOURCE_ROOT; };
- FFFDd1802c707ff3d1802c70 /* src/gjk/GuVecBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecBox.h"; path = "../../GeomUtils/src/gjk/GuVecBox.h"; sourceTree = SOURCE_ROOT; };
- FFFDd1802cd87ff3d1802cd8 /* src/gjk/GuVecCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecCapsule.h"; path = "../../GeomUtils/src/gjk/GuVecCapsule.h"; sourceTree = SOURCE_ROOT; };
- FFFDd1802d407ff3d1802d40 /* src/gjk/GuVecConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvex.h"; path = "../../GeomUtils/src/gjk/GuVecConvex.h"; sourceTree = SOURCE_ROOT; };
- FFFDd1802da87ff3d1802da8 /* src/gjk/GuVecConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHull.h"; sourceTree = SOURCE_ROOT; };
- FFFDd1802e107ff3d1802e10 /* src/gjk/GuVecConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; };
- FFFDd1802e787ff3d1802e78 /* src/gjk/GuVecPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecPlane.h"; path = "../../GeomUtils/src/gjk/GuVecPlane.h"; sourceTree = SOURCE_ROOT; };
- FFFDd1802ee07ff3d1802ee0 /* src/gjk/GuVecShrunkBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkBox.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkBox.h"; sourceTree = SOURCE_ROOT; };
- FFFDd1802f487ff3d1802f48 /* src/gjk/GuVecShrunkConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHull.h"; sourceTree = SOURCE_ROOT; };
- FFFDd1802fb07ff3d1802fb0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18030187ff3d1803018 /* src/gjk/GuVecSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecSphere.h"; path = "../../GeomUtils/src/gjk/GuVecSphere.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18030807ff3d1803080 /* src/gjk/GuVecTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecTriangle.h"; path = "../../GeomUtils/src/gjk/GuVecTriangle.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18030e87ff3d18030e8 /* src/intersection/GuIntersectionCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18031507ff3d1803150 /* src/intersection/GuIntersectionEdgeEdge.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.h"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18031b87ff3d18031b8 /* src/intersection/GuIntersectionRay.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRay.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRay.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18032207ff3d1803220 /* src/intersection/GuIntersectionRayBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18032887ff3d1803288 /* src/intersection/GuIntersectionRayBoxSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBoxSIMD.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBoxSIMD.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18032f07ff3d18032f0 /* src/intersection/GuIntersectionRayCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18033587ff3d1803358 /* src/intersection/GuIntersectionRayPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayPlane.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayPlane.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18033c07ff3d18033c0 /* src/intersection/GuIntersectionRaySphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18034287ff3d1803428 /* src/intersection/GuIntersectionRayTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayTriangle.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18034907ff3d1803490 /* src/intersection/GuIntersectionSphereBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18034f87ff3d18034f8 /* src/mesh/GuBV32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.h"; path = "../../GeomUtils/src/mesh/GuBV32.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18035607ff3d1803560 /* src/mesh/GuBV32Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.h"; path = "../../GeomUtils/src/mesh/GuBV32Build.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18035c87ff3d18035c8 /* src/mesh/GuBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.h"; path = "../../GeomUtils/src/mesh/GuBV4.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18036307ff3d1803630 /* src/mesh/GuBV4Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.h"; path = "../../GeomUtils/src/mesh/GuBV4Build.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18036987ff3d1803698 /* src/mesh/GuBV4Settings.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Settings.h"; path = "../../GeomUtils/src/mesh/GuBV4Settings.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18037007ff3d1803700 /* 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; };
- FFFDd18037687ff3d1803768 /* 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; };
- FFFDd18037d07ff3d18037d0 /* 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; };
- FFFDd18038387ff3d1803838 /* 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; };
- FFFDd18038a07ff3d18038a0 /* 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; };
- FFFDd18039087ff3d1803908 /* 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; };
- FFFDd18039707ff3d1803970 /* 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; };
- FFFDd18039d87ff3d18039d8 /* 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; };
- FFFDd1803a407ff3d1803a40 /* 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; };
- FFFDd1803aa87ff3d1803aa8 /* 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; };
- FFFDd1803b107ff3d1803b10 /* 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; };
- FFFDd1803b787ff3d1803b78 /* 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; };
- FFFDd1803be07ff3d1803be0 /* 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; };
- FFFDd1803c487ff3d1803c48 /* 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; };
- FFFDd1803cb07ff3d1803cb0 /* 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; };
- FFFDd1803d187ff3d1803d18 /* 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; };
- FFFDd1803d807ff3d1803d80 /* 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; };
- FFFDd1803de87ff3d1803de8 /* 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; };
- FFFDd1803e507ff3d1803e50 /* 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; };
- FFFDd1803eb87ff3d1803eb8 /* 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; };
- FFFDd1803f207ff3d1803f20 /* src/mesh/GuBVConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBVConstants.h"; path = "../../GeomUtils/src/mesh/GuBVConstants.h"; sourceTree = SOURCE_ROOT; };
- FFFDd1803f887ff3d1803f88 /* src/mesh/GuMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshData.h"; path = "../../GeomUtils/src/mesh/GuMeshData.h"; sourceTree = SOURCE_ROOT; };
- FFFDd1803ff07ff3d1803ff0 /* src/mesh/GuMidphaseInterface.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseInterface.h"; path = "../../GeomUtils/src/mesh/GuMidphaseInterface.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18040587ff3d1804058 /* src/mesh/GuRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.h"; path = "../../GeomUtils/src/mesh/GuRTree.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18040c07ff3d18040c0 /* src/mesh/GuSweepConvexTri.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepConvexTri.h"; path = "../../GeomUtils/src/mesh/GuSweepConvexTri.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18041287ff3d1804128 /* src/mesh/GuSweepMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepMesh.h"; path = "../../GeomUtils/src/mesh/GuSweepMesh.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18041907ff3d1804190 /* src/mesh/GuTriangle32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangle32.h"; path = "../../GeomUtils/src/mesh/GuTriangle32.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18041f87ff3d18041f8 /* src/mesh/GuTriangleCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleCache.h"; path = "../../GeomUtils/src/mesh/GuTriangleCache.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18042607ff3d1804260 /* src/mesh/GuTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.h"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18042c87ff3d18042c8 /* src/mesh/GuTriangleMeshBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18043307ff3d1804330 /* src/mesh/GuTriangleMeshRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18043987ff3d1804398 /* src/mesh/GuTriangleVertexPointers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleVertexPointers.h"; path = "../../GeomUtils/src/mesh/GuTriangleVertexPointers.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18044007ff3d1804400 /* src/hf/GuEntityReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuEntityReport.h"; path = "../../GeomUtils/src/hf/GuEntityReport.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18044687ff3d1804468 /* src/hf/GuHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.h"; path = "../../GeomUtils/src/hf/GuHeightField.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18044d07ff3d18044d0 /* src/hf/GuHeightFieldData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldData.h"; path = "../../GeomUtils/src/hf/GuHeightFieldData.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18045387ff3d1804538 /* src/hf/GuHeightFieldUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.h"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18045a07ff3d18045a0 /* src/pcm/GuPCMContactConvexCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.h"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18046087ff3d1804608 /* src/pcm/GuPCMContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGen.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18046707ff3d1804670 /* src/pcm/GuPCMContactGenUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenUtil.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGenUtil.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18046d87ff3d18046d8 /* src/pcm/GuPCMContactMeshCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactMeshCallback.h"; path = "../../GeomUtils/src/pcm/GuPCMContactMeshCallback.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18047407ff3d1804740 /* src/pcm/GuPCMShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.h"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18047a87ff3d18047a8 /* src/pcm/GuPCMTriangleContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18048107ff3d1804810 /* src/pcm/GuPersistentContactManifold.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.h"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18048787ff3d1804878 /* src/ccd/GuCCDSweepConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.h"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.h"; sourceTree = SOURCE_ROOT; };
- FFFDd18048e07ff3d18048e0 /* src/GuBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.cpp"; path = "../../GeomUtils/src/GuBounds.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18049487ff3d1804948 /* src/GuBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBox.cpp"; path = "../../GeomUtils/src/GuBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18049b07ff3d18049b0 /* src/GuCCTSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCCTSweepTests.cpp"; path = "../../GeomUtils/src/GuCCTSweepTests.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd1804a187ff3d1804a18 /* src/GuCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.cpp"; path = "../../GeomUtils/src/GuCapsule.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd1804a807ff3d1804a80 /* src/GuGeometryQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryQuery.cpp"; path = "../../GeomUtils/src/GuGeometryQuery.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd1804ae87ff3d1804ae8 /* src/GuGeometryUnion.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.cpp"; path = "../../GeomUtils/src/GuGeometryUnion.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd1804b507ff3d1804b50 /* src/GuInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.cpp"; path = "../../GeomUtils/src/GuInternal.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd1804bb87ff3d1804bb8 /* src/GuMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.cpp"; path = "../../GeomUtils/src/GuMTD.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd1804c207ff3d1804c20 /* src/GuMeshFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.cpp"; path = "../../GeomUtils/src/GuMeshFactory.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd1804c887ff3d1804c88 /* src/GuMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMetaData.cpp"; path = "../../GeomUtils/src/GuMetaData.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd1804cf07ff3d1804cf0 /* src/GuOverlapTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.cpp"; path = "../../GeomUtils/src/GuOverlapTests.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd1804d587ff3d1804d58 /* src/GuRaycastTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuRaycastTests.cpp"; path = "../../GeomUtils/src/GuRaycastTests.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd1804dc07ff3d1804dc0 /* src/GuSerialize.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.cpp"; path = "../../GeomUtils/src/GuSerialize.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd1804e287ff3d1804e28 /* src/GuSweepMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.cpp"; path = "../../GeomUtils/src/GuSweepMTD.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd1804e907ff3d1804e90 /* src/GuSweepSharedTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.cpp"; path = "../../GeomUtils/src/GuSweepSharedTests.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd1804ef87ff3d1804ef8 /* src/GuSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.cpp"; path = "../../GeomUtils/src/GuSweepTests.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd1804f607ff3d1804f60 /* src/contact/GuContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactBoxBox.cpp"; path = "../../GeomUtils/src/contact/GuContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd1804fc87ff3d1804fc8 /* src/contact/GuContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleBox.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18050307ff3d1805030 /* src/contact/GuContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18050987ff3d1805098 /* src/contact/GuContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18051007ff3d1805100 /* src/contact/GuContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18051687ff3d1805168 /* src/contact/GuContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18051d07ff3d18051d0 /* src/contact/GuContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18052387ff3d1805238 /* src/contact/GuContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneBox.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18052a07ff3d18052a0 /* src/contact/GuContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18053087ff3d1805308 /* src/contact/GuContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18053707ff3d1805370 /* src/contact/GuContactPolygonPolygon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.cpp"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18053d87ff3d18053d8 /* src/contact/GuContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereBox.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18054407ff3d1805440 /* src/contact/GuContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18054a87ff3d18054a8 /* src/contact/GuContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18055107ff3d1805510 /* src/contact/GuContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSpherePlane.cpp"; path = "../../GeomUtils/src/contact/GuContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18055787ff3d1805578 /* src/contact/GuContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereSphere.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18055e07ff3d18055e0 /* src/contact/GuFeatureCode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.cpp"; path = "../../GeomUtils/src/contact/GuFeatureCode.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18056487ff3d1805648 /* src/contact/GuLegacyContactBoxHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactBoxHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactBoxHeightField.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18056b07ff3d18056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18057187ff3d1805718 /* src/contact/GuLegacyContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactConvexHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18057807ff3d1805780 /* src/contact/GuLegacyContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactSphereHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18057e87ff3d18057e8 /* src/common/GuBarycentricCoordinates.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.cpp"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18058507ff3d1805850 /* src/common/GuSeparatingAxes.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.cpp"; path = "../../GeomUtils/src/common/GuSeparatingAxes.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18058b87ff3d18058b8 /* src/convex/GuBigConvexData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.cpp"; path = "../../GeomUtils/src/convex/GuBigConvexData.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18059207ff3d1805920 /* src/convex/GuConvexHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.cpp"; path = "../../GeomUtils/src/convex/GuConvexHelper.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18059887ff3d1805988 /* src/convex/GuConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.cpp"; path = "../../GeomUtils/src/convex/GuConvexMesh.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18059f07ff3d18059f0 /* src/convex/GuConvexSupportTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.cpp"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd1805a587ff3d1805a58 /* src/convex/GuConvexUtilsInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.cpp"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd1805ac07ff3d1805ac0 /* src/convex/GuHillClimbing.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.cpp"; path = "../../GeomUtils/src/convex/GuHillClimbing.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd1805b287ff3d1805b28 /* src/convex/GuShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.cpp"; path = "../../GeomUtils/src/convex/GuShapeConvex.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd1805b907ff3d1805b90 /* src/distance/GuDistancePointBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd1805bf87ff3d1805bf8 /* src/distance/GuDistancePointTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd1805c607ff3d1805c60 /* src/distance/GuDistanceSegmentBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentBox.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd1805cc87ff3d1805cc8 /* src/distance/GuDistanceSegmentSegment.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegment.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegment.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd1805d307ff3d1805d30 /* src/distance/GuDistanceSegmentTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd1805d987ff3d1805d98 /* src/sweep/GuSweepBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd1805e007ff3d1805e00 /* src/sweep/GuSweepBoxSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd1805e687ff3d1805e68 /* 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; };
- FFFDd1805ed07ff3d1805ed0 /* 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; };
- FFFDd1805f387ff3d1805f38 /* src/sweep/GuSweepCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd1805fa07ff3d1805fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18060087ff3d1806008 /* src/sweep/GuSweepCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18060707ff3d1806070 /* src/sweep/GuSweepSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18060d87ff3d18060d8 /* src/sweep/GuSweepSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18061407ff3d1806140 /* src/sweep/GuSweepSphereTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18061a87ff3d18061a8 /* src/sweep/GuSweepTriangleUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.cpp"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18062107ff3d1806210 /* src/gjk/GuEPA.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.cpp"; path = "../../GeomUtils/src/gjk/GuEPA.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18062787ff3d1806278 /* src/gjk/GuGJKSimplex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.cpp"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18062e07ff3d18062e0 /* src/gjk/GuGJKTest.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.cpp"; path = "../../GeomUtils/src/gjk/GuGJKTest.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18063487ff3d1806348 /* src/intersection/GuIntersectionBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionBoxBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionBoxBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18063b07ff3d18063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18064187ff3d1806418 /* src/intersection/GuIntersectionEdgeEdge.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18064807ff3d1806480 /* src/intersection/GuIntersectionRayBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18064e87ff3d18064e8 /* src/intersection/GuIntersectionRayCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18065507ff3d1806550 /* src/intersection/GuIntersectionRaySphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18065b87ff3d18065b8 /* src/intersection/GuIntersectionSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18066207ff3d1806620 /* src/intersection/GuIntersectionTriangleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionTriangleBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionTriangleBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18066887ff3d1806688 /* src/mesh/GuBV32.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.cpp"; path = "../../GeomUtils/src/mesh/GuBV32.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18066f07ff3d18066f0 /* src/mesh/GuBV32Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV32Build.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18067587ff3d1806758 /* src/mesh/GuBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.cpp"; path = "../../GeomUtils/src/mesh/GuBV4.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18067c07ff3d18067c0 /* src/mesh/GuBV4Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV4Build.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18068287ff3d1806828 /* 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; };
- FFFDd18068907ff3d1806890 /* 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; };
- FFFDd18068f87ff3d18068f8 /* 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; };
- FFFDd18069607ff3d1806960 /* 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; };
- FFFDd18069c87ff3d18069c8 /* 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; };
- FFFDd1806a307ff3d1806a30 /* 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; };
- FFFDd1806a987ff3d1806a98 /* 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; };
- FFFDd1806b007ff3d1806b00 /* 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; };
- FFFDd1806b687ff3d1806b68 /* src/mesh/GuMeshQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshQuery.cpp"; path = "../../GeomUtils/src/mesh/GuMeshQuery.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd1806bd07ff3d1806bd0 /* src/mesh/GuMidphaseBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseBV4.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseBV4.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd1806c387ff3d1806c38 /* src/mesh/GuMidphaseRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseRTree.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseRTree.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd1806ca07ff3d1806ca0 /* src/mesh/GuOverlapTestsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuOverlapTestsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuOverlapTestsMesh.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd1806d087ff3d1806d08 /* src/mesh/GuRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.cpp"; path = "../../GeomUtils/src/mesh/GuRTree.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd1806d707ff3d1806d70 /* src/mesh/GuRTreeQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTreeQueries.cpp"; path = "../../GeomUtils/src/mesh/GuRTreeQueries.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd1806dd87ff3d1806dd8 /* src/mesh/GuSweepsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuSweepsMesh.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd1806e407ff3d1806e40 /* src/mesh/GuTriangleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd1806ea87ff3d1806ea8 /* src/mesh/GuTriangleMeshBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd1806f107ff3d1806f10 /* src/mesh/GuTriangleMeshRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd1806f787ff3d1806f78 /* src/hf/GuHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.cpp"; path = "../../GeomUtils/src/hf/GuHeightField.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd1806fe07ff3d1806fe0 /* src/hf/GuHeightFieldUtil.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.cpp"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18070487ff3d1807048 /* src/hf/GuOverlapTestsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuOverlapTestsHF.cpp"; path = "../../GeomUtils/src/hf/GuOverlapTestsHF.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18070b07ff3d18070b0 /* src/hf/GuSweepsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuSweepsHF.cpp"; path = "../../GeomUtils/src/hf/GuSweepsHF.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18071187ff3d1807118 /* src/pcm/GuPCMContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18071807ff3d1807180 /* src/pcm/GuPCMContactBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxConvex.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18071e87ff3d18071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18072507ff3d1807250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18072b87ff3d18072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18073207ff3d1807320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18073887ff3d1807388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18073f07ff3d18073f0 /* src/pcm/GuPCMContactConvexCommon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18074587ff3d1807458 /* src/pcm/GuPCMContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18074c07ff3d18074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18075287ff3d1807528 /* src/pcm/GuPCMContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18075907ff3d1807590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenBoxConvex.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18075f87ff3d18075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18076607ff3d1807660 /* src/pcm/GuPCMContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18076c87ff3d18076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18077307ff3d1807730 /* src/pcm/GuPCMContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18077987ff3d1807798 /* src/pcm/GuPCMContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18078007ff3d1807800 /* src/pcm/GuPCMContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18078687ff3d1807868 /* src/pcm/GuPCMContactSphereConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereConvex.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18078d07ff3d18078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18079387ff3d1807938 /* src/pcm/GuPCMContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18079a07ff3d18079a0 /* src/pcm/GuPCMContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSpherePlane.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd1807a087ff3d1807a08 /* src/pcm/GuPCMContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereSphere.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd1807a707ff3d1807a70 /* src/pcm/GuPCMShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd1807ad87ff3d1807ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.cpp"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd1807b407ff3d1807b40 /* src/pcm/GuPersistentContactManifold.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.cpp"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd1807ba87ff3d1807ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.cpp"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd1807c107ff3d1807c10 /* src/ccd/GuCCDSweepPrimitives.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepPrimitives.cpp"; path = "../../GeomUtils/src/ccd/GuCCDSweepPrimitives.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c99d3f07f8d3c99d3f0 /* PhysXCommon */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCommon"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFD3b8112007f8d3b811200 /* common/PxBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxBase.h"; path = "../../../Include/common/PxBase.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8112687f8d3b811268 /* common/PxCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCollection.h"; path = "../../../Include/common/PxCollection.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8112d07f8d3b8112d0 /* common/PxCoreUtilityTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCoreUtilityTypes.h"; path = "../../../Include/common/PxCoreUtilityTypes.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8113387f8d3b811338 /* common/PxMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaData.h"; path = "../../../Include/common/PxMetaData.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8113a07f8d3b8113a0 /* common/PxMetaDataFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaDataFlags.h"; path = "../../../Include/common/PxMetaDataFlags.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8114087f8d3b811408 /* common/PxPhysXCommonConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysXCommonConfig.h"; path = "../../../Include/common/PxPhysXCommonConfig.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8114707f8d3b811470 /* common/PxPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysicsInsertionCallback.h"; path = "../../../Include/common/PxPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8114d87f8d3b8114d8 /* common/PxRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxRenderBuffer.h"; path = "../../../Include/common/PxRenderBuffer.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8115407f8d3b811540 /* common/PxSerialFramework.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerialFramework.h"; path = "../../../Include/common/PxSerialFramework.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8115a87f8d3b8115a8 /* common/PxSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerializer.h"; path = "../../../Include/common/PxSerializer.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8116107f8d3b811610 /* common/PxStringTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxStringTable.h"; path = "../../../Include/common/PxStringTable.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8116787f8d3b811678 /* common/PxTolerancesScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTolerancesScale.h"; path = "../../../Include/common/PxTolerancesScale.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8116e07f8d3b8116e0 /* common/PxTypeInfo.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTypeInfo.h"; path = "../../../Include/common/PxTypeInfo.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8117487f8d3b811748 /* geometry/PxBoxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxBoxGeometry.h"; path = "../../../Include/geometry/PxBoxGeometry.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8117b07f8d3b8117b0 /* geometry/PxCapsuleGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxCapsuleGeometry.h"; path = "../../../Include/geometry/PxCapsuleGeometry.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8118187f8d3b811818 /* geometry/PxConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMesh.h"; path = "../../../Include/geometry/PxConvexMesh.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8118807f8d3b811880 /* geometry/PxConvexMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMeshGeometry.h"; path = "../../../Include/geometry/PxConvexMeshGeometry.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8118e87f8d3b8118e8 /* geometry/PxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometry.h"; path = "../../../Include/geometry/PxGeometry.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8119507f8d3b811950 /* geometry/PxGeometryHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryHelpers.h"; path = "../../../Include/geometry/PxGeometryHelpers.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8119b87f8d3b8119b8 /* geometry/PxGeometryQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryQuery.h"; path = "../../../Include/geometry/PxGeometryQuery.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b811a207f8d3b811a20 /* geometry/PxHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightField.h"; path = "../../../Include/geometry/PxHeightField.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b811a887f8d3b811a88 /* geometry/PxHeightFieldDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldDesc.h"; path = "../../../Include/geometry/PxHeightFieldDesc.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b811af07f8d3b811af0 /* geometry/PxHeightFieldFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldFlag.h"; path = "../../../Include/geometry/PxHeightFieldFlag.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b811b587f8d3b811b58 /* geometry/PxHeightFieldGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldGeometry.h"; path = "../../../Include/geometry/PxHeightFieldGeometry.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b811bc07f8d3b811bc0 /* geometry/PxHeightFieldSample.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldSample.h"; path = "../../../Include/geometry/PxHeightFieldSample.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b811c287f8d3b811c28 /* geometry/PxMeshQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshQuery.h"; path = "../../../Include/geometry/PxMeshQuery.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b811c907f8d3b811c90 /* geometry/PxMeshScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshScale.h"; path = "../../../Include/geometry/PxMeshScale.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b811cf87f8d3b811cf8 /* geometry/PxPlaneGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxPlaneGeometry.h"; path = "../../../Include/geometry/PxPlaneGeometry.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b811d607f8d3b811d60 /* geometry/PxSimpleTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSimpleTriangleMesh.h"; path = "../../../Include/geometry/PxSimpleTriangleMesh.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b811dc87f8d3b811dc8 /* geometry/PxSphereGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSphereGeometry.h"; path = "../../../Include/geometry/PxSphereGeometry.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b811e307f8d3b811e30 /* geometry/PxTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangle.h"; path = "../../../Include/geometry/PxTriangle.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b811e987f8d3b811e98 /* geometry/PxTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMesh.h"; path = "../../../Include/geometry/PxTriangleMesh.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b811f007f8d3b811f00 /* geometry/PxTriangleMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMeshGeometry.h"; path = "../../../Include/geometry/PxTriangleMeshGeometry.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1a82007f8d3c1a8200 /* src/CmBoxPruning.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.cpp"; path = "../../Common/src/CmBoxPruning.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1a82687f8d3c1a8268 /* src/CmCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.cpp"; path = "../../Common/src/CmCollection.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1a82d07f8d3c1a82d0 /* src/CmMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMathUtils.cpp"; path = "../../Common/src/CmMathUtils.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1a83387f8d3c1a8338 /* src/CmPtrTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.cpp"; path = "../../Common/src/CmPtrTable.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1a83a07f8d3c1a83a0 /* src/CmRadixSort.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.cpp"; path = "../../Common/src/CmRadixSort.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1a84087f8d3c1a8408 /* src/CmRadixSortBuffered.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.cpp"; path = "../../Common/src/CmRadixSortBuffered.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1a84707f8d3c1a8470 /* src/CmRenderOutput.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.cpp"; path = "../../Common/src/CmRenderOutput.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1a84d87f8d3c1a84d8 /* src/CmVisualization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.cpp"; path = "../../Common/src/CmVisualization.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1a85407f8d3c1a8540 /* src/CmBitMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBitMap.h"; path = "../../Common/src/CmBitMap.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1a85a87f8d3c1a85a8 /* src/CmBoxPruning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.h"; path = "../../Common/src/CmBoxPruning.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1a86107f8d3c1a8610 /* src/CmCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.h"; path = "../../Common/src/CmCollection.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1a86787f8d3c1a8678 /* src/CmConeLimitHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmConeLimitHelper.h"; path = "../../Common/src/CmConeLimitHelper.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1a86e07f8d3c1a86e0 /* src/CmFlushPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmFlushPool.h"; path = "../../Common/src/CmFlushPool.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1a87487f8d3c1a8748 /* src/CmIDPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIDPool.h"; path = "../../Common/src/CmIDPool.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1a87b07f8d3c1a87b0 /* src/CmIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIO.h"; path = "../../Common/src/CmIO.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1a88187f8d3c1a8818 /* src/CmMatrix34.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMatrix34.h"; path = "../../Common/src/CmMatrix34.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1a88807f8d3c1a8880 /* src/CmPhysXCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPhysXCommon.h"; path = "../../Common/src/CmPhysXCommon.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1a88e87f8d3c1a88e8 /* src/CmPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPool.h"; path = "../../Common/src/CmPool.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1a89507f8d3c1a8950 /* src/CmPreallocatingPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPreallocatingPool.h"; path = "../../Common/src/CmPreallocatingPool.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1a89b87f8d3c1a89b8 /* src/CmPriorityQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPriorityQueue.h"; path = "../../Common/src/CmPriorityQueue.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1a8a207f8d3c1a8a20 /* src/CmPtrTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.h"; path = "../../Common/src/CmPtrTable.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1a8a887f8d3c1a8a88 /* src/CmQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmQueue.h"; path = "../../Common/src/CmQueue.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1a8af07f8d3c1a8af0 /* src/CmRadixSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.h"; path = "../../Common/src/CmRadixSort.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1a8b587f8d3c1a8b58 /* src/CmRadixSortBuffered.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.h"; path = "../../Common/src/CmRadixSortBuffered.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1a8bc07f8d3c1a8bc0 /* src/CmRefCountable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRefCountable.h"; path = "../../Common/src/CmRefCountable.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1a8c287f8d3c1a8c28 /* src/CmRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderBuffer.h"; path = "../../Common/src/CmRenderBuffer.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1a8c907f8d3c1a8c90 /* src/CmRenderOutput.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.h"; path = "../../Common/src/CmRenderOutput.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1a8cf87f8d3c1a8cf8 /* src/CmScaling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmScaling.h"; path = "../../Common/src/CmScaling.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1a8d607f8d3c1a8d60 /* src/CmSpatialVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmSpatialVector.h"; path = "../../Common/src/CmSpatialVector.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1a8dc87f8d3c1a8dc8 /* src/CmTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTask.h"; path = "../../Common/src/CmTask.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1a8e307f8d3c1a8e30 /* src/CmTaskPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTaskPool.h"; path = "../../Common/src/CmTaskPool.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1a8e987f8d3c1a8e98 /* src/CmTmpMem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTmpMem.h"; path = "../../Common/src/CmTmpMem.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1a8f007f8d3c1a8f00 /* src/CmTransformUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTransformUtils.h"; path = "../../Common/src/CmTransformUtils.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1a8f687f8d3c1a8f68 /* src/CmUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmUtils.h"; path = "../../Common/src/CmUtils.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1a8fd07f8d3c1a8fd0 /* src/CmVisualization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.h"; path = "../../Common/src/CmVisualization.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8042007f8d3b804200 /* headers/GuAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuAxes.h"; path = "../../GeomUtils/headers/GuAxes.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8042687f8d3b804268 /* headers/GuBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuBox.h"; path = "../../GeomUtils/headers/GuBox.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8042d07f8d3b8042d0 /* headers/GuDistanceSegmentBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentBox.h"; path = "../../GeomUtils/headers/GuDistanceSegmentBox.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8043387f8d3b804338 /* headers/GuDistanceSegmentSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentSegment.h"; path = "../../GeomUtils/headers/GuDistanceSegmentSegment.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8043a07f8d3b8043a0 /* headers/GuIntersectionBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionBoxBox.h"; path = "../../GeomUtils/headers/GuIntersectionBoxBox.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8044087f8d3b804408 /* headers/GuIntersectionTriangleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionTriangleBox.h"; path = "../../GeomUtils/headers/GuIntersectionTriangleBox.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8044707f8d3b804470 /* headers/GuRaycastTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuRaycastTests.h"; path = "../../GeomUtils/headers/GuRaycastTests.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8044d87f8d3b8044d8 /* headers/GuSIMDHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSIMDHelpers.h"; path = "../../GeomUtils/headers/GuSIMDHelpers.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8045407f8d3b804540 /* headers/GuSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSegment.h"; path = "../../GeomUtils/headers/GuSegment.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8045a87f8d3b8045a8 /* ../../Include/GeomUtils */= { isa = PBXFileReference; fileEncoding = 4; name = "../../Include/GeomUtils"; path = "../../../Include/GeomUtils"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8046107f8d3b804610 /* src/GuBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.h"; path = "../../GeomUtils/src/GuBounds.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8046787f8d3b804678 /* src/GuCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.h"; path = "../../GeomUtils/src/GuCapsule.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8046e07f8d3b8046e0 /* src/GuCenterExtents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCenterExtents.h"; path = "../../GeomUtils/src/GuCenterExtents.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8047487f8d3b804748 /* src/GuGeometryUnion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.h"; path = "../../GeomUtils/src/GuGeometryUnion.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8047b07f8d3b8047b0 /* src/GuInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.h"; path = "../../GeomUtils/src/GuInternal.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8048187f8d3b804818 /* src/GuMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.h"; path = "../../GeomUtils/src/GuMTD.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8048807f8d3b804880 /* src/GuMeshFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.h"; path = "../../GeomUtils/src/GuMeshFactory.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8048e87f8d3b8048e8 /* src/GuOverlapTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.h"; path = "../../GeomUtils/src/GuOverlapTests.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8049507f8d3b804950 /* src/GuSerialize.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.h"; path = "../../GeomUtils/src/GuSerialize.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8049b87f8d3b8049b8 /* src/GuSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSphere.h"; path = "../../GeomUtils/src/GuSphere.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b804a207f8d3b804a20 /* src/GuSweepMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.h"; path = "../../GeomUtils/src/GuSweepMTD.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b804a887f8d3b804a88 /* src/GuSweepSharedTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.h"; path = "../../GeomUtils/src/GuSweepSharedTests.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b804af07f8d3b804af0 /* src/GuSweepTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.h"; path = "../../GeomUtils/src/GuSweepTests.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b804b587f8d3b804b58 /* src/contact/GuContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactMethodImpl.h"; path = "../../GeomUtils/src/contact/GuContactMethodImpl.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b804bc07f8d3b804bc0 /* src/contact/GuContactPolygonPolygon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.h"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b804c287f8d3b804c28 /* src/contact/GuFeatureCode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.h"; path = "../../GeomUtils/src/contact/GuFeatureCode.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b804c907f8d3b804c90 /* src/contact/GuLegacyTraceLineCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyTraceLineCallback.h"; path = "../../GeomUtils/src/contact/GuLegacyTraceLineCallback.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b804cf87f8d3b804cf8 /* src/common/GuBarycentricCoordinates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.h"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b804d607f8d3b804d60 /* src/common/GuBoxConversion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBoxConversion.h"; path = "../../GeomUtils/src/common/GuBoxConversion.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b804dc87f8d3b804dc8 /* src/common/GuEdgeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeCache.h"; path = "../../GeomUtils/src/common/GuEdgeCache.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b804e307f8d3b804e30 /* src/common/GuEdgeListData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeListData.h"; path = "../../GeomUtils/src/common/GuEdgeListData.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b804e987f8d3b804e98 /* src/common/GuSeparatingAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.h"; path = "../../GeomUtils/src/common/GuSeparatingAxes.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b804f007f8d3b804f00 /* src/convex/GuBigConvexData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.h"; path = "../../GeomUtils/src/convex/GuBigConvexData.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b804f687f8d3b804f68 /* src/convex/GuBigConvexData2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData2.h"; path = "../../GeomUtils/src/convex/GuBigConvexData2.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b804fd07f8d3b804fd0 /* src/convex/GuConvexEdgeFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexEdgeFlags.h"; path = "../../GeomUtils/src/convex/GuConvexEdgeFlags.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8050387f8d3b805038 /* src/convex/GuConvexHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.h"; path = "../../GeomUtils/src/convex/GuConvexHelper.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8050a07f8d3b8050a0 /* src/convex/GuConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.h"; path = "../../GeomUtils/src/convex/GuConvexMesh.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8051087f8d3b805108 /* src/convex/GuConvexMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMeshData.h"; path = "../../GeomUtils/src/convex/GuConvexMeshData.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8051707f8d3b805170 /* src/convex/GuConvexSupportTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.h"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8051d87f8d3b8051d8 /* src/convex/GuConvexUtilsInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.h"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8052407f8d3b805240 /* src/convex/GuCubeIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuCubeIndex.h"; path = "../../GeomUtils/src/convex/GuCubeIndex.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8052a87f8d3b8052a8 /* src/convex/GuHillClimbing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.h"; path = "../../GeomUtils/src/convex/GuHillClimbing.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8053107f8d3b805310 /* src/convex/GuShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.h"; path = "../../GeomUtils/src/convex/GuShapeConvex.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8053787f8d3b805378 /* src/distance/GuDistancePointBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.h"; path = "../../GeomUtils/src/distance/GuDistancePointBox.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8053e07f8d3b8053e0 /* src/distance/GuDistancePointSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointSegment.h"; path = "../../GeomUtils/src/distance/GuDistancePointSegment.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8054487f8d3b805448 /* src/distance/GuDistancePointTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8054b07f8d3b8054b0 /* src/distance/GuDistancePointTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangleSIMD.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8055187f8d3b805518 /* src/distance/GuDistanceSegmentSegmentSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegmentSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegmentSIMD.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8055807f8d3b805580 /* src/distance/GuDistanceSegmentTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8055e87f8d3b8055e8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangleSIMD.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8056507f8d3b805650 /* src/sweep/GuSweepBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8056b87f8d3b8056b8 /* src/sweep/GuSweepBoxSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8057207f8d3b805720 /* 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; };
+ FFFD3b8057887f8d3b805788 /* 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; };
+ FFFD3b8057f07f8d3b8057f0 /* src/sweep/GuSweepCapsuleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8058587f8d3b805858 /* src/sweep/GuSweepCapsuleCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8058c07f8d3b8058c0 /* src/sweep/GuSweepCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8059287f8d3b805928 /* src/sweep/GuSweepSphereCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8059907f8d3b805990 /* src/sweep/GuSweepSphereSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8059f87f8d3b8059f8 /* src/sweep/GuSweepSphereTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b805a607f8d3b805a60 /* src/sweep/GuSweepTriangleUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.h"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b805ac87f8d3b805ac8 /* src/gjk/GuEPA.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.h"; path = "../../GeomUtils/src/gjk/GuEPA.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b805b307f8d3b805b30 /* src/gjk/GuEPAFacet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPAFacet.h"; path = "../../GeomUtils/src/gjk/GuEPAFacet.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b805b987f8d3b805b98 /* src/gjk/GuGJK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJK.h"; path = "../../GeomUtils/src/gjk/GuGJK.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b805c007f8d3b805c00 /* src/gjk/GuGJKPenetration.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKPenetration.h"; path = "../../GeomUtils/src/gjk/GuGJKPenetration.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b805c687f8d3b805c68 /* src/gjk/GuGJKRaycast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKRaycast.h"; path = "../../GeomUtils/src/gjk/GuGJKRaycast.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b805cd07f8d3b805cd0 /* src/gjk/GuGJKSimplex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.h"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b805d387f8d3b805d38 /* src/gjk/GuGJKTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.h"; path = "../../GeomUtils/src/gjk/GuGJKTest.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b805da07f8d3b805da0 /* src/gjk/GuGJKType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKType.h"; path = "../../GeomUtils/src/gjk/GuGJKType.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b805e087f8d3b805e08 /* src/gjk/GuGJKUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKUtil.h"; path = "../../GeomUtils/src/gjk/GuGJKUtil.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b805e707f8d3b805e70 /* src/gjk/GuVecBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecBox.h"; path = "../../GeomUtils/src/gjk/GuVecBox.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b805ed87f8d3b805ed8 /* src/gjk/GuVecCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecCapsule.h"; path = "../../GeomUtils/src/gjk/GuVecCapsule.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b805f407f8d3b805f40 /* src/gjk/GuVecConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvex.h"; path = "../../GeomUtils/src/gjk/GuVecConvex.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b805fa87f8d3b805fa8 /* src/gjk/GuVecConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHull.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8060107f8d3b806010 /* src/gjk/GuVecConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8060787f8d3b806078 /* src/gjk/GuVecPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecPlane.h"; path = "../../GeomUtils/src/gjk/GuVecPlane.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8060e07f8d3b8060e0 /* src/gjk/GuVecShrunkBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkBox.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkBox.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8061487f8d3b806148 /* src/gjk/GuVecShrunkConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHull.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8061b07f8d3b8061b0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8062187f8d3b806218 /* src/gjk/GuVecSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecSphere.h"; path = "../../GeomUtils/src/gjk/GuVecSphere.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8062807f8d3b806280 /* src/gjk/GuVecTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecTriangle.h"; path = "../../GeomUtils/src/gjk/GuVecTriangle.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8062e87f8d3b8062e8 /* src/intersection/GuIntersectionCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8063507f8d3b806350 /* src/intersection/GuIntersectionEdgeEdge.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.h"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8063b87f8d3b8063b8 /* src/intersection/GuIntersectionRay.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRay.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRay.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8064207f8d3b806420 /* src/intersection/GuIntersectionRayBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8064887f8d3b806488 /* src/intersection/GuIntersectionRayBoxSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBoxSIMD.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBoxSIMD.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8064f07f8d3b8064f0 /* src/intersection/GuIntersectionRayCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8065587f8d3b806558 /* src/intersection/GuIntersectionRayPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayPlane.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayPlane.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8065c07f8d3b8065c0 /* src/intersection/GuIntersectionRaySphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8066287f8d3b806628 /* src/intersection/GuIntersectionRayTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayTriangle.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8066907f8d3b806690 /* src/intersection/GuIntersectionSphereBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8066f87f8d3b8066f8 /* src/mesh/GuBV32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.h"; path = "../../GeomUtils/src/mesh/GuBV32.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8067607f8d3b806760 /* src/mesh/GuBV32Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.h"; path = "../../GeomUtils/src/mesh/GuBV32Build.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8067c87f8d3b8067c8 /* src/mesh/GuBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.h"; path = "../../GeomUtils/src/mesh/GuBV4.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8068307f8d3b806830 /* src/mesh/GuBV4Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.h"; path = "../../GeomUtils/src/mesh/GuBV4Build.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8068987f8d3b806898 /* src/mesh/GuBV4Settings.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Settings.h"; path = "../../GeomUtils/src/mesh/GuBV4Settings.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8069007f8d3b806900 /* 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; };
+ FFFD3b8069687f8d3b806968 /* 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; };
+ FFFD3b8069d07f8d3b8069d0 /* 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; };
+ FFFD3b806a387f8d3b806a38 /* 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; };
+ FFFD3b806aa07f8d3b806aa0 /* 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; };
+ FFFD3b806b087f8d3b806b08 /* 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; };
+ FFFD3b806b707f8d3b806b70 /* 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; };
+ FFFD3b806bd87f8d3b806bd8 /* 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; };
+ FFFD3b806c407f8d3b806c40 /* 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; };
+ FFFD3b806ca87f8d3b806ca8 /* 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; };
+ FFFD3b806d107f8d3b806d10 /* 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; };
+ FFFD3b806d787f8d3b806d78 /* 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; };
+ FFFD3b806de07f8d3b806de0 /* 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; };
+ FFFD3b806e487f8d3b806e48 /* 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; };
+ FFFD3b806eb07f8d3b806eb0 /* 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; };
+ FFFD3b806f187f8d3b806f18 /* 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; };
+ FFFD3b806f807f8d3b806f80 /* 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; };
+ FFFD3b806fe87f8d3b806fe8 /* 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; };
+ FFFD3b8070507f8d3b807050 /* 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; };
+ FFFD3b8070b87f8d3b8070b8 /* 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; };
+ FFFD3b8071207f8d3b807120 /* src/mesh/GuBVConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBVConstants.h"; path = "../../GeomUtils/src/mesh/GuBVConstants.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8071887f8d3b807188 /* src/mesh/GuMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshData.h"; path = "../../GeomUtils/src/mesh/GuMeshData.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8071f07f8d3b8071f0 /* src/mesh/GuMidphaseInterface.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseInterface.h"; path = "../../GeomUtils/src/mesh/GuMidphaseInterface.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8072587f8d3b807258 /* src/mesh/GuRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.h"; path = "../../GeomUtils/src/mesh/GuRTree.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8072c07f8d3b8072c0 /* src/mesh/GuSweepConvexTri.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepConvexTri.h"; path = "../../GeomUtils/src/mesh/GuSweepConvexTri.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8073287f8d3b807328 /* src/mesh/GuSweepMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepMesh.h"; path = "../../GeomUtils/src/mesh/GuSweepMesh.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8073907f8d3b807390 /* src/mesh/GuTriangle32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangle32.h"; path = "../../GeomUtils/src/mesh/GuTriangle32.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8073f87f8d3b8073f8 /* src/mesh/GuTriangleCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleCache.h"; path = "../../GeomUtils/src/mesh/GuTriangleCache.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8074607f8d3b807460 /* src/mesh/GuTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.h"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8074c87f8d3b8074c8 /* src/mesh/GuTriangleMeshBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8075307f8d3b807530 /* src/mesh/GuTriangleMeshRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8075987f8d3b807598 /* src/mesh/GuTriangleVertexPointers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleVertexPointers.h"; path = "../../GeomUtils/src/mesh/GuTriangleVertexPointers.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8076007f8d3b807600 /* src/hf/GuEntityReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuEntityReport.h"; path = "../../GeomUtils/src/hf/GuEntityReport.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8076687f8d3b807668 /* src/hf/GuHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.h"; path = "../../GeomUtils/src/hf/GuHeightField.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8076d07f8d3b8076d0 /* src/hf/GuHeightFieldData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldData.h"; path = "../../GeomUtils/src/hf/GuHeightFieldData.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8077387f8d3b807738 /* src/hf/GuHeightFieldUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.h"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8077a07f8d3b8077a0 /* src/pcm/GuPCMContactConvexCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.h"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8078087f8d3b807808 /* src/pcm/GuPCMContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGen.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8078707f8d3b807870 /* src/pcm/GuPCMContactGenUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenUtil.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGenUtil.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8078d87f8d3b8078d8 /* src/pcm/GuPCMContactMeshCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactMeshCallback.h"; path = "../../GeomUtils/src/pcm/GuPCMContactMeshCallback.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8079407f8d3b807940 /* src/pcm/GuPCMShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.h"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8079a87f8d3b8079a8 /* src/pcm/GuPCMTriangleContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b807a107f8d3b807a10 /* src/pcm/GuPersistentContactManifold.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.h"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b807a787f8d3b807a78 /* src/ccd/GuCCDSweepConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.h"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b807ae07f8d3b807ae0 /* src/GuBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.cpp"; path = "../../GeomUtils/src/GuBounds.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b807b487f8d3b807b48 /* src/GuBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBox.cpp"; path = "../../GeomUtils/src/GuBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b807bb07f8d3b807bb0 /* src/GuCCTSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCCTSweepTests.cpp"; path = "../../GeomUtils/src/GuCCTSweepTests.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b807c187f8d3b807c18 /* src/GuCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.cpp"; path = "../../GeomUtils/src/GuCapsule.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b807c807f8d3b807c80 /* src/GuGeometryQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryQuery.cpp"; path = "../../GeomUtils/src/GuGeometryQuery.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b807ce87f8d3b807ce8 /* src/GuGeometryUnion.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.cpp"; path = "../../GeomUtils/src/GuGeometryUnion.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b807d507f8d3b807d50 /* src/GuInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.cpp"; path = "../../GeomUtils/src/GuInternal.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b807db87f8d3b807db8 /* src/GuMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.cpp"; path = "../../GeomUtils/src/GuMTD.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b807e207f8d3b807e20 /* src/GuMeshFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.cpp"; path = "../../GeomUtils/src/GuMeshFactory.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b807e887f8d3b807e88 /* src/GuMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMetaData.cpp"; path = "../../GeomUtils/src/GuMetaData.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b807ef07f8d3b807ef0 /* src/GuOverlapTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.cpp"; path = "../../GeomUtils/src/GuOverlapTests.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b807f587f8d3b807f58 /* src/GuRaycastTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuRaycastTests.cpp"; path = "../../GeomUtils/src/GuRaycastTests.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b807fc07f8d3b807fc0 /* src/GuSerialize.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.cpp"; path = "../../GeomUtils/src/GuSerialize.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8080287f8d3b808028 /* src/GuSweepMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.cpp"; path = "../../GeomUtils/src/GuSweepMTD.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8080907f8d3b808090 /* src/GuSweepSharedTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.cpp"; path = "../../GeomUtils/src/GuSweepSharedTests.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8080f87f8d3b8080f8 /* src/GuSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.cpp"; path = "../../GeomUtils/src/GuSweepTests.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8081607f8d3b808160 /* src/contact/GuContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactBoxBox.cpp"; path = "../../GeomUtils/src/contact/GuContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8081c87f8d3b8081c8 /* src/contact/GuContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleBox.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8082307f8d3b808230 /* src/contact/GuContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8082987f8d3b808298 /* src/contact/GuContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8083007f8d3b808300 /* src/contact/GuContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8083687f8d3b808368 /* src/contact/GuContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8083d07f8d3b8083d0 /* src/contact/GuContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8084387f8d3b808438 /* src/contact/GuContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneBox.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8084a07f8d3b8084a0 /* src/contact/GuContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8085087f8d3b808508 /* src/contact/GuContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8085707f8d3b808570 /* src/contact/GuContactPolygonPolygon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.cpp"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8085d87f8d3b8085d8 /* src/contact/GuContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereBox.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8086407f8d3b808640 /* src/contact/GuContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8086a87f8d3b8086a8 /* src/contact/GuContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8087107f8d3b808710 /* src/contact/GuContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSpherePlane.cpp"; path = "../../GeomUtils/src/contact/GuContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8087787f8d3b808778 /* src/contact/GuContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereSphere.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8087e07f8d3b8087e0 /* src/contact/GuFeatureCode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.cpp"; path = "../../GeomUtils/src/contact/GuFeatureCode.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8088487f8d3b808848 /* src/contact/GuLegacyContactBoxHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactBoxHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactBoxHeightField.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8088b07f8d3b8088b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8089187f8d3b808918 /* src/contact/GuLegacyContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactConvexHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8089807f8d3b808980 /* src/contact/GuLegacyContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactSphereHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8089e87f8d3b8089e8 /* src/common/GuBarycentricCoordinates.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.cpp"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b808a507f8d3b808a50 /* src/common/GuSeparatingAxes.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.cpp"; path = "../../GeomUtils/src/common/GuSeparatingAxes.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b808ab87f8d3b808ab8 /* src/convex/GuBigConvexData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.cpp"; path = "../../GeomUtils/src/convex/GuBigConvexData.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b808b207f8d3b808b20 /* src/convex/GuConvexHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.cpp"; path = "../../GeomUtils/src/convex/GuConvexHelper.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b808b887f8d3b808b88 /* src/convex/GuConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.cpp"; path = "../../GeomUtils/src/convex/GuConvexMesh.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b808bf07f8d3b808bf0 /* src/convex/GuConvexSupportTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.cpp"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b808c587f8d3b808c58 /* src/convex/GuConvexUtilsInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.cpp"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b808cc07f8d3b808cc0 /* src/convex/GuHillClimbing.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.cpp"; path = "../../GeomUtils/src/convex/GuHillClimbing.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b808d287f8d3b808d28 /* src/convex/GuShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.cpp"; path = "../../GeomUtils/src/convex/GuShapeConvex.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b808d907f8d3b808d90 /* src/distance/GuDistancePointBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b808df87f8d3b808df8 /* src/distance/GuDistancePointTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b808e607f8d3b808e60 /* src/distance/GuDistanceSegmentBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentBox.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b808ec87f8d3b808ec8 /* src/distance/GuDistanceSegmentSegment.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegment.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegment.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b808f307f8d3b808f30 /* src/distance/GuDistanceSegmentTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b808f987f8d3b808f98 /* src/sweep/GuSweepBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8090007f8d3b809000 /* src/sweep/GuSweepBoxSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8090687f8d3b809068 /* 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; };
+ FFFD3b8090d07f8d3b8090d0 /* 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; };
+ FFFD3b8091387f8d3b809138 /* src/sweep/GuSweepCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8091a07f8d3b8091a0 /* src/sweep/GuSweepCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8092087f8d3b809208 /* src/sweep/GuSweepCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8092707f8d3b809270 /* src/sweep/GuSweepSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8092d87f8d3b8092d8 /* src/sweep/GuSweepSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8093407f8d3b809340 /* src/sweep/GuSweepSphereTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8093a87f8d3b8093a8 /* src/sweep/GuSweepTriangleUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.cpp"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8094107f8d3b809410 /* src/gjk/GuEPA.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.cpp"; path = "../../GeomUtils/src/gjk/GuEPA.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8094787f8d3b809478 /* src/gjk/GuGJKSimplex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.cpp"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8094e07f8d3b8094e0 /* src/gjk/GuGJKTest.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.cpp"; path = "../../GeomUtils/src/gjk/GuGJKTest.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8095487f8d3b809548 /* src/intersection/GuIntersectionBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionBoxBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionBoxBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8095b07f8d3b8095b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8096187f8d3b809618 /* src/intersection/GuIntersectionEdgeEdge.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8096807f8d3b809680 /* src/intersection/GuIntersectionRayBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8096e87f8d3b8096e8 /* src/intersection/GuIntersectionRayCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8097507f8d3b809750 /* src/intersection/GuIntersectionRaySphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8097b87f8d3b8097b8 /* src/intersection/GuIntersectionSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8098207f8d3b809820 /* src/intersection/GuIntersectionTriangleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionTriangleBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionTriangleBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8098887f8d3b809888 /* src/mesh/GuBV32.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.cpp"; path = "../../GeomUtils/src/mesh/GuBV32.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8098f07f8d3b8098f0 /* src/mesh/GuBV32Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV32Build.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8099587f8d3b809958 /* src/mesh/GuBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.cpp"; path = "../../GeomUtils/src/mesh/GuBV4.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b8099c07f8d3b8099c0 /* src/mesh/GuBV4Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV4Build.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b809a287f8d3b809a28 /* 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; };
+ FFFD3b809a907f8d3b809a90 /* 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; };
+ FFFD3b809af87f8d3b809af8 /* 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; };
+ FFFD3b809b607f8d3b809b60 /* 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; };
+ FFFD3b809bc87f8d3b809bc8 /* 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; };
+ FFFD3b809c307f8d3b809c30 /* 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; };
+ FFFD3b809c987f8d3b809c98 /* 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; };
+ FFFD3b809d007f8d3b809d00 /* 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; };
+ FFFD3b809d687f8d3b809d68 /* src/mesh/GuMeshQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshQuery.cpp"; path = "../../GeomUtils/src/mesh/GuMeshQuery.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b809dd07f8d3b809dd0 /* src/mesh/GuMidphaseBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseBV4.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseBV4.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b809e387f8d3b809e38 /* src/mesh/GuMidphaseRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseRTree.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseRTree.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b809ea07f8d3b809ea0 /* src/mesh/GuOverlapTestsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuOverlapTestsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuOverlapTestsMesh.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b809f087f8d3b809f08 /* src/mesh/GuRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.cpp"; path = "../../GeomUtils/src/mesh/GuRTree.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b809f707f8d3b809f70 /* src/mesh/GuRTreeQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTreeQueries.cpp"; path = "../../GeomUtils/src/mesh/GuRTreeQueries.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b809fd87f8d3b809fd8 /* src/mesh/GuSweepsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuSweepsMesh.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b80a0407f8d3b80a040 /* src/mesh/GuTriangleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b80a0a87f8d3b80a0a8 /* src/mesh/GuTriangleMeshBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b80a1107f8d3b80a110 /* src/mesh/GuTriangleMeshRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b80a1787f8d3b80a178 /* src/hf/GuHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.cpp"; path = "../../GeomUtils/src/hf/GuHeightField.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b80a1e07f8d3b80a1e0 /* src/hf/GuHeightFieldUtil.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.cpp"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b80a2487f8d3b80a248 /* src/hf/GuOverlapTestsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuOverlapTestsHF.cpp"; path = "../../GeomUtils/src/hf/GuOverlapTestsHF.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b80a2b07f8d3b80a2b0 /* src/hf/GuSweepsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuSweepsHF.cpp"; path = "../../GeomUtils/src/hf/GuSweepsHF.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b80a3187f8d3b80a318 /* src/pcm/GuPCMContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b80a3807f8d3b80a380 /* src/pcm/GuPCMContactBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxConvex.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b80a3e87f8d3b80a3e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b80a4507f8d3b80a450 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b80a4b87f8d3b80a4b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b80a5207f8d3b80a520 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b80a5887f8d3b80a588 /* src/pcm/GuPCMContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b80a5f07f8d3b80a5f0 /* src/pcm/GuPCMContactConvexCommon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b80a6587f8d3b80a658 /* src/pcm/GuPCMContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b80a6c07f8d3b80a6c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b80a7287f8d3b80a728 /* src/pcm/GuPCMContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b80a7907f8d3b80a790 /* src/pcm/GuPCMContactGenBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenBoxConvex.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b80a7f87f8d3b80a7f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b80a8607f8d3b80a860 /* src/pcm/GuPCMContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b80a8c87f8d3b80a8c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b80a9307f8d3b80a930 /* src/pcm/GuPCMContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b80a9987f8d3b80a998 /* src/pcm/GuPCMContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b80aa007f8d3b80aa00 /* src/pcm/GuPCMContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b80aa687f8d3b80aa68 /* src/pcm/GuPCMContactSphereConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereConvex.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b80aad07f8d3b80aad0 /* src/pcm/GuPCMContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b80ab387f8d3b80ab38 /* src/pcm/GuPCMContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b80aba07f8d3b80aba0 /* src/pcm/GuPCMContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSpherePlane.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b80ac087f8d3b80ac08 /* src/pcm/GuPCMContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereSphere.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b80ac707f8d3b80ac70 /* src/pcm/GuPCMShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b80acd87f8d3b80acd8 /* src/pcm/GuPCMTriangleContactGen.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.cpp"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b80ad407f8d3b80ad40 /* src/pcm/GuPersistentContactManifold.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.cpp"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b80ada87f8d3b80ada8 /* src/ccd/GuCCDSweepConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.cpp"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b80ae107f8d3b80ae10 /* 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 */
- FFF2d10a67707ff3d10a6770 /* Resources */ = {
+ FFF23c99d3f07f8d3c99d3f0 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFFd18013a87ff3d18013a8,
+ FFFF3b8045a87f8d3b8045a8,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFCd10a67707ff3d10a6770 /* Frameworks */ = {
+ FFFC3c99d3f07f8d3c99d3f0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -1852,145 +1852,145 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF8d10a67707ff3d10a6770 /* Sources */ = {
+ FFF83c99d3f07f8d3c99d3f0 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFFd09aa4007ff3d09aa400,
- FFFFd09aa4687ff3d09aa468,
- FFFFd09aa4d07ff3d09aa4d0,
- FFFFd09aa5387ff3d09aa538,
- FFFFd09aa5a07ff3d09aa5a0,
- FFFFd09aa6087ff3d09aa608,
- FFFFd09aa6707ff3d09aa670,
- FFFFd09aa6d87ff3d09aa6d8,
- FFFFd18048e07ff3d18048e0,
- FFFFd18049487ff3d1804948,
- FFFFd18049b07ff3d18049b0,
- FFFFd1804a187ff3d1804a18,
- FFFFd1804a807ff3d1804a80,
- FFFFd1804ae87ff3d1804ae8,
- FFFFd1804b507ff3d1804b50,
- FFFFd1804bb87ff3d1804bb8,
- FFFFd1804c207ff3d1804c20,
- FFFFd1804c887ff3d1804c88,
- FFFFd1804cf07ff3d1804cf0,
- FFFFd1804d587ff3d1804d58,
- FFFFd1804dc07ff3d1804dc0,
- FFFFd1804e287ff3d1804e28,
- FFFFd1804e907ff3d1804e90,
- FFFFd1804ef87ff3d1804ef8,
- FFFFd1804f607ff3d1804f60,
- FFFFd1804fc87ff3d1804fc8,
- FFFFd18050307ff3d1805030,
- FFFFd18050987ff3d1805098,
- FFFFd18051007ff3d1805100,
- FFFFd18051687ff3d1805168,
- FFFFd18051d07ff3d18051d0,
- FFFFd18052387ff3d1805238,
- FFFFd18052a07ff3d18052a0,
- FFFFd18053087ff3d1805308,
- FFFFd18053707ff3d1805370,
- FFFFd18053d87ff3d18053d8,
- FFFFd18054407ff3d1805440,
- FFFFd18054a87ff3d18054a8,
- FFFFd18055107ff3d1805510,
- FFFFd18055787ff3d1805578,
- FFFFd18055e07ff3d18055e0,
- FFFFd18056487ff3d1805648,
- FFFFd18056b07ff3d18056b0,
- FFFFd18057187ff3d1805718,
- FFFFd18057807ff3d1805780,
- FFFFd18057e87ff3d18057e8,
- FFFFd18058507ff3d1805850,
- FFFFd18058b87ff3d18058b8,
- FFFFd18059207ff3d1805920,
- FFFFd18059887ff3d1805988,
- FFFFd18059f07ff3d18059f0,
- FFFFd1805a587ff3d1805a58,
- FFFFd1805ac07ff3d1805ac0,
- FFFFd1805b287ff3d1805b28,
- FFFFd1805b907ff3d1805b90,
- FFFFd1805bf87ff3d1805bf8,
- FFFFd1805c607ff3d1805c60,
- FFFFd1805cc87ff3d1805cc8,
- FFFFd1805d307ff3d1805d30,
- FFFFd1805d987ff3d1805d98,
- FFFFd1805e007ff3d1805e00,
- FFFFd1805e687ff3d1805e68,
- FFFFd1805ed07ff3d1805ed0,
- FFFFd1805f387ff3d1805f38,
- FFFFd1805fa07ff3d1805fa0,
- FFFFd18060087ff3d1806008,
- FFFFd18060707ff3d1806070,
- FFFFd18060d87ff3d18060d8,
- FFFFd18061407ff3d1806140,
- FFFFd18061a87ff3d18061a8,
- FFFFd18062107ff3d1806210,
- FFFFd18062787ff3d1806278,
- FFFFd18062e07ff3d18062e0,
- FFFFd18063487ff3d1806348,
- FFFFd18063b07ff3d18063b0,
- FFFFd18064187ff3d1806418,
- FFFFd18064807ff3d1806480,
- FFFFd18064e87ff3d18064e8,
- FFFFd18065507ff3d1806550,
- FFFFd18065b87ff3d18065b8,
- FFFFd18066207ff3d1806620,
- FFFFd18066887ff3d1806688,
- FFFFd18066f07ff3d18066f0,
- FFFFd18067587ff3d1806758,
- FFFFd18067c07ff3d18067c0,
- FFFFd18068287ff3d1806828,
- FFFFd18068907ff3d1806890,
- FFFFd18068f87ff3d18068f8,
- FFFFd18069607ff3d1806960,
- FFFFd18069c87ff3d18069c8,
- FFFFd1806a307ff3d1806a30,
- FFFFd1806a987ff3d1806a98,
- FFFFd1806b007ff3d1806b00,
- FFFFd1806b687ff3d1806b68,
- FFFFd1806bd07ff3d1806bd0,
- FFFFd1806c387ff3d1806c38,
- FFFFd1806ca07ff3d1806ca0,
- FFFFd1806d087ff3d1806d08,
- FFFFd1806d707ff3d1806d70,
- FFFFd1806dd87ff3d1806dd8,
- FFFFd1806e407ff3d1806e40,
- FFFFd1806ea87ff3d1806ea8,
- FFFFd1806f107ff3d1806f10,
- FFFFd1806f787ff3d1806f78,
- FFFFd1806fe07ff3d1806fe0,
- FFFFd18070487ff3d1807048,
- FFFFd18070b07ff3d18070b0,
- FFFFd18071187ff3d1807118,
- FFFFd18071807ff3d1807180,
- FFFFd18071e87ff3d18071e8,
- FFFFd18072507ff3d1807250,
- FFFFd18072b87ff3d18072b8,
- FFFFd18073207ff3d1807320,
- FFFFd18073887ff3d1807388,
- FFFFd18073f07ff3d18073f0,
- FFFFd18074587ff3d1807458,
- FFFFd18074c07ff3d18074c0,
- FFFFd18075287ff3d1807528,
- FFFFd18075907ff3d1807590,
- FFFFd18075f87ff3d18075f8,
- FFFFd18076607ff3d1807660,
- FFFFd18076c87ff3d18076c8,
- FFFFd18077307ff3d1807730,
- FFFFd18077987ff3d1807798,
- FFFFd18078007ff3d1807800,
- FFFFd18078687ff3d1807868,
- FFFFd18078d07ff3d18078d0,
- FFFFd18079387ff3d1807938,
- FFFFd18079a07ff3d18079a0,
- FFFFd1807a087ff3d1807a08,
- FFFFd1807a707ff3d1807a70,
- FFFFd1807ad87ff3d1807ad8,
- FFFFd1807b407ff3d1807b40,
- FFFFd1807ba87ff3d1807ba8,
- FFFFd1807c107ff3d1807c10,
+ FFFF3c1a82007f8d3c1a8200,
+ FFFF3c1a82687f8d3c1a8268,
+ FFFF3c1a82d07f8d3c1a82d0,
+ FFFF3c1a83387f8d3c1a8338,
+ FFFF3c1a83a07f8d3c1a83a0,
+ FFFF3c1a84087f8d3c1a8408,
+ FFFF3c1a84707f8d3c1a8470,
+ FFFF3c1a84d87f8d3c1a84d8,
+ FFFF3b807ae07f8d3b807ae0,
+ FFFF3b807b487f8d3b807b48,
+ FFFF3b807bb07f8d3b807bb0,
+ FFFF3b807c187f8d3b807c18,
+ FFFF3b807c807f8d3b807c80,
+ FFFF3b807ce87f8d3b807ce8,
+ FFFF3b807d507f8d3b807d50,
+ FFFF3b807db87f8d3b807db8,
+ FFFF3b807e207f8d3b807e20,
+ FFFF3b807e887f8d3b807e88,
+ FFFF3b807ef07f8d3b807ef0,
+ FFFF3b807f587f8d3b807f58,
+ FFFF3b807fc07f8d3b807fc0,
+ FFFF3b8080287f8d3b808028,
+ FFFF3b8080907f8d3b808090,
+ FFFF3b8080f87f8d3b8080f8,
+ FFFF3b8081607f8d3b808160,
+ FFFF3b8081c87f8d3b8081c8,
+ FFFF3b8082307f8d3b808230,
+ FFFF3b8082987f8d3b808298,
+ FFFF3b8083007f8d3b808300,
+ FFFF3b8083687f8d3b808368,
+ FFFF3b8083d07f8d3b8083d0,
+ FFFF3b8084387f8d3b808438,
+ FFFF3b8084a07f8d3b8084a0,
+ FFFF3b8085087f8d3b808508,
+ FFFF3b8085707f8d3b808570,
+ FFFF3b8085d87f8d3b8085d8,
+ FFFF3b8086407f8d3b808640,
+ FFFF3b8086a87f8d3b8086a8,
+ FFFF3b8087107f8d3b808710,
+ FFFF3b8087787f8d3b808778,
+ FFFF3b8087e07f8d3b8087e0,
+ FFFF3b8088487f8d3b808848,
+ FFFF3b8088b07f8d3b8088b0,
+ FFFF3b8089187f8d3b808918,
+ FFFF3b8089807f8d3b808980,
+ FFFF3b8089e87f8d3b8089e8,
+ FFFF3b808a507f8d3b808a50,
+ FFFF3b808ab87f8d3b808ab8,
+ FFFF3b808b207f8d3b808b20,
+ FFFF3b808b887f8d3b808b88,
+ FFFF3b808bf07f8d3b808bf0,
+ FFFF3b808c587f8d3b808c58,
+ FFFF3b808cc07f8d3b808cc0,
+ FFFF3b808d287f8d3b808d28,
+ FFFF3b808d907f8d3b808d90,
+ FFFF3b808df87f8d3b808df8,
+ FFFF3b808e607f8d3b808e60,
+ FFFF3b808ec87f8d3b808ec8,
+ FFFF3b808f307f8d3b808f30,
+ FFFF3b808f987f8d3b808f98,
+ FFFF3b8090007f8d3b809000,
+ FFFF3b8090687f8d3b809068,
+ FFFF3b8090d07f8d3b8090d0,
+ FFFF3b8091387f8d3b809138,
+ FFFF3b8091a07f8d3b8091a0,
+ FFFF3b8092087f8d3b809208,
+ FFFF3b8092707f8d3b809270,
+ FFFF3b8092d87f8d3b8092d8,
+ FFFF3b8093407f8d3b809340,
+ FFFF3b8093a87f8d3b8093a8,
+ FFFF3b8094107f8d3b809410,
+ FFFF3b8094787f8d3b809478,
+ FFFF3b8094e07f8d3b8094e0,
+ FFFF3b8095487f8d3b809548,
+ FFFF3b8095b07f8d3b8095b0,
+ FFFF3b8096187f8d3b809618,
+ FFFF3b8096807f8d3b809680,
+ FFFF3b8096e87f8d3b8096e8,
+ FFFF3b8097507f8d3b809750,
+ FFFF3b8097b87f8d3b8097b8,
+ FFFF3b8098207f8d3b809820,
+ FFFF3b8098887f8d3b809888,
+ FFFF3b8098f07f8d3b8098f0,
+ FFFF3b8099587f8d3b809958,
+ FFFF3b8099c07f8d3b8099c0,
+ FFFF3b809a287f8d3b809a28,
+ FFFF3b809a907f8d3b809a90,
+ FFFF3b809af87f8d3b809af8,
+ FFFF3b809b607f8d3b809b60,
+ FFFF3b809bc87f8d3b809bc8,
+ FFFF3b809c307f8d3b809c30,
+ FFFF3b809c987f8d3b809c98,
+ FFFF3b809d007f8d3b809d00,
+ FFFF3b809d687f8d3b809d68,
+ FFFF3b809dd07f8d3b809dd0,
+ FFFF3b809e387f8d3b809e38,
+ FFFF3b809ea07f8d3b809ea0,
+ FFFF3b809f087f8d3b809f08,
+ FFFF3b809f707f8d3b809f70,
+ FFFF3b809fd87f8d3b809fd8,
+ FFFF3b80a0407f8d3b80a040,
+ FFFF3b80a0a87f8d3b80a0a8,
+ FFFF3b80a1107f8d3b80a110,
+ FFFF3b80a1787f8d3b80a178,
+ FFFF3b80a1e07f8d3b80a1e0,
+ FFFF3b80a2487f8d3b80a248,
+ FFFF3b80a2b07f8d3b80a2b0,
+ FFFF3b80a3187f8d3b80a318,
+ FFFF3b80a3807f8d3b80a380,
+ FFFF3b80a3e87f8d3b80a3e8,
+ FFFF3b80a4507f8d3b80a450,
+ FFFF3b80a4b87f8d3b80a4b8,
+ FFFF3b80a5207f8d3b80a520,
+ FFFF3b80a5887f8d3b80a588,
+ FFFF3b80a5f07f8d3b80a5f0,
+ FFFF3b80a6587f8d3b80a658,
+ FFFF3b80a6c07f8d3b80a6c0,
+ FFFF3b80a7287f8d3b80a728,
+ FFFF3b80a7907f8d3b80a790,
+ FFFF3b80a7f87f8d3b80a7f8,
+ FFFF3b80a8607f8d3b80a860,
+ FFFF3b80a8c87f8d3b80a8c8,
+ FFFF3b80a9307f8d3b80a930,
+ FFFF3b80a9987f8d3b80a998,
+ FFFF3b80aa007f8d3b80aa00,
+ FFFF3b80aa687f8d3b80aa68,
+ FFFF3b80aad07f8d3b80aad0,
+ FFFF3b80ab387f8d3b80ab38,
+ FFFF3b80aba07f8d3b80aba0,
+ FFFF3b80ac087f8d3b80ac08,
+ FFFF3b80ac707f8d3b80ac70,
+ FFFF3b80acd87f8d3b80acd8,
+ FFFF3b80ad407f8d3b80ad40,
+ FFFF3b80ada87f8d3b80ada8,
+ FFFF3b80ae107f8d3b80ae10,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -1999,132 +1999,132 @@
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
- FFF4d109cf207ff3d109cf20 /* PBXTargetDependency */ = {
+ FFF43c9970407f8d3c997040 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFAd108e7507ff3d108e750 /* PxFoundation */;
- targetProxy = FFF5d108e7507ff3d108e750 /* PBXContainerItemProxy */;
+ target = FFFA3c9892007f8d3c989200 /* PxFoundation */;
+ targetProxy = FFF53c9892007f8d3c989200 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of PxFoundation */
- FFFFd09951187ff3d0995118 /* src/PsAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd09951187ff3d0995118 /* src/PsAllocator.cpp */; };
- FFFFd09951807ff3d0995180 /* src/PsAssert.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd09951807ff3d0995180 /* src/PsAssert.cpp */; };
- FFFFd09951e87ff3d09951e8 /* src/PsFoundation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd09951e87ff3d09951e8 /* src/PsFoundation.cpp */; };
- FFFFd09952507ff3d0995250 /* src/PsMathUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd09952507ff3d0995250 /* src/PsMathUtils.cpp */; };
- FFFFd09952b87ff3d09952b8 /* src/PsString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd09952b87ff3d09952b8 /* src/PsString.cpp */; };
- FFFFd09953207ff3d0995320 /* src/PsTempAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd09953207ff3d0995320 /* src/PsTempAllocator.cpp */; };
- FFFFd09953887ff3d0995388 /* src/PsUtilities.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd09953887ff3d0995388 /* src/PsUtilities.cpp */; };
- FFFFd09953f07ff3d09953f0 /* src/unix/PsUnixAtomic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd09953f07ff3d09953f0 /* src/unix/PsUnixAtomic.cpp */; };
- FFFFd09954587ff3d0995458 /* src/unix/PsUnixCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd09954587ff3d0995458 /* src/unix/PsUnixCpu.cpp */; };
- FFFFd09954c07ff3d09954c0 /* src/unix/PsUnixFPU.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd09954c07ff3d09954c0 /* src/unix/PsUnixFPU.cpp */; };
- FFFFd09955287ff3d0995528 /* src/unix/PsUnixMutex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd09955287ff3d0995528 /* src/unix/PsUnixMutex.cpp */; };
- FFFFd09955907ff3d0995590 /* src/unix/PsUnixPrintString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd09955907ff3d0995590 /* src/unix/PsUnixPrintString.cpp */; };
- FFFFd09955f87ff3d09955f8 /* src/unix/PsUnixSList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd09955f87ff3d09955f8 /* src/unix/PsUnixSList.cpp */; };
- FFFFd09956607ff3d0995660 /* src/unix/PsUnixSocket.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd09956607ff3d0995660 /* src/unix/PsUnixSocket.cpp */; };
- FFFFd09956c87ff3d09956c8 /* src/unix/PsUnixSync.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd09956c87ff3d09956c8 /* src/unix/PsUnixSync.cpp */; };
- FFFFd09957307ff3d0995730 /* src/unix/PsUnixThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd09957307ff3d0995730 /* src/unix/PsUnixThread.cpp */; };
- FFFFd09957987ff3d0995798 /* src/unix/PsUnixTime.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd09957987ff3d0995798 /* src/unix/PsUnixTime.cpp */; };
+ FFFF3c192f187f8d3c192f18 /* src/PsAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c192f187f8d3c192f18 /* src/PsAllocator.cpp */; };
+ FFFF3c192f807f8d3c192f80 /* src/PsAssert.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c192f807f8d3c192f80 /* src/PsAssert.cpp */; };
+ FFFF3c192fe87f8d3c192fe8 /* src/PsFoundation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c192fe87f8d3c192fe8 /* src/PsFoundation.cpp */; };
+ FFFF3c1930507f8d3c193050 /* src/PsMathUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1930507f8d3c193050 /* src/PsMathUtils.cpp */; };
+ FFFF3c1930b87f8d3c1930b8 /* src/PsString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1930b87f8d3c1930b8 /* src/PsString.cpp */; };
+ FFFF3c1931207f8d3c193120 /* src/PsTempAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1931207f8d3c193120 /* src/PsTempAllocator.cpp */; };
+ FFFF3c1931887f8d3c193188 /* src/PsUtilities.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1931887f8d3c193188 /* src/PsUtilities.cpp */; };
+ FFFF3c1931f07f8d3c1931f0 /* src/unix/PsUnixAtomic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1931f07f8d3c1931f0 /* src/unix/PsUnixAtomic.cpp */; };
+ FFFF3c1932587f8d3c193258 /* src/unix/PsUnixCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1932587f8d3c193258 /* src/unix/PsUnixCpu.cpp */; };
+ FFFF3c1932c07f8d3c1932c0 /* src/unix/PsUnixFPU.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1932c07f8d3c1932c0 /* src/unix/PsUnixFPU.cpp */; };
+ FFFF3c1933287f8d3c193328 /* src/unix/PsUnixMutex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1933287f8d3c193328 /* src/unix/PsUnixMutex.cpp */; };
+ FFFF3c1933907f8d3c193390 /* src/unix/PsUnixPrintString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1933907f8d3c193390 /* src/unix/PsUnixPrintString.cpp */; };
+ FFFF3c1933f87f8d3c1933f8 /* src/unix/PsUnixSList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1933f87f8d3c1933f8 /* src/unix/PsUnixSList.cpp */; };
+ FFFF3c1934607f8d3c193460 /* src/unix/PsUnixSocket.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1934607f8d3c193460 /* src/unix/PsUnixSocket.cpp */; };
+ FFFF3c1934c87f8d3c1934c8 /* src/unix/PsUnixSync.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1934c87f8d3c1934c8 /* src/unix/PsUnixSync.cpp */; };
+ FFFF3c1935307f8d3c193530 /* src/unix/PsUnixThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1935307f8d3c193530 /* src/unix/PsUnixThread.cpp */; };
+ FFFF3c1935987f8d3c193598 /* src/unix/PsUnixTime.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1935987f8d3c193598 /* src/unix/PsUnixTime.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFDd108e7507ff3d108e750 /* PxFoundation */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxFoundation"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFDd09898007ff3d0989800 /* Px.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Px.h"; path = "../../../../PxShared/include/foundation/Px.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09898687ff3d0989868 /* PxAllocatorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAllocatorCallback.h"; path = "../../../../PxShared/include/foundation/PxAllocatorCallback.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09898d07ff3d09898d0 /* PxAssert.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAssert.h"; path = "../../../../PxShared/include/foundation/PxAssert.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09899387ff3d0989938 /* PxBitAndData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBitAndData.h"; path = "../../../../PxShared/include/foundation/PxBitAndData.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09899a07ff3d09899a0 /* PxBounds3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBounds3.h"; path = "../../../../PxShared/include/foundation/PxBounds3.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0989a087ff3d0989a08 /* PxErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrorCallback.h"; path = "../../../../PxShared/include/foundation/PxErrorCallback.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0989a707ff3d0989a70 /* PxErrors.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrors.h"; path = "../../../../PxShared/include/foundation/PxErrors.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0989ad87ff3d0989ad8 /* PxFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFlags.h"; path = "../../../../PxShared/include/foundation/PxFlags.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0989b407ff3d0989b40 /* PxFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundation.h"; path = "../../../../PxShared/include/foundation/PxFoundation.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0989ba87ff3d0989ba8 /* PxFoundationVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundationVersion.h"; path = "../../../../PxShared/include/foundation/PxFoundationVersion.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0989c107ff3d0989c10 /* PxIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIO.h"; path = "../../../../PxShared/include/foundation/PxIO.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0989c787ff3d0989c78 /* PxIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIntrinsics.h"; path = "../../../../PxShared/include/foundation/PxIntrinsics.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0989ce07ff3d0989ce0 /* PxMat33.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat33.h"; path = "../../../../PxShared/include/foundation/PxMat33.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0989d487ff3d0989d48 /* PxMat44.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat44.h"; path = "../../../../PxShared/include/foundation/PxMat44.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0989db07ff3d0989db0 /* PxMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMath.h"; path = "../../../../PxShared/include/foundation/PxMath.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0989e187ff3d0989e18 /* PxMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMathUtils.h"; path = "../../../../PxShared/include/foundation/PxMathUtils.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0989e807ff3d0989e80 /* PxMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMemory.h"; path = "../../../../PxShared/include/foundation/PxMemory.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0989ee87ff3d0989ee8 /* PxPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPlane.h"; path = "../../../../PxShared/include/foundation/PxPlane.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0989f507ff3d0989f50 /* PxPreprocessor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPreprocessor.h"; path = "../../../../PxShared/include/foundation/PxPreprocessor.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0989fb87ff3d0989fb8 /* PxProfiler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxProfiler.h"; path = "../../../../PxShared/include/foundation/PxProfiler.h"; sourceTree = SOURCE_ROOT; };
- FFFDd098a0207ff3d098a020 /* PxQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQuat.h"; path = "../../../../PxShared/include/foundation/PxQuat.h"; sourceTree = SOURCE_ROOT; };
- FFFDd098a0887ff3d098a088 /* PxSimpleTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleTypes.h"; path = "../../../../PxShared/include/foundation/PxSimpleTypes.h"; sourceTree = SOURCE_ROOT; };
- FFFDd098a0f07ff3d098a0f0 /* PxStrideIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStrideIterator.h"; path = "../../../../PxShared/include/foundation/PxStrideIterator.h"; sourceTree = SOURCE_ROOT; };
- FFFDd098a1587ff3d098a158 /* PxTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTransform.h"; path = "../../../../PxShared/include/foundation/PxTransform.h"; sourceTree = SOURCE_ROOT; };
- FFFDd098a1c07ff3d098a1c0 /* PxUnionCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxUnionCast.h"; path = "../../../../PxShared/include/foundation/PxUnionCast.h"; sourceTree = SOURCE_ROOT; };
- FFFDd098a2287ff3d098a228 /* PxVec2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec2.h"; path = "../../../../PxShared/include/foundation/PxVec2.h"; sourceTree = SOURCE_ROOT; };
- FFFDd098a2907ff3d098a290 /* PxVec3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec3.h"; path = "../../../../PxShared/include/foundation/PxVec3.h"; sourceTree = SOURCE_ROOT; };
- FFFDd098a2f87ff3d098a2f8 /* PxVec4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec4.h"; path = "../../../../PxShared/include/foundation/PxVec4.h"; sourceTree = SOURCE_ROOT; };
- FFFDd098a3607ff3d098a360 /* unix/PxUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "unix/PxUnixIntrinsics.h"; path = "../../../../PxShared/include/foundation/unix/PxUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0993e007ff3d0993e00 /* include/Ps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/Ps.h"; path = "../../../../PxShared/src/foundation/include/Ps.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0993e687ff3d0993e68 /* include/PsAlignedMalloc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlignedMalloc.h"; path = "../../../../PxShared/src/foundation/include/PsAlignedMalloc.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0993ed07ff3d0993ed0 /* include/PsAlloca.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlloca.h"; path = "../../../../PxShared/src/foundation/include/PsAlloca.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0993f387ff3d0993f38 /* include/PsAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsAllocator.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0993fa07ff3d0993fa0 /* include/PsAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAoS.h"; path = "../../../../PxShared/src/foundation/include/PsAoS.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09940087ff3d0994008 /* include/PsArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsArray.h"; path = "../../../../PxShared/src/foundation/include/PsArray.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09940707ff3d0994070 /* include/PsAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAtomic.h"; path = "../../../../PxShared/src/foundation/include/PsAtomic.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09940d87ff3d09940d8 /* include/PsBasicTemplates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBasicTemplates.h"; path = "../../../../PxShared/src/foundation/include/PsBasicTemplates.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09941407ff3d0994140 /* include/PsBitUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBitUtils.h"; path = "../../../../PxShared/src/foundation/include/PsBitUtils.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09941a87ff3d09941a8 /* include/PsBroadcast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBroadcast.h"; path = "../../../../PxShared/src/foundation/include/PsBroadcast.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09942107ff3d0994210 /* include/PsCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsCpu.h"; path = "../../../../PxShared/src/foundation/include/PsCpu.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09942787ff3d0994278 /* include/PsFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFPU.h"; path = "../../../../PxShared/src/foundation/include/PsFPU.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09942e07ff3d09942e0 /* include/PsFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFoundation.h"; path = "../../../../PxShared/src/foundation/include/PsFoundation.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09943487ff3d0994348 /* include/PsHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHash.h"; path = "../../../../PxShared/src/foundation/include/PsHash.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09943b07ff3d09943b0 /* include/PsHashInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashInternals.h"; path = "../../../../PxShared/src/foundation/include/PsHashInternals.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09944187ff3d0994418 /* include/PsHashMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashMap.h"; path = "../../../../PxShared/src/foundation/include/PsHashMap.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09944807ff3d0994480 /* include/PsHashSet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashSet.h"; path = "../../../../PxShared/src/foundation/include/PsHashSet.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09944e87ff3d09944e8 /* include/PsInlineAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAllocator.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09945507ff3d0994550 /* include/PsInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAoS.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09945b87ff3d09945b8 /* include/PsInlineArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineArray.h"; path = "../../../../PxShared/src/foundation/include/PsInlineArray.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09946207ff3d0994620 /* include/PsIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/PsIntrinsics.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09946887ff3d0994688 /* include/PsMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMathUtils.h"; path = "../../../../PxShared/src/foundation/include/PsMathUtils.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09946f07ff3d09946f0 /* include/PsMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMutex.h"; path = "../../../../PxShared/src/foundation/include/PsMutex.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09947587ff3d0994758 /* include/PsPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPool.h"; path = "../../../../PxShared/src/foundation/include/PsPool.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09947c07ff3d09947c0 /* include/PsSList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSList.h"; path = "../../../../PxShared/src/foundation/include/PsSList.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09948287ff3d0994828 /* include/PsSocket.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSocket.h"; path = "../../../../PxShared/src/foundation/include/PsSocket.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09948907ff3d0994890 /* include/PsSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSort.h"; path = "../../../../PxShared/src/foundation/include/PsSort.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09948f87ff3d09948f8 /* include/PsSortInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSortInternals.h"; path = "../../../../PxShared/src/foundation/include/PsSortInternals.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09949607ff3d0994960 /* include/PsString.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsString.h"; path = "../../../../PxShared/src/foundation/include/PsString.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09949c87ff3d09949c8 /* include/PsSync.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSync.h"; path = "../../../../PxShared/src/foundation/include/PsSync.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0994a307ff3d0994a30 /* include/PsTempAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTempAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsTempAllocator.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0994a987ff3d0994a98 /* include/PsThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsThread.h"; path = "../../../../PxShared/src/foundation/include/PsThread.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0994b007ff3d0994b00 /* include/PsTime.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTime.h"; path = "../../../../PxShared/src/foundation/include/PsTime.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0994b687ff3d0994b68 /* include/PsUserAllocated.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUserAllocated.h"; path = "../../../../PxShared/src/foundation/include/PsUserAllocated.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0994bd07ff3d0994bd0 /* include/PsUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsUtilities.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0994c387ff3d0994c38 /* include/PsVecMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMath.h"; path = "../../../../PxShared/src/foundation/include/PsVecMath.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0994ca07ff3d0994ca0 /* include/PsVecMathAoSScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalar.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalar.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0994d087ff3d0994d08 /* include/PsVecMathAoSScalarInline.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalarInline.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalarInline.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0994d707ff3d0994d70 /* include/PsVecMathSSE.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathSSE.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathSSE.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0994dd87ff3d0994dd8 /* include/PsVecMathUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathUtilities.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0994e407ff3d0994e40 /* include/PsVecQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecQuat.h"; path = "../../../../PxShared/src/foundation/include/PsVecQuat.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0994ea87ff3d0994ea8 /* include/PsVecTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecTransform.h"; path = "../../../../PxShared/src/foundation/include/PsVecTransform.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0994f107ff3d0994f10 /* include/unix/PsUnixAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixAoS.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0994f787ff3d0994f78 /* include/unix/PsUnixFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixFPU.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixFPU.h"; sourceTree = SOURCE_ROOT; };
- FFFDd0994fe07ff3d0994fe0 /* include/unix/PsUnixInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixInlineAoS.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09950487ff3d0995048 /* include/unix/PsUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09950b07ff3d09950b0 /* include/unix/PsUnixTrigConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixTrigConstants.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixTrigConstants.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09951187ff3d0995118 /* src/PsAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsAllocator.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09951807ff3d0995180 /* src/PsAssert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAssert.cpp"; path = "../../../../PxShared/src/foundation/src/PsAssert.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09951e87ff3d09951e8 /* src/PsFoundation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsFoundation.cpp"; path = "../../../../PxShared/src/foundation/src/PsFoundation.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09952507ff3d0995250 /* src/PsMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsMathUtils.cpp"; path = "../../../../PxShared/src/foundation/src/PsMathUtils.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09952b87ff3d09952b8 /* src/PsString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsString.cpp"; path = "../../../../PxShared/src/foundation/src/PsString.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09953207ff3d0995320 /* src/PsTempAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsTempAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsTempAllocator.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09953887ff3d0995388 /* src/PsUtilities.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsUtilities.cpp"; path = "../../../../PxShared/src/foundation/src/PsUtilities.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09953f07ff3d09953f0 /* src/unix/PsUnixAtomic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixAtomic.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixAtomic.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09954587ff3d0995458 /* src/unix/PsUnixCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixCpu.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixCpu.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09954c07ff3d09954c0 /* src/unix/PsUnixFPU.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixFPU.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixFPU.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09955287ff3d0995528 /* src/unix/PsUnixMutex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixMutex.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixMutex.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09955907ff3d0995590 /* src/unix/PsUnixPrintString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixPrintString.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixPrintString.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09955f87ff3d09955f8 /* src/unix/PsUnixSList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSList.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSList.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09956607ff3d0995660 /* src/unix/PsUnixSocket.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSocket.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSocket.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09956c87ff3d09956c8 /* src/unix/PsUnixSync.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSync.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSync.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09957307ff3d0995730 /* src/unix/PsUnixThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixThread.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixThread.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09957987ff3d0995798 /* src/unix/PsUnixTime.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixTime.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixTime.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c9892007f8d3c989200 /* PxFoundation */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxFoundation"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFD3c1876007f8d3c187600 /* Px.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Px.h"; path = "../../../../PxShared/include/foundation/Px.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1876687f8d3c187668 /* PxAllocatorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAllocatorCallback.h"; path = "../../../../PxShared/include/foundation/PxAllocatorCallback.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1876d07f8d3c1876d0 /* PxAssert.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAssert.h"; path = "../../../../PxShared/include/foundation/PxAssert.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1877387f8d3c187738 /* PxBitAndData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBitAndData.h"; path = "../../../../PxShared/include/foundation/PxBitAndData.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1877a07f8d3c1877a0 /* PxBounds3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBounds3.h"; path = "../../../../PxShared/include/foundation/PxBounds3.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1878087f8d3c187808 /* PxErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrorCallback.h"; path = "../../../../PxShared/include/foundation/PxErrorCallback.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1878707f8d3c187870 /* PxErrors.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrors.h"; path = "../../../../PxShared/include/foundation/PxErrors.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1878d87f8d3c1878d8 /* PxFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFlags.h"; path = "../../../../PxShared/include/foundation/PxFlags.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1879407f8d3c187940 /* PxFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundation.h"; path = "../../../../PxShared/include/foundation/PxFoundation.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1879a87f8d3c1879a8 /* PxFoundationVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundationVersion.h"; path = "../../../../PxShared/include/foundation/PxFoundationVersion.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c187a107f8d3c187a10 /* PxIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIO.h"; path = "../../../../PxShared/include/foundation/PxIO.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c187a787f8d3c187a78 /* PxIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIntrinsics.h"; path = "../../../../PxShared/include/foundation/PxIntrinsics.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c187ae07f8d3c187ae0 /* PxMat33.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat33.h"; path = "../../../../PxShared/include/foundation/PxMat33.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c187b487f8d3c187b48 /* PxMat44.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat44.h"; path = "../../../../PxShared/include/foundation/PxMat44.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c187bb07f8d3c187bb0 /* PxMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMath.h"; path = "../../../../PxShared/include/foundation/PxMath.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c187c187f8d3c187c18 /* PxMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMathUtils.h"; path = "../../../../PxShared/include/foundation/PxMathUtils.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c187c807f8d3c187c80 /* PxMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMemory.h"; path = "../../../../PxShared/include/foundation/PxMemory.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c187ce87f8d3c187ce8 /* PxPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPlane.h"; path = "../../../../PxShared/include/foundation/PxPlane.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c187d507f8d3c187d50 /* PxPreprocessor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPreprocessor.h"; path = "../../../../PxShared/include/foundation/PxPreprocessor.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c187db87f8d3c187db8 /* PxProfiler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxProfiler.h"; path = "../../../../PxShared/include/foundation/PxProfiler.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c187e207f8d3c187e20 /* PxQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQuat.h"; path = "../../../../PxShared/include/foundation/PxQuat.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c187e887f8d3c187e88 /* PxSimpleTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleTypes.h"; path = "../../../../PxShared/include/foundation/PxSimpleTypes.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c187ef07f8d3c187ef0 /* PxStrideIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStrideIterator.h"; path = "../../../../PxShared/include/foundation/PxStrideIterator.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c187f587f8d3c187f58 /* PxTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTransform.h"; path = "../../../../PxShared/include/foundation/PxTransform.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c187fc07f8d3c187fc0 /* PxUnionCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxUnionCast.h"; path = "../../../../PxShared/include/foundation/PxUnionCast.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1880287f8d3c188028 /* PxVec2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec2.h"; path = "../../../../PxShared/include/foundation/PxVec2.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1880907f8d3c188090 /* PxVec3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec3.h"; path = "../../../../PxShared/include/foundation/PxVec3.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1880f87f8d3c1880f8 /* PxVec4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec4.h"; path = "../../../../PxShared/include/foundation/PxVec4.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1881607f8d3c188160 /* unix/PxUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "unix/PxUnixIntrinsics.h"; path = "../../../../PxShared/include/foundation/unix/PxUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c191c007f8d3c191c00 /* include/Ps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/Ps.h"; path = "../../../../PxShared/src/foundation/include/Ps.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c191c687f8d3c191c68 /* include/PsAlignedMalloc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlignedMalloc.h"; path = "../../../../PxShared/src/foundation/include/PsAlignedMalloc.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c191cd07f8d3c191cd0 /* include/PsAlloca.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlloca.h"; path = "../../../../PxShared/src/foundation/include/PsAlloca.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c191d387f8d3c191d38 /* include/PsAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsAllocator.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c191da07f8d3c191da0 /* include/PsAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAoS.h"; path = "../../../../PxShared/src/foundation/include/PsAoS.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c191e087f8d3c191e08 /* include/PsArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsArray.h"; path = "../../../../PxShared/src/foundation/include/PsArray.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c191e707f8d3c191e70 /* include/PsAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAtomic.h"; path = "../../../../PxShared/src/foundation/include/PsAtomic.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c191ed87f8d3c191ed8 /* include/PsBasicTemplates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBasicTemplates.h"; path = "../../../../PxShared/src/foundation/include/PsBasicTemplates.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c191f407f8d3c191f40 /* include/PsBitUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBitUtils.h"; path = "../../../../PxShared/src/foundation/include/PsBitUtils.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c191fa87f8d3c191fa8 /* include/PsBroadcast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBroadcast.h"; path = "../../../../PxShared/src/foundation/include/PsBroadcast.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1920107f8d3c192010 /* include/PsCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsCpu.h"; path = "../../../../PxShared/src/foundation/include/PsCpu.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1920787f8d3c192078 /* include/PsFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFPU.h"; path = "../../../../PxShared/src/foundation/include/PsFPU.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1920e07f8d3c1920e0 /* include/PsFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFoundation.h"; path = "../../../../PxShared/src/foundation/include/PsFoundation.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1921487f8d3c192148 /* include/PsHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHash.h"; path = "../../../../PxShared/src/foundation/include/PsHash.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1921b07f8d3c1921b0 /* include/PsHashInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashInternals.h"; path = "../../../../PxShared/src/foundation/include/PsHashInternals.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1922187f8d3c192218 /* include/PsHashMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashMap.h"; path = "../../../../PxShared/src/foundation/include/PsHashMap.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1922807f8d3c192280 /* include/PsHashSet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashSet.h"; path = "../../../../PxShared/src/foundation/include/PsHashSet.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1922e87f8d3c1922e8 /* include/PsInlineAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAllocator.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1923507f8d3c192350 /* include/PsInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAoS.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1923b87f8d3c1923b8 /* include/PsInlineArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineArray.h"; path = "../../../../PxShared/src/foundation/include/PsInlineArray.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1924207f8d3c192420 /* include/PsIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/PsIntrinsics.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1924887f8d3c192488 /* include/PsMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMathUtils.h"; path = "../../../../PxShared/src/foundation/include/PsMathUtils.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1924f07f8d3c1924f0 /* include/PsMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMutex.h"; path = "../../../../PxShared/src/foundation/include/PsMutex.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1925587f8d3c192558 /* include/PsPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPool.h"; path = "../../../../PxShared/src/foundation/include/PsPool.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1925c07f8d3c1925c0 /* include/PsSList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSList.h"; path = "../../../../PxShared/src/foundation/include/PsSList.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1926287f8d3c192628 /* include/PsSocket.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSocket.h"; path = "../../../../PxShared/src/foundation/include/PsSocket.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1926907f8d3c192690 /* include/PsSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSort.h"; path = "../../../../PxShared/src/foundation/include/PsSort.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1926f87f8d3c1926f8 /* include/PsSortInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSortInternals.h"; path = "../../../../PxShared/src/foundation/include/PsSortInternals.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1927607f8d3c192760 /* include/PsString.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsString.h"; path = "../../../../PxShared/src/foundation/include/PsString.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1927c87f8d3c1927c8 /* include/PsSync.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSync.h"; path = "../../../../PxShared/src/foundation/include/PsSync.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1928307f8d3c192830 /* include/PsTempAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTempAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsTempAllocator.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1928987f8d3c192898 /* include/PsThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsThread.h"; path = "../../../../PxShared/src/foundation/include/PsThread.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1929007f8d3c192900 /* include/PsTime.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTime.h"; path = "../../../../PxShared/src/foundation/include/PsTime.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1929687f8d3c192968 /* include/PsUserAllocated.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUserAllocated.h"; path = "../../../../PxShared/src/foundation/include/PsUserAllocated.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1929d07f8d3c1929d0 /* include/PsUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsUtilities.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c192a387f8d3c192a38 /* include/PsVecMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMath.h"; path = "../../../../PxShared/src/foundation/include/PsVecMath.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c192aa07f8d3c192aa0 /* include/PsVecMathAoSScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalar.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalar.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c192b087f8d3c192b08 /* include/PsVecMathAoSScalarInline.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalarInline.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalarInline.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c192b707f8d3c192b70 /* include/PsVecMathSSE.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathSSE.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathSSE.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c192bd87f8d3c192bd8 /* include/PsVecMathUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathUtilities.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c192c407f8d3c192c40 /* include/PsVecQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecQuat.h"; path = "../../../../PxShared/src/foundation/include/PsVecQuat.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c192ca87f8d3c192ca8 /* include/PsVecTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecTransform.h"; path = "../../../../PxShared/src/foundation/include/PsVecTransform.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c192d107f8d3c192d10 /* include/unix/PsUnixAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixAoS.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c192d787f8d3c192d78 /* include/unix/PsUnixFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixFPU.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixFPU.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c192de07f8d3c192de0 /* include/unix/PsUnixInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixInlineAoS.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c192e487f8d3c192e48 /* include/unix/PsUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c192eb07f8d3c192eb0 /* include/unix/PsUnixTrigConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixTrigConstants.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixTrigConstants.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c192f187f8d3c192f18 /* src/PsAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsAllocator.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c192f807f8d3c192f80 /* src/PsAssert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAssert.cpp"; path = "../../../../PxShared/src/foundation/src/PsAssert.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c192fe87f8d3c192fe8 /* src/PsFoundation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsFoundation.cpp"; path = "../../../../PxShared/src/foundation/src/PsFoundation.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1930507f8d3c193050 /* src/PsMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsMathUtils.cpp"; path = "../../../../PxShared/src/foundation/src/PsMathUtils.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1930b87f8d3c1930b8 /* src/PsString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsString.cpp"; path = "../../../../PxShared/src/foundation/src/PsString.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1931207f8d3c193120 /* src/PsTempAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsTempAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsTempAllocator.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1931887f8d3c193188 /* src/PsUtilities.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsUtilities.cpp"; path = "../../../../PxShared/src/foundation/src/PsUtilities.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1931f07f8d3c1931f0 /* src/unix/PsUnixAtomic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixAtomic.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixAtomic.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1932587f8d3c193258 /* src/unix/PsUnixCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixCpu.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixCpu.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1932c07f8d3c1932c0 /* src/unix/PsUnixFPU.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixFPU.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixFPU.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1933287f8d3c193328 /* src/unix/PsUnixMutex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixMutex.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixMutex.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1933907f8d3c193390 /* src/unix/PsUnixPrintString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixPrintString.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixPrintString.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1933f87f8d3c1933f8 /* src/unix/PsUnixSList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSList.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSList.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1934607f8d3c193460 /* src/unix/PsUnixSocket.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSocket.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSocket.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1934c87f8d3c1934c8 /* src/unix/PsUnixSync.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSync.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSync.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1935307f8d3c193530 /* src/unix/PsUnixThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixThread.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixThread.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1935987f8d3c193598 /* 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 */
- FFF2d108e7507ff3d108e750 /* Resources */ = {
+ FFF23c9892007f8d3c989200 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2134,7 +2134,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFCd108e7507ff3d108e750 /* Frameworks */ = {
+ FFFC3c9892007f8d3c989200 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2144,27 +2144,27 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF8d108e7507ff3d108e750 /* Sources */ = {
+ FFF83c9892007f8d3c989200 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFFd09951187ff3d0995118,
- FFFFd09951807ff3d0995180,
- FFFFd09951e87ff3d09951e8,
- FFFFd09952507ff3d0995250,
- FFFFd09952b87ff3d09952b8,
- FFFFd09953207ff3d0995320,
- FFFFd09953887ff3d0995388,
- FFFFd09953f07ff3d09953f0,
- FFFFd09954587ff3d0995458,
- FFFFd09954c07ff3d09954c0,
- FFFFd09955287ff3d0995528,
- FFFFd09955907ff3d0995590,
- FFFFd09955f87ff3d09955f8,
- FFFFd09956607ff3d0995660,
- FFFFd09956c87ff3d09956c8,
- FFFFd09957307ff3d0995730,
- FFFFd09957987ff3d0995798,
+ FFFF3c192f187f8d3c192f18,
+ FFFF3c192f807f8d3c192f80,
+ FFFF3c192fe87f8d3c192fe8,
+ FFFF3c1930507f8d3c193050,
+ FFFF3c1930b87f8d3c1930b8,
+ FFFF3c1931207f8d3c193120,
+ FFFF3c1931887f8d3c193188,
+ FFFF3c1931f07f8d3c1931f0,
+ FFFF3c1932587f8d3c193258,
+ FFFF3c1932c07f8d3c1932c0,
+ FFFF3c1933287f8d3c193328,
+ FFFF3c1933907f8d3c193390,
+ FFFF3c1933f87f8d3c1933f8,
+ FFFF3c1934607f8d3c193460,
+ FFFF3c1934c87f8d3c1934c8,
+ FFFF3c1935307f8d3c193530,
+ FFFF3c1935987f8d3c193598,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -2176,103 +2176,103 @@
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of PxPvdSDK */
- FFFFd200f5a87ff3d200f5a8 /* src/PxProfileEventImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd200f5a87ff3d200f5a8 /* src/PxProfileEventImpl.cpp */; };
- FFFFd200f6107ff3d200f610 /* src/PxPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd200f6107ff3d200f610 /* src/PxPvd.cpp */; };
- FFFFd200f6787ff3d200f678 /* src/PxPvdDataStream.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd200f6787ff3d200f678 /* src/PxPvdDataStream.cpp */; };
- FFFFd200f6e07ff3d200f6e0 /* src/PxPvdDefaultFileTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd200f6e07ff3d200f6e0 /* src/PxPvdDefaultFileTransport.cpp */; };
- FFFFd200f7487ff3d200f748 /* src/PxPvdDefaultSocketTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd200f7487ff3d200f748 /* src/PxPvdDefaultSocketTransport.cpp */; };
- FFFFd200f7b07ff3d200f7b0 /* src/PxPvdImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd200f7b07ff3d200f7b0 /* src/PxPvdImpl.cpp */; };
- FFFFd200f8187ff3d200f818 /* src/PxPvdMemClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd200f8187ff3d200f818 /* src/PxPvdMemClient.cpp */; };
- FFFFd200f8807ff3d200f880 /* src/PxPvdObjectModelMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd200f8807ff3d200f880 /* src/PxPvdObjectModelMetaData.cpp */; };
- FFFFd200f8e87ff3d200f8e8 /* src/PxPvdObjectRegistrar.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd200f8e87ff3d200f8e8 /* src/PxPvdObjectRegistrar.cpp */; };
- FFFFd200f9507ff3d200f950 /* src/PxPvdProfileZoneClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd200f9507ff3d200f950 /* src/PxPvdProfileZoneClient.cpp */; };
- FFFFd200f9b87ff3d200f9b8 /* src/PxPvdUserRenderer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd200f9b87ff3d200f9b8 /* src/PxPvdUserRenderer.cpp */; };
+ FFFF3d02e1a87f8d3d02e1a8 /* src/PxProfileEventImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d02e1a87f8d3d02e1a8 /* src/PxProfileEventImpl.cpp */; };
+ FFFF3d02e2107f8d3d02e210 /* src/PxPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d02e2107f8d3d02e210 /* src/PxPvd.cpp */; };
+ FFFF3d02e2787f8d3d02e278 /* src/PxPvdDataStream.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d02e2787f8d3d02e278 /* src/PxPvdDataStream.cpp */; };
+ FFFF3d02e2e07f8d3d02e2e0 /* src/PxPvdDefaultFileTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d02e2e07f8d3d02e2e0 /* src/PxPvdDefaultFileTransport.cpp */; };
+ FFFF3d02e3487f8d3d02e348 /* src/PxPvdDefaultSocketTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d02e3487f8d3d02e348 /* src/PxPvdDefaultSocketTransport.cpp */; };
+ FFFF3d02e3b07f8d3d02e3b0 /* src/PxPvdImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d02e3b07f8d3d02e3b0 /* src/PxPvdImpl.cpp */; };
+ FFFF3d02e4187f8d3d02e418 /* src/PxPvdMemClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d02e4187f8d3d02e418 /* src/PxPvdMemClient.cpp */; };
+ FFFF3d02e4807f8d3d02e480 /* src/PxPvdObjectModelMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d02e4807f8d3d02e480 /* src/PxPvdObjectModelMetaData.cpp */; };
+ FFFF3d02e4e87f8d3d02e4e8 /* src/PxPvdObjectRegistrar.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d02e4e87f8d3d02e4e8 /* src/PxPvdObjectRegistrar.cpp */; };
+ FFFF3d02e5507f8d3d02e550 /* src/PxPvdProfileZoneClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d02e5507f8d3d02e550 /* src/PxPvdProfileZoneClient.cpp */; };
+ FFFF3d02e5b87f8d3d02e5b8 /* src/PxPvdUserRenderer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d02e5b87f8d3d02e5b8 /* src/PxPvdUserRenderer.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFDd17098707ff3d1709870 /* PxPvdSDK */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxPvdSDK"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFDd170ccc07ff3d170ccc0 /* PxPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvd.h"; path = "../../../../PxShared/include/pvd/PxPvd.h"; sourceTree = SOURCE_ROOT; };
- FFFDd170cd287ff3d170cd28 /* PxPvdTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvdTransport.h"; path = "../../../../PxShared/include/pvd/PxPvdTransport.h"; sourceTree = SOURCE_ROOT; };
- FFFDd200f2007ff3d200f200 /* include/PsPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPvd.h"; path = "../../../../PxShared/src/pvd/include/PsPvd.h"; sourceTree = SOURCE_ROOT; };
- FFFDd200f2687ff3d200f268 /* include/PxProfileAllocatorWrapper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxProfileAllocatorWrapper.h"; path = "../../../../PxShared/src/pvd/include/PxProfileAllocatorWrapper.h"; sourceTree = SOURCE_ROOT; };
- FFFDd200f2d07ff3d200f2d0 /* include/PxPvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdClient.h"; path = "../../../../PxShared/src/pvd/include/PxPvdClient.h"; sourceTree = SOURCE_ROOT; };
- FFFDd200f3387ff3d200f338 /* include/PxPvdDataStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStream.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStream.h"; sourceTree = SOURCE_ROOT; };
- FFFDd200f3a07ff3d200f3a0 /* include/PxPvdDataStreamHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStreamHelpers.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStreamHelpers.h"; sourceTree = SOURCE_ROOT; };
- FFFDd200f4087ff3d200f408 /* include/PxPvdErrorCodes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdErrorCodes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdErrorCodes.h"; sourceTree = SOURCE_ROOT; };
- FFFDd200f4707ff3d200f470 /* include/PxPvdObjectModelBaseTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdObjectModelBaseTypes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdObjectModelBaseTypes.h"; sourceTree = SOURCE_ROOT; };
- FFFDd200f4d87ff3d200f4d8 /* include/PxPvdRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdRenderBuffer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdRenderBuffer.h"; sourceTree = SOURCE_ROOT; };
- FFFDd200f5407ff3d200f540 /* include/PxPvdUserRenderer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdUserRenderer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdUserRenderer.h"; sourceTree = SOURCE_ROOT; };
- FFFDd200f5a87ff3d200f5a8 /* src/PxProfileEventImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxProfileEventImpl.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd200f6107ff3d200f610 /* src/PxPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvd.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvd.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd200f6787ff3d200f678 /* src/PxPvdDataStream.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDataStream.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDataStream.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd200f6e07ff3d200f6e0 /* src/PxPvdDefaultFileTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd200f7487ff3d200f748 /* src/PxPvdDefaultSocketTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd200f7b07ff3d200f7b0 /* src/PxPvdImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd200f8187ff3d200f818 /* src/PxPvdMemClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd200f8807ff3d200f880 /* src/PxPvdObjectModelMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd200f8e87ff3d200f8e8 /* src/PxPvdObjectRegistrar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd200f9507ff3d200f950 /* src/PxPvdProfileZoneClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd200f9b87ff3d200f9b8 /* src/PxPvdUserRenderer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderer.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderer.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd200fa207ff3d200fa20 /* src/PxProfileBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileBase.h"; path = "../../../../PxShared/src/pvd/src/PxProfileBase.h"; sourceTree = SOURCE_ROOT; };
- FFFDd200fa887ff3d200fa88 /* src/PxProfileCompileTimeEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileCompileTimeEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileCompileTimeEventFilter.h"; sourceTree = SOURCE_ROOT; };
- FFFDd200faf07ff3d200faf0 /* src/PxProfileContextProvider.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProvider.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProvider.h"; sourceTree = SOURCE_ROOT; };
- FFFDd200fb587ff3d200fb58 /* src/PxProfileContextProviderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProviderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProviderImpl.h"; sourceTree = SOURCE_ROOT; };
- FFFDd200fbc07ff3d200fbc0 /* src/PxProfileDataBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataBuffer.h"; sourceTree = SOURCE_ROOT; };
- FFFDd200fc287ff3d200fc28 /* src/PxProfileDataParsing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataParsing.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataParsing.h"; sourceTree = SOURCE_ROOT; };
- FFFDd200fc907ff3d200fc90 /* src/PxProfileEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBuffer.h"; sourceTree = SOURCE_ROOT; };
- FFFDd200fcf87ff3d200fcf8 /* src/PxProfileEventBufferAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferAtomic.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferAtomic.h"; sourceTree = SOURCE_ROOT; };
- FFFDd200fd607ff3d200fd60 /* src/PxProfileEventBufferClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClient.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClient.h"; sourceTree = SOURCE_ROOT; };
- FFFDd200fdc87ff3d200fdc8 /* src/PxProfileEventBufferClientManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClientManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClientManager.h"; sourceTree = SOURCE_ROOT; };
- FFFDd200fe307ff3d200fe30 /* src/PxProfileEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventFilter.h"; sourceTree = SOURCE_ROOT; };
- FFFDd200fe987ff3d200fe98 /* src/PxProfileEventHandler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventHandler.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventHandler.h"; sourceTree = SOURCE_ROOT; };
- FFFDd200ff007ff3d200ff00 /* src/PxProfileEventId.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventId.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventId.h"; sourceTree = SOURCE_ROOT; };
- FFFDd200ff687ff3d200ff68 /* src/PxProfileEventMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventMutex.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventMutex.h"; sourceTree = SOURCE_ROOT; };
- FFFDd200ffd07ff3d200ffd0 /* src/PxProfileEventNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventNames.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventNames.h"; sourceTree = SOURCE_ROOT; };
- FFFDd20100387ff3d2010038 /* src/PxProfileEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventParser.h"; sourceTree = SOURCE_ROOT; };
- FFFDd20100a07ff3d20100a0 /* src/PxProfileEventSender.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSender.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSender.h"; sourceTree = SOURCE_ROOT; };
- FFFDd20101087ff3d2010108 /* src/PxProfileEventSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSerialization.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSerialization.h"; sourceTree = SOURCE_ROOT; };
- FFFDd20101707ff3d2010170 /* src/PxProfileEventSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSystem.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSystem.h"; sourceTree = SOURCE_ROOT; };
- FFFDd20101d87ff3d20101d8 /* src/PxProfileEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEvents.h"; sourceTree = SOURCE_ROOT; };
- FFFDd20102407ff3d2010240 /* src/PxProfileMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemory.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemory.h"; sourceTree = SOURCE_ROOT; };
- FFFDd20102a87ff3d20102a8 /* src/PxProfileMemoryBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryBuffer.h"; sourceTree = SOURCE_ROOT; };
- FFFDd20103107ff3d2010310 /* src/PxProfileMemoryEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventBuffer.h"; sourceTree = SOURCE_ROOT; };
- FFFDd20103787ff3d2010378 /* src/PxProfileMemoryEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventParser.h"; sourceTree = SOURCE_ROOT; };
- FFFDd20103e07ff3d20103e0 /* src/PxProfileMemoryEventRecorder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventRecorder.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventRecorder.h"; sourceTree = SOURCE_ROOT; };
- FFFDd20104487ff3d2010448 /* src/PxProfileMemoryEventReflexiveWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventReflexiveWriter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventReflexiveWriter.h"; sourceTree = SOURCE_ROOT; };
- FFFDd20104b07ff3d20104b0 /* src/PxProfileMemoryEventSummarizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventSummarizer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventSummarizer.h"; sourceTree = SOURCE_ROOT; };
- FFFDd20105187ff3d2010518 /* src/PxProfileMemoryEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventTypes.h"; sourceTree = SOURCE_ROOT; };
- FFFDd20105807ff3d2010580 /* src/PxProfileMemoryEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEvents.h"; sourceTree = SOURCE_ROOT; };
- FFFDd20105e87ff3d20105e8 /* src/PxProfileScopedEvent.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedEvent.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedEvent.h"; sourceTree = SOURCE_ROOT; };
- FFFDd20106507ff3d2010650 /* src/PxProfileScopedMutexLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedMutexLock.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedMutexLock.h"; sourceTree = SOURCE_ROOT; };
- FFFDd20106b87ff3d20106b8 /* src/PxProfileZone.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZone.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZone.h"; sourceTree = SOURCE_ROOT; };
- FFFDd20107207ff3d2010720 /* src/PxProfileZoneImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneImpl.h"; sourceTree = SOURCE_ROOT; };
- FFFDd20107887ff3d2010788 /* src/PxProfileZoneManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManager.h"; sourceTree = SOURCE_ROOT; };
- FFFDd20107f07ff3d20107f0 /* src/PxProfileZoneManagerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManagerImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManagerImpl.h"; sourceTree = SOURCE_ROOT; };
- FFFDd20108587ff3d2010858 /* src/PxPvdBits.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdBits.h"; path = "../../../../PxShared/src/pvd/src/PxPvdBits.h"; sourceTree = SOURCE_ROOT; };
- FFFDd20108c07ff3d20108c0 /* src/PxPvdByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdByteStreams.h"; sourceTree = SOURCE_ROOT; };
- FFFDd20109287ff3d2010928 /* src/PxPvdCommStreamEventSink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEventSink.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEventSink.h"; sourceTree = SOURCE_ROOT; };
- FFFDd20109907ff3d2010990 /* src/PxPvdCommStreamEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEvents.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEvents.h"; sourceTree = SOURCE_ROOT; };
- FFFDd20109f87ff3d20109f8 /* src/PxPvdCommStreamSDKEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamSDKEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamSDKEventTypes.h"; sourceTree = SOURCE_ROOT; };
- FFFDd2010a607ff3d2010a60 /* src/PxPvdCommStreamTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamTypes.h"; sourceTree = SOURCE_ROOT; };
- FFFDd2010ac87ff3d2010ac8 /* src/PxPvdDefaultFileTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.h"; sourceTree = SOURCE_ROOT; };
- FFFDd2010b307ff3d2010b30 /* src/PxPvdDefaultSocketTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.h"; sourceTree = SOURCE_ROOT; };
- FFFDd2010b987ff3d2010b98 /* src/PxPvdFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdFoundation.h"; path = "../../../../PxShared/src/pvd/src/PxPvdFoundation.h"; sourceTree = SOURCE_ROOT; };
- FFFDd2010c007ff3d2010c00 /* src/PxPvdImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.h"; sourceTree = SOURCE_ROOT; };
- FFFDd2010c687ff3d2010c68 /* src/PxPvdInternalByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdInternalByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdInternalByteStreams.h"; sourceTree = SOURCE_ROOT; };
- FFFDd2010cd07ff3d2010cd0 /* src/PxPvdMarshalling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMarshalling.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMarshalling.h"; sourceTree = SOURCE_ROOT; };
- FFFDd2010d387ff3d2010d38 /* src/PxPvdMemClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.h"; sourceTree = SOURCE_ROOT; };
- FFFDd2010da07ff3d2010da0 /* src/PxPvdObjectModel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModel.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModel.h"; sourceTree = SOURCE_ROOT; };
- FFFDd2010e087ff3d2010e08 /* src/PxPvdObjectModelInternalTypeDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypeDefs.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypeDefs.h"; sourceTree = SOURCE_ROOT; };
- FFFDd2010e707ff3d2010e70 /* src/PxPvdObjectModelInternalTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypes.h"; sourceTree = SOURCE_ROOT; };
- FFFDd2010ed87ff3d2010ed8 /* src/PxPvdObjectModelMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.h"; sourceTree = SOURCE_ROOT; };
- FFFDd2010f407ff3d2010f40 /* src/PxPvdObjectRegistrar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.h"; sourceTree = SOURCE_ROOT; };
- FFFDd2010fa87ff3d2010fa8 /* src/PxPvdProfileZoneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.h"; sourceTree = SOURCE_ROOT; };
- FFFDd20110107ff3d2011010 /* src/PxPvdUserRenderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderImpl.h"; sourceTree = SOURCE_ROOT; };
- FFFDd20110787ff3d2011078 /* src/PxPvdUserRenderTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderTypes.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3cd0c6b07f8d3cd0c6b0 /* PxPvdSDK */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxPvdSDK"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFD3cd08ea07f8d3cd08ea0 /* PxPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvd.h"; path = "../../../../PxShared/include/pvd/PxPvd.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3cd08f087f8d3cd08f08 /* PxPvdTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvdTransport.h"; path = "../../../../PxShared/include/pvd/PxPvdTransport.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02de007f8d3d02de00 /* include/PsPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPvd.h"; path = "../../../../PxShared/src/pvd/include/PsPvd.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02de687f8d3d02de68 /* include/PxProfileAllocatorWrapper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxProfileAllocatorWrapper.h"; path = "../../../../PxShared/src/pvd/include/PxProfileAllocatorWrapper.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02ded07f8d3d02ded0 /* include/PxPvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdClient.h"; path = "../../../../PxShared/src/pvd/include/PxPvdClient.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02df387f8d3d02df38 /* include/PxPvdDataStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStream.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStream.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02dfa07f8d3d02dfa0 /* include/PxPvdDataStreamHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStreamHelpers.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStreamHelpers.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02e0087f8d3d02e008 /* include/PxPvdErrorCodes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdErrorCodes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdErrorCodes.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02e0707f8d3d02e070 /* include/PxPvdObjectModelBaseTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdObjectModelBaseTypes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdObjectModelBaseTypes.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02e0d87f8d3d02e0d8 /* include/PxPvdRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdRenderBuffer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdRenderBuffer.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02e1407f8d3d02e140 /* include/PxPvdUserRenderer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdUserRenderer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdUserRenderer.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02e1a87f8d3d02e1a8 /* src/PxProfileEventImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxProfileEventImpl.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02e2107f8d3d02e210 /* src/PxPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvd.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvd.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02e2787f8d3d02e278 /* src/PxPvdDataStream.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDataStream.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDataStream.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02e2e07f8d3d02e2e0 /* src/PxPvdDefaultFileTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02e3487f8d3d02e348 /* src/PxPvdDefaultSocketTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02e3b07f8d3d02e3b0 /* src/PxPvdImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02e4187f8d3d02e418 /* src/PxPvdMemClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02e4807f8d3d02e480 /* src/PxPvdObjectModelMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02e4e87f8d3d02e4e8 /* src/PxPvdObjectRegistrar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02e5507f8d3d02e550 /* src/PxPvdProfileZoneClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02e5b87f8d3d02e5b8 /* src/PxPvdUserRenderer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderer.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderer.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02e6207f8d3d02e620 /* src/PxProfileBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileBase.h"; path = "../../../../PxShared/src/pvd/src/PxProfileBase.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02e6887f8d3d02e688 /* src/PxProfileCompileTimeEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileCompileTimeEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileCompileTimeEventFilter.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02e6f07f8d3d02e6f0 /* src/PxProfileContextProvider.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProvider.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProvider.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02e7587f8d3d02e758 /* src/PxProfileContextProviderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProviderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProviderImpl.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02e7c07f8d3d02e7c0 /* src/PxProfileDataBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataBuffer.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02e8287f8d3d02e828 /* src/PxProfileDataParsing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataParsing.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataParsing.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02e8907f8d3d02e890 /* src/PxProfileEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBuffer.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02e8f87f8d3d02e8f8 /* src/PxProfileEventBufferAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferAtomic.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferAtomic.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02e9607f8d3d02e960 /* src/PxProfileEventBufferClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClient.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClient.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02e9c87f8d3d02e9c8 /* src/PxProfileEventBufferClientManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClientManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClientManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02ea307f8d3d02ea30 /* src/PxProfileEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventFilter.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02ea987f8d3d02ea98 /* src/PxProfileEventHandler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventHandler.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventHandler.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02eb007f8d3d02eb00 /* src/PxProfileEventId.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventId.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventId.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02eb687f8d3d02eb68 /* src/PxProfileEventMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventMutex.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventMutex.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02ebd07f8d3d02ebd0 /* src/PxProfileEventNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventNames.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventNames.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02ec387f8d3d02ec38 /* src/PxProfileEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventParser.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02eca07f8d3d02eca0 /* src/PxProfileEventSender.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSender.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSender.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02ed087f8d3d02ed08 /* src/PxProfileEventSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSerialization.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSerialization.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02ed707f8d3d02ed70 /* src/PxProfileEventSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSystem.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSystem.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02edd87f8d3d02edd8 /* src/PxProfileEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEvents.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02ee407f8d3d02ee40 /* src/PxProfileMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemory.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemory.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02eea87f8d3d02eea8 /* src/PxProfileMemoryBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryBuffer.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02ef107f8d3d02ef10 /* src/PxProfileMemoryEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventBuffer.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02ef787f8d3d02ef78 /* src/PxProfileMemoryEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventParser.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02efe07f8d3d02efe0 /* src/PxProfileMemoryEventRecorder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventRecorder.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventRecorder.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02f0487f8d3d02f048 /* src/PxProfileMemoryEventReflexiveWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventReflexiveWriter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventReflexiveWriter.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02f0b07f8d3d02f0b0 /* src/PxProfileMemoryEventSummarizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventSummarizer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventSummarizer.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02f1187f8d3d02f118 /* src/PxProfileMemoryEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventTypes.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02f1807f8d3d02f180 /* src/PxProfileMemoryEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEvents.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02f1e87f8d3d02f1e8 /* src/PxProfileScopedEvent.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedEvent.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedEvent.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02f2507f8d3d02f250 /* src/PxProfileScopedMutexLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedMutexLock.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedMutexLock.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02f2b87f8d3d02f2b8 /* src/PxProfileZone.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZone.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZone.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02f3207f8d3d02f320 /* src/PxProfileZoneImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneImpl.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02f3887f8d3d02f388 /* src/PxProfileZoneManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02f3f07f8d3d02f3f0 /* src/PxProfileZoneManagerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManagerImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManagerImpl.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02f4587f8d3d02f458 /* src/PxPvdBits.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdBits.h"; path = "../../../../PxShared/src/pvd/src/PxPvdBits.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02f4c07f8d3d02f4c0 /* src/PxPvdByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdByteStreams.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02f5287f8d3d02f528 /* src/PxPvdCommStreamEventSink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEventSink.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEventSink.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02f5907f8d3d02f590 /* src/PxPvdCommStreamEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEvents.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEvents.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02f5f87f8d3d02f5f8 /* src/PxPvdCommStreamSDKEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamSDKEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamSDKEventTypes.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02f6607f8d3d02f660 /* src/PxPvdCommStreamTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamTypes.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02f6c87f8d3d02f6c8 /* src/PxPvdDefaultFileTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02f7307f8d3d02f730 /* src/PxPvdDefaultSocketTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02f7987f8d3d02f798 /* src/PxPvdFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdFoundation.h"; path = "../../../../PxShared/src/pvd/src/PxPvdFoundation.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02f8007f8d3d02f800 /* src/PxPvdImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02f8687f8d3d02f868 /* src/PxPvdInternalByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdInternalByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdInternalByteStreams.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02f8d07f8d3d02f8d0 /* src/PxPvdMarshalling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMarshalling.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMarshalling.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02f9387f8d3d02f938 /* src/PxPvdMemClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02f9a07f8d3d02f9a0 /* src/PxPvdObjectModel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModel.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModel.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02fa087f8d3d02fa08 /* src/PxPvdObjectModelInternalTypeDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypeDefs.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypeDefs.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02fa707f8d3d02fa70 /* src/PxPvdObjectModelInternalTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypes.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02fad87f8d3d02fad8 /* src/PxPvdObjectModelMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02fb407f8d3d02fb40 /* src/PxPvdObjectRegistrar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02fba87f8d3d02fba8 /* src/PxPvdProfileZoneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02fc107f8d3d02fc10 /* src/PxPvdUserRenderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderImpl.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d02fc787f8d3d02fc78 /* 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 */
- FFF2d17098707ff3d1709870 /* Resources */ = {
+ FFF23cd0c6b07f8d3cd0c6b0 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2282,7 +2282,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFCd17098707ff3d1709870 /* Frameworks */ = {
+ FFFC3cd0c6b07f8d3cd0c6b0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2292,21 +2292,21 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF8d17098707ff3d1709870 /* Sources */ = {
+ FFF83cd0c6b07f8d3cd0c6b0 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFFd200f5a87ff3d200f5a8,
- FFFFd200f6107ff3d200f610,
- FFFFd200f6787ff3d200f678,
- FFFFd200f6e07ff3d200f6e0,
- FFFFd200f7487ff3d200f748,
- FFFFd200f7b07ff3d200f7b0,
- FFFFd200f8187ff3d200f818,
- FFFFd200f8807ff3d200f880,
- FFFFd200f8e87ff3d200f8e8,
- FFFFd200f9507ff3d200f950,
- FFFFd200f9b87ff3d200f9b8,
+ FFFF3d02e1a87f8d3d02e1a8,
+ FFFF3d02e2107f8d3d02e210,
+ FFFF3d02e2787f8d3d02e278,
+ FFFF3d02e2e07f8d3d02e2e0,
+ FFFF3d02e3487f8d3d02e348,
+ FFFF3d02e3b07f8d3d02e3b0,
+ FFFF3d02e4187f8d3d02e418,
+ FFFF3d02e4807f8d3d02e480,
+ FFFF3d02e4e87f8d3d02e4e8,
+ FFFF3d02e5507f8d3d02e550,
+ FFFF3d02e5b87f8d3d02e5b8,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -2315,108 +2315,108 @@
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
- FFF4d170bd707ff3d170bd70 /* PBXTargetDependency */ = {
+ FFF43cd0b7d07f8d3cd0b7d0 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFAd108e7507ff3d108e750 /* PxFoundation */;
- targetProxy = FFF5d108e7507ff3d108e750 /* PBXContainerItemProxy */;
+ target = FFFA3c9892007f8d3c989200 /* PxFoundation */;
+ targetProxy = FFF53c9892007f8d3c989200 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of LowLevel */
- FFFFd1615ae07ff3d1615ae0 /* px_globals.cpp in API Source */= { isa = PBXBuildFile; fileRef = FFFDd1615ae07ff3d1615ae0 /* px_globals.cpp */; };
- FFFFd160f7907ff3d160f790 /* PxsCCD.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDd160f7907ff3d160f790 /* PxsCCD.cpp */; };
- FFFFd160f7f87ff3d160f7f8 /* PxsContactManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDd160f7f87ff3d160f7f8 /* PxsContactManager.cpp */; };
- FFFFd160f8607ff3d160f860 /* PxsContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDd160f8607ff3d160f860 /* PxsContext.cpp */; };
- FFFFd160f8c87ff3d160f8c8 /* PxsDefaultMemoryManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDd160f8c87ff3d160f8c8 /* PxsDefaultMemoryManager.cpp */; };
- FFFFd160f9307ff3d160f930 /* PxsIslandSim.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDd160f9307ff3d160f930 /* PxsIslandSim.cpp */; };
- FFFFd160f9987ff3d160f998 /* PxsMaterialCombiner.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDd160f9987ff3d160f998 /* PxsMaterialCombiner.cpp */; };
- FFFFd160fa007ff3d160fa00 /* PxsNphaseImplementationContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDd160fa007ff3d160fa00 /* PxsNphaseImplementationContext.cpp */; };
- FFFFd160fa687ff3d160fa68 /* PxsSimpleIslandManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDd160fa687ff3d160fa68 /* PxsSimpleIslandManager.cpp */; };
- FFFFd09d60007ff3d09d6000 /* collision/PxcContact.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDd09d60007ff3d09d6000 /* collision/PxcContact.cpp */; };
- FFFFd09d60687ff3d09d6068 /* pipeline/PxcContactCache.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDd09d60687ff3d09d6068 /* pipeline/PxcContactCache.cpp */; };
- FFFFd09d60d07ff3d09d60d0 /* pipeline/PxcContactMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDd09d60d07ff3d09d60d0 /* pipeline/PxcContactMethodImpl.cpp */; };
- FFFFd09d61387ff3d09d6138 /* pipeline/PxcMaterialHeightField.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDd09d61387ff3d09d6138 /* pipeline/PxcMaterialHeightField.cpp */; };
- FFFFd09d61a07ff3d09d61a0 /* pipeline/PxcMaterialMesh.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDd09d61a07ff3d09d61a0 /* pipeline/PxcMaterialMesh.cpp */; };
- FFFFd09d62087ff3d09d6208 /* pipeline/PxcMaterialMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDd09d62087ff3d09d6208 /* pipeline/PxcMaterialMethodImpl.cpp */; };
- FFFFd09d62707ff3d09d6270 /* pipeline/PxcMaterialShape.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDd09d62707ff3d09d6270 /* pipeline/PxcMaterialShape.cpp */; };
- FFFFd09d62d87ff3d09d62d8 /* pipeline/PxcNpBatch.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDd09d62d87ff3d09d62d8 /* pipeline/PxcNpBatch.cpp */; };
- FFFFd09d63407ff3d09d6340 /* pipeline/PxcNpCacheStreamPair.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDd09d63407ff3d09d6340 /* pipeline/PxcNpCacheStreamPair.cpp */; };
- FFFFd09d63a87ff3d09d63a8 /* pipeline/PxcNpContactPrepShared.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDd09d63a87ff3d09d63a8 /* pipeline/PxcNpContactPrepShared.cpp */; };
- FFFFd09d64107ff3d09d6410 /* pipeline/PxcNpMemBlockPool.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDd09d64107ff3d09d6410 /* pipeline/PxcNpMemBlockPool.cpp */; };
- FFFFd09d64787ff3d09d6478 /* pipeline/PxcNpThreadContext.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDd09d64787ff3d09d6478 /* pipeline/PxcNpThreadContext.cpp */; };
+ FFFF3cc0cfa07f8d3cc0cfa0 /* px_globals.cpp in API Source */= { isa = PBXBuildFile; fileRef = FFFD3cc0cfa07f8d3cc0cfa0 /* px_globals.cpp */; };
+ FFFF3cc112007f8d3cc11200 /* PxsCCD.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD3cc112007f8d3cc11200 /* PxsCCD.cpp */; };
+ FFFF3cc112687f8d3cc11268 /* PxsContactManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD3cc112687f8d3cc11268 /* PxsContactManager.cpp */; };
+ FFFF3cc112d07f8d3cc112d0 /* PxsContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD3cc112d07f8d3cc112d0 /* PxsContext.cpp */; };
+ FFFF3cc113387f8d3cc11338 /* PxsDefaultMemoryManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD3cc113387f8d3cc11338 /* PxsDefaultMemoryManager.cpp */; };
+ FFFF3cc113a07f8d3cc113a0 /* PxsIslandSim.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD3cc113a07f8d3cc113a0 /* PxsIslandSim.cpp */; };
+ FFFF3cc114087f8d3cc11408 /* PxsMaterialCombiner.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD3cc114087f8d3cc11408 /* PxsMaterialCombiner.cpp */; };
+ FFFF3cc114707f8d3cc11470 /* PxsNphaseImplementationContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD3cc114707f8d3cc11470 /* PxsNphaseImplementationContext.cpp */; };
+ FFFF3cc114d87f8d3cc114d8 /* PxsSimpleIslandManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD3cc114d87f8d3cc114d8 /* PxsSimpleIslandManager.cpp */; };
+ FFFF3c1b58007f8d3c1b5800 /* collision/PxcContact.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD3c1b58007f8d3c1b5800 /* collision/PxcContact.cpp */; };
+ FFFF3c1b58687f8d3c1b5868 /* pipeline/PxcContactCache.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD3c1b58687f8d3c1b5868 /* pipeline/PxcContactCache.cpp */; };
+ FFFF3c1b58d07f8d3c1b58d0 /* pipeline/PxcContactMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD3c1b58d07f8d3c1b58d0 /* pipeline/PxcContactMethodImpl.cpp */; };
+ FFFF3c1b59387f8d3c1b5938 /* pipeline/PxcMaterialHeightField.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD3c1b59387f8d3c1b5938 /* pipeline/PxcMaterialHeightField.cpp */; };
+ FFFF3c1b59a07f8d3c1b59a0 /* pipeline/PxcMaterialMesh.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD3c1b59a07f8d3c1b59a0 /* pipeline/PxcMaterialMesh.cpp */; };
+ FFFF3c1b5a087f8d3c1b5a08 /* pipeline/PxcMaterialMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD3c1b5a087f8d3c1b5a08 /* pipeline/PxcMaterialMethodImpl.cpp */; };
+ FFFF3c1b5a707f8d3c1b5a70 /* pipeline/PxcMaterialShape.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD3c1b5a707f8d3c1b5a70 /* pipeline/PxcMaterialShape.cpp */; };
+ FFFF3c1b5ad87f8d3c1b5ad8 /* pipeline/PxcNpBatch.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD3c1b5ad87f8d3c1b5ad8 /* pipeline/PxcNpBatch.cpp */; };
+ FFFF3c1b5b407f8d3c1b5b40 /* pipeline/PxcNpCacheStreamPair.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD3c1b5b407f8d3c1b5b40 /* pipeline/PxcNpCacheStreamPair.cpp */; };
+ FFFF3c1b5ba87f8d3c1b5ba8 /* pipeline/PxcNpContactPrepShared.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD3c1b5ba87f8d3c1b5ba8 /* pipeline/PxcNpContactPrepShared.cpp */; };
+ FFFF3c1b5c107f8d3c1b5c10 /* pipeline/PxcNpMemBlockPool.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD3c1b5c107f8d3c1b5c10 /* pipeline/PxcNpMemBlockPool.cpp */; };
+ FFFF3c1b5c787f8d3c1b5c78 /* pipeline/PxcNpThreadContext.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD3c1b5c787f8d3c1b5c78 /* pipeline/PxcNpThreadContext.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFDd1610fe07ff3d1610fe0 /* LowLevel */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevel"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFDd1615ae07ff3d1615ae0 /* px_globals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "px_globals.cpp"; path = "../../LowLevel/API/src/px_globals.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd1617e507ff3d1617e50 /* PxsMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCore.h"; path = "../../LowLevel/API/include/PxsMaterialCore.h"; sourceTree = SOURCE_ROOT; };
- FFFDd1617eb87ff3d1617eb8 /* PxsMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialManager.h"; path = "../../LowLevel/API/include/PxsMaterialManager.h"; sourceTree = SOURCE_ROOT; };
- FFFDd1617f207ff3d1617f20 /* PxvConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvConfig.h"; path = "../../LowLevel/API/include/PxvConfig.h"; sourceTree = SOURCE_ROOT; };
- FFFDd1617f887ff3d1617f88 /* PxvContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvContext.h"; path = "../../LowLevel/API/include/PxvContext.h"; sourceTree = SOURCE_ROOT; };
- FFFDd1617ff07ff3d1617ff0 /* PxvDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvDynamics.h"; path = "../../LowLevel/API/include/PxvDynamics.h"; sourceTree = SOURCE_ROOT; };
- FFFDd16180587ff3d1618058 /* PxvGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGeometry.h"; path = "../../LowLevel/API/include/PxvGeometry.h"; sourceTree = SOURCE_ROOT; };
- FFFDd16180c07ff3d16180c0 /* PxvGlobals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGlobals.h"; path = "../../LowLevel/API/include/PxvGlobals.h"; sourceTree = SOURCE_ROOT; };
- FFFDd16181287ff3d1618128 /* PxvManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvManager.h"; path = "../../LowLevel/API/include/PxvManager.h"; sourceTree = SOURCE_ROOT; };
- FFFDd16181907ff3d1618190 /* PxvSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvSimStats.h"; path = "../../LowLevel/API/include/PxvSimStats.h"; sourceTree = SOURCE_ROOT; };
- FFFDd160f7907ff3d160f790 /* PxsCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.cpp"; path = "../../LowLevel/software/src/PxsCCD.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd160f7f87ff3d160f7f8 /* PxsContactManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.cpp"; path = "../../LowLevel/software/src/PxsContactManager.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd160f8607ff3d160f860 /* PxsContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.cpp"; path = "../../LowLevel/software/src/PxsContext.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd160f8c87ff3d160f8c8 /* PxsDefaultMemoryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.cpp"; path = "../../LowLevel/software/src/PxsDefaultMemoryManager.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd160f9307ff3d160f930 /* PxsIslandSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.cpp"; path = "../../LowLevel/software/src/PxsIslandSim.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd160f9987ff3d160f998 /* PxsMaterialCombiner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.cpp"; path = "../../LowLevel/software/src/PxsMaterialCombiner.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd160fa007ff3d160fa00 /* PxsNphaseImplementationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.cpp"; path = "../../LowLevel/software/src/PxsNphaseImplementationContext.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd160fa687ff3d160fa68 /* PxsSimpleIslandManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.cpp"; path = "../../LowLevel/software/src/PxsSimpleIslandManager.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09d76007ff3d09d7600 /* PxsBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsBodySim.h"; path = "../../LowLevel/software/include/PxsBodySim.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09d76687ff3d09d7668 /* PxsCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.h"; path = "../../LowLevel/software/include/PxsCCD.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09d76d07ff3d09d76d0 /* PxsContactManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.h"; path = "../../LowLevel/software/include/PxsContactManager.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09d77387ff3d09d7738 /* PxsContactManagerState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManagerState.h"; path = "../../LowLevel/software/include/PxsContactManagerState.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09d77a07ff3d09d77a0 /* PxsContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.h"; path = "../../LowLevel/software/include/PxsContext.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09d78087ff3d09d7808 /* PxsDefaultMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.h"; path = "../../LowLevel/software/include/PxsDefaultMemoryManager.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09d78707ff3d09d7870 /* PxsHeapMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsHeapMemoryAllocator.h"; path = "../../LowLevel/software/include/PxsHeapMemoryAllocator.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09d78d87ff3d09d78d8 /* PxsIncrementalConstraintPartitioning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIncrementalConstraintPartitioning.h"; path = "../../LowLevel/software/include/PxsIncrementalConstraintPartitioning.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09d79407ff3d09d7940 /* PxsIslandManagerTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandManagerTypes.h"; path = "../../LowLevel/software/include/PxsIslandManagerTypes.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09d79a87ff3d09d79a8 /* PxsIslandSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.h"; path = "../../LowLevel/software/include/PxsIslandSim.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09d7a107ff3d09d7a10 /* PxsKernelWrangler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsKernelWrangler.h"; path = "../../LowLevel/software/include/PxsKernelWrangler.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09d7a787ff3d09d7a78 /* PxsMaterialCombiner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.h"; path = "../../LowLevel/software/include/PxsMaterialCombiner.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09d7ae07ff3d09d7ae0 /* PxsMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMemoryManager.h"; path = "../../LowLevel/software/include/PxsMemoryManager.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09d7b487ff3d09d7b48 /* PxsNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxsNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09d7bb07ff3d09d7bb0 /* PxsRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsRigidBody.h"; path = "../../LowLevel/software/include/PxsRigidBody.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09d7c187ff3d09d7c18 /* PxsShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsShapeSim.h"; path = "../../LowLevel/software/include/PxsShapeSim.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09d7c807ff3d09d7c80 /* PxsSimpleIslandManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.h"; path = "../../LowLevel/software/include/PxsSimpleIslandManager.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09d7ce87ff3d09d7ce8 /* PxsSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimulationController.h"; path = "../../LowLevel/software/include/PxsSimulationController.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09d7d507ff3d09d7d50 /* PxsTransformCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsTransformCache.h"; path = "../../LowLevel/software/include/PxsTransformCache.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09d7db87ff3d09d7db8 /* PxvNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxvNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09d60007ff3d09d6000 /* collision/PxcContact.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContact.cpp"; path = "../../LowLevel/common/src/collision/PxcContact.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09d60687ff3d09d6068 /* pipeline/PxcContactCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactCache.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09d60d07ff3d09d60d0 /* pipeline/PxcContactMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactMethodImpl.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09d61387ff3d09d6138 /* pipeline/PxcMaterialHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialHeightField.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialHeightField.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09d61a07ff3d09d61a0 /* pipeline/PxcMaterialMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMesh.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMesh.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09d62087ff3d09d6208 /* pipeline/PxcMaterialMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMethodImpl.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09d62707ff3d09d6270 /* pipeline/PxcMaterialShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialShape.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialShape.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09d62d87ff3d09d62d8 /* pipeline/PxcNpBatch.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpBatch.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09d63407ff3d09d6340 /* pipeline/PxcNpCacheStreamPair.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpCacheStreamPair.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09d63a87ff3d09d63a8 /* pipeline/PxcNpContactPrepShared.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpContactPrepShared.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09d64107ff3d09d6410 /* pipeline/PxcNpMemBlockPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpMemBlockPool.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09d64787ff3d09d6478 /* pipeline/PxcNpThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpThreadContext.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09d68007ff3d09d6800 /* collision/PxcContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContactMethodImpl.h"; path = "../../LowLevel/common/include/collision/PxcContactMethodImpl.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09d68687ff3d09d6868 /* pipeline/PxcCCDStateStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcCCDStateStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcCCDStateStreamPair.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09d68d07ff3d09d68d0 /* pipeline/PxcConstraintBlockStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcConstraintBlockStream.h"; path = "../../LowLevel/common/include/pipeline/PxcConstraintBlockStream.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09d69387ff3d09d6938 /* pipeline/PxcContactCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.h"; path = "../../LowLevel/common/include/pipeline/PxcContactCache.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09d69a07ff3d09d69a0 /* pipeline/PxcMaterialMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.h"; path = "../../LowLevel/common/include/pipeline/PxcMaterialMethodImpl.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09d6a087ff3d09d6a08 /* pipeline/PxcNpBatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.h"; path = "../../LowLevel/common/include/pipeline/PxcNpBatch.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09d6a707ff3d09d6a70 /* pipeline/PxcNpCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCache.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCache.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09d6ad87ff3d09d6ad8 /* pipeline/PxcNpCacheStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCacheStreamPair.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09d6b407ff3d09d6b40 /* pipeline/PxcNpContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.h"; path = "../../LowLevel/common/include/pipeline/PxcNpContactPrepShared.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09d6ba87ff3d09d6ba8 /* pipeline/PxcNpMemBlockPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.h"; path = "../../LowLevel/common/include/pipeline/PxcNpMemBlockPool.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09d6c107ff3d09d6c10 /* pipeline/PxcNpThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.h"; path = "../../LowLevel/common/include/pipeline/PxcNpThreadContext.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09d6c787ff3d09d6c78 /* pipeline/PxcNpWorkUnit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpWorkUnit.h"; path = "../../LowLevel/common/include/pipeline/PxcNpWorkUnit.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09d6ce07ff3d09d6ce0 /* pipeline/PxcRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcRigidBody.h"; path = "../../LowLevel/common/include/pipeline/PxcRigidBody.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09d6d487ff3d09d6d48 /* utils/PxcScratchAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "utils/PxcScratchAllocator.h"; path = "../../LowLevel/common/include/utils/PxcScratchAllocator.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09d6db07ff3d09d6db0 /* utils/PxcThreadCoherentCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "utils/PxcThreadCoherentCache.h"; path = "../../LowLevel/common/include/utils/PxcThreadCoherentCache.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3cc0c2b07f8d3cc0c2b0 /* LowLevel */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevel"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFD3cc0cfa07f8d3cc0cfa0 /* px_globals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "px_globals.cpp"; path = "../../LowLevel/API/src/px_globals.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3cc100b07f8d3cc100b0 /* PxsMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCore.h"; path = "../../LowLevel/API/include/PxsMaterialCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3cc101187f8d3cc10118 /* PxsMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialManager.h"; path = "../../LowLevel/API/include/PxsMaterialManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3cc101807f8d3cc10180 /* PxvConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvConfig.h"; path = "../../LowLevel/API/include/PxvConfig.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3cc101e87f8d3cc101e8 /* PxvContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvContext.h"; path = "../../LowLevel/API/include/PxvContext.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3cc102507f8d3cc10250 /* PxvDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvDynamics.h"; path = "../../LowLevel/API/include/PxvDynamics.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3cc102b87f8d3cc102b8 /* PxvGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGeometry.h"; path = "../../LowLevel/API/include/PxvGeometry.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3cc103207f8d3cc10320 /* PxvGlobals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGlobals.h"; path = "../../LowLevel/API/include/PxvGlobals.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3cc103887f8d3cc10388 /* PxvManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvManager.h"; path = "../../LowLevel/API/include/PxvManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3cc103f07f8d3cc103f0 /* PxvSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvSimStats.h"; path = "../../LowLevel/API/include/PxvSimStats.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3cc112007f8d3cc11200 /* PxsCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.cpp"; path = "../../LowLevel/software/src/PxsCCD.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3cc112687f8d3cc11268 /* PxsContactManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.cpp"; path = "../../LowLevel/software/src/PxsContactManager.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3cc112d07f8d3cc112d0 /* PxsContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.cpp"; path = "../../LowLevel/software/src/PxsContext.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3cc113387f8d3cc11338 /* PxsDefaultMemoryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.cpp"; path = "../../LowLevel/software/src/PxsDefaultMemoryManager.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3cc113a07f8d3cc113a0 /* PxsIslandSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.cpp"; path = "../../LowLevel/software/src/PxsIslandSim.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3cc114087f8d3cc11408 /* PxsMaterialCombiner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.cpp"; path = "../../LowLevel/software/src/PxsMaterialCombiner.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3cc114707f8d3cc11470 /* PxsNphaseImplementationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.cpp"; path = "../../LowLevel/software/src/PxsNphaseImplementationContext.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3cc114d87f8d3cc114d8 /* PxsSimpleIslandManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.cpp"; path = "../../LowLevel/software/src/PxsSimpleIslandManager.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1b6e007f8d3c1b6e00 /* PxsBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsBodySim.h"; path = "../../LowLevel/software/include/PxsBodySim.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1b6e687f8d3c1b6e68 /* PxsCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.h"; path = "../../LowLevel/software/include/PxsCCD.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1b6ed07f8d3c1b6ed0 /* PxsContactManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.h"; path = "../../LowLevel/software/include/PxsContactManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1b6f387f8d3c1b6f38 /* PxsContactManagerState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManagerState.h"; path = "../../LowLevel/software/include/PxsContactManagerState.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1b6fa07f8d3c1b6fa0 /* PxsContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.h"; path = "../../LowLevel/software/include/PxsContext.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1b70087f8d3c1b7008 /* PxsDefaultMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.h"; path = "../../LowLevel/software/include/PxsDefaultMemoryManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1b70707f8d3c1b7070 /* PxsHeapMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsHeapMemoryAllocator.h"; path = "../../LowLevel/software/include/PxsHeapMemoryAllocator.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1b70d87f8d3c1b70d8 /* PxsIncrementalConstraintPartitioning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIncrementalConstraintPartitioning.h"; path = "../../LowLevel/software/include/PxsIncrementalConstraintPartitioning.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1b71407f8d3c1b7140 /* PxsIslandManagerTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandManagerTypes.h"; path = "../../LowLevel/software/include/PxsIslandManagerTypes.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1b71a87f8d3c1b71a8 /* PxsIslandSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.h"; path = "../../LowLevel/software/include/PxsIslandSim.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1b72107f8d3c1b7210 /* PxsKernelWrangler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsKernelWrangler.h"; path = "../../LowLevel/software/include/PxsKernelWrangler.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1b72787f8d3c1b7278 /* PxsMaterialCombiner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.h"; path = "../../LowLevel/software/include/PxsMaterialCombiner.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1b72e07f8d3c1b72e0 /* PxsMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMemoryManager.h"; path = "../../LowLevel/software/include/PxsMemoryManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1b73487f8d3c1b7348 /* PxsNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxsNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1b73b07f8d3c1b73b0 /* PxsRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsRigidBody.h"; path = "../../LowLevel/software/include/PxsRigidBody.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1b74187f8d3c1b7418 /* PxsShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsShapeSim.h"; path = "../../LowLevel/software/include/PxsShapeSim.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1b74807f8d3c1b7480 /* PxsSimpleIslandManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.h"; path = "../../LowLevel/software/include/PxsSimpleIslandManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1b74e87f8d3c1b74e8 /* PxsSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimulationController.h"; path = "../../LowLevel/software/include/PxsSimulationController.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1b75507f8d3c1b7550 /* PxsTransformCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsTransformCache.h"; path = "../../LowLevel/software/include/PxsTransformCache.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1b75b87f8d3c1b75b8 /* PxvNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxvNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1b58007f8d3c1b5800 /* collision/PxcContact.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContact.cpp"; path = "../../LowLevel/common/src/collision/PxcContact.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1b58687f8d3c1b5868 /* pipeline/PxcContactCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactCache.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1b58d07f8d3c1b58d0 /* pipeline/PxcContactMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactMethodImpl.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1b59387f8d3c1b5938 /* pipeline/PxcMaterialHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialHeightField.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialHeightField.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1b59a07f8d3c1b59a0 /* pipeline/PxcMaterialMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMesh.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMesh.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1b5a087f8d3c1b5a08 /* pipeline/PxcMaterialMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMethodImpl.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1b5a707f8d3c1b5a70 /* pipeline/PxcMaterialShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialShape.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialShape.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1b5ad87f8d3c1b5ad8 /* pipeline/PxcNpBatch.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpBatch.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1b5b407f8d3c1b5b40 /* pipeline/PxcNpCacheStreamPair.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpCacheStreamPair.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1b5ba87f8d3c1b5ba8 /* pipeline/PxcNpContactPrepShared.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpContactPrepShared.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1b5c107f8d3c1b5c10 /* pipeline/PxcNpMemBlockPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpMemBlockPool.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1b5c787f8d3c1b5c78 /* pipeline/PxcNpThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpThreadContext.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1b60007f8d3c1b6000 /* collision/PxcContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContactMethodImpl.h"; path = "../../LowLevel/common/include/collision/PxcContactMethodImpl.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1b60687f8d3c1b6068 /* pipeline/PxcCCDStateStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcCCDStateStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcCCDStateStreamPair.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1b60d07f8d3c1b60d0 /* pipeline/PxcConstraintBlockStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcConstraintBlockStream.h"; path = "../../LowLevel/common/include/pipeline/PxcConstraintBlockStream.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1b61387f8d3c1b6138 /* pipeline/PxcContactCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.h"; path = "../../LowLevel/common/include/pipeline/PxcContactCache.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1b61a07f8d3c1b61a0 /* pipeline/PxcMaterialMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.h"; path = "../../LowLevel/common/include/pipeline/PxcMaterialMethodImpl.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1b62087f8d3c1b6208 /* pipeline/PxcNpBatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.h"; path = "../../LowLevel/common/include/pipeline/PxcNpBatch.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1b62707f8d3c1b6270 /* pipeline/PxcNpCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCache.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCache.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1b62d87f8d3c1b62d8 /* pipeline/PxcNpCacheStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCacheStreamPair.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1b63407f8d3c1b6340 /* pipeline/PxcNpContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.h"; path = "../../LowLevel/common/include/pipeline/PxcNpContactPrepShared.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1b63a87f8d3c1b63a8 /* pipeline/PxcNpMemBlockPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.h"; path = "../../LowLevel/common/include/pipeline/PxcNpMemBlockPool.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1b64107f8d3c1b6410 /* pipeline/PxcNpThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.h"; path = "../../LowLevel/common/include/pipeline/PxcNpThreadContext.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1b64787f8d3c1b6478 /* pipeline/PxcNpWorkUnit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpWorkUnit.h"; path = "../../LowLevel/common/include/pipeline/PxcNpWorkUnit.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1b64e07f8d3c1b64e0 /* pipeline/PxcRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcRigidBody.h"; path = "../../LowLevel/common/include/pipeline/PxcRigidBody.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1b65487f8d3c1b6548 /* utils/PxcScratchAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "utils/PxcScratchAllocator.h"; path = "../../LowLevel/common/include/utils/PxcScratchAllocator.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3c1b65b07f8d3c1b65b0 /* 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 */
- FFF2d1610fe07ff3d1610fe0 /* Resources */ = {
+ FFF23cc0c2b07f8d3cc0c2b0 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2426,7 +2426,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFCd1610fe07ff3d1610fe0 /* Frameworks */ = {
+ FFFC3cc0c2b07f8d3cc0c2b0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2436,31 +2436,31 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF8d1610fe07ff3d1610fe0 /* Sources */ = {
+ FFF83cc0c2b07f8d3cc0c2b0 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFFd1615ae07ff3d1615ae0,
- FFFFd160f7907ff3d160f790,
- FFFFd160f7f87ff3d160f7f8,
- FFFFd160f8607ff3d160f860,
- FFFFd160f8c87ff3d160f8c8,
- FFFFd160f9307ff3d160f930,
- FFFFd160f9987ff3d160f998,
- FFFFd160fa007ff3d160fa00,
- FFFFd160fa687ff3d160fa68,
- FFFFd09d60007ff3d09d6000,
- FFFFd09d60687ff3d09d6068,
- FFFFd09d60d07ff3d09d60d0,
- FFFFd09d61387ff3d09d6138,
- FFFFd09d61a07ff3d09d61a0,
- FFFFd09d62087ff3d09d6208,
- FFFFd09d62707ff3d09d6270,
- FFFFd09d62d87ff3d09d62d8,
- FFFFd09d63407ff3d09d6340,
- FFFFd09d63a87ff3d09d63a8,
- FFFFd09d64107ff3d09d6410,
- FFFFd09d64787ff3d09d6478,
+ FFFF3cc0cfa07f8d3cc0cfa0,
+ FFFF3cc112007f8d3cc11200,
+ FFFF3cc112687f8d3cc11268,
+ FFFF3cc112d07f8d3cc112d0,
+ FFFF3cc113387f8d3cc11338,
+ FFFF3cc113a07f8d3cc113a0,
+ FFFF3cc114087f8d3cc11408,
+ FFFF3cc114707f8d3cc11470,
+ FFFF3cc114d87f8d3cc114d8,
+ FFFF3c1b58007f8d3c1b5800,
+ FFFF3c1b58687f8d3c1b5868,
+ FFFF3c1b58d07f8d3c1b58d0,
+ FFFF3c1b59387f8d3c1b5938,
+ FFFF3c1b59a07f8d3c1b59a0,
+ FFFF3c1b5a087f8d3c1b5a08,
+ FFFF3c1b5a707f8d3c1b5a70,
+ FFFF3c1b5ad87f8d3c1b5ad8,
+ FFFF3c1b5b407f8d3c1b5b40,
+ FFFF3c1b5ba87f8d3c1b5ba8,
+ FFFF3c1b5c107f8d3c1b5c10,
+ FFFF3c1b5c787f8d3c1b5c78,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -2472,38 +2472,38 @@
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of LowLevelAABB */
- FFFFd09dcc707ff3d09dcc70 /* BpBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd09dcc707ff3d09dcc70 /* BpBroadPhase.cpp */; };
- FFFFd09dccd87ff3d09dccd8 /* BpBroadPhaseMBP.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd09dccd87ff3d09dccd8 /* BpBroadPhaseMBP.cpp */; };
- FFFFd09dcd407ff3d09dcd40 /* BpBroadPhaseSap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd09dcd407ff3d09dcd40 /* BpBroadPhaseSap.cpp */; };
- FFFFd09dcda87ff3d09dcda8 /* BpBroadPhaseSapAux.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd09dcda87ff3d09dcda8 /* BpBroadPhaseSapAux.cpp */; };
- FFFFd09dce107ff3d09dce10 /* BpMBPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd09dce107ff3d09dce10 /* BpMBPTasks.cpp */; };
- FFFFd09dce787ff3d09dce78 /* BpSAPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd09dce787ff3d09dce78 /* BpSAPTasks.cpp */; };
- FFFFd09dcee07ff3d09dcee0 /* BpSimpleAABBManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd09dcee07ff3d09dcee0 /* BpSimpleAABBManager.cpp */; };
+ FFFF3d0336707f8d3d033670 /* BpBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d0336707f8d3d033670 /* BpBroadPhase.cpp */; };
+ FFFF3d0336d87f8d3d0336d8 /* BpBroadPhaseMBP.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d0336d87f8d3d0336d8 /* BpBroadPhaseMBP.cpp */; };
+ FFFF3d0337407f8d3d033740 /* BpBroadPhaseSap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d0337407f8d3d033740 /* BpBroadPhaseSap.cpp */; };
+ FFFF3d0337a87f8d3d0337a8 /* BpBroadPhaseSapAux.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d0337a87f8d3d0337a8 /* BpBroadPhaseSapAux.cpp */; };
+ FFFF3d0338107f8d3d033810 /* BpMBPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d0338107f8d3d033810 /* BpMBPTasks.cpp */; };
+ FFFF3d0338787f8d3d033878 /* BpSAPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d0338787f8d3d033878 /* BpSAPTasks.cpp */; };
+ FFFF3d0338e07f8d3d0338e0 /* BpSimpleAABBManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d0338e07f8d3d0338e0 /* BpSimpleAABBManager.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFDd1635bb07ff3d1635bb0 /* LowLevelAABB */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelAABB"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFDd162ed407ff3d162ed40 /* BpAABBManagerTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpAABBManagerTasks.h"; path = "../../LowLevelAABB/include/BpAABBManagerTasks.h"; sourceTree = SOURCE_ROOT; };
- FFFDd162eda87ff3d162eda8 /* BpBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.h"; path = "../../LowLevelAABB/include/BpBroadPhase.h"; sourceTree = SOURCE_ROOT; };
- FFFDd162ee107ff3d162ee10 /* BpBroadPhaseUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseUpdate.h"; path = "../../LowLevelAABB/include/BpBroadPhaseUpdate.h"; sourceTree = SOURCE_ROOT; };
- FFFDd162ee787ff3d162ee78 /* BpSimpleAABBManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.h"; path = "../../LowLevelAABB/include/BpSimpleAABBManager.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09dca007ff3d09dca00 /* BpBroadPhaseMBP.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09dca687ff3d09dca68 /* BpBroadPhaseMBPCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBPCommon.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBPCommon.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09dcad07ff3d09dcad0 /* BpBroadPhaseSap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09dcb387ff3d09dcb38 /* BpBroadPhaseSapAux.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09dcba07ff3d09dcba0 /* BpMBPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.h"; path = "../../LowLevelAABB/src/BpMBPTasks.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09dcc087ff3d09dcc08 /* BpSAPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.h"; path = "../../LowLevelAABB/src/BpSAPTasks.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09dcc707ff3d09dcc70 /* BpBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.cpp"; path = "../../LowLevelAABB/src/BpBroadPhase.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09dccd87ff3d09dccd8 /* BpBroadPhaseMBP.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09dcd407ff3d09dcd40 /* BpBroadPhaseSap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09dcda87ff3d09dcda8 /* BpBroadPhaseSapAux.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09dce107ff3d09dce10 /* BpMBPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.cpp"; path = "../../LowLevelAABB/src/BpMBPTasks.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09dce787ff3d09dce78 /* BpSAPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.cpp"; path = "../../LowLevelAABB/src/BpSAPTasks.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09dcee07ff3d09dcee0 /* BpSimpleAABBManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.cpp"; path = "../../LowLevelAABB/src/BpSimpleAABBManager.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3cf17c907f8d3cf17c90 /* LowLevelAABB */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelAABB"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFD3cf1a3907f8d3cf1a390 /* BpAABBManagerTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpAABBManagerTasks.h"; path = "../../LowLevelAABB/include/BpAABBManagerTasks.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3cf1a3f87f8d3cf1a3f8 /* BpBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.h"; path = "../../LowLevelAABB/include/BpBroadPhase.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3cf1a4607f8d3cf1a460 /* BpBroadPhaseUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseUpdate.h"; path = "../../LowLevelAABB/include/BpBroadPhaseUpdate.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3cf1a4c87f8d3cf1a4c8 /* BpSimpleAABBManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.h"; path = "../../LowLevelAABB/include/BpSimpleAABBManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0334007f8d3d033400 /* BpBroadPhaseMBP.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0334687f8d3d033468 /* BpBroadPhaseMBPCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBPCommon.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBPCommon.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0334d07f8d3d0334d0 /* BpBroadPhaseSap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0335387f8d3d033538 /* BpBroadPhaseSapAux.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0335a07f8d3d0335a0 /* BpMBPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.h"; path = "../../LowLevelAABB/src/BpMBPTasks.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0336087f8d3d033608 /* BpSAPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.h"; path = "../../LowLevelAABB/src/BpSAPTasks.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0336707f8d3d033670 /* BpBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.cpp"; path = "../../LowLevelAABB/src/BpBroadPhase.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0336d87f8d3d0336d8 /* BpBroadPhaseMBP.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0337407f8d3d033740 /* BpBroadPhaseSap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0337a87f8d3d0337a8 /* BpBroadPhaseSapAux.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0338107f8d3d033810 /* BpMBPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.cpp"; path = "../../LowLevelAABB/src/BpMBPTasks.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0338787f8d3d033878 /* BpSAPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.cpp"; path = "../../LowLevelAABB/src/BpSAPTasks.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0338e07f8d3d0338e0 /* BpSimpleAABBManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.cpp"; path = "../../LowLevelAABB/src/BpSimpleAABBManager.cpp"; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */
/* Begin PBXResourcesBuildPhase section */
- FFF2d1635bb07ff3d1635bb0 /* Resources */ = {
+ FFF23cf17c907f8d3cf17c90 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2513,7 +2513,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFCd1635bb07ff3d1635bb0 /* Frameworks */ = {
+ FFFC3cf17c907f8d3cf17c90 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2523,17 +2523,17 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF8d1635bb07ff3d1635bb0 /* Sources */ = {
+ FFF83cf17c907f8d3cf17c90 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFFd09dcc707ff3d09dcc70,
- FFFFd09dccd87ff3d09dccd8,
- FFFFd09dcd407ff3d09dcd40,
- FFFFd09dcda87ff3d09dcda8,
- FFFFd09dce107ff3d09dce10,
- FFFFd09dce787ff3d09dce78,
- FFFFd09dcee07ff3d09dcee0,
+ FFFF3d0336707f8d3d033670,
+ FFFF3d0336d87f8d3d0336d8,
+ FFFF3d0337407f8d3d033740,
+ FFFF3d0337a87f8d3d0337a8,
+ FFFF3d0338107f8d3d033810,
+ FFFF3d0338787f8d3d033878,
+ FFFF3d0338e07f8d3d0338e0,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -2545,105 +2545,105 @@
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of LowLevelDynamics */
- FFFFd18188007ff3d1818800 /* DyArticulation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDd18188007ff3d1818800 /* DyArticulation.cpp */; };
- FFFFd18188687ff3d1818868 /* DyArticulationContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDd18188687ff3d1818868 /* DyArticulationContactPrep.cpp */; };
- FFFFd18188d07ff3d18188d0 /* DyArticulationContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDd18188d07ff3d18188d0 /* DyArticulationContactPrepPF.cpp */; };
- FFFFd18189387ff3d1818938 /* DyArticulationHelper.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDd18189387ff3d1818938 /* DyArticulationHelper.cpp */; };
- FFFFd18189a07ff3d18189a0 /* DyArticulationSIMD.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDd18189a07ff3d18189a0 /* DyArticulationSIMD.cpp */; };
- FFFFd1818a087ff3d1818a08 /* DyArticulationScalar.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDd1818a087ff3d1818a08 /* DyArticulationScalar.cpp */; };
- FFFFd1818a707ff3d1818a70 /* DyConstraintPartition.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDd1818a707ff3d1818a70 /* DyConstraintPartition.cpp */; };
- FFFFd1818ad87ff3d1818ad8 /* DyConstraintSetup.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDd1818ad87ff3d1818ad8 /* DyConstraintSetup.cpp */; };
- FFFFd1818b407ff3d1818b40 /* DyConstraintSetupBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDd1818b407ff3d1818b40 /* DyConstraintSetupBlock.cpp */; };
- FFFFd1818ba87ff3d1818ba8 /* DyContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDd1818ba87ff3d1818ba8 /* DyContactPrep.cpp */; };
- FFFFd1818c107ff3d1818c10 /* DyContactPrep4.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDd1818c107ff3d1818c10 /* DyContactPrep4.cpp */; };
- FFFFd1818c787ff3d1818c78 /* DyContactPrep4PF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDd1818c787ff3d1818c78 /* DyContactPrep4PF.cpp */; };
- FFFFd1818ce07ff3d1818ce0 /* DyContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDd1818ce07ff3d1818ce0 /* DyContactPrepPF.cpp */; };
- FFFFd1818d487ff3d1818d48 /* DyDynamics.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDd1818d487ff3d1818d48 /* DyDynamics.cpp */; };
- FFFFd1818db07ff3d1818db0 /* DyFrictionCorrelation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDd1818db07ff3d1818db0 /* DyFrictionCorrelation.cpp */; };
- FFFFd1818e187ff3d1818e18 /* DyRigidBodyToSolverBody.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDd1818e187ff3d1818e18 /* DyRigidBodyToSolverBody.cpp */; };
- FFFFd1818e807ff3d1818e80 /* DySolverConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDd1818e807ff3d1818e80 /* DySolverConstraints.cpp */; };
- FFFFd1818ee87ff3d1818ee8 /* DySolverConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDd1818ee87ff3d1818ee8 /* DySolverConstraintsBlock.cpp */; };
- FFFFd1818f507ff3d1818f50 /* DySolverControl.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDd1818f507ff3d1818f50 /* DySolverControl.cpp */; };
- FFFFd1818fb87ff3d1818fb8 /* DySolverControlPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDd1818fb87ff3d1818fb8 /* DySolverControlPF.cpp */; };
- FFFFd18190207ff3d1819020 /* DySolverPFConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDd18190207ff3d1819020 /* DySolverPFConstraints.cpp */; };
- FFFFd18190887ff3d1819088 /* DySolverPFConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDd18190887ff3d1819088 /* DySolverPFConstraintsBlock.cpp */; };
- FFFFd18190f07ff3d18190f0 /* DyThreadContext.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDd18190f07ff3d18190f0 /* DyThreadContext.cpp */; };
- FFFFd18191587ff3d1819158 /* DyThresholdTable.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDd18191587ff3d1819158 /* DyThresholdTable.cpp */; };
+ FFFF3d03f8007f8d3d03f800 /* DyArticulation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD3d03f8007f8d3d03f800 /* DyArticulation.cpp */; };
+ FFFF3d03f8687f8d3d03f868 /* DyArticulationContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD3d03f8687f8d3d03f868 /* DyArticulationContactPrep.cpp */; };
+ FFFF3d03f8d07f8d3d03f8d0 /* DyArticulationContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD3d03f8d07f8d3d03f8d0 /* DyArticulationContactPrepPF.cpp */; };
+ FFFF3d03f9387f8d3d03f938 /* DyArticulationHelper.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD3d03f9387f8d3d03f938 /* DyArticulationHelper.cpp */; };
+ FFFF3d03f9a07f8d3d03f9a0 /* DyArticulationSIMD.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD3d03f9a07f8d3d03f9a0 /* DyArticulationSIMD.cpp */; };
+ FFFF3d03fa087f8d3d03fa08 /* DyArticulationScalar.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD3d03fa087f8d3d03fa08 /* DyArticulationScalar.cpp */; };
+ FFFF3d03fa707f8d3d03fa70 /* DyConstraintPartition.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD3d03fa707f8d3d03fa70 /* DyConstraintPartition.cpp */; };
+ FFFF3d03fad87f8d3d03fad8 /* DyConstraintSetup.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD3d03fad87f8d3d03fad8 /* DyConstraintSetup.cpp */; };
+ FFFF3d03fb407f8d3d03fb40 /* DyConstraintSetupBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD3d03fb407f8d3d03fb40 /* DyConstraintSetupBlock.cpp */; };
+ FFFF3d03fba87f8d3d03fba8 /* DyContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD3d03fba87f8d3d03fba8 /* DyContactPrep.cpp */; };
+ FFFF3d03fc107f8d3d03fc10 /* DyContactPrep4.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD3d03fc107f8d3d03fc10 /* DyContactPrep4.cpp */; };
+ FFFF3d03fc787f8d3d03fc78 /* DyContactPrep4PF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD3d03fc787f8d3d03fc78 /* DyContactPrep4PF.cpp */; };
+ FFFF3d03fce07f8d3d03fce0 /* DyContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD3d03fce07f8d3d03fce0 /* DyContactPrepPF.cpp */; };
+ FFFF3d03fd487f8d3d03fd48 /* DyDynamics.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD3d03fd487f8d3d03fd48 /* DyDynamics.cpp */; };
+ FFFF3d03fdb07f8d3d03fdb0 /* DyFrictionCorrelation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD3d03fdb07f8d3d03fdb0 /* DyFrictionCorrelation.cpp */; };
+ FFFF3d03fe187f8d3d03fe18 /* DyRigidBodyToSolverBody.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD3d03fe187f8d3d03fe18 /* DyRigidBodyToSolverBody.cpp */; };
+ FFFF3d03fe807f8d3d03fe80 /* DySolverConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD3d03fe807f8d3d03fe80 /* DySolverConstraints.cpp */; };
+ FFFF3d03fee87f8d3d03fee8 /* DySolverConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD3d03fee87f8d3d03fee8 /* DySolverConstraintsBlock.cpp */; };
+ FFFF3d03ff507f8d3d03ff50 /* DySolverControl.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD3d03ff507f8d3d03ff50 /* DySolverControl.cpp */; };
+ FFFF3d03ffb87f8d3d03ffb8 /* DySolverControlPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD3d03ffb87f8d3d03ffb8 /* DySolverControlPF.cpp */; };
+ FFFF3d0400207f8d3d040020 /* DySolverPFConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD3d0400207f8d3d040020 /* DySolverPFConstraints.cpp */; };
+ FFFF3d0400887f8d3d040088 /* DySolverPFConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD3d0400887f8d3d040088 /* DySolverPFConstraintsBlock.cpp */; };
+ FFFF3d0400f07f8d3d0400f0 /* DyThreadContext.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD3d0400f07f8d3d0400f0 /* DyThreadContext.cpp */; };
+ FFFF3d0401587f8d3d040158 /* DyThresholdTable.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD3d0401587f8d3d040158 /* DyThresholdTable.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFDd14331607ff3d1433160 /* LowLevelDynamics */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelDynamics"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFDd18188007ff3d1818800 /* DyArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.cpp"; path = "../../LowLevelDynamics/src/DyArticulation.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18188687ff3d1818868 /* DyArticulationContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18188d07ff3d18188d0 /* DyArticulationContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18189387ff3d1818938 /* DyArticulationHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.cpp"; path = "../../LowLevelDynamics/src/DyArticulationHelper.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18189a07ff3d18189a0 /* DyArticulationSIMD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationSIMD.cpp"; path = "../../LowLevelDynamics/src/DyArticulationSIMD.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd1818a087ff3d1818a08 /* DyArticulationScalar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.cpp"; path = "../../LowLevelDynamics/src/DyArticulationScalar.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd1818a707ff3d1818a70 /* DyConstraintPartition.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.cpp"; path = "../../LowLevelDynamics/src/DyConstraintPartition.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd1818ad87ff3d1818ad8 /* DyConstraintSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetup.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetup.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd1818b407ff3d1818b40 /* DyConstraintSetupBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetupBlock.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetupBlock.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd1818ba87ff3d1818ba8 /* DyContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd1818c107ff3d1818c10 /* DyContactPrep4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd1818c787ff3d1818c78 /* DyContactPrep4PF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4PF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4PF.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd1818ce07ff3d1818ce0 /* DyContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd1818d487ff3d1818d48 /* DyDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.cpp"; path = "../../LowLevelDynamics/src/DyDynamics.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd1818db07ff3d1818db0 /* DyFrictionCorrelation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionCorrelation.cpp"; path = "../../LowLevelDynamics/src/DyFrictionCorrelation.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd1818e187ff3d1818e18 /* DyRigidBodyToSolverBody.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyRigidBodyToSolverBody.cpp"; path = "../../LowLevelDynamics/src/DyRigidBodyToSolverBody.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd1818e807ff3d1818e80 /* DySolverConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraints.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd1818ee87ff3d1818ee8 /* DySolverConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd1818f507ff3d1818f50 /* DySolverControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.cpp"; path = "../../LowLevelDynamics/src/DySolverControl.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd1818fb87ff3d1818fb8 /* DySolverControlPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.cpp"; path = "../../LowLevelDynamics/src/DySolverControlPF.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18190207ff3d1819020 /* DySolverPFConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraints.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18190887ff3d1819088 /* DySolverPFConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18190f07ff3d18190f0 /* DyThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.cpp"; path = "../../LowLevelDynamics/src/DyThreadContext.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd18191587ff3d1819158 /* DyThresholdTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.cpp"; path = "../../LowLevelDynamics/src/DyThresholdTable.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd143b0107ff3d143b010 /* DyArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.h"; path = "../../LowLevelDynamics/include/DyArticulation.h"; sourceTree = SOURCE_ROOT; };
- FFFDd143b0787ff3d143b078 /* DyConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraint.h"; path = "../../LowLevelDynamics/include/DyConstraint.h"; sourceTree = SOURCE_ROOT; };
- FFFDd143b0e07ff3d143b0e0 /* DyConstraintWriteBack.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintWriteBack.h"; path = "../../LowLevelDynamics/include/DyConstraintWriteBack.h"; sourceTree = SOURCE_ROOT; };
- FFFDd143b1487ff3d143b148 /* DyContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContext.h"; path = "../../LowLevelDynamics/include/DyContext.h"; sourceTree = SOURCE_ROOT; };
- FFFDd143b1b07ff3d143b1b0 /* DySleepingConfigulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySleepingConfigulation.h"; path = "../../LowLevelDynamics/include/DySleepingConfigulation.h"; sourceTree = SOURCE_ROOT; };
- FFFDd143b2187ff3d143b218 /* DyThresholdTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.h"; path = "../../LowLevelDynamics/include/DyThresholdTable.h"; sourceTree = SOURCE_ROOT; };
- FFFDd1819a007ff3d1819a00 /* DyArticulationContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.h"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.h"; sourceTree = SOURCE_ROOT; };
- FFFDd1819a687ff3d1819a68 /* DyArticulationFnsDebug.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsDebug.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsDebug.h"; sourceTree = SOURCE_ROOT; };
- FFFDd1819ad07ff3d1819ad0 /* DyArticulationFnsScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsScalar.h"; sourceTree = SOURCE_ROOT; };
- FFFDd1819b387ff3d1819b38 /* DyArticulationFnsSimd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsSimd.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsSimd.h"; sourceTree = SOURCE_ROOT; };
- FFFDd1819ba07ff3d1819ba0 /* DyArticulationHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.h"; path = "../../LowLevelDynamics/src/DyArticulationHelper.h"; sourceTree = SOURCE_ROOT; };
- FFFDd1819c087ff3d1819c08 /* DyArticulationPImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationPImpl.h"; path = "../../LowLevelDynamics/src/DyArticulationPImpl.h"; sourceTree = SOURCE_ROOT; };
- FFFDd1819c707ff3d1819c70 /* DyArticulationReference.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationReference.h"; path = "../../LowLevelDynamics/src/DyArticulationReference.h"; sourceTree = SOURCE_ROOT; };
- FFFDd1819cd87ff3d1819cd8 /* DyArticulationScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationScalar.h"; sourceTree = SOURCE_ROOT; };
- FFFDd1819d407ff3d1819d40 /* DyArticulationUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationUtils.h"; path = "../../LowLevelDynamics/src/DyArticulationUtils.h"; sourceTree = SOURCE_ROOT; };
- FFFDd1819da87ff3d1819da8 /* DyBodyCoreIntegrator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyBodyCoreIntegrator.h"; path = "../../LowLevelDynamics/src/DyBodyCoreIntegrator.h"; sourceTree = SOURCE_ROOT; };
- FFFDd1819e107ff3d1819e10 /* DyConstraintPartition.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.h"; path = "../../LowLevelDynamics/src/DyConstraintPartition.h"; sourceTree = SOURCE_ROOT; };
- FFFDd1819e787ff3d1819e78 /* DyConstraintPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPrep.h"; path = "../../LowLevelDynamics/src/DyConstraintPrep.h"; sourceTree = SOURCE_ROOT; };
- FFFDd1819ee07ff3d1819ee0 /* DyContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.h"; path = "../../LowLevelDynamics/src/DyContactPrep.h"; sourceTree = SOURCE_ROOT; };
- FFFDd1819f487ff3d1819f48 /* DyContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepShared.h"; path = "../../LowLevelDynamics/src/DyContactPrepShared.h"; sourceTree = SOURCE_ROOT; };
- FFFDd1819fb07ff3d1819fb0 /* DyContactReduction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactReduction.h"; path = "../../LowLevelDynamics/src/DyContactReduction.h"; sourceTree = SOURCE_ROOT; };
- FFFDd181a0187ff3d181a018 /* DyCorrelationBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyCorrelationBuffer.h"; path = "../../LowLevelDynamics/src/DyCorrelationBuffer.h"; sourceTree = SOURCE_ROOT; };
- FFFDd181a0807ff3d181a080 /* DyDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.h"; path = "../../LowLevelDynamics/src/DyDynamics.h"; sourceTree = SOURCE_ROOT; };
- FFFDd181a0e87ff3d181a0e8 /* DyFrictionPatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatch.h"; path = "../../LowLevelDynamics/src/DyFrictionPatch.h"; sourceTree = SOURCE_ROOT; };
- FFFDd181a1507ff3d181a150 /* DyFrictionPatchStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatchStreamPair.h"; path = "../../LowLevelDynamics/src/DyFrictionPatchStreamPair.h"; sourceTree = SOURCE_ROOT; };
- FFFDd181a1b87ff3d181a1b8 /* DySolverBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverBody.h"; path = "../../LowLevelDynamics/src/DySolverBody.h"; sourceTree = SOURCE_ROOT; };
- FFFDd181a2207ff3d181a220 /* DySolverConstraint1D.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D.h"; sourceTree = SOURCE_ROOT; };
- FFFDd181a2887ff3d181a288 /* DySolverConstraint1D4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D4.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D4.h"; sourceTree = SOURCE_ROOT; };
- FFFDd181a2f07ff3d181a2f0 /* DySolverConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintDesc.h"; path = "../../LowLevelDynamics/src/DySolverConstraintDesc.h"; sourceTree = SOURCE_ROOT; };
- FFFDd181a3587ff3d181a358 /* DySolverConstraintExtShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintExtShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintExtShared.h"; sourceTree = SOURCE_ROOT; };
- FFFDd181a3c07ff3d181a3c0 /* DySolverConstraintTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintTypes.h"; path = "../../LowLevelDynamics/src/DySolverConstraintTypes.h"; sourceTree = SOURCE_ROOT; };
- FFFDd181a4287ff3d181a428 /* DySolverConstraintsShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintsShared.h"; sourceTree = SOURCE_ROOT; };
- FFFDd181a4907ff3d181a490 /* DySolverContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact.h"; path = "../../LowLevelDynamics/src/DySolverContact.h"; sourceTree = SOURCE_ROOT; };
- FFFDd181a4f87ff3d181a4f8 /* DySolverContact4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact4.h"; path = "../../LowLevelDynamics/src/DySolverContact4.h"; sourceTree = SOURCE_ROOT; };
- FFFDd181a5607ff3d181a560 /* DySolverContactPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF.h"; path = "../../LowLevelDynamics/src/DySolverContactPF.h"; sourceTree = SOURCE_ROOT; };
- FFFDd181a5c87ff3d181a5c8 /* DySolverContactPF4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF4.h"; path = "../../LowLevelDynamics/src/DySolverContactPF4.h"; sourceTree = SOURCE_ROOT; };
- FFFDd181a6307ff3d181a630 /* DySolverContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContext.h"; path = "../../LowLevelDynamics/src/DySolverContext.h"; sourceTree = SOURCE_ROOT; };
- FFFDd181a6987ff3d181a698 /* DySolverControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.h"; path = "../../LowLevelDynamics/src/DySolverControl.h"; sourceTree = SOURCE_ROOT; };
- FFFDd181a7007ff3d181a700 /* DySolverControlPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.h"; path = "../../LowLevelDynamics/src/DySolverControlPF.h"; sourceTree = SOURCE_ROOT; };
- FFFDd181a7687ff3d181a768 /* DySolverCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverCore.h"; path = "../../LowLevelDynamics/src/DySolverCore.h"; sourceTree = SOURCE_ROOT; };
- FFFDd181a7d07ff3d181a7d0 /* DySolverExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverExt.h"; path = "../../LowLevelDynamics/src/DySolverExt.h"; sourceTree = SOURCE_ROOT; };
- FFFDd181a8387ff3d181a838 /* DySpatial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySpatial.h"; path = "../../LowLevelDynamics/src/DySpatial.h"; sourceTree = SOURCE_ROOT; };
- FFFDd181a8a07ff3d181a8a0 /* DyThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.h"; path = "../../LowLevelDynamics/src/DyThreadContext.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3cf3b3a07f8d3cf3b3a0 /* LowLevelDynamics */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelDynamics"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFD3d03f8007f8d3d03f800 /* DyArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.cpp"; path = "../../LowLevelDynamics/src/DyArticulation.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d03f8687f8d3d03f868 /* DyArticulationContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d03f8d07f8d3d03f8d0 /* DyArticulationContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d03f9387f8d3d03f938 /* DyArticulationHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.cpp"; path = "../../LowLevelDynamics/src/DyArticulationHelper.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d03f9a07f8d3d03f9a0 /* DyArticulationSIMD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationSIMD.cpp"; path = "../../LowLevelDynamics/src/DyArticulationSIMD.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d03fa087f8d3d03fa08 /* DyArticulationScalar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.cpp"; path = "../../LowLevelDynamics/src/DyArticulationScalar.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d03fa707f8d3d03fa70 /* DyConstraintPartition.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.cpp"; path = "../../LowLevelDynamics/src/DyConstraintPartition.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d03fad87f8d3d03fad8 /* DyConstraintSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetup.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetup.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d03fb407f8d3d03fb40 /* DyConstraintSetupBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetupBlock.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetupBlock.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d03fba87f8d3d03fba8 /* DyContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d03fc107f8d3d03fc10 /* DyContactPrep4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d03fc787f8d3d03fc78 /* DyContactPrep4PF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4PF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4PF.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d03fce07f8d3d03fce0 /* DyContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d03fd487f8d3d03fd48 /* DyDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.cpp"; path = "../../LowLevelDynamics/src/DyDynamics.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d03fdb07f8d3d03fdb0 /* DyFrictionCorrelation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionCorrelation.cpp"; path = "../../LowLevelDynamics/src/DyFrictionCorrelation.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d03fe187f8d3d03fe18 /* DyRigidBodyToSolverBody.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyRigidBodyToSolverBody.cpp"; path = "../../LowLevelDynamics/src/DyRigidBodyToSolverBody.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d03fe807f8d3d03fe80 /* DySolverConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraints.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d03fee87f8d3d03fee8 /* DySolverConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d03ff507f8d3d03ff50 /* DySolverControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.cpp"; path = "../../LowLevelDynamics/src/DySolverControl.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d03ffb87f8d3d03ffb8 /* DySolverControlPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.cpp"; path = "../../LowLevelDynamics/src/DySolverControlPF.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0400207f8d3d040020 /* DySolverPFConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraints.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0400887f8d3d040088 /* DySolverPFConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0400f07f8d3d0400f0 /* DyThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.cpp"; path = "../../LowLevelDynamics/src/DyThreadContext.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0401587f8d3d040158 /* DyThresholdTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.cpp"; path = "../../LowLevelDynamics/src/DyThresholdTable.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3cf428207f8d3cf42820 /* DyArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.h"; path = "../../LowLevelDynamics/include/DyArticulation.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3cf428887f8d3cf42888 /* DyConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraint.h"; path = "../../LowLevelDynamics/include/DyConstraint.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3cf428f07f8d3cf428f0 /* DyConstraintWriteBack.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintWriteBack.h"; path = "../../LowLevelDynamics/include/DyConstraintWriteBack.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3cf429587f8d3cf42958 /* DyContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContext.h"; path = "../../LowLevelDynamics/include/DyContext.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3cf429c07f8d3cf429c0 /* DySleepingConfigulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySleepingConfigulation.h"; path = "../../LowLevelDynamics/include/DySleepingConfigulation.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3cf42a287f8d3cf42a28 /* DyThresholdTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.h"; path = "../../LowLevelDynamics/include/DyThresholdTable.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d040a007f8d3d040a00 /* DyArticulationContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.h"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d040a687f8d3d040a68 /* DyArticulationFnsDebug.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsDebug.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsDebug.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d040ad07f8d3d040ad0 /* DyArticulationFnsScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsScalar.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d040b387f8d3d040b38 /* DyArticulationFnsSimd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsSimd.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsSimd.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d040ba07f8d3d040ba0 /* DyArticulationHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.h"; path = "../../LowLevelDynamics/src/DyArticulationHelper.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d040c087f8d3d040c08 /* DyArticulationPImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationPImpl.h"; path = "../../LowLevelDynamics/src/DyArticulationPImpl.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d040c707f8d3d040c70 /* DyArticulationReference.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationReference.h"; path = "../../LowLevelDynamics/src/DyArticulationReference.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d040cd87f8d3d040cd8 /* DyArticulationScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationScalar.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d040d407f8d3d040d40 /* DyArticulationUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationUtils.h"; path = "../../LowLevelDynamics/src/DyArticulationUtils.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d040da87f8d3d040da8 /* DyBodyCoreIntegrator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyBodyCoreIntegrator.h"; path = "../../LowLevelDynamics/src/DyBodyCoreIntegrator.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d040e107f8d3d040e10 /* DyConstraintPartition.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.h"; path = "../../LowLevelDynamics/src/DyConstraintPartition.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d040e787f8d3d040e78 /* DyConstraintPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPrep.h"; path = "../../LowLevelDynamics/src/DyConstraintPrep.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d040ee07f8d3d040ee0 /* DyContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.h"; path = "../../LowLevelDynamics/src/DyContactPrep.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d040f487f8d3d040f48 /* DyContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepShared.h"; path = "../../LowLevelDynamics/src/DyContactPrepShared.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d040fb07f8d3d040fb0 /* DyContactReduction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactReduction.h"; path = "../../LowLevelDynamics/src/DyContactReduction.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0410187f8d3d041018 /* DyCorrelationBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyCorrelationBuffer.h"; path = "../../LowLevelDynamics/src/DyCorrelationBuffer.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0410807f8d3d041080 /* DyDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.h"; path = "../../LowLevelDynamics/src/DyDynamics.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0410e87f8d3d0410e8 /* DyFrictionPatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatch.h"; path = "../../LowLevelDynamics/src/DyFrictionPatch.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0411507f8d3d041150 /* DyFrictionPatchStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatchStreamPair.h"; path = "../../LowLevelDynamics/src/DyFrictionPatchStreamPair.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0411b87f8d3d0411b8 /* DySolverBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverBody.h"; path = "../../LowLevelDynamics/src/DySolverBody.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0412207f8d3d041220 /* DySolverConstraint1D.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0412887f8d3d041288 /* DySolverConstraint1D4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D4.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D4.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0412f07f8d3d0412f0 /* DySolverConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintDesc.h"; path = "../../LowLevelDynamics/src/DySolverConstraintDesc.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0413587f8d3d041358 /* DySolverConstraintExtShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintExtShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintExtShared.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0413c07f8d3d0413c0 /* DySolverConstraintTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintTypes.h"; path = "../../LowLevelDynamics/src/DySolverConstraintTypes.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0414287f8d3d041428 /* DySolverConstraintsShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintsShared.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0414907f8d3d041490 /* DySolverContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact.h"; path = "../../LowLevelDynamics/src/DySolverContact.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0414f87f8d3d0414f8 /* DySolverContact4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact4.h"; path = "../../LowLevelDynamics/src/DySolverContact4.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0415607f8d3d041560 /* DySolverContactPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF.h"; path = "../../LowLevelDynamics/src/DySolverContactPF.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0415c87f8d3d0415c8 /* DySolverContactPF4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF4.h"; path = "../../LowLevelDynamics/src/DySolverContactPF4.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0416307f8d3d041630 /* DySolverContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContext.h"; path = "../../LowLevelDynamics/src/DySolverContext.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0416987f8d3d041698 /* DySolverControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.h"; path = "../../LowLevelDynamics/src/DySolverControl.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0417007f8d3d041700 /* DySolverControlPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.h"; path = "../../LowLevelDynamics/src/DySolverControlPF.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0417687f8d3d041768 /* DySolverCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverCore.h"; path = "../../LowLevelDynamics/src/DySolverCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0417d07f8d3d0417d0 /* DySolverExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverExt.h"; path = "../../LowLevelDynamics/src/DySolverExt.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0418387f8d3d041838 /* DySpatial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySpatial.h"; path = "../../LowLevelDynamics/src/DySpatial.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d0418a07f8d3d0418a0 /* DyThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.h"; path = "../../LowLevelDynamics/src/DyThreadContext.h"; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */
/* Begin PBXResourcesBuildPhase section */
- FFF2d14331607ff3d1433160 /* Resources */ = {
+ FFF23cf3b3a07f8d3cf3b3a0 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2653,7 +2653,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFCd14331607ff3d1433160 /* Frameworks */ = {
+ FFFC3cf3b3a07f8d3cf3b3a0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2663,34 +2663,34 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF8d14331607ff3d1433160 /* Sources */ = {
+ FFF83cf3b3a07f8d3cf3b3a0 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFFd18188007ff3d1818800,
- FFFFd18188687ff3d1818868,
- FFFFd18188d07ff3d18188d0,
- FFFFd18189387ff3d1818938,
- FFFFd18189a07ff3d18189a0,
- FFFFd1818a087ff3d1818a08,
- FFFFd1818a707ff3d1818a70,
- FFFFd1818ad87ff3d1818ad8,
- FFFFd1818b407ff3d1818b40,
- FFFFd1818ba87ff3d1818ba8,
- FFFFd1818c107ff3d1818c10,
- FFFFd1818c787ff3d1818c78,
- FFFFd1818ce07ff3d1818ce0,
- FFFFd1818d487ff3d1818d48,
- FFFFd1818db07ff3d1818db0,
- FFFFd1818e187ff3d1818e18,
- FFFFd1818e807ff3d1818e80,
- FFFFd1818ee87ff3d1818ee8,
- FFFFd1818f507ff3d1818f50,
- FFFFd1818fb87ff3d1818fb8,
- FFFFd18190207ff3d1819020,
- FFFFd18190887ff3d1819088,
- FFFFd18190f07ff3d18190f0,
- FFFFd18191587ff3d1819158,
+ FFFF3d03f8007f8d3d03f800,
+ FFFF3d03f8687f8d3d03f868,
+ FFFF3d03f8d07f8d3d03f8d0,
+ FFFF3d03f9387f8d3d03f938,
+ FFFF3d03f9a07f8d3d03f9a0,
+ FFFF3d03fa087f8d3d03fa08,
+ FFFF3d03fa707f8d3d03fa70,
+ FFFF3d03fad87f8d3d03fad8,
+ FFFF3d03fb407f8d3d03fb40,
+ FFFF3d03fba87f8d3d03fba8,
+ FFFF3d03fc107f8d3d03fc10,
+ FFFF3d03fc787f8d3d03fc78,
+ FFFF3d03fce07f8d3d03fce0,
+ FFFF3d03fd487f8d3d03fd48,
+ FFFF3d03fdb07f8d3d03fdb0,
+ FFFF3d03fe187f8d3d03fe18,
+ FFFF3d03fe807f8d3d03fe80,
+ FFFF3d03fee87f8d3d03fee8,
+ FFFF3d03ff507f8d3d03ff50,
+ FFFF3d03ffb87f8d3d03ffb8,
+ FFFF3d0400207f8d3d040020,
+ FFFF3d0400887f8d3d040088,
+ FFFF3d0400f07f8d3d0400f0,
+ FFFF3d0401587f8d3d040158,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -2702,73 +2702,73 @@
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of LowLevelCloth */
- FFFFd09e6a907ff3d09e6a90 /* Allocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd09e6a907ff3d09e6a90 /* Allocator.cpp */; };
- FFFFd09e6af87ff3d09e6af8 /* Factory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd09e6af87ff3d09e6af8 /* Factory.cpp */; };
- FFFFd09e6b607ff3d09e6b60 /* PhaseConfig.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd09e6b607ff3d09e6b60 /* PhaseConfig.cpp */; };
- FFFFd09e6bc87ff3d09e6bc8 /* SwCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd09e6bc87ff3d09e6bc8 /* SwCloth.cpp */; };
- FFFFd09e6c307ff3d09e6c30 /* SwClothData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd09e6c307ff3d09e6c30 /* SwClothData.cpp */; };
- FFFFd09e6c987ff3d09e6c98 /* SwCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd09e6c987ff3d09e6c98 /* SwCollision.cpp */; };
- FFFFd09e6d007ff3d09e6d00 /* SwFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd09e6d007ff3d09e6d00 /* SwFabric.cpp */; };
- FFFFd09e6d687ff3d09e6d68 /* SwFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd09e6d687ff3d09e6d68 /* SwFactory.cpp */; };
- FFFFd09e6dd07ff3d09e6dd0 /* SwInterCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd09e6dd07ff3d09e6dd0 /* SwInterCollision.cpp */; };
- FFFFd09e6e387ff3d09e6e38 /* SwSelfCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd09e6e387ff3d09e6e38 /* SwSelfCollision.cpp */; };
- FFFFd09e6ea07ff3d09e6ea0 /* SwSolver.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd09e6ea07ff3d09e6ea0 /* SwSolver.cpp */; };
- FFFFd09e6f087ff3d09e6f08 /* SwSolverKernel.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd09e6f087ff3d09e6f08 /* SwSolverKernel.cpp */; };
- FFFFd09e6f707ff3d09e6f70 /* TripletScheduler.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd09e6f707ff3d09e6f70 /* TripletScheduler.cpp */; };
+ FFFF3b81d2907f8d3b81d290 /* Allocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3b81d2907f8d3b81d290 /* Allocator.cpp */; };
+ FFFF3b81d2f87f8d3b81d2f8 /* Factory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3b81d2f87f8d3b81d2f8 /* Factory.cpp */; };
+ FFFF3b81d3607f8d3b81d360 /* PhaseConfig.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3b81d3607f8d3b81d360 /* PhaseConfig.cpp */; };
+ FFFF3b81d3c87f8d3b81d3c8 /* SwCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3b81d3c87f8d3b81d3c8 /* SwCloth.cpp */; };
+ FFFF3b81d4307f8d3b81d430 /* SwClothData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3b81d4307f8d3b81d430 /* SwClothData.cpp */; };
+ FFFF3b81d4987f8d3b81d498 /* SwCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3b81d4987f8d3b81d498 /* SwCollision.cpp */; };
+ FFFF3b81d5007f8d3b81d500 /* SwFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3b81d5007f8d3b81d500 /* SwFabric.cpp */; };
+ FFFF3b81d5687f8d3b81d568 /* SwFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3b81d5687f8d3b81d568 /* SwFactory.cpp */; };
+ FFFF3b81d5d07f8d3b81d5d0 /* SwInterCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3b81d5d07f8d3b81d5d0 /* SwInterCollision.cpp */; };
+ FFFF3b81d6387f8d3b81d638 /* SwSelfCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3b81d6387f8d3b81d638 /* SwSelfCollision.cpp */; };
+ FFFF3b81d6a07f8d3b81d6a0 /* SwSolver.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3b81d6a07f8d3b81d6a0 /* SwSolver.cpp */; };
+ FFFF3b81d7087f8d3b81d708 /* SwSolverKernel.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3b81d7087f8d3b81d708 /* SwSolverKernel.cpp */; };
+ FFFF3b81d7707f8d3b81d770 /* TripletScheduler.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3b81d7707f8d3b81d770 /* TripletScheduler.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFDd16276007ff3d1627600 /* LowLevelCloth */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelCloth"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFDd163c3907ff3d163c390 /* Cloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cloth.h"; path = "../../LowLevelCloth/include/Cloth.h"; sourceTree = SOURCE_ROOT; };
- FFFDd163c3f87ff3d163c3f8 /* Fabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Fabric.h"; path = "../../LowLevelCloth/include/Fabric.h"; sourceTree = SOURCE_ROOT; };
- FFFDd163c4607ff3d163c460 /* Factory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.h"; path = "../../LowLevelCloth/include/Factory.h"; sourceTree = SOURCE_ROOT; };
- FFFDd163c4c87ff3d163c4c8 /* PhaseConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.h"; path = "../../LowLevelCloth/include/PhaseConfig.h"; sourceTree = SOURCE_ROOT; };
- FFFDd163c5307ff3d163c530 /* Range.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Range.h"; path = "../../LowLevelCloth/include/Range.h"; sourceTree = SOURCE_ROOT; };
- FFFDd163c5987ff3d163c598 /* Solver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Solver.h"; path = "../../LowLevelCloth/include/Solver.h"; sourceTree = SOURCE_ROOT; };
- FFFDd163c6007ff3d163c600 /* Types.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Types.h"; path = "../../LowLevelCloth/include/Types.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09e60007ff3d09e6000 /* Allocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.h"; path = "../../LowLevelCloth/src/Allocator.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09e60687ff3d09e6068 /* Array.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Array.h"; path = "../../LowLevelCloth/src/Array.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09e60d07ff3d09e60d0 /* BoundingBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BoundingBox.h"; path = "../../LowLevelCloth/src/BoundingBox.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09e61387ff3d09e6138 /* ClothBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothBase.h"; path = "../../LowLevelCloth/src/ClothBase.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09e61a07ff3d09e61a0 /* ClothImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothImpl.h"; path = "../../LowLevelCloth/src/ClothImpl.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09e62087ff3d09e6208 /* IndexPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IndexPair.h"; path = "../../LowLevelCloth/src/IndexPair.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09e62707ff3d09e6270 /* IterationState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IterationState.h"; path = "../../LowLevelCloth/src/IterationState.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09e62d87ff3d09e62d8 /* MovingAverage.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MovingAverage.h"; path = "../../LowLevelCloth/src/MovingAverage.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09e63407ff3d09e6340 /* PointInterpolator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PointInterpolator.h"; path = "../../LowLevelCloth/src/PointInterpolator.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09e63a87ff3d09e63a8 /* Simd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd.h"; path = "../../LowLevelCloth/src/Simd.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09e64107ff3d09e6410 /* Simd4f.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd4f.h"; path = "../../LowLevelCloth/src/Simd4f.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09e64787ff3d09e6478 /* Simd4i.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd4i.h"; path = "../../LowLevelCloth/src/Simd4i.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09e64e07ff3d09e64e0 /* SimdTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SimdTypes.h"; path = "../../LowLevelCloth/src/SimdTypes.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09e65487ff3d09e6548 /* StackAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "StackAllocator.h"; path = "../../LowLevelCloth/src/StackAllocator.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09e65b07ff3d09e65b0 /* SwCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.h"; path = "../../LowLevelCloth/src/SwCloth.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09e66187ff3d09e6618 /* SwClothData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.h"; path = "../../LowLevelCloth/src/SwClothData.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09e66807ff3d09e6680 /* SwCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.h"; path = "../../LowLevelCloth/src/SwCollision.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09e66e87ff3d09e66e8 /* SwCollisionHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollisionHelpers.h"; path = "../../LowLevelCloth/src/SwCollisionHelpers.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09e67507ff3d09e6750 /* SwFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.h"; path = "../../LowLevelCloth/src/SwFabric.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09e67b87ff3d09e67b8 /* SwFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.h"; path = "../../LowLevelCloth/src/SwFactory.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09e68207ff3d09e6820 /* SwInterCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.h"; path = "../../LowLevelCloth/src/SwInterCollision.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09e68887ff3d09e6888 /* SwSelfCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.h"; path = "../../LowLevelCloth/src/SwSelfCollision.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09e68f07ff3d09e68f0 /* SwSolver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.h"; path = "../../LowLevelCloth/src/SwSolver.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09e69587ff3d09e6958 /* SwSolverKernel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.h"; path = "../../LowLevelCloth/src/SwSolverKernel.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09e69c07ff3d09e69c0 /* TripletScheduler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.h"; path = "../../LowLevelCloth/src/TripletScheduler.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09e6a287ff3d09e6a28 /* Vec4T.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Vec4T.h"; path = "../../LowLevelCloth/src/Vec4T.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09e6a907ff3d09e6a90 /* Allocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.cpp"; path = "../../LowLevelCloth/src/Allocator.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09e6af87ff3d09e6af8 /* Factory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.cpp"; path = "../../LowLevelCloth/src/Factory.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09e6b607ff3d09e6b60 /* PhaseConfig.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.cpp"; path = "../../LowLevelCloth/src/PhaseConfig.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09e6bc87ff3d09e6bc8 /* SwCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.cpp"; path = "../../LowLevelCloth/src/SwCloth.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09e6c307ff3d09e6c30 /* SwClothData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.cpp"; path = "../../LowLevelCloth/src/SwClothData.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09e6c987ff3d09e6c98 /* SwCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.cpp"; path = "../../LowLevelCloth/src/SwCollision.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09e6d007ff3d09e6d00 /* SwFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.cpp"; path = "../../LowLevelCloth/src/SwFabric.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09e6d687ff3d09e6d68 /* SwFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.cpp"; path = "../../LowLevelCloth/src/SwFactory.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09e6dd07ff3d09e6dd0 /* SwInterCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.cpp"; path = "../../LowLevelCloth/src/SwInterCollision.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09e6e387ff3d09e6e38 /* SwSelfCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.cpp"; path = "../../LowLevelCloth/src/SwSelfCollision.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09e6ea07ff3d09e6ea0 /* SwSolver.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.cpp"; path = "../../LowLevelCloth/src/SwSolver.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09e6f087ff3d09e6f08 /* SwSolverKernel.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.cpp"; path = "../../LowLevelCloth/src/SwSolverKernel.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09e6f707ff3d09e6f70 /* TripletScheduler.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.cpp"; path = "../../LowLevelCloth/src/TripletScheduler.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b43b7807f8d3b43b780 /* LowLevelCloth */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelCloth"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFD3b443f007f8d3b443f00 /* Cloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cloth.h"; path = "../../LowLevelCloth/include/Cloth.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b443f687f8d3b443f68 /* Fabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Fabric.h"; path = "../../LowLevelCloth/include/Fabric.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b443fd07f8d3b443fd0 /* Factory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.h"; path = "../../LowLevelCloth/include/Factory.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b4440387f8d3b444038 /* PhaseConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.h"; path = "../../LowLevelCloth/include/PhaseConfig.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b4440a07f8d3b4440a0 /* Range.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Range.h"; path = "../../LowLevelCloth/include/Range.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b4441087f8d3b444108 /* Solver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Solver.h"; path = "../../LowLevelCloth/include/Solver.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b4441707f8d3b444170 /* Types.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Types.h"; path = "../../LowLevelCloth/include/Types.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b81c8007f8d3b81c800 /* Allocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.h"; path = "../../LowLevelCloth/src/Allocator.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b81c8687f8d3b81c868 /* Array.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Array.h"; path = "../../LowLevelCloth/src/Array.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b81c8d07f8d3b81c8d0 /* BoundingBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BoundingBox.h"; path = "../../LowLevelCloth/src/BoundingBox.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b81c9387f8d3b81c938 /* ClothBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothBase.h"; path = "../../LowLevelCloth/src/ClothBase.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b81c9a07f8d3b81c9a0 /* ClothImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothImpl.h"; path = "../../LowLevelCloth/src/ClothImpl.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b81ca087f8d3b81ca08 /* IndexPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IndexPair.h"; path = "../../LowLevelCloth/src/IndexPair.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b81ca707f8d3b81ca70 /* IterationState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IterationState.h"; path = "../../LowLevelCloth/src/IterationState.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b81cad87f8d3b81cad8 /* MovingAverage.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MovingAverage.h"; path = "../../LowLevelCloth/src/MovingAverage.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b81cb407f8d3b81cb40 /* PointInterpolator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PointInterpolator.h"; path = "../../LowLevelCloth/src/PointInterpolator.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b81cba87f8d3b81cba8 /* Simd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd.h"; path = "../../LowLevelCloth/src/Simd.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b81cc107f8d3b81cc10 /* Simd4f.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd4f.h"; path = "../../LowLevelCloth/src/Simd4f.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b81cc787f8d3b81cc78 /* Simd4i.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd4i.h"; path = "../../LowLevelCloth/src/Simd4i.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b81cce07f8d3b81cce0 /* SimdTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SimdTypes.h"; path = "../../LowLevelCloth/src/SimdTypes.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b81cd487f8d3b81cd48 /* StackAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "StackAllocator.h"; path = "../../LowLevelCloth/src/StackAllocator.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b81cdb07f8d3b81cdb0 /* SwCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.h"; path = "../../LowLevelCloth/src/SwCloth.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b81ce187f8d3b81ce18 /* SwClothData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.h"; path = "../../LowLevelCloth/src/SwClothData.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b81ce807f8d3b81ce80 /* SwCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.h"; path = "../../LowLevelCloth/src/SwCollision.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b81cee87f8d3b81cee8 /* SwCollisionHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollisionHelpers.h"; path = "../../LowLevelCloth/src/SwCollisionHelpers.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b81cf507f8d3b81cf50 /* SwFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.h"; path = "../../LowLevelCloth/src/SwFabric.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b81cfb87f8d3b81cfb8 /* SwFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.h"; path = "../../LowLevelCloth/src/SwFactory.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b81d0207f8d3b81d020 /* SwInterCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.h"; path = "../../LowLevelCloth/src/SwInterCollision.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b81d0887f8d3b81d088 /* SwSelfCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.h"; path = "../../LowLevelCloth/src/SwSelfCollision.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b81d0f07f8d3b81d0f0 /* SwSolver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.h"; path = "../../LowLevelCloth/src/SwSolver.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b81d1587f8d3b81d158 /* SwSolverKernel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.h"; path = "../../LowLevelCloth/src/SwSolverKernel.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b81d1c07f8d3b81d1c0 /* TripletScheduler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.h"; path = "../../LowLevelCloth/src/TripletScheduler.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b81d2287f8d3b81d228 /* Vec4T.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Vec4T.h"; path = "../../LowLevelCloth/src/Vec4T.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b81d2907f8d3b81d290 /* Allocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.cpp"; path = "../../LowLevelCloth/src/Allocator.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b81d2f87f8d3b81d2f8 /* Factory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.cpp"; path = "../../LowLevelCloth/src/Factory.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b81d3607f8d3b81d360 /* PhaseConfig.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.cpp"; path = "../../LowLevelCloth/src/PhaseConfig.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b81d3c87f8d3b81d3c8 /* SwCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.cpp"; path = "../../LowLevelCloth/src/SwCloth.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b81d4307f8d3b81d430 /* SwClothData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.cpp"; path = "../../LowLevelCloth/src/SwClothData.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b81d4987f8d3b81d498 /* SwCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.cpp"; path = "../../LowLevelCloth/src/SwCollision.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b81d5007f8d3b81d500 /* SwFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.cpp"; path = "../../LowLevelCloth/src/SwFabric.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b81d5687f8d3b81d568 /* SwFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.cpp"; path = "../../LowLevelCloth/src/SwFactory.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b81d5d07f8d3b81d5d0 /* SwInterCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.cpp"; path = "../../LowLevelCloth/src/SwInterCollision.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b81d6387f8d3b81d638 /* SwSelfCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.cpp"; path = "../../LowLevelCloth/src/SwSelfCollision.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b81d6a07f8d3b81d6a0 /* SwSolver.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.cpp"; path = "../../LowLevelCloth/src/SwSolver.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b81d7087f8d3b81d708 /* SwSolverKernel.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.cpp"; path = "../../LowLevelCloth/src/SwSolverKernel.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b81d7707f8d3b81d770 /* TripletScheduler.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.cpp"; path = "../../LowLevelCloth/src/TripletScheduler.cpp"; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */
/* Begin PBXResourcesBuildPhase section */
- FFF2d16276007ff3d1627600 /* Resources */ = {
+ FFF23b43b7807f8d3b43b780 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2778,7 +2778,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFCd16276007ff3d1627600 /* Frameworks */ = {
+ FFFC3b43b7807f8d3b43b780 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2788,23 +2788,23 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF8d16276007ff3d1627600 /* Sources */ = {
+ FFF83b43b7807f8d3b43b780 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFFd09e6a907ff3d09e6a90,
- FFFFd09e6af87ff3d09e6af8,
- FFFFd09e6b607ff3d09e6b60,
- FFFFd09e6bc87ff3d09e6bc8,
- FFFFd09e6c307ff3d09e6c30,
- FFFFd09e6c987ff3d09e6c98,
- FFFFd09e6d007ff3d09e6d00,
- FFFFd09e6d687ff3d09e6d68,
- FFFFd09e6dd07ff3d09e6dd0,
- FFFFd09e6e387ff3d09e6e38,
- FFFFd09e6ea07ff3d09e6ea0,
- FFFFd09e6f087ff3d09e6f08,
- FFFFd09e6f707ff3d09e6f70,
+ FFFF3b81d2907f8d3b81d290,
+ FFFF3b81d2f87f8d3b81d2f8,
+ FFFF3b81d3607f8d3b81d360,
+ FFFF3b81d3c87f8d3b81d3c8,
+ FFFF3b81d4307f8d3b81d430,
+ FFFF3b81d4987f8d3b81d498,
+ FFFF3b81d5007f8d3b81d500,
+ FFFF3b81d5687f8d3b81d568,
+ FFFF3b81d5d07f8d3b81d5d0,
+ FFFF3b81d6387f8d3b81d638,
+ FFFF3b81d6a07f8d3b81d6a0,
+ FFFF3b81d7087f8d3b81d708,
+ FFFF3b81d7707f8d3b81d770,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -2816,79 +2816,79 @@
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of LowLevelParticles */
- FFFFd09f15587ff3d09f1558 /* PtBatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd09f15587ff3d09f1558 /* PtBatcher.cpp */; };
- FFFFd09f15c07ff3d09f15c0 /* PtBodyTransformVault.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd09f15c07ff3d09f15c0 /* PtBodyTransformVault.cpp */; };
- FFFFd09f16287ff3d09f1628 /* PtCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd09f16287ff3d09f1628 /* PtCollision.cpp */; };
- FFFFd09f16907ff3d09f1690 /* PtCollisionBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd09f16907ff3d09f1690 /* PtCollisionBox.cpp */; };
- FFFFd09f16f87ff3d09f16f8 /* PtCollisionCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd09f16f87ff3d09f16f8 /* PtCollisionCapsule.cpp */; };
- FFFFd09f17607ff3d09f1760 /* PtCollisionConvex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd09f17607ff3d09f1760 /* PtCollisionConvex.cpp */; };
- FFFFd09f17c87ff3d09f17c8 /* PtCollisionMesh.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd09f17c87ff3d09f17c8 /* PtCollisionMesh.cpp */; };
- FFFFd09f18307ff3d09f1830 /* PtCollisionPlane.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd09f18307ff3d09f1830 /* PtCollisionPlane.cpp */; };
- FFFFd09f18987ff3d09f1898 /* PtCollisionSphere.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd09f18987ff3d09f1898 /* PtCollisionSphere.cpp */; };
- FFFFd09f19007ff3d09f1900 /* PtContextCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd09f19007ff3d09f1900 /* PtContextCpu.cpp */; };
- FFFFd09f19687ff3d09f1968 /* PtDynamics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd09f19687ff3d09f1968 /* PtDynamics.cpp */; };
- FFFFd09f19d07ff3d09f19d0 /* PtParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd09f19d07ff3d09f19d0 /* PtParticleData.cpp */; };
- FFFFd09f1a387ff3d09f1a38 /* PtParticleShapeCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd09f1a387ff3d09f1a38 /* PtParticleShapeCpu.cpp */; };
- FFFFd09f1aa07ff3d09f1aa0 /* PtParticleSystemSimCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd09f1aa07ff3d09f1aa0 /* PtParticleSystemSimCpu.cpp */; };
- FFFFd09f1b087ff3d09f1b08 /* PtSpatialHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd09f1b087ff3d09f1b08 /* PtSpatialHash.cpp */; };
- FFFFd09f1b707ff3d09f1b70 /* PtSpatialLocalHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd09f1b707ff3d09f1b70 /* PtSpatialLocalHash.cpp */; };
+ FFFF3d04bd587f8d3d04bd58 /* PtBatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d04bd587f8d3d04bd58 /* PtBatcher.cpp */; };
+ FFFF3d04bdc07f8d3d04bdc0 /* PtBodyTransformVault.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d04bdc07f8d3d04bdc0 /* PtBodyTransformVault.cpp */; };
+ FFFF3d04be287f8d3d04be28 /* PtCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d04be287f8d3d04be28 /* PtCollision.cpp */; };
+ FFFF3d04be907f8d3d04be90 /* PtCollisionBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d04be907f8d3d04be90 /* PtCollisionBox.cpp */; };
+ FFFF3d04bef87f8d3d04bef8 /* PtCollisionCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d04bef87f8d3d04bef8 /* PtCollisionCapsule.cpp */; };
+ FFFF3d04bf607f8d3d04bf60 /* PtCollisionConvex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d04bf607f8d3d04bf60 /* PtCollisionConvex.cpp */; };
+ FFFF3d04bfc87f8d3d04bfc8 /* PtCollisionMesh.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d04bfc87f8d3d04bfc8 /* PtCollisionMesh.cpp */; };
+ FFFF3d04c0307f8d3d04c030 /* PtCollisionPlane.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d04c0307f8d3d04c030 /* PtCollisionPlane.cpp */; };
+ FFFF3d04c0987f8d3d04c098 /* PtCollisionSphere.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d04c0987f8d3d04c098 /* PtCollisionSphere.cpp */; };
+ FFFF3d04c1007f8d3d04c100 /* PtContextCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d04c1007f8d3d04c100 /* PtContextCpu.cpp */; };
+ FFFF3d04c1687f8d3d04c168 /* PtDynamics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d04c1687f8d3d04c168 /* PtDynamics.cpp */; };
+ FFFF3d04c1d07f8d3d04c1d0 /* PtParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d04c1d07f8d3d04c1d0 /* PtParticleData.cpp */; };
+ FFFF3d04c2387f8d3d04c238 /* PtParticleShapeCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d04c2387f8d3d04c238 /* PtParticleShapeCpu.cpp */; };
+ FFFF3d04c2a07f8d3d04c2a0 /* PtParticleSystemSimCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d04c2a07f8d3d04c2a0 /* PtParticleSystemSimCpu.cpp */; };
+ FFFF3d04c3087f8d3d04c308 /* PtSpatialHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d04c3087f8d3d04c308 /* PtSpatialHash.cpp */; };
+ FFFF3d04c3707f8d3d04c370 /* PtSpatialLocalHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3d04c3707f8d3d04c370 /* PtSpatialLocalHash.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFDd1664d207ff3d1664d20 /* LowLevelParticles */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelParticles"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFDd09eac007ff3d09eac00 /* PtBodyTransformVault.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.h"; path = "../../LowLevelParticles/include/PtBodyTransformVault.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09eac687ff3d09eac68 /* PtContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContext.h"; path = "../../LowLevelParticles/include/PtContext.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09eacd07ff3d09eacd0 /* PtGridCellVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtGridCellVector.h"; path = "../../LowLevelParticles/include/PtGridCellVector.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09ead387ff3d09ead38 /* PtParticle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticle.h"; path = "../../LowLevelParticles/include/PtParticle.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09eada07ff3d09eada0 /* PtParticleContactManagerStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleContactManagerStream.h"; path = "../../LowLevelParticles/include/PtParticleContactManagerStream.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09eae087ff3d09eae08 /* PtParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.h"; path = "../../LowLevelParticles/include/PtParticleData.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09eae707ff3d09eae70 /* PtParticleShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShape.h"; path = "../../LowLevelParticles/include/PtParticleShape.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09eaed87ff3d09eaed8 /* PtParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemCore.h"; path = "../../LowLevelParticles/include/PtParticleSystemCore.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09eaf407ff3d09eaf40 /* PtParticleSystemFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemFlags.h"; path = "../../LowLevelParticles/include/PtParticleSystemFlags.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09eafa87ff3d09eafa8 /* PtParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSim.h"; path = "../../LowLevelParticles/include/PtParticleSystemSim.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09f0c007ff3d09f0c00 /* PtBatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.h"; path = "../../LowLevelParticles/src/PtBatcher.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09f0c687ff3d09f0c68 /* PtCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.h"; path = "../../LowLevelParticles/src/PtCollision.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09f0cd07ff3d09f0cd0 /* PtCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionData.h"; path = "../../LowLevelParticles/src/PtCollisionData.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09f0d387ff3d09f0d38 /* PtCollisionHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionHelper.h"; path = "../../LowLevelParticles/src/PtCollisionHelper.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09f0da07ff3d09f0da0 /* PtCollisionMethods.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMethods.h"; path = "../../LowLevelParticles/src/PtCollisionMethods.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09f0e087ff3d09f0e08 /* PtCollisionParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionParameters.h"; path = "../../LowLevelParticles/src/PtCollisionParameters.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09f0e707ff3d09f0e70 /* PtConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConfig.h"; path = "../../LowLevelParticles/src/PtConfig.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09f0ed87ff3d09f0ed8 /* PtConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConstants.h"; path = "../../LowLevelParticles/src/PtConstants.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09f0f407ff3d09f0f40 /* PtContextCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.h"; path = "../../LowLevelParticles/src/PtContextCpu.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09f0fa87ff3d09f0fa8 /* PtDynamicHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicHelper.h"; path = "../../LowLevelParticles/src/PtDynamicHelper.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09f10107ff3d09f1010 /* PtDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.h"; path = "../../LowLevelParticles/src/PtDynamics.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09f10787ff3d09f1078 /* PtDynamicsKernels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsKernels.h"; path = "../../LowLevelParticles/src/PtDynamicsKernels.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09f10e07ff3d09f10e0 /* PtDynamicsParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsParameters.h"; path = "../../LowLevelParticles/src/PtDynamicsParameters.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09f11487ff3d09f1148 /* PtDynamicsTempBuffers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsTempBuffers.h"; path = "../../LowLevelParticles/src/PtDynamicsTempBuffers.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09f11b07ff3d09f11b0 /* PtHeightFieldAabbTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtHeightFieldAabbTest.h"; path = "../../LowLevelParticles/src/PtHeightFieldAabbTest.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09f12187ff3d09f1218 /* PtPacketSections.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtPacketSections.h"; path = "../../LowLevelParticles/src/PtPacketSections.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09f12807ff3d09f1280 /* PtParticleCell.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleCell.h"; path = "../../LowLevelParticles/src/PtParticleCell.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09f12e87ff3d09f12e8 /* PtParticleOpcodeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleOpcodeCache.h"; path = "../../LowLevelParticles/src/PtParticleOpcodeCache.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09f13507ff3d09f1350 /* PtParticleShapeCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.h"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09f13b87ff3d09f13b8 /* PtParticleSystemSimCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.h"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09f14207ff3d09f1420 /* PtSpatialHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.h"; path = "../../LowLevelParticles/src/PtSpatialHash.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09f14887ff3d09f1488 /* PtSpatialHashHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHashHelper.h"; path = "../../LowLevelParticles/src/PtSpatialHashHelper.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09f14f07ff3d09f14f0 /* PtTwoWayData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtTwoWayData.h"; path = "../../LowLevelParticles/src/PtTwoWayData.h"; sourceTree = SOURCE_ROOT; };
- FFFDd09f15587ff3d09f1558 /* PtBatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.cpp"; path = "../../LowLevelParticles/src/PtBatcher.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09f15c07ff3d09f15c0 /* PtBodyTransformVault.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.cpp"; path = "../../LowLevelParticles/src/PtBodyTransformVault.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09f16287ff3d09f1628 /* PtCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.cpp"; path = "../../LowLevelParticles/src/PtCollision.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09f16907ff3d09f1690 /* PtCollisionBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionBox.cpp"; path = "../../LowLevelParticles/src/PtCollisionBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09f16f87ff3d09f16f8 /* PtCollisionCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionCapsule.cpp"; path = "../../LowLevelParticles/src/PtCollisionCapsule.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09f17607ff3d09f1760 /* PtCollisionConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionConvex.cpp"; path = "../../LowLevelParticles/src/PtCollisionConvex.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09f17c87ff3d09f17c8 /* PtCollisionMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMesh.cpp"; path = "../../LowLevelParticles/src/PtCollisionMesh.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09f18307ff3d09f1830 /* PtCollisionPlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionPlane.cpp"; path = "../../LowLevelParticles/src/PtCollisionPlane.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09f18987ff3d09f1898 /* PtCollisionSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionSphere.cpp"; path = "../../LowLevelParticles/src/PtCollisionSphere.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09f19007ff3d09f1900 /* PtContextCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.cpp"; path = "../../LowLevelParticles/src/PtContextCpu.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09f19687ff3d09f1968 /* PtDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.cpp"; path = "../../LowLevelParticles/src/PtDynamics.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09f19d07ff3d09f19d0 /* PtParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.cpp"; path = "../../LowLevelParticles/src/PtParticleData.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09f1a387ff3d09f1a38 /* PtParticleShapeCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09f1aa07ff3d09f1aa0 /* PtParticleSystemSimCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09f1b087ff3d09f1b08 /* PtSpatialHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialHash.cpp"; sourceTree = SOURCE_ROOT; };
- FFFDd09f1b707ff3d09f1b70 /* PtSpatialLocalHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialLocalHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialLocalHash.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3cf5d0c07f8d3cf5d0c0 /* LowLevelParticles */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelParticles"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFD3d03f2007f8d3d03f200 /* PtBodyTransformVault.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.h"; path = "../../LowLevelParticles/include/PtBodyTransformVault.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d03f2687f8d3d03f268 /* PtContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContext.h"; path = "../../LowLevelParticles/include/PtContext.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d03f2d07f8d3d03f2d0 /* PtGridCellVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtGridCellVector.h"; path = "../../LowLevelParticles/include/PtGridCellVector.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d03f3387f8d3d03f338 /* PtParticle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticle.h"; path = "../../LowLevelParticles/include/PtParticle.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d03f3a07f8d3d03f3a0 /* PtParticleContactManagerStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleContactManagerStream.h"; path = "../../LowLevelParticles/include/PtParticleContactManagerStream.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d03f4087f8d3d03f408 /* PtParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.h"; path = "../../LowLevelParticles/include/PtParticleData.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d03f4707f8d3d03f470 /* PtParticleShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShape.h"; path = "../../LowLevelParticles/include/PtParticleShape.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d03f4d87f8d3d03f4d8 /* PtParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemCore.h"; path = "../../LowLevelParticles/include/PtParticleSystemCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d03f5407f8d3d03f540 /* PtParticleSystemFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemFlags.h"; path = "../../LowLevelParticles/include/PtParticleSystemFlags.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d03f5a87f8d3d03f5a8 /* PtParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSim.h"; path = "../../LowLevelParticles/include/PtParticleSystemSim.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d04b4007f8d3d04b400 /* PtBatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.h"; path = "../../LowLevelParticles/src/PtBatcher.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d04b4687f8d3d04b468 /* PtCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.h"; path = "../../LowLevelParticles/src/PtCollision.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d04b4d07f8d3d04b4d0 /* PtCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionData.h"; path = "../../LowLevelParticles/src/PtCollisionData.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d04b5387f8d3d04b538 /* PtCollisionHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionHelper.h"; path = "../../LowLevelParticles/src/PtCollisionHelper.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d04b5a07f8d3d04b5a0 /* PtCollisionMethods.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMethods.h"; path = "../../LowLevelParticles/src/PtCollisionMethods.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d04b6087f8d3d04b608 /* PtCollisionParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionParameters.h"; path = "../../LowLevelParticles/src/PtCollisionParameters.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d04b6707f8d3d04b670 /* PtConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConfig.h"; path = "../../LowLevelParticles/src/PtConfig.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d04b6d87f8d3d04b6d8 /* PtConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConstants.h"; path = "../../LowLevelParticles/src/PtConstants.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d04b7407f8d3d04b740 /* PtContextCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.h"; path = "../../LowLevelParticles/src/PtContextCpu.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d04b7a87f8d3d04b7a8 /* PtDynamicHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicHelper.h"; path = "../../LowLevelParticles/src/PtDynamicHelper.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d04b8107f8d3d04b810 /* PtDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.h"; path = "../../LowLevelParticles/src/PtDynamics.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d04b8787f8d3d04b878 /* PtDynamicsKernels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsKernels.h"; path = "../../LowLevelParticles/src/PtDynamicsKernels.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d04b8e07f8d3d04b8e0 /* PtDynamicsParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsParameters.h"; path = "../../LowLevelParticles/src/PtDynamicsParameters.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d04b9487f8d3d04b948 /* PtDynamicsTempBuffers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsTempBuffers.h"; path = "../../LowLevelParticles/src/PtDynamicsTempBuffers.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d04b9b07f8d3d04b9b0 /* PtHeightFieldAabbTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtHeightFieldAabbTest.h"; path = "../../LowLevelParticles/src/PtHeightFieldAabbTest.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d04ba187f8d3d04ba18 /* PtPacketSections.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtPacketSections.h"; path = "../../LowLevelParticles/src/PtPacketSections.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d04ba807f8d3d04ba80 /* PtParticleCell.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleCell.h"; path = "../../LowLevelParticles/src/PtParticleCell.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d04bae87f8d3d04bae8 /* PtParticleOpcodeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleOpcodeCache.h"; path = "../../LowLevelParticles/src/PtParticleOpcodeCache.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d04bb507f8d3d04bb50 /* PtParticleShapeCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.h"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d04bbb87f8d3d04bbb8 /* PtParticleSystemSimCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.h"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d04bc207f8d3d04bc20 /* PtSpatialHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.h"; path = "../../LowLevelParticles/src/PtSpatialHash.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d04bc887f8d3d04bc88 /* PtSpatialHashHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHashHelper.h"; path = "../../LowLevelParticles/src/PtSpatialHashHelper.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d04bcf07f8d3d04bcf0 /* PtTwoWayData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtTwoWayData.h"; path = "../../LowLevelParticles/src/PtTwoWayData.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3d04bd587f8d3d04bd58 /* PtBatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.cpp"; path = "../../LowLevelParticles/src/PtBatcher.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d04bdc07f8d3d04bdc0 /* PtBodyTransformVault.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.cpp"; path = "../../LowLevelParticles/src/PtBodyTransformVault.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d04be287f8d3d04be28 /* PtCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.cpp"; path = "../../LowLevelParticles/src/PtCollision.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d04be907f8d3d04be90 /* PtCollisionBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionBox.cpp"; path = "../../LowLevelParticles/src/PtCollisionBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d04bef87f8d3d04bef8 /* PtCollisionCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionCapsule.cpp"; path = "../../LowLevelParticles/src/PtCollisionCapsule.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d04bf607f8d3d04bf60 /* PtCollisionConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionConvex.cpp"; path = "../../LowLevelParticles/src/PtCollisionConvex.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d04bfc87f8d3d04bfc8 /* PtCollisionMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMesh.cpp"; path = "../../LowLevelParticles/src/PtCollisionMesh.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d04c0307f8d3d04c030 /* PtCollisionPlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionPlane.cpp"; path = "../../LowLevelParticles/src/PtCollisionPlane.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d04c0987f8d3d04c098 /* PtCollisionSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionSphere.cpp"; path = "../../LowLevelParticles/src/PtCollisionSphere.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d04c1007f8d3d04c100 /* PtContextCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.cpp"; path = "../../LowLevelParticles/src/PtContextCpu.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d04c1687f8d3d04c168 /* PtDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.cpp"; path = "../../LowLevelParticles/src/PtDynamics.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d04c1d07f8d3d04c1d0 /* PtParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.cpp"; path = "../../LowLevelParticles/src/PtParticleData.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d04c2387f8d3d04c238 /* PtParticleShapeCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d04c2a07f8d3d04c2a0 /* PtParticleSystemSimCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d04c3087f8d3d04c308 /* PtSpatialHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialHash.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3d04c3707f8d3d04c370 /* PtSpatialLocalHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialLocalHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialLocalHash.cpp"; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */
/* Begin PBXResourcesBuildPhase section */
- FFF2d1664d207ff3d1664d20 /* Resources */ = {
+ FFF23cf5d0c07f8d3cf5d0c0 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2898,7 +2898,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFCd1664d207ff3d1664d20 /* Frameworks */ = {
+ FFFC3cf5d0c07f8d3cf5d0c0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2908,26 +2908,26 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF8d1664d207ff3d1664d20 /* Sources */ = {
+ FFF83cf5d0c07f8d3cf5d0c0 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFFd09f15587ff3d09f1558,
- FFFFd09f15c07ff3d09f15c0,
- FFFFd09f16287ff3d09f1628,
- FFFFd09f16907ff3d09f1690,
- FFFFd09f16f87ff3d09f16f8,
- FFFFd09f17607ff3d09f1760,
- FFFFd09f17c87ff3d09f17c8,
- FFFFd09f18307ff3d09f1830,
- FFFFd09f18987ff3d09f1898,
- FFFFd09f19007ff3d09f1900,
- FFFFd09f19687ff3d09f1968,
- FFFFd09f19d07ff3d09f19d0,
- FFFFd09f1a387ff3d09f1a38,
- FFFFd09f1aa07ff3d09f1aa0,
- FFFFd09f1b087ff3d09f1b08,
- FFFFd09f1b707ff3d09f1b70,
+ FFFF3d04bd587f8d3d04bd58,
+ FFFF3d04bdc07f8d3d04bdc0,
+ FFFF3d04be287f8d3d04be28,
+ FFFF3d04be907f8d3d04be90,
+ FFFF3d04bef87f8d3d04bef8,
+ FFFF3d04bf607f8d3d04bf60,
+ FFFF3d04bfc87f8d3d04bfc8,
+ FFFF3d04c0307f8d3d04c030,
+ FFFF3d04c0987f8d3d04c098,
+ FFFF3d04c1007f8d3d04c100,
+ FFFF3d04c1687f8d3d04c168,
+ FFFF3d04c1d07f8d3d04c1d0,
+ FFFF3d04c2387f8d3d04c238,
+ FFFF3d04c2a07f8d3d04c2a0,
+ FFFF3d04c3087f8d3d04c308,
+ FFFF3d04c3707f8d3d04c370,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -2939,22 +2939,22 @@
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of PxTask */
- FFFFd17377407ff3d1737740 /* src/TaskManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd17377407ff3d1737740 /* src/TaskManager.cpp */; };
+ FFFF3b47f4807f8d3b47f480 /* src/TaskManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3b47f4807f8d3b47f480 /* src/TaskManager.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFDd17372b07ff3d17372b0 /* PxTask */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxTask"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFDd1734de07ff3d1734de0 /* PxCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCpuDispatcher.h"; path = "../../../../PxShared/include/task/PxCpuDispatcher.h"; sourceTree = SOURCE_ROOT; };
- FFFDd1734e487ff3d1734e48 /* PxGpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuDispatcher.h"; path = "../../../../PxShared/include/task/PxGpuDispatcher.h"; sourceTree = SOURCE_ROOT; };
- FFFDd1734eb07ff3d1734eb0 /* PxGpuTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuTask.h"; path = "../../../../PxShared/include/task/PxGpuTask.h"; sourceTree = SOURCE_ROOT; };
- FFFDd1734f187ff3d1734f18 /* PxTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTask.h"; path = "../../../../PxShared/include/task/PxTask.h"; sourceTree = SOURCE_ROOT; };
- FFFDd1734f807ff3d1734f80 /* PxTaskDefine.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskDefine.h"; path = "../../../../PxShared/include/task/PxTaskDefine.h"; sourceTree = SOURCE_ROOT; };
- FFFDd1734fe87ff3d1734fe8 /* PxTaskManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskManager.h"; path = "../../../../PxShared/include/task/PxTaskManager.h"; sourceTree = SOURCE_ROOT; };
- FFFDd17377407ff3d1737740 /* src/TaskManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/TaskManager.cpp"; path = "../../../../PxShared/src/task/src/TaskManager.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3b4815b07f8d3b4815b0 /* PxTask */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxTask"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFD3b47f1807f8d3b47f180 /* PxCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCpuDispatcher.h"; path = "../../../../PxShared/include/task/PxCpuDispatcher.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b47f1e87f8d3b47f1e8 /* PxGpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuDispatcher.h"; path = "../../../../PxShared/include/task/PxGpuDispatcher.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b47f2507f8d3b47f250 /* PxGpuTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuTask.h"; path = "../../../../PxShared/include/task/PxGpuTask.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b47f2b87f8d3b47f2b8 /* PxTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTask.h"; path = "../../../../PxShared/include/task/PxTask.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b47f3207f8d3b47f320 /* PxTaskDefine.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskDefine.h"; path = "../../../../PxShared/include/task/PxTaskDefine.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b47f3887f8d3b47f388 /* PxTaskManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskManager.h"; path = "../../../../PxShared/include/task/PxTaskManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3b47f4807f8d3b47f480 /* 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 */
- FFF2d17372b07ff3d17372b0 /* Resources */ = {
+ FFF23b4815b07f8d3b4815b0 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2964,7 +2964,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFCd17372b07ff3d17372b0 /* Frameworks */ = {
+ FFFC3b4815b07f8d3b4815b0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2974,11 +2974,11 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF8d17372b07ff3d17372b0 /* Sources */ = {
+ FFF83b4815b07f8d3b4815b0 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFFd17377407ff3d1737740,
+ FFFF3b47f4807f8d3b47f480,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -2990,17 +2990,17 @@
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of PsFastXml */
- FFFFd2c609307ff3d2c60930 /* PsFastXml.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDd2c609307ff3d2c60930 /* PsFastXml.cpp */; };
+ FFFF3dac74707f8d3dac7470 /* PsFastXml.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3dac74707f8d3dac7470 /* PsFastXml.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFDd2c601707ff3d2c60170 /* PsFastXml */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PsFastXml"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFDd2c608307ff3d2c60830 /* PsFastXml.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PsFastXml.h"; path = "../../../../PxShared/src/fastxml/include/PsFastXml.h"; sourceTree = SOURCE_ROOT; };
- FFFDd2c609307ff3d2c60930 /* PsFastXml.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PsFastXml.cpp"; path = "../../../../PxShared/src/fastxml/src/PsFastXml.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD3dac6c007f8d3dac6c00 /* PsFastXml */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PsFastXml"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFD3dac73707f8d3dac7370 /* PsFastXml.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PsFastXml.h"; path = "../../../../PxShared/src/fastxml/include/PsFastXml.h"; sourceTree = SOURCE_ROOT; };
+ FFFD3dac74707f8d3dac7470 /* 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 */
- FFF2d2c601707ff3d2c60170 /* Resources */ = {
+ FFF23dac6c007f8d3dac6c00 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -3010,7 +3010,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFCd2c601707ff3d2c60170 /* Frameworks */ = {
+ FFFC3dac6c007f8d3dac6c00 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -3020,11 +3020,11 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF8d2c601707ff3d2c60170 /* Sources */ = {
+ FFF83dac6c007f8d3dac6c00 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFFd2c609307ff3d2c60930,
+ FFFF3dac74707f8d3dac7470,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -3036,1974 +3036,1974 @@
/* End PBXTargetDependency section */
/* Begin PBXContainerItemProxy section */
- FFF5d2c639507ff3d2c63950 /* PBXContainerItemProxy */ = {
- containerPortal = FFF9d047d1a07ff3d047d1a0 /* Project object */;
+ FFF53daca7207f8d3daca720 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF93b5766707f8d3b576670 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFAd2c639507ff3d2c63950 /* PhysX */;
+ remoteGlobalIDString = FFFA3daca7207f8d3daca720 /* PhysX */;
remoteInfo = "PhysX";
};
- FFF5d2c6c5107ff3d2c6c510 /* PBXContainerItemProxy */ = {
- containerPortal = FFF9d047d1a07ff3d047d1a0 /* Project object */;
+ FFF53dad32e07f8d3dad32e0 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF93b5766707f8d3b576670 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFAd2c6c5107ff3d2c6c510 /* PhysXCharacterKinematic */;
+ remoteGlobalIDString = FFFA3dad32e07f8d3dad32e0 /* PhysXCharacterKinematic */;
remoteInfo = "PhysXCharacterKinematic";
};
- FFF5d2c6d8507ff3d2c6d850 /* PBXContainerItemProxy */ = {
- containerPortal = FFF9d047d1a07ff3d047d1a0 /* Project object */;
+ FFF53dad46207f8d3dad4620 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF93b5766707f8d3b576670 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFAd2c6d8507ff3d2c6d850 /* PhysXVehicle */;
+ remoteGlobalIDString = FFFA3dad46207f8d3dad4620 /* PhysXVehicle */;
remoteInfo = "PhysXVehicle";
};
- FFF5d2c7d5c07ff3d2c7d5c0 /* PBXContainerItemProxy */ = {
- containerPortal = FFF9d047d1a07ff3d047d1a0 /* Project object */;
+ FFF53dae43907f8d3dae4390 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF93b5766707f8d3b576670 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFAd2c7d5c07ff3d2c7d5c0 /* PhysXExtensions */;
+ remoteGlobalIDString = FFFA3dae43907f8d3dae4390 /* PhysXExtensions */;
remoteInfo = "PhysXExtensions";
};
- FFF5d2c8ff407ff3d2c8ff40 /* PBXContainerItemProxy */ = {
- containerPortal = FFF9d047d1a07ff3d047d1a0 /* Project object */;
+ FFF53cc2ae407f8d3cc2ae40 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF93b5766707f8d3b576670 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFAd2c8ff407ff3d2c8ff40 /* SceneQuery */;
+ remoteGlobalIDString = FFFA3cc2ae407f8d3cc2ae40 /* SceneQuery */;
remoteInfo = "SceneQuery";
};
- FFF5d2c944907ff3d2c94490 /* PBXContainerItemProxy */ = {
- containerPortal = FFF9d047d1a07ff3d047d1a0 /* Project object */;
+ FFF53cc2f2707f8d3cc2f270 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF93b5766707f8d3b576670 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFAd2c944907ff3d2c94490 /* SimulationController */;
+ remoteGlobalIDString = FFFA3cc2f2707f8d3cc2f270 /* SimulationController */;
remoteInfo = "SimulationController";
};
- FFF5d2f00d507ff3d2f00d50 /* PBXContainerItemProxy */ = {
- containerPortal = FFF9d047d1a07ff3d047d1a0 /* Project object */;
+ FFF53cc226e07f8d3cc226e0 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF93b5766707f8d3b576670 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFAd2f00d507ff3d2f00d50 /* PhysXCooking */;
+ remoteGlobalIDString = FFFA3cc226e07f8d3cc226e0 /* PhysXCooking */;
remoteInfo = "PhysXCooking";
};
- FFF5d10a67707ff3d10a6770 /* PBXContainerItemProxy */ = {
- containerPortal = FFF9d047d1a07ff3d047d1a0 /* Project object */;
+ FFF53c99d3f07f8d3c99d3f0 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF93b5766707f8d3b576670 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFAd10a67707ff3d10a6770 /* PhysXCommon */;
+ remoteGlobalIDString = FFFA3c99d3f07f8d3c99d3f0 /* PhysXCommon */;
remoteInfo = "PhysXCommon";
};
- FFF5d108e7507ff3d108e750 /* PBXContainerItemProxy */ = {
- containerPortal = FFF9d047d1a07ff3d047d1a0 /* Project object */;
+ FFF53c9892007f8d3c989200 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF93b5766707f8d3b576670 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFAd108e7507ff3d108e750 /* PxFoundation */;
+ remoteGlobalIDString = FFFA3c9892007f8d3c989200 /* PxFoundation */;
remoteInfo = "PxFoundation";
};
- FFF5d17098707ff3d1709870 /* PBXContainerItemProxy */ = {
- containerPortal = FFF9d047d1a07ff3d047d1a0 /* Project object */;
+ FFF53cd0c6b07f8d3cd0c6b0 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF93b5766707f8d3b576670 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFAd17098707ff3d1709870 /* PxPvdSDK */;
+ remoteGlobalIDString = FFFA3cd0c6b07f8d3cd0c6b0 /* PxPvdSDK */;
remoteInfo = "PxPvdSDK";
};
- FFF5d1610fe07ff3d1610fe0 /* PBXContainerItemProxy */ = {
- containerPortal = FFF9d047d1a07ff3d047d1a0 /* Project object */;
+ FFF53cc0c2b07f8d3cc0c2b0 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF93b5766707f8d3b576670 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFAd1610fe07ff3d1610fe0 /* LowLevel */;
+ remoteGlobalIDString = FFFA3cc0c2b07f8d3cc0c2b0 /* LowLevel */;
remoteInfo = "LowLevel";
};
- FFF5d1635bb07ff3d1635bb0 /* PBXContainerItemProxy */ = {
- containerPortal = FFF9d047d1a07ff3d047d1a0 /* Project object */;
+ FFF53cf17c907f8d3cf17c90 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF93b5766707f8d3b576670 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFAd1635bb07ff3d1635bb0 /* LowLevelAABB */;
+ remoteGlobalIDString = FFFA3cf17c907f8d3cf17c90 /* LowLevelAABB */;
remoteInfo = "LowLevelAABB";
};
- FFF5d14331607ff3d1433160 /* PBXContainerItemProxy */ = {
- containerPortal = FFF9d047d1a07ff3d047d1a0 /* Project object */;
+ FFF53cf3b3a07f8d3cf3b3a0 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF93b5766707f8d3b576670 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFAd14331607ff3d1433160 /* LowLevelDynamics */;
+ remoteGlobalIDString = FFFA3cf3b3a07f8d3cf3b3a0 /* LowLevelDynamics */;
remoteInfo = "LowLevelDynamics";
};
- FFF5d16276007ff3d1627600 /* PBXContainerItemProxy */ = {
- containerPortal = FFF9d047d1a07ff3d047d1a0 /* Project object */;
+ FFF53b43b7807f8d3b43b780 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF93b5766707f8d3b576670 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFAd16276007ff3d1627600 /* LowLevelCloth */;
+ remoteGlobalIDString = FFFA3b43b7807f8d3b43b780 /* LowLevelCloth */;
remoteInfo = "LowLevelCloth";
};
- FFF5d1664d207ff3d1664d20 /* PBXContainerItemProxy */ = {
- containerPortal = FFF9d047d1a07ff3d047d1a0 /* Project object */;
+ FFF53cf5d0c07f8d3cf5d0c0 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF93b5766707f8d3b576670 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFAd1664d207ff3d1664d20 /* LowLevelParticles */;
+ remoteGlobalIDString = FFFA3cf5d0c07f8d3cf5d0c0 /* LowLevelParticles */;
remoteInfo = "LowLevelParticles";
};
- FFF5d17372b07ff3d17372b0 /* PBXContainerItemProxy */ = {
- containerPortal = FFF9d047d1a07ff3d047d1a0 /* Project object */;
+ FFF53b4815b07f8d3b4815b0 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF93b5766707f8d3b576670 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFAd17372b07ff3d17372b0 /* PxTask */;
+ remoteGlobalIDString = FFFA3b4815b07f8d3b4815b0 /* PxTask */;
remoteInfo = "PxTask";
};
- FFF5d2c601707ff3d2c60170 /* PBXContainerItemProxy */ = {
- containerPortal = FFF9d047d1a07ff3d047d1a0 /* Project object */;
+ FFF53dac6c007f8d3dac6c00 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF93b5766707f8d3b576670 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFAd2c601707ff3d2c60170 /* PsFastXml */;
+ remoteGlobalIDString = FFFA3dac6c007f8d3dac6c00 /* PsFastXml */;
remoteInfo = "PsFastXml";
};
/* End PBXContainerItemProxy section */
/* Begin PBXGroup section */
- FFFBd047d2087ff3d047d208 /* PhysX */ = {
+ FFFB3b5766d87f8d3b5766d8 /* PhysX */ = {
isa = PBXGroup;
children = (
- FFF0d047d1a07ff3d047d1a0 /* Source */,
- FFEEd047d1a07ff3d047d1a0 /* Products */,
+ FFF03b5766707f8d3b576670 /* Source */,
+ FFEE3b5766707f8d3b576670 /* Products */,
);
name = "PhysX";
sourceTree = "<group>";
};
- FFF0d047d1a07ff3d047d1a0 /* Source */ = {
+ FFF03b5766707f8d3b576670 /* Source */ = {
isa = PBXGroup;
children = (
- FFFBd2c639507ff3d2c63950,
- FFFBd2c6c5107ff3d2c6c510,
- FFFBd2c6d8507ff3d2c6d850,
- FFFBd2c7d5c07ff3d2c7d5c0,
- FFFBd2c8ff407ff3d2c8ff40,
- FFFBd2c944907ff3d2c94490,
- FFFBd2f00d507ff3d2f00d50,
- FFFBd10a67707ff3d10a6770,
- FFFBd108e7507ff3d108e750,
- FFFBd17098707ff3d1709870,
- FFFBd1610fe07ff3d1610fe0,
- FFFBd1635bb07ff3d1635bb0,
- FFFBd14331607ff3d1433160,
- FFFBd16276007ff3d1627600,
- FFFBd1664d207ff3d1664d20,
- FFFBd17372b07ff3d17372b0,
- FFFBd2c601707ff3d2c60170,
+ FFFB3daca7207f8d3daca720,
+ FFFB3dad32e07f8d3dad32e0,
+ FFFB3dad46207f8d3dad4620,
+ FFFB3dae43907f8d3dae4390,
+ FFFB3cc2ae407f8d3cc2ae40,
+ FFFB3cc2f2707f8d3cc2f270,
+ FFFB3cc226e07f8d3cc226e0,
+ FFFB3c99d3f07f8d3c99d3f0,
+ FFFB3c9892007f8d3c989200,
+ FFFB3cd0c6b07f8d3cd0c6b0,
+ FFFB3cc0c2b07f8d3cc0c2b0,
+ FFFB3cf17c907f8d3cf17c90,
+ FFFB3cf3b3a07f8d3cf3b3a0,
+ FFFB3b43b7807f8d3b43b780,
+ FFFB3cf5d0c07f8d3cf5d0c0,
+ FFFB3b4815b07f8d3b4815b0,
+ FFFB3dac6c007f8d3dac6c00,
);
name = Source;
sourceTree = "<group>";
};
- FFEEd047d1a07ff3d047d1a0 /* Products */ = {
+ FFEE3b5766707f8d3b576670 /* Products */ = {
isa = PBXGroup;
children = (
- FFFDd2c639507ff3d2c63950,
- FFFDd2c6c5107ff3d2c6c510,
- FFFDd2c6d8507ff3d2c6d850,
- FFFDd2c7d5c07ff3d2c7d5c0,
- FFFDd2c8ff407ff3d2c8ff40,
- FFFDd2c944907ff3d2c94490,
- FFFDd2f00d507ff3d2f00d50,
- FFFDd10a67707ff3d10a6770,
- FFFDd108e7507ff3d108e750,
- FFFDd17098707ff3d1709870,
- FFFDd1610fe07ff3d1610fe0,
- FFFDd1635bb07ff3d1635bb0,
- FFFDd14331607ff3d1433160,
- FFFDd16276007ff3d1627600,
- FFFDd1664d207ff3d1664d20,
- FFFDd17372b07ff3d17372b0,
- FFFDd2c601707ff3d2c60170,
+ FFFD3daca7207f8d3daca720,
+ FFFD3dad32e07f8d3dad32e0,
+ FFFD3dad46207f8d3dad4620,
+ FFFD3dae43907f8d3dae4390,
+ FFFD3cc2ae407f8d3cc2ae40,
+ FFFD3cc2f2707f8d3cc2f270,
+ FFFD3cc226e07f8d3cc226e0,
+ FFFD3c99d3f07f8d3c99d3f0,
+ FFFD3c9892007f8d3c989200,
+ FFFD3cd0c6b07f8d3cd0c6b0,
+ FFFD3cc0c2b07f8d3cc0c2b0,
+ FFFD3cf17c907f8d3cf17c90,
+ FFFD3cf3b3a07f8d3cf3b3a0,
+ FFFD3b43b7807f8d3b43b780,
+ FFFD3cf5d0c07f8d3cf5d0c0,
+ FFFD3b4815b07f8d3b4815b0,
+ FFFD3dac6c007f8d3dac6c00,
);
name = Products;
sourceTree = "<group>";
};
- FFFBd2c639507ff3d2c63950 /* PhysX */ = {
+ FFFB3daca7207f8d3daca720 /* PhysX */ = {
isa = PBXGroup;
children = (
- FFFBd2c742007ff3d2c74200 /* src */,
- FFFBd2c742287ff3d2c74228 /* include */,
- FFFBd2c742507ff3d2c74250 /* metadata */,
+ FFFB3dadafd07f8d3dadafd0 /* src */,
+ FFFB3dadaff87f8d3dadaff8 /* include */,
+ FFFB3dadb0207f8d3dadb020 /* metadata */,
);
name = "PhysX";
sourceTree = "<group>";
};
- FFFBd2c742007ff3d2c74200 /* src */ = {
+ FFFB3dadafd07f8d3dadafd0 /* src */ = {
isa = PBXGroup;
children = (
- FFFDd0a212007ff3d0a21200 /* NpActor.h */,
- FFFDd0a212687ff3d0a21268 /* NpActorTemplate.h */,
- FFFDd0a212d07ff3d0a212d0 /* NpAggregate.h */,
- FFFDd0a213387ff3d0a21338 /* NpArticulation.h */,
- FFFDd0a213a07ff3d0a213a0 /* NpArticulationJoint.h */,
- FFFDd0a214087ff3d0a21408 /* NpArticulationLink.h */,
- FFFDd0a214707ff3d0a21470 /* NpBatchQuery.h */,
- FFFDd0a214d87ff3d0a214d8 /* NpCast.h */,
- FFFDd0a215407ff3d0a21540 /* NpConnector.h */,
- FFFDd0a215a87ff3d0a215a8 /* NpConstraint.h */,
- FFFDd0a216107ff3d0a21610 /* NpFactory.h */,
- FFFDd0a216787ff3d0a21678 /* NpMaterial.h */,
- FFFDd0a216e07ff3d0a216e0 /* NpMaterialManager.h */,
- FFFDd0a217487ff3d0a21748 /* NpPhysics.h */,
- FFFDd0a217b07ff3d0a217b0 /* NpPhysicsInsertionCallback.h */,
- FFFDd0a218187ff3d0a21818 /* NpPtrTableStorageManager.h */,
- FFFDd0a218807ff3d0a21880 /* NpPvdSceneQueryCollector.h */,
- FFFDd0a218e87ff3d0a218e8 /* NpQueryShared.h */,
- FFFDd0a219507ff3d0a21950 /* NpReadCheck.h */,
- FFFDd0a219b87ff3d0a219b8 /* NpRigidActorTemplate.h */,
- FFFDd0a21a207ff3d0a21a20 /* NpRigidActorTemplateInternal.h */,
- FFFDd0a21a887ff3d0a21a88 /* NpRigidBodyTemplate.h */,
- FFFDd0a21af07ff3d0a21af0 /* NpRigidDynamic.h */,
- FFFDd0a21b587ff3d0a21b58 /* NpRigidStatic.h */,
- FFFDd0a21bc07ff3d0a21bc0 /* NpScene.h */,
- FFFDd0a21c287ff3d0a21c28 /* NpSceneQueries.h */,
- FFFDd0a21c907ff3d0a21c90 /* NpShape.h */,
- FFFDd0a21cf87ff3d0a21cf8 /* NpShapeManager.h */,
- FFFDd0a21d607ff3d0a21d60 /* NpSpatialIndex.h */,
- FFFDd0a21dc87ff3d0a21dc8 /* NpVolumeCache.h */,
- FFFDd0a21e307ff3d0a21e30 /* NpWriteCheck.h */,
- FFFDd0a21e987ff3d0a21e98 /* PvdMetaDataBindingData.h */,
- FFFDd0a21f007ff3d0a21f00 /* PvdMetaDataPvdBinding.h */,
- FFFDd0a21f687ff3d0a21f68 /* PvdPhysicsClient.h */,
- FFFDd0a21fd07ff3d0a21fd0 /* PvdTypeNames.h */,
- FFFDd0a220387ff3d0a22038 /* NpActor.cpp */,
- FFFDd0a220a07ff3d0a220a0 /* NpAggregate.cpp */,
- FFFDd0a221087ff3d0a22108 /* NpArticulation.cpp */,
- FFFDd0a221707ff3d0a22170 /* NpArticulationJoint.cpp */,
- FFFDd0a221d87ff3d0a221d8 /* NpArticulationLink.cpp */,
- FFFDd0a222407ff3d0a22240 /* NpBatchQuery.cpp */,
- FFFDd0a222a87ff3d0a222a8 /* NpConstraint.cpp */,
- FFFDd0a223107ff3d0a22310 /* NpFactory.cpp */,
- FFFDd0a223787ff3d0a22378 /* NpMaterial.cpp */,
- FFFDd0a223e07ff3d0a223e0 /* NpMetaData.cpp */,
- FFFDd0a224487ff3d0a22448 /* NpPhysics.cpp */,
- FFFDd0a224b07ff3d0a224b0 /* NpPvdSceneQueryCollector.cpp */,
- FFFDd0a225187ff3d0a22518 /* NpReadCheck.cpp */,
- FFFDd0a225807ff3d0a22580 /* NpRigidDynamic.cpp */,
- FFFDd0a225e87ff3d0a225e8 /* NpRigidStatic.cpp */,
- FFFDd0a226507ff3d0a22650 /* NpScene.cpp */,
- FFFDd0a226b87ff3d0a226b8 /* NpSceneQueries.cpp */,
- FFFDd0a227207ff3d0a22720 /* NpSerializerAdapter.cpp */,
- FFFDd0a227887ff3d0a22788 /* NpShape.cpp */,
- FFFDd0a227f07ff3d0a227f0 /* NpShapeManager.cpp */,
- FFFDd0a228587ff3d0a22858 /* NpSpatialIndex.cpp */,
- FFFDd0a228c07ff3d0a228c0 /* NpVolumeCache.cpp */,
- FFFDd0a229287ff3d0a22928 /* NpWriteCheck.cpp */,
- FFFDd0a229907ff3d0a22990 /* PvdMetaDataPvdBinding.cpp */,
- FFFDd0a229f87ff3d0a229f8 /* PvdPhysicsClient.cpp */,
- FFFDd0a22a607ff3d0a22a60 /* particles/NpParticleBaseTemplate.h */,
- FFFDd0a22ac87ff3d0a22ac8 /* particles/NpParticleFluid.h */,
- FFFDd0a22b307ff3d0a22b30 /* particles/NpParticleFluidReadData.h */,
- FFFDd0a22b987ff3d0a22b98 /* particles/NpParticleSystem.h */,
- FFFDd0a22c007ff3d0a22c00 /* particles/NpParticleFluid.cpp */,
- FFFDd0a22c687ff3d0a22c68 /* particles/NpParticleSystem.cpp */,
- FFFDd0a22cd07ff3d0a22cd0 /* buffering/ScbActor.h */,
- FFFDd0a22d387ff3d0a22d38 /* buffering/ScbAggregate.h */,
- FFFDd0a22da07ff3d0a22da0 /* buffering/ScbArticulation.h */,
- FFFDd0a22e087ff3d0a22e08 /* buffering/ScbArticulationJoint.h */,
- FFFDd0a22e707ff3d0a22e70 /* buffering/ScbBase.h */,
- FFFDd0a22ed87ff3d0a22ed8 /* buffering/ScbBody.h */,
- FFFDd0a22f407ff3d0a22f40 /* buffering/ScbCloth.h */,
- FFFDd0a22fa87ff3d0a22fa8 /* buffering/ScbConstraint.h */,
- FFFDd0a230107ff3d0a23010 /* buffering/ScbDefs.h */,
- FFFDd0a230787ff3d0a23078 /* buffering/ScbNpDeps.h */,
- FFFDd0a230e07ff3d0a230e0 /* buffering/ScbParticleSystem.h */,
- FFFDd0a231487ff3d0a23148 /* buffering/ScbRigidObject.h */,
- FFFDd0a231b07ff3d0a231b0 /* buffering/ScbRigidStatic.h */,
- FFFDd0a232187ff3d0a23218 /* buffering/ScbScene.h */,
- FFFDd0a232807ff3d0a23280 /* buffering/ScbSceneBuffer.h */,
- FFFDd0a232e87ff3d0a232e8 /* buffering/ScbScenePvdClient.h */,
- FFFDd0a233507ff3d0a23350 /* buffering/ScbShape.h */,
- FFFDd0a233b87ff3d0a233b8 /* buffering/ScbType.h */,
- FFFDd0a234207ff3d0a23420 /* buffering/ScbActor.cpp */,
- FFFDd0a234887ff3d0a23488 /* buffering/ScbAggregate.cpp */,
- FFFDd0a234f07ff3d0a234f0 /* buffering/ScbBase.cpp */,
- FFFDd0a235587ff3d0a23558 /* buffering/ScbCloth.cpp */,
- FFFDd0a235c07ff3d0a235c0 /* buffering/ScbMetaData.cpp */,
- FFFDd0a236287ff3d0a23628 /* buffering/ScbParticleSystem.cpp */,
- FFFDd0a236907ff3d0a23690 /* buffering/ScbScene.cpp */,
- FFFDd0a236f87ff3d0a236f8 /* buffering/ScbScenePvdClient.cpp */,
- FFFDd0a237607ff3d0a23760 /* buffering/ScbShape.cpp */,
- FFFDd0a237c87ff3d0a237c8 /* cloth/NpCloth.h */,
- FFFDd0a238307ff3d0a23830 /* cloth/NpClothFabric.h */,
- FFFDd0a238987ff3d0a23898 /* cloth/NpClothParticleData.h */,
- FFFDd0a239007ff3d0a23900 /* cloth/NpCloth.cpp */,
- FFFDd0a239687ff3d0a23968 /* cloth/NpClothFabric.cpp */,
- FFFDd0a239d07ff3d0a239d0 /* cloth/NpClothParticleData.cpp */,
- FFFDd0a23a387ff3d0a23a38 /* ../../ImmediateMode/src/NpImmediateMode.cpp */,
+ FFFD3d07b2007f8d3d07b200 /* NpActor.h */,
+ FFFD3d07b2687f8d3d07b268 /* NpActorTemplate.h */,
+ FFFD3d07b2d07f8d3d07b2d0 /* NpAggregate.h */,
+ FFFD3d07b3387f8d3d07b338 /* NpArticulation.h */,
+ FFFD3d07b3a07f8d3d07b3a0 /* NpArticulationJoint.h */,
+ FFFD3d07b4087f8d3d07b408 /* NpArticulationLink.h */,
+ FFFD3d07b4707f8d3d07b470 /* NpBatchQuery.h */,
+ FFFD3d07b4d87f8d3d07b4d8 /* NpCast.h */,
+ FFFD3d07b5407f8d3d07b540 /* NpConnector.h */,
+ FFFD3d07b5a87f8d3d07b5a8 /* NpConstraint.h */,
+ FFFD3d07b6107f8d3d07b610 /* NpFactory.h */,
+ FFFD3d07b6787f8d3d07b678 /* NpMaterial.h */,
+ FFFD3d07b6e07f8d3d07b6e0 /* NpMaterialManager.h */,
+ FFFD3d07b7487f8d3d07b748 /* NpPhysics.h */,
+ FFFD3d07b7b07f8d3d07b7b0 /* NpPhysicsInsertionCallback.h */,
+ FFFD3d07b8187f8d3d07b818 /* NpPtrTableStorageManager.h */,
+ FFFD3d07b8807f8d3d07b880 /* NpPvdSceneQueryCollector.h */,
+ FFFD3d07b8e87f8d3d07b8e8 /* NpQueryShared.h */,
+ FFFD3d07b9507f8d3d07b950 /* NpReadCheck.h */,
+ FFFD3d07b9b87f8d3d07b9b8 /* NpRigidActorTemplate.h */,
+ FFFD3d07ba207f8d3d07ba20 /* NpRigidActorTemplateInternal.h */,
+ FFFD3d07ba887f8d3d07ba88 /* NpRigidBodyTemplate.h */,
+ FFFD3d07baf07f8d3d07baf0 /* NpRigidDynamic.h */,
+ FFFD3d07bb587f8d3d07bb58 /* NpRigidStatic.h */,
+ FFFD3d07bbc07f8d3d07bbc0 /* NpScene.h */,
+ FFFD3d07bc287f8d3d07bc28 /* NpSceneQueries.h */,
+ FFFD3d07bc907f8d3d07bc90 /* NpShape.h */,
+ FFFD3d07bcf87f8d3d07bcf8 /* NpShapeManager.h */,
+ FFFD3d07bd607f8d3d07bd60 /* NpSpatialIndex.h */,
+ FFFD3d07bdc87f8d3d07bdc8 /* NpVolumeCache.h */,
+ FFFD3d07be307f8d3d07be30 /* NpWriteCheck.h */,
+ FFFD3d07be987f8d3d07be98 /* PvdMetaDataBindingData.h */,
+ FFFD3d07bf007f8d3d07bf00 /* PvdMetaDataPvdBinding.h */,
+ FFFD3d07bf687f8d3d07bf68 /* PvdPhysicsClient.h */,
+ FFFD3d07bfd07f8d3d07bfd0 /* PvdTypeNames.h */,
+ FFFD3d07c0387f8d3d07c038 /* NpActor.cpp */,
+ FFFD3d07c0a07f8d3d07c0a0 /* NpAggregate.cpp */,
+ FFFD3d07c1087f8d3d07c108 /* NpArticulation.cpp */,
+ FFFD3d07c1707f8d3d07c170 /* NpArticulationJoint.cpp */,
+ FFFD3d07c1d87f8d3d07c1d8 /* NpArticulationLink.cpp */,
+ FFFD3d07c2407f8d3d07c240 /* NpBatchQuery.cpp */,
+ FFFD3d07c2a87f8d3d07c2a8 /* NpConstraint.cpp */,
+ FFFD3d07c3107f8d3d07c310 /* NpFactory.cpp */,
+ FFFD3d07c3787f8d3d07c378 /* NpMaterial.cpp */,
+ FFFD3d07c3e07f8d3d07c3e0 /* NpMetaData.cpp */,
+ FFFD3d07c4487f8d3d07c448 /* NpPhysics.cpp */,
+ FFFD3d07c4b07f8d3d07c4b0 /* NpPvdSceneQueryCollector.cpp */,
+ FFFD3d07c5187f8d3d07c518 /* NpReadCheck.cpp */,
+ FFFD3d07c5807f8d3d07c580 /* NpRigidDynamic.cpp */,
+ FFFD3d07c5e87f8d3d07c5e8 /* NpRigidStatic.cpp */,
+ FFFD3d07c6507f8d3d07c650 /* NpScene.cpp */,
+ FFFD3d07c6b87f8d3d07c6b8 /* NpSceneQueries.cpp */,
+ FFFD3d07c7207f8d3d07c720 /* NpSerializerAdapter.cpp */,
+ FFFD3d07c7887f8d3d07c788 /* NpShape.cpp */,
+ FFFD3d07c7f07f8d3d07c7f0 /* NpShapeManager.cpp */,
+ FFFD3d07c8587f8d3d07c858 /* NpSpatialIndex.cpp */,
+ FFFD3d07c8c07f8d3d07c8c0 /* NpVolumeCache.cpp */,
+ FFFD3d07c9287f8d3d07c928 /* NpWriteCheck.cpp */,
+ FFFD3d07c9907f8d3d07c990 /* PvdMetaDataPvdBinding.cpp */,
+ FFFD3d07c9f87f8d3d07c9f8 /* PvdPhysicsClient.cpp */,
+ FFFD3d07ca607f8d3d07ca60 /* particles/NpParticleBaseTemplate.h */,
+ FFFD3d07cac87f8d3d07cac8 /* particles/NpParticleFluid.h */,
+ FFFD3d07cb307f8d3d07cb30 /* particles/NpParticleFluidReadData.h */,
+ FFFD3d07cb987f8d3d07cb98 /* particles/NpParticleSystem.h */,
+ FFFD3d07cc007f8d3d07cc00 /* particles/NpParticleFluid.cpp */,
+ FFFD3d07cc687f8d3d07cc68 /* particles/NpParticleSystem.cpp */,
+ FFFD3d07ccd07f8d3d07ccd0 /* buffering/ScbActor.h */,
+ FFFD3d07cd387f8d3d07cd38 /* buffering/ScbAggregate.h */,
+ FFFD3d07cda07f8d3d07cda0 /* buffering/ScbArticulation.h */,
+ FFFD3d07ce087f8d3d07ce08 /* buffering/ScbArticulationJoint.h */,
+ FFFD3d07ce707f8d3d07ce70 /* buffering/ScbBase.h */,
+ FFFD3d07ced87f8d3d07ced8 /* buffering/ScbBody.h */,
+ FFFD3d07cf407f8d3d07cf40 /* buffering/ScbCloth.h */,
+ FFFD3d07cfa87f8d3d07cfa8 /* buffering/ScbConstraint.h */,
+ FFFD3d07d0107f8d3d07d010 /* buffering/ScbDefs.h */,
+ FFFD3d07d0787f8d3d07d078 /* buffering/ScbNpDeps.h */,
+ FFFD3d07d0e07f8d3d07d0e0 /* buffering/ScbParticleSystem.h */,
+ FFFD3d07d1487f8d3d07d148 /* buffering/ScbRigidObject.h */,
+ FFFD3d07d1b07f8d3d07d1b0 /* buffering/ScbRigidStatic.h */,
+ FFFD3d07d2187f8d3d07d218 /* buffering/ScbScene.h */,
+ FFFD3d07d2807f8d3d07d280 /* buffering/ScbSceneBuffer.h */,
+ FFFD3d07d2e87f8d3d07d2e8 /* buffering/ScbScenePvdClient.h */,
+ FFFD3d07d3507f8d3d07d350 /* buffering/ScbShape.h */,
+ FFFD3d07d3b87f8d3d07d3b8 /* buffering/ScbType.h */,
+ FFFD3d07d4207f8d3d07d420 /* buffering/ScbActor.cpp */,
+ FFFD3d07d4887f8d3d07d488 /* buffering/ScbAggregate.cpp */,
+ FFFD3d07d4f07f8d3d07d4f0 /* buffering/ScbBase.cpp */,
+ FFFD3d07d5587f8d3d07d558 /* buffering/ScbCloth.cpp */,
+ FFFD3d07d5c07f8d3d07d5c0 /* buffering/ScbMetaData.cpp */,
+ FFFD3d07d6287f8d3d07d628 /* buffering/ScbParticleSystem.cpp */,
+ FFFD3d07d6907f8d3d07d690 /* buffering/ScbScene.cpp */,
+ FFFD3d07d6f87f8d3d07d6f8 /* buffering/ScbScenePvdClient.cpp */,
+ FFFD3d07d7607f8d3d07d760 /* buffering/ScbShape.cpp */,
+ FFFD3d07d7c87f8d3d07d7c8 /* cloth/NpCloth.h */,
+ FFFD3d07d8307f8d3d07d830 /* cloth/NpClothFabric.h */,
+ FFFD3d07d8987f8d3d07d898 /* cloth/NpClothParticleData.h */,
+ FFFD3d07d9007f8d3d07d900 /* cloth/NpCloth.cpp */,
+ FFFD3d07d9687f8d3d07d968 /* cloth/NpClothFabric.cpp */,
+ FFFD3d07d9d07f8d3d07d9d0 /* cloth/NpClothParticleData.cpp */,
+ FFFD3d07da387f8d3d07da38 /* ../../ImmediateMode/src/NpImmediateMode.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
- FFFBd2c742287ff3d2c74228 /* include */ = {
+ FFFB3dadaff87f8d3dadaff8 /* include */ = {
isa = PBXGroup;
children = (
- FFFDd0a1ec007ff3d0a1ec00 /* PxActor.h */,
- FFFDd0a1ec687ff3d0a1ec68 /* PxAggregate.h */,
- FFFDd0a1ecd07ff3d0a1ecd0 /* PxArticulation.h */,
- FFFDd0a1ed387ff3d0a1ed38 /* PxArticulationJoint.h */,
- FFFDd0a1eda07ff3d0a1eda0 /* PxArticulationLink.h */,
- FFFDd0a1ee087ff3d0a1ee08 /* PxBatchQuery.h */,
- FFFDd0a1ee707ff3d0a1ee70 /* PxBatchQueryDesc.h */,
- FFFDd0a1eed87ff3d0a1eed8 /* PxBroadPhase.h */,
- FFFDd0a1ef407ff3d0a1ef40 /* PxClient.h */,
- FFFDd0a1efa87ff3d0a1efa8 /* PxConstraint.h */,
- FFFDd0a1f0107ff3d0a1f010 /* PxConstraintDesc.h */,
- FFFDd0a1f0787ff3d0a1f078 /* PxContact.h */,
- FFFDd0a1f0e07ff3d0a1f0e0 /* PxContactModifyCallback.h */,
- FFFDd0a1f1487ff3d0a1f148 /* PxDeletionListener.h */,
- FFFDd0a1f1b07ff3d0a1f1b0 /* PxFiltering.h */,
- FFFDd0a1f2187ff3d0a1f218 /* PxForceMode.h */,
- FFFDd0a1f2807ff3d0a1f280 /* PxImmediateMode.h */,
- FFFDd0a1f2e87ff3d0a1f2e8 /* PxLockedData.h */,
- FFFDd0a1f3507ff3d0a1f350 /* PxMaterial.h */,
- FFFDd0a1f3b87ff3d0a1f3b8 /* PxPhysXConfig.h */,
- FFFDd0a1f4207ff3d0a1f420 /* PxPhysics.h */,
- FFFDd0a1f4887ff3d0a1f488 /* PxPhysicsAPI.h */,
- FFFDd0a1f4f07ff3d0a1f4f0 /* PxPhysicsSerialization.h */,
- FFFDd0a1f5587ff3d0a1f558 /* PxPhysicsVersion.h */,
- FFFDd0a1f5c07ff3d0a1f5c0 /* PxPruningStructure.h */,
- FFFDd0a1f6287ff3d0a1f628 /* PxQueryFiltering.h */,
- FFFDd0a1f6907ff3d0a1f690 /* PxQueryReport.h */,
- FFFDd0a1f6f87ff3d0a1f6f8 /* PxRigidActor.h */,
- FFFDd0a1f7607ff3d0a1f760 /* PxRigidBody.h */,
- FFFDd0a1f7c87ff3d0a1f7c8 /* PxRigidDynamic.h */,
- FFFDd0a1f8307ff3d0a1f830 /* PxRigidStatic.h */,
- FFFDd0a1f8987ff3d0a1f898 /* PxScene.h */,
- FFFDd0a1f9007ff3d0a1f900 /* PxSceneDesc.h */,
- FFFDd0a1f9687ff3d0a1f968 /* PxSceneLock.h */,
- FFFDd0a1f9d07ff3d0a1f9d0 /* PxShape.h */,
- FFFDd0a1fa387ff3d0a1fa38 /* PxSimulationEventCallback.h */,
- FFFDd0a1faa07ff3d0a1faa0 /* PxSimulationStatistics.h */,
- FFFDd0a1fb087ff3d0a1fb08 /* PxSpatialIndex.h */,
- FFFDd0a1fb707ff3d0a1fb70 /* PxVisualizationParameter.h */,
- FFFDd0a1fbd87ff3d0a1fbd8 /* PxVolumeCache.h */,
- FFFDd0a1fc407ff3d0a1fc40 /* particles/PxParticleBase.h */,
- FFFDd0a1fca87ff3d0a1fca8 /* particles/PxParticleBaseFlag.h */,
- FFFDd0a1fd107ff3d0a1fd10 /* particles/PxParticleCreationData.h */,
- FFFDd0a1fd787ff3d0a1fd78 /* particles/PxParticleFlag.h */,
- FFFDd0a1fde07ff3d0a1fde0 /* particles/PxParticleFluid.h */,
- FFFDd0a1fe487ff3d0a1fe48 /* particles/PxParticleFluidReadData.h */,
- FFFDd0a1feb07ff3d0a1feb0 /* particles/PxParticleReadData.h */,
- FFFDd0a1ff187ff3d0a1ff18 /* particles/PxParticleSystem.h */,
- FFFDd0a1ff807ff3d0a1ff80 /* pvd/PxPvdSceneClient.h */,
- FFFDd0a1ffe87ff3d0a1ffe8 /* cloth/PxCloth.h */,
- FFFDd0a200507ff3d0a20050 /* cloth/PxClothCollisionData.h */,
- FFFDd0a200b87ff3d0a200b8 /* cloth/PxClothFabric.h */,
- FFFDd0a201207ff3d0a20120 /* cloth/PxClothParticleData.h */,
- FFFDd0a201887ff3d0a20188 /* cloth/PxClothTypes.h */,
+ FFFD3d074a007f8d3d074a00 /* PxActor.h */,
+ FFFD3d074a687f8d3d074a68 /* PxAggregate.h */,
+ FFFD3d074ad07f8d3d074ad0 /* PxArticulation.h */,
+ FFFD3d074b387f8d3d074b38 /* PxArticulationJoint.h */,
+ FFFD3d074ba07f8d3d074ba0 /* PxArticulationLink.h */,
+ FFFD3d074c087f8d3d074c08 /* PxBatchQuery.h */,
+ FFFD3d074c707f8d3d074c70 /* PxBatchQueryDesc.h */,
+ FFFD3d074cd87f8d3d074cd8 /* PxBroadPhase.h */,
+ FFFD3d074d407f8d3d074d40 /* PxClient.h */,
+ FFFD3d074da87f8d3d074da8 /* PxConstraint.h */,
+ FFFD3d074e107f8d3d074e10 /* PxConstraintDesc.h */,
+ FFFD3d074e787f8d3d074e78 /* PxContact.h */,
+ FFFD3d074ee07f8d3d074ee0 /* PxContactModifyCallback.h */,
+ FFFD3d074f487f8d3d074f48 /* PxDeletionListener.h */,
+ FFFD3d074fb07f8d3d074fb0 /* PxFiltering.h */,
+ FFFD3d0750187f8d3d075018 /* PxForceMode.h */,
+ FFFD3d0750807f8d3d075080 /* PxImmediateMode.h */,
+ FFFD3d0750e87f8d3d0750e8 /* PxLockedData.h */,
+ FFFD3d0751507f8d3d075150 /* PxMaterial.h */,
+ FFFD3d0751b87f8d3d0751b8 /* PxPhysXConfig.h */,
+ FFFD3d0752207f8d3d075220 /* PxPhysics.h */,
+ FFFD3d0752887f8d3d075288 /* PxPhysicsAPI.h */,
+ FFFD3d0752f07f8d3d0752f0 /* PxPhysicsSerialization.h */,
+ FFFD3d0753587f8d3d075358 /* PxPhysicsVersion.h */,
+ FFFD3d0753c07f8d3d0753c0 /* PxPruningStructure.h */,
+ FFFD3d0754287f8d3d075428 /* PxQueryFiltering.h */,
+ FFFD3d0754907f8d3d075490 /* PxQueryReport.h */,
+ FFFD3d0754f87f8d3d0754f8 /* PxRigidActor.h */,
+ FFFD3d0755607f8d3d075560 /* PxRigidBody.h */,
+ FFFD3d0755c87f8d3d0755c8 /* PxRigidDynamic.h */,
+ FFFD3d0756307f8d3d075630 /* PxRigidStatic.h */,
+ FFFD3d0756987f8d3d075698 /* PxScene.h */,
+ FFFD3d0757007f8d3d075700 /* PxSceneDesc.h */,
+ FFFD3d0757687f8d3d075768 /* PxSceneLock.h */,
+ FFFD3d0757d07f8d3d0757d0 /* PxShape.h */,
+ FFFD3d0758387f8d3d075838 /* PxSimulationEventCallback.h */,
+ FFFD3d0758a07f8d3d0758a0 /* PxSimulationStatistics.h */,
+ FFFD3d0759087f8d3d075908 /* PxSpatialIndex.h */,
+ FFFD3d0759707f8d3d075970 /* PxVisualizationParameter.h */,
+ FFFD3d0759d87f8d3d0759d8 /* PxVolumeCache.h */,
+ FFFD3d075a407f8d3d075a40 /* particles/PxParticleBase.h */,
+ FFFD3d075aa87f8d3d075aa8 /* particles/PxParticleBaseFlag.h */,
+ FFFD3d075b107f8d3d075b10 /* particles/PxParticleCreationData.h */,
+ FFFD3d075b787f8d3d075b78 /* particles/PxParticleFlag.h */,
+ FFFD3d075be07f8d3d075be0 /* particles/PxParticleFluid.h */,
+ FFFD3d075c487f8d3d075c48 /* particles/PxParticleFluidReadData.h */,
+ FFFD3d075cb07f8d3d075cb0 /* particles/PxParticleReadData.h */,
+ FFFD3d075d187f8d3d075d18 /* particles/PxParticleSystem.h */,
+ FFFD3d075d807f8d3d075d80 /* pvd/PxPvdSceneClient.h */,
+ FFFD3d075de87f8d3d075de8 /* cloth/PxCloth.h */,
+ FFFD3d075e507f8d3d075e50 /* cloth/PxClothCollisionData.h */,
+ FFFD3d075eb87f8d3d075eb8 /* cloth/PxClothFabric.h */,
+ FFFD3d075f207f8d3d075f20 /* cloth/PxClothParticleData.h */,
+ FFFD3d075f887f8d3d075f88 /* cloth/PxClothTypes.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
- FFFBd2c742507ff3d2c74250 /* metadata */ = {
+ FFFB3dadb0207f8d3dadb020 /* metadata */ = {
isa = PBXGroup;
children = (
- FFFDd0a1dc007ff3d0a1dc00 /* core/include/PvdMetaDataDefineProperties.h */,
- FFFDd0a1dc687ff3d0a1dc68 /* core/include/PvdMetaDataExtensions.h */,
- FFFDd0a1dcd07ff3d0a1dcd0 /* core/include/PvdMetaDataPropertyVisitor.h */,
- FFFDd0a1dd387ff3d0a1dd38 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */,
- FFFDd0a1dda07ff3d0a1dda0 /* core/include/PxAutoGeneratedMetaDataObjects.h */,
- FFFDd0a1de087ff3d0a1de08 /* core/include/PxMetaDataCompare.h */,
- FFFDd0a1de707ff3d0a1de70 /* core/include/PxMetaDataCppPrefix.h */,
- FFFDd0a1ded87ff3d0a1ded8 /* core/include/PxMetaDataObjects.h */,
- FFFDd0a1df407ff3d0a1df40 /* core/include/RepXMetaDataPropertyVisitor.h */,
- FFFDd0a1dfa87ff3d0a1dfa8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */,
- FFFDd0a1e0107ff3d0a1e010 /* core/src/PxMetaDataObjects.cpp */,
+ FFFD3d0720007f8d3d072000 /* core/include/PvdMetaDataDefineProperties.h */,
+ FFFD3d0720687f8d3d072068 /* core/include/PvdMetaDataExtensions.h */,
+ FFFD3d0720d07f8d3d0720d0 /* core/include/PvdMetaDataPropertyVisitor.h */,
+ FFFD3d0721387f8d3d072138 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */,
+ FFFD3d0721a07f8d3d0721a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */,
+ FFFD3d0722087f8d3d072208 /* core/include/PxMetaDataCompare.h */,
+ FFFD3d0722707f8d3d072270 /* core/include/PxMetaDataCppPrefix.h */,
+ FFFD3d0722d87f8d3d0722d8 /* core/include/PxMetaDataObjects.h */,
+ FFFD3d0723407f8d3d072340 /* core/include/RepXMetaDataPropertyVisitor.h */,
+ FFFD3d0723a87f8d3d0723a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */,
+ FFFD3d0724107f8d3d072410 /* core/src/PxMetaDataObjects.cpp */,
);
name = "metadata";
sourceTree = SOURCE_ROOT;
};
- FFFBd2c6c5107ff3d2c6c510 /* PhysXCharacterKinematic */ = {
+ FFFB3dad32e07f8d3dad32e0 /* PhysXCharacterKinematic */ = {
isa = PBXGroup;
children = (
- FFFBd2c71ce07ff3d2c71ce0 /* include */,
- FFFBd2c71d087ff3d2c71d08 /* src */,
+ FFFB3dad8ab07f8d3dad8ab0 /* include */,
+ FFFB3dad8ad87f8d3dad8ad8 /* src */,
);
name = "PhysXCharacterKinematic";
sourceTree = "<group>";
};
- FFFBd2c71ce07ff3d2c71ce0 /* include */ = {
+ FFFB3dad8ab07f8d3dad8ab0 /* include */ = {
isa = PBXGroup;
children = (
- FFFDd2c735a07ff3d2c735a0 /* PxBoxController.h */,
- FFFDd2c736087ff3d2c73608 /* PxCapsuleController.h */,
- FFFDd2c736707ff3d2c73670 /* PxCharacter.h */,
- FFFDd2c736d87ff3d2c736d8 /* PxController.h */,
- FFFDd2c737407ff3d2c73740 /* PxControllerBehavior.h */,
- FFFDd2c737a87ff3d2c737a8 /* PxControllerManager.h */,
- FFFDd2c738107ff3d2c73810 /* PxControllerObstacles.h */,
- FFFDd2c738787ff3d2c73878 /* PxExtended.h */,
+ FFFD3dada3707f8d3dada370 /* PxBoxController.h */,
+ FFFD3dada3d87f8d3dada3d8 /* PxCapsuleController.h */,
+ FFFD3dada4407f8d3dada440 /* PxCharacter.h */,
+ FFFD3dada4a87f8d3dada4a8 /* PxController.h */,
+ FFFD3dada5107f8d3dada510 /* PxControllerBehavior.h */,
+ FFFD3dada5787f8d3dada578 /* PxControllerManager.h */,
+ FFFD3dada5e07f8d3dada5e0 /* PxControllerObstacles.h */,
+ FFFD3dada6487f8d3dada648 /* PxExtended.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
- FFFBd2c71d087ff3d2c71d08 /* src */ = {
+ FFFB3dad8ad87f8d3dad8ad8 /* src */ = {
isa = PBXGroup;
children = (
- FFFDd0a1b2007ff3d0a1b200 /* CctBoxController.h */,
- FFFDd0a1b2687ff3d0a1b268 /* CctCapsuleController.h */,
- FFFDd0a1b2d07ff3d0a1b2d0 /* CctCharacterController.h */,
- FFFDd0a1b3387ff3d0a1b338 /* CctCharacterControllerManager.h */,
- FFFDd0a1b3a07ff3d0a1b3a0 /* CctController.h */,
- FFFDd0a1b4087ff3d0a1b408 /* CctInternalStructs.h */,
- FFFDd0a1b4707ff3d0a1b470 /* CctObstacleContext.h */,
- FFFDd0a1b4d87ff3d0a1b4d8 /* CctSweptBox.h */,
- FFFDd0a1b5407ff3d0a1b540 /* CctSweptCapsule.h */,
- FFFDd0a1b5a87ff3d0a1b5a8 /* CctSweptVolume.h */,
- FFFDd0a1b6107ff3d0a1b610 /* CctUtils.h */,
- FFFDd0a1b6787ff3d0a1b678 /* CctBoxController.cpp */,
- FFFDd0a1b6e07ff3d0a1b6e0 /* CctCapsuleController.cpp */,
- FFFDd0a1b7487ff3d0a1b748 /* CctCharacterController.cpp */,
- FFFDd0a1b7b07ff3d0a1b7b0 /* CctCharacterControllerCallbacks.cpp */,
- FFFDd0a1b8187ff3d0a1b818 /* CctCharacterControllerManager.cpp */,
- FFFDd0a1b8807ff3d0a1b880 /* CctController.cpp */,
- FFFDd0a1b8e87ff3d0a1b8e8 /* CctObstacleContext.cpp */,
- FFFDd0a1b9507ff3d0a1b950 /* CctSweptBox.cpp */,
- FFFDd0a1b9b87ff3d0a1b9b8 /* CctSweptCapsule.cpp */,
- FFFDd0a1ba207ff3d0a1ba20 /* CctSweptVolume.cpp */,
+ FFFD3d0780007f8d3d078000 /* CctBoxController.h */,
+ FFFD3d0780687f8d3d078068 /* CctCapsuleController.h */,
+ FFFD3d0780d07f8d3d0780d0 /* CctCharacterController.h */,
+ FFFD3d0781387f8d3d078138 /* CctCharacterControllerManager.h */,
+ FFFD3d0781a07f8d3d0781a0 /* CctController.h */,
+ FFFD3d0782087f8d3d078208 /* CctInternalStructs.h */,
+ FFFD3d0782707f8d3d078270 /* CctObstacleContext.h */,
+ FFFD3d0782d87f8d3d0782d8 /* CctSweptBox.h */,
+ FFFD3d0783407f8d3d078340 /* CctSweptCapsule.h */,
+ FFFD3d0783a87f8d3d0783a8 /* CctSweptVolume.h */,
+ FFFD3d0784107f8d3d078410 /* CctUtils.h */,
+ FFFD3d0784787f8d3d078478 /* CctBoxController.cpp */,
+ FFFD3d0784e07f8d3d0784e0 /* CctCapsuleController.cpp */,
+ FFFD3d0785487f8d3d078548 /* CctCharacterController.cpp */,
+ FFFD3d0785b07f8d3d0785b0 /* CctCharacterControllerCallbacks.cpp */,
+ FFFD3d0786187f8d3d078618 /* CctCharacterControllerManager.cpp */,
+ FFFD3d0786807f8d3d078680 /* CctController.cpp */,
+ FFFD3d0786e87f8d3d0786e8 /* CctObstacleContext.cpp */,
+ FFFD3d0787507f8d3d078750 /* CctSweptBox.cpp */,
+ FFFD3d0787b87f8d3d0787b8 /* CctSweptCapsule.cpp */,
+ FFFD3d0788207f8d3d078820 /* CctSweptVolume.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
- FFFBd2c6d8507ff3d2c6d850 /* PhysXVehicle */ = {
+ FFFB3dad46207f8d3dad4620 /* PhysXVehicle */ = {
isa = PBXGroup;
children = (
- FFFBd2c7e6107ff3d2c7e610 /* include */,
- FFFBd2c7e6387ff3d2c7e638 /* src */,
- FFFBd2c7e6607ff3d2c7e660 /* metadata */,
+ FFFB3dae53e07f8d3dae53e0 /* include */,
+ FFFB3dae54087f8d3dae5408 /* src */,
+ FFFB3dae54307f8d3dae5430 /* metadata */,
);
name = "PhysXVehicle";
sourceTree = "<group>";
};
- FFFBd2c7e6107ff3d2c7e610 /* include */ = {
+ FFFB3dae53e07f8d3dae53e0 /* include */ = {
isa = PBXGroup;
children = (
- FFFDd0a1d0007ff3d0a1d000 /* PxVehicleComponents.h */,
- FFFDd0a1d0687ff3d0a1d068 /* PxVehicleDrive.h */,
- FFFDd0a1d0d07ff3d0a1d0d0 /* PxVehicleDrive4W.h */,
- FFFDd0a1d1387ff3d0a1d138 /* PxVehicleDriveNW.h */,
- FFFDd0a1d1a07ff3d0a1d1a0 /* PxVehicleDriveTank.h */,
- FFFDd0a1d2087ff3d0a1d208 /* PxVehicleNoDrive.h */,
- FFFDd0a1d2707ff3d0a1d270 /* PxVehicleSDK.h */,
- FFFDd0a1d2d87ff3d0a1d2d8 /* PxVehicleShaders.h */,
- FFFDd0a1d3407ff3d0a1d340 /* PxVehicleTireFriction.h */,
- FFFDd0a1d3a87ff3d0a1d3a8 /* PxVehicleUpdate.h */,
- FFFDd0a1d4107ff3d0a1d410 /* PxVehicleUtil.h */,
- FFFDd0a1d4787ff3d0a1d478 /* PxVehicleUtilControl.h */,
- FFFDd0a1d4e07ff3d0a1d4e0 /* PxVehicleUtilSetup.h */,
- FFFDd0a1d5487ff3d0a1d548 /* PxVehicleUtilTelemetry.h */,
- FFFDd0a1d5b07ff3d0a1d5b0 /* PxVehicleWheels.h */,
+ FFFD3d07dc007f8d3d07dc00 /* PxVehicleComponents.h */,
+ FFFD3d07dc687f8d3d07dc68 /* PxVehicleDrive.h */,
+ FFFD3d07dcd07f8d3d07dcd0 /* PxVehicleDrive4W.h */,
+ FFFD3d07dd387f8d3d07dd38 /* PxVehicleDriveNW.h */,
+ FFFD3d07dda07f8d3d07dda0 /* PxVehicleDriveTank.h */,
+ FFFD3d07de087f8d3d07de08 /* PxVehicleNoDrive.h */,
+ FFFD3d07de707f8d3d07de70 /* PxVehicleSDK.h */,
+ FFFD3d07ded87f8d3d07ded8 /* PxVehicleShaders.h */,
+ FFFD3d07df407f8d3d07df40 /* PxVehicleTireFriction.h */,
+ FFFD3d07dfa87f8d3d07dfa8 /* PxVehicleUpdate.h */,
+ FFFD3d07e0107f8d3d07e010 /* PxVehicleUtil.h */,
+ FFFD3d07e0787f8d3d07e078 /* PxVehicleUtilControl.h */,
+ FFFD3d07e0e07f8d3d07e0e0 /* PxVehicleUtilSetup.h */,
+ FFFD3d07e1487f8d3d07e148 /* PxVehicleUtilTelemetry.h */,
+ FFFD3d07e1b07f8d3d07e1b0 /* PxVehicleWheels.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
- FFFBd2c7e6387ff3d2c7e638 /* src */ = {
+ FFFB3dae54087f8d3dae5408 /* src */ = {
isa = PBXGroup;
children = (
- FFFDd0a262007ff3d0a26200 /* PxVehicleDefaults.h */,
- FFFDd0a262687ff3d0a26268 /* PxVehicleLinearMath.h */,
- FFFDd0a262d07ff3d0a262d0 /* PxVehicleSerialization.h */,
- FFFDd0a263387ff3d0a26338 /* PxVehicleSuspLimitConstraintShader.h */,
- FFFDd0a263a07ff3d0a263a0 /* PxVehicleSuspWheelTire4.h */,
- FFFDd0a264087ff3d0a26408 /* PxVehicleComponents.cpp */,
- FFFDd0a264707ff3d0a26470 /* PxVehicleDrive.cpp */,
- FFFDd0a264d87ff3d0a264d8 /* PxVehicleDrive4W.cpp */,
- FFFDd0a265407ff3d0a26540 /* PxVehicleDriveNW.cpp */,
- FFFDd0a265a87ff3d0a265a8 /* PxVehicleDriveTank.cpp */,
- FFFDd0a266107ff3d0a26610 /* PxVehicleMetaData.cpp */,
- FFFDd0a266787ff3d0a26678 /* PxVehicleNoDrive.cpp */,
- FFFDd0a266e07ff3d0a266e0 /* PxVehicleSDK.cpp */,
- FFFDd0a267487ff3d0a26748 /* PxVehicleSerialization.cpp */,
- FFFDd0a267b07ff3d0a267b0 /* PxVehicleSuspWheelTire4.cpp */,
- FFFDd0a268187ff3d0a26818 /* PxVehicleTireFriction.cpp */,
- FFFDd0a268807ff3d0a26880 /* PxVehicleUpdate.cpp */,
- FFFDd0a268e87ff3d0a268e8 /* PxVehicleWheels.cpp */,
- FFFDd0a269507ff3d0a26950 /* VehicleUtilControl.cpp */,
- FFFDd0a269b87ff3d0a269b8 /* VehicleUtilSetup.cpp */,
- FFFDd0a26a207ff3d0a26a20 /* VehicleUtilTelemetry.cpp */,
+ FFFD3d07fa007f8d3d07fa00 /* PxVehicleDefaults.h */,
+ FFFD3d07fa687f8d3d07fa68 /* PxVehicleLinearMath.h */,
+ FFFD3d07fad07f8d3d07fad0 /* PxVehicleSerialization.h */,
+ FFFD3d07fb387f8d3d07fb38 /* PxVehicleSuspLimitConstraintShader.h */,
+ FFFD3d07fba07f8d3d07fba0 /* PxVehicleSuspWheelTire4.h */,
+ FFFD3d07fc087f8d3d07fc08 /* PxVehicleComponents.cpp */,
+ FFFD3d07fc707f8d3d07fc70 /* PxVehicleDrive.cpp */,
+ FFFD3d07fcd87f8d3d07fcd8 /* PxVehicleDrive4W.cpp */,
+ FFFD3d07fd407f8d3d07fd40 /* PxVehicleDriveNW.cpp */,
+ FFFD3d07fda87f8d3d07fda8 /* PxVehicleDriveTank.cpp */,
+ FFFD3d07fe107f8d3d07fe10 /* PxVehicleMetaData.cpp */,
+ FFFD3d07fe787f8d3d07fe78 /* PxVehicleNoDrive.cpp */,
+ FFFD3d07fee07f8d3d07fee0 /* PxVehicleSDK.cpp */,
+ FFFD3d07ff487f8d3d07ff48 /* PxVehicleSerialization.cpp */,
+ FFFD3d07ffb07f8d3d07ffb0 /* PxVehicleSuspWheelTire4.cpp */,
+ FFFD3d0800187f8d3d080018 /* PxVehicleTireFriction.cpp */,
+ FFFD3d0800807f8d3d080080 /* PxVehicleUpdate.cpp */,
+ FFFD3d0800e87f8d3d0800e8 /* PxVehicleWheels.cpp */,
+ FFFD3d0801507f8d3d080150 /* VehicleUtilControl.cpp */,
+ FFFD3d0801b87f8d3d0801b8 /* VehicleUtilSetup.cpp */,
+ FFFD3d0802207f8d3d080220 /* VehicleUtilTelemetry.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
- FFFBd2c7e6607ff3d2c7e660 /* metadata */ = {
+ FFFB3dae54307f8d3dae5430 /* metadata */ = {
isa = PBXGroup;
children = (
- FFFDd2c7f3607ff3d2c7f360 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */,
- FFFDd2c7f3c87ff3d2c7f3c8 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */,
- FFFDd2c7f4307ff3d2c7f430 /* include/PxVehicleMetaDataObjects.h */,
- FFFDd2c7f4987ff3d2c7f498 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */,
- FFFDd2c7f5007ff3d2c7f500 /* src/PxVehicleMetaDataObjects.cpp */,
+ FFFD3dae61307f8d3dae6130 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */,
+ FFFD3dae61987f8d3dae6198 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */,
+ FFFD3dae62007f8d3dae6200 /* include/PxVehicleMetaDataObjects.h */,
+ FFFD3dae62687f8d3dae6268 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */,
+ FFFD3dae62d07f8d3dae62d0 /* src/PxVehicleMetaDataObjects.cpp */,
);
name = "metadata";
sourceTree = SOURCE_ROOT;
};
- FFFBd2c7d5c07ff3d2c7d5c0 /* PhysXExtensions */ = {
+ FFFB3dae43907f8d3dae4390 /* PhysXExtensions */ = {
isa = PBXGroup;
children = (
- FFFBd2c866607ff3d2c86660 /* include */,
- FFFBd2c866887ff3d2c86688 /* src */,
- FFFBd2c866b07ff3d2c866b0 /* serialization */,
- FFFBd2c866d87ff3d2c866d8 /* metadata */,
+ FFFB3daed4307f8d3daed430 /* include */,
+ FFFB3daed4587f8d3daed458 /* src */,
+ FFFB3daed4807f8d3daed480 /* serialization */,
+ FFFB3daed4a87f8d3daed4a8 /* metadata */,
);
name = "PhysXExtensions";
sourceTree = "<group>";
};
- FFFBd2c866607ff3d2c86660 /* include */ = {
+ FFFB3daed4307f8d3daed430 /* include */ = {
isa = PBXGroup;
children = (
- FFFDd0a29a007ff3d0a29a00 /* PxBinaryConverter.h */,
- FFFDd0a29a687ff3d0a29a68 /* PxBroadPhaseExt.h */,
- FFFDd0a29ad07ff3d0a29ad0 /* PxClothFabricCooker.h */,
- FFFDd0a29b387ff3d0a29b38 /* PxClothMeshDesc.h */,
- FFFDd0a29ba07ff3d0a29ba0 /* PxClothMeshQuadifier.h */,
- FFFDd0a29c087ff3d0a29c08 /* PxClothTetherCooker.h */,
- FFFDd0a29c707ff3d0a29c70 /* PxCollectionExt.h */,
- FFFDd0a29cd87ff3d0a29cd8 /* PxConstraintExt.h */,
- FFFDd0a29d407ff3d0a29d40 /* PxConvexMeshExt.h */,
- FFFDd0a29da87ff3d0a29da8 /* PxD6Joint.h */,
- FFFDd0a29e107ff3d0a29e10 /* PxDefaultAllocator.h */,
- FFFDd0a29e787ff3d0a29e78 /* PxDefaultCpuDispatcher.h */,
- FFFDd0a29ee07ff3d0a29ee0 /* PxDefaultErrorCallback.h */,
- FFFDd0a29f487ff3d0a29f48 /* PxDefaultSimulationFilterShader.h */,
- FFFDd0a29fb07ff3d0a29fb0 /* PxDefaultStreams.h */,
- FFFDd0a2a0187ff3d0a2a018 /* PxDistanceJoint.h */,
- FFFDd0a2a0807ff3d0a2a080 /* PxExtensionsAPI.h */,
- FFFDd0a2a0e87ff3d0a2a0e8 /* PxFixedJoint.h */,
- FFFDd0a2a1507ff3d0a2a150 /* PxJoint.h */,
- FFFDd0a2a1b87ff3d0a2a1b8 /* PxJointLimit.h */,
- FFFDd0a2a2207ff3d0a2a220 /* PxMassProperties.h */,
- FFFDd0a2a2887ff3d0a2a288 /* PxParticleExt.h */,
- FFFDd0a2a2f07ff3d0a2a2f0 /* PxPrismaticJoint.h */,
- FFFDd0a2a3587ff3d0a2a358 /* PxRaycastCCD.h */,
- FFFDd0a2a3c07ff3d0a2a3c0 /* PxRepXSerializer.h */,
- FFFDd0a2a4287ff3d0a2a428 /* PxRepXSimpleType.h */,
- FFFDd0a2a4907ff3d0a2a490 /* PxRevoluteJoint.h */,
- FFFDd0a2a4f87ff3d0a2a4f8 /* PxRigidActorExt.h */,
- FFFDd0a2a5607ff3d0a2a560 /* PxRigidBodyExt.h */,
- FFFDd0a2a5c87ff3d0a2a5c8 /* PxSceneQueryExt.h */,
- FFFDd0a2a6307ff3d0a2a630 /* PxSerialization.h */,
- FFFDd0a2a6987ff3d0a2a698 /* PxShapeExt.h */,
- FFFDd0a2a7007ff3d0a2a700 /* PxSimpleFactory.h */,
- FFFDd0a2a7687ff3d0a2a768 /* PxSmoothNormals.h */,
- FFFDd0a2a7d07ff3d0a2a7d0 /* PxSphericalJoint.h */,
- FFFDd0a2a8387ff3d0a2a838 /* PxStringTableExt.h */,
- FFFDd0a2a8a07ff3d0a2a8a0 /* PxTriangleMeshExt.h */,
+ FFFD3d0832007f8d3d083200 /* PxBinaryConverter.h */,
+ FFFD3d0832687f8d3d083268 /* PxBroadPhaseExt.h */,
+ FFFD3d0832d07f8d3d0832d0 /* PxClothFabricCooker.h */,
+ FFFD3d0833387f8d3d083338 /* PxClothMeshDesc.h */,
+ FFFD3d0833a07f8d3d0833a0 /* PxClothMeshQuadifier.h */,
+ FFFD3d0834087f8d3d083408 /* PxClothTetherCooker.h */,
+ FFFD3d0834707f8d3d083470 /* PxCollectionExt.h */,
+ FFFD3d0834d87f8d3d0834d8 /* PxConstraintExt.h */,
+ FFFD3d0835407f8d3d083540 /* PxConvexMeshExt.h */,
+ FFFD3d0835a87f8d3d0835a8 /* PxD6Joint.h */,
+ FFFD3d0836107f8d3d083610 /* PxDefaultAllocator.h */,
+ FFFD3d0836787f8d3d083678 /* PxDefaultCpuDispatcher.h */,
+ FFFD3d0836e07f8d3d0836e0 /* PxDefaultErrorCallback.h */,
+ FFFD3d0837487f8d3d083748 /* PxDefaultSimulationFilterShader.h */,
+ FFFD3d0837b07f8d3d0837b0 /* PxDefaultStreams.h */,
+ FFFD3d0838187f8d3d083818 /* PxDistanceJoint.h */,
+ FFFD3d0838807f8d3d083880 /* PxExtensionsAPI.h */,
+ FFFD3d0838e87f8d3d0838e8 /* PxFixedJoint.h */,
+ FFFD3d0839507f8d3d083950 /* PxJoint.h */,
+ FFFD3d0839b87f8d3d0839b8 /* PxJointLimit.h */,
+ FFFD3d083a207f8d3d083a20 /* PxMassProperties.h */,
+ FFFD3d083a887f8d3d083a88 /* PxParticleExt.h */,
+ FFFD3d083af07f8d3d083af0 /* PxPrismaticJoint.h */,
+ FFFD3d083b587f8d3d083b58 /* PxRaycastCCD.h */,
+ FFFD3d083bc07f8d3d083bc0 /* PxRepXSerializer.h */,
+ FFFD3d083c287f8d3d083c28 /* PxRepXSimpleType.h */,
+ FFFD3d083c907f8d3d083c90 /* PxRevoluteJoint.h */,
+ FFFD3d083cf87f8d3d083cf8 /* PxRigidActorExt.h */,
+ FFFD3d083d607f8d3d083d60 /* PxRigidBodyExt.h */,
+ FFFD3d083dc87f8d3d083dc8 /* PxSceneQueryExt.h */,
+ FFFD3d083e307f8d3d083e30 /* PxSerialization.h */,
+ FFFD3d083e987f8d3d083e98 /* PxShapeExt.h */,
+ FFFD3d083f007f8d3d083f00 /* PxSimpleFactory.h */,
+ FFFD3d083f687f8d3d083f68 /* PxSmoothNormals.h */,
+ FFFD3d083fd07f8d3d083fd0 /* PxSphericalJoint.h */,
+ FFFD3d0840387f8d3d084038 /* PxStringTableExt.h */,
+ FFFD3d0840a07f8d3d0840a0 /* PxTriangleMeshExt.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
- FFFBd2c866887ff3d2c86688 /* src */ = {
+ FFFB3daed4587f8d3daed458 /* src */ = {
isa = PBXGroup;
children = (
- FFFDd0a284007ff3d0a28400 /* ExtConstraintHelper.h */,
- FFFDd0a284687ff3d0a28468 /* ExtCpuWorkerThread.h */,
- FFFDd0a284d07ff3d0a284d0 /* ExtD6Joint.h */,
- FFFDd0a285387ff3d0a28538 /* ExtDefaultCpuDispatcher.h */,
- FFFDd0a285a07ff3d0a285a0 /* ExtDistanceJoint.h */,
- FFFDd0a286087ff3d0a28608 /* ExtFixedJoint.h */,
- FFFDd0a286707ff3d0a28670 /* ExtInertiaTensor.h */,
- FFFDd0a286d87ff3d0a286d8 /* ExtJoint.h */,
- FFFDd0a287407ff3d0a28740 /* ExtJointMetaDataExtensions.h */,
- FFFDd0a287a87ff3d0a287a8 /* ExtPlatform.h */,
- FFFDd0a288107ff3d0a28810 /* ExtPrismaticJoint.h */,
- FFFDd0a288787ff3d0a28878 /* ExtPvd.h */,
- FFFDd0a288e07ff3d0a288e0 /* ExtRevoluteJoint.h */,
- FFFDd0a289487ff3d0a28948 /* ExtSerialization.h */,
- FFFDd0a289b07ff3d0a289b0 /* ExtSharedQueueEntryPool.h */,
- FFFDd0a28a187ff3d0a28a18 /* ExtSphericalJoint.h */,
- FFFDd0a28a807ff3d0a28a80 /* ExtTaskQueueHelper.h */,
- FFFDd0a28ae87ff3d0a28ae8 /* ExtBroadPhase.cpp */,
- FFFDd0a28b507ff3d0a28b50 /* ExtClothFabricCooker.cpp */,
- FFFDd0a28bb87ff3d0a28bb8 /* ExtClothGeodesicTetherCooker.cpp */,
- FFFDd0a28c207ff3d0a28c20 /* ExtClothMeshQuadifier.cpp */,
- FFFDd0a28c887ff3d0a28c88 /* ExtClothSimpleTetherCooker.cpp */,
- FFFDd0a28cf07ff3d0a28cf0 /* ExtCollection.cpp */,
- FFFDd0a28d587ff3d0a28d58 /* ExtConvexMeshExt.cpp */,
- FFFDd0a28dc07ff3d0a28dc0 /* ExtCpuWorkerThread.cpp */,
- FFFDd0a28e287ff3d0a28e28 /* ExtD6Joint.cpp */,
- FFFDd0a28e907ff3d0a28e90 /* ExtD6JointSolverPrep.cpp */,
- FFFDd0a28ef87ff3d0a28ef8 /* ExtDefaultCpuDispatcher.cpp */,
- FFFDd0a28f607ff3d0a28f60 /* ExtDefaultErrorCallback.cpp */,
- FFFDd0a28fc87ff3d0a28fc8 /* ExtDefaultSimulationFilterShader.cpp */,
- FFFDd0a290307ff3d0a29030 /* ExtDefaultStreams.cpp */,
- FFFDd0a290987ff3d0a29098 /* ExtDistanceJoint.cpp */,
- FFFDd0a291007ff3d0a29100 /* ExtDistanceJointSolverPrep.cpp */,
- FFFDd0a291687ff3d0a29168 /* ExtExtensions.cpp */,
- FFFDd0a291d07ff3d0a291d0 /* ExtFixedJoint.cpp */,
- FFFDd0a292387ff3d0a29238 /* ExtFixedJointSolverPrep.cpp */,
- FFFDd0a292a07ff3d0a292a0 /* ExtJoint.cpp */,
- FFFDd0a293087ff3d0a29308 /* ExtMetaData.cpp */,
- FFFDd0a293707ff3d0a29370 /* ExtParticleExt.cpp */,
- FFFDd0a293d87ff3d0a293d8 /* ExtPrismaticJoint.cpp */,
- FFFDd0a294407ff3d0a29440 /* ExtPrismaticJointSolverPrep.cpp */,
- FFFDd0a294a87ff3d0a294a8 /* ExtPvd.cpp */,
- FFFDd0a295107ff3d0a29510 /* ExtPxStringTable.cpp */,
- FFFDd0a295787ff3d0a29578 /* ExtRaycastCCD.cpp */,
- FFFDd0a295e07ff3d0a295e0 /* ExtRevoluteJoint.cpp */,
- FFFDd0a296487ff3d0a29648 /* ExtRevoluteJointSolverPrep.cpp */,
- FFFDd0a296b07ff3d0a296b0 /* ExtRigidBodyExt.cpp */,
- FFFDd0a297187ff3d0a29718 /* ExtSceneQueryExt.cpp */,
- FFFDd0a297807ff3d0a29780 /* ExtSimpleFactory.cpp */,
- FFFDd0a297e87ff3d0a297e8 /* ExtSmoothNormals.cpp */,
- FFFDd0a298507ff3d0a29850 /* ExtSphericalJoint.cpp */,
- FFFDd0a298b87ff3d0a298b8 /* ExtSphericalJointSolverPrep.cpp */,
- FFFDd0a299207ff3d0a29920 /* ExtTriangleMeshExt.cpp */,
+ FFFD3d081c007f8d3d081c00 /* ExtConstraintHelper.h */,
+ FFFD3d081c687f8d3d081c68 /* ExtCpuWorkerThread.h */,
+ FFFD3d081cd07f8d3d081cd0 /* ExtD6Joint.h */,
+ FFFD3d081d387f8d3d081d38 /* ExtDefaultCpuDispatcher.h */,
+ FFFD3d081da07f8d3d081da0 /* ExtDistanceJoint.h */,
+ FFFD3d081e087f8d3d081e08 /* ExtFixedJoint.h */,
+ FFFD3d081e707f8d3d081e70 /* ExtInertiaTensor.h */,
+ FFFD3d081ed87f8d3d081ed8 /* ExtJoint.h */,
+ FFFD3d081f407f8d3d081f40 /* ExtJointMetaDataExtensions.h */,
+ FFFD3d081fa87f8d3d081fa8 /* ExtPlatform.h */,
+ FFFD3d0820107f8d3d082010 /* ExtPrismaticJoint.h */,
+ FFFD3d0820787f8d3d082078 /* ExtPvd.h */,
+ FFFD3d0820e07f8d3d0820e0 /* ExtRevoluteJoint.h */,
+ FFFD3d0821487f8d3d082148 /* ExtSerialization.h */,
+ FFFD3d0821b07f8d3d0821b0 /* ExtSharedQueueEntryPool.h */,
+ FFFD3d0822187f8d3d082218 /* ExtSphericalJoint.h */,
+ FFFD3d0822807f8d3d082280 /* ExtTaskQueueHelper.h */,
+ FFFD3d0822e87f8d3d0822e8 /* ExtBroadPhase.cpp */,
+ FFFD3d0823507f8d3d082350 /* ExtClothFabricCooker.cpp */,
+ FFFD3d0823b87f8d3d0823b8 /* ExtClothGeodesicTetherCooker.cpp */,
+ FFFD3d0824207f8d3d082420 /* ExtClothMeshQuadifier.cpp */,
+ FFFD3d0824887f8d3d082488 /* ExtClothSimpleTetherCooker.cpp */,
+ FFFD3d0824f07f8d3d0824f0 /* ExtCollection.cpp */,
+ FFFD3d0825587f8d3d082558 /* ExtConvexMeshExt.cpp */,
+ FFFD3d0825c07f8d3d0825c0 /* ExtCpuWorkerThread.cpp */,
+ FFFD3d0826287f8d3d082628 /* ExtD6Joint.cpp */,
+ FFFD3d0826907f8d3d082690 /* ExtD6JointSolverPrep.cpp */,
+ FFFD3d0826f87f8d3d0826f8 /* ExtDefaultCpuDispatcher.cpp */,
+ FFFD3d0827607f8d3d082760 /* ExtDefaultErrorCallback.cpp */,
+ FFFD3d0827c87f8d3d0827c8 /* ExtDefaultSimulationFilterShader.cpp */,
+ FFFD3d0828307f8d3d082830 /* ExtDefaultStreams.cpp */,
+ FFFD3d0828987f8d3d082898 /* ExtDistanceJoint.cpp */,
+ FFFD3d0829007f8d3d082900 /* ExtDistanceJointSolverPrep.cpp */,
+ FFFD3d0829687f8d3d082968 /* ExtExtensions.cpp */,
+ FFFD3d0829d07f8d3d0829d0 /* ExtFixedJoint.cpp */,
+ FFFD3d082a387f8d3d082a38 /* ExtFixedJointSolverPrep.cpp */,
+ FFFD3d082aa07f8d3d082aa0 /* ExtJoint.cpp */,
+ FFFD3d082b087f8d3d082b08 /* ExtMetaData.cpp */,
+ FFFD3d082b707f8d3d082b70 /* ExtParticleExt.cpp */,
+ FFFD3d082bd87f8d3d082bd8 /* ExtPrismaticJoint.cpp */,
+ FFFD3d082c407f8d3d082c40 /* ExtPrismaticJointSolverPrep.cpp */,
+ FFFD3d082ca87f8d3d082ca8 /* ExtPvd.cpp */,
+ FFFD3d082d107f8d3d082d10 /* ExtPxStringTable.cpp */,
+ FFFD3d082d787f8d3d082d78 /* ExtRaycastCCD.cpp */,
+ FFFD3d082de07f8d3d082de0 /* ExtRevoluteJoint.cpp */,
+ FFFD3d082e487f8d3d082e48 /* ExtRevoluteJointSolverPrep.cpp */,
+ FFFD3d082eb07f8d3d082eb0 /* ExtRigidBodyExt.cpp */,
+ FFFD3d082f187f8d3d082f18 /* ExtSceneQueryExt.cpp */,
+ FFFD3d082f807f8d3d082f80 /* ExtSimpleFactory.cpp */,
+ FFFD3d082fe87f8d3d082fe8 /* ExtSmoothNormals.cpp */,
+ FFFD3d0830507f8d3d083050 /* ExtSphericalJoint.cpp */,
+ FFFD3d0830b87f8d3d0830b8 /* ExtSphericalJointSolverPrep.cpp */,
+ FFFD3d0831207f8d3d083120 /* ExtTriangleMeshExt.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
- FFFBd2c866b07ff3d2c866b0 /* serialization */ = {
+ FFFB3daed4807f8d3daed480 /* serialization */ = {
isa = PBXGroup;
children = (
- FFFDd0a2ce007ff3d0a2ce00 /* SnSerialUtils.h */,
- FFFDd0a2ce687ff3d0a2ce68 /* SnSerializationRegistry.h */,
- FFFDd0a2ced07ff3d0a2ced0 /* SnSerialUtils.cpp */,
- FFFDd0a2cf387ff3d0a2cf38 /* SnSerialization.cpp */,
- FFFDd0a2cfa07ff3d0a2cfa0 /* SnSerializationRegistry.cpp */,
- FFFDd0a2d0087ff3d0a2d008 /* Binary/SnConvX.h */,
- FFFDd0a2d0707ff3d0a2d070 /* Binary/SnConvX_Align.h */,
- FFFDd0a2d0d87ff3d0a2d0d8 /* Binary/SnConvX_Common.h */,
- FFFDd0a2d1407ff3d0a2d140 /* Binary/SnConvX_MetaData.h */,
- FFFDd0a2d1a87ff3d0a2d1a8 /* Binary/SnConvX_Output.h */,
- FFFDd0a2d2107ff3d0a2d210 /* Binary/SnConvX_Union.h */,
- FFFDd0a2d2787ff3d0a2d278 /* Binary/SnSerializationContext.h */,
- FFFDd0a2d2e07ff3d0a2d2e0 /* Binary/SnBinaryDeserialization.cpp */,
- FFFDd0a2d3487ff3d0a2d348 /* Binary/SnBinarySerialization.cpp */,
- FFFDd0a2d3b07ff3d0a2d3b0 /* Binary/SnConvX.cpp */,
- FFFDd0a2d4187ff3d0a2d418 /* Binary/SnConvX_Align.cpp */,
- FFFDd0a2d4807ff3d0a2d480 /* Binary/SnConvX_Convert.cpp */,
- FFFDd0a2d4e87ff3d0a2d4e8 /* Binary/SnConvX_Error.cpp */,
- FFFDd0a2d5507ff3d0a2d550 /* Binary/SnConvX_MetaData.cpp */,
- FFFDd0a2d5b87ff3d0a2d5b8 /* Binary/SnConvX_Output.cpp */,
- FFFDd0a2d6207ff3d0a2d620 /* Binary/SnConvX_Union.cpp */,
- FFFDd0a2d6887ff3d0a2d688 /* Binary/SnSerializationContext.cpp */,
- FFFDd0a2d6f07ff3d0a2d6f0 /* Xml/SnJointRepXSerializer.h */,
- FFFDd0a2d7587ff3d0a2d758 /* Xml/SnPxStreamOperators.h */,
- FFFDd0a2d7c07ff3d0a2d7c0 /* Xml/SnRepX1_0Defaults.h */,
- FFFDd0a2d8287ff3d0a2d828 /* Xml/SnRepX3_1Defaults.h */,
- FFFDd0a2d8907ff3d0a2d890 /* Xml/SnRepX3_2Defaults.h */,
- FFFDd0a2d8f87ff3d0a2d8f8 /* Xml/SnRepXCollection.h */,
- FFFDd0a2d9607ff3d0a2d960 /* Xml/SnRepXCoreSerializer.h */,
- FFFDd0a2d9c87ff3d0a2d9c8 /* Xml/SnRepXSerializerImpl.h */,
- FFFDd0a2da307ff3d0a2da30 /* Xml/SnRepXUpgrader.h */,
- FFFDd0a2da987ff3d0a2da98 /* Xml/SnSimpleXmlWriter.h */,
- FFFDd0a2db007ff3d0a2db00 /* Xml/SnXmlDeserializer.h */,
- FFFDd0a2db687ff3d0a2db68 /* Xml/SnXmlImpl.h */,
- FFFDd0a2dbd07ff3d0a2dbd0 /* Xml/SnXmlMemoryAllocator.h */,
- FFFDd0a2dc387ff3d0a2dc38 /* Xml/SnXmlMemoryPool.h */,
- FFFDd0a2dca07ff3d0a2dca0 /* Xml/SnXmlMemoryPoolStreams.h */,
- FFFDd0a2dd087ff3d0a2dd08 /* Xml/SnXmlReader.h */,
- FFFDd0a2dd707ff3d0a2dd70 /* Xml/SnXmlSerializer.h */,
- FFFDd0a2ddd87ff3d0a2ddd8 /* Xml/SnXmlSimpleXmlWriter.h */,
- FFFDd0a2de407ff3d0a2de40 /* Xml/SnXmlStringToType.h */,
- FFFDd0a2dea87ff3d0a2dea8 /* Xml/SnXmlVisitorReader.h */,
- FFFDd0a2df107ff3d0a2df10 /* Xml/SnXmlVisitorWriter.h */,
- FFFDd0a2df787ff3d0a2df78 /* Xml/SnXmlWriter.h */,
- FFFDd0a2dfe07ff3d0a2dfe0 /* Xml/SnJointRepXSerializer.cpp */,
- FFFDd0a2e0487ff3d0a2e048 /* Xml/SnRepXCoreSerializer.cpp */,
- FFFDd0a2e0b07ff3d0a2e0b0 /* Xml/SnRepXUpgrader.cpp */,
- FFFDd0a2e1187ff3d0a2e118 /* Xml/SnXmlSerialization.cpp */,
- FFFDd0a2e1807ff3d0a2e180 /* File/SnFile.h */,
+ FFFD3d0866007f8d3d086600 /* SnSerialUtils.h */,
+ FFFD3d0866687f8d3d086668 /* SnSerializationRegistry.h */,
+ FFFD3d0866d07f8d3d0866d0 /* SnSerialUtils.cpp */,
+ FFFD3d0867387f8d3d086738 /* SnSerialization.cpp */,
+ FFFD3d0867a07f8d3d0867a0 /* SnSerializationRegistry.cpp */,
+ FFFD3d0868087f8d3d086808 /* Binary/SnConvX.h */,
+ FFFD3d0868707f8d3d086870 /* Binary/SnConvX_Align.h */,
+ FFFD3d0868d87f8d3d0868d8 /* Binary/SnConvX_Common.h */,
+ FFFD3d0869407f8d3d086940 /* Binary/SnConvX_MetaData.h */,
+ FFFD3d0869a87f8d3d0869a8 /* Binary/SnConvX_Output.h */,
+ FFFD3d086a107f8d3d086a10 /* Binary/SnConvX_Union.h */,
+ FFFD3d086a787f8d3d086a78 /* Binary/SnSerializationContext.h */,
+ FFFD3d086ae07f8d3d086ae0 /* Binary/SnBinaryDeserialization.cpp */,
+ FFFD3d086b487f8d3d086b48 /* Binary/SnBinarySerialization.cpp */,
+ FFFD3d086bb07f8d3d086bb0 /* Binary/SnConvX.cpp */,
+ FFFD3d086c187f8d3d086c18 /* Binary/SnConvX_Align.cpp */,
+ FFFD3d086c807f8d3d086c80 /* Binary/SnConvX_Convert.cpp */,
+ FFFD3d086ce87f8d3d086ce8 /* Binary/SnConvX_Error.cpp */,
+ FFFD3d086d507f8d3d086d50 /* Binary/SnConvX_MetaData.cpp */,
+ FFFD3d086db87f8d3d086db8 /* Binary/SnConvX_Output.cpp */,
+ FFFD3d086e207f8d3d086e20 /* Binary/SnConvX_Union.cpp */,
+ FFFD3d086e887f8d3d086e88 /* Binary/SnSerializationContext.cpp */,
+ FFFD3d086ef07f8d3d086ef0 /* Xml/SnJointRepXSerializer.h */,
+ FFFD3d086f587f8d3d086f58 /* Xml/SnPxStreamOperators.h */,
+ FFFD3d086fc07f8d3d086fc0 /* Xml/SnRepX1_0Defaults.h */,
+ FFFD3d0870287f8d3d087028 /* Xml/SnRepX3_1Defaults.h */,
+ FFFD3d0870907f8d3d087090 /* Xml/SnRepX3_2Defaults.h */,
+ FFFD3d0870f87f8d3d0870f8 /* Xml/SnRepXCollection.h */,
+ FFFD3d0871607f8d3d087160 /* Xml/SnRepXCoreSerializer.h */,
+ FFFD3d0871c87f8d3d0871c8 /* Xml/SnRepXSerializerImpl.h */,
+ FFFD3d0872307f8d3d087230 /* Xml/SnRepXUpgrader.h */,
+ FFFD3d0872987f8d3d087298 /* Xml/SnSimpleXmlWriter.h */,
+ FFFD3d0873007f8d3d087300 /* Xml/SnXmlDeserializer.h */,
+ FFFD3d0873687f8d3d087368 /* Xml/SnXmlImpl.h */,
+ FFFD3d0873d07f8d3d0873d0 /* Xml/SnXmlMemoryAllocator.h */,
+ FFFD3d0874387f8d3d087438 /* Xml/SnXmlMemoryPool.h */,
+ FFFD3d0874a07f8d3d0874a0 /* Xml/SnXmlMemoryPoolStreams.h */,
+ FFFD3d0875087f8d3d087508 /* Xml/SnXmlReader.h */,
+ FFFD3d0875707f8d3d087570 /* Xml/SnXmlSerializer.h */,
+ FFFD3d0875d87f8d3d0875d8 /* Xml/SnXmlSimpleXmlWriter.h */,
+ FFFD3d0876407f8d3d087640 /* Xml/SnXmlStringToType.h */,
+ FFFD3d0876a87f8d3d0876a8 /* Xml/SnXmlVisitorReader.h */,
+ FFFD3d0877107f8d3d087710 /* Xml/SnXmlVisitorWriter.h */,
+ FFFD3d0877787f8d3d087778 /* Xml/SnXmlWriter.h */,
+ FFFD3d0877e07f8d3d0877e0 /* Xml/SnJointRepXSerializer.cpp */,
+ FFFD3d0878487f8d3d087848 /* Xml/SnRepXCoreSerializer.cpp */,
+ FFFD3d0878b07f8d3d0878b0 /* Xml/SnRepXUpgrader.cpp */,
+ FFFD3d0879187f8d3d087918 /* Xml/SnXmlSerialization.cpp */,
+ FFFD3d0879807f8d3d087980 /* File/SnFile.h */,
);
name = "serialization";
sourceTree = SOURCE_ROOT;
};
- FFFBd2c866d87ff3d2c866d8 /* metadata */ = {
+ FFFB3daed4a87f8d3daed4a8 /* metadata */ = {
isa = PBXGroup;
children = (
- FFFDd0a2aa007ff3d0a2aa00 /* core/include/PvdMetaDataDefineProperties.h */,
- FFFDd0a2aa687ff3d0a2aa68 /* core/include/PvdMetaDataExtensions.h */,
- FFFDd0a2aad07ff3d0a2aad0 /* core/include/PvdMetaDataPropertyVisitor.h */,
- FFFDd0a2ab387ff3d0a2ab38 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */,
- FFFDd0a2aba07ff3d0a2aba0 /* core/include/PxAutoGeneratedMetaDataObjects.h */,
- FFFDd0a2ac087ff3d0a2ac08 /* core/include/PxMetaDataCompare.h */,
- FFFDd0a2ac707ff3d0a2ac70 /* core/include/PxMetaDataCppPrefix.h */,
- FFFDd0a2acd87ff3d0a2acd8 /* core/include/PxMetaDataObjects.h */,
- FFFDd0a2ad407ff3d0a2ad40 /* core/include/RepXMetaDataPropertyVisitor.h */,
- FFFDd0a2ada87ff3d0a2ada8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */,
- FFFDd0a2ae107ff3d0a2ae10 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */,
- FFFDd0a2ae787ff3d0a2ae78 /* extensions/include/PxExtensionMetaDataObjects.h */,
- FFFDd0a2aee07ff3d0a2aee0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */,
+ FFFD3c1b78007f8d3c1b7800 /* core/include/PvdMetaDataDefineProperties.h */,
+ FFFD3c1b78687f8d3c1b7868 /* core/include/PvdMetaDataExtensions.h */,
+ FFFD3c1b78d07f8d3c1b78d0 /* core/include/PvdMetaDataPropertyVisitor.h */,
+ FFFD3c1b79387f8d3c1b7938 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */,
+ FFFD3c1b79a07f8d3c1b79a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */,
+ FFFD3c1b7a087f8d3c1b7a08 /* core/include/PxMetaDataCompare.h */,
+ FFFD3c1b7a707f8d3c1b7a70 /* core/include/PxMetaDataCppPrefix.h */,
+ FFFD3c1b7ad87f8d3c1b7ad8 /* core/include/PxMetaDataObjects.h */,
+ FFFD3c1b7b407f8d3c1b7b40 /* core/include/RepXMetaDataPropertyVisitor.h */,
+ FFFD3c1b7ba87f8d3c1b7ba8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */,
+ FFFD3c1b7c107f8d3c1b7c10 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */,
+ FFFD3c1b7c787f8d3c1b7c78 /* extensions/include/PxExtensionMetaDataObjects.h */,
+ FFFD3c1b7ce07f8d3c1b7ce0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */,
);
name = "metadata";
sourceTree = SOURCE_ROOT;
};
- FFFBd2c8ff407ff3d2c8ff40 /* SceneQuery */ = {
+ FFFB3cc2ae407f8d3cc2ae40 /* SceneQuery */ = {
isa = PBXGroup;
children = (
- FFFBd2c919c07ff3d2c919c0 /* src */,
- FFFBd2c919e87ff3d2c919e8 /* include */,
+ FFFB3cc2ca807f8d3cc2ca80 /* src */,
+ FFFB3cc2caa87f8d3cc2caa8 /* include */,
);
name = "SceneQuery";
sourceTree = "<group>";
};
- FFFBd2c919c07ff3d2c919c0 /* src */ = {
+ FFFB3cc2ca807f8d3cc2ca80 /* src */ = {
isa = PBXGroup;
children = (
- FFFDd0a30e007ff3d0a30e00 /* SqAABBPruner.cpp */,
- FFFDd0a30e687ff3d0a30e68 /* SqAABBTree.cpp */,
- FFFDd0a30ed07ff3d0a30ed0 /* SqAABBTreeBuild.cpp */,
- FFFDd0a30f387ff3d0a30f38 /* SqAABBTreeUpdateMap.cpp */,
- FFFDd0a30fa07ff3d0a30fa0 /* SqBounds.cpp */,
- FFFDd0a310087ff3d0a31008 /* SqBucketPruner.cpp */,
- FFFDd0a310707ff3d0a31070 /* SqExtendedBucketPruner.cpp */,
- FFFDd0a310d87ff3d0a310d8 /* SqIncrementalAABBPrunerCore.cpp */,
- FFFDd0a311407ff3d0a31140 /* SqIncrementalAABBTree.cpp */,
- FFFDd0a311a87ff3d0a311a8 /* SqMetaData.cpp */,
- FFFDd0a312107ff3d0a31210 /* SqPruningPool.cpp */,
- FFFDd0a312787ff3d0a31278 /* SqPruningStructure.cpp */,
- FFFDd0a312e07ff3d0a312e0 /* SqSceneQueryManager.cpp */,
- FFFDd0a313487ff3d0a31348 /* SqAABBPruner.h */,
- FFFDd0a313b07ff3d0a313b0 /* SqAABBTree.h */,
- FFFDd0a314187ff3d0a31418 /* SqAABBTreeBuild.h */,
- FFFDd0a314807ff3d0a31480 /* SqAABBTreeQuery.h */,
- FFFDd0a314e87ff3d0a314e8 /* SqAABBTreeUpdateMap.h */,
- FFFDd0a315507ff3d0a31550 /* SqBounds.h */,
- FFFDd0a315b87ff3d0a315b8 /* SqBucketPruner.h */,
- FFFDd0a316207ff3d0a31620 /* SqExtendedBucketPruner.h */,
- FFFDd0a316887ff3d0a31688 /* SqIncrementalAABBPrunerCore.h */,
- FFFDd0a316f07ff3d0a316f0 /* SqIncrementalAABBTree.h */,
- FFFDd0a317587ff3d0a31758 /* SqPrunerTestsSIMD.h */,
- FFFDd0a317c07ff3d0a317c0 /* SqPruningPool.h */,
- FFFDd0a318287ff3d0a31828 /* SqTypedef.h */,
+ FFFD3c1be0007f8d3c1be000 /* SqAABBPruner.cpp */,
+ FFFD3c1be0687f8d3c1be068 /* SqAABBTree.cpp */,
+ FFFD3c1be0d07f8d3c1be0d0 /* SqAABBTreeBuild.cpp */,
+ FFFD3c1be1387f8d3c1be138 /* SqAABBTreeUpdateMap.cpp */,
+ FFFD3c1be1a07f8d3c1be1a0 /* SqBounds.cpp */,
+ FFFD3c1be2087f8d3c1be208 /* SqBucketPruner.cpp */,
+ FFFD3c1be2707f8d3c1be270 /* SqExtendedBucketPruner.cpp */,
+ FFFD3c1be2d87f8d3c1be2d8 /* SqIncrementalAABBPrunerCore.cpp */,
+ FFFD3c1be3407f8d3c1be340 /* SqIncrementalAABBTree.cpp */,
+ FFFD3c1be3a87f8d3c1be3a8 /* SqMetaData.cpp */,
+ FFFD3c1be4107f8d3c1be410 /* SqPruningPool.cpp */,
+ FFFD3c1be4787f8d3c1be478 /* SqPruningStructure.cpp */,
+ FFFD3c1be4e07f8d3c1be4e0 /* SqSceneQueryManager.cpp */,
+ FFFD3c1be5487f8d3c1be548 /* SqAABBPruner.h */,
+ FFFD3c1be5b07f8d3c1be5b0 /* SqAABBTree.h */,
+ FFFD3c1be6187f8d3c1be618 /* SqAABBTreeBuild.h */,
+ FFFD3c1be6807f8d3c1be680 /* SqAABBTreeQuery.h */,
+ FFFD3c1be6e87f8d3c1be6e8 /* SqAABBTreeUpdateMap.h */,
+ FFFD3c1be7507f8d3c1be750 /* SqBounds.h */,
+ FFFD3c1be7b87f8d3c1be7b8 /* SqBucketPruner.h */,
+ FFFD3c1be8207f8d3c1be820 /* SqExtendedBucketPruner.h */,
+ FFFD3c1be8887f8d3c1be888 /* SqIncrementalAABBPrunerCore.h */,
+ FFFD3c1be8f07f8d3c1be8f0 /* SqIncrementalAABBTree.h */,
+ FFFD3c1be9587f8d3c1be958 /* SqPrunerTestsSIMD.h */,
+ FFFD3c1be9c07f8d3c1be9c0 /* SqPruningPool.h */,
+ FFFD3c1bea287f8d3c1bea28 /* SqTypedef.h */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
- FFFBd2c919e87ff3d2c919e8 /* include */ = {
+ FFFB3cc2caa87f8d3cc2caa8 /* include */ = {
isa = PBXGroup;
children = (
- FFFDd2c941d07ff3d2c941d0 /* SqPruner.h */,
- FFFDd2c942387ff3d2c94238 /* SqPrunerMergeData.h */,
- FFFDd2c942a07ff3d2c942a0 /* SqPruningStructure.h */,
- FFFDd2c943087ff3d2c94308 /* SqSceneQueryManager.h */,
+ FFFD3cc2efb07f8d3cc2efb0 /* SqPruner.h */,
+ FFFD3cc2f0187f8d3cc2f018 /* SqPrunerMergeData.h */,
+ FFFD3cc2f0807f8d3cc2f080 /* SqPruningStructure.h */,
+ FFFD3cc2f0e87f8d3cc2f0e8 /* SqSceneQueryManager.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
- FFFBd2c944907ff3d2c94490 /* SimulationController */ = {
+ FFFB3cc2f2707f8d3cc2f270 /* SimulationController */ = {
isa = PBXGroup;
children = (
- FFFBd2c96ea07ff3d2c96ea0 /* include */,
- FFFBd2c96ec87ff3d2c96ec8 /* src */,
+ FFFB3cc223907f8d3cc22390 /* include */,
+ FFFB3cc223b87f8d3cc223b8 /* src */,
);
name = "SimulationController";
sourceTree = "<group>";
};
- FFFBd2c96ea07ff3d2c96ea0 /* include */ = {
+ FFFB3cc223907f8d3cc22390 /* include */ = {
isa = PBXGroup;
children = (
- FFFDd0a33a007ff3d0a33a00 /* ScActorCore.h */,
- FFFDd0a33a687ff3d0a33a68 /* ScArticulationCore.h */,
- FFFDd0a33ad07ff3d0a33ad0 /* ScArticulationJointCore.h */,
- FFFDd0a33b387ff3d0a33b38 /* ScBodyCore.h */,
- FFFDd0a33ba07ff3d0a33ba0 /* ScClothCore.h */,
- FFFDd0a33c087ff3d0a33c08 /* ScClothFabricCore.h */,
- FFFDd0a33c707ff3d0a33c70 /* ScConstraintCore.h */,
- FFFDd0a33cd87ff3d0a33cd8 /* ScIterators.h */,
- FFFDd0a33d407ff3d0a33d40 /* ScMaterialCore.h */,
- FFFDd0a33da87ff3d0a33da8 /* ScParticleSystemCore.h */,
- FFFDd0a33e107ff3d0a33e10 /* ScPhysics.h */,
- FFFDd0a33e787ff3d0a33e78 /* ScRigidCore.h */,
- FFFDd0a33ee07ff3d0a33ee0 /* ScScene.h */,
- FFFDd0a33f487ff3d0a33f48 /* ScShapeCore.h */,
- FFFDd0a33fb07ff3d0a33fb0 /* ScStaticCore.h */,
+ FFFD3c1c0c007f8d3c1c0c00 /* ScActorCore.h */,
+ FFFD3c1c0c687f8d3c1c0c68 /* ScArticulationCore.h */,
+ FFFD3c1c0cd07f8d3c1c0cd0 /* ScArticulationJointCore.h */,
+ FFFD3c1c0d387f8d3c1c0d38 /* ScBodyCore.h */,
+ FFFD3c1c0da07f8d3c1c0da0 /* ScClothCore.h */,
+ FFFD3c1c0e087f8d3c1c0e08 /* ScClothFabricCore.h */,
+ FFFD3c1c0e707f8d3c1c0e70 /* ScConstraintCore.h */,
+ FFFD3c1c0ed87f8d3c1c0ed8 /* ScIterators.h */,
+ FFFD3c1c0f407f8d3c1c0f40 /* ScMaterialCore.h */,
+ FFFD3c1c0fa87f8d3c1c0fa8 /* ScParticleSystemCore.h */,
+ FFFD3c1c10107f8d3c1c1010 /* ScPhysics.h */,
+ FFFD3c1c10787f8d3c1c1078 /* ScRigidCore.h */,
+ FFFD3c1c10e07f8d3c1c10e0 /* ScScene.h */,
+ FFFD3c1c11487f8d3c1c1148 /* ScShapeCore.h */,
+ FFFD3c1c11b07f8d3c1c11b0 /* ScStaticCore.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
- FFFBd2c96ec87ff3d2c96ec8 /* src */ = {
+ FFFB3cc223b87f8d3cc223b8 /* src */ = {
isa = PBXGroup;
children = (
- FFFDd38010007ff3d3801000 /* ScActorElementPair.h */,
- FFFDd38010687ff3d3801068 /* ScActorInteraction.h */,
- FFFDd38010d07ff3d38010d0 /* ScActorPair.h */,
- FFFDd38011387ff3d3801138 /* ScActorSim.h */,
- FFFDd38011a07ff3d38011a0 /* ScArticulationJointSim.h */,
- FFFDd38012087ff3d3801208 /* ScArticulationSim.h */,
- FFFDd38012707ff3d3801270 /* ScBodySim.h */,
- FFFDd38012d87ff3d38012d8 /* ScClient.h */,
- FFFDd38013407ff3d3801340 /* ScConstraintGroupNode.h */,
- FFFDd38013a87ff3d38013a8 /* ScConstraintInteraction.h */,
- FFFDd38014107ff3d3801410 /* ScConstraintProjectionManager.h */,
- FFFDd38014787ff3d3801478 /* ScConstraintProjectionTree.h */,
- FFFDd38014e07ff3d38014e0 /* ScConstraintSim.h */,
- FFFDd38015487ff3d3801548 /* ScContactReportBuffer.h */,
- FFFDd38015b07ff3d38015b0 /* ScContactStream.h */,
- FFFDd38016187ff3d3801618 /* ScElementInteractionMarker.h */,
- FFFDd38016807ff3d3801680 /* ScElementSim.h */,
- FFFDd38016e87ff3d38016e8 /* ScElementSimInteraction.h */,
- FFFDd38017507ff3d3801750 /* ScInteraction.h */,
- FFFDd38017b87ff3d38017b8 /* ScInteractionFlags.h */,
- FFFDd38018207ff3d3801820 /* ScNPhaseCore.h */,
- FFFDd38018887ff3d3801888 /* ScObjectIDTracker.h */,
- FFFDd38018f07ff3d38018f0 /* ScRbElementInteraction.h */,
- FFFDd38019587ff3d3801958 /* ScRigidSim.h */,
- FFFDd38019c07ff3d38019c0 /* ScShapeInteraction.h */,
- FFFDd3801a287ff3d3801a28 /* ScShapeIterator.h */,
- FFFDd3801a907ff3d3801a90 /* ScShapeSim.h */,
- FFFDd3801af87ff3d3801af8 /* ScSimStateData.h */,
- FFFDd3801b607ff3d3801b60 /* ScSimStats.h */,
- FFFDd3801bc87ff3d3801bc8 /* ScSimulationController.h */,
- FFFDd3801c307ff3d3801c30 /* ScSqBoundsManager.h */,
- FFFDd3801c987ff3d3801c98 /* ScStaticSim.h */,
- FFFDd3801d007ff3d3801d00 /* ScTriggerInteraction.h */,
- FFFDd3801d687ff3d3801d68 /* ScTriggerPairs.h */,
- FFFDd3801dd07ff3d3801dd0 /* ScActorCore.cpp */,
- FFFDd3801e387ff3d3801e38 /* ScActorSim.cpp */,
- FFFDd3801ea07ff3d3801ea0 /* ScArticulationCore.cpp */,
- FFFDd3801f087ff3d3801f08 /* ScArticulationJointCore.cpp */,
- FFFDd3801f707ff3d3801f70 /* ScArticulationJointSim.cpp */,
- FFFDd3801fd87ff3d3801fd8 /* ScArticulationSim.cpp */,
- FFFDd38020407ff3d3802040 /* ScBodyCore.cpp */,
- FFFDd38020a87ff3d38020a8 /* ScBodyCoreKinematic.cpp */,
- FFFDd38021107ff3d3802110 /* ScBodySim.cpp */,
- FFFDd38021787ff3d3802178 /* ScConstraintCore.cpp */,
- FFFDd38021e07ff3d38021e0 /* ScConstraintGroupNode.cpp */,
- FFFDd38022487ff3d3802248 /* ScConstraintInteraction.cpp */,
- FFFDd38022b07ff3d38022b0 /* ScConstraintProjectionManager.cpp */,
- FFFDd38023187ff3d3802318 /* ScConstraintProjectionTree.cpp */,
- FFFDd38023807ff3d3802380 /* ScConstraintSim.cpp */,
- FFFDd38023e87ff3d38023e8 /* ScElementInteractionMarker.cpp */,
- FFFDd38024507ff3d3802450 /* ScElementSim.cpp */,
- FFFDd38024b87ff3d38024b8 /* ScInteraction.cpp */,
- FFFDd38025207ff3d3802520 /* ScIterators.cpp */,
- FFFDd38025887ff3d3802588 /* ScMaterialCore.cpp */,
- FFFDd38025f07ff3d38025f0 /* ScMetaData.cpp */,
- FFFDd38026587ff3d3802658 /* ScNPhaseCore.cpp */,
- FFFDd38026c07ff3d38026c0 /* ScPhysics.cpp */,
- FFFDd38027287ff3d3802728 /* ScRigidCore.cpp */,
- FFFDd38027907ff3d3802790 /* ScRigidSim.cpp */,
- FFFDd38027f87ff3d38027f8 /* ScScene.cpp */,
- FFFDd38028607ff3d3802860 /* ScShapeCore.cpp */,
- FFFDd38028c87ff3d38028c8 /* ScShapeInteraction.cpp */,
- FFFDd38029307ff3d3802930 /* ScShapeSim.cpp */,
- FFFDd38029987ff3d3802998 /* ScSimStats.cpp */,
- FFFDd3802a007ff3d3802a00 /* ScSimulationController.cpp */,
- FFFDd3802a687ff3d3802a68 /* ScSqBoundsManager.cpp */,
- FFFDd3802ad07ff3d3802ad0 /* ScStaticCore.cpp */,
- FFFDd3802b387ff3d3802b38 /* ScStaticSim.cpp */,
- FFFDd3802ba07ff3d3802ba0 /* ScTriggerInteraction.cpp */,
- FFFDd3802c087ff3d3802c08 /* particles/ScParticleBodyInteraction.h */,
- FFFDd3802c707ff3d3802c70 /* particles/ScParticlePacketShape.h */,
- FFFDd3802cd87ff3d3802cd8 /* particles/ScParticleSystemSim.h */,
- FFFDd3802d407ff3d3802d40 /* particles/ScParticleBodyInteraction.cpp */,
- FFFDd3802da87ff3d3802da8 /* particles/ScParticlePacketShape.cpp */,
- FFFDd3802e107ff3d3802e10 /* particles/ScParticleSystemCore.cpp */,
- FFFDd3802e787ff3d3802e78 /* particles/ScParticleSystemSim.cpp */,
- FFFDd3802ee07ff3d3802ee0 /* cloth/ScClothShape.h */,
- FFFDd3802f487ff3d3802f48 /* cloth/ScClothSim.h */,
- FFFDd3802fb07ff3d3802fb0 /* cloth/ScClothCore.cpp */,
- FFFDd38030187ff3d3803018 /* cloth/ScClothFabricCore.cpp */,
- FFFDd38030807ff3d3803080 /* cloth/ScClothShape.cpp */,
- FFFDd38030e87ff3d38030e8 /* cloth/ScClothSim.cpp */,
+ FFFD3c1c3e007f8d3c1c3e00 /* ScActorElementPair.h */,
+ FFFD3c1c3e687f8d3c1c3e68 /* ScActorInteraction.h */,
+ FFFD3c1c3ed07f8d3c1c3ed0 /* ScActorPair.h */,
+ FFFD3c1c3f387f8d3c1c3f38 /* ScActorSim.h */,
+ FFFD3c1c3fa07f8d3c1c3fa0 /* ScArticulationJointSim.h */,
+ FFFD3c1c40087f8d3c1c4008 /* ScArticulationSim.h */,
+ FFFD3c1c40707f8d3c1c4070 /* ScBodySim.h */,
+ FFFD3c1c40d87f8d3c1c40d8 /* ScClient.h */,
+ FFFD3c1c41407f8d3c1c4140 /* ScConstraintGroupNode.h */,
+ FFFD3c1c41a87f8d3c1c41a8 /* ScConstraintInteraction.h */,
+ FFFD3c1c42107f8d3c1c4210 /* ScConstraintProjectionManager.h */,
+ FFFD3c1c42787f8d3c1c4278 /* ScConstraintProjectionTree.h */,
+ FFFD3c1c42e07f8d3c1c42e0 /* ScConstraintSim.h */,
+ FFFD3c1c43487f8d3c1c4348 /* ScContactReportBuffer.h */,
+ FFFD3c1c43b07f8d3c1c43b0 /* ScContactStream.h */,
+ FFFD3c1c44187f8d3c1c4418 /* ScElementInteractionMarker.h */,
+ FFFD3c1c44807f8d3c1c4480 /* ScElementSim.h */,
+ FFFD3c1c44e87f8d3c1c44e8 /* ScElementSimInteraction.h */,
+ FFFD3c1c45507f8d3c1c4550 /* ScInteraction.h */,
+ FFFD3c1c45b87f8d3c1c45b8 /* ScInteractionFlags.h */,
+ FFFD3c1c46207f8d3c1c4620 /* ScNPhaseCore.h */,
+ FFFD3c1c46887f8d3c1c4688 /* ScObjectIDTracker.h */,
+ FFFD3c1c46f07f8d3c1c46f0 /* ScRbElementInteraction.h */,
+ FFFD3c1c47587f8d3c1c4758 /* ScRigidSim.h */,
+ FFFD3c1c47c07f8d3c1c47c0 /* ScShapeInteraction.h */,
+ FFFD3c1c48287f8d3c1c4828 /* ScShapeIterator.h */,
+ FFFD3c1c48907f8d3c1c4890 /* ScShapeSim.h */,
+ FFFD3c1c48f87f8d3c1c48f8 /* ScSimStateData.h */,
+ FFFD3c1c49607f8d3c1c4960 /* ScSimStats.h */,
+ FFFD3c1c49c87f8d3c1c49c8 /* ScSimulationController.h */,
+ FFFD3c1c4a307f8d3c1c4a30 /* ScSqBoundsManager.h */,
+ FFFD3c1c4a987f8d3c1c4a98 /* ScStaticSim.h */,
+ FFFD3c1c4b007f8d3c1c4b00 /* ScTriggerInteraction.h */,
+ FFFD3c1c4b687f8d3c1c4b68 /* ScTriggerPairs.h */,
+ FFFD3c1c4bd07f8d3c1c4bd0 /* ScActorCore.cpp */,
+ FFFD3c1c4c387f8d3c1c4c38 /* ScActorSim.cpp */,
+ FFFD3c1c4ca07f8d3c1c4ca0 /* ScArticulationCore.cpp */,
+ FFFD3c1c4d087f8d3c1c4d08 /* ScArticulationJointCore.cpp */,
+ FFFD3c1c4d707f8d3c1c4d70 /* ScArticulationJointSim.cpp */,
+ FFFD3c1c4dd87f8d3c1c4dd8 /* ScArticulationSim.cpp */,
+ FFFD3c1c4e407f8d3c1c4e40 /* ScBodyCore.cpp */,
+ FFFD3c1c4ea87f8d3c1c4ea8 /* ScBodyCoreKinematic.cpp */,
+ FFFD3c1c4f107f8d3c1c4f10 /* ScBodySim.cpp */,
+ FFFD3c1c4f787f8d3c1c4f78 /* ScConstraintCore.cpp */,
+ FFFD3c1c4fe07f8d3c1c4fe0 /* ScConstraintGroupNode.cpp */,
+ FFFD3c1c50487f8d3c1c5048 /* ScConstraintInteraction.cpp */,
+ FFFD3c1c50b07f8d3c1c50b0 /* ScConstraintProjectionManager.cpp */,
+ FFFD3c1c51187f8d3c1c5118 /* ScConstraintProjectionTree.cpp */,
+ FFFD3c1c51807f8d3c1c5180 /* ScConstraintSim.cpp */,
+ FFFD3c1c51e87f8d3c1c51e8 /* ScElementInteractionMarker.cpp */,
+ FFFD3c1c52507f8d3c1c5250 /* ScElementSim.cpp */,
+ FFFD3c1c52b87f8d3c1c52b8 /* ScInteraction.cpp */,
+ FFFD3c1c53207f8d3c1c5320 /* ScIterators.cpp */,
+ FFFD3c1c53887f8d3c1c5388 /* ScMaterialCore.cpp */,
+ FFFD3c1c53f07f8d3c1c53f0 /* ScMetaData.cpp */,
+ FFFD3c1c54587f8d3c1c5458 /* ScNPhaseCore.cpp */,
+ FFFD3c1c54c07f8d3c1c54c0 /* ScPhysics.cpp */,
+ FFFD3c1c55287f8d3c1c5528 /* ScRigidCore.cpp */,
+ FFFD3c1c55907f8d3c1c5590 /* ScRigidSim.cpp */,
+ FFFD3c1c55f87f8d3c1c55f8 /* ScScene.cpp */,
+ FFFD3c1c56607f8d3c1c5660 /* ScShapeCore.cpp */,
+ FFFD3c1c56c87f8d3c1c56c8 /* ScShapeInteraction.cpp */,
+ FFFD3c1c57307f8d3c1c5730 /* ScShapeSim.cpp */,
+ FFFD3c1c57987f8d3c1c5798 /* ScSimStats.cpp */,
+ FFFD3c1c58007f8d3c1c5800 /* ScSimulationController.cpp */,
+ FFFD3c1c58687f8d3c1c5868 /* ScSqBoundsManager.cpp */,
+ FFFD3c1c58d07f8d3c1c58d0 /* ScStaticCore.cpp */,
+ FFFD3c1c59387f8d3c1c5938 /* ScStaticSim.cpp */,
+ FFFD3c1c59a07f8d3c1c59a0 /* ScTriggerInteraction.cpp */,
+ FFFD3c1c5a087f8d3c1c5a08 /* particles/ScParticleBodyInteraction.h */,
+ FFFD3c1c5a707f8d3c1c5a70 /* particles/ScParticlePacketShape.h */,
+ FFFD3c1c5ad87f8d3c1c5ad8 /* particles/ScParticleSystemSim.h */,
+ FFFD3c1c5b407f8d3c1c5b40 /* particles/ScParticleBodyInteraction.cpp */,
+ FFFD3c1c5ba87f8d3c1c5ba8 /* particles/ScParticlePacketShape.cpp */,
+ FFFD3c1c5c107f8d3c1c5c10 /* particles/ScParticleSystemCore.cpp */,
+ FFFD3c1c5c787f8d3c1c5c78 /* particles/ScParticleSystemSim.cpp */,
+ FFFD3c1c5ce07f8d3c1c5ce0 /* cloth/ScClothShape.h */,
+ FFFD3c1c5d487f8d3c1c5d48 /* cloth/ScClothSim.h */,
+ FFFD3c1c5db07f8d3c1c5db0 /* cloth/ScClothCore.cpp */,
+ FFFD3c1c5e187f8d3c1c5e18 /* cloth/ScClothFabricCore.cpp */,
+ FFFD3c1c5e807f8d3c1c5e80 /* cloth/ScClothShape.cpp */,
+ FFFD3c1c5ee87f8d3c1c5ee8 /* cloth/ScClothSim.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
- FFFBd2f00d507ff3d2f00d50 /* PhysXCooking */ = {
+ FFFB3cc226e07f8d3cc226e0 /* PhysXCooking */ = {
isa = PBXGroup;
children = (
- FFFBd2f088707ff3d2f08870 /* include */,
- FFFBd2f088987ff3d2f08898 /* src */,
+ FFFB3cc39c907f8d3cc39c90 /* include */,
+ FFFB3cc39cb87f8d3cc39cb8 /* src */,
);
name = "PhysXCooking";
sourceTree = "<group>";
};
- FFFBd2f088707ff3d2f08870 /* include */ = {
+ FFFB3cc39c907f8d3cc39c90 /* include */ = {
isa = PBXGroup;
children = (
- FFFDd2f08f507ff3d2f08f50 /* PxBVH33MidphaseDesc.h */,
- FFFDd2f08fb87ff3d2f08fb8 /* PxBVH34MidphaseDesc.h */,
- FFFDd2f090207ff3d2f09020 /* PxConvexMeshDesc.h */,
- FFFDd2f090887ff3d2f09088 /* PxCooking.h */,
- FFFDd2f090f07ff3d2f090f0 /* PxMidphaseDesc.h */,
- FFFDd2f091587ff3d2f09158 /* PxTriangleMeshDesc.h */,
- FFFDd2f091c07ff3d2f091c0 /* Pxc.h */,
+ FFFD3cc3a3807f8d3cc3a380 /* PxBVH33MidphaseDesc.h */,
+ FFFD3cc3a3e87f8d3cc3a3e8 /* PxBVH34MidphaseDesc.h */,
+ FFFD3cc3a4507f8d3cc3a450 /* PxConvexMeshDesc.h */,
+ FFFD3cc3a4b87f8d3cc3a4b8 /* PxCooking.h */,
+ FFFD3cc3a5207f8d3cc3a520 /* PxMidphaseDesc.h */,
+ FFFD3cc3a5887f8d3cc3a588 /* PxTriangleMeshDesc.h */,
+ FFFD3cc3a5f07f8d3cc3a5f0 /* Pxc.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
- FFFBd2f088987ff3d2f08898 /* src */ = {
+ FFFB3cc39cb87f8d3cc39cb8 /* src */ = {
isa = PBXGroup;
children = (
- FFFDd38082007ff3d3808200 /* Adjacencies.cpp */,
- FFFDd38082687ff3d3808268 /* Cooking.cpp */,
- FFFDd38082d07ff3d38082d0 /* CookingUtils.cpp */,
- FFFDd38083387ff3d3808338 /* EdgeList.cpp */,
- FFFDd38083a07ff3d38083a0 /* MeshCleaner.cpp */,
- FFFDd38084087ff3d3808408 /* Quantizer.cpp */,
- FFFDd38084707ff3d3808470 /* Adjacencies.h */,
- FFFDd38084d87ff3d38084d8 /* Cooking.h */,
- FFFDd38085407ff3d3808540 /* CookingUtils.h */,
- FFFDd38085a87ff3d38085a8 /* EdgeList.h */,
- FFFDd38086107ff3d3808610 /* MeshCleaner.h */,
- FFFDd38086787ff3d3808678 /* Quantizer.h */,
- FFFDd38086e07ff3d38086e0 /* mesh/GrbTriangleMeshCooking.cpp */,
- FFFDd38087487ff3d3808748 /* mesh/HeightFieldCooking.cpp */,
- FFFDd38087b07ff3d38087b0 /* mesh/RTreeCooking.cpp */,
- FFFDd38088187ff3d3808818 /* mesh/TriangleMeshBuilder.cpp */,
- FFFDd38088807ff3d3808880 /* mesh/GrbTriangleMeshCooking.h */,
- FFFDd38088e87ff3d38088e8 /* mesh/HeightFieldCooking.h */,
- FFFDd38089507ff3d3808950 /* mesh/QuickSelect.h */,
- FFFDd38089b87ff3d38089b8 /* mesh/RTreeCooking.h */,
- FFFDd3808a207ff3d3808a20 /* mesh/TriangleMeshBuilder.h */,
- FFFDd3808a887ff3d3808a88 /* convex/BigConvexDataBuilder.cpp */,
- FFFDd3808af07ff3d3808af0 /* convex/ConvexHullBuilder.cpp */,
- FFFDd3808b587ff3d3808b58 /* convex/ConvexHullLib.cpp */,
- FFFDd3808bc07ff3d3808bc0 /* convex/ConvexHullUtils.cpp */,
- FFFDd3808c287ff3d3808c28 /* convex/ConvexMeshBuilder.cpp */,
- FFFDd3808c907ff3d3808c90 /* convex/ConvexPolygonsBuilder.cpp */,
- FFFDd3808cf87ff3d3808cf8 /* convex/InflationConvexHullLib.cpp */,
- FFFDd3808d607ff3d3808d60 /* convex/QuickHullConvexHullLib.cpp */,
- FFFDd3808dc87ff3d3808dc8 /* convex/VolumeIntegration.cpp */,
- FFFDd3808e307ff3d3808e30 /* convex/BigConvexDataBuilder.h */,
- FFFDd3808e987ff3d3808e98 /* convex/ConvexHullBuilder.h */,
- FFFDd3808f007ff3d3808f00 /* convex/ConvexHullLib.h */,
- FFFDd3808f687ff3d3808f68 /* convex/ConvexHullUtils.h */,
- FFFDd3808fd07ff3d3808fd0 /* convex/ConvexMeshBuilder.h */,
- FFFDd38090387ff3d3809038 /* convex/ConvexPolygonsBuilder.h */,
- FFFDd38090a07ff3d38090a0 /* convex/InflationConvexHullLib.h */,
- FFFDd38091087ff3d3809108 /* convex/QuickHullConvexHullLib.h */,
- FFFDd38091707ff3d3809170 /* convex/VolumeIntegration.h */,
+ FFFD3c1c80007f8d3c1c8000 /* Adjacencies.cpp */,
+ FFFD3c1c80687f8d3c1c8068 /* Cooking.cpp */,
+ FFFD3c1c80d07f8d3c1c80d0 /* CookingUtils.cpp */,
+ FFFD3c1c81387f8d3c1c8138 /* EdgeList.cpp */,
+ FFFD3c1c81a07f8d3c1c81a0 /* MeshCleaner.cpp */,
+ FFFD3c1c82087f8d3c1c8208 /* Quantizer.cpp */,
+ FFFD3c1c82707f8d3c1c8270 /* Adjacencies.h */,
+ FFFD3c1c82d87f8d3c1c82d8 /* Cooking.h */,
+ FFFD3c1c83407f8d3c1c8340 /* CookingUtils.h */,
+ FFFD3c1c83a87f8d3c1c83a8 /* EdgeList.h */,
+ FFFD3c1c84107f8d3c1c8410 /* MeshCleaner.h */,
+ FFFD3c1c84787f8d3c1c8478 /* Quantizer.h */,
+ FFFD3c1c84e07f8d3c1c84e0 /* mesh/GrbTriangleMeshCooking.cpp */,
+ FFFD3c1c85487f8d3c1c8548 /* mesh/HeightFieldCooking.cpp */,
+ FFFD3c1c85b07f8d3c1c85b0 /* mesh/RTreeCooking.cpp */,
+ FFFD3c1c86187f8d3c1c8618 /* mesh/TriangleMeshBuilder.cpp */,
+ FFFD3c1c86807f8d3c1c8680 /* mesh/GrbTriangleMeshCooking.h */,
+ FFFD3c1c86e87f8d3c1c86e8 /* mesh/HeightFieldCooking.h */,
+ FFFD3c1c87507f8d3c1c8750 /* mesh/QuickSelect.h */,
+ FFFD3c1c87b87f8d3c1c87b8 /* mesh/RTreeCooking.h */,
+ FFFD3c1c88207f8d3c1c8820 /* mesh/TriangleMeshBuilder.h */,
+ FFFD3c1c88887f8d3c1c8888 /* convex/BigConvexDataBuilder.cpp */,
+ FFFD3c1c88f07f8d3c1c88f0 /* convex/ConvexHullBuilder.cpp */,
+ FFFD3c1c89587f8d3c1c8958 /* convex/ConvexHullLib.cpp */,
+ FFFD3c1c89c07f8d3c1c89c0 /* convex/ConvexHullUtils.cpp */,
+ FFFD3c1c8a287f8d3c1c8a28 /* convex/ConvexMeshBuilder.cpp */,
+ FFFD3c1c8a907f8d3c1c8a90 /* convex/ConvexPolygonsBuilder.cpp */,
+ FFFD3c1c8af87f8d3c1c8af8 /* convex/InflationConvexHullLib.cpp */,
+ FFFD3c1c8b607f8d3c1c8b60 /* convex/QuickHullConvexHullLib.cpp */,
+ FFFD3c1c8bc87f8d3c1c8bc8 /* convex/VolumeIntegration.cpp */,
+ FFFD3c1c8c307f8d3c1c8c30 /* convex/BigConvexDataBuilder.h */,
+ FFFD3c1c8c987f8d3c1c8c98 /* convex/ConvexHullBuilder.h */,
+ FFFD3c1c8d007f8d3c1c8d00 /* convex/ConvexHullLib.h */,
+ FFFD3c1c8d687f8d3c1c8d68 /* convex/ConvexHullUtils.h */,
+ FFFD3c1c8dd07f8d3c1c8dd0 /* convex/ConvexMeshBuilder.h */,
+ FFFD3c1c8e387f8d3c1c8e38 /* convex/ConvexPolygonsBuilder.h */,
+ FFFD3c1c8ea07f8d3c1c8ea0 /* convex/InflationConvexHullLib.h */,
+ FFFD3c1c8f087f8d3c1c8f08 /* convex/QuickHullConvexHullLib.h */,
+ FFFD3c1c8f707f8d3c1c8f70 /* convex/VolumeIntegration.h */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
- FFFBd10a67707ff3d10a6770 /* PhysXCommon */ = {
+ FFFB3c99d3f07f8d3c99d3f0 /* PhysXCommon */ = {
isa = PBXGroup;
children = (
- FFFBd12faf807ff3d12faf80 /* include */,
- FFFBd12fafa87ff3d12fafa8 /* common */,
- FFFBd12fafd07ff3d12fafd0 /* geomutils */,
+ FFFB3c99fc207f8d3c99fc20 /* include */,
+ FFFB3c99fc487f8d3c99fc48 /* common */,
+ FFFB3c99fc707f8d3c99fc70 /* geomutils */,
);
name = "PhysXCommon";
sourceTree = "<group>";
};
- FFFBd12faf807ff3d12faf80 /* include */ = {
+ FFFB3c99fc207f8d3c99fc20 /* include */ = {
isa = PBXGroup;
children = (
- FFFDd180ec007ff3d180ec00 /* common/PxBase.h */,
- FFFDd180ec687ff3d180ec68 /* common/PxCollection.h */,
- FFFDd180ecd07ff3d180ecd0 /* common/PxCoreUtilityTypes.h */,
- FFFDd180ed387ff3d180ed38 /* common/PxMetaData.h */,
- FFFDd180eda07ff3d180eda0 /* common/PxMetaDataFlags.h */,
- FFFDd180ee087ff3d180ee08 /* common/PxPhysXCommonConfig.h */,
- FFFDd180ee707ff3d180ee70 /* common/PxPhysicsInsertionCallback.h */,
- FFFDd180eed87ff3d180eed8 /* common/PxRenderBuffer.h */,
- FFFDd180ef407ff3d180ef40 /* common/PxSerialFramework.h */,
- FFFDd180efa87ff3d180efa8 /* common/PxSerializer.h */,
- FFFDd180f0107ff3d180f010 /* common/PxStringTable.h */,
- FFFDd180f0787ff3d180f078 /* common/PxTolerancesScale.h */,
- FFFDd180f0e07ff3d180f0e0 /* common/PxTypeInfo.h */,
- FFFDd180f1487ff3d180f148 /* geometry/PxBoxGeometry.h */,
- FFFDd180f1b07ff3d180f1b0 /* geometry/PxCapsuleGeometry.h */,
- FFFDd180f2187ff3d180f218 /* geometry/PxConvexMesh.h */,
- FFFDd180f2807ff3d180f280 /* geometry/PxConvexMeshGeometry.h */,
- FFFDd180f2e87ff3d180f2e8 /* geometry/PxGeometry.h */,
- FFFDd180f3507ff3d180f350 /* geometry/PxGeometryHelpers.h */,
- FFFDd180f3b87ff3d180f3b8 /* geometry/PxGeometryQuery.h */,
- FFFDd180f4207ff3d180f420 /* geometry/PxHeightField.h */,
- FFFDd180f4887ff3d180f488 /* geometry/PxHeightFieldDesc.h */,
- FFFDd180f4f07ff3d180f4f0 /* geometry/PxHeightFieldFlag.h */,
- FFFDd180f5587ff3d180f558 /* geometry/PxHeightFieldGeometry.h */,
- FFFDd180f5c07ff3d180f5c0 /* geometry/PxHeightFieldSample.h */,
- FFFDd180f6287ff3d180f628 /* geometry/PxMeshQuery.h */,
- FFFDd180f6907ff3d180f690 /* geometry/PxMeshScale.h */,
- FFFDd180f6f87ff3d180f6f8 /* geometry/PxPlaneGeometry.h */,
- FFFDd180f7607ff3d180f760 /* geometry/PxSimpleTriangleMesh.h */,
- FFFDd180f7c87ff3d180f7c8 /* geometry/PxSphereGeometry.h */,
- FFFDd180f8307ff3d180f830 /* geometry/PxTriangle.h */,
- FFFDd180f8987ff3d180f898 /* geometry/PxTriangleMesh.h */,
- FFFDd180f9007ff3d180f900 /* geometry/PxTriangleMeshGeometry.h */,
+ FFFD3b8112007f8d3b811200 /* common/PxBase.h */,
+ FFFD3b8112687f8d3b811268 /* common/PxCollection.h */,
+ FFFD3b8112d07f8d3b8112d0 /* common/PxCoreUtilityTypes.h */,
+ FFFD3b8113387f8d3b811338 /* common/PxMetaData.h */,
+ FFFD3b8113a07f8d3b8113a0 /* common/PxMetaDataFlags.h */,
+ FFFD3b8114087f8d3b811408 /* common/PxPhysXCommonConfig.h */,
+ FFFD3b8114707f8d3b811470 /* common/PxPhysicsInsertionCallback.h */,
+ FFFD3b8114d87f8d3b8114d8 /* common/PxRenderBuffer.h */,
+ FFFD3b8115407f8d3b811540 /* common/PxSerialFramework.h */,
+ FFFD3b8115a87f8d3b8115a8 /* common/PxSerializer.h */,
+ FFFD3b8116107f8d3b811610 /* common/PxStringTable.h */,
+ FFFD3b8116787f8d3b811678 /* common/PxTolerancesScale.h */,
+ FFFD3b8116e07f8d3b8116e0 /* common/PxTypeInfo.h */,
+ FFFD3b8117487f8d3b811748 /* geometry/PxBoxGeometry.h */,
+ FFFD3b8117b07f8d3b8117b0 /* geometry/PxCapsuleGeometry.h */,
+ FFFD3b8118187f8d3b811818 /* geometry/PxConvexMesh.h */,
+ FFFD3b8118807f8d3b811880 /* geometry/PxConvexMeshGeometry.h */,
+ FFFD3b8118e87f8d3b8118e8 /* geometry/PxGeometry.h */,
+ FFFD3b8119507f8d3b811950 /* geometry/PxGeometryHelpers.h */,
+ FFFD3b8119b87f8d3b8119b8 /* geometry/PxGeometryQuery.h */,
+ FFFD3b811a207f8d3b811a20 /* geometry/PxHeightField.h */,
+ FFFD3b811a887f8d3b811a88 /* geometry/PxHeightFieldDesc.h */,
+ FFFD3b811af07f8d3b811af0 /* geometry/PxHeightFieldFlag.h */,
+ FFFD3b811b587f8d3b811b58 /* geometry/PxHeightFieldGeometry.h */,
+ FFFD3b811bc07f8d3b811bc0 /* geometry/PxHeightFieldSample.h */,
+ FFFD3b811c287f8d3b811c28 /* geometry/PxMeshQuery.h */,
+ FFFD3b811c907f8d3b811c90 /* geometry/PxMeshScale.h */,
+ FFFD3b811cf87f8d3b811cf8 /* geometry/PxPlaneGeometry.h */,
+ FFFD3b811d607f8d3b811d60 /* geometry/PxSimpleTriangleMesh.h */,
+ FFFD3b811dc87f8d3b811dc8 /* geometry/PxSphereGeometry.h */,
+ FFFD3b811e307f8d3b811e30 /* geometry/PxTriangle.h */,
+ FFFD3b811e987f8d3b811e98 /* geometry/PxTriangleMesh.h */,
+ FFFD3b811f007f8d3b811f00 /* geometry/PxTriangleMeshGeometry.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
- FFFBd12fafa87ff3d12fafa8 /* common */ = {
+ FFFB3c99fc487f8d3c99fc48 /* common */ = {
isa = PBXGroup;
children = (
- FFFDd09aa4007ff3d09aa400 /* src/CmBoxPruning.cpp */,
- FFFDd09aa4687ff3d09aa468 /* src/CmCollection.cpp */,
- FFFDd09aa4d07ff3d09aa4d0 /* src/CmMathUtils.cpp */,
- FFFDd09aa5387ff3d09aa538 /* src/CmPtrTable.cpp */,
- FFFDd09aa5a07ff3d09aa5a0 /* src/CmRadixSort.cpp */,
- FFFDd09aa6087ff3d09aa608 /* src/CmRadixSortBuffered.cpp */,
- FFFDd09aa6707ff3d09aa670 /* src/CmRenderOutput.cpp */,
- FFFDd09aa6d87ff3d09aa6d8 /* src/CmVisualization.cpp */,
- FFFDd09aa7407ff3d09aa740 /* src/CmBitMap.h */,
- FFFDd09aa7a87ff3d09aa7a8 /* src/CmBoxPruning.h */,
- FFFDd09aa8107ff3d09aa810 /* src/CmCollection.h */,
- FFFDd09aa8787ff3d09aa878 /* src/CmConeLimitHelper.h */,
- FFFDd09aa8e07ff3d09aa8e0 /* src/CmFlushPool.h */,
- FFFDd09aa9487ff3d09aa948 /* src/CmIDPool.h */,
- FFFDd09aa9b07ff3d09aa9b0 /* src/CmIO.h */,
- FFFDd09aaa187ff3d09aaa18 /* src/CmMatrix34.h */,
- FFFDd09aaa807ff3d09aaa80 /* src/CmPhysXCommon.h */,
- FFFDd09aaae87ff3d09aaae8 /* src/CmPool.h */,
- FFFDd09aab507ff3d09aab50 /* src/CmPreallocatingPool.h */,
- FFFDd09aabb87ff3d09aabb8 /* src/CmPriorityQueue.h */,
- FFFDd09aac207ff3d09aac20 /* src/CmPtrTable.h */,
- FFFDd09aac887ff3d09aac88 /* src/CmQueue.h */,
- FFFDd09aacf07ff3d09aacf0 /* src/CmRadixSort.h */,
- FFFDd09aad587ff3d09aad58 /* src/CmRadixSortBuffered.h */,
- FFFDd09aadc07ff3d09aadc0 /* src/CmRefCountable.h */,
- FFFDd09aae287ff3d09aae28 /* src/CmRenderBuffer.h */,
- FFFDd09aae907ff3d09aae90 /* src/CmRenderOutput.h */,
- FFFDd09aaef87ff3d09aaef8 /* src/CmScaling.h */,
- FFFDd09aaf607ff3d09aaf60 /* src/CmSpatialVector.h */,
- FFFDd09aafc87ff3d09aafc8 /* src/CmTask.h */,
- FFFDd09ab0307ff3d09ab030 /* src/CmTaskPool.h */,
- FFFDd09ab0987ff3d09ab098 /* src/CmTmpMem.h */,
- FFFDd09ab1007ff3d09ab100 /* src/CmTransformUtils.h */,
- FFFDd09ab1687ff3d09ab168 /* src/CmUtils.h */,
- FFFDd09ab1d07ff3d09ab1d0 /* src/CmVisualization.h */,
+ FFFD3c1a82007f8d3c1a8200 /* src/CmBoxPruning.cpp */,
+ FFFD3c1a82687f8d3c1a8268 /* src/CmCollection.cpp */,
+ FFFD3c1a82d07f8d3c1a82d0 /* src/CmMathUtils.cpp */,
+ FFFD3c1a83387f8d3c1a8338 /* src/CmPtrTable.cpp */,
+ FFFD3c1a83a07f8d3c1a83a0 /* src/CmRadixSort.cpp */,
+ FFFD3c1a84087f8d3c1a8408 /* src/CmRadixSortBuffered.cpp */,
+ FFFD3c1a84707f8d3c1a8470 /* src/CmRenderOutput.cpp */,
+ FFFD3c1a84d87f8d3c1a84d8 /* src/CmVisualization.cpp */,
+ FFFD3c1a85407f8d3c1a8540 /* src/CmBitMap.h */,
+ FFFD3c1a85a87f8d3c1a85a8 /* src/CmBoxPruning.h */,
+ FFFD3c1a86107f8d3c1a8610 /* src/CmCollection.h */,
+ FFFD3c1a86787f8d3c1a8678 /* src/CmConeLimitHelper.h */,
+ FFFD3c1a86e07f8d3c1a86e0 /* src/CmFlushPool.h */,
+ FFFD3c1a87487f8d3c1a8748 /* src/CmIDPool.h */,
+ FFFD3c1a87b07f8d3c1a87b0 /* src/CmIO.h */,
+ FFFD3c1a88187f8d3c1a8818 /* src/CmMatrix34.h */,
+ FFFD3c1a88807f8d3c1a8880 /* src/CmPhysXCommon.h */,
+ FFFD3c1a88e87f8d3c1a88e8 /* src/CmPool.h */,
+ FFFD3c1a89507f8d3c1a8950 /* src/CmPreallocatingPool.h */,
+ FFFD3c1a89b87f8d3c1a89b8 /* src/CmPriorityQueue.h */,
+ FFFD3c1a8a207f8d3c1a8a20 /* src/CmPtrTable.h */,
+ FFFD3c1a8a887f8d3c1a8a88 /* src/CmQueue.h */,
+ FFFD3c1a8af07f8d3c1a8af0 /* src/CmRadixSort.h */,
+ FFFD3c1a8b587f8d3c1a8b58 /* src/CmRadixSortBuffered.h */,
+ FFFD3c1a8bc07f8d3c1a8bc0 /* src/CmRefCountable.h */,
+ FFFD3c1a8c287f8d3c1a8c28 /* src/CmRenderBuffer.h */,
+ FFFD3c1a8c907f8d3c1a8c90 /* src/CmRenderOutput.h */,
+ FFFD3c1a8cf87f8d3c1a8cf8 /* src/CmScaling.h */,
+ FFFD3c1a8d607f8d3c1a8d60 /* src/CmSpatialVector.h */,
+ FFFD3c1a8dc87f8d3c1a8dc8 /* src/CmTask.h */,
+ FFFD3c1a8e307f8d3c1a8e30 /* src/CmTaskPool.h */,
+ FFFD3c1a8e987f8d3c1a8e98 /* src/CmTmpMem.h */,
+ FFFD3c1a8f007f8d3c1a8f00 /* src/CmTransformUtils.h */,
+ FFFD3c1a8f687f8d3c1a8f68 /* src/CmUtils.h */,
+ FFFD3c1a8fd07f8d3c1a8fd0 /* src/CmVisualization.h */,
);
name = "common";
sourceTree = SOURCE_ROOT;
};
- FFFBd12fafd07ff3d12fafd0 /* geomutils */ = {
+ FFFB3c99fc707f8d3c99fc70 /* geomutils */ = {
isa = PBXGroup;
children = (
- FFFDd18010007ff3d1801000 /* headers/GuAxes.h */,
- FFFDd18010687ff3d1801068 /* headers/GuBox.h */,
- FFFDd18010d07ff3d18010d0 /* headers/GuDistanceSegmentBox.h */,
- FFFDd18011387ff3d1801138 /* headers/GuDistanceSegmentSegment.h */,
- FFFDd18011a07ff3d18011a0 /* headers/GuIntersectionBoxBox.h */,
- FFFDd18012087ff3d1801208 /* headers/GuIntersectionTriangleBox.h */,
- FFFDd18012707ff3d1801270 /* headers/GuRaycastTests.h */,
- FFFDd18012d87ff3d18012d8 /* headers/GuSIMDHelpers.h */,
- FFFDd18013407ff3d1801340 /* headers/GuSegment.h */,
- FFFDd18013a87ff3d18013a8 /* ../../Include/GeomUtils */,
- FFFDd18014107ff3d1801410 /* src/GuBounds.h */,
- FFFDd18014787ff3d1801478 /* src/GuCapsule.h */,
- FFFDd18014e07ff3d18014e0 /* src/GuCenterExtents.h */,
- FFFDd18015487ff3d1801548 /* src/GuGeometryUnion.h */,
- FFFDd18015b07ff3d18015b0 /* src/GuInternal.h */,
- FFFDd18016187ff3d1801618 /* src/GuMTD.h */,
- FFFDd18016807ff3d1801680 /* src/GuMeshFactory.h */,
- FFFDd18016e87ff3d18016e8 /* src/GuOverlapTests.h */,
- FFFDd18017507ff3d1801750 /* src/GuSerialize.h */,
- FFFDd18017b87ff3d18017b8 /* src/GuSphere.h */,
- FFFDd18018207ff3d1801820 /* src/GuSweepMTD.h */,
- FFFDd18018887ff3d1801888 /* src/GuSweepSharedTests.h */,
- FFFDd18018f07ff3d18018f0 /* src/GuSweepTests.h */,
- FFFDd18019587ff3d1801958 /* src/contact/GuContactMethodImpl.h */,
- FFFDd18019c07ff3d18019c0 /* src/contact/GuContactPolygonPolygon.h */,
- FFFDd1801a287ff3d1801a28 /* src/contact/GuFeatureCode.h */,
- FFFDd1801a907ff3d1801a90 /* src/contact/GuLegacyTraceLineCallback.h */,
- FFFDd1801af87ff3d1801af8 /* src/common/GuBarycentricCoordinates.h */,
- FFFDd1801b607ff3d1801b60 /* src/common/GuBoxConversion.h */,
- FFFDd1801bc87ff3d1801bc8 /* src/common/GuEdgeCache.h */,
- FFFDd1801c307ff3d1801c30 /* src/common/GuEdgeListData.h */,
- FFFDd1801c987ff3d1801c98 /* src/common/GuSeparatingAxes.h */,
- FFFDd1801d007ff3d1801d00 /* src/convex/GuBigConvexData.h */,
- FFFDd1801d687ff3d1801d68 /* src/convex/GuBigConvexData2.h */,
- FFFDd1801dd07ff3d1801dd0 /* src/convex/GuConvexEdgeFlags.h */,
- FFFDd1801e387ff3d1801e38 /* src/convex/GuConvexHelper.h */,
- FFFDd1801ea07ff3d1801ea0 /* src/convex/GuConvexMesh.h */,
- FFFDd1801f087ff3d1801f08 /* src/convex/GuConvexMeshData.h */,
- FFFDd1801f707ff3d1801f70 /* src/convex/GuConvexSupportTable.h */,
- FFFDd1801fd87ff3d1801fd8 /* src/convex/GuConvexUtilsInternal.h */,
- FFFDd18020407ff3d1802040 /* src/convex/GuCubeIndex.h */,
- FFFDd18020a87ff3d18020a8 /* src/convex/GuHillClimbing.h */,
- FFFDd18021107ff3d1802110 /* src/convex/GuShapeConvex.h */,
- FFFDd18021787ff3d1802178 /* src/distance/GuDistancePointBox.h */,
- FFFDd18021e07ff3d18021e0 /* src/distance/GuDistancePointSegment.h */,
- FFFDd18022487ff3d1802248 /* src/distance/GuDistancePointTriangle.h */,
- FFFDd18022b07ff3d18022b0 /* src/distance/GuDistancePointTriangleSIMD.h */,
- FFFDd18023187ff3d1802318 /* src/distance/GuDistanceSegmentSegmentSIMD.h */,
- FFFDd18023807ff3d1802380 /* src/distance/GuDistanceSegmentTriangle.h */,
- FFFDd18023e87ff3d18023e8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */,
- FFFDd18024507ff3d1802450 /* src/sweep/GuSweepBoxBox.h */,
- FFFDd18024b87ff3d18024b8 /* src/sweep/GuSweepBoxSphere.h */,
- FFFDd18025207ff3d1802520 /* src/sweep/GuSweepBoxTriangle_FeatureBased.h */,
- FFFDd18025887ff3d1802588 /* src/sweep/GuSweepBoxTriangle_SAT.h */,
- FFFDd18025f07ff3d18025f0 /* src/sweep/GuSweepCapsuleBox.h */,
- FFFDd18026587ff3d1802658 /* src/sweep/GuSweepCapsuleCapsule.h */,
- FFFDd18026c07ff3d18026c0 /* src/sweep/GuSweepCapsuleTriangle.h */,
- FFFDd18027287ff3d1802728 /* src/sweep/GuSweepSphereCapsule.h */,
- FFFDd18027907ff3d1802790 /* src/sweep/GuSweepSphereSphere.h */,
- FFFDd18027f87ff3d18027f8 /* src/sweep/GuSweepSphereTriangle.h */,
- FFFDd18028607ff3d1802860 /* src/sweep/GuSweepTriangleUtils.h */,
- FFFDd18028c87ff3d18028c8 /* src/gjk/GuEPA.h */,
- FFFDd18029307ff3d1802930 /* src/gjk/GuEPAFacet.h */,
- FFFDd18029987ff3d1802998 /* src/gjk/GuGJK.h */,
- FFFDd1802a007ff3d1802a00 /* src/gjk/GuGJKPenetration.h */,
- FFFDd1802a687ff3d1802a68 /* src/gjk/GuGJKRaycast.h */,
- FFFDd1802ad07ff3d1802ad0 /* src/gjk/GuGJKSimplex.h */,
- FFFDd1802b387ff3d1802b38 /* src/gjk/GuGJKTest.h */,
- FFFDd1802ba07ff3d1802ba0 /* src/gjk/GuGJKType.h */,
- FFFDd1802c087ff3d1802c08 /* src/gjk/GuGJKUtil.h */,
- FFFDd1802c707ff3d1802c70 /* src/gjk/GuVecBox.h */,
- FFFDd1802cd87ff3d1802cd8 /* src/gjk/GuVecCapsule.h */,
- FFFDd1802d407ff3d1802d40 /* src/gjk/GuVecConvex.h */,
- FFFDd1802da87ff3d1802da8 /* src/gjk/GuVecConvexHull.h */,
- FFFDd1802e107ff3d1802e10 /* src/gjk/GuVecConvexHullNoScale.h */,
- FFFDd1802e787ff3d1802e78 /* src/gjk/GuVecPlane.h */,
- FFFDd1802ee07ff3d1802ee0 /* src/gjk/GuVecShrunkBox.h */,
- FFFDd1802f487ff3d1802f48 /* src/gjk/GuVecShrunkConvexHull.h */,
- FFFDd1802fb07ff3d1802fb0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */,
- FFFDd18030187ff3d1803018 /* src/gjk/GuVecSphere.h */,
- FFFDd18030807ff3d1803080 /* src/gjk/GuVecTriangle.h */,
- FFFDd18030e87ff3d18030e8 /* src/intersection/GuIntersectionCapsuleTriangle.h */,
- FFFDd18031507ff3d1803150 /* src/intersection/GuIntersectionEdgeEdge.h */,
- FFFDd18031b87ff3d18031b8 /* src/intersection/GuIntersectionRay.h */,
- FFFDd18032207ff3d1803220 /* src/intersection/GuIntersectionRayBox.h */,
- FFFDd18032887ff3d1803288 /* src/intersection/GuIntersectionRayBoxSIMD.h */,
- FFFDd18032f07ff3d18032f0 /* src/intersection/GuIntersectionRayCapsule.h */,
- FFFDd18033587ff3d1803358 /* src/intersection/GuIntersectionRayPlane.h */,
- FFFDd18033c07ff3d18033c0 /* src/intersection/GuIntersectionRaySphere.h */,
- FFFDd18034287ff3d1803428 /* src/intersection/GuIntersectionRayTriangle.h */,
- FFFDd18034907ff3d1803490 /* src/intersection/GuIntersectionSphereBox.h */,
- FFFDd18034f87ff3d18034f8 /* src/mesh/GuBV32.h */,
- FFFDd18035607ff3d1803560 /* src/mesh/GuBV32Build.h */,
- FFFDd18035c87ff3d18035c8 /* src/mesh/GuBV4.h */,
- FFFDd18036307ff3d1803630 /* src/mesh/GuBV4Build.h */,
- FFFDd18036987ff3d1803698 /* src/mesh/GuBV4Settings.h */,
- FFFDd18037007ff3d1803700 /* src/mesh/GuBV4_AABBAABBSweepTest.h */,
- FFFDd18037687ff3d1803768 /* src/mesh/GuBV4_BoxBoxOverlapTest.h */,
- FFFDd18037d07ff3d18037d0 /* src/mesh/GuBV4_BoxOverlap_Internal.h */,
- FFFDd18038387ff3d1803838 /* src/mesh/GuBV4_BoxSweep_Internal.h */,
- FFFDd18038a07ff3d18038a0 /* src/mesh/GuBV4_BoxSweep_Params.h */,
- FFFDd18039087ff3d1803908 /* src/mesh/GuBV4_CapsuleSweep_Internal.h */,
- FFFDd18039707ff3d1803970 /* src/mesh/GuBV4_Common.h */,
- FFFDd18039d87ff3d18039d8 /* src/mesh/GuBV4_Internal.h */,
- FFFDd1803a407ff3d1803a40 /* src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h */,
- FFFDd1803aa87ff3d1803aa8 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h */,
- FFFDd1803b107ff3d1803b10 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h */,
- FFFDd1803b787ff3d1803b78 /* src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h */,
- FFFDd1803be07ff3d1803be0 /* src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h */,
- FFFDd1803c487ff3d1803c48 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h */,
- FFFDd1803cb07ff3d1803cb0 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h */,
- FFFDd1803d187ff3d1803d18 /* src/mesh/GuBV4_Slabs.h */,
- FFFDd1803d807ff3d1803d80 /* src/mesh/GuBV4_Slabs_KajiyaNoOrder.h */,
- FFFDd1803de87ff3d1803de8 /* src/mesh/GuBV4_Slabs_KajiyaOrdered.h */,
- FFFDd1803e507ff3d1803e50 /* src/mesh/GuBV4_Slabs_SwizzledNoOrder.h */,
- FFFDd1803eb87ff3d1803eb8 /* src/mesh/GuBV4_Slabs_SwizzledOrdered.h */,
- FFFDd1803f207ff3d1803f20 /* src/mesh/GuBVConstants.h */,
- FFFDd1803f887ff3d1803f88 /* src/mesh/GuMeshData.h */,
- FFFDd1803ff07ff3d1803ff0 /* src/mesh/GuMidphaseInterface.h */,
- FFFDd18040587ff3d1804058 /* src/mesh/GuRTree.h */,
- FFFDd18040c07ff3d18040c0 /* src/mesh/GuSweepConvexTri.h */,
- FFFDd18041287ff3d1804128 /* src/mesh/GuSweepMesh.h */,
- FFFDd18041907ff3d1804190 /* src/mesh/GuTriangle32.h */,
- FFFDd18041f87ff3d18041f8 /* src/mesh/GuTriangleCache.h */,
- FFFDd18042607ff3d1804260 /* src/mesh/GuTriangleMesh.h */,
- FFFDd18042c87ff3d18042c8 /* src/mesh/GuTriangleMeshBV4.h */,
- FFFDd18043307ff3d1804330 /* src/mesh/GuTriangleMeshRTree.h */,
- FFFDd18043987ff3d1804398 /* src/mesh/GuTriangleVertexPointers.h */,
- FFFDd18044007ff3d1804400 /* src/hf/GuEntityReport.h */,
- FFFDd18044687ff3d1804468 /* src/hf/GuHeightField.h */,
- FFFDd18044d07ff3d18044d0 /* src/hf/GuHeightFieldData.h */,
- FFFDd18045387ff3d1804538 /* src/hf/GuHeightFieldUtil.h */,
- FFFDd18045a07ff3d18045a0 /* src/pcm/GuPCMContactConvexCommon.h */,
- FFFDd18046087ff3d1804608 /* src/pcm/GuPCMContactGen.h */,
- FFFDd18046707ff3d1804670 /* src/pcm/GuPCMContactGenUtil.h */,
- FFFDd18046d87ff3d18046d8 /* src/pcm/GuPCMContactMeshCallback.h */,
- FFFDd18047407ff3d1804740 /* src/pcm/GuPCMShapeConvex.h */,
- FFFDd18047a87ff3d18047a8 /* src/pcm/GuPCMTriangleContactGen.h */,
- FFFDd18048107ff3d1804810 /* src/pcm/GuPersistentContactManifold.h */,
- FFFDd18048787ff3d1804878 /* src/ccd/GuCCDSweepConvexMesh.h */,
- FFFDd18048e07ff3d18048e0 /* src/GuBounds.cpp */,
- FFFDd18049487ff3d1804948 /* src/GuBox.cpp */,
- FFFDd18049b07ff3d18049b0 /* src/GuCCTSweepTests.cpp */,
- FFFDd1804a187ff3d1804a18 /* src/GuCapsule.cpp */,
- FFFDd1804a807ff3d1804a80 /* src/GuGeometryQuery.cpp */,
- FFFDd1804ae87ff3d1804ae8 /* src/GuGeometryUnion.cpp */,
- FFFDd1804b507ff3d1804b50 /* src/GuInternal.cpp */,
- FFFDd1804bb87ff3d1804bb8 /* src/GuMTD.cpp */,
- FFFDd1804c207ff3d1804c20 /* src/GuMeshFactory.cpp */,
- FFFDd1804c887ff3d1804c88 /* src/GuMetaData.cpp */,
- FFFDd1804cf07ff3d1804cf0 /* src/GuOverlapTests.cpp */,
- FFFDd1804d587ff3d1804d58 /* src/GuRaycastTests.cpp */,
- FFFDd1804dc07ff3d1804dc0 /* src/GuSerialize.cpp */,
- FFFDd1804e287ff3d1804e28 /* src/GuSweepMTD.cpp */,
- FFFDd1804e907ff3d1804e90 /* src/GuSweepSharedTests.cpp */,
- FFFDd1804ef87ff3d1804ef8 /* src/GuSweepTests.cpp */,
- FFFDd1804f607ff3d1804f60 /* src/contact/GuContactBoxBox.cpp */,
- FFFDd1804fc87ff3d1804fc8 /* src/contact/GuContactCapsuleBox.cpp */,
- FFFDd18050307ff3d1805030 /* src/contact/GuContactCapsuleCapsule.cpp */,
- FFFDd18050987ff3d1805098 /* src/contact/GuContactCapsuleConvex.cpp */,
- FFFDd18051007ff3d1805100 /* src/contact/GuContactCapsuleMesh.cpp */,
- FFFDd18051687ff3d1805168 /* src/contact/GuContactConvexConvex.cpp */,
- FFFDd18051d07ff3d18051d0 /* src/contact/GuContactConvexMesh.cpp */,
- FFFDd18052387ff3d1805238 /* src/contact/GuContactPlaneBox.cpp */,
- FFFDd18052a07ff3d18052a0 /* src/contact/GuContactPlaneCapsule.cpp */,
- FFFDd18053087ff3d1805308 /* src/contact/GuContactPlaneConvex.cpp */,
- FFFDd18053707ff3d1805370 /* src/contact/GuContactPolygonPolygon.cpp */,
- FFFDd18053d87ff3d18053d8 /* src/contact/GuContactSphereBox.cpp */,
- FFFDd18054407ff3d1805440 /* src/contact/GuContactSphereCapsule.cpp */,
- FFFDd18054a87ff3d18054a8 /* src/contact/GuContactSphereMesh.cpp */,
- FFFDd18055107ff3d1805510 /* src/contact/GuContactSpherePlane.cpp */,
- FFFDd18055787ff3d1805578 /* src/contact/GuContactSphereSphere.cpp */,
- FFFDd18055e07ff3d18055e0 /* src/contact/GuFeatureCode.cpp */,
- FFFDd18056487ff3d1805648 /* src/contact/GuLegacyContactBoxHeightField.cpp */,
- FFFDd18056b07ff3d18056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */,
- FFFDd18057187ff3d1805718 /* src/contact/GuLegacyContactConvexHeightField.cpp */,
- FFFDd18057807ff3d1805780 /* src/contact/GuLegacyContactSphereHeightField.cpp */,
- FFFDd18057e87ff3d18057e8 /* src/common/GuBarycentricCoordinates.cpp */,
- FFFDd18058507ff3d1805850 /* src/common/GuSeparatingAxes.cpp */,
- FFFDd18058b87ff3d18058b8 /* src/convex/GuBigConvexData.cpp */,
- FFFDd18059207ff3d1805920 /* src/convex/GuConvexHelper.cpp */,
- FFFDd18059887ff3d1805988 /* src/convex/GuConvexMesh.cpp */,
- FFFDd18059f07ff3d18059f0 /* src/convex/GuConvexSupportTable.cpp */,
- FFFDd1805a587ff3d1805a58 /* src/convex/GuConvexUtilsInternal.cpp */,
- FFFDd1805ac07ff3d1805ac0 /* src/convex/GuHillClimbing.cpp */,
- FFFDd1805b287ff3d1805b28 /* src/convex/GuShapeConvex.cpp */,
- FFFDd1805b907ff3d1805b90 /* src/distance/GuDistancePointBox.cpp */,
- FFFDd1805bf87ff3d1805bf8 /* src/distance/GuDistancePointTriangle.cpp */,
- FFFDd1805c607ff3d1805c60 /* src/distance/GuDistanceSegmentBox.cpp */,
- FFFDd1805cc87ff3d1805cc8 /* src/distance/GuDistanceSegmentSegment.cpp */,
- FFFDd1805d307ff3d1805d30 /* src/distance/GuDistanceSegmentTriangle.cpp */,
- FFFDd1805d987ff3d1805d98 /* src/sweep/GuSweepBoxBox.cpp */,
- FFFDd1805e007ff3d1805e00 /* src/sweep/GuSweepBoxSphere.cpp */,
- FFFDd1805e687ff3d1805e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */,
- FFFDd1805ed07ff3d1805ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */,
- FFFDd1805f387ff3d1805f38 /* src/sweep/GuSweepCapsuleBox.cpp */,
- FFFDd1805fa07ff3d1805fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */,
- FFFDd18060087ff3d1806008 /* src/sweep/GuSweepCapsuleTriangle.cpp */,
- FFFDd18060707ff3d1806070 /* src/sweep/GuSweepSphereCapsule.cpp */,
- FFFDd18060d87ff3d18060d8 /* src/sweep/GuSweepSphereSphere.cpp */,
- FFFDd18061407ff3d1806140 /* src/sweep/GuSweepSphereTriangle.cpp */,
- FFFDd18061a87ff3d18061a8 /* src/sweep/GuSweepTriangleUtils.cpp */,
- FFFDd18062107ff3d1806210 /* src/gjk/GuEPA.cpp */,
- FFFDd18062787ff3d1806278 /* src/gjk/GuGJKSimplex.cpp */,
- FFFDd18062e07ff3d18062e0 /* src/gjk/GuGJKTest.cpp */,
- FFFDd18063487ff3d1806348 /* src/intersection/GuIntersectionBoxBox.cpp */,
- FFFDd18063b07ff3d18063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */,
- FFFDd18064187ff3d1806418 /* src/intersection/GuIntersectionEdgeEdge.cpp */,
- FFFDd18064807ff3d1806480 /* src/intersection/GuIntersectionRayBox.cpp */,
- FFFDd18064e87ff3d18064e8 /* src/intersection/GuIntersectionRayCapsule.cpp */,
- FFFDd18065507ff3d1806550 /* src/intersection/GuIntersectionRaySphere.cpp */,
- FFFDd18065b87ff3d18065b8 /* src/intersection/GuIntersectionSphereBox.cpp */,
- FFFDd18066207ff3d1806620 /* src/intersection/GuIntersectionTriangleBox.cpp */,
- FFFDd18066887ff3d1806688 /* src/mesh/GuBV32.cpp */,
- FFFDd18066f07ff3d18066f0 /* src/mesh/GuBV32Build.cpp */,
- FFFDd18067587ff3d1806758 /* src/mesh/GuBV4.cpp */,
- FFFDd18067c07ff3d18067c0 /* src/mesh/GuBV4Build.cpp */,
- FFFDd18068287ff3d1806828 /* src/mesh/GuBV4_AABBSweep.cpp */,
- FFFDd18068907ff3d1806890 /* src/mesh/GuBV4_BoxOverlap.cpp */,
- FFFDd18068f87ff3d18068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */,
- FFFDd18069607ff3d1806960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */,
- FFFDd18069c87ff3d18069c8 /* src/mesh/GuBV4_OBBSweep.cpp */,
- FFFDd1806a307ff3d1806a30 /* src/mesh/GuBV4_Raycast.cpp */,
- FFFDd1806a987ff3d1806a98 /* src/mesh/GuBV4_SphereOverlap.cpp */,
- FFFDd1806b007ff3d1806b00 /* src/mesh/GuBV4_SphereSweep.cpp */,
- FFFDd1806b687ff3d1806b68 /* src/mesh/GuMeshQuery.cpp */,
- FFFDd1806bd07ff3d1806bd0 /* src/mesh/GuMidphaseBV4.cpp */,
- FFFDd1806c387ff3d1806c38 /* src/mesh/GuMidphaseRTree.cpp */,
- FFFDd1806ca07ff3d1806ca0 /* src/mesh/GuOverlapTestsMesh.cpp */,
- FFFDd1806d087ff3d1806d08 /* src/mesh/GuRTree.cpp */,
- FFFDd1806d707ff3d1806d70 /* src/mesh/GuRTreeQueries.cpp */,
- FFFDd1806dd87ff3d1806dd8 /* src/mesh/GuSweepsMesh.cpp */,
- FFFDd1806e407ff3d1806e40 /* src/mesh/GuTriangleMesh.cpp */,
- FFFDd1806ea87ff3d1806ea8 /* src/mesh/GuTriangleMeshBV4.cpp */,
- FFFDd1806f107ff3d1806f10 /* src/mesh/GuTriangleMeshRTree.cpp */,
- FFFDd1806f787ff3d1806f78 /* src/hf/GuHeightField.cpp */,
- FFFDd1806fe07ff3d1806fe0 /* src/hf/GuHeightFieldUtil.cpp */,
- FFFDd18070487ff3d1807048 /* src/hf/GuOverlapTestsHF.cpp */,
- FFFDd18070b07ff3d18070b0 /* src/hf/GuSweepsHF.cpp */,
- FFFDd18071187ff3d1807118 /* src/pcm/GuPCMContactBoxBox.cpp */,
- FFFDd18071807ff3d1807180 /* src/pcm/GuPCMContactBoxConvex.cpp */,
- FFFDd18071e87ff3d18071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */,
- FFFDd18072507ff3d1807250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */,
- FFFDd18072b87ff3d18072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */,
- FFFDd18073207ff3d1807320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */,
- FFFDd18073887ff3d1807388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */,
- FFFDd18073f07ff3d18073f0 /* src/pcm/GuPCMContactConvexCommon.cpp */,
- FFFDd18074587ff3d1807458 /* src/pcm/GuPCMContactConvexConvex.cpp */,
- FFFDd18074c07ff3d18074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */,
- FFFDd18075287ff3d1807528 /* src/pcm/GuPCMContactConvexMesh.cpp */,
- FFFDd18075907ff3d1807590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */,
- FFFDd18075f87ff3d18075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */,
- FFFDd18076607ff3d1807660 /* src/pcm/GuPCMContactPlaneBox.cpp */,
- FFFDd18076c87ff3d18076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */,
- FFFDd18077307ff3d1807730 /* src/pcm/GuPCMContactPlaneConvex.cpp */,
- FFFDd18077987ff3d1807798 /* src/pcm/GuPCMContactSphereBox.cpp */,
- FFFDd18078007ff3d1807800 /* src/pcm/GuPCMContactSphereCapsule.cpp */,
- FFFDd18078687ff3d1807868 /* src/pcm/GuPCMContactSphereConvex.cpp */,
- FFFDd18078d07ff3d18078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */,
- FFFDd18079387ff3d1807938 /* src/pcm/GuPCMContactSphereMesh.cpp */,
- FFFDd18079a07ff3d18079a0 /* src/pcm/GuPCMContactSpherePlane.cpp */,
- FFFDd1807a087ff3d1807a08 /* src/pcm/GuPCMContactSphereSphere.cpp */,
- FFFDd1807a707ff3d1807a70 /* src/pcm/GuPCMShapeConvex.cpp */,
- FFFDd1807ad87ff3d1807ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */,
- FFFDd1807b407ff3d1807b40 /* src/pcm/GuPersistentContactManifold.cpp */,
- FFFDd1807ba87ff3d1807ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */,
- FFFDd1807c107ff3d1807c10 /* src/ccd/GuCCDSweepPrimitives.cpp */,
+ FFFD3b8042007f8d3b804200 /* headers/GuAxes.h */,
+ FFFD3b8042687f8d3b804268 /* headers/GuBox.h */,
+ FFFD3b8042d07f8d3b8042d0 /* headers/GuDistanceSegmentBox.h */,
+ FFFD3b8043387f8d3b804338 /* headers/GuDistanceSegmentSegment.h */,
+ FFFD3b8043a07f8d3b8043a0 /* headers/GuIntersectionBoxBox.h */,
+ FFFD3b8044087f8d3b804408 /* headers/GuIntersectionTriangleBox.h */,
+ FFFD3b8044707f8d3b804470 /* headers/GuRaycastTests.h */,
+ FFFD3b8044d87f8d3b8044d8 /* headers/GuSIMDHelpers.h */,
+ FFFD3b8045407f8d3b804540 /* headers/GuSegment.h */,
+ FFFD3b8045a87f8d3b8045a8 /* ../../Include/GeomUtils */,
+ FFFD3b8046107f8d3b804610 /* src/GuBounds.h */,
+ FFFD3b8046787f8d3b804678 /* src/GuCapsule.h */,
+ FFFD3b8046e07f8d3b8046e0 /* src/GuCenterExtents.h */,
+ FFFD3b8047487f8d3b804748 /* src/GuGeometryUnion.h */,
+ FFFD3b8047b07f8d3b8047b0 /* src/GuInternal.h */,
+ FFFD3b8048187f8d3b804818 /* src/GuMTD.h */,
+ FFFD3b8048807f8d3b804880 /* src/GuMeshFactory.h */,
+ FFFD3b8048e87f8d3b8048e8 /* src/GuOverlapTests.h */,
+ FFFD3b8049507f8d3b804950 /* src/GuSerialize.h */,
+ FFFD3b8049b87f8d3b8049b8 /* src/GuSphere.h */,
+ FFFD3b804a207f8d3b804a20 /* src/GuSweepMTD.h */,
+ FFFD3b804a887f8d3b804a88 /* src/GuSweepSharedTests.h */,
+ FFFD3b804af07f8d3b804af0 /* src/GuSweepTests.h */,
+ FFFD3b804b587f8d3b804b58 /* src/contact/GuContactMethodImpl.h */,
+ FFFD3b804bc07f8d3b804bc0 /* src/contact/GuContactPolygonPolygon.h */,
+ FFFD3b804c287f8d3b804c28 /* src/contact/GuFeatureCode.h */,
+ FFFD3b804c907f8d3b804c90 /* src/contact/GuLegacyTraceLineCallback.h */,
+ FFFD3b804cf87f8d3b804cf8 /* src/common/GuBarycentricCoordinates.h */,
+ FFFD3b804d607f8d3b804d60 /* src/common/GuBoxConversion.h */,
+ FFFD3b804dc87f8d3b804dc8 /* src/common/GuEdgeCache.h */,
+ FFFD3b804e307f8d3b804e30 /* src/common/GuEdgeListData.h */,
+ FFFD3b804e987f8d3b804e98 /* src/common/GuSeparatingAxes.h */,
+ FFFD3b804f007f8d3b804f00 /* src/convex/GuBigConvexData.h */,
+ FFFD3b804f687f8d3b804f68 /* src/convex/GuBigConvexData2.h */,
+ FFFD3b804fd07f8d3b804fd0 /* src/convex/GuConvexEdgeFlags.h */,
+ FFFD3b8050387f8d3b805038 /* src/convex/GuConvexHelper.h */,
+ FFFD3b8050a07f8d3b8050a0 /* src/convex/GuConvexMesh.h */,
+ FFFD3b8051087f8d3b805108 /* src/convex/GuConvexMeshData.h */,
+ FFFD3b8051707f8d3b805170 /* src/convex/GuConvexSupportTable.h */,
+ FFFD3b8051d87f8d3b8051d8 /* src/convex/GuConvexUtilsInternal.h */,
+ FFFD3b8052407f8d3b805240 /* src/convex/GuCubeIndex.h */,
+ FFFD3b8052a87f8d3b8052a8 /* src/convex/GuHillClimbing.h */,
+ FFFD3b8053107f8d3b805310 /* src/convex/GuShapeConvex.h */,
+ FFFD3b8053787f8d3b805378 /* src/distance/GuDistancePointBox.h */,
+ FFFD3b8053e07f8d3b8053e0 /* src/distance/GuDistancePointSegment.h */,
+ FFFD3b8054487f8d3b805448 /* src/distance/GuDistancePointTriangle.h */,
+ FFFD3b8054b07f8d3b8054b0 /* src/distance/GuDistancePointTriangleSIMD.h */,
+ FFFD3b8055187f8d3b805518 /* src/distance/GuDistanceSegmentSegmentSIMD.h */,
+ FFFD3b8055807f8d3b805580 /* src/distance/GuDistanceSegmentTriangle.h */,
+ FFFD3b8055e87f8d3b8055e8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */,
+ FFFD3b8056507f8d3b805650 /* src/sweep/GuSweepBoxBox.h */,
+ FFFD3b8056b87f8d3b8056b8 /* src/sweep/GuSweepBoxSphere.h */,
+ FFFD3b8057207f8d3b805720 /* src/sweep/GuSweepBoxTriangle_FeatureBased.h */,
+ FFFD3b8057887f8d3b805788 /* src/sweep/GuSweepBoxTriangle_SAT.h */,
+ FFFD3b8057f07f8d3b8057f0 /* src/sweep/GuSweepCapsuleBox.h */,
+ FFFD3b8058587f8d3b805858 /* src/sweep/GuSweepCapsuleCapsule.h */,
+ FFFD3b8058c07f8d3b8058c0 /* src/sweep/GuSweepCapsuleTriangle.h */,
+ FFFD3b8059287f8d3b805928 /* src/sweep/GuSweepSphereCapsule.h */,
+ FFFD3b8059907f8d3b805990 /* src/sweep/GuSweepSphereSphere.h */,
+ FFFD3b8059f87f8d3b8059f8 /* src/sweep/GuSweepSphereTriangle.h */,
+ FFFD3b805a607f8d3b805a60 /* src/sweep/GuSweepTriangleUtils.h */,
+ FFFD3b805ac87f8d3b805ac8 /* src/gjk/GuEPA.h */,
+ FFFD3b805b307f8d3b805b30 /* src/gjk/GuEPAFacet.h */,
+ FFFD3b805b987f8d3b805b98 /* src/gjk/GuGJK.h */,
+ FFFD3b805c007f8d3b805c00 /* src/gjk/GuGJKPenetration.h */,
+ FFFD3b805c687f8d3b805c68 /* src/gjk/GuGJKRaycast.h */,
+ FFFD3b805cd07f8d3b805cd0 /* src/gjk/GuGJKSimplex.h */,
+ FFFD3b805d387f8d3b805d38 /* src/gjk/GuGJKTest.h */,
+ FFFD3b805da07f8d3b805da0 /* src/gjk/GuGJKType.h */,
+ FFFD3b805e087f8d3b805e08 /* src/gjk/GuGJKUtil.h */,
+ FFFD3b805e707f8d3b805e70 /* src/gjk/GuVecBox.h */,
+ FFFD3b805ed87f8d3b805ed8 /* src/gjk/GuVecCapsule.h */,
+ FFFD3b805f407f8d3b805f40 /* src/gjk/GuVecConvex.h */,
+ FFFD3b805fa87f8d3b805fa8 /* src/gjk/GuVecConvexHull.h */,
+ FFFD3b8060107f8d3b806010 /* src/gjk/GuVecConvexHullNoScale.h */,
+ FFFD3b8060787f8d3b806078 /* src/gjk/GuVecPlane.h */,
+ FFFD3b8060e07f8d3b8060e0 /* src/gjk/GuVecShrunkBox.h */,
+ FFFD3b8061487f8d3b806148 /* src/gjk/GuVecShrunkConvexHull.h */,
+ FFFD3b8061b07f8d3b8061b0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */,
+ FFFD3b8062187f8d3b806218 /* src/gjk/GuVecSphere.h */,
+ FFFD3b8062807f8d3b806280 /* src/gjk/GuVecTriangle.h */,
+ FFFD3b8062e87f8d3b8062e8 /* src/intersection/GuIntersectionCapsuleTriangle.h */,
+ FFFD3b8063507f8d3b806350 /* src/intersection/GuIntersectionEdgeEdge.h */,
+ FFFD3b8063b87f8d3b8063b8 /* src/intersection/GuIntersectionRay.h */,
+ FFFD3b8064207f8d3b806420 /* src/intersection/GuIntersectionRayBox.h */,
+ FFFD3b8064887f8d3b806488 /* src/intersection/GuIntersectionRayBoxSIMD.h */,
+ FFFD3b8064f07f8d3b8064f0 /* src/intersection/GuIntersectionRayCapsule.h */,
+ FFFD3b8065587f8d3b806558 /* src/intersection/GuIntersectionRayPlane.h */,
+ FFFD3b8065c07f8d3b8065c0 /* src/intersection/GuIntersectionRaySphere.h */,
+ FFFD3b8066287f8d3b806628 /* src/intersection/GuIntersectionRayTriangle.h */,
+ FFFD3b8066907f8d3b806690 /* src/intersection/GuIntersectionSphereBox.h */,
+ FFFD3b8066f87f8d3b8066f8 /* src/mesh/GuBV32.h */,
+ FFFD3b8067607f8d3b806760 /* src/mesh/GuBV32Build.h */,
+ FFFD3b8067c87f8d3b8067c8 /* src/mesh/GuBV4.h */,
+ FFFD3b8068307f8d3b806830 /* src/mesh/GuBV4Build.h */,
+ FFFD3b8068987f8d3b806898 /* src/mesh/GuBV4Settings.h */,
+ FFFD3b8069007f8d3b806900 /* src/mesh/GuBV4_AABBAABBSweepTest.h */,
+ FFFD3b8069687f8d3b806968 /* src/mesh/GuBV4_BoxBoxOverlapTest.h */,
+ FFFD3b8069d07f8d3b8069d0 /* src/mesh/GuBV4_BoxOverlap_Internal.h */,
+ FFFD3b806a387f8d3b806a38 /* src/mesh/GuBV4_BoxSweep_Internal.h */,
+ FFFD3b806aa07f8d3b806aa0 /* src/mesh/GuBV4_BoxSweep_Params.h */,
+ FFFD3b806b087f8d3b806b08 /* src/mesh/GuBV4_CapsuleSweep_Internal.h */,
+ FFFD3b806b707f8d3b806b70 /* src/mesh/GuBV4_Common.h */,
+ FFFD3b806bd87f8d3b806bd8 /* src/mesh/GuBV4_Internal.h */,
+ FFFD3b806c407f8d3b806c40 /* src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h */,
+ FFFD3b806ca87f8d3b806ca8 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h */,
+ FFFD3b806d107f8d3b806d10 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h */,
+ FFFD3b806d787f8d3b806d78 /* src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h */,
+ FFFD3b806de07f8d3b806de0 /* src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h */,
+ FFFD3b806e487f8d3b806e48 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h */,
+ FFFD3b806eb07f8d3b806eb0 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h */,
+ FFFD3b806f187f8d3b806f18 /* src/mesh/GuBV4_Slabs.h */,
+ FFFD3b806f807f8d3b806f80 /* src/mesh/GuBV4_Slabs_KajiyaNoOrder.h */,
+ FFFD3b806fe87f8d3b806fe8 /* src/mesh/GuBV4_Slabs_KajiyaOrdered.h */,
+ FFFD3b8070507f8d3b807050 /* src/mesh/GuBV4_Slabs_SwizzledNoOrder.h */,
+ FFFD3b8070b87f8d3b8070b8 /* src/mesh/GuBV4_Slabs_SwizzledOrdered.h */,
+ FFFD3b8071207f8d3b807120 /* src/mesh/GuBVConstants.h */,
+ FFFD3b8071887f8d3b807188 /* src/mesh/GuMeshData.h */,
+ FFFD3b8071f07f8d3b8071f0 /* src/mesh/GuMidphaseInterface.h */,
+ FFFD3b8072587f8d3b807258 /* src/mesh/GuRTree.h */,
+ FFFD3b8072c07f8d3b8072c0 /* src/mesh/GuSweepConvexTri.h */,
+ FFFD3b8073287f8d3b807328 /* src/mesh/GuSweepMesh.h */,
+ FFFD3b8073907f8d3b807390 /* src/mesh/GuTriangle32.h */,
+ FFFD3b8073f87f8d3b8073f8 /* src/mesh/GuTriangleCache.h */,
+ FFFD3b8074607f8d3b807460 /* src/mesh/GuTriangleMesh.h */,
+ FFFD3b8074c87f8d3b8074c8 /* src/mesh/GuTriangleMeshBV4.h */,
+ FFFD3b8075307f8d3b807530 /* src/mesh/GuTriangleMeshRTree.h */,
+ FFFD3b8075987f8d3b807598 /* src/mesh/GuTriangleVertexPointers.h */,
+ FFFD3b8076007f8d3b807600 /* src/hf/GuEntityReport.h */,
+ FFFD3b8076687f8d3b807668 /* src/hf/GuHeightField.h */,
+ FFFD3b8076d07f8d3b8076d0 /* src/hf/GuHeightFieldData.h */,
+ FFFD3b8077387f8d3b807738 /* src/hf/GuHeightFieldUtil.h */,
+ FFFD3b8077a07f8d3b8077a0 /* src/pcm/GuPCMContactConvexCommon.h */,
+ FFFD3b8078087f8d3b807808 /* src/pcm/GuPCMContactGen.h */,
+ FFFD3b8078707f8d3b807870 /* src/pcm/GuPCMContactGenUtil.h */,
+ FFFD3b8078d87f8d3b8078d8 /* src/pcm/GuPCMContactMeshCallback.h */,
+ FFFD3b8079407f8d3b807940 /* src/pcm/GuPCMShapeConvex.h */,
+ FFFD3b8079a87f8d3b8079a8 /* src/pcm/GuPCMTriangleContactGen.h */,
+ FFFD3b807a107f8d3b807a10 /* src/pcm/GuPersistentContactManifold.h */,
+ FFFD3b807a787f8d3b807a78 /* src/ccd/GuCCDSweepConvexMesh.h */,
+ FFFD3b807ae07f8d3b807ae0 /* src/GuBounds.cpp */,
+ FFFD3b807b487f8d3b807b48 /* src/GuBox.cpp */,
+ FFFD3b807bb07f8d3b807bb0 /* src/GuCCTSweepTests.cpp */,
+ FFFD3b807c187f8d3b807c18 /* src/GuCapsule.cpp */,
+ FFFD3b807c807f8d3b807c80 /* src/GuGeometryQuery.cpp */,
+ FFFD3b807ce87f8d3b807ce8 /* src/GuGeometryUnion.cpp */,
+ FFFD3b807d507f8d3b807d50 /* src/GuInternal.cpp */,
+ FFFD3b807db87f8d3b807db8 /* src/GuMTD.cpp */,
+ FFFD3b807e207f8d3b807e20 /* src/GuMeshFactory.cpp */,
+ FFFD3b807e887f8d3b807e88 /* src/GuMetaData.cpp */,
+ FFFD3b807ef07f8d3b807ef0 /* src/GuOverlapTests.cpp */,
+ FFFD3b807f587f8d3b807f58 /* src/GuRaycastTests.cpp */,
+ FFFD3b807fc07f8d3b807fc0 /* src/GuSerialize.cpp */,
+ FFFD3b8080287f8d3b808028 /* src/GuSweepMTD.cpp */,
+ FFFD3b8080907f8d3b808090 /* src/GuSweepSharedTests.cpp */,
+ FFFD3b8080f87f8d3b8080f8 /* src/GuSweepTests.cpp */,
+ FFFD3b8081607f8d3b808160 /* src/contact/GuContactBoxBox.cpp */,
+ FFFD3b8081c87f8d3b8081c8 /* src/contact/GuContactCapsuleBox.cpp */,
+ FFFD3b8082307f8d3b808230 /* src/contact/GuContactCapsuleCapsule.cpp */,
+ FFFD3b8082987f8d3b808298 /* src/contact/GuContactCapsuleConvex.cpp */,
+ FFFD3b8083007f8d3b808300 /* src/contact/GuContactCapsuleMesh.cpp */,
+ FFFD3b8083687f8d3b808368 /* src/contact/GuContactConvexConvex.cpp */,
+ FFFD3b8083d07f8d3b8083d0 /* src/contact/GuContactConvexMesh.cpp */,
+ FFFD3b8084387f8d3b808438 /* src/contact/GuContactPlaneBox.cpp */,
+ FFFD3b8084a07f8d3b8084a0 /* src/contact/GuContactPlaneCapsule.cpp */,
+ FFFD3b8085087f8d3b808508 /* src/contact/GuContactPlaneConvex.cpp */,
+ FFFD3b8085707f8d3b808570 /* src/contact/GuContactPolygonPolygon.cpp */,
+ FFFD3b8085d87f8d3b8085d8 /* src/contact/GuContactSphereBox.cpp */,
+ FFFD3b8086407f8d3b808640 /* src/contact/GuContactSphereCapsule.cpp */,
+ FFFD3b8086a87f8d3b8086a8 /* src/contact/GuContactSphereMesh.cpp */,
+ FFFD3b8087107f8d3b808710 /* src/contact/GuContactSpherePlane.cpp */,
+ FFFD3b8087787f8d3b808778 /* src/contact/GuContactSphereSphere.cpp */,
+ FFFD3b8087e07f8d3b8087e0 /* src/contact/GuFeatureCode.cpp */,
+ FFFD3b8088487f8d3b808848 /* src/contact/GuLegacyContactBoxHeightField.cpp */,
+ FFFD3b8088b07f8d3b8088b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */,
+ FFFD3b8089187f8d3b808918 /* src/contact/GuLegacyContactConvexHeightField.cpp */,
+ FFFD3b8089807f8d3b808980 /* src/contact/GuLegacyContactSphereHeightField.cpp */,
+ FFFD3b8089e87f8d3b8089e8 /* src/common/GuBarycentricCoordinates.cpp */,
+ FFFD3b808a507f8d3b808a50 /* src/common/GuSeparatingAxes.cpp */,
+ FFFD3b808ab87f8d3b808ab8 /* src/convex/GuBigConvexData.cpp */,
+ FFFD3b808b207f8d3b808b20 /* src/convex/GuConvexHelper.cpp */,
+ FFFD3b808b887f8d3b808b88 /* src/convex/GuConvexMesh.cpp */,
+ FFFD3b808bf07f8d3b808bf0 /* src/convex/GuConvexSupportTable.cpp */,
+ FFFD3b808c587f8d3b808c58 /* src/convex/GuConvexUtilsInternal.cpp */,
+ FFFD3b808cc07f8d3b808cc0 /* src/convex/GuHillClimbing.cpp */,
+ FFFD3b808d287f8d3b808d28 /* src/convex/GuShapeConvex.cpp */,
+ FFFD3b808d907f8d3b808d90 /* src/distance/GuDistancePointBox.cpp */,
+ FFFD3b808df87f8d3b808df8 /* src/distance/GuDistancePointTriangle.cpp */,
+ FFFD3b808e607f8d3b808e60 /* src/distance/GuDistanceSegmentBox.cpp */,
+ FFFD3b808ec87f8d3b808ec8 /* src/distance/GuDistanceSegmentSegment.cpp */,
+ FFFD3b808f307f8d3b808f30 /* src/distance/GuDistanceSegmentTriangle.cpp */,
+ FFFD3b808f987f8d3b808f98 /* src/sweep/GuSweepBoxBox.cpp */,
+ FFFD3b8090007f8d3b809000 /* src/sweep/GuSweepBoxSphere.cpp */,
+ FFFD3b8090687f8d3b809068 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */,
+ FFFD3b8090d07f8d3b8090d0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */,
+ FFFD3b8091387f8d3b809138 /* src/sweep/GuSweepCapsuleBox.cpp */,
+ FFFD3b8091a07f8d3b8091a0 /* src/sweep/GuSweepCapsuleCapsule.cpp */,
+ FFFD3b8092087f8d3b809208 /* src/sweep/GuSweepCapsuleTriangle.cpp */,
+ FFFD3b8092707f8d3b809270 /* src/sweep/GuSweepSphereCapsule.cpp */,
+ FFFD3b8092d87f8d3b8092d8 /* src/sweep/GuSweepSphereSphere.cpp */,
+ FFFD3b8093407f8d3b809340 /* src/sweep/GuSweepSphereTriangle.cpp */,
+ FFFD3b8093a87f8d3b8093a8 /* src/sweep/GuSweepTriangleUtils.cpp */,
+ FFFD3b8094107f8d3b809410 /* src/gjk/GuEPA.cpp */,
+ FFFD3b8094787f8d3b809478 /* src/gjk/GuGJKSimplex.cpp */,
+ FFFD3b8094e07f8d3b8094e0 /* src/gjk/GuGJKTest.cpp */,
+ FFFD3b8095487f8d3b809548 /* src/intersection/GuIntersectionBoxBox.cpp */,
+ FFFD3b8095b07f8d3b8095b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */,
+ FFFD3b8096187f8d3b809618 /* src/intersection/GuIntersectionEdgeEdge.cpp */,
+ FFFD3b8096807f8d3b809680 /* src/intersection/GuIntersectionRayBox.cpp */,
+ FFFD3b8096e87f8d3b8096e8 /* src/intersection/GuIntersectionRayCapsule.cpp */,
+ FFFD3b8097507f8d3b809750 /* src/intersection/GuIntersectionRaySphere.cpp */,
+ FFFD3b8097b87f8d3b8097b8 /* src/intersection/GuIntersectionSphereBox.cpp */,
+ FFFD3b8098207f8d3b809820 /* src/intersection/GuIntersectionTriangleBox.cpp */,
+ FFFD3b8098887f8d3b809888 /* src/mesh/GuBV32.cpp */,
+ FFFD3b8098f07f8d3b8098f0 /* src/mesh/GuBV32Build.cpp */,
+ FFFD3b8099587f8d3b809958 /* src/mesh/GuBV4.cpp */,
+ FFFD3b8099c07f8d3b8099c0 /* src/mesh/GuBV4Build.cpp */,
+ FFFD3b809a287f8d3b809a28 /* src/mesh/GuBV4_AABBSweep.cpp */,
+ FFFD3b809a907f8d3b809a90 /* src/mesh/GuBV4_BoxOverlap.cpp */,
+ FFFD3b809af87f8d3b809af8 /* src/mesh/GuBV4_CapsuleSweep.cpp */,
+ FFFD3b809b607f8d3b809b60 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */,
+ FFFD3b809bc87f8d3b809bc8 /* src/mesh/GuBV4_OBBSweep.cpp */,
+ FFFD3b809c307f8d3b809c30 /* src/mesh/GuBV4_Raycast.cpp */,
+ FFFD3b809c987f8d3b809c98 /* src/mesh/GuBV4_SphereOverlap.cpp */,
+ FFFD3b809d007f8d3b809d00 /* src/mesh/GuBV4_SphereSweep.cpp */,
+ FFFD3b809d687f8d3b809d68 /* src/mesh/GuMeshQuery.cpp */,
+ FFFD3b809dd07f8d3b809dd0 /* src/mesh/GuMidphaseBV4.cpp */,
+ FFFD3b809e387f8d3b809e38 /* src/mesh/GuMidphaseRTree.cpp */,
+ FFFD3b809ea07f8d3b809ea0 /* src/mesh/GuOverlapTestsMesh.cpp */,
+ FFFD3b809f087f8d3b809f08 /* src/mesh/GuRTree.cpp */,
+ FFFD3b809f707f8d3b809f70 /* src/mesh/GuRTreeQueries.cpp */,
+ FFFD3b809fd87f8d3b809fd8 /* src/mesh/GuSweepsMesh.cpp */,
+ FFFD3b80a0407f8d3b80a040 /* src/mesh/GuTriangleMesh.cpp */,
+ FFFD3b80a0a87f8d3b80a0a8 /* src/mesh/GuTriangleMeshBV4.cpp */,
+ FFFD3b80a1107f8d3b80a110 /* src/mesh/GuTriangleMeshRTree.cpp */,
+ FFFD3b80a1787f8d3b80a178 /* src/hf/GuHeightField.cpp */,
+ FFFD3b80a1e07f8d3b80a1e0 /* src/hf/GuHeightFieldUtil.cpp */,
+ FFFD3b80a2487f8d3b80a248 /* src/hf/GuOverlapTestsHF.cpp */,
+ FFFD3b80a2b07f8d3b80a2b0 /* src/hf/GuSweepsHF.cpp */,
+ FFFD3b80a3187f8d3b80a318 /* src/pcm/GuPCMContactBoxBox.cpp */,
+ FFFD3b80a3807f8d3b80a380 /* src/pcm/GuPCMContactBoxConvex.cpp */,
+ FFFD3b80a3e87f8d3b80a3e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */,
+ FFFD3b80a4507f8d3b80a450 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */,
+ FFFD3b80a4b87f8d3b80a4b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */,
+ FFFD3b80a5207f8d3b80a520 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */,
+ FFFD3b80a5887f8d3b80a588 /* src/pcm/GuPCMContactCapsuleMesh.cpp */,
+ FFFD3b80a5f07f8d3b80a5f0 /* src/pcm/GuPCMContactConvexCommon.cpp */,
+ FFFD3b80a6587f8d3b80a658 /* src/pcm/GuPCMContactConvexConvex.cpp */,
+ FFFD3b80a6c07f8d3b80a6c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */,
+ FFFD3b80a7287f8d3b80a728 /* src/pcm/GuPCMContactConvexMesh.cpp */,
+ FFFD3b80a7907f8d3b80a790 /* src/pcm/GuPCMContactGenBoxConvex.cpp */,
+ FFFD3b80a7f87f8d3b80a7f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */,
+ FFFD3b80a8607f8d3b80a860 /* src/pcm/GuPCMContactPlaneBox.cpp */,
+ FFFD3b80a8c87f8d3b80a8c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */,
+ FFFD3b80a9307f8d3b80a930 /* src/pcm/GuPCMContactPlaneConvex.cpp */,
+ FFFD3b80a9987f8d3b80a998 /* src/pcm/GuPCMContactSphereBox.cpp */,
+ FFFD3b80aa007f8d3b80aa00 /* src/pcm/GuPCMContactSphereCapsule.cpp */,
+ FFFD3b80aa687f8d3b80aa68 /* src/pcm/GuPCMContactSphereConvex.cpp */,
+ FFFD3b80aad07f8d3b80aad0 /* src/pcm/GuPCMContactSphereHeightField.cpp */,
+ FFFD3b80ab387f8d3b80ab38 /* src/pcm/GuPCMContactSphereMesh.cpp */,
+ FFFD3b80aba07f8d3b80aba0 /* src/pcm/GuPCMContactSpherePlane.cpp */,
+ FFFD3b80ac087f8d3b80ac08 /* src/pcm/GuPCMContactSphereSphere.cpp */,
+ FFFD3b80ac707f8d3b80ac70 /* src/pcm/GuPCMShapeConvex.cpp */,
+ FFFD3b80acd87f8d3b80acd8 /* src/pcm/GuPCMTriangleContactGen.cpp */,
+ FFFD3b80ad407f8d3b80ad40 /* src/pcm/GuPersistentContactManifold.cpp */,
+ FFFD3b80ada87f8d3b80ada8 /* src/ccd/GuCCDSweepConvexMesh.cpp */,
+ FFFD3b80ae107f8d3b80ae10 /* src/ccd/GuCCDSweepPrimitives.cpp */,
);
name = "geomutils";
sourceTree = SOURCE_ROOT;
};
- FFFBd108e7507ff3d108e750 /* PxFoundation */ = {
+ FFFB3c9892007f8d3c989200 /* PxFoundation */ = {
isa = PBXGroup;
children = (
- FFFBd108f0407ff3d108f040 /* include */,
- FFFBd108f0687ff3d108f068 /* src */,
+ FFFB3c9898a07f8d3c9898a0 /* include */,
+ FFFB3c9898c87f8d3c9898c8 /* src */,
);
name = "PxFoundation";
sourceTree = "<group>";
};
- FFFBd108f0407ff3d108f040 /* include */ = {
+ FFFB3c9898a07f8d3c9898a0 /* include */ = {
isa = PBXGroup;
children = (
- FFFDd09898007ff3d0989800 /* Px.h */,
- FFFDd09898687ff3d0989868 /* PxAllocatorCallback.h */,
- FFFDd09898d07ff3d09898d0 /* PxAssert.h */,
- FFFDd09899387ff3d0989938 /* PxBitAndData.h */,
- FFFDd09899a07ff3d09899a0 /* PxBounds3.h */,
- FFFDd0989a087ff3d0989a08 /* PxErrorCallback.h */,
- FFFDd0989a707ff3d0989a70 /* PxErrors.h */,
- FFFDd0989ad87ff3d0989ad8 /* PxFlags.h */,
- FFFDd0989b407ff3d0989b40 /* PxFoundation.h */,
- FFFDd0989ba87ff3d0989ba8 /* PxFoundationVersion.h */,
- FFFDd0989c107ff3d0989c10 /* PxIO.h */,
- FFFDd0989c787ff3d0989c78 /* PxIntrinsics.h */,
- FFFDd0989ce07ff3d0989ce0 /* PxMat33.h */,
- FFFDd0989d487ff3d0989d48 /* PxMat44.h */,
- FFFDd0989db07ff3d0989db0 /* PxMath.h */,
- FFFDd0989e187ff3d0989e18 /* PxMathUtils.h */,
- FFFDd0989e807ff3d0989e80 /* PxMemory.h */,
- FFFDd0989ee87ff3d0989ee8 /* PxPlane.h */,
- FFFDd0989f507ff3d0989f50 /* PxPreprocessor.h */,
- FFFDd0989fb87ff3d0989fb8 /* PxProfiler.h */,
- FFFDd098a0207ff3d098a020 /* PxQuat.h */,
- FFFDd098a0887ff3d098a088 /* PxSimpleTypes.h */,
- FFFDd098a0f07ff3d098a0f0 /* PxStrideIterator.h */,
- FFFDd098a1587ff3d098a158 /* PxTransform.h */,
- FFFDd098a1c07ff3d098a1c0 /* PxUnionCast.h */,
- FFFDd098a2287ff3d098a228 /* PxVec2.h */,
- FFFDd098a2907ff3d098a290 /* PxVec3.h */,
- FFFDd098a2f87ff3d098a2f8 /* PxVec4.h */,
- FFFDd098a3607ff3d098a360 /* unix/PxUnixIntrinsics.h */,
+ FFFD3c1876007f8d3c187600 /* Px.h */,
+ FFFD3c1876687f8d3c187668 /* PxAllocatorCallback.h */,
+ FFFD3c1876d07f8d3c1876d0 /* PxAssert.h */,
+ FFFD3c1877387f8d3c187738 /* PxBitAndData.h */,
+ FFFD3c1877a07f8d3c1877a0 /* PxBounds3.h */,
+ FFFD3c1878087f8d3c187808 /* PxErrorCallback.h */,
+ FFFD3c1878707f8d3c187870 /* PxErrors.h */,
+ FFFD3c1878d87f8d3c1878d8 /* PxFlags.h */,
+ FFFD3c1879407f8d3c187940 /* PxFoundation.h */,
+ FFFD3c1879a87f8d3c1879a8 /* PxFoundationVersion.h */,
+ FFFD3c187a107f8d3c187a10 /* PxIO.h */,
+ FFFD3c187a787f8d3c187a78 /* PxIntrinsics.h */,
+ FFFD3c187ae07f8d3c187ae0 /* PxMat33.h */,
+ FFFD3c187b487f8d3c187b48 /* PxMat44.h */,
+ FFFD3c187bb07f8d3c187bb0 /* PxMath.h */,
+ FFFD3c187c187f8d3c187c18 /* PxMathUtils.h */,
+ FFFD3c187c807f8d3c187c80 /* PxMemory.h */,
+ FFFD3c187ce87f8d3c187ce8 /* PxPlane.h */,
+ FFFD3c187d507f8d3c187d50 /* PxPreprocessor.h */,
+ FFFD3c187db87f8d3c187db8 /* PxProfiler.h */,
+ FFFD3c187e207f8d3c187e20 /* PxQuat.h */,
+ FFFD3c187e887f8d3c187e88 /* PxSimpleTypes.h */,
+ FFFD3c187ef07f8d3c187ef0 /* PxStrideIterator.h */,
+ FFFD3c187f587f8d3c187f58 /* PxTransform.h */,
+ FFFD3c187fc07f8d3c187fc0 /* PxUnionCast.h */,
+ FFFD3c1880287f8d3c188028 /* PxVec2.h */,
+ FFFD3c1880907f8d3c188090 /* PxVec3.h */,
+ FFFD3c1880f87f8d3c1880f8 /* PxVec4.h */,
+ FFFD3c1881607f8d3c188160 /* unix/PxUnixIntrinsics.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
- FFFBd108f0687ff3d108f068 /* src */ = {
+ FFFB3c9898c87f8d3c9898c8 /* src */ = {
isa = PBXGroup;
children = (
- FFFDd0993e007ff3d0993e00 /* include/Ps.h */,
- FFFDd0993e687ff3d0993e68 /* include/PsAlignedMalloc.h */,
- FFFDd0993ed07ff3d0993ed0 /* include/PsAlloca.h */,
- FFFDd0993f387ff3d0993f38 /* include/PsAllocator.h */,
- FFFDd0993fa07ff3d0993fa0 /* include/PsAoS.h */,
- FFFDd09940087ff3d0994008 /* include/PsArray.h */,
- FFFDd09940707ff3d0994070 /* include/PsAtomic.h */,
- FFFDd09940d87ff3d09940d8 /* include/PsBasicTemplates.h */,
- FFFDd09941407ff3d0994140 /* include/PsBitUtils.h */,
- FFFDd09941a87ff3d09941a8 /* include/PsBroadcast.h */,
- FFFDd09942107ff3d0994210 /* include/PsCpu.h */,
- FFFDd09942787ff3d0994278 /* include/PsFPU.h */,
- FFFDd09942e07ff3d09942e0 /* include/PsFoundation.h */,
- FFFDd09943487ff3d0994348 /* include/PsHash.h */,
- FFFDd09943b07ff3d09943b0 /* include/PsHashInternals.h */,
- FFFDd09944187ff3d0994418 /* include/PsHashMap.h */,
- FFFDd09944807ff3d0994480 /* include/PsHashSet.h */,
- FFFDd09944e87ff3d09944e8 /* include/PsInlineAllocator.h */,
- FFFDd09945507ff3d0994550 /* include/PsInlineAoS.h */,
- FFFDd09945b87ff3d09945b8 /* include/PsInlineArray.h */,
- FFFDd09946207ff3d0994620 /* include/PsIntrinsics.h */,
- FFFDd09946887ff3d0994688 /* include/PsMathUtils.h */,
- FFFDd09946f07ff3d09946f0 /* include/PsMutex.h */,
- FFFDd09947587ff3d0994758 /* include/PsPool.h */,
- FFFDd09947c07ff3d09947c0 /* include/PsSList.h */,
- FFFDd09948287ff3d0994828 /* include/PsSocket.h */,
- FFFDd09948907ff3d0994890 /* include/PsSort.h */,
- FFFDd09948f87ff3d09948f8 /* include/PsSortInternals.h */,
- FFFDd09949607ff3d0994960 /* include/PsString.h */,
- FFFDd09949c87ff3d09949c8 /* include/PsSync.h */,
- FFFDd0994a307ff3d0994a30 /* include/PsTempAllocator.h */,
- FFFDd0994a987ff3d0994a98 /* include/PsThread.h */,
- FFFDd0994b007ff3d0994b00 /* include/PsTime.h */,
- FFFDd0994b687ff3d0994b68 /* include/PsUserAllocated.h */,
- FFFDd0994bd07ff3d0994bd0 /* include/PsUtilities.h */,
- FFFDd0994c387ff3d0994c38 /* include/PsVecMath.h */,
- FFFDd0994ca07ff3d0994ca0 /* include/PsVecMathAoSScalar.h */,
- FFFDd0994d087ff3d0994d08 /* include/PsVecMathAoSScalarInline.h */,
- FFFDd0994d707ff3d0994d70 /* include/PsVecMathSSE.h */,
- FFFDd0994dd87ff3d0994dd8 /* include/PsVecMathUtilities.h */,
- FFFDd0994e407ff3d0994e40 /* include/PsVecQuat.h */,
- FFFDd0994ea87ff3d0994ea8 /* include/PsVecTransform.h */,
- FFFDd0994f107ff3d0994f10 /* include/unix/PsUnixAoS.h */,
- FFFDd0994f787ff3d0994f78 /* include/unix/PsUnixFPU.h */,
- FFFDd0994fe07ff3d0994fe0 /* include/unix/PsUnixInlineAoS.h */,
- FFFDd09950487ff3d0995048 /* include/unix/PsUnixIntrinsics.h */,
- FFFDd09950b07ff3d09950b0 /* include/unix/PsUnixTrigConstants.h */,
- FFFDd09951187ff3d0995118 /* src/PsAllocator.cpp */,
- FFFDd09951807ff3d0995180 /* src/PsAssert.cpp */,
- FFFDd09951e87ff3d09951e8 /* src/PsFoundation.cpp */,
- FFFDd09952507ff3d0995250 /* src/PsMathUtils.cpp */,
- FFFDd09952b87ff3d09952b8 /* src/PsString.cpp */,
- FFFDd09953207ff3d0995320 /* src/PsTempAllocator.cpp */,
- FFFDd09953887ff3d0995388 /* src/PsUtilities.cpp */,
- FFFDd09953f07ff3d09953f0 /* src/unix/PsUnixAtomic.cpp */,
- FFFDd09954587ff3d0995458 /* src/unix/PsUnixCpu.cpp */,
- FFFDd09954c07ff3d09954c0 /* src/unix/PsUnixFPU.cpp */,
- FFFDd09955287ff3d0995528 /* src/unix/PsUnixMutex.cpp */,
- FFFDd09955907ff3d0995590 /* src/unix/PsUnixPrintString.cpp */,
- FFFDd09955f87ff3d09955f8 /* src/unix/PsUnixSList.cpp */,
- FFFDd09956607ff3d0995660 /* src/unix/PsUnixSocket.cpp */,
- FFFDd09956c87ff3d09956c8 /* src/unix/PsUnixSync.cpp */,
- FFFDd09957307ff3d0995730 /* src/unix/PsUnixThread.cpp */,
- FFFDd09957987ff3d0995798 /* src/unix/PsUnixTime.cpp */,
+ FFFD3c191c007f8d3c191c00 /* include/Ps.h */,
+ FFFD3c191c687f8d3c191c68 /* include/PsAlignedMalloc.h */,
+ FFFD3c191cd07f8d3c191cd0 /* include/PsAlloca.h */,
+ FFFD3c191d387f8d3c191d38 /* include/PsAllocator.h */,
+ FFFD3c191da07f8d3c191da0 /* include/PsAoS.h */,
+ FFFD3c191e087f8d3c191e08 /* include/PsArray.h */,
+ FFFD3c191e707f8d3c191e70 /* include/PsAtomic.h */,
+ FFFD3c191ed87f8d3c191ed8 /* include/PsBasicTemplates.h */,
+ FFFD3c191f407f8d3c191f40 /* include/PsBitUtils.h */,
+ FFFD3c191fa87f8d3c191fa8 /* include/PsBroadcast.h */,
+ FFFD3c1920107f8d3c192010 /* include/PsCpu.h */,
+ FFFD3c1920787f8d3c192078 /* include/PsFPU.h */,
+ FFFD3c1920e07f8d3c1920e0 /* include/PsFoundation.h */,
+ FFFD3c1921487f8d3c192148 /* include/PsHash.h */,
+ FFFD3c1921b07f8d3c1921b0 /* include/PsHashInternals.h */,
+ FFFD3c1922187f8d3c192218 /* include/PsHashMap.h */,
+ FFFD3c1922807f8d3c192280 /* include/PsHashSet.h */,
+ FFFD3c1922e87f8d3c1922e8 /* include/PsInlineAllocator.h */,
+ FFFD3c1923507f8d3c192350 /* include/PsInlineAoS.h */,
+ FFFD3c1923b87f8d3c1923b8 /* include/PsInlineArray.h */,
+ FFFD3c1924207f8d3c192420 /* include/PsIntrinsics.h */,
+ FFFD3c1924887f8d3c192488 /* include/PsMathUtils.h */,
+ FFFD3c1924f07f8d3c1924f0 /* include/PsMutex.h */,
+ FFFD3c1925587f8d3c192558 /* include/PsPool.h */,
+ FFFD3c1925c07f8d3c1925c0 /* include/PsSList.h */,
+ FFFD3c1926287f8d3c192628 /* include/PsSocket.h */,
+ FFFD3c1926907f8d3c192690 /* include/PsSort.h */,
+ FFFD3c1926f87f8d3c1926f8 /* include/PsSortInternals.h */,
+ FFFD3c1927607f8d3c192760 /* include/PsString.h */,
+ FFFD3c1927c87f8d3c1927c8 /* include/PsSync.h */,
+ FFFD3c1928307f8d3c192830 /* include/PsTempAllocator.h */,
+ FFFD3c1928987f8d3c192898 /* include/PsThread.h */,
+ FFFD3c1929007f8d3c192900 /* include/PsTime.h */,
+ FFFD3c1929687f8d3c192968 /* include/PsUserAllocated.h */,
+ FFFD3c1929d07f8d3c1929d0 /* include/PsUtilities.h */,
+ FFFD3c192a387f8d3c192a38 /* include/PsVecMath.h */,
+ FFFD3c192aa07f8d3c192aa0 /* include/PsVecMathAoSScalar.h */,
+ FFFD3c192b087f8d3c192b08 /* include/PsVecMathAoSScalarInline.h */,
+ FFFD3c192b707f8d3c192b70 /* include/PsVecMathSSE.h */,
+ FFFD3c192bd87f8d3c192bd8 /* include/PsVecMathUtilities.h */,
+ FFFD3c192c407f8d3c192c40 /* include/PsVecQuat.h */,
+ FFFD3c192ca87f8d3c192ca8 /* include/PsVecTransform.h */,
+ FFFD3c192d107f8d3c192d10 /* include/unix/PsUnixAoS.h */,
+ FFFD3c192d787f8d3c192d78 /* include/unix/PsUnixFPU.h */,
+ FFFD3c192de07f8d3c192de0 /* include/unix/PsUnixInlineAoS.h */,
+ FFFD3c192e487f8d3c192e48 /* include/unix/PsUnixIntrinsics.h */,
+ FFFD3c192eb07f8d3c192eb0 /* include/unix/PsUnixTrigConstants.h */,
+ FFFD3c192f187f8d3c192f18 /* src/PsAllocator.cpp */,
+ FFFD3c192f807f8d3c192f80 /* src/PsAssert.cpp */,
+ FFFD3c192fe87f8d3c192fe8 /* src/PsFoundation.cpp */,
+ FFFD3c1930507f8d3c193050 /* src/PsMathUtils.cpp */,
+ FFFD3c1930b87f8d3c1930b8 /* src/PsString.cpp */,
+ FFFD3c1931207f8d3c193120 /* src/PsTempAllocator.cpp */,
+ FFFD3c1931887f8d3c193188 /* src/PsUtilities.cpp */,
+ FFFD3c1931f07f8d3c1931f0 /* src/unix/PsUnixAtomic.cpp */,
+ FFFD3c1932587f8d3c193258 /* src/unix/PsUnixCpu.cpp */,
+ FFFD3c1932c07f8d3c1932c0 /* src/unix/PsUnixFPU.cpp */,
+ FFFD3c1933287f8d3c193328 /* src/unix/PsUnixMutex.cpp */,
+ FFFD3c1933907f8d3c193390 /* src/unix/PsUnixPrintString.cpp */,
+ FFFD3c1933f87f8d3c1933f8 /* src/unix/PsUnixSList.cpp */,
+ FFFD3c1934607f8d3c193460 /* src/unix/PsUnixSocket.cpp */,
+ FFFD3c1934c87f8d3c1934c8 /* src/unix/PsUnixSync.cpp */,
+ FFFD3c1935307f8d3c193530 /* src/unix/PsUnixThread.cpp */,
+ FFFD3c1935987f8d3c193598 /* src/unix/PsUnixTime.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
- FFFBd17098707ff3d1709870 /* PxPvdSDK */ = {
+ FFFB3cd0c6b07f8d3cd0c6b0 /* PxPvdSDK */ = {
isa = PBXGroup;
children = (
- FFFBd170c5f07ff3d170c5f0 /* include */,
- FFFBd170c6187ff3d170c618 /* src */,
+ FFFB3cd0a4d07f8d3cd0a4d0 /* include */,
+ FFFB3cd0a4f87f8d3cd0a4f8 /* src */,
);
name = "PxPvdSDK";
sourceTree = "<group>";
};
- FFFBd170c5f07ff3d170c5f0 /* include */ = {
+ FFFB3cd0a4d07f8d3cd0a4d0 /* include */ = {
isa = PBXGroup;
children = (
- FFFDd170ccc07ff3d170ccc0 /* PxPvd.h */,
- FFFDd170cd287ff3d170cd28 /* PxPvdTransport.h */,
+ FFFD3cd08ea07f8d3cd08ea0 /* PxPvd.h */,
+ FFFD3cd08f087f8d3cd08f08 /* PxPvdTransport.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
- FFFBd170c6187ff3d170c618 /* src */ = {
+ FFFB3cd0a4f87f8d3cd0a4f8 /* src */ = {
isa = PBXGroup;
children = (
- FFFDd200f2007ff3d200f200 /* include/PsPvd.h */,
- FFFDd200f2687ff3d200f268 /* include/PxProfileAllocatorWrapper.h */,
- FFFDd200f2d07ff3d200f2d0 /* include/PxPvdClient.h */,
- FFFDd200f3387ff3d200f338 /* include/PxPvdDataStream.h */,
- FFFDd200f3a07ff3d200f3a0 /* include/PxPvdDataStreamHelpers.h */,
- FFFDd200f4087ff3d200f408 /* include/PxPvdErrorCodes.h */,
- FFFDd200f4707ff3d200f470 /* include/PxPvdObjectModelBaseTypes.h */,
- FFFDd200f4d87ff3d200f4d8 /* include/PxPvdRenderBuffer.h */,
- FFFDd200f5407ff3d200f540 /* include/PxPvdUserRenderer.h */,
- FFFDd200f5a87ff3d200f5a8 /* src/PxProfileEventImpl.cpp */,
- FFFDd200f6107ff3d200f610 /* src/PxPvd.cpp */,
- FFFDd200f6787ff3d200f678 /* src/PxPvdDataStream.cpp */,
- FFFDd200f6e07ff3d200f6e0 /* src/PxPvdDefaultFileTransport.cpp */,
- FFFDd200f7487ff3d200f748 /* src/PxPvdDefaultSocketTransport.cpp */,
- FFFDd200f7b07ff3d200f7b0 /* src/PxPvdImpl.cpp */,
- FFFDd200f8187ff3d200f818 /* src/PxPvdMemClient.cpp */,
- FFFDd200f8807ff3d200f880 /* src/PxPvdObjectModelMetaData.cpp */,
- FFFDd200f8e87ff3d200f8e8 /* src/PxPvdObjectRegistrar.cpp */,
- FFFDd200f9507ff3d200f950 /* src/PxPvdProfileZoneClient.cpp */,
- FFFDd200f9b87ff3d200f9b8 /* src/PxPvdUserRenderer.cpp */,
- FFFDd200fa207ff3d200fa20 /* src/PxProfileBase.h */,
- FFFDd200fa887ff3d200fa88 /* src/PxProfileCompileTimeEventFilter.h */,
- FFFDd200faf07ff3d200faf0 /* src/PxProfileContextProvider.h */,
- FFFDd200fb587ff3d200fb58 /* src/PxProfileContextProviderImpl.h */,
- FFFDd200fbc07ff3d200fbc0 /* src/PxProfileDataBuffer.h */,
- FFFDd200fc287ff3d200fc28 /* src/PxProfileDataParsing.h */,
- FFFDd200fc907ff3d200fc90 /* src/PxProfileEventBuffer.h */,
- FFFDd200fcf87ff3d200fcf8 /* src/PxProfileEventBufferAtomic.h */,
- FFFDd200fd607ff3d200fd60 /* src/PxProfileEventBufferClient.h */,
- FFFDd200fdc87ff3d200fdc8 /* src/PxProfileEventBufferClientManager.h */,
- FFFDd200fe307ff3d200fe30 /* src/PxProfileEventFilter.h */,
- FFFDd200fe987ff3d200fe98 /* src/PxProfileEventHandler.h */,
- FFFDd200ff007ff3d200ff00 /* src/PxProfileEventId.h */,
- FFFDd200ff687ff3d200ff68 /* src/PxProfileEventMutex.h */,
- FFFDd200ffd07ff3d200ffd0 /* src/PxProfileEventNames.h */,
- FFFDd20100387ff3d2010038 /* src/PxProfileEventParser.h */,
- FFFDd20100a07ff3d20100a0 /* src/PxProfileEventSender.h */,
- FFFDd20101087ff3d2010108 /* src/PxProfileEventSerialization.h */,
- FFFDd20101707ff3d2010170 /* src/PxProfileEventSystem.h */,
- FFFDd20101d87ff3d20101d8 /* src/PxProfileEvents.h */,
- FFFDd20102407ff3d2010240 /* src/PxProfileMemory.h */,
- FFFDd20102a87ff3d20102a8 /* src/PxProfileMemoryBuffer.h */,
- FFFDd20103107ff3d2010310 /* src/PxProfileMemoryEventBuffer.h */,
- FFFDd20103787ff3d2010378 /* src/PxProfileMemoryEventParser.h */,
- FFFDd20103e07ff3d20103e0 /* src/PxProfileMemoryEventRecorder.h */,
- FFFDd20104487ff3d2010448 /* src/PxProfileMemoryEventReflexiveWriter.h */,
- FFFDd20104b07ff3d20104b0 /* src/PxProfileMemoryEventSummarizer.h */,
- FFFDd20105187ff3d2010518 /* src/PxProfileMemoryEventTypes.h */,
- FFFDd20105807ff3d2010580 /* src/PxProfileMemoryEvents.h */,
- FFFDd20105e87ff3d20105e8 /* src/PxProfileScopedEvent.h */,
- FFFDd20106507ff3d2010650 /* src/PxProfileScopedMutexLock.h */,
- FFFDd20106b87ff3d20106b8 /* src/PxProfileZone.h */,
- FFFDd20107207ff3d2010720 /* src/PxProfileZoneImpl.h */,
- FFFDd20107887ff3d2010788 /* src/PxProfileZoneManager.h */,
- FFFDd20107f07ff3d20107f0 /* src/PxProfileZoneManagerImpl.h */,
- FFFDd20108587ff3d2010858 /* src/PxPvdBits.h */,
- FFFDd20108c07ff3d20108c0 /* src/PxPvdByteStreams.h */,
- FFFDd20109287ff3d2010928 /* src/PxPvdCommStreamEventSink.h */,
- FFFDd20109907ff3d2010990 /* src/PxPvdCommStreamEvents.h */,
- FFFDd20109f87ff3d20109f8 /* src/PxPvdCommStreamSDKEventTypes.h */,
- FFFDd2010a607ff3d2010a60 /* src/PxPvdCommStreamTypes.h */,
- FFFDd2010ac87ff3d2010ac8 /* src/PxPvdDefaultFileTransport.h */,
- FFFDd2010b307ff3d2010b30 /* src/PxPvdDefaultSocketTransport.h */,
- FFFDd2010b987ff3d2010b98 /* src/PxPvdFoundation.h */,
- FFFDd2010c007ff3d2010c00 /* src/PxPvdImpl.h */,
- FFFDd2010c687ff3d2010c68 /* src/PxPvdInternalByteStreams.h */,
- FFFDd2010cd07ff3d2010cd0 /* src/PxPvdMarshalling.h */,
- FFFDd2010d387ff3d2010d38 /* src/PxPvdMemClient.h */,
- FFFDd2010da07ff3d2010da0 /* src/PxPvdObjectModel.h */,
- FFFDd2010e087ff3d2010e08 /* src/PxPvdObjectModelInternalTypeDefs.h */,
- FFFDd2010e707ff3d2010e70 /* src/PxPvdObjectModelInternalTypes.h */,
- FFFDd2010ed87ff3d2010ed8 /* src/PxPvdObjectModelMetaData.h */,
- FFFDd2010f407ff3d2010f40 /* src/PxPvdObjectRegistrar.h */,
- FFFDd2010fa87ff3d2010fa8 /* src/PxPvdProfileZoneClient.h */,
- FFFDd20110107ff3d2011010 /* src/PxPvdUserRenderImpl.h */,
- FFFDd20110787ff3d2011078 /* src/PxPvdUserRenderTypes.h */,
+ FFFD3d02de007f8d3d02de00 /* include/PsPvd.h */,
+ FFFD3d02de687f8d3d02de68 /* include/PxProfileAllocatorWrapper.h */,
+ FFFD3d02ded07f8d3d02ded0 /* include/PxPvdClient.h */,
+ FFFD3d02df387f8d3d02df38 /* include/PxPvdDataStream.h */,
+ FFFD3d02dfa07f8d3d02dfa0 /* include/PxPvdDataStreamHelpers.h */,
+ FFFD3d02e0087f8d3d02e008 /* include/PxPvdErrorCodes.h */,
+ FFFD3d02e0707f8d3d02e070 /* include/PxPvdObjectModelBaseTypes.h */,
+ FFFD3d02e0d87f8d3d02e0d8 /* include/PxPvdRenderBuffer.h */,
+ FFFD3d02e1407f8d3d02e140 /* include/PxPvdUserRenderer.h */,
+ FFFD3d02e1a87f8d3d02e1a8 /* src/PxProfileEventImpl.cpp */,
+ FFFD3d02e2107f8d3d02e210 /* src/PxPvd.cpp */,
+ FFFD3d02e2787f8d3d02e278 /* src/PxPvdDataStream.cpp */,
+ FFFD3d02e2e07f8d3d02e2e0 /* src/PxPvdDefaultFileTransport.cpp */,
+ FFFD3d02e3487f8d3d02e348 /* src/PxPvdDefaultSocketTransport.cpp */,
+ FFFD3d02e3b07f8d3d02e3b0 /* src/PxPvdImpl.cpp */,
+ FFFD3d02e4187f8d3d02e418 /* src/PxPvdMemClient.cpp */,
+ FFFD3d02e4807f8d3d02e480 /* src/PxPvdObjectModelMetaData.cpp */,
+ FFFD3d02e4e87f8d3d02e4e8 /* src/PxPvdObjectRegistrar.cpp */,
+ FFFD3d02e5507f8d3d02e550 /* src/PxPvdProfileZoneClient.cpp */,
+ FFFD3d02e5b87f8d3d02e5b8 /* src/PxPvdUserRenderer.cpp */,
+ FFFD3d02e6207f8d3d02e620 /* src/PxProfileBase.h */,
+ FFFD3d02e6887f8d3d02e688 /* src/PxProfileCompileTimeEventFilter.h */,
+ FFFD3d02e6f07f8d3d02e6f0 /* src/PxProfileContextProvider.h */,
+ FFFD3d02e7587f8d3d02e758 /* src/PxProfileContextProviderImpl.h */,
+ FFFD3d02e7c07f8d3d02e7c0 /* src/PxProfileDataBuffer.h */,
+ FFFD3d02e8287f8d3d02e828 /* src/PxProfileDataParsing.h */,
+ FFFD3d02e8907f8d3d02e890 /* src/PxProfileEventBuffer.h */,
+ FFFD3d02e8f87f8d3d02e8f8 /* src/PxProfileEventBufferAtomic.h */,
+ FFFD3d02e9607f8d3d02e960 /* src/PxProfileEventBufferClient.h */,
+ FFFD3d02e9c87f8d3d02e9c8 /* src/PxProfileEventBufferClientManager.h */,
+ FFFD3d02ea307f8d3d02ea30 /* src/PxProfileEventFilter.h */,
+ FFFD3d02ea987f8d3d02ea98 /* src/PxProfileEventHandler.h */,
+ FFFD3d02eb007f8d3d02eb00 /* src/PxProfileEventId.h */,
+ FFFD3d02eb687f8d3d02eb68 /* src/PxProfileEventMutex.h */,
+ FFFD3d02ebd07f8d3d02ebd0 /* src/PxProfileEventNames.h */,
+ FFFD3d02ec387f8d3d02ec38 /* src/PxProfileEventParser.h */,
+ FFFD3d02eca07f8d3d02eca0 /* src/PxProfileEventSender.h */,
+ FFFD3d02ed087f8d3d02ed08 /* src/PxProfileEventSerialization.h */,
+ FFFD3d02ed707f8d3d02ed70 /* src/PxProfileEventSystem.h */,
+ FFFD3d02edd87f8d3d02edd8 /* src/PxProfileEvents.h */,
+ FFFD3d02ee407f8d3d02ee40 /* src/PxProfileMemory.h */,
+ FFFD3d02eea87f8d3d02eea8 /* src/PxProfileMemoryBuffer.h */,
+ FFFD3d02ef107f8d3d02ef10 /* src/PxProfileMemoryEventBuffer.h */,
+ FFFD3d02ef787f8d3d02ef78 /* src/PxProfileMemoryEventParser.h */,
+ FFFD3d02efe07f8d3d02efe0 /* src/PxProfileMemoryEventRecorder.h */,
+ FFFD3d02f0487f8d3d02f048 /* src/PxProfileMemoryEventReflexiveWriter.h */,
+ FFFD3d02f0b07f8d3d02f0b0 /* src/PxProfileMemoryEventSummarizer.h */,
+ FFFD3d02f1187f8d3d02f118 /* src/PxProfileMemoryEventTypes.h */,
+ FFFD3d02f1807f8d3d02f180 /* src/PxProfileMemoryEvents.h */,
+ FFFD3d02f1e87f8d3d02f1e8 /* src/PxProfileScopedEvent.h */,
+ FFFD3d02f2507f8d3d02f250 /* src/PxProfileScopedMutexLock.h */,
+ FFFD3d02f2b87f8d3d02f2b8 /* src/PxProfileZone.h */,
+ FFFD3d02f3207f8d3d02f320 /* src/PxProfileZoneImpl.h */,
+ FFFD3d02f3887f8d3d02f388 /* src/PxProfileZoneManager.h */,
+ FFFD3d02f3f07f8d3d02f3f0 /* src/PxProfileZoneManagerImpl.h */,
+ FFFD3d02f4587f8d3d02f458 /* src/PxPvdBits.h */,
+ FFFD3d02f4c07f8d3d02f4c0 /* src/PxPvdByteStreams.h */,
+ FFFD3d02f5287f8d3d02f528 /* src/PxPvdCommStreamEventSink.h */,
+ FFFD3d02f5907f8d3d02f590 /* src/PxPvdCommStreamEvents.h */,
+ FFFD3d02f5f87f8d3d02f5f8 /* src/PxPvdCommStreamSDKEventTypes.h */,
+ FFFD3d02f6607f8d3d02f660 /* src/PxPvdCommStreamTypes.h */,
+ FFFD3d02f6c87f8d3d02f6c8 /* src/PxPvdDefaultFileTransport.h */,
+ FFFD3d02f7307f8d3d02f730 /* src/PxPvdDefaultSocketTransport.h */,
+ FFFD3d02f7987f8d3d02f798 /* src/PxPvdFoundation.h */,
+ FFFD3d02f8007f8d3d02f800 /* src/PxPvdImpl.h */,
+ FFFD3d02f8687f8d3d02f868 /* src/PxPvdInternalByteStreams.h */,
+ FFFD3d02f8d07f8d3d02f8d0 /* src/PxPvdMarshalling.h */,
+ FFFD3d02f9387f8d3d02f938 /* src/PxPvdMemClient.h */,
+ FFFD3d02f9a07f8d3d02f9a0 /* src/PxPvdObjectModel.h */,
+ FFFD3d02fa087f8d3d02fa08 /* src/PxPvdObjectModelInternalTypeDefs.h */,
+ FFFD3d02fa707f8d3d02fa70 /* src/PxPvdObjectModelInternalTypes.h */,
+ FFFD3d02fad87f8d3d02fad8 /* src/PxPvdObjectModelMetaData.h */,
+ FFFD3d02fb407f8d3d02fb40 /* src/PxPvdObjectRegistrar.h */,
+ FFFD3d02fba87f8d3d02fba8 /* src/PxPvdProfileZoneClient.h */,
+ FFFD3d02fc107f8d3d02fc10 /* src/PxPvdUserRenderImpl.h */,
+ FFFD3d02fc787f8d3d02fc78 /* src/PxPvdUserRenderTypes.h */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
- FFFBd1610fe07ff3d1610fe0 /* LowLevel */ = {
+ FFFB3cc0c2b07f8d3cc0c2b0 /* LowLevel */ = {
isa = PBXGroup;
children = (
- FFFBd1616ce07ff3d1616ce0 /* API Source */,
- FFFBd1616d087ff3d1616d08 /* API Includes */,
- FFFBd1616d307ff3d1616d30 /* Software Source */,
- FFFBd1616d587ff3d1616d58 /* Software Includes */,
- FFFBd1616d807ff3d1616d80 /* Common Source */,
- FFFBd1616da87ff3d1616da8 /* Common Includes */,
+ FFFB3cc0e9707f8d3cc0e970 /* API Source */,
+ FFFB3cc0e9987f8d3cc0e998 /* API Includes */,
+ FFFB3cc0e9c07f8d3cc0e9c0 /* Software Source */,
+ FFFB3cc0e9e87f8d3cc0e9e8 /* Software Includes */,
+ FFFB3cc0ea107f8d3cc0ea10 /* Common Source */,
+ FFFB3cc0ea387f8d3cc0ea38 /* Common Includes */,
);
name = "LowLevel";
sourceTree = "<group>";
};
- FFFBd1616ce07ff3d1616ce0 /* API Source */ = {
+ FFFB3cc0e9707f8d3cc0e970 /* API Source */ = {
isa = PBXGroup;
children = (
- FFFDd1615ae07ff3d1615ae0 /* px_globals.cpp */,
+ FFFD3cc0cfa07f8d3cc0cfa0 /* px_globals.cpp */,
);
name = "API Source";
sourceTree = SOURCE_ROOT;
};
- FFFBd1616d087ff3d1616d08 /* API Includes */ = {
+ FFFB3cc0e9987f8d3cc0e998 /* API Includes */ = {
isa = PBXGroup;
children = (
- FFFDd1617e507ff3d1617e50 /* PxsMaterialCore.h */,
- FFFDd1617eb87ff3d1617eb8 /* PxsMaterialManager.h */,
- FFFDd1617f207ff3d1617f20 /* PxvConfig.h */,
- FFFDd1617f887ff3d1617f88 /* PxvContext.h */,
- FFFDd1617ff07ff3d1617ff0 /* PxvDynamics.h */,
- FFFDd16180587ff3d1618058 /* PxvGeometry.h */,
- FFFDd16180c07ff3d16180c0 /* PxvGlobals.h */,
- FFFDd16181287ff3d1618128 /* PxvManager.h */,
- FFFDd16181907ff3d1618190 /* PxvSimStats.h */,
+ FFFD3cc100b07f8d3cc100b0 /* PxsMaterialCore.h */,
+ FFFD3cc101187f8d3cc10118 /* PxsMaterialManager.h */,
+ FFFD3cc101807f8d3cc10180 /* PxvConfig.h */,
+ FFFD3cc101e87f8d3cc101e8 /* PxvContext.h */,
+ FFFD3cc102507f8d3cc10250 /* PxvDynamics.h */,
+ FFFD3cc102b87f8d3cc102b8 /* PxvGeometry.h */,
+ FFFD3cc103207f8d3cc10320 /* PxvGlobals.h */,
+ FFFD3cc103887f8d3cc10388 /* PxvManager.h */,
+ FFFD3cc103f07f8d3cc103f0 /* PxvSimStats.h */,
);
name = "API Includes";
sourceTree = SOURCE_ROOT;
};
- FFFBd1616d307ff3d1616d30 /* Software Source */ = {
+ FFFB3cc0e9c07f8d3cc0e9c0 /* Software Source */ = {
isa = PBXGroup;
children = (
- FFFDd160f7907ff3d160f790 /* PxsCCD.cpp */,
- FFFDd160f7f87ff3d160f7f8 /* PxsContactManager.cpp */,
- FFFDd160f8607ff3d160f860 /* PxsContext.cpp */,
- FFFDd160f8c87ff3d160f8c8 /* PxsDefaultMemoryManager.cpp */,
- FFFDd160f9307ff3d160f930 /* PxsIslandSim.cpp */,
- FFFDd160f9987ff3d160f998 /* PxsMaterialCombiner.cpp */,
- FFFDd160fa007ff3d160fa00 /* PxsNphaseImplementationContext.cpp */,
- FFFDd160fa687ff3d160fa68 /* PxsSimpleIslandManager.cpp */,
+ FFFD3cc112007f8d3cc11200 /* PxsCCD.cpp */,
+ FFFD3cc112687f8d3cc11268 /* PxsContactManager.cpp */,
+ FFFD3cc112d07f8d3cc112d0 /* PxsContext.cpp */,
+ FFFD3cc113387f8d3cc11338 /* PxsDefaultMemoryManager.cpp */,
+ FFFD3cc113a07f8d3cc113a0 /* PxsIslandSim.cpp */,
+ FFFD3cc114087f8d3cc11408 /* PxsMaterialCombiner.cpp */,
+ FFFD3cc114707f8d3cc11470 /* PxsNphaseImplementationContext.cpp */,
+ FFFD3cc114d87f8d3cc114d8 /* PxsSimpleIslandManager.cpp */,
);
name = "Software Source";
sourceTree = SOURCE_ROOT;
};
- FFFBd1616d587ff3d1616d58 /* Software Includes */ = {
+ FFFB3cc0e9e87f8d3cc0e9e8 /* Software Includes */ = {
isa = PBXGroup;
children = (
- FFFDd09d76007ff3d09d7600 /* PxsBodySim.h */,
- FFFDd09d76687ff3d09d7668 /* PxsCCD.h */,
- FFFDd09d76d07ff3d09d76d0 /* PxsContactManager.h */,
- FFFDd09d77387ff3d09d7738 /* PxsContactManagerState.h */,
- FFFDd09d77a07ff3d09d77a0 /* PxsContext.h */,
- FFFDd09d78087ff3d09d7808 /* PxsDefaultMemoryManager.h */,
- FFFDd09d78707ff3d09d7870 /* PxsHeapMemoryAllocator.h */,
- FFFDd09d78d87ff3d09d78d8 /* PxsIncrementalConstraintPartitioning.h */,
- FFFDd09d79407ff3d09d7940 /* PxsIslandManagerTypes.h */,
- FFFDd09d79a87ff3d09d79a8 /* PxsIslandSim.h */,
- FFFDd09d7a107ff3d09d7a10 /* PxsKernelWrangler.h */,
- FFFDd09d7a787ff3d09d7a78 /* PxsMaterialCombiner.h */,
- FFFDd09d7ae07ff3d09d7ae0 /* PxsMemoryManager.h */,
- FFFDd09d7b487ff3d09d7b48 /* PxsNphaseImplementationContext.h */,
- FFFDd09d7bb07ff3d09d7bb0 /* PxsRigidBody.h */,
- FFFDd09d7c187ff3d09d7c18 /* PxsShapeSim.h */,
- FFFDd09d7c807ff3d09d7c80 /* PxsSimpleIslandManager.h */,
- FFFDd09d7ce87ff3d09d7ce8 /* PxsSimulationController.h */,
- FFFDd09d7d507ff3d09d7d50 /* PxsTransformCache.h */,
- FFFDd09d7db87ff3d09d7db8 /* PxvNphaseImplementationContext.h */,
+ FFFD3c1b6e007f8d3c1b6e00 /* PxsBodySim.h */,
+ FFFD3c1b6e687f8d3c1b6e68 /* PxsCCD.h */,
+ FFFD3c1b6ed07f8d3c1b6ed0 /* PxsContactManager.h */,
+ FFFD3c1b6f387f8d3c1b6f38 /* PxsContactManagerState.h */,
+ FFFD3c1b6fa07f8d3c1b6fa0 /* PxsContext.h */,
+ FFFD3c1b70087f8d3c1b7008 /* PxsDefaultMemoryManager.h */,
+ FFFD3c1b70707f8d3c1b7070 /* PxsHeapMemoryAllocator.h */,
+ FFFD3c1b70d87f8d3c1b70d8 /* PxsIncrementalConstraintPartitioning.h */,
+ FFFD3c1b71407f8d3c1b7140 /* PxsIslandManagerTypes.h */,
+ FFFD3c1b71a87f8d3c1b71a8 /* PxsIslandSim.h */,
+ FFFD3c1b72107f8d3c1b7210 /* PxsKernelWrangler.h */,
+ FFFD3c1b72787f8d3c1b7278 /* PxsMaterialCombiner.h */,
+ FFFD3c1b72e07f8d3c1b72e0 /* PxsMemoryManager.h */,
+ FFFD3c1b73487f8d3c1b7348 /* PxsNphaseImplementationContext.h */,
+ FFFD3c1b73b07f8d3c1b73b0 /* PxsRigidBody.h */,
+ FFFD3c1b74187f8d3c1b7418 /* PxsShapeSim.h */,
+ FFFD3c1b74807f8d3c1b7480 /* PxsSimpleIslandManager.h */,
+ FFFD3c1b74e87f8d3c1b74e8 /* PxsSimulationController.h */,
+ FFFD3c1b75507f8d3c1b7550 /* PxsTransformCache.h */,
+ FFFD3c1b75b87f8d3c1b75b8 /* PxvNphaseImplementationContext.h */,
);
name = "Software Includes";
sourceTree = SOURCE_ROOT;
};
- FFFBd1616d807ff3d1616d80 /* Common Source */ = {
+ FFFB3cc0ea107f8d3cc0ea10 /* Common Source */ = {
isa = PBXGroup;
children = (
- FFFDd09d60007ff3d09d6000 /* collision/PxcContact.cpp */,
- FFFDd09d60687ff3d09d6068 /* pipeline/PxcContactCache.cpp */,
- FFFDd09d60d07ff3d09d60d0 /* pipeline/PxcContactMethodImpl.cpp */,
- FFFDd09d61387ff3d09d6138 /* pipeline/PxcMaterialHeightField.cpp */,
- FFFDd09d61a07ff3d09d61a0 /* pipeline/PxcMaterialMesh.cpp */,
- FFFDd09d62087ff3d09d6208 /* pipeline/PxcMaterialMethodImpl.cpp */,
- FFFDd09d62707ff3d09d6270 /* pipeline/PxcMaterialShape.cpp */,
- FFFDd09d62d87ff3d09d62d8 /* pipeline/PxcNpBatch.cpp */,
- FFFDd09d63407ff3d09d6340 /* pipeline/PxcNpCacheStreamPair.cpp */,
- FFFDd09d63a87ff3d09d63a8 /* pipeline/PxcNpContactPrepShared.cpp */,
- FFFDd09d64107ff3d09d6410 /* pipeline/PxcNpMemBlockPool.cpp */,
- FFFDd09d64787ff3d09d6478 /* pipeline/PxcNpThreadContext.cpp */,
+ FFFD3c1b58007f8d3c1b5800 /* collision/PxcContact.cpp */,
+ FFFD3c1b58687f8d3c1b5868 /* pipeline/PxcContactCache.cpp */,
+ FFFD3c1b58d07f8d3c1b58d0 /* pipeline/PxcContactMethodImpl.cpp */,
+ FFFD3c1b59387f8d3c1b5938 /* pipeline/PxcMaterialHeightField.cpp */,
+ FFFD3c1b59a07f8d3c1b59a0 /* pipeline/PxcMaterialMesh.cpp */,
+ FFFD3c1b5a087f8d3c1b5a08 /* pipeline/PxcMaterialMethodImpl.cpp */,
+ FFFD3c1b5a707f8d3c1b5a70 /* pipeline/PxcMaterialShape.cpp */,
+ FFFD3c1b5ad87f8d3c1b5ad8 /* pipeline/PxcNpBatch.cpp */,
+ FFFD3c1b5b407f8d3c1b5b40 /* pipeline/PxcNpCacheStreamPair.cpp */,
+ FFFD3c1b5ba87f8d3c1b5ba8 /* pipeline/PxcNpContactPrepShared.cpp */,
+ FFFD3c1b5c107f8d3c1b5c10 /* pipeline/PxcNpMemBlockPool.cpp */,
+ FFFD3c1b5c787f8d3c1b5c78 /* pipeline/PxcNpThreadContext.cpp */,
);
name = "Common Source";
sourceTree = SOURCE_ROOT;
};
- FFFBd1616da87ff3d1616da8 /* Common Includes */ = {
+ FFFB3cc0ea387f8d3cc0ea38 /* Common Includes */ = {
isa = PBXGroup;
children = (
- FFFDd09d68007ff3d09d6800 /* collision/PxcContactMethodImpl.h */,
- FFFDd09d68687ff3d09d6868 /* pipeline/PxcCCDStateStreamPair.h */,
- FFFDd09d68d07ff3d09d68d0 /* pipeline/PxcConstraintBlockStream.h */,
- FFFDd09d69387ff3d09d6938 /* pipeline/PxcContactCache.h */,
- FFFDd09d69a07ff3d09d69a0 /* pipeline/PxcMaterialMethodImpl.h */,
- FFFDd09d6a087ff3d09d6a08 /* pipeline/PxcNpBatch.h */,
- FFFDd09d6a707ff3d09d6a70 /* pipeline/PxcNpCache.h */,
- FFFDd09d6ad87ff3d09d6ad8 /* pipeline/PxcNpCacheStreamPair.h */,
- FFFDd09d6b407ff3d09d6b40 /* pipeline/PxcNpContactPrepShared.h */,
- FFFDd09d6ba87ff3d09d6ba8 /* pipeline/PxcNpMemBlockPool.h */,
- FFFDd09d6c107ff3d09d6c10 /* pipeline/PxcNpThreadContext.h */,
- FFFDd09d6c787ff3d09d6c78 /* pipeline/PxcNpWorkUnit.h */,
- FFFDd09d6ce07ff3d09d6ce0 /* pipeline/PxcRigidBody.h */,
- FFFDd09d6d487ff3d09d6d48 /* utils/PxcScratchAllocator.h */,
- FFFDd09d6db07ff3d09d6db0 /* utils/PxcThreadCoherentCache.h */,
+ FFFD3c1b60007f8d3c1b6000 /* collision/PxcContactMethodImpl.h */,
+ FFFD3c1b60687f8d3c1b6068 /* pipeline/PxcCCDStateStreamPair.h */,
+ FFFD3c1b60d07f8d3c1b60d0 /* pipeline/PxcConstraintBlockStream.h */,
+ FFFD3c1b61387f8d3c1b6138 /* pipeline/PxcContactCache.h */,
+ FFFD3c1b61a07f8d3c1b61a0 /* pipeline/PxcMaterialMethodImpl.h */,
+ FFFD3c1b62087f8d3c1b6208 /* pipeline/PxcNpBatch.h */,
+ FFFD3c1b62707f8d3c1b6270 /* pipeline/PxcNpCache.h */,
+ FFFD3c1b62d87f8d3c1b62d8 /* pipeline/PxcNpCacheStreamPair.h */,
+ FFFD3c1b63407f8d3c1b6340 /* pipeline/PxcNpContactPrepShared.h */,
+ FFFD3c1b63a87f8d3c1b63a8 /* pipeline/PxcNpMemBlockPool.h */,
+ FFFD3c1b64107f8d3c1b6410 /* pipeline/PxcNpThreadContext.h */,
+ FFFD3c1b64787f8d3c1b6478 /* pipeline/PxcNpWorkUnit.h */,
+ FFFD3c1b64e07f8d3c1b64e0 /* pipeline/PxcRigidBody.h */,
+ FFFD3c1b65487f8d3c1b6548 /* utils/PxcScratchAllocator.h */,
+ FFFD3c1b65b07f8d3c1b65b0 /* utils/PxcThreadCoherentCache.h */,
);
name = "Common Includes";
sourceTree = SOURCE_ROOT;
};
- FFFBd1635bb07ff3d1635bb0 /* LowLevelAABB */ = {
+ FFFB3cf17c907f8d3cf17c90 /* LowLevelAABB */ = {
isa = PBXGroup;
children = (
- FFFBd162e0907ff3d162e090 /* include */,
- FFFBd162e0b87ff3d162e0b8 /* src */,
+ FFFB3cf197007f8d3cf19700 /* include */,
+ FFFB3cf197287f8d3cf19728 /* src */,
);
name = "LowLevelAABB";
sourceTree = "<group>";
};
- FFFBd162e0907ff3d162e090 /* include */ = {
+ FFFB3cf197007f8d3cf19700 /* include */ = {
isa = PBXGroup;
children = (
- FFFDd162ed407ff3d162ed40 /* BpAABBManagerTasks.h */,
- FFFDd162eda87ff3d162eda8 /* BpBroadPhase.h */,
- FFFDd162ee107ff3d162ee10 /* BpBroadPhaseUpdate.h */,
- FFFDd162ee787ff3d162ee78 /* BpSimpleAABBManager.h */,
+ FFFD3cf1a3907f8d3cf1a390 /* BpAABBManagerTasks.h */,
+ FFFD3cf1a3f87f8d3cf1a3f8 /* BpBroadPhase.h */,
+ FFFD3cf1a4607f8d3cf1a460 /* BpBroadPhaseUpdate.h */,
+ FFFD3cf1a4c87f8d3cf1a4c8 /* BpSimpleAABBManager.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
- FFFBd162e0b87ff3d162e0b8 /* src */ = {
+ FFFB3cf197287f8d3cf19728 /* src */ = {
isa = PBXGroup;
children = (
- FFFDd09dca007ff3d09dca00 /* BpBroadPhaseMBP.h */,
- FFFDd09dca687ff3d09dca68 /* BpBroadPhaseMBPCommon.h */,
- FFFDd09dcad07ff3d09dcad0 /* BpBroadPhaseSap.h */,
- FFFDd09dcb387ff3d09dcb38 /* BpBroadPhaseSapAux.h */,
- FFFDd09dcba07ff3d09dcba0 /* BpMBPTasks.h */,
- FFFDd09dcc087ff3d09dcc08 /* BpSAPTasks.h */,
- FFFDd09dcc707ff3d09dcc70 /* BpBroadPhase.cpp */,
- FFFDd09dccd87ff3d09dccd8 /* BpBroadPhaseMBP.cpp */,
- FFFDd09dcd407ff3d09dcd40 /* BpBroadPhaseSap.cpp */,
- FFFDd09dcda87ff3d09dcda8 /* BpBroadPhaseSapAux.cpp */,
- FFFDd09dce107ff3d09dce10 /* BpMBPTasks.cpp */,
- FFFDd09dce787ff3d09dce78 /* BpSAPTasks.cpp */,
- FFFDd09dcee07ff3d09dcee0 /* BpSimpleAABBManager.cpp */,
+ FFFD3d0334007f8d3d033400 /* BpBroadPhaseMBP.h */,
+ FFFD3d0334687f8d3d033468 /* BpBroadPhaseMBPCommon.h */,
+ FFFD3d0334d07f8d3d0334d0 /* BpBroadPhaseSap.h */,
+ FFFD3d0335387f8d3d033538 /* BpBroadPhaseSapAux.h */,
+ FFFD3d0335a07f8d3d0335a0 /* BpMBPTasks.h */,
+ FFFD3d0336087f8d3d033608 /* BpSAPTasks.h */,
+ FFFD3d0336707f8d3d033670 /* BpBroadPhase.cpp */,
+ FFFD3d0336d87f8d3d0336d8 /* BpBroadPhaseMBP.cpp */,
+ FFFD3d0337407f8d3d033740 /* BpBroadPhaseSap.cpp */,
+ FFFD3d0337a87f8d3d0337a8 /* BpBroadPhaseSapAux.cpp */,
+ FFFD3d0338107f8d3d033810 /* BpMBPTasks.cpp */,
+ FFFD3d0338787f8d3d033878 /* BpSAPTasks.cpp */,
+ FFFD3d0338e07f8d3d0338e0 /* BpSimpleAABBManager.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
- FFFBd14331607ff3d1433160 /* LowLevelDynamics */ = {
+ FFFB3cf3b3a07f8d3cf3b3a0 /* LowLevelDynamics */ = {
isa = PBXGroup;
children = (
- FFFBd14399f07ff3d14399f0 /* Dynamics Source */,
- FFFBd1439a187ff3d1439a18 /* Dynamics Includes */,
- FFFBd1439a407ff3d1439a40 /* Dynamics Internal Includes */,
+ FFFB3cf411a07f8d3cf411a0 /* Dynamics Source */,
+ FFFB3cf411c87f8d3cf411c8 /* Dynamics Includes */,
+ FFFB3cf411f07f8d3cf411f0 /* Dynamics Internal Includes */,
);
name = "LowLevelDynamics";
sourceTree = "<group>";
};
- FFFBd14399f07ff3d14399f0 /* Dynamics Source */ = {
+ FFFB3cf411a07f8d3cf411a0 /* Dynamics Source */ = {
isa = PBXGroup;
children = (
- FFFDd18188007ff3d1818800 /* DyArticulation.cpp */,
- FFFDd18188687ff3d1818868 /* DyArticulationContactPrep.cpp */,
- FFFDd18188d07ff3d18188d0 /* DyArticulationContactPrepPF.cpp */,
- FFFDd18189387ff3d1818938 /* DyArticulationHelper.cpp */,
- FFFDd18189a07ff3d18189a0 /* DyArticulationSIMD.cpp */,
- FFFDd1818a087ff3d1818a08 /* DyArticulationScalar.cpp */,
- FFFDd1818a707ff3d1818a70 /* DyConstraintPartition.cpp */,
- FFFDd1818ad87ff3d1818ad8 /* DyConstraintSetup.cpp */,
- FFFDd1818b407ff3d1818b40 /* DyConstraintSetupBlock.cpp */,
- FFFDd1818ba87ff3d1818ba8 /* DyContactPrep.cpp */,
- FFFDd1818c107ff3d1818c10 /* DyContactPrep4.cpp */,
- FFFDd1818c787ff3d1818c78 /* DyContactPrep4PF.cpp */,
- FFFDd1818ce07ff3d1818ce0 /* DyContactPrepPF.cpp */,
- FFFDd1818d487ff3d1818d48 /* DyDynamics.cpp */,
- FFFDd1818db07ff3d1818db0 /* DyFrictionCorrelation.cpp */,
- FFFDd1818e187ff3d1818e18 /* DyRigidBodyToSolverBody.cpp */,
- FFFDd1818e807ff3d1818e80 /* DySolverConstraints.cpp */,
- FFFDd1818ee87ff3d1818ee8 /* DySolverConstraintsBlock.cpp */,
- FFFDd1818f507ff3d1818f50 /* DySolverControl.cpp */,
- FFFDd1818fb87ff3d1818fb8 /* DySolverControlPF.cpp */,
- FFFDd18190207ff3d1819020 /* DySolverPFConstraints.cpp */,
- FFFDd18190887ff3d1819088 /* DySolverPFConstraintsBlock.cpp */,
- FFFDd18190f07ff3d18190f0 /* DyThreadContext.cpp */,
- FFFDd18191587ff3d1819158 /* DyThresholdTable.cpp */,
+ FFFD3d03f8007f8d3d03f800 /* DyArticulation.cpp */,
+ FFFD3d03f8687f8d3d03f868 /* DyArticulationContactPrep.cpp */,
+ FFFD3d03f8d07f8d3d03f8d0 /* DyArticulationContactPrepPF.cpp */,
+ FFFD3d03f9387f8d3d03f938 /* DyArticulationHelper.cpp */,
+ FFFD3d03f9a07f8d3d03f9a0 /* DyArticulationSIMD.cpp */,
+ FFFD3d03fa087f8d3d03fa08 /* DyArticulationScalar.cpp */,
+ FFFD3d03fa707f8d3d03fa70 /* DyConstraintPartition.cpp */,
+ FFFD3d03fad87f8d3d03fad8 /* DyConstraintSetup.cpp */,
+ FFFD3d03fb407f8d3d03fb40 /* DyConstraintSetupBlock.cpp */,
+ FFFD3d03fba87f8d3d03fba8 /* DyContactPrep.cpp */,
+ FFFD3d03fc107f8d3d03fc10 /* DyContactPrep4.cpp */,
+ FFFD3d03fc787f8d3d03fc78 /* DyContactPrep4PF.cpp */,
+ FFFD3d03fce07f8d3d03fce0 /* DyContactPrepPF.cpp */,
+ FFFD3d03fd487f8d3d03fd48 /* DyDynamics.cpp */,
+ FFFD3d03fdb07f8d3d03fdb0 /* DyFrictionCorrelation.cpp */,
+ FFFD3d03fe187f8d3d03fe18 /* DyRigidBodyToSolverBody.cpp */,
+ FFFD3d03fe807f8d3d03fe80 /* DySolverConstraints.cpp */,
+ FFFD3d03fee87f8d3d03fee8 /* DySolverConstraintsBlock.cpp */,
+ FFFD3d03ff507f8d3d03ff50 /* DySolverControl.cpp */,
+ FFFD3d03ffb87f8d3d03ffb8 /* DySolverControlPF.cpp */,
+ FFFD3d0400207f8d3d040020 /* DySolverPFConstraints.cpp */,
+ FFFD3d0400887f8d3d040088 /* DySolverPFConstraintsBlock.cpp */,
+ FFFD3d0400f07f8d3d0400f0 /* DyThreadContext.cpp */,
+ FFFD3d0401587f8d3d040158 /* DyThresholdTable.cpp */,
);
name = "Dynamics Source";
sourceTree = SOURCE_ROOT;
};
- FFFBd1439a187ff3d1439a18 /* Dynamics Includes */ = {
+ FFFB3cf411c87f8d3cf411c8 /* Dynamics Includes */ = {
isa = PBXGroup;
children = (
- FFFDd143b0107ff3d143b010 /* DyArticulation.h */,
- FFFDd143b0787ff3d143b078 /* DyConstraint.h */,
- FFFDd143b0e07ff3d143b0e0 /* DyConstraintWriteBack.h */,
- FFFDd143b1487ff3d143b148 /* DyContext.h */,
- FFFDd143b1b07ff3d143b1b0 /* DySleepingConfigulation.h */,
- FFFDd143b2187ff3d143b218 /* DyThresholdTable.h */,
+ FFFD3cf428207f8d3cf42820 /* DyArticulation.h */,
+ FFFD3cf428887f8d3cf42888 /* DyConstraint.h */,
+ FFFD3cf428f07f8d3cf428f0 /* DyConstraintWriteBack.h */,
+ FFFD3cf429587f8d3cf42958 /* DyContext.h */,
+ FFFD3cf429c07f8d3cf429c0 /* DySleepingConfigulation.h */,
+ FFFD3cf42a287f8d3cf42a28 /* DyThresholdTable.h */,
);
name = "Dynamics Includes";
sourceTree = SOURCE_ROOT;
};
- FFFBd1439a407ff3d1439a40 /* Dynamics Internal Includes */ = {
+ FFFB3cf411f07f8d3cf411f0 /* Dynamics Internal Includes */ = {
isa = PBXGroup;
children = (
- FFFDd1819a007ff3d1819a00 /* DyArticulationContactPrep.h */,
- FFFDd1819a687ff3d1819a68 /* DyArticulationFnsDebug.h */,
- FFFDd1819ad07ff3d1819ad0 /* DyArticulationFnsScalar.h */,
- FFFDd1819b387ff3d1819b38 /* DyArticulationFnsSimd.h */,
- FFFDd1819ba07ff3d1819ba0 /* DyArticulationHelper.h */,
- FFFDd1819c087ff3d1819c08 /* DyArticulationPImpl.h */,
- FFFDd1819c707ff3d1819c70 /* DyArticulationReference.h */,
- FFFDd1819cd87ff3d1819cd8 /* DyArticulationScalar.h */,
- FFFDd1819d407ff3d1819d40 /* DyArticulationUtils.h */,
- FFFDd1819da87ff3d1819da8 /* DyBodyCoreIntegrator.h */,
- FFFDd1819e107ff3d1819e10 /* DyConstraintPartition.h */,
- FFFDd1819e787ff3d1819e78 /* DyConstraintPrep.h */,
- FFFDd1819ee07ff3d1819ee0 /* DyContactPrep.h */,
- FFFDd1819f487ff3d1819f48 /* DyContactPrepShared.h */,
- FFFDd1819fb07ff3d1819fb0 /* DyContactReduction.h */,
- FFFDd181a0187ff3d181a018 /* DyCorrelationBuffer.h */,
- FFFDd181a0807ff3d181a080 /* DyDynamics.h */,
- FFFDd181a0e87ff3d181a0e8 /* DyFrictionPatch.h */,
- FFFDd181a1507ff3d181a150 /* DyFrictionPatchStreamPair.h */,
- FFFDd181a1b87ff3d181a1b8 /* DySolverBody.h */,
- FFFDd181a2207ff3d181a220 /* DySolverConstraint1D.h */,
- FFFDd181a2887ff3d181a288 /* DySolverConstraint1D4.h */,
- FFFDd181a2f07ff3d181a2f0 /* DySolverConstraintDesc.h */,
- FFFDd181a3587ff3d181a358 /* DySolverConstraintExtShared.h */,
- FFFDd181a3c07ff3d181a3c0 /* DySolverConstraintTypes.h */,
- FFFDd181a4287ff3d181a428 /* DySolverConstraintsShared.h */,
- FFFDd181a4907ff3d181a490 /* DySolverContact.h */,
- FFFDd181a4f87ff3d181a4f8 /* DySolverContact4.h */,
- FFFDd181a5607ff3d181a560 /* DySolverContactPF.h */,
- FFFDd181a5c87ff3d181a5c8 /* DySolverContactPF4.h */,
- FFFDd181a6307ff3d181a630 /* DySolverContext.h */,
- FFFDd181a6987ff3d181a698 /* DySolverControl.h */,
- FFFDd181a7007ff3d181a700 /* DySolverControlPF.h */,
- FFFDd181a7687ff3d181a768 /* DySolverCore.h */,
- FFFDd181a7d07ff3d181a7d0 /* DySolverExt.h */,
- FFFDd181a8387ff3d181a838 /* DySpatial.h */,
- FFFDd181a8a07ff3d181a8a0 /* DyThreadContext.h */,
+ FFFD3d040a007f8d3d040a00 /* DyArticulationContactPrep.h */,
+ FFFD3d040a687f8d3d040a68 /* DyArticulationFnsDebug.h */,
+ FFFD3d040ad07f8d3d040ad0 /* DyArticulationFnsScalar.h */,
+ FFFD3d040b387f8d3d040b38 /* DyArticulationFnsSimd.h */,
+ FFFD3d040ba07f8d3d040ba0 /* DyArticulationHelper.h */,
+ FFFD3d040c087f8d3d040c08 /* DyArticulationPImpl.h */,
+ FFFD3d040c707f8d3d040c70 /* DyArticulationReference.h */,
+ FFFD3d040cd87f8d3d040cd8 /* DyArticulationScalar.h */,
+ FFFD3d040d407f8d3d040d40 /* DyArticulationUtils.h */,
+ FFFD3d040da87f8d3d040da8 /* DyBodyCoreIntegrator.h */,
+ FFFD3d040e107f8d3d040e10 /* DyConstraintPartition.h */,
+ FFFD3d040e787f8d3d040e78 /* DyConstraintPrep.h */,
+ FFFD3d040ee07f8d3d040ee0 /* DyContactPrep.h */,
+ FFFD3d040f487f8d3d040f48 /* DyContactPrepShared.h */,
+ FFFD3d040fb07f8d3d040fb0 /* DyContactReduction.h */,
+ FFFD3d0410187f8d3d041018 /* DyCorrelationBuffer.h */,
+ FFFD3d0410807f8d3d041080 /* DyDynamics.h */,
+ FFFD3d0410e87f8d3d0410e8 /* DyFrictionPatch.h */,
+ FFFD3d0411507f8d3d041150 /* DyFrictionPatchStreamPair.h */,
+ FFFD3d0411b87f8d3d0411b8 /* DySolverBody.h */,
+ FFFD3d0412207f8d3d041220 /* DySolverConstraint1D.h */,
+ FFFD3d0412887f8d3d041288 /* DySolverConstraint1D4.h */,
+ FFFD3d0412f07f8d3d0412f0 /* DySolverConstraintDesc.h */,
+ FFFD3d0413587f8d3d041358 /* DySolverConstraintExtShared.h */,
+ FFFD3d0413c07f8d3d0413c0 /* DySolverConstraintTypes.h */,
+ FFFD3d0414287f8d3d041428 /* DySolverConstraintsShared.h */,
+ FFFD3d0414907f8d3d041490 /* DySolverContact.h */,
+ FFFD3d0414f87f8d3d0414f8 /* DySolverContact4.h */,
+ FFFD3d0415607f8d3d041560 /* DySolverContactPF.h */,
+ FFFD3d0415c87f8d3d0415c8 /* DySolverContactPF4.h */,
+ FFFD3d0416307f8d3d041630 /* DySolverContext.h */,
+ FFFD3d0416987f8d3d041698 /* DySolverControl.h */,
+ FFFD3d0417007f8d3d041700 /* DySolverControlPF.h */,
+ FFFD3d0417687f8d3d041768 /* DySolverCore.h */,
+ FFFD3d0417d07f8d3d0417d0 /* DySolverExt.h */,
+ FFFD3d0418387f8d3d041838 /* DySpatial.h */,
+ FFFD3d0418a07f8d3d0418a0 /* DyThreadContext.h */,
);
name = "Dynamics Internal Includes";
sourceTree = SOURCE_ROOT;
};
- FFFBd16276007ff3d1627600 /* LowLevelCloth */ = {
+ FFFB3b43b7807f8d3b43b780 /* LowLevelCloth */ = {
isa = PBXGroup;
children = (
- FFFBd16285907ff3d1628590 /* include */,
- FFFBd16285b87ff3d16285b8 /* src */,
+ FFFB3b4424d07f8d3b4424d0 /* include */,
+ FFFB3b4424f87f8d3b4424f8 /* src */,
);
name = "LowLevelCloth";
sourceTree = "<group>";
};
- FFFBd16285907ff3d1628590 /* include */ = {
+ FFFB3b4424d07f8d3b4424d0 /* include */ = {
isa = PBXGroup;
children = (
- FFFDd163c3907ff3d163c390 /* Cloth.h */,
- FFFDd163c3f87ff3d163c3f8 /* Fabric.h */,
- FFFDd163c4607ff3d163c460 /* Factory.h */,
- FFFDd163c4c87ff3d163c4c8 /* PhaseConfig.h */,
- FFFDd163c5307ff3d163c530 /* Range.h */,
- FFFDd163c5987ff3d163c598 /* Solver.h */,
- FFFDd163c6007ff3d163c600 /* Types.h */,
+ FFFD3b443f007f8d3b443f00 /* Cloth.h */,
+ FFFD3b443f687f8d3b443f68 /* Fabric.h */,
+ FFFD3b443fd07f8d3b443fd0 /* Factory.h */,
+ FFFD3b4440387f8d3b444038 /* PhaseConfig.h */,
+ FFFD3b4440a07f8d3b4440a0 /* Range.h */,
+ FFFD3b4441087f8d3b444108 /* Solver.h */,
+ FFFD3b4441707f8d3b444170 /* Types.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
- FFFBd16285b87ff3d16285b8 /* src */ = {
+ FFFB3b4424f87f8d3b4424f8 /* src */ = {
isa = PBXGroup;
children = (
- FFFDd09e60007ff3d09e6000 /* Allocator.h */,
- FFFDd09e60687ff3d09e6068 /* Array.h */,
- FFFDd09e60d07ff3d09e60d0 /* BoundingBox.h */,
- FFFDd09e61387ff3d09e6138 /* ClothBase.h */,
- FFFDd09e61a07ff3d09e61a0 /* ClothImpl.h */,
- FFFDd09e62087ff3d09e6208 /* IndexPair.h */,
- FFFDd09e62707ff3d09e6270 /* IterationState.h */,
- FFFDd09e62d87ff3d09e62d8 /* MovingAverage.h */,
- FFFDd09e63407ff3d09e6340 /* PointInterpolator.h */,
- FFFDd09e63a87ff3d09e63a8 /* Simd.h */,
- FFFDd09e64107ff3d09e6410 /* Simd4f.h */,
- FFFDd09e64787ff3d09e6478 /* Simd4i.h */,
- FFFDd09e64e07ff3d09e64e0 /* SimdTypes.h */,
- FFFDd09e65487ff3d09e6548 /* StackAllocator.h */,
- FFFDd09e65b07ff3d09e65b0 /* SwCloth.h */,
- FFFDd09e66187ff3d09e6618 /* SwClothData.h */,
- FFFDd09e66807ff3d09e6680 /* SwCollision.h */,
- FFFDd09e66e87ff3d09e66e8 /* SwCollisionHelpers.h */,
- FFFDd09e67507ff3d09e6750 /* SwFabric.h */,
- FFFDd09e67b87ff3d09e67b8 /* SwFactory.h */,
- FFFDd09e68207ff3d09e6820 /* SwInterCollision.h */,
- FFFDd09e68887ff3d09e6888 /* SwSelfCollision.h */,
- FFFDd09e68f07ff3d09e68f0 /* SwSolver.h */,
- FFFDd09e69587ff3d09e6958 /* SwSolverKernel.h */,
- FFFDd09e69c07ff3d09e69c0 /* TripletScheduler.h */,
- FFFDd09e6a287ff3d09e6a28 /* Vec4T.h */,
- FFFDd09e6a907ff3d09e6a90 /* Allocator.cpp */,
- FFFDd09e6af87ff3d09e6af8 /* Factory.cpp */,
- FFFDd09e6b607ff3d09e6b60 /* PhaseConfig.cpp */,
- FFFDd09e6bc87ff3d09e6bc8 /* SwCloth.cpp */,
- FFFDd09e6c307ff3d09e6c30 /* SwClothData.cpp */,
- FFFDd09e6c987ff3d09e6c98 /* SwCollision.cpp */,
- FFFDd09e6d007ff3d09e6d00 /* SwFabric.cpp */,
- FFFDd09e6d687ff3d09e6d68 /* SwFactory.cpp */,
- FFFDd09e6dd07ff3d09e6dd0 /* SwInterCollision.cpp */,
- FFFDd09e6e387ff3d09e6e38 /* SwSelfCollision.cpp */,
- FFFDd09e6ea07ff3d09e6ea0 /* SwSolver.cpp */,
- FFFDd09e6f087ff3d09e6f08 /* SwSolverKernel.cpp */,
- FFFDd09e6f707ff3d09e6f70 /* TripletScheduler.cpp */,
+ FFFD3b81c8007f8d3b81c800 /* Allocator.h */,
+ FFFD3b81c8687f8d3b81c868 /* Array.h */,
+ FFFD3b81c8d07f8d3b81c8d0 /* BoundingBox.h */,
+ FFFD3b81c9387f8d3b81c938 /* ClothBase.h */,
+ FFFD3b81c9a07f8d3b81c9a0 /* ClothImpl.h */,
+ FFFD3b81ca087f8d3b81ca08 /* IndexPair.h */,
+ FFFD3b81ca707f8d3b81ca70 /* IterationState.h */,
+ FFFD3b81cad87f8d3b81cad8 /* MovingAverage.h */,
+ FFFD3b81cb407f8d3b81cb40 /* PointInterpolator.h */,
+ FFFD3b81cba87f8d3b81cba8 /* Simd.h */,
+ FFFD3b81cc107f8d3b81cc10 /* Simd4f.h */,
+ FFFD3b81cc787f8d3b81cc78 /* Simd4i.h */,
+ FFFD3b81cce07f8d3b81cce0 /* SimdTypes.h */,
+ FFFD3b81cd487f8d3b81cd48 /* StackAllocator.h */,
+ FFFD3b81cdb07f8d3b81cdb0 /* SwCloth.h */,
+ FFFD3b81ce187f8d3b81ce18 /* SwClothData.h */,
+ FFFD3b81ce807f8d3b81ce80 /* SwCollision.h */,
+ FFFD3b81cee87f8d3b81cee8 /* SwCollisionHelpers.h */,
+ FFFD3b81cf507f8d3b81cf50 /* SwFabric.h */,
+ FFFD3b81cfb87f8d3b81cfb8 /* SwFactory.h */,
+ FFFD3b81d0207f8d3b81d020 /* SwInterCollision.h */,
+ FFFD3b81d0887f8d3b81d088 /* SwSelfCollision.h */,
+ FFFD3b81d0f07f8d3b81d0f0 /* SwSolver.h */,
+ FFFD3b81d1587f8d3b81d158 /* SwSolverKernel.h */,
+ FFFD3b81d1c07f8d3b81d1c0 /* TripletScheduler.h */,
+ FFFD3b81d2287f8d3b81d228 /* Vec4T.h */,
+ FFFD3b81d2907f8d3b81d290 /* Allocator.cpp */,
+ FFFD3b81d2f87f8d3b81d2f8 /* Factory.cpp */,
+ FFFD3b81d3607f8d3b81d360 /* PhaseConfig.cpp */,
+ FFFD3b81d3c87f8d3b81d3c8 /* SwCloth.cpp */,
+ FFFD3b81d4307f8d3b81d430 /* SwClothData.cpp */,
+ FFFD3b81d4987f8d3b81d498 /* SwCollision.cpp */,
+ FFFD3b81d5007f8d3b81d500 /* SwFabric.cpp */,
+ FFFD3b81d5687f8d3b81d568 /* SwFactory.cpp */,
+ FFFD3b81d5d07f8d3b81d5d0 /* SwInterCollision.cpp */,
+ FFFD3b81d6387f8d3b81d638 /* SwSelfCollision.cpp */,
+ FFFD3b81d6a07f8d3b81d6a0 /* SwSolver.cpp */,
+ FFFD3b81d7087f8d3b81d708 /* SwSolverKernel.cpp */,
+ FFFD3b81d7707f8d3b81d770 /* TripletScheduler.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
- FFFBd1664d207ff3d1664d20 /* LowLevelParticles */ = {
+ FFFB3cf5d0c07f8d3cf5d0c0 /* LowLevelParticles */ = {
isa = PBXGroup;
children = (
- FFFBd165c8b07ff3d165c8b0 /* include */,
- FFFBd165c8d87ff3d165c8d8 /* src */,
+ FFFB3cf523c07f8d3cf523c0 /* include */,
+ FFFB3cf523e87f8d3cf523e8 /* src */,
);
name = "LowLevelParticles";
sourceTree = "<group>";
};
- FFFBd165c8b07ff3d165c8b0 /* include */ = {
+ FFFB3cf523c07f8d3cf523c0 /* include */ = {
isa = PBXGroup;
children = (
- FFFDd09eac007ff3d09eac00 /* PtBodyTransformVault.h */,
- FFFDd09eac687ff3d09eac68 /* PtContext.h */,
- FFFDd09eacd07ff3d09eacd0 /* PtGridCellVector.h */,
- FFFDd09ead387ff3d09ead38 /* PtParticle.h */,
- FFFDd09eada07ff3d09eada0 /* PtParticleContactManagerStream.h */,
- FFFDd09eae087ff3d09eae08 /* PtParticleData.h */,
- FFFDd09eae707ff3d09eae70 /* PtParticleShape.h */,
- FFFDd09eaed87ff3d09eaed8 /* PtParticleSystemCore.h */,
- FFFDd09eaf407ff3d09eaf40 /* PtParticleSystemFlags.h */,
- FFFDd09eafa87ff3d09eafa8 /* PtParticleSystemSim.h */,
+ FFFD3d03f2007f8d3d03f200 /* PtBodyTransformVault.h */,
+ FFFD3d03f2687f8d3d03f268 /* PtContext.h */,
+ FFFD3d03f2d07f8d3d03f2d0 /* PtGridCellVector.h */,
+ FFFD3d03f3387f8d3d03f338 /* PtParticle.h */,
+ FFFD3d03f3a07f8d3d03f3a0 /* PtParticleContactManagerStream.h */,
+ FFFD3d03f4087f8d3d03f408 /* PtParticleData.h */,
+ FFFD3d03f4707f8d3d03f470 /* PtParticleShape.h */,
+ FFFD3d03f4d87f8d3d03f4d8 /* PtParticleSystemCore.h */,
+ FFFD3d03f5407f8d3d03f540 /* PtParticleSystemFlags.h */,
+ FFFD3d03f5a87f8d3d03f5a8 /* PtParticleSystemSim.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
- FFFBd165c8d87ff3d165c8d8 /* src */ = {
+ FFFB3cf523e87f8d3cf523e8 /* src */ = {
isa = PBXGroup;
children = (
- FFFDd09f0c007ff3d09f0c00 /* PtBatcher.h */,
- FFFDd09f0c687ff3d09f0c68 /* PtCollision.h */,
- FFFDd09f0cd07ff3d09f0cd0 /* PtCollisionData.h */,
- FFFDd09f0d387ff3d09f0d38 /* PtCollisionHelper.h */,
- FFFDd09f0da07ff3d09f0da0 /* PtCollisionMethods.h */,
- FFFDd09f0e087ff3d09f0e08 /* PtCollisionParameters.h */,
- FFFDd09f0e707ff3d09f0e70 /* PtConfig.h */,
- FFFDd09f0ed87ff3d09f0ed8 /* PtConstants.h */,
- FFFDd09f0f407ff3d09f0f40 /* PtContextCpu.h */,
- FFFDd09f0fa87ff3d09f0fa8 /* PtDynamicHelper.h */,
- FFFDd09f10107ff3d09f1010 /* PtDynamics.h */,
- FFFDd09f10787ff3d09f1078 /* PtDynamicsKernels.h */,
- FFFDd09f10e07ff3d09f10e0 /* PtDynamicsParameters.h */,
- FFFDd09f11487ff3d09f1148 /* PtDynamicsTempBuffers.h */,
- FFFDd09f11b07ff3d09f11b0 /* PtHeightFieldAabbTest.h */,
- FFFDd09f12187ff3d09f1218 /* PtPacketSections.h */,
- FFFDd09f12807ff3d09f1280 /* PtParticleCell.h */,
- FFFDd09f12e87ff3d09f12e8 /* PtParticleOpcodeCache.h */,
- FFFDd09f13507ff3d09f1350 /* PtParticleShapeCpu.h */,
- FFFDd09f13b87ff3d09f13b8 /* PtParticleSystemSimCpu.h */,
- FFFDd09f14207ff3d09f1420 /* PtSpatialHash.h */,
- FFFDd09f14887ff3d09f1488 /* PtSpatialHashHelper.h */,
- FFFDd09f14f07ff3d09f14f0 /* PtTwoWayData.h */,
- FFFDd09f15587ff3d09f1558 /* PtBatcher.cpp */,
- FFFDd09f15c07ff3d09f15c0 /* PtBodyTransformVault.cpp */,
- FFFDd09f16287ff3d09f1628 /* PtCollision.cpp */,
- FFFDd09f16907ff3d09f1690 /* PtCollisionBox.cpp */,
- FFFDd09f16f87ff3d09f16f8 /* PtCollisionCapsule.cpp */,
- FFFDd09f17607ff3d09f1760 /* PtCollisionConvex.cpp */,
- FFFDd09f17c87ff3d09f17c8 /* PtCollisionMesh.cpp */,
- FFFDd09f18307ff3d09f1830 /* PtCollisionPlane.cpp */,
- FFFDd09f18987ff3d09f1898 /* PtCollisionSphere.cpp */,
- FFFDd09f19007ff3d09f1900 /* PtContextCpu.cpp */,
- FFFDd09f19687ff3d09f1968 /* PtDynamics.cpp */,
- FFFDd09f19d07ff3d09f19d0 /* PtParticleData.cpp */,
- FFFDd09f1a387ff3d09f1a38 /* PtParticleShapeCpu.cpp */,
- FFFDd09f1aa07ff3d09f1aa0 /* PtParticleSystemSimCpu.cpp */,
- FFFDd09f1b087ff3d09f1b08 /* PtSpatialHash.cpp */,
- FFFDd09f1b707ff3d09f1b70 /* PtSpatialLocalHash.cpp */,
+ FFFD3d04b4007f8d3d04b400 /* PtBatcher.h */,
+ FFFD3d04b4687f8d3d04b468 /* PtCollision.h */,
+ FFFD3d04b4d07f8d3d04b4d0 /* PtCollisionData.h */,
+ FFFD3d04b5387f8d3d04b538 /* PtCollisionHelper.h */,
+ FFFD3d04b5a07f8d3d04b5a0 /* PtCollisionMethods.h */,
+ FFFD3d04b6087f8d3d04b608 /* PtCollisionParameters.h */,
+ FFFD3d04b6707f8d3d04b670 /* PtConfig.h */,
+ FFFD3d04b6d87f8d3d04b6d8 /* PtConstants.h */,
+ FFFD3d04b7407f8d3d04b740 /* PtContextCpu.h */,
+ FFFD3d04b7a87f8d3d04b7a8 /* PtDynamicHelper.h */,
+ FFFD3d04b8107f8d3d04b810 /* PtDynamics.h */,
+ FFFD3d04b8787f8d3d04b878 /* PtDynamicsKernels.h */,
+ FFFD3d04b8e07f8d3d04b8e0 /* PtDynamicsParameters.h */,
+ FFFD3d04b9487f8d3d04b948 /* PtDynamicsTempBuffers.h */,
+ FFFD3d04b9b07f8d3d04b9b0 /* PtHeightFieldAabbTest.h */,
+ FFFD3d04ba187f8d3d04ba18 /* PtPacketSections.h */,
+ FFFD3d04ba807f8d3d04ba80 /* PtParticleCell.h */,
+ FFFD3d04bae87f8d3d04bae8 /* PtParticleOpcodeCache.h */,
+ FFFD3d04bb507f8d3d04bb50 /* PtParticleShapeCpu.h */,
+ FFFD3d04bbb87f8d3d04bbb8 /* PtParticleSystemSimCpu.h */,
+ FFFD3d04bc207f8d3d04bc20 /* PtSpatialHash.h */,
+ FFFD3d04bc887f8d3d04bc88 /* PtSpatialHashHelper.h */,
+ FFFD3d04bcf07f8d3d04bcf0 /* PtTwoWayData.h */,
+ FFFD3d04bd587f8d3d04bd58 /* PtBatcher.cpp */,
+ FFFD3d04bdc07f8d3d04bdc0 /* PtBodyTransformVault.cpp */,
+ FFFD3d04be287f8d3d04be28 /* PtCollision.cpp */,
+ FFFD3d04be907f8d3d04be90 /* PtCollisionBox.cpp */,
+ FFFD3d04bef87f8d3d04bef8 /* PtCollisionCapsule.cpp */,
+ FFFD3d04bf607f8d3d04bf60 /* PtCollisionConvex.cpp */,
+ FFFD3d04bfc87f8d3d04bfc8 /* PtCollisionMesh.cpp */,
+ FFFD3d04c0307f8d3d04c030 /* PtCollisionPlane.cpp */,
+ FFFD3d04c0987f8d3d04c098 /* PtCollisionSphere.cpp */,
+ FFFD3d04c1007f8d3d04c100 /* PtContextCpu.cpp */,
+ FFFD3d04c1687f8d3d04c168 /* PtDynamics.cpp */,
+ FFFD3d04c1d07f8d3d04c1d0 /* PtParticleData.cpp */,
+ FFFD3d04c2387f8d3d04c238 /* PtParticleShapeCpu.cpp */,
+ FFFD3d04c2a07f8d3d04c2a0 /* PtParticleSystemSimCpu.cpp */,
+ FFFD3d04c3087f8d3d04c308 /* PtSpatialHash.cpp */,
+ FFFD3d04c3707f8d3d04c370 /* PtSpatialLocalHash.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
- FFFBd17372b07ff3d17372b0 /* PxTask */ = {
+ FFFB3b4815b07f8d3b4815b0 /* PxTask */ = {
isa = PBXGroup;
children = (
- FFFBd17378707ff3d1737870 /* include */,
- FFFBd17378987ff3d1737898 /* src */,
+ FFFB3b4818f07f8d3b4818f0 /* include */,
+ FFFB3b4819187f8d3b481918 /* src */,
);
name = "PxTask";
sourceTree = "<group>";
};
- FFFBd17378707ff3d1737870 /* include */ = {
+ FFFB3b4818f07f8d3b4818f0 /* include */ = {
isa = PBXGroup;
children = (
- FFFDd1734de07ff3d1734de0 /* PxCpuDispatcher.h */,
- FFFDd1734e487ff3d1734e48 /* PxGpuDispatcher.h */,
- FFFDd1734eb07ff3d1734eb0 /* PxGpuTask.h */,
- FFFDd1734f187ff3d1734f18 /* PxTask.h */,
- FFFDd1734f807ff3d1734f80 /* PxTaskDefine.h */,
- FFFDd1734fe87ff3d1734fe8 /* PxTaskManager.h */,
+ FFFD3b47f1807f8d3b47f180 /* PxCpuDispatcher.h */,
+ FFFD3b47f1e87f8d3b47f1e8 /* PxGpuDispatcher.h */,
+ FFFD3b47f2507f8d3b47f250 /* PxGpuTask.h */,
+ FFFD3b47f2b87f8d3b47f2b8 /* PxTask.h */,
+ FFFD3b47f3207f8d3b47f320 /* PxTaskDefine.h */,
+ FFFD3b47f3887f8d3b47f388 /* PxTaskManager.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
- FFFBd17378987ff3d1737898 /* src */ = {
+ FFFB3b4819187f8d3b481918 /* src */ = {
isa = PBXGroup;
children = (
- FFFDd17377407ff3d1737740 /* src/TaskManager.cpp */,
+ FFFD3b47f4807f8d3b47f480 /* src/TaskManager.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
- FFFBd2c601707ff3d2c60170 /* PsFastXml */ = {
+ FFFB3dac6c007f8d3dac6c00 /* PsFastXml */ = {
isa = PBXGroup;
children = (
- FFFBd2c606a07ff3d2c606a0 /* include */,
- FFFBd2c606c87ff3d2c606c8 /* src */,
+ FFFB3dac71e07f8d3dac71e0 /* include */,
+ FFFB3dac72087f8d3dac7208 /* src */,
);
name = "PsFastXml";
sourceTree = "<group>";
};
- FFFBd2c606a07ff3d2c606a0 /* include */ = {
+ FFFB3dac71e07f8d3dac71e0 /* include */ = {
isa = PBXGroup;
children = (
- FFFDd2c608307ff3d2c60830 /* PsFastXml.h */,
+ FFFD3dac73707f8d3dac7370 /* PsFastXml.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
- FFFBd2c606c87ff3d2c606c8 /* src */ = {
+ FFFB3dac72087f8d3dac7208 /* src */ = {
isa = PBXGroup;
children = (
- FFFDd2c609307ff3d2c60930 /* PsFastXml.cpp */,
+ FFFD3dac74707f8d3dac7470 /* PsFastXml.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
@@ -5011,61 +5011,61 @@
/* End PBXGroup section */
/* Begin PBXNativeTarget section */
- FFFAd2c639507ff3d2c63950 /* PhysX */ = {
+ FFFA3daca7207f8d3daca720 /* PhysX */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF6d2c639507ff3d2c63950 /* Build configuration list for PBXNativeTarget "PhysX" */;
+ buildConfigurationList = FFF63daca7207f8d3daca720 /* Build configuration list for PBXNativeTarget "PhysX" */;
buildPhases = (
- FFF2d2c639507ff3d2c63950,
- FFF8d2c639507ff3d2c63950,
- FFFCd2c639507ff3d2c63950,
+ FFF23daca7207f8d3daca720,
+ FFF83daca7207f8d3daca720,
+ FFFC3daca7207f8d3daca720,
);
buildRules = (
);
dependencies = (
- FFF4d2c6cb107ff3d2c6cb10, /* LowLevel */
- FFF4d2c6f5e07ff3d2c6f5e0, /* LowLevelAABB */
- FFF4d2c6f6a07ff3d2c6f6a0, /* LowLevelCloth */
- FFF4d2c6f6407ff3d2c6f640, /* LowLevelDynamics */
- FFF4d2c6c3c07ff3d2c6c3c0, /* LowLevelParticles */
- FFF4d2c6cab07ff3d2c6cab0, /* PhysXCommon */
- FFF4d2c63c407ff3d2c63c40, /* PxFoundation */
- FFF4d2c638f07ff3d2c638f0, /* PxPvdSDK */
- FFF4d2c6c5007ff3d2c6c500, /* PxTask */
- FFF4d2c6c4207ff3d2c6c420, /* SceneQuery */
- FFF4d2c6c4807ff3d2c6c480, /* SimulationController */
+ FFF43dad38e07f8d3dad38e0, /* LowLevel */
+ FFF43dad63b07f8d3dad63b0, /* LowLevelAABB */
+ FFF43dad64707f8d3dad6470, /* LowLevelCloth */
+ FFF43dad64107f8d3dad6410, /* LowLevelDynamics */
+ FFF43dad31907f8d3dad3190, /* LowLevelParticles */
+ FFF43dad38807f8d3dad3880, /* PhysXCommon */
+ FFF43dacaa107f8d3dacaa10, /* PxFoundation */
+ FFF43daca6c07f8d3daca6c0, /* PxPvdSDK */
+ FFF43dad32d07f8d3dad32d0, /* PxTask */
+ FFF43dad31f07f8d3dad31f0, /* SceneQuery */
+ FFF43dad32507f8d3dad3250, /* SimulationController */
);
name = "PhysX";
productName = "PhysX";
- productReference = FFFDd2c639507ff3d2c63950 /* PhysX */;
+ productReference = FFFD3daca7207f8d3daca720 /* PhysX */;
productType = "com.apple.product-type.library.static";
};
- FFFAd2c6c5107ff3d2c6c510 /* PhysXCharacterKinematic */ = {
+ FFFA3dad32e07f8d3dad32e0 /* PhysXCharacterKinematic */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF6d2c6c5107ff3d2c6c510 /* Build configuration list for PBXNativeTarget "PhysXCharacterKinematic" */;
+ buildConfigurationList = FFF63dad32e07f8d3dad32e0 /* Build configuration list for PBXNativeTarget "PhysXCharacterKinematic" */;
buildPhases = (
- FFF2d2c6c5107ff3d2c6c510,
- FFF8d2c6c5107ff3d2c6c510,
- FFFCd2c6c5107ff3d2c6c510,
+ FFF23dad32e07f8d3dad32e0,
+ FFF83dad32e07f8d3dad32e0,
+ FFFC3dad32e07f8d3dad32e0,
);
buildRules = (
);
dependencies = (
- FFF4d2c733507ff3d2c73350, /* PhysXCommon */
- FFF4d2c71ea07ff3d2c71ea0, /* PhysXExtensions */
- FFF4d2c723507ff3d2c72350, /* PxFoundation */
+ FFF43dada1207f8d3dada120, /* PhysXCommon */
+ FFF43dad8c707f8d3dad8c70, /* PhysXExtensions */
+ FFF43dad91207f8d3dad9120, /* PxFoundation */
);
name = "PhysXCharacterKinematic";
productName = "PhysXCharacterKinematic";
- productReference = FFFDd2c6c5107ff3d2c6c510 /* PhysXCharacterKinematic */;
+ productReference = FFFD3dad32e07f8d3dad32e0 /* PhysXCharacterKinematic */;
productType = "com.apple.product-type.library.static";
};
- FFFAd2c6d8507ff3d2c6d850 /* PhysXVehicle */ = {
+ FFFA3dad46207f8d3dad4620 /* PhysXVehicle */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF6d2c6d8507ff3d2c6d850 /* Build configuration list for PBXNativeTarget "PhysXVehicle" */;
+ buildConfigurationList = FFF63dad46207f8d3dad4620 /* Build configuration list for PBXNativeTarget "PhysXVehicle" */;
buildPhases = (
- FFF2d2c6d8507ff3d2c6d850,
- FFF8d2c6d8507ff3d2c6d850,
- FFFCd2c6d8507ff3d2c6d850,
+ FFF23dad46207f8d3dad4620,
+ FFF83dad46207f8d3dad4620,
+ FFFC3dad46207f8d3dad4620,
);
buildRules = (
);
@@ -5073,34 +5073,34 @@
);
name = "PhysXVehicle";
productName = "PhysXVehicle";
- productReference = FFFDd2c6d8507ff3d2c6d850 /* PhysXVehicle */;
+ productReference = FFFD3dad46207f8d3dad4620 /* PhysXVehicle */;
productType = "com.apple.product-type.library.static";
};
- FFFAd2c7d5c07ff3d2c7d5c0 /* PhysXExtensions */ = {
+ FFFA3dae43907f8d3dae4390 /* PhysXExtensions */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF6d2c7d5c07ff3d2c7d5c0 /* Build configuration list for PBXNativeTarget "PhysXExtensions" */;
+ buildConfigurationList = FFF63dae43907f8d3dae4390 /* Build configuration list for PBXNativeTarget "PhysXExtensions" */;
buildPhases = (
- FFF2d2c7d5c07ff3d2c7d5c0,
- FFF8d2c7d5c07ff3d2c7d5c0,
- FFFCd2c7d5c07ff3d2c7d5c0,
+ FFF23dae43907f8d3dae4390,
+ FFF83dae43907f8d3dae4390,
+ FFFC3dae43907f8d3dae4390,
);
buildRules = (
);
dependencies = (
- FFF4d2c7ccc07ff3d2c7ccc0, /* PsFastXml */
+ FFF43dae3a907f8d3dae3a90, /* PsFastXml */
);
name = "PhysXExtensions";
productName = "PhysXExtensions";
- productReference = FFFDd2c7d5c07ff3d2c7d5c0 /* PhysXExtensions */;
+ productReference = FFFD3dae43907f8d3dae4390 /* PhysXExtensions */;
productType = "com.apple.product-type.library.static";
};
- FFFAd2c8ff407ff3d2c8ff40 /* SceneQuery */ = {
+ FFFA3cc2ae407f8d3cc2ae40 /* SceneQuery */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF6d2c8ff407ff3d2c8ff40 /* Build configuration list for PBXNativeTarget "SceneQuery" */;
+ buildConfigurationList = FFF63cc2ae407f8d3cc2ae40 /* Build configuration list for PBXNativeTarget "SceneQuery" */;
buildPhases = (
- FFF2d2c8ff407ff3d2c8ff40,
- FFF8d2c8ff407ff3d2c8ff40,
- FFFCd2c8ff407ff3d2c8ff40,
+ FFF23cc2ae407f8d3cc2ae40,
+ FFF83cc2ae407f8d3cc2ae40,
+ FFFC3cc2ae407f8d3cc2ae40,
);
buildRules = (
);
@@ -5108,16 +5108,16 @@
);
name = "SceneQuery";
productName = "SceneQuery";
- productReference = FFFDd2c8ff407ff3d2c8ff40 /* SceneQuery */;
+ productReference = FFFD3cc2ae407f8d3cc2ae40 /* SceneQuery */;
productType = "com.apple.product-type.library.static";
};
- FFFAd2c944907ff3d2c94490 /* SimulationController */ = {
+ FFFA3cc2f2707f8d3cc2f270 /* SimulationController */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF6d2c944907ff3d2c94490 /* Build configuration list for PBXNativeTarget "SimulationController" */;
+ buildConfigurationList = FFF63cc2f2707f8d3cc2f270 /* Build configuration list for PBXNativeTarget "SimulationController" */;
buildPhases = (
- FFF2d2c944907ff3d2c94490,
- FFF8d2c944907ff3d2c94490,
- FFFCd2c944907ff3d2c94490,
+ FFF23cc2f2707f8d3cc2f270,
+ FFF83cc2f2707f8d3cc2f270,
+ FFFC3cc2f2707f8d3cc2f270,
);
buildRules = (
);
@@ -5125,54 +5125,54 @@
);
name = "SimulationController";
productName = "SimulationController";
- productReference = FFFDd2c944907ff3d2c94490 /* SimulationController */;
+ productReference = FFFD3cc2f2707f8d3cc2f270 /* SimulationController */;
productType = "com.apple.product-type.library.static";
};
- FFFAd2f00d507ff3d2f00d50 /* PhysXCooking */ = {
+ FFFA3cc226e07f8d3cc226e0 /* PhysXCooking */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF6d2f00d507ff3d2f00d50 /* Build configuration list for PBXNativeTarget "PhysXCooking" */;
+ buildConfigurationList = FFF63cc226e07f8d3cc226e0 /* Build configuration list for PBXNativeTarget "PhysXCooking" */;
buildPhases = (
- FFF2d2f00d507ff3d2f00d50,
- FFF8d2f00d507ff3d2f00d50,
- FFFCd2f00d507ff3d2f00d50,
+ FFF23cc226e07f8d3cc226e0,
+ FFF83cc226e07f8d3cc226e0,
+ FFFC3cc226e07f8d3cc226e0,
);
buildRules = (
);
dependencies = (
- FFF4d2f067f07ff3d2f067f0, /* PhysXCommon */
- FFF4d2f097e07ff3d2f097e0, /* PhysXExtensions */
- FFF4d2f005907ff3d2f00590, /* PxFoundation */
+ FFF43cc3d1007f8d3cc3d100, /* PhysXCommon */
+ FFF43cc362a07f8d3cc362a0, /* PhysXExtensions */
+ FFF43cc28dd07f8d3cc28dd0, /* PxFoundation */
);
name = "PhysXCooking";
productName = "PhysXCooking";
- productReference = FFFDd2f00d507ff3d2f00d50 /* PhysXCooking */;
+ productReference = FFFD3cc226e07f8d3cc226e0 /* PhysXCooking */;
productType = "com.apple.product-type.library.static";
};
- FFFAd10a67707ff3d10a6770 /* PhysXCommon */ = {
+ FFFA3c99d3f07f8d3c99d3f0 /* PhysXCommon */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF6d10a67707ff3d10a6770 /* Build configuration list for PBXNativeTarget "PhysXCommon" */;
+ buildConfigurationList = FFF63c99d3f07f8d3c99d3f0 /* Build configuration list for PBXNativeTarget "PhysXCommon" */;
buildPhases = (
- FFF2d10a67707ff3d10a6770,
- FFF8d10a67707ff3d10a6770,
- FFFCd10a67707ff3d10a6770,
+ FFF23c99d3f07f8d3c99d3f0,
+ FFF83c99d3f07f8d3c99d3f0,
+ FFFC3c99d3f07f8d3c99d3f0,
);
buildRules = (
);
dependencies = (
- FFF4d109cf207ff3d109cf20, /* PxFoundation */
+ FFF43c9970407f8d3c997040, /* PxFoundation */
);
name = "PhysXCommon";
productName = "PhysXCommon";
- productReference = FFFDd10a67707ff3d10a6770 /* PhysXCommon */;
+ productReference = FFFD3c99d3f07f8d3c99d3f0 /* PhysXCommon */;
productType = "com.apple.product-type.library.static";
};
- FFFAd108e7507ff3d108e750 /* PxFoundation */ = {
+ FFFA3c9892007f8d3c989200 /* PxFoundation */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF6d108e7507ff3d108e750 /* Build configuration list for PBXNativeTarget "PxFoundation" */;
+ buildConfigurationList = FFF63c9892007f8d3c989200 /* Build configuration list for PBXNativeTarget "PxFoundation" */;
buildPhases = (
- FFF2d108e7507ff3d108e750,
- FFF8d108e7507ff3d108e750,
- FFFCd108e7507ff3d108e750,
+ FFF23c9892007f8d3c989200,
+ FFF83c9892007f8d3c989200,
+ FFFC3c9892007f8d3c989200,
);
buildRules = (
);
@@ -5180,34 +5180,34 @@
);
name = "PxFoundation";
productName = "PxFoundation";
- productReference = FFFDd108e7507ff3d108e750 /* PxFoundation */;
+ productReference = FFFD3c9892007f8d3c989200 /* PxFoundation */;
productType = "com.apple.product-type.library.static";
};
- FFFAd17098707ff3d1709870 /* PxPvdSDK */ = {
+ FFFA3cd0c6b07f8d3cd0c6b0 /* PxPvdSDK */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF6d17098707ff3d1709870 /* Build configuration list for PBXNativeTarget "PxPvdSDK" */;
+ buildConfigurationList = FFF63cd0c6b07f8d3cd0c6b0 /* Build configuration list for PBXNativeTarget "PxPvdSDK" */;
buildPhases = (
- FFF2d17098707ff3d1709870,
- FFF8d17098707ff3d1709870,
- FFFCd17098707ff3d1709870,
+ FFF23cd0c6b07f8d3cd0c6b0,
+ FFF83cd0c6b07f8d3cd0c6b0,
+ FFFC3cd0c6b07f8d3cd0c6b0,
);
buildRules = (
);
dependencies = (
- FFF4d170bd707ff3d170bd70, /* PxFoundation */
+ FFF43cd0b7d07f8d3cd0b7d0, /* PxFoundation */
);
name = "PxPvdSDK";
productName = "PxPvdSDK";
- productReference = FFFDd17098707ff3d1709870 /* PxPvdSDK */;
+ productReference = FFFD3cd0c6b07f8d3cd0c6b0 /* PxPvdSDK */;
productType = "com.apple.product-type.library.static";
};
- FFFAd1610fe07ff3d1610fe0 /* LowLevel */ = {
+ FFFA3cc0c2b07f8d3cc0c2b0 /* LowLevel */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF6d1610fe07ff3d1610fe0 /* Build configuration list for PBXNativeTarget "LowLevel" */;
+ buildConfigurationList = FFF63cc0c2b07f8d3cc0c2b0 /* Build configuration list for PBXNativeTarget "LowLevel" */;
buildPhases = (
- FFF2d1610fe07ff3d1610fe0,
- FFF8d1610fe07ff3d1610fe0,
- FFFCd1610fe07ff3d1610fe0,
+ FFF23cc0c2b07f8d3cc0c2b0,
+ FFF83cc0c2b07f8d3cc0c2b0,
+ FFFC3cc0c2b07f8d3cc0c2b0,
);
buildRules = (
);
@@ -5215,16 +5215,16 @@
);
name = "LowLevel";
productName = "LowLevel";
- productReference = FFFDd1610fe07ff3d1610fe0 /* LowLevel */;
+ productReference = FFFD3cc0c2b07f8d3cc0c2b0 /* LowLevel */;
productType = "com.apple.product-type.library.static";
};
- FFFAd1635bb07ff3d1635bb0 /* LowLevelAABB */ = {
+ FFFA3cf17c907f8d3cf17c90 /* LowLevelAABB */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF6d1635bb07ff3d1635bb0 /* Build configuration list for PBXNativeTarget "LowLevelAABB" */;
+ buildConfigurationList = FFF63cf17c907f8d3cf17c90 /* Build configuration list for PBXNativeTarget "LowLevelAABB" */;
buildPhases = (
- FFF2d1635bb07ff3d1635bb0,
- FFF8d1635bb07ff3d1635bb0,
- FFFCd1635bb07ff3d1635bb0,
+ FFF23cf17c907f8d3cf17c90,
+ FFF83cf17c907f8d3cf17c90,
+ FFFC3cf17c907f8d3cf17c90,
);
buildRules = (
);
@@ -5232,16 +5232,16 @@
);
name = "LowLevelAABB";
productName = "LowLevelAABB";
- productReference = FFFDd1635bb07ff3d1635bb0 /* LowLevelAABB */;
+ productReference = FFFD3cf17c907f8d3cf17c90 /* LowLevelAABB */;
productType = "com.apple.product-type.library.static";
};
- FFFAd14331607ff3d1433160 /* LowLevelDynamics */ = {
+ FFFA3cf3b3a07f8d3cf3b3a0 /* LowLevelDynamics */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF6d14331607ff3d1433160 /* Build configuration list for PBXNativeTarget "LowLevelDynamics" */;
+ buildConfigurationList = FFF63cf3b3a07f8d3cf3b3a0 /* Build configuration list for PBXNativeTarget "LowLevelDynamics" */;
buildPhases = (
- FFF2d14331607ff3d1433160,
- FFF8d14331607ff3d1433160,
- FFFCd14331607ff3d1433160,
+ FFF23cf3b3a07f8d3cf3b3a0,
+ FFF83cf3b3a07f8d3cf3b3a0,
+ FFFC3cf3b3a07f8d3cf3b3a0,
);
buildRules = (
);
@@ -5249,16 +5249,16 @@
);
name = "LowLevelDynamics";
productName = "LowLevelDynamics";
- productReference = FFFDd14331607ff3d1433160 /* LowLevelDynamics */;
+ productReference = FFFD3cf3b3a07f8d3cf3b3a0 /* LowLevelDynamics */;
productType = "com.apple.product-type.library.static";
};
- FFFAd16276007ff3d1627600 /* LowLevelCloth */ = {
+ FFFA3b43b7807f8d3b43b780 /* LowLevelCloth */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF6d16276007ff3d1627600 /* Build configuration list for PBXNativeTarget "LowLevelCloth" */;
+ buildConfigurationList = FFF63b43b7807f8d3b43b780 /* Build configuration list for PBXNativeTarget "LowLevelCloth" */;
buildPhases = (
- FFF2d16276007ff3d1627600,
- FFF8d16276007ff3d1627600,
- FFFCd16276007ff3d1627600,
+ FFF23b43b7807f8d3b43b780,
+ FFF83b43b7807f8d3b43b780,
+ FFFC3b43b7807f8d3b43b780,
);
buildRules = (
);
@@ -5266,16 +5266,16 @@
);
name = "LowLevelCloth";
productName = "LowLevelCloth";
- productReference = FFFDd16276007ff3d1627600 /* LowLevelCloth */;
+ productReference = FFFD3b43b7807f8d3b43b780 /* LowLevelCloth */;
productType = "com.apple.product-type.library.static";
};
- FFFAd1664d207ff3d1664d20 /* LowLevelParticles */ = {
+ FFFA3cf5d0c07f8d3cf5d0c0 /* LowLevelParticles */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF6d1664d207ff3d1664d20 /* Build configuration list for PBXNativeTarget "LowLevelParticles" */;
+ buildConfigurationList = FFF63cf5d0c07f8d3cf5d0c0 /* Build configuration list for PBXNativeTarget "LowLevelParticles" */;
buildPhases = (
- FFF2d1664d207ff3d1664d20,
- FFF8d1664d207ff3d1664d20,
- FFFCd1664d207ff3d1664d20,
+ FFF23cf5d0c07f8d3cf5d0c0,
+ FFF83cf5d0c07f8d3cf5d0c0,
+ FFFC3cf5d0c07f8d3cf5d0c0,
);
buildRules = (
);
@@ -5283,16 +5283,16 @@
);
name = "LowLevelParticles";
productName = "LowLevelParticles";
- productReference = FFFDd1664d207ff3d1664d20 /* LowLevelParticles */;
+ productReference = FFFD3cf5d0c07f8d3cf5d0c0 /* LowLevelParticles */;
productType = "com.apple.product-type.library.static";
};
- FFFAd17372b07ff3d17372b0 /* PxTask */ = {
+ FFFA3b4815b07f8d3b4815b0 /* PxTask */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF6d17372b07ff3d17372b0 /* Build configuration list for PBXNativeTarget "PxTask" */;
+ buildConfigurationList = FFF63b4815b07f8d3b4815b0 /* Build configuration list for PBXNativeTarget "PxTask" */;
buildPhases = (
- FFF2d17372b07ff3d17372b0,
- FFF8d17372b07ff3d17372b0,
- FFFCd17372b07ff3d17372b0,
+ FFF23b4815b07f8d3b4815b0,
+ FFF83b4815b07f8d3b4815b0,
+ FFFC3b4815b07f8d3b4815b0,
);
buildRules = (
);
@@ -5300,16 +5300,16 @@
);
name = "PxTask";
productName = "PxTask";
- productReference = FFFDd17372b07ff3d17372b0 /* PxTask */;
+ productReference = FFFD3b4815b07f8d3b4815b0 /* PxTask */;
productType = "com.apple.product-type.library.static";
};
- FFFAd2c601707ff3d2c60170 /* PsFastXml */ = {
+ FFFA3dac6c007f8d3dac6c00 /* PsFastXml */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF6d2c601707ff3d2c60170 /* Build configuration list for PBXNativeTarget "PsFastXml" */;
+ buildConfigurationList = FFF63dac6c007f8d3dac6c00 /* Build configuration list for PBXNativeTarget "PsFastXml" */;
buildPhases = (
- FFF2d2c601707ff3d2c60170,
- FFF8d2c601707ff3d2c60170,
- FFFCd2c601707ff3d2c60170,
+ FFF23dac6c007f8d3dac6c00,
+ FFF83dac6c007f8d3dac6c00,
+ FFFC3dac6c007f8d3dac6c00,
);
buildRules = (
);
@@ -5317,213 +5317,213 @@
);
name = "PsFastXml";
productName = "PsFastXml";
- productReference = FFFDd2c601707ff3d2c60170 /* PsFastXml */;
+ productReference = FFFD3dac6c007f8d3dac6c00 /* PsFastXml */;
productType = "com.apple.product-type.library.static";
};
/* End PBXNativeTarget section */
/* Begin XCConfigurationList section */
- FFF6d2c639507ff3d2c63950 = {
+ FFF63daca7207f8d3daca720 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF7d3809c007ff3d3809c00,
- FFF7d380a2f07ff3d380a2f0,
- FFF7d380a9e07ff3d380a9e0,
- FFF7d380b0d07ff3d380b0d0,
+ FFF73c1c9a007f8d3c1c9a00,
+ FFF73c1ca0f07f8d3c1ca0f0,
+ FFF73c1ca7e07f8d3c1ca7e0,
+ FFF73c1caed07f8d3c1caed0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "release";
};
- FFF6d2c6c5107ff3d2c6c510 = {
+ FFF63dad32e07f8d3dad32e0 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF7d380b8007ff3d380b800,
- FFF7d380bef07ff3d380bef0,
- FFF7d380c5e07ff3d380c5e0,
- FFF7d380ccd07ff3d380ccd0,
+ FFF73c1cb6007f8d3c1cb600,
+ FFF73c1cbcf07f8d3c1cbcf0,
+ FFF73c1cc3e07f8d3c1cc3e0,
+ FFF73c1ccad07f8d3c1ccad0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
- FFF6d2c6d8507ff3d2c6d850 = {
+ FFF63dad46207f8d3dad4620 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF7d380d4007ff3d380d400,
- FFF7d380daf07ff3d380daf0,
- FFF7d380e1e07ff3d380e1e0,
- FFF7d380e8d07ff3d380e8d0,
+ FFF73c1cd2007f8d3c1cd200,
+ FFF73c1cd8f07f8d3c1cd8f0,
+ FFF73c1cdfe07f8d3c1cdfe0,
+ FFF73c1ce6d07f8d3c1ce6d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
- FFF6d2c7d5c07ff3d2c7d5c0 = {
+ FFF63dae43907f8d3dae4390 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF7d380f0007ff3d380f000,
- FFF7d380f6f07ff3d380f6f0,
- FFF7d380fde07ff3d380fde0,
- FFF7d38104d07ff3d38104d0,
+ FFF73c1cee007f8d3c1cee00,
+ FFF73c1cf4f07f8d3c1cf4f0,
+ FFF73c1cfbe07f8d3c1cfbe0,
+ FFF73c1d02d07f8d3c1d02d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
- FFF6d2c8ff407ff3d2c8ff40 = {
+ FFF63cc2ae407f8d3cc2ae40 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF7d3810c007ff3d3810c00,
- FFF7d38112f07ff3d38112f0,
- FFF7d38119e07ff3d38119e0,
- FFF7d38120d07ff3d38120d0,
+ FFF73c1d0a007f8d3c1d0a00,
+ FFF73c1d10f07f8d3c1d10f0,
+ FFF73c1d17e07f8d3c1d17e0,
+ FFF73c1d1ed07f8d3c1d1ed0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
- FFF6d2c944907ff3d2c94490 = {
+ FFF63cc2f2707f8d3cc2f270 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF7d38128007ff3d3812800,
- FFF7d3812ef07ff3d3812ef0,
- FFF7d38135e07ff3d38135e0,
- FFF7d3813cd07ff3d3813cd0,
+ FFF73c1d26007f8d3c1d2600,
+ FFF73c1d2cf07f8d3c1d2cf0,
+ FFF73c1d33e07f8d3c1d33e0,
+ FFF73c1d3ad07f8d3c1d3ad0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
- FFF6d2f00d507ff3d2f00d50 = {
+ FFF63cc226e07f8d3cc226e0 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF7d38144007ff3d3814400,
- FFF7d3814af07ff3d3814af0,
- FFF7d38151e07ff3d38151e0,
- FFF7d38158d07ff3d38158d0,
+ FFF73c1d42007f8d3c1d4200,
+ FFF73c1d48f07f8d3c1d48f0,
+ FFF73c1d4fe07f8d3c1d4fe0,
+ FFF73c1d56d07f8d3c1d56d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "release";
};
- FFF6d10a67707ff3d10a6770 = {
+ FFF63c99d3f07f8d3c99d3f0 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF7d18110007ff3d1811000,
- FFF7d18116f07ff3d18116f0,
- FFF7d1811de07ff3d1811de0,
- FFF7d18124d07ff3d18124d0,
+ FFF73b813a007f8d3b813a00,
+ FFF73b8140f07f8d3b8140f0,
+ FFF73b8147e07f8d3b8147e0,
+ FFF73b814ed07f8d3b814ed0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "release";
};
- FFF6d108e7507ff3d108e750 = {
+ FFF63c9892007f8d3c989200 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF7d09a88007ff3d09a8800,
- FFF7d09a8ef07ff3d09a8ef0,
- FFF7d09a95e07ff3d09a95e0,
- FFF7d09a9cd07ff3d09a9cd0,
+ FFF73c1a66007f8d3c1a6600,
+ FFF73c1a6cf07f8d3c1a6cf0,
+ FFF73c1a73e07f8d3c1a73e0,
+ FFF73c1a7ad07f8d3c1a7ad0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
- FFF6d17098707ff3d1709870 = {
+ FFF63cd0c6b07f8d3cd0c6b0 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF7d20126007ff3d2012600,
- FFF7d2012cf07ff3d2012cf0,
- FFF7d20133e07ff3d20133e0,
- FFF7d2013ad07ff3d2013ad0,
+ FFF73d02b2007f8d3d02b200,
+ FFF73d02b8f07f8d3d02b8f0,
+ FFF73d02bfe07f8d3d02bfe0,
+ FFF73d02c6d07f8d3d02c6d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
- FFF6d1610fe07ff3d1610fe0 = {
+ FFF63cc0c2b07f8d3cc0c2b0 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF7d09d96007ff3d09d9600,
- FFF7d09d9cf07ff3d09d9cf0,
- FFF7d09da3e07ff3d09da3e0,
- FFF7d09daad07ff3d09daad0,
+ FFF73c1b8e007f8d3c1b8e00,
+ FFF73c1b94f07f8d3c1b94f0,
+ FFF73c1b9be07f8d3c1b9be0,
+ FFF73c1ba2d07f8d3c1ba2d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
- FFF6d1635bb07ff3d1635bb0 = {
+ FFF63cf17c907f8d3cf17c90 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF7d09de8007ff3d09de800,
- FFF7d09deef07ff3d09deef0,
- FFF7d09df5e07ff3d09df5e0,
- FFF7d09dfcd07ff3d09dfcd0,
+ FFF73d0380007f8d3d038000,
+ FFF73d0386f07f8d3d0386f0,
+ FFF73d038de07f8d3d038de0,
+ FFF73d0394d07f8d3d0394d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
- FFF6d14331607ff3d1433160 = {
+ FFF63cf3b3a07f8d3cf3b3a0 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF7d181b4007ff3d181b400,
- FFF7d181baf07ff3d181baf0,
- FFF7d181c1e07ff3d181c1e0,
- FFF7d181c8d07ff3d181c8d0,
+ FFF73d0424007f8d3d042400,
+ FFF73d042af07f8d3d042af0,
+ FFF73d0431e07f8d3d0431e0,
+ FFF73d0438d07f8d3d0438d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
- FFF6d16276007ff3d1627600 = {
+ FFF63b43b7807f8d3b43b780 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF7d09e7a007ff3d09e7a00,
- FFF7d09e80f07ff3d09e80f0,
- FFF7d09e87e07ff3d09e87e0,
- FFF7d09e8ed07ff3d09e8ed0,
+ FFF73b81e2007f8d3b81e200,
+ FFF73b81e8f07f8d3b81e8f0,
+ FFF73b81efe07f8d3b81efe0,
+ FFF73b81f6d07f8d3b81f6d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
- FFF6d1664d207ff3d1664d20 = {
+ FFF63cf5d0c07f8d3cf5d0c0 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF7d09f26007ff3d09f2600,
- FFF7d09f2cf07ff3d09f2cf0,
- FFF7d09f33e07ff3d09f33e0,
- FFF7d09f3ad07ff3d09f3ad0,
+ FFF73d04ce007f8d3d04ce00,
+ FFF73d04d4f07f8d3d04d4f0,
+ FFF73d04dbe07f8d3d04dbe0,
+ FFF73d04e2d07f8d3d04e2d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
- FFF6d17372b07ff3d17372b0 = {
+ FFF63b4815b07f8d3b4815b0 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF7d201be007ff3d201be00,
- FFF7d201c4f07ff3d201c4f0,
- FFF7d201cbe07ff3d201cbe0,
- FFF7d201d2d07ff3d201d2d0,
+ FFF73b825a007f8d3b825a00,
+ FFF73b8260f07f8d3b8260f0,
+ FFF73b8267e07f8d3b8267e0,
+ FFF73b826ed07f8d3b826ed0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
- FFF6d2c601707ff3d2c60170 = {
+ FFF63dac6c007f8d3dac6c00 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF7d0a166007ff3d0a16600,
- FFF7d0a16cf07ff3d0a16cf0,
- FFF7d0a173e07ff3d0a173e0,
- FFF7d0a17ad07ff3d0a17ad0,
+ FFF73d06fc007f8d3d06fc00,
+ FFF73d0702f07f8d3d0702f0,
+ FFF73d0709e07f8d3d0709e0,
+ FFF73d0710d07f8d3d0710d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
- FFF6d047d1a07ff3d047d1a0 = {
+ FFF63b5766707f8d3b576670 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF3d3809c007ff3d3809c00 /* release */,
- FFF3d380a2f07ff3d380a2f0 /* debug */,
- FFF3d380a9e07ff3d380a9e0 /* checked */,
- FFF3d380b0d07ff3d380b0d0 /* profile */,
+ FFF33c1c9a007f8d3c1c9a00 /* release */,
+ FFF33c1ca0f07f8d3c1ca0f0 /* debug */,
+ FFF33c1ca7e07f8d3c1ca7e0 /* checked */,
+ FFF33c1caed07f8d3c1caed0 /* profile */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "release";
};
/* End XCConfigurationList section */
/* Begin XCBuildConfiguration section */
- FFF7d3809c007ff3d3809c00 /* release */ = {
+ FFF73c1c9a007f8d3c1c9a00 /* 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;
@@ -5553,7 +5553,7 @@
};
name = "release";
};
- FFF7d380a2f07ff3d380a2f0 /* debug */ = {
+ FFF73c1ca0f07f8d3c1ca0f0 /* 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;
@@ -5583,7 +5583,7 @@
};
name = "debug";
};
- FFF7d380a9e07ff3d380a9e0 /* checked */ = {
+ FFF73c1ca7e07f8d3c1ca7e0 /* 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;
@@ -5613,7 +5613,7 @@
};
name = "checked";
};
- FFF7d380b0d07ff3d380b0d0 /* profile */ = {
+ FFF73c1caed07f8d3c1caed0 /* 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;
@@ -5643,7 +5643,7 @@
};
name = "profile";
};
- FFF7d380b8007ff3d380b800 /* debug */ = {
+ FFF73c1cb6007f8d3c1cb600 /* 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;
@@ -5673,7 +5673,7 @@
};
name = "debug";
};
- FFF7d380bef07ff3d380bef0 /* checked */ = {
+ FFF73c1cbcf07f8d3c1cbcf0 /* 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;
@@ -5703,7 +5703,7 @@
};
name = "checked";
};
- FFF7d380c5e07ff3d380c5e0 /* profile */ = {
+ FFF73c1cc3e07f8d3c1cc3e0 /* 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;
@@ -5733,7 +5733,7 @@
};
name = "profile";
};
- FFF7d380ccd07ff3d380ccd0 /* release */ = {
+ FFF73c1ccad07f8d3c1ccad0 /* 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;
@@ -5763,7 +5763,7 @@
};
name = "release";
};
- FFF7d380d4007ff3d380d400 /* debug */ = {
+ FFF73c1cd2007f8d3c1cd200 /* 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;
@@ -5793,7 +5793,7 @@
};
name = "debug";
};
- FFF7d380daf07ff3d380daf0 /* checked */ = {
+ FFF73c1cd8f07f8d3c1cd8f0 /* 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;
@@ -5823,7 +5823,7 @@
};
name = "checked";
};
- FFF7d380e1e07ff3d380e1e0 /* profile */ = {
+ FFF73c1cdfe07f8d3c1cdfe0 /* 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;
@@ -5853,7 +5853,7 @@
};
name = "profile";
};
- FFF7d380e8d07ff3d380e8d0 /* release */ = {
+ FFF73c1ce6d07f8d3c1ce6d0 /* 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;
@@ -5883,7 +5883,7 @@
};
name = "release";
};
- FFF7d380f0007ff3d380f000 /* debug */ = {
+ FFF73c1cee007f8d3c1cee00 /* 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;
@@ -5913,7 +5913,7 @@
};
name = "debug";
};
- FFF7d380f6f07ff3d380f6f0 /* checked */ = {
+ FFF73c1cf4f07f8d3c1cf4f0 /* 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;
@@ -5943,7 +5943,7 @@
};
name = "checked";
};
- FFF7d380fde07ff3d380fde0 /* profile */ = {
+ FFF73c1cfbe07f8d3c1cfbe0 /* 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;
@@ -5973,7 +5973,7 @@
};
name = "profile";
};
- FFF7d38104d07ff3d38104d0 /* release */ = {
+ FFF73c1d02d07f8d3c1d02d0 /* 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;
@@ -6003,7 +6003,7 @@
};
name = "release";
};
- FFF7d3810c007ff3d3810c00 /* debug */ = {
+ FFF73c1d0a007f8d3c1d0a00 /* 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;
@@ -6033,7 +6033,7 @@
};
name = "debug";
};
- FFF7d38112f07ff3d38112f0 /* checked */ = {
+ FFF73c1d10f07f8d3c1d10f0 /* 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;
@@ -6063,7 +6063,7 @@
};
name = "checked";
};
- FFF7d38119e07ff3d38119e0 /* profile */ = {
+ FFF73c1d17e07f8d3c1d17e0 /* 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;
@@ -6093,7 +6093,7 @@
};
name = "profile";
};
- FFF7d38120d07ff3d38120d0 /* release */ = {
+ FFF73c1d1ed07f8d3c1d1ed0 /* 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;
@@ -6123,7 +6123,7 @@
};
name = "release";
};
- FFF7d38128007ff3d3812800 /* debug */ = {
+ FFF73c1d26007f8d3c1d2600 /* 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;
@@ -6153,7 +6153,7 @@
};
name = "debug";
};
- FFF7d3812ef07ff3d3812ef0 /* checked */ = {
+ FFF73c1d2cf07f8d3c1d2cf0 /* 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;
@@ -6183,7 +6183,7 @@
};
name = "checked";
};
- FFF7d38135e07ff3d38135e0 /* profile */ = {
+ FFF73c1d33e07f8d3c1d33e0 /* 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;
@@ -6213,7 +6213,7 @@
};
name = "profile";
};
- FFF7d3813cd07ff3d3813cd0 /* release */ = {
+ FFF73c1d3ad07f8d3c1d3ad0 /* 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;
@@ -6243,7 +6243,7 @@
};
name = "release";
};
- FFF7d38144007ff3d3814400 /* release */ = {
+ FFF73c1d42007f8d3c1d4200 /* 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;
@@ -6273,7 +6273,7 @@
};
name = "release";
};
- FFF7d3814af07ff3d3814af0 /* debug */ = {
+ FFF73c1d48f07f8d3c1d48f0 /* 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;
@@ -6303,7 +6303,7 @@
};
name = "debug";
};
- FFF7d38151e07ff3d38151e0 /* checked */ = {
+ FFF73c1d4fe07f8d3c1d4fe0 /* 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;
@@ -6333,7 +6333,7 @@
};
name = "checked";
};
- FFF7d38158d07ff3d38158d0 /* profile */ = {
+ FFF73c1d56d07f8d3c1d56d0 /* 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;
@@ -6363,7 +6363,7 @@
};
name = "profile";
};
- FFF7d18110007ff3d1811000 /* release */ = {
+ FFF73b813a007f8d3b813a00 /* 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;
@@ -6393,7 +6393,7 @@
};
name = "release";
};
- FFF7d18116f07ff3d18116f0 /* debug */ = {
+ FFF73b8140f07f8d3b8140f0 /* 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;
@@ -6423,7 +6423,7 @@
};
name = "debug";
};
- FFF7d1811de07ff3d1811de0 /* checked */ = {
+ FFF73b8147e07f8d3b8147e0 /* 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;
@@ -6453,7 +6453,7 @@
};
name = "checked";
};
- FFF7d18124d07ff3d18124d0 /* profile */ = {
+ FFF73b814ed07f8d3b814ed0 /* 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;
@@ -6483,7 +6483,7 @@
};
name = "profile";
};
- FFF7d09a88007ff3d09a8800 /* debug */ = {
+ FFF73c1a66007f8d3c1a6600 /* 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;
@@ -6513,7 +6513,7 @@
};
name = "debug";
};
- FFF7d09a8ef07ff3d09a8ef0 /* release */ = {
+ FFF73c1a6cf07f8d3c1a6cf0 /* 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;
@@ -6543,7 +6543,7 @@
};
name = "release";
};
- FFF7d09a95e07ff3d09a95e0 /* checked */ = {
+ FFF73c1a73e07f8d3c1a73e0 /* 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;
@@ -6573,7 +6573,7 @@
};
name = "checked";
};
- FFF7d09a9cd07ff3d09a9cd0 /* profile */ = {
+ FFF73c1a7ad07f8d3c1a7ad0 /* 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;
@@ -6603,7 +6603,7 @@
};
name = "profile";
};
- FFF7d20126007ff3d2012600 /* debug */ = {
+ FFF73d02b2007f8d3d02b200 /* 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;
@@ -6633,7 +6633,7 @@
};
name = "debug";
};
- FFF7d2012cf07ff3d2012cf0 /* release */ = {
+ FFF73d02b8f07f8d3d02b8f0 /* 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;
@@ -6663,7 +6663,7 @@
};
name = "release";
};
- FFF7d20133e07ff3d20133e0 /* checked */ = {
+ FFF73d02bfe07f8d3d02bfe0 /* 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;
@@ -6693,7 +6693,7 @@
};
name = "checked";
};
- FFF7d2013ad07ff3d2013ad0 /* profile */ = {
+ FFF73d02c6d07f8d3d02c6d0 /* 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;
@@ -6723,7 +6723,7 @@
};
name = "profile";
};
- FFF7d09d96007ff3d09d9600 /* debug */ = {
+ FFF73c1b8e007f8d3c1b8e00 /* 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;
@@ -6753,7 +6753,7 @@
};
name = "debug";
};
- FFF7d09d9cf07ff3d09d9cf0 /* checked */ = {
+ FFF73c1b94f07f8d3c1b94f0 /* 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;
@@ -6783,7 +6783,7 @@
};
name = "checked";
};
- FFF7d09da3e07ff3d09da3e0 /* profile */ = {
+ FFF73c1b9be07f8d3c1b9be0 /* 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;
@@ -6813,7 +6813,7 @@
};
name = "profile";
};
- FFF7d09daad07ff3d09daad0 /* release */ = {
+ FFF73c1ba2d07f8d3c1ba2d0 /* 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;
@@ -6843,7 +6843,7 @@
};
name = "release";
};
- FFF7d09de8007ff3d09de800 /* debug */ = {
+ FFF73d0380007f8d3d038000 /* 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;
@@ -6873,7 +6873,7 @@
};
name = "debug";
};
- FFF7d09deef07ff3d09deef0 /* checked */ = {
+ FFF73d0386f07f8d3d0386f0 /* 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;
@@ -6903,7 +6903,7 @@
};
name = "checked";
};
- FFF7d09df5e07ff3d09df5e0 /* profile */ = {
+ FFF73d038de07f8d3d038de0 /* 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;
@@ -6933,7 +6933,7 @@
};
name = "profile";
};
- FFF7d09dfcd07ff3d09dfcd0 /* release */ = {
+ FFF73d0394d07f8d3d0394d0 /* 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;
@@ -6963,7 +6963,7 @@
};
name = "release";
};
- FFF7d181b4007ff3d181b400 /* debug */ = {
+ FFF73d0424007f8d3d042400 /* 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;
@@ -6993,7 +6993,7 @@
};
name = "debug";
};
- FFF7d181baf07ff3d181baf0 /* checked */ = {
+ FFF73d042af07f8d3d042af0 /* 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;
@@ -7023,7 +7023,7 @@
};
name = "checked";
};
- FFF7d181c1e07ff3d181c1e0 /* profile */ = {
+ FFF73d0431e07f8d3d0431e0 /* 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;
@@ -7053,7 +7053,7 @@
};
name = "profile";
};
- FFF7d181c8d07ff3d181c8d0 /* release */ = {
+ FFF73d0438d07f8d3d0438d0 /* 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;
@@ -7083,7 +7083,7 @@
};
name = "release";
};
- FFF7d09e7a007ff3d09e7a00 /* debug */ = {
+ FFF73b81e2007f8d3b81e200 /* 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;
@@ -7113,7 +7113,7 @@
};
name = "debug";
};
- FFF7d09e80f07ff3d09e80f0 /* checked */ = {
+ FFF73b81e8f07f8d3b81e8f0 /* 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;
@@ -7143,7 +7143,7 @@
};
name = "checked";
};
- FFF7d09e87e07ff3d09e87e0 /* profile */ = {
+ FFF73b81efe07f8d3b81efe0 /* 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;
@@ -7173,7 +7173,7 @@
};
name = "profile";
};
- FFF7d09e8ed07ff3d09e8ed0 /* release */ = {
+ FFF73b81f6d07f8d3b81f6d0 /* 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;
@@ -7203,7 +7203,7 @@
};
name = "release";
};
- FFF7d09f26007ff3d09f2600 /* debug */ = {
+ FFF73d04ce007f8d3d04ce00 /* 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;
@@ -7233,7 +7233,7 @@
};
name = "debug";
};
- FFF7d09f2cf07ff3d09f2cf0 /* checked */ = {
+ FFF73d04d4f07f8d3d04d4f0 /* 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;
@@ -7263,7 +7263,7 @@
};
name = "checked";
};
- FFF7d09f33e07ff3d09f33e0 /* profile */ = {
+ FFF73d04dbe07f8d3d04dbe0 /* 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;
@@ -7293,7 +7293,7 @@
};
name = "profile";
};
- FFF7d09f3ad07ff3d09f3ad0 /* release */ = {
+ FFF73d04e2d07f8d3d04e2d0 /* 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;
@@ -7323,7 +7323,7 @@
};
name = "release";
};
- FFF7d201be007ff3d201be00 /* debug */ = {
+ FFF73b825a007f8d3b825a00 /* 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;
@@ -7353,7 +7353,7 @@
};
name = "debug";
};
- FFF7d201c4f07ff3d201c4f0 /* release */ = {
+ FFF73b8260f07f8d3b8260f0 /* 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;
@@ -7383,7 +7383,7 @@
};
name = "release";
};
- FFF7d201cbe07ff3d201cbe0 /* checked */ = {
+ FFF73b8267e07f8d3b8267e0 /* 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;
@@ -7413,7 +7413,7 @@
};
name = "checked";
};
- FFF7d201d2d07ff3d201d2d0 /* profile */ = {
+ FFF73b826ed07f8d3b826ed0 /* 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;
@@ -7443,7 +7443,7 @@
};
name = "profile";
};
- FFF7d0a166007ff3d0a16600 /* debug */ = {
+ FFF73d06fc007f8d3d06fc00 /* 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;
@@ -7473,7 +7473,7 @@
};
name = "debug";
};
- FFF7d0a16cf07ff3d0a16cf0 /* release */ = {
+ FFF73d0702f07f8d3d0702f0 /* 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;
@@ -7503,7 +7503,7 @@
};
name = "release";
};
- FFF7d0a173e07ff3d0a173e0 /* checked */ = {
+ FFF73d0709e07f8d3d0709e0 /* 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;
@@ -7533,7 +7533,7 @@
};
name = "checked";
};
- FFF7d0a17ad07ff3d0a17ad0 /* profile */ = {
+ FFF73d0710d07f8d3d0710d0 /* 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;
@@ -7563,25 +7563,25 @@
};
name = "profile";
};
- FFF3d3809c007ff3d3809c00 /* release */ = {
+ FFF33c1c9a007f8d3c1c9a00 /* release */ = {
isa = XCBuildConfiguration;
buildSettings = {
};
name = "release";
};
- FFF3d380a2f07ff3d380a2f0 /* debug */ = {
+ FFF33c1ca0f07f8d3c1ca0f0 /* debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
};
name = "debug";
};
- FFF3d380a9e07ff3d380a9e0 /* checked */ = {
+ FFF33c1ca7e07f8d3c1ca7e0 /* checked */ = {
isa = XCBuildConfiguration;
buildSettings = {
};
name = "checked";
};
- FFF3d380b0d07ff3d380b0d0 /* profile */ = {
+ FFF33c1caed07f8d3c1caed0 /* profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
};
@@ -7590,34 +7590,34 @@
/* End XCBuildConfiguration section */
/* Begin PBXProject section */
- FFF9d047d1a07ff3d047d1a0 /* Project object */ = {
+ FFF93b5766707f8d3b576670 /* Project object */ = {
isa = PBXProject;
- buildConfigurationList = FFF6d047d1a07ff3d047d1a0 /* Build configuration list for PBXProject PhysX */;
+ buildConfigurationList = FFF63b5766707f8d3b576670 /* Build configuration list for PBXProject PhysX */;
compatibilityVersion = "Xcode 3.2";
hasScannedForEncodings = 1;
- mainGroup = FFFBd047d2087ff3d047d208 /* PhysX */;
+ mainGroup = FFFB3b5766d87f8d3b5766d8 /* PhysX */;
targets = (
- FFFAd2c639507ff3d2c63950,
- FFFAd2c6c5107ff3d2c6c510,
- FFFAd2c6d8507ff3d2c6d850,
- FFFAd2c7d5c07ff3d2c7d5c0,
- FFFAd2c8ff407ff3d2c8ff40,
- FFFAd2c944907ff3d2c94490,
- FFFAd2f00d507ff3d2f00d50,
- FFFAd10a67707ff3d10a6770,
- FFFAd108e7507ff3d108e750,
- FFFAd17098707ff3d1709870,
- FFFAd1610fe07ff3d1610fe0,
- FFFAd1635bb07ff3d1635bb0,
- FFFAd14331607ff3d1433160,
- FFFAd16276007ff3d1627600,
- FFFAd1664d207ff3d1664d20,
- FFFAd17372b07ff3d17372b0,
- FFFAd2c601707ff3d2c60170,
+ FFFA3daca7207f8d3daca720,
+ FFFA3dad32e07f8d3dad32e0,
+ FFFA3dad46207f8d3dad4620,
+ FFFA3dae43907f8d3dae4390,
+ FFFA3cc2ae407f8d3cc2ae40,
+ FFFA3cc2f2707f8d3cc2f270,
+ FFFA3cc226e07f8d3cc226e0,
+ FFFA3c99d3f07f8d3c99d3f0,
+ FFFA3c9892007f8d3c989200,
+ FFFA3cd0c6b07f8d3cd0c6b0,
+ FFFA3cc0c2b07f8d3cc0c2b0,
+ FFFA3cf17c907f8d3cf17c90,
+ FFFA3cf3b3a07f8d3cf3b3a0,
+ FFFA3b43b7807f8d3b43b780,
+ FFFA3cf5d0c07f8d3cf5d0c0,
+ FFFA3b4815b07f8d3b4815b0,
+ FFFA3dac6c007f8d3dac6c00,
);
};
/* End PBXProject section */
};
- rootObject = FFF9d047d1a07ff3d047d1a0 /* Project object */;
+ rootObject = FFF93b5766707f8d3b576670 /* 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 56f6fe89..abdc6533 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 */
- FFFF04b26c807fef04b26c80 /* SceneQuery in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD04b4a4f07fef04b4a4f0 /* SceneQuery */; };
- FFFF04b26ce07fef04b26ce0 /* SimulationController in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD04b4ea707fef04b4ea70 /* SimulationController */; };
- FFFF040586387fef04058638 /* NpActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD040586387fef04058638 /* NpActor.cpp */; };
- FFFF040586a07fef040586a0 /* NpAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD040586a07fef040586a0 /* NpAggregate.cpp */; };
- FFFF040587087fef04058708 /* NpArticulation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD040587087fef04058708 /* NpArticulation.cpp */; };
- FFFF040587707fef04058770 /* NpArticulationJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD040587707fef04058770 /* NpArticulationJoint.cpp */; };
- FFFF040587d87fef040587d8 /* NpArticulationLink.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD040587d87fef040587d8 /* NpArticulationLink.cpp */; };
- FFFF040588407fef04058840 /* NpBatchQuery.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD040588407fef04058840 /* NpBatchQuery.cpp */; };
- FFFF040588a87fef040588a8 /* NpConstraint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD040588a87fef040588a8 /* NpConstraint.cpp */; };
- FFFF040589107fef04058910 /* NpFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD040589107fef04058910 /* NpFactory.cpp */; };
- FFFF040589787fef04058978 /* NpMaterial.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD040589787fef04058978 /* NpMaterial.cpp */; };
- FFFF040589e07fef040589e0 /* NpMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD040589e07fef040589e0 /* NpMetaData.cpp */; };
- FFFF04058a487fef04058a48 /* NpPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD04058a487fef04058a48 /* NpPhysics.cpp */; };
- FFFF04058ab07fef04058ab0 /* NpPvdSceneQueryCollector.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD04058ab07fef04058ab0 /* NpPvdSceneQueryCollector.cpp */; };
- FFFF04058b187fef04058b18 /* NpReadCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD04058b187fef04058b18 /* NpReadCheck.cpp */; };
- FFFF04058b807fef04058b80 /* NpRigidDynamic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD04058b807fef04058b80 /* NpRigidDynamic.cpp */; };
- FFFF04058be87fef04058be8 /* NpRigidStatic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD04058be87fef04058be8 /* NpRigidStatic.cpp */; };
- FFFF04058c507fef04058c50 /* NpScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD04058c507fef04058c50 /* NpScene.cpp */; };
- FFFF04058cb87fef04058cb8 /* NpSceneQueries.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD04058cb87fef04058cb8 /* NpSceneQueries.cpp */; };
- FFFF04058d207fef04058d20 /* NpSerializerAdapter.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD04058d207fef04058d20 /* NpSerializerAdapter.cpp */; };
- FFFF04058d887fef04058d88 /* NpShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD04058d887fef04058d88 /* NpShape.cpp */; };
- FFFF04058df07fef04058df0 /* NpShapeManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD04058df07fef04058df0 /* NpShapeManager.cpp */; };
- FFFF04058e587fef04058e58 /* NpSpatialIndex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD04058e587fef04058e58 /* NpSpatialIndex.cpp */; };
- FFFF04058ec07fef04058ec0 /* NpVolumeCache.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD04058ec07fef04058ec0 /* NpVolumeCache.cpp */; };
- FFFF04058f287fef04058f28 /* NpWriteCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD04058f287fef04058f28 /* NpWriteCheck.cpp */; };
- FFFF04058f907fef04058f90 /* PvdMetaDataPvdBinding.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD04058f907fef04058f90 /* PvdMetaDataPvdBinding.cpp */; };
- FFFF04058ff87fef04058ff8 /* PvdPhysicsClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD04058ff87fef04058ff8 /* PvdPhysicsClient.cpp */; };
- FFFF040592007fef04059200 /* particles/NpParticleFluid.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD040592007fef04059200 /* particles/NpParticleFluid.cpp */; };
- FFFF040592687fef04059268 /* particles/NpParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD040592687fef04059268 /* particles/NpParticleSystem.cpp */; };
- FFFF04059a207fef04059a20 /* buffering/ScbActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD04059a207fef04059a20 /* buffering/ScbActor.cpp */; };
- FFFF04059a887fef04059a88 /* buffering/ScbAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD04059a887fef04059a88 /* buffering/ScbAggregate.cpp */; };
- FFFF04059af07fef04059af0 /* buffering/ScbBase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD04059af07fef04059af0 /* buffering/ScbBase.cpp */; };
- FFFF04059b587fef04059b58 /* buffering/ScbCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD04059b587fef04059b58 /* buffering/ScbCloth.cpp */; };
- FFFF04059bc07fef04059bc0 /* buffering/ScbMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD04059bc07fef04059bc0 /* buffering/ScbMetaData.cpp */; };
- FFFF04059c287fef04059c28 /* buffering/ScbParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD04059c287fef04059c28 /* buffering/ScbParticleSystem.cpp */; };
- FFFF04059c907fef04059c90 /* buffering/ScbScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD04059c907fef04059c90 /* buffering/ScbScene.cpp */; };
- FFFF04059cf87fef04059cf8 /* buffering/ScbScenePvdClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD04059cf87fef04059cf8 /* buffering/ScbScenePvdClient.cpp */; };
- FFFF04059d607fef04059d60 /* buffering/ScbShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD04059d607fef04059d60 /* buffering/ScbShape.cpp */; };
- FFFF04059f007fef04059f00 /* cloth/NpCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD04059f007fef04059f00 /* cloth/NpCloth.cpp */; };
- FFFF04059f687fef04059f68 /* cloth/NpClothFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD04059f687fef04059f68 /* cloth/NpClothFabric.cpp */; };
- FFFF04059fd07fef04059fd0 /* cloth/NpClothParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD04059fd07fef04059fd0 /* cloth/NpClothParticleData.cpp */; };
- FFFF0405a0387fef0405a038 /* ../../ImmediateMode/src/NpImmediateMode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0405a0387fef0405a038 /* ../../ImmediateMode/src/NpImmediateMode.cpp */; };
- FFFF0405ffa87fef0405ffa8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD0405ffa87fef0405ffa8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */; };
- FFFF040600107fef04060010 /* core/src/PxMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD040600107fef04060010 /* core/src/PxMetaDataObjects.cpp */; };
+ FFFFf3934ee07fb0f3934ee0 /* SceneQuery in Frameworks */= { isa = PBXBuildFile; fileRef = FFFDf3972c407fb0f3972c40 /* SceneQuery */; };
+ FFFFf3934f407fb0f3934f40 /* SimulationController in Frameworks */= { isa = PBXBuildFile; fileRef = FFFDf39771c07fb0f39771c0 /* SimulationController */; };
+ FFFFf48224387fb0f4822438 /* NpActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf48224387fb0f4822438 /* NpActor.cpp */; };
+ FFFFf48224a07fb0f48224a0 /* NpAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf48224a07fb0f48224a0 /* NpAggregate.cpp */; };
+ FFFFf48225087fb0f4822508 /* NpArticulation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf48225087fb0f4822508 /* NpArticulation.cpp */; };
+ FFFFf48225707fb0f4822570 /* NpArticulationJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf48225707fb0f4822570 /* NpArticulationJoint.cpp */; };
+ FFFFf48225d87fb0f48225d8 /* NpArticulationLink.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf48225d87fb0f48225d8 /* NpArticulationLink.cpp */; };
+ FFFFf48226407fb0f4822640 /* NpBatchQuery.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf48226407fb0f4822640 /* NpBatchQuery.cpp */; };
+ FFFFf48226a87fb0f48226a8 /* NpConstraint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf48226a87fb0f48226a8 /* NpConstraint.cpp */; };
+ FFFFf48227107fb0f4822710 /* NpFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf48227107fb0f4822710 /* NpFactory.cpp */; };
+ FFFFf48227787fb0f4822778 /* NpMaterial.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf48227787fb0f4822778 /* NpMaterial.cpp */; };
+ FFFFf48227e07fb0f48227e0 /* NpMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf48227e07fb0f48227e0 /* NpMetaData.cpp */; };
+ FFFFf48228487fb0f4822848 /* NpPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf48228487fb0f4822848 /* NpPhysics.cpp */; };
+ FFFFf48228b07fb0f48228b0 /* NpPvdSceneQueryCollector.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf48228b07fb0f48228b0 /* NpPvdSceneQueryCollector.cpp */; };
+ FFFFf48229187fb0f4822918 /* NpReadCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf48229187fb0f4822918 /* NpReadCheck.cpp */; };
+ FFFFf48229807fb0f4822980 /* NpRigidDynamic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf48229807fb0f4822980 /* NpRigidDynamic.cpp */; };
+ FFFFf48229e87fb0f48229e8 /* NpRigidStatic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf48229e87fb0f48229e8 /* NpRigidStatic.cpp */; };
+ FFFFf4822a507fb0f4822a50 /* NpScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf4822a507fb0f4822a50 /* NpScene.cpp */; };
+ FFFFf4822ab87fb0f4822ab8 /* NpSceneQueries.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf4822ab87fb0f4822ab8 /* NpSceneQueries.cpp */; };
+ FFFFf4822b207fb0f4822b20 /* NpSerializerAdapter.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf4822b207fb0f4822b20 /* NpSerializerAdapter.cpp */; };
+ FFFFf4822b887fb0f4822b88 /* NpShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf4822b887fb0f4822b88 /* NpShape.cpp */; };
+ FFFFf4822bf07fb0f4822bf0 /* NpShapeManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf4822bf07fb0f4822bf0 /* NpShapeManager.cpp */; };
+ FFFFf4822c587fb0f4822c58 /* NpSpatialIndex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf4822c587fb0f4822c58 /* NpSpatialIndex.cpp */; };
+ FFFFf4822cc07fb0f4822cc0 /* NpVolumeCache.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf4822cc07fb0f4822cc0 /* NpVolumeCache.cpp */; };
+ FFFFf4822d287fb0f4822d28 /* NpWriteCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf4822d287fb0f4822d28 /* NpWriteCheck.cpp */; };
+ FFFFf4822d907fb0f4822d90 /* PvdMetaDataPvdBinding.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf4822d907fb0f4822d90 /* PvdMetaDataPvdBinding.cpp */; };
+ FFFFf4822df87fb0f4822df8 /* PvdPhysicsClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf4822df87fb0f4822df8 /* PvdPhysicsClient.cpp */; };
+ FFFFf48230007fb0f4823000 /* particles/NpParticleFluid.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf48230007fb0f4823000 /* particles/NpParticleFluid.cpp */; };
+ FFFFf48230687fb0f4823068 /* particles/NpParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf48230687fb0f4823068 /* particles/NpParticleSystem.cpp */; };
+ FFFFf48238207fb0f4823820 /* buffering/ScbActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf48238207fb0f4823820 /* buffering/ScbActor.cpp */; };
+ FFFFf48238887fb0f4823888 /* buffering/ScbAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf48238887fb0f4823888 /* buffering/ScbAggregate.cpp */; };
+ FFFFf48238f07fb0f48238f0 /* buffering/ScbBase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf48238f07fb0f48238f0 /* buffering/ScbBase.cpp */; };
+ FFFFf48239587fb0f4823958 /* buffering/ScbCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf48239587fb0f4823958 /* buffering/ScbCloth.cpp */; };
+ FFFFf48239c07fb0f48239c0 /* buffering/ScbMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf48239c07fb0f48239c0 /* buffering/ScbMetaData.cpp */; };
+ FFFFf4823a287fb0f4823a28 /* buffering/ScbParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf4823a287fb0f4823a28 /* buffering/ScbParticleSystem.cpp */; };
+ FFFFf4823a907fb0f4823a90 /* buffering/ScbScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf4823a907fb0f4823a90 /* buffering/ScbScene.cpp */; };
+ FFFFf4823af87fb0f4823af8 /* buffering/ScbScenePvdClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf4823af87fb0f4823af8 /* buffering/ScbScenePvdClient.cpp */; };
+ FFFFf4823b607fb0f4823b60 /* buffering/ScbShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf4823b607fb0f4823b60 /* buffering/ScbShape.cpp */; };
+ FFFFf4823d007fb0f4823d00 /* cloth/NpCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf4823d007fb0f4823d00 /* cloth/NpCloth.cpp */; };
+ FFFFf4823d687fb0f4823d68 /* cloth/NpClothFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf4823d687fb0f4823d68 /* cloth/NpClothFabric.cpp */; };
+ FFFFf4823dd07fb0f4823dd0 /* cloth/NpClothParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf4823dd07fb0f4823dd0 /* cloth/NpClothParticleData.cpp */; };
+ FFFFf4823e387fb0f4823e38 /* ../../ImmediateMode/src/NpImmediateMode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf4823e387fb0f4823e38 /* ../../ImmediateMode/src/NpImmediateMode.cpp */; };
+ FFFFf48243a87fb0f48243a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDf48243a87fb0f48243a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */; };
+ FFFFf48244107fb0f4824410 /* core/src/PxMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDf48244107fb0f4824410 /* core/src/PxMetaDataObjects.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFD04b1def07fef04b1def0 /* PhysX */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysX"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFD040578007fef04057800 /* NpActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.h"; path = "../../PhysX/src/NpActor.h"; sourceTree = SOURCE_ROOT; };
- FFFD040578687fef04057868 /* NpActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActorTemplate.h"; path = "../../PhysX/src/NpActorTemplate.h"; sourceTree = SOURCE_ROOT; };
- FFFD040578d07fef040578d0 /* NpAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.h"; path = "../../PhysX/src/NpAggregate.h"; sourceTree = SOURCE_ROOT; };
- FFFD040579387fef04057938 /* NpArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.h"; path = "../../PhysX/src/NpArticulation.h"; sourceTree = SOURCE_ROOT; };
- FFFD040579a07fef040579a0 /* NpArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.h"; path = "../../PhysX/src/NpArticulationJoint.h"; sourceTree = SOURCE_ROOT; };
- FFFD04057a087fef04057a08 /* NpArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.h"; path = "../../PhysX/src/NpArticulationLink.h"; sourceTree = SOURCE_ROOT; };
- FFFD04057a707fef04057a70 /* NpBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.h"; path = "../../PhysX/src/NpBatchQuery.h"; sourceTree = SOURCE_ROOT; };
- FFFD04057ad87fef04057ad8 /* NpCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpCast.h"; path = "../../PhysX/src/NpCast.h"; sourceTree = SOURCE_ROOT; };
- FFFD04057b407fef04057b40 /* NpConnector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConnector.h"; path = "../../PhysX/src/NpConnector.h"; sourceTree = SOURCE_ROOT; };
- FFFD04057ba87fef04057ba8 /* NpConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.h"; path = "../../PhysX/src/NpConstraint.h"; sourceTree = SOURCE_ROOT; };
- FFFD04057c107fef04057c10 /* NpFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.h"; path = "../../PhysX/src/NpFactory.h"; sourceTree = SOURCE_ROOT; };
- FFFD04057c787fef04057c78 /* NpMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.h"; path = "../../PhysX/src/NpMaterial.h"; sourceTree = SOURCE_ROOT; };
- FFFD04057ce07fef04057ce0 /* NpMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterialManager.h"; path = "../../PhysX/src/NpMaterialManager.h"; sourceTree = SOURCE_ROOT; };
- FFFD04057d487fef04057d48 /* NpPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.h"; path = "../../PhysX/src/NpPhysics.h"; sourceTree = SOURCE_ROOT; };
- FFFD04057db07fef04057db0 /* NpPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysicsInsertionCallback.h"; path = "../../PhysX/src/NpPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; };
- FFFD04057e187fef04057e18 /* NpPtrTableStorageManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPtrTableStorageManager.h"; path = "../../PhysX/src/NpPtrTableStorageManager.h"; sourceTree = SOURCE_ROOT; };
- FFFD04057e807fef04057e80 /* NpPvdSceneQueryCollector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.h"; path = "../../PhysX/src/NpPvdSceneQueryCollector.h"; sourceTree = SOURCE_ROOT; };
- FFFD04057ee87fef04057ee8 /* NpQueryShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpQueryShared.h"; path = "../../PhysX/src/NpQueryShared.h"; sourceTree = SOURCE_ROOT; };
- FFFD04057f507fef04057f50 /* NpReadCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.h"; path = "../../PhysX/src/NpReadCheck.h"; sourceTree = SOURCE_ROOT; };
- FFFD04057fb87fef04057fb8 /* NpRigidActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplate.h"; path = "../../PhysX/src/NpRigidActorTemplate.h"; sourceTree = SOURCE_ROOT; };
- FFFD040580207fef04058020 /* NpRigidActorTemplateInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplateInternal.h"; path = "../../PhysX/src/NpRigidActorTemplateInternal.h"; sourceTree = SOURCE_ROOT; };
- FFFD040580887fef04058088 /* NpRigidBodyTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidBodyTemplate.h"; path = "../../PhysX/src/NpRigidBodyTemplate.h"; sourceTree = SOURCE_ROOT; };
- FFFD040580f07fef040580f0 /* NpRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.h"; path = "../../PhysX/src/NpRigidDynamic.h"; sourceTree = SOURCE_ROOT; };
- FFFD040581587fef04058158 /* NpRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.h"; path = "../../PhysX/src/NpRigidStatic.h"; sourceTree = SOURCE_ROOT; };
- FFFD040581c07fef040581c0 /* NpScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.h"; path = "../../PhysX/src/NpScene.h"; sourceTree = SOURCE_ROOT; };
- FFFD040582287fef04058228 /* NpSceneQueries.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.h"; path = "../../PhysX/src/NpSceneQueries.h"; sourceTree = SOURCE_ROOT; };
- FFFD040582907fef04058290 /* NpShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.h"; path = "../../PhysX/src/NpShape.h"; sourceTree = SOURCE_ROOT; };
- FFFD040582f87fef040582f8 /* NpShapeManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.h"; path = "../../PhysX/src/NpShapeManager.h"; sourceTree = SOURCE_ROOT; };
- FFFD040583607fef04058360 /* NpSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.h"; path = "../../PhysX/src/NpSpatialIndex.h"; sourceTree = SOURCE_ROOT; };
- FFFD040583c87fef040583c8 /* NpVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.h"; path = "../../PhysX/src/NpVolumeCache.h"; sourceTree = SOURCE_ROOT; };
- FFFD040584307fef04058430 /* NpWriteCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.h"; path = "../../PhysX/src/NpWriteCheck.h"; sourceTree = SOURCE_ROOT; };
- FFFD040584987fef04058498 /* PvdMetaDataBindingData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataBindingData.h"; path = "../../PhysX/src/PvdMetaDataBindingData.h"; sourceTree = SOURCE_ROOT; };
- FFFD040585007fef04058500 /* PvdMetaDataPvdBinding.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.h"; path = "../../PhysX/src/PvdMetaDataPvdBinding.h"; sourceTree = SOURCE_ROOT; };
- FFFD040585687fef04058568 /* PvdPhysicsClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.h"; path = "../../PhysX/src/PvdPhysicsClient.h"; sourceTree = SOURCE_ROOT; };
- FFFD040585d07fef040585d0 /* PvdTypeNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdTypeNames.h"; path = "../../PhysX/src/PvdTypeNames.h"; sourceTree = SOURCE_ROOT; };
- FFFD040586387fef04058638 /* NpActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.cpp"; path = "../../PhysX/src/NpActor.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD040586a07fef040586a0 /* NpAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.cpp"; path = "../../PhysX/src/NpAggregate.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD040587087fef04058708 /* NpArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.cpp"; path = "../../PhysX/src/NpArticulation.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD040587707fef04058770 /* NpArticulationJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.cpp"; path = "../../PhysX/src/NpArticulationJoint.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD040587d87fef040587d8 /* NpArticulationLink.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.cpp"; path = "../../PhysX/src/NpArticulationLink.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD040588407fef04058840 /* NpBatchQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.cpp"; path = "../../PhysX/src/NpBatchQuery.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD040588a87fef040588a8 /* NpConstraint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.cpp"; path = "../../PhysX/src/NpConstraint.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD040589107fef04058910 /* NpFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.cpp"; path = "../../PhysX/src/NpFactory.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD040589787fef04058978 /* NpMaterial.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.cpp"; path = "../../PhysX/src/NpMaterial.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD040589e07fef040589e0 /* NpMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMetaData.cpp"; path = "../../PhysX/src/NpMetaData.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD04058a487fef04058a48 /* NpPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.cpp"; path = "../../PhysX/src/NpPhysics.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD04058ab07fef04058ab0 /* NpPvdSceneQueryCollector.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.cpp"; path = "../../PhysX/src/NpPvdSceneQueryCollector.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD04058b187fef04058b18 /* NpReadCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.cpp"; path = "../../PhysX/src/NpReadCheck.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD04058b807fef04058b80 /* NpRigidDynamic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.cpp"; path = "../../PhysX/src/NpRigidDynamic.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD04058be87fef04058be8 /* NpRigidStatic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.cpp"; path = "../../PhysX/src/NpRigidStatic.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD04058c507fef04058c50 /* NpScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.cpp"; path = "../../PhysX/src/NpScene.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD04058cb87fef04058cb8 /* NpSceneQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.cpp"; path = "../../PhysX/src/NpSceneQueries.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD04058d207fef04058d20 /* NpSerializerAdapter.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSerializerAdapter.cpp"; path = "../../PhysX/src/NpSerializerAdapter.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD04058d887fef04058d88 /* NpShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.cpp"; path = "../../PhysX/src/NpShape.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD04058df07fef04058df0 /* NpShapeManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.cpp"; path = "../../PhysX/src/NpShapeManager.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD04058e587fef04058e58 /* NpSpatialIndex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.cpp"; path = "../../PhysX/src/NpSpatialIndex.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD04058ec07fef04058ec0 /* NpVolumeCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.cpp"; path = "../../PhysX/src/NpVolumeCache.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD04058f287fef04058f28 /* NpWriteCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.cpp"; path = "../../PhysX/src/NpWriteCheck.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD04058f907fef04058f90 /* PvdMetaDataPvdBinding.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.cpp"; path = "../../PhysX/src/PvdMetaDataPvdBinding.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD04058ff87fef04058ff8 /* PvdPhysicsClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.cpp"; path = "../../PhysX/src/PvdPhysicsClient.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD040590607fef04059060 /* particles/NpParticleBaseTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleBaseTemplate.h"; path = "../../PhysX/src/particles/NpParticleBaseTemplate.h"; sourceTree = SOURCE_ROOT; };
- FFFD040590c87fef040590c8 /* particles/NpParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.h"; path = "../../PhysX/src/particles/NpParticleFluid.h"; sourceTree = SOURCE_ROOT; };
- FFFD040591307fef04059130 /* particles/NpParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluidReadData.h"; path = "../../PhysX/src/particles/NpParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; };
- FFFD040591987fef04059198 /* particles/NpParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.h"; path = "../../PhysX/src/particles/NpParticleSystem.h"; sourceTree = SOURCE_ROOT; };
- FFFD040592007fef04059200 /* particles/NpParticleFluid.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.cpp"; path = "../../PhysX/src/particles/NpParticleFluid.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD040592687fef04059268 /* particles/NpParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.cpp"; path = "../../PhysX/src/particles/NpParticleSystem.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD040592d07fef040592d0 /* buffering/ScbActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.h"; path = "../../PhysX/src/buffering/ScbActor.h"; sourceTree = SOURCE_ROOT; };
- FFFD040593387fef04059338 /* buffering/ScbAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.h"; path = "../../PhysX/src/buffering/ScbAggregate.h"; sourceTree = SOURCE_ROOT; };
- FFFD040593a07fef040593a0 /* buffering/ScbArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulation.h"; path = "../../PhysX/src/buffering/ScbArticulation.h"; sourceTree = SOURCE_ROOT; };
- FFFD040594087fef04059408 /* buffering/ScbArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulationJoint.h"; path = "../../PhysX/src/buffering/ScbArticulationJoint.h"; sourceTree = SOURCE_ROOT; };
- FFFD040594707fef04059470 /* buffering/ScbBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.h"; path = "../../PhysX/src/buffering/ScbBase.h"; sourceTree = SOURCE_ROOT; };
- FFFD040594d87fef040594d8 /* buffering/ScbBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBody.h"; path = "../../PhysX/src/buffering/ScbBody.h"; sourceTree = SOURCE_ROOT; };
- FFFD040595407fef04059540 /* buffering/ScbCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.h"; path = "../../PhysX/src/buffering/ScbCloth.h"; sourceTree = SOURCE_ROOT; };
- FFFD040595a87fef040595a8 /* buffering/ScbConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbConstraint.h"; path = "../../PhysX/src/buffering/ScbConstraint.h"; sourceTree = SOURCE_ROOT; };
- FFFD040596107fef04059610 /* buffering/ScbDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbDefs.h"; path = "../../PhysX/src/buffering/ScbDefs.h"; sourceTree = SOURCE_ROOT; };
- FFFD040596787fef04059678 /* buffering/ScbNpDeps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbNpDeps.h"; path = "../../PhysX/src/buffering/ScbNpDeps.h"; sourceTree = SOURCE_ROOT; };
- FFFD040596e07fef040596e0 /* buffering/ScbParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.h"; path = "../../PhysX/src/buffering/ScbParticleSystem.h"; sourceTree = SOURCE_ROOT; };
- FFFD040597487fef04059748 /* buffering/ScbRigidObject.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidObject.h"; path = "../../PhysX/src/buffering/ScbRigidObject.h"; sourceTree = SOURCE_ROOT; };
- FFFD040597b07fef040597b0 /* buffering/ScbRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidStatic.h"; path = "../../PhysX/src/buffering/ScbRigidStatic.h"; sourceTree = SOURCE_ROOT; };
- FFFD040598187fef04059818 /* buffering/ScbScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.h"; path = "../../PhysX/src/buffering/ScbScene.h"; sourceTree = SOURCE_ROOT; };
- FFFD040598807fef04059880 /* buffering/ScbSceneBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbSceneBuffer.h"; path = "../../PhysX/src/buffering/ScbSceneBuffer.h"; sourceTree = SOURCE_ROOT; };
- FFFD040598e87fef040598e8 /* buffering/ScbScenePvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.h"; path = "../../PhysX/src/buffering/ScbScenePvdClient.h"; sourceTree = SOURCE_ROOT; };
- FFFD040599507fef04059950 /* buffering/ScbShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.h"; path = "../../PhysX/src/buffering/ScbShape.h"; sourceTree = SOURCE_ROOT; };
- FFFD040599b87fef040599b8 /* buffering/ScbType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbType.h"; path = "../../PhysX/src/buffering/ScbType.h"; sourceTree = SOURCE_ROOT; };
- FFFD04059a207fef04059a20 /* buffering/ScbActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.cpp"; path = "../../PhysX/src/buffering/ScbActor.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD04059a887fef04059a88 /* buffering/ScbAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.cpp"; path = "../../PhysX/src/buffering/ScbAggregate.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD04059af07fef04059af0 /* buffering/ScbBase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.cpp"; path = "../../PhysX/src/buffering/ScbBase.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD04059b587fef04059b58 /* buffering/ScbCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.cpp"; path = "../../PhysX/src/buffering/ScbCloth.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD04059bc07fef04059bc0 /* buffering/ScbMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbMetaData.cpp"; path = "../../PhysX/src/buffering/ScbMetaData.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD04059c287fef04059c28 /* buffering/ScbParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.cpp"; path = "../../PhysX/src/buffering/ScbParticleSystem.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD04059c907fef04059c90 /* buffering/ScbScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.cpp"; path = "../../PhysX/src/buffering/ScbScene.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD04059cf87fef04059cf8 /* buffering/ScbScenePvdClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.cpp"; path = "../../PhysX/src/buffering/ScbScenePvdClient.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD04059d607fef04059d60 /* buffering/ScbShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.cpp"; path = "../../PhysX/src/buffering/ScbShape.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD04059dc87fef04059dc8 /* cloth/NpCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.h"; path = "../../PhysX/src/cloth/NpCloth.h"; sourceTree = SOURCE_ROOT; };
- FFFD04059e307fef04059e30 /* cloth/NpClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.h"; path = "../../PhysX/src/cloth/NpClothFabric.h"; sourceTree = SOURCE_ROOT; };
- FFFD04059e987fef04059e98 /* cloth/NpClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.h"; path = "../../PhysX/src/cloth/NpClothParticleData.h"; sourceTree = SOURCE_ROOT; };
- FFFD04059f007fef04059f00 /* cloth/NpCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.cpp"; path = "../../PhysX/src/cloth/NpCloth.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD04059f687fef04059f68 /* cloth/NpClothFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.cpp"; path = "../../PhysX/src/cloth/NpClothFabric.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD04059fd07fef04059fd0 /* cloth/NpClothParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.cpp"; path = "../../PhysX/src/cloth/NpClothParticleData.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0405a0387fef0405a038 /* ../../ImmediateMode/src/NpImmediateMode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "../../ImmediateMode/src/NpImmediateMode.cpp"; path = "../../ImmediateMode/src/NpImmediateMode.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD04060a007fef04060a00 /* PxActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxActor.h"; path = "../../../Include/PxActor.h"; sourceTree = SOURCE_ROOT; };
- FFFD04060a687fef04060a68 /* PxAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAggregate.h"; path = "../../../Include/PxAggregate.h"; sourceTree = SOURCE_ROOT; };
- FFFD04060ad07fef04060ad0 /* PxArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulation.h"; path = "../../../Include/PxArticulation.h"; sourceTree = SOURCE_ROOT; };
- FFFD04060b387fef04060b38 /* PxArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationJoint.h"; path = "../../../Include/PxArticulationJoint.h"; sourceTree = SOURCE_ROOT; };
- FFFD04060ba07fef04060ba0 /* PxArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationLink.h"; path = "../../../Include/PxArticulationLink.h"; sourceTree = SOURCE_ROOT; };
- FFFD04060c087fef04060c08 /* PxBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQuery.h"; path = "../../../Include/PxBatchQuery.h"; sourceTree = SOURCE_ROOT; };
- FFFD04060c707fef04060c70 /* PxBatchQueryDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQueryDesc.h"; path = "../../../Include/PxBatchQueryDesc.h"; sourceTree = SOURCE_ROOT; };
- FFFD04060cd87fef04060cd8 /* PxBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhase.h"; path = "../../../Include/PxBroadPhase.h"; sourceTree = SOURCE_ROOT; };
- FFFD04060d407fef04060d40 /* PxClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClient.h"; path = "../../../Include/PxClient.h"; sourceTree = SOURCE_ROOT; };
- FFFD04060da87fef04060da8 /* PxConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraint.h"; path = "../../../Include/PxConstraint.h"; sourceTree = SOURCE_ROOT; };
- FFFD04060e107fef04060e10 /* PxConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintDesc.h"; path = "../../../Include/PxConstraintDesc.h"; sourceTree = SOURCE_ROOT; };
- FFFD04060e787fef04060e78 /* PxContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContact.h"; path = "../../../Include/PxContact.h"; sourceTree = SOURCE_ROOT; };
- FFFD04060ee07fef04060ee0 /* PxContactModifyCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContactModifyCallback.h"; path = "../../../Include/PxContactModifyCallback.h"; sourceTree = SOURCE_ROOT; };
- FFFD04060f487fef04060f48 /* PxDeletionListener.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDeletionListener.h"; path = "../../../Include/PxDeletionListener.h"; sourceTree = SOURCE_ROOT; };
- FFFD04060fb07fef04060fb0 /* PxFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFiltering.h"; path = "../../../Include/PxFiltering.h"; sourceTree = SOURCE_ROOT; };
- FFFD040610187fef04061018 /* PxForceMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxForceMode.h"; path = "../../../Include/PxForceMode.h"; sourceTree = SOURCE_ROOT; };
- FFFD040610807fef04061080 /* PxImmediateMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxImmediateMode.h"; path = "../../../Include/PxImmediateMode.h"; sourceTree = SOURCE_ROOT; };
- FFFD040610e87fef040610e8 /* PxLockedData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxLockedData.h"; path = "../../../Include/PxLockedData.h"; sourceTree = SOURCE_ROOT; };
- FFFD040611507fef04061150 /* PxMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMaterial.h"; path = "../../../Include/PxMaterial.h"; sourceTree = SOURCE_ROOT; };
- FFFD040611b87fef040611b8 /* PxPhysXConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysXConfig.h"; path = "../../../Include/PxPhysXConfig.h"; sourceTree = SOURCE_ROOT; };
- FFFD040612207fef04061220 /* PxPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysics.h"; path = "../../../Include/PxPhysics.h"; sourceTree = SOURCE_ROOT; };
- FFFD040612887fef04061288 /* PxPhysicsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsAPI.h"; path = "../../../Include/PxPhysicsAPI.h"; sourceTree = SOURCE_ROOT; };
- FFFD040612f07fef040612f0 /* PxPhysicsSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsSerialization.h"; path = "../../../Include/PxPhysicsSerialization.h"; sourceTree = SOURCE_ROOT; };
- FFFD040613587fef04061358 /* PxPhysicsVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsVersion.h"; path = "../../../Include/PxPhysicsVersion.h"; sourceTree = SOURCE_ROOT; };
- FFFD040613c07fef040613c0 /* PxPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPruningStructure.h"; path = "../../../Include/PxPruningStructure.h"; sourceTree = SOURCE_ROOT; };
- FFFD040614287fef04061428 /* PxQueryFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryFiltering.h"; path = "../../../Include/PxQueryFiltering.h"; sourceTree = SOURCE_ROOT; };
- FFFD040614907fef04061490 /* PxQueryReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryReport.h"; path = "../../../Include/PxQueryReport.h"; sourceTree = SOURCE_ROOT; };
- FFFD040614f87fef040614f8 /* PxRigidActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActor.h"; path = "../../../Include/PxRigidActor.h"; sourceTree = SOURCE_ROOT; };
- FFFD040615607fef04061560 /* PxRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBody.h"; path = "../../../Include/PxRigidBody.h"; sourceTree = SOURCE_ROOT; };
- FFFD040615c87fef040615c8 /* PxRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidDynamic.h"; path = "../../../Include/PxRigidDynamic.h"; sourceTree = SOURCE_ROOT; };
- FFFD040616307fef04061630 /* PxRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidStatic.h"; path = "../../../Include/PxRigidStatic.h"; sourceTree = SOURCE_ROOT; };
- FFFD040616987fef04061698 /* PxScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxScene.h"; path = "../../../Include/PxScene.h"; sourceTree = SOURCE_ROOT; };
- FFFD040617007fef04061700 /* PxSceneDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneDesc.h"; path = "../../../Include/PxSceneDesc.h"; sourceTree = SOURCE_ROOT; };
- FFFD040617687fef04061768 /* PxSceneLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneLock.h"; path = "../../../Include/PxSceneLock.h"; sourceTree = SOURCE_ROOT; };
- FFFD040617d07fef040617d0 /* PxShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShape.h"; path = "../../../Include/PxShape.h"; sourceTree = SOURCE_ROOT; };
- FFFD040618387fef04061838 /* PxSimulationEventCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationEventCallback.h"; path = "../../../Include/PxSimulationEventCallback.h"; sourceTree = SOURCE_ROOT; };
- FFFD040618a07fef040618a0 /* PxSimulationStatistics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationStatistics.h"; path = "../../../Include/PxSimulationStatistics.h"; sourceTree = SOURCE_ROOT; };
- FFFD040619087fef04061908 /* PxSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSpatialIndex.h"; path = "../../../Include/PxSpatialIndex.h"; sourceTree = SOURCE_ROOT; };
- FFFD040619707fef04061970 /* PxVisualizationParameter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVisualizationParameter.h"; path = "../../../Include/PxVisualizationParameter.h"; sourceTree = SOURCE_ROOT; };
- FFFD040619d87fef040619d8 /* PxVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVolumeCache.h"; path = "../../../Include/PxVolumeCache.h"; sourceTree = SOURCE_ROOT; };
- FFFD04061a407fef04061a40 /* particles/PxParticleBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBase.h"; path = "../../../Include/particles/PxParticleBase.h"; sourceTree = SOURCE_ROOT; };
- FFFD04061aa87fef04061aa8 /* particles/PxParticleBaseFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBaseFlag.h"; path = "../../../Include/particles/PxParticleBaseFlag.h"; sourceTree = SOURCE_ROOT; };
- FFFD04061b107fef04061b10 /* particles/PxParticleCreationData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleCreationData.h"; path = "../../../Include/particles/PxParticleCreationData.h"; sourceTree = SOURCE_ROOT; };
- FFFD04061b787fef04061b78 /* particles/PxParticleFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFlag.h"; path = "../../../Include/particles/PxParticleFlag.h"; sourceTree = SOURCE_ROOT; };
- FFFD04061be07fef04061be0 /* particles/PxParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluid.h"; path = "../../../Include/particles/PxParticleFluid.h"; sourceTree = SOURCE_ROOT; };
- FFFD04061c487fef04061c48 /* particles/PxParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluidReadData.h"; path = "../../../Include/particles/PxParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; };
- FFFD04061cb07fef04061cb0 /* particles/PxParticleReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleReadData.h"; path = "../../../Include/particles/PxParticleReadData.h"; sourceTree = SOURCE_ROOT; };
- FFFD04061d187fef04061d18 /* particles/PxParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleSystem.h"; path = "../../../Include/particles/PxParticleSystem.h"; sourceTree = SOURCE_ROOT; };
- FFFD04061d807fef04061d80 /* pvd/PxPvdSceneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pvd/PxPvdSceneClient.h"; path = "../../../Include/pvd/PxPvdSceneClient.h"; sourceTree = SOURCE_ROOT; };
- FFFD04061de87fef04061de8 /* cloth/PxCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxCloth.h"; path = "../../../Include/cloth/PxCloth.h"; sourceTree = SOURCE_ROOT; };
- FFFD04061e507fef04061e50 /* cloth/PxClothCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothCollisionData.h"; path = "../../../Include/cloth/PxClothCollisionData.h"; sourceTree = SOURCE_ROOT; };
- FFFD04061eb87fef04061eb8 /* cloth/PxClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothFabric.h"; path = "../../../Include/cloth/PxClothFabric.h"; sourceTree = SOURCE_ROOT; };
- FFFD04061f207fef04061f20 /* cloth/PxClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothParticleData.h"; path = "../../../Include/cloth/PxClothParticleData.h"; sourceTree = SOURCE_ROOT; };
- FFFD04061f887fef04061f88 /* cloth/PxClothTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothTypes.h"; path = "../../../Include/cloth/PxClothTypes.h"; sourceTree = SOURCE_ROOT; };
- FFFD0405fc007fef0405fc00 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; };
- FFFD0405fc687fef0405fc68 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; };
- FFFD0405fcd07fef0405fcd0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; };
- FFFD0405fd387fef0405fd38 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; };
- FFFD0405fda07fef0405fda0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
- FFFD0405fe087fef0405fe08 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; };
- FFFD0405fe707fef0405fe70 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; };
- FFFD0405fed87fef0405fed8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
- FFFD0405ff407fef0405ff40 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; };
- FFFD0405ffa87fef0405ffa8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "core/src/PxAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXMetaData/core/src/PxAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD040600107fef04060010 /* core/src/PxMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "core/src/PxMetaDataObjects.cpp"; path = "../../PhysXMetaData/core/src/PxMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf39459607fb0f3945960 /* PhysX */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysX"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFDf48216007fb0f4821600 /* NpActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.h"; path = "../../PhysX/src/NpActor.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48216687fb0f4821668 /* NpActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActorTemplate.h"; path = "../../PhysX/src/NpActorTemplate.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48216d07fb0f48216d0 /* NpAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.h"; path = "../../PhysX/src/NpAggregate.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48217387fb0f4821738 /* NpArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.h"; path = "../../PhysX/src/NpArticulation.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48217a07fb0f48217a0 /* NpArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.h"; path = "../../PhysX/src/NpArticulationJoint.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48218087fb0f4821808 /* NpArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.h"; path = "../../PhysX/src/NpArticulationLink.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48218707fb0f4821870 /* NpBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.h"; path = "../../PhysX/src/NpBatchQuery.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48218d87fb0f48218d8 /* NpCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpCast.h"; path = "../../PhysX/src/NpCast.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48219407fb0f4821940 /* NpConnector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConnector.h"; path = "../../PhysX/src/NpConnector.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48219a87fb0f48219a8 /* NpConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.h"; path = "../../PhysX/src/NpConstraint.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4821a107fb0f4821a10 /* NpFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.h"; path = "../../PhysX/src/NpFactory.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4821a787fb0f4821a78 /* NpMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.h"; path = "../../PhysX/src/NpMaterial.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4821ae07fb0f4821ae0 /* NpMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterialManager.h"; path = "../../PhysX/src/NpMaterialManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4821b487fb0f4821b48 /* NpPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.h"; path = "../../PhysX/src/NpPhysics.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4821bb07fb0f4821bb0 /* NpPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysicsInsertionCallback.h"; path = "../../PhysX/src/NpPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4821c187fb0f4821c18 /* NpPtrTableStorageManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPtrTableStorageManager.h"; path = "../../PhysX/src/NpPtrTableStorageManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4821c807fb0f4821c80 /* NpPvdSceneQueryCollector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.h"; path = "../../PhysX/src/NpPvdSceneQueryCollector.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4821ce87fb0f4821ce8 /* NpQueryShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpQueryShared.h"; path = "../../PhysX/src/NpQueryShared.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4821d507fb0f4821d50 /* NpReadCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.h"; path = "../../PhysX/src/NpReadCheck.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4821db87fb0f4821db8 /* NpRigidActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplate.h"; path = "../../PhysX/src/NpRigidActorTemplate.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4821e207fb0f4821e20 /* NpRigidActorTemplateInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplateInternal.h"; path = "../../PhysX/src/NpRigidActorTemplateInternal.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4821e887fb0f4821e88 /* NpRigidBodyTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidBodyTemplate.h"; path = "../../PhysX/src/NpRigidBodyTemplate.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4821ef07fb0f4821ef0 /* NpRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.h"; path = "../../PhysX/src/NpRigidDynamic.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4821f587fb0f4821f58 /* NpRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.h"; path = "../../PhysX/src/NpRigidStatic.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4821fc07fb0f4821fc0 /* NpScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.h"; path = "../../PhysX/src/NpScene.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48220287fb0f4822028 /* NpSceneQueries.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.h"; path = "../../PhysX/src/NpSceneQueries.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48220907fb0f4822090 /* NpShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.h"; path = "../../PhysX/src/NpShape.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48220f87fb0f48220f8 /* NpShapeManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.h"; path = "../../PhysX/src/NpShapeManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48221607fb0f4822160 /* NpSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.h"; path = "../../PhysX/src/NpSpatialIndex.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48221c87fb0f48221c8 /* NpVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.h"; path = "../../PhysX/src/NpVolumeCache.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48222307fb0f4822230 /* NpWriteCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.h"; path = "../../PhysX/src/NpWriteCheck.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48222987fb0f4822298 /* PvdMetaDataBindingData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataBindingData.h"; path = "../../PhysX/src/PvdMetaDataBindingData.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48223007fb0f4822300 /* PvdMetaDataPvdBinding.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.h"; path = "../../PhysX/src/PvdMetaDataPvdBinding.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48223687fb0f4822368 /* PvdPhysicsClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.h"; path = "../../PhysX/src/PvdPhysicsClient.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48223d07fb0f48223d0 /* PvdTypeNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdTypeNames.h"; path = "../../PhysX/src/PvdTypeNames.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48224387fb0f4822438 /* NpActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.cpp"; path = "../../PhysX/src/NpActor.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf48224a07fb0f48224a0 /* NpAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.cpp"; path = "../../PhysX/src/NpAggregate.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf48225087fb0f4822508 /* NpArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.cpp"; path = "../../PhysX/src/NpArticulation.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf48225707fb0f4822570 /* NpArticulationJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.cpp"; path = "../../PhysX/src/NpArticulationJoint.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf48225d87fb0f48225d8 /* NpArticulationLink.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.cpp"; path = "../../PhysX/src/NpArticulationLink.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf48226407fb0f4822640 /* NpBatchQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.cpp"; path = "../../PhysX/src/NpBatchQuery.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf48226a87fb0f48226a8 /* NpConstraint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.cpp"; path = "../../PhysX/src/NpConstraint.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf48227107fb0f4822710 /* NpFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.cpp"; path = "../../PhysX/src/NpFactory.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf48227787fb0f4822778 /* NpMaterial.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.cpp"; path = "../../PhysX/src/NpMaterial.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf48227e07fb0f48227e0 /* NpMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMetaData.cpp"; path = "../../PhysX/src/NpMetaData.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf48228487fb0f4822848 /* NpPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.cpp"; path = "../../PhysX/src/NpPhysics.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf48228b07fb0f48228b0 /* NpPvdSceneQueryCollector.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.cpp"; path = "../../PhysX/src/NpPvdSceneQueryCollector.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf48229187fb0f4822918 /* NpReadCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.cpp"; path = "../../PhysX/src/NpReadCheck.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf48229807fb0f4822980 /* NpRigidDynamic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.cpp"; path = "../../PhysX/src/NpRigidDynamic.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf48229e87fb0f48229e8 /* NpRigidStatic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.cpp"; path = "../../PhysX/src/NpRigidStatic.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf4822a507fb0f4822a50 /* NpScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.cpp"; path = "../../PhysX/src/NpScene.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf4822ab87fb0f4822ab8 /* NpSceneQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.cpp"; path = "../../PhysX/src/NpSceneQueries.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf4822b207fb0f4822b20 /* NpSerializerAdapter.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSerializerAdapter.cpp"; path = "../../PhysX/src/NpSerializerAdapter.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf4822b887fb0f4822b88 /* NpShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.cpp"; path = "../../PhysX/src/NpShape.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf4822bf07fb0f4822bf0 /* NpShapeManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.cpp"; path = "../../PhysX/src/NpShapeManager.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf4822c587fb0f4822c58 /* NpSpatialIndex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.cpp"; path = "../../PhysX/src/NpSpatialIndex.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf4822cc07fb0f4822cc0 /* NpVolumeCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.cpp"; path = "../../PhysX/src/NpVolumeCache.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf4822d287fb0f4822d28 /* NpWriteCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.cpp"; path = "../../PhysX/src/NpWriteCheck.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf4822d907fb0f4822d90 /* PvdMetaDataPvdBinding.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.cpp"; path = "../../PhysX/src/PvdMetaDataPvdBinding.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf4822df87fb0f4822df8 /* PvdPhysicsClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.cpp"; path = "../../PhysX/src/PvdPhysicsClient.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf4822e607fb0f4822e60 /* particles/NpParticleBaseTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleBaseTemplate.h"; path = "../../PhysX/src/particles/NpParticleBaseTemplate.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4822ec87fb0f4822ec8 /* particles/NpParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.h"; path = "../../PhysX/src/particles/NpParticleFluid.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4822f307fb0f4822f30 /* particles/NpParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluidReadData.h"; path = "../../PhysX/src/particles/NpParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4822f987fb0f4822f98 /* particles/NpParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.h"; path = "../../PhysX/src/particles/NpParticleSystem.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48230007fb0f4823000 /* particles/NpParticleFluid.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.cpp"; path = "../../PhysX/src/particles/NpParticleFluid.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf48230687fb0f4823068 /* particles/NpParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.cpp"; path = "../../PhysX/src/particles/NpParticleSystem.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf48230d07fb0f48230d0 /* buffering/ScbActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.h"; path = "../../PhysX/src/buffering/ScbActor.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48231387fb0f4823138 /* buffering/ScbAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.h"; path = "../../PhysX/src/buffering/ScbAggregate.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48231a07fb0f48231a0 /* buffering/ScbArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulation.h"; path = "../../PhysX/src/buffering/ScbArticulation.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48232087fb0f4823208 /* buffering/ScbArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulationJoint.h"; path = "../../PhysX/src/buffering/ScbArticulationJoint.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48232707fb0f4823270 /* buffering/ScbBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.h"; path = "../../PhysX/src/buffering/ScbBase.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48232d87fb0f48232d8 /* buffering/ScbBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBody.h"; path = "../../PhysX/src/buffering/ScbBody.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48233407fb0f4823340 /* buffering/ScbCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.h"; path = "../../PhysX/src/buffering/ScbCloth.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48233a87fb0f48233a8 /* buffering/ScbConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbConstraint.h"; path = "../../PhysX/src/buffering/ScbConstraint.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48234107fb0f4823410 /* buffering/ScbDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbDefs.h"; path = "../../PhysX/src/buffering/ScbDefs.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48234787fb0f4823478 /* buffering/ScbNpDeps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbNpDeps.h"; path = "../../PhysX/src/buffering/ScbNpDeps.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48234e07fb0f48234e0 /* buffering/ScbParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.h"; path = "../../PhysX/src/buffering/ScbParticleSystem.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48235487fb0f4823548 /* buffering/ScbRigidObject.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidObject.h"; path = "../../PhysX/src/buffering/ScbRigidObject.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48235b07fb0f48235b0 /* buffering/ScbRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidStatic.h"; path = "../../PhysX/src/buffering/ScbRigidStatic.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48236187fb0f4823618 /* buffering/ScbScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.h"; path = "../../PhysX/src/buffering/ScbScene.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48236807fb0f4823680 /* buffering/ScbSceneBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbSceneBuffer.h"; path = "../../PhysX/src/buffering/ScbSceneBuffer.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48236e87fb0f48236e8 /* buffering/ScbScenePvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.h"; path = "../../PhysX/src/buffering/ScbScenePvdClient.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48237507fb0f4823750 /* buffering/ScbShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.h"; path = "../../PhysX/src/buffering/ScbShape.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48237b87fb0f48237b8 /* buffering/ScbType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbType.h"; path = "../../PhysX/src/buffering/ScbType.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48238207fb0f4823820 /* buffering/ScbActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.cpp"; path = "../../PhysX/src/buffering/ScbActor.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf48238887fb0f4823888 /* buffering/ScbAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.cpp"; path = "../../PhysX/src/buffering/ScbAggregate.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf48238f07fb0f48238f0 /* buffering/ScbBase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.cpp"; path = "../../PhysX/src/buffering/ScbBase.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf48239587fb0f4823958 /* buffering/ScbCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.cpp"; path = "../../PhysX/src/buffering/ScbCloth.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf48239c07fb0f48239c0 /* buffering/ScbMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbMetaData.cpp"; path = "../../PhysX/src/buffering/ScbMetaData.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf4823a287fb0f4823a28 /* buffering/ScbParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.cpp"; path = "../../PhysX/src/buffering/ScbParticleSystem.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf4823a907fb0f4823a90 /* buffering/ScbScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.cpp"; path = "../../PhysX/src/buffering/ScbScene.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf4823af87fb0f4823af8 /* buffering/ScbScenePvdClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.cpp"; path = "../../PhysX/src/buffering/ScbScenePvdClient.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf4823b607fb0f4823b60 /* buffering/ScbShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.cpp"; path = "../../PhysX/src/buffering/ScbShape.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf4823bc87fb0f4823bc8 /* cloth/NpCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.h"; path = "../../PhysX/src/cloth/NpCloth.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4823c307fb0f4823c30 /* cloth/NpClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.h"; path = "../../PhysX/src/cloth/NpClothFabric.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4823c987fb0f4823c98 /* cloth/NpClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.h"; path = "../../PhysX/src/cloth/NpClothParticleData.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4823d007fb0f4823d00 /* cloth/NpCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.cpp"; path = "../../PhysX/src/cloth/NpCloth.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf4823d687fb0f4823d68 /* cloth/NpClothFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.cpp"; path = "../../PhysX/src/cloth/NpClothFabric.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf4823dd07fb0f4823dd0 /* cloth/NpClothParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.cpp"; path = "../../PhysX/src/cloth/NpClothParticleData.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf4823e387fb0f4823e38 /* ../../ImmediateMode/src/NpImmediateMode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "../../ImmediateMode/src/NpImmediateMode.cpp"; path = "../../ImmediateMode/src/NpImmediateMode.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf48278007fb0f4827800 /* PxActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxActor.h"; path = "../../../Include/PxActor.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48278687fb0f4827868 /* PxAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAggregate.h"; path = "../../../Include/PxAggregate.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48278d07fb0f48278d0 /* PxArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulation.h"; path = "../../../Include/PxArticulation.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48279387fb0f4827938 /* PxArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationJoint.h"; path = "../../../Include/PxArticulationJoint.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48279a07fb0f48279a0 /* PxArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationLink.h"; path = "../../../Include/PxArticulationLink.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4827a087fb0f4827a08 /* PxBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQuery.h"; path = "../../../Include/PxBatchQuery.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4827a707fb0f4827a70 /* PxBatchQueryDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQueryDesc.h"; path = "../../../Include/PxBatchQueryDesc.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4827ad87fb0f4827ad8 /* PxBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhase.h"; path = "../../../Include/PxBroadPhase.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4827b407fb0f4827b40 /* PxClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClient.h"; path = "../../../Include/PxClient.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4827ba87fb0f4827ba8 /* PxConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraint.h"; path = "../../../Include/PxConstraint.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4827c107fb0f4827c10 /* PxConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintDesc.h"; path = "../../../Include/PxConstraintDesc.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4827c787fb0f4827c78 /* PxContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContact.h"; path = "../../../Include/PxContact.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4827ce07fb0f4827ce0 /* PxContactModifyCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContactModifyCallback.h"; path = "../../../Include/PxContactModifyCallback.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4827d487fb0f4827d48 /* PxDeletionListener.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDeletionListener.h"; path = "../../../Include/PxDeletionListener.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4827db07fb0f4827db0 /* PxFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFiltering.h"; path = "../../../Include/PxFiltering.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4827e187fb0f4827e18 /* PxForceMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxForceMode.h"; path = "../../../Include/PxForceMode.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4827e807fb0f4827e80 /* PxImmediateMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxImmediateMode.h"; path = "../../../Include/PxImmediateMode.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4827ee87fb0f4827ee8 /* PxLockedData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxLockedData.h"; path = "../../../Include/PxLockedData.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4827f507fb0f4827f50 /* PxMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMaterial.h"; path = "../../../Include/PxMaterial.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4827fb87fb0f4827fb8 /* PxPhysXConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysXConfig.h"; path = "../../../Include/PxPhysXConfig.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48280207fb0f4828020 /* PxPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysics.h"; path = "../../../Include/PxPhysics.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48280887fb0f4828088 /* PxPhysicsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsAPI.h"; path = "../../../Include/PxPhysicsAPI.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48280f07fb0f48280f0 /* PxPhysicsSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsSerialization.h"; path = "../../../Include/PxPhysicsSerialization.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48281587fb0f4828158 /* PxPhysicsVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsVersion.h"; path = "../../../Include/PxPhysicsVersion.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48281c07fb0f48281c0 /* PxPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPruningStructure.h"; path = "../../../Include/PxPruningStructure.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48282287fb0f4828228 /* PxQueryFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryFiltering.h"; path = "../../../Include/PxQueryFiltering.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48282907fb0f4828290 /* PxQueryReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryReport.h"; path = "../../../Include/PxQueryReport.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48282f87fb0f48282f8 /* PxRigidActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActor.h"; path = "../../../Include/PxRigidActor.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48283607fb0f4828360 /* PxRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBody.h"; path = "../../../Include/PxRigidBody.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48283c87fb0f48283c8 /* PxRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidDynamic.h"; path = "../../../Include/PxRigidDynamic.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48284307fb0f4828430 /* PxRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidStatic.h"; path = "../../../Include/PxRigidStatic.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48284987fb0f4828498 /* PxScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxScene.h"; path = "../../../Include/PxScene.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48285007fb0f4828500 /* PxSceneDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneDesc.h"; path = "../../../Include/PxSceneDesc.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48285687fb0f4828568 /* PxSceneLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneLock.h"; path = "../../../Include/PxSceneLock.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48285d07fb0f48285d0 /* PxShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShape.h"; path = "../../../Include/PxShape.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48286387fb0f4828638 /* PxSimulationEventCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationEventCallback.h"; path = "../../../Include/PxSimulationEventCallback.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48286a07fb0f48286a0 /* PxSimulationStatistics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationStatistics.h"; path = "../../../Include/PxSimulationStatistics.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48287087fb0f4828708 /* PxSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSpatialIndex.h"; path = "../../../Include/PxSpatialIndex.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48287707fb0f4828770 /* PxVisualizationParameter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVisualizationParameter.h"; path = "../../../Include/PxVisualizationParameter.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48287d87fb0f48287d8 /* PxVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVolumeCache.h"; path = "../../../Include/PxVolumeCache.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48288407fb0f4828840 /* particles/PxParticleBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBase.h"; path = "../../../Include/particles/PxParticleBase.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48288a87fb0f48288a8 /* particles/PxParticleBaseFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBaseFlag.h"; path = "../../../Include/particles/PxParticleBaseFlag.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48289107fb0f4828910 /* particles/PxParticleCreationData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleCreationData.h"; path = "../../../Include/particles/PxParticleCreationData.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48289787fb0f4828978 /* particles/PxParticleFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFlag.h"; path = "../../../Include/particles/PxParticleFlag.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48289e07fb0f48289e0 /* particles/PxParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluid.h"; path = "../../../Include/particles/PxParticleFluid.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4828a487fb0f4828a48 /* particles/PxParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluidReadData.h"; path = "../../../Include/particles/PxParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4828ab07fb0f4828ab0 /* particles/PxParticleReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleReadData.h"; path = "../../../Include/particles/PxParticleReadData.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4828b187fb0f4828b18 /* particles/PxParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleSystem.h"; path = "../../../Include/particles/PxParticleSystem.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4828b807fb0f4828b80 /* pvd/PxPvdSceneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pvd/PxPvdSceneClient.h"; path = "../../../Include/pvd/PxPvdSceneClient.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4828be87fb0f4828be8 /* cloth/PxCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxCloth.h"; path = "../../../Include/cloth/PxCloth.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4828c507fb0f4828c50 /* cloth/PxClothCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothCollisionData.h"; path = "../../../Include/cloth/PxClothCollisionData.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4828cb87fb0f4828cb8 /* cloth/PxClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothFabric.h"; path = "../../../Include/cloth/PxClothFabric.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4828d207fb0f4828d20 /* cloth/PxClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothParticleData.h"; path = "../../../Include/cloth/PxClothParticleData.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4828d887fb0f4828d88 /* cloth/PxClothTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothTypes.h"; path = "../../../Include/cloth/PxClothTypes.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48240007fb0f4824000 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48240687fb0f4824068 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48240d07fb0f48240d0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48241387fb0f4824138 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48241a07fb0f48241a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48242087fb0f4824208 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48242707fb0f4824270 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48242d87fb0f48242d8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48243407fb0f4824340 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48243a87fb0f48243a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "core/src/PxAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXMetaData/core/src/PxAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf48244107fb0f4824410 /* 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 */
- FFF204b1def07fef04b1def0 /* Resources */ = {
+ FFF2f39459607fb0f3945960 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -233,7 +233,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFC04b1def07fef04b1def0 /* Frameworks */ = {
+ FFFCf39459607fb0f3945960 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -243,52 +243,52 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF804b1def07fef04b1def0 /* Sources */ = {
+ FFF8f39459607fb0f3945960 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFF040586387fef04058638,
- FFFF040586a07fef040586a0,
- FFFF040587087fef04058708,
- FFFF040587707fef04058770,
- FFFF040587d87fef040587d8,
- FFFF040588407fef04058840,
- FFFF040588a87fef040588a8,
- FFFF040589107fef04058910,
- FFFF040589787fef04058978,
- FFFF040589e07fef040589e0,
- FFFF04058a487fef04058a48,
- FFFF04058ab07fef04058ab0,
- FFFF04058b187fef04058b18,
- FFFF04058b807fef04058b80,
- FFFF04058be87fef04058be8,
- FFFF04058c507fef04058c50,
- FFFF04058cb87fef04058cb8,
- FFFF04058d207fef04058d20,
- FFFF04058d887fef04058d88,
- FFFF04058df07fef04058df0,
- FFFF04058e587fef04058e58,
- FFFF04058ec07fef04058ec0,
- FFFF04058f287fef04058f28,
- FFFF04058f907fef04058f90,
- FFFF04058ff87fef04058ff8,
- FFFF040592007fef04059200,
- FFFF040592687fef04059268,
- FFFF04059a207fef04059a20,
- FFFF04059a887fef04059a88,
- FFFF04059af07fef04059af0,
- FFFF04059b587fef04059b58,
- FFFF04059bc07fef04059bc0,
- FFFF04059c287fef04059c28,
- FFFF04059c907fef04059c90,
- FFFF04059cf87fef04059cf8,
- FFFF04059d607fef04059d60,
- FFFF04059f007fef04059f00,
- FFFF04059f687fef04059f68,
- FFFF04059fd07fef04059fd0,
- FFFF0405a0387fef0405a038,
- FFFF0405ffa87fef0405ffa8,
- FFFF040600107fef04060010,
+ FFFFf48224387fb0f4822438,
+ FFFFf48224a07fb0f48224a0,
+ FFFFf48225087fb0f4822508,
+ FFFFf48225707fb0f4822570,
+ FFFFf48225d87fb0f48225d8,
+ FFFFf48226407fb0f4822640,
+ FFFFf48226a87fb0f48226a8,
+ FFFFf48227107fb0f4822710,
+ FFFFf48227787fb0f4822778,
+ FFFFf48227e07fb0f48227e0,
+ FFFFf48228487fb0f4822848,
+ FFFFf48228b07fb0f48228b0,
+ FFFFf48229187fb0f4822918,
+ FFFFf48229807fb0f4822980,
+ FFFFf48229e87fb0f48229e8,
+ FFFFf4822a507fb0f4822a50,
+ FFFFf4822ab87fb0f4822ab8,
+ FFFFf4822b207fb0f4822b20,
+ FFFFf4822b887fb0f4822b88,
+ FFFFf4822bf07fb0f4822bf0,
+ FFFFf4822c587fb0f4822c58,
+ FFFFf4822cc07fb0f4822cc0,
+ FFFFf4822d287fb0f4822d28,
+ FFFFf4822d907fb0f4822d90,
+ FFFFf4822df87fb0f4822df8,
+ FFFFf48230007fb0f4823000,
+ FFFFf48230687fb0f4823068,
+ FFFFf48238207fb0f4823820,
+ FFFFf48238887fb0f4823888,
+ FFFFf48238f07fb0f48238f0,
+ FFFFf48239587fb0f4823958,
+ FFFFf48239c07fb0f48239c0,
+ FFFFf4823a287fb0f4823a28,
+ FFFFf4823a907fb0f4823a90,
+ FFFFf4823af87fb0f4823af8,
+ FFFFf4823b607fb0f4823b60,
+ FFFFf4823d007fb0f4823d00,
+ FFFFf4823d687fb0f4823d68,
+ FFFFf4823dd07fb0f4823dd0,
+ FFFFf4823e387fb0f4823e38,
+ FFFFf48243a87fb0f48243a8,
+ FFFFf48244107fb0f4824410,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -297,112 +297,112 @@
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
- FFF404b272207fef04b27220 /* PBXTargetDependency */ = {
+ FFF4f39524c07fb0f39524c0 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFA0310a8f07fef0310a8f0 /* LowLevel */;
- targetProxy = FFF50310a8f07fef0310a8f0 /* PBXContainerItemProxy */;
+ target = FFFAf2d3dd907fb0f2d3dd90 /* LowLevel */;
+ targetProxy = FFF5f2d3dd907fb0f2d3dd90 /* PBXContainerItemProxy */;
};
- FFF404b2a1d07fef04b2a1d0 /* PBXTargetDependency */ = {
+ FFF4f39525207fb0f3952520 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFA036069d07fef036069d0 /* LowLevelAABB */;
- targetProxy = FFF5036069d07fef036069d0 /* PBXContainerItemProxy */;
+ target = FFFAf39094b07fb0f39094b0 /* LowLevelAABB */;
+ targetProxy = FFF5f39094b07fb0f39094b0 /* PBXContainerItemProxy */;
};
- FFF404b265b07fef04b265b0 /* PBXTargetDependency */ = {
+ FFF4f39476807fb0f3947680 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFA049056907fef04905690 /* LowLevelCloth */;
- targetProxy = FFF5049056907fef04905690 /* PBXContainerItemProxy */;
+ target = FFFAf3927bf07fb0f3927bf0 /* LowLevelCloth */;
+ targetProxy = FFF5f3927bf07fb0f3927bf0 /* PBXContainerItemProxy */;
};
- FFF404b265507fef04b26550 /* PBXTargetDependency */ = {
+ FFF4f39520207fb0f3952020 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFA03135dd07fef03135dd0 /* LowLevelDynamics */;
- targetProxy = FFF503135dd07fef03135dd0 /* PBXContainerItemProxy */;
+ target = FFFAf2c04d807fb0f2c04d80 /* LowLevelDynamics */;
+ targetProxy = FFF5f2c04d807fb0f2c04d80 /* PBXContainerItemProxy */;
};
- FFF404b266107fef04b26610 /* PBXTargetDependency */ = {
+ FFF4f39476e07fb0f39476e0 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFA035f41907fef035f4190 /* LowLevelParticles */;
- targetProxy = FFF5035f41907fef035f4190 /* PBXContainerItemProxy */;
+ target = FFFAf2c195d07fb0f2c195d0 /* LowLevelParticles */;
+ targetProxy = FFF5f2c195d07fb0f2c195d0 /* PBXContainerItemProxy */;
};
- FFF404b271c07fef04b271c0 /* PBXTargetDependency */ = {
+ FFF4f3934e207fb0f3934e20 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFA0314a5307fef0314a530 /* PhysXCommon */;
- targetProxy = FFF50314a5307fef0314a530 /* PBXContainerItemProxy */;
+ target = FFFAf299eeb07fb0f299eeb0 /* PhysXCommon */;
+ targetProxy = FFF5f299eeb07fb0f299eeb0 /* PBXContainerItemProxy */;
};
- FFF404b1e1e07fef04b1e1e0 /* PBXTargetDependency */ = {
+ FFF4f3945c507fb0f3945c50 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFA031431707fef03143170 /* PxFoundation */;
- targetProxy = FFF5031431707fef03143170 /* PBXContainerItemProxy */;
+ target = FFFAf298c0307fb0f298c030 /* PxFoundation */;
+ targetProxy = FFF5f298c0307fb0f298c030 /* PBXContainerItemProxy */;
};
- FFF404b1de907fef04b1de90 /* PBXTargetDependency */ = {
+ FFF4f39459007fb0f3945900 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFA030748c07fef030748c0 /* PxPvdSDK */;
- targetProxy = FFF5030748c07fef030748c0 /* PBXContainerItemProxy */;
+ target = FFFAf14114a07fb0f14114a0 /* PxPvdSDK */;
+ targetProxy = FFF5f14114a07fb0f14114a0 /* PBXContainerItemProxy */;
};
- FFF404b26d107fef04b26d10 /* PBXTargetDependency */ = {
+ FFF4f3934f707fb0f3934f70 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFA0370f9107fef0370f910 /* PxTask */;
- targetProxy = FFF50370f9107fef0370f910 /* PBXContainerItemProxy */;
+ target = FFFAf2faef607fb0f2faef60 /* PxTask */;
+ targetProxy = FFF5f2faef607fb0f2faef60 /* PBXContainerItemProxy */;
};
- FFF404b26c807fef04b26c80 /* PBXTargetDependency */ = {
+ FFF4f3934ee07fb0f3934ee0 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFA04b4a4f07fef04b4a4f0 /* SceneQuery */;
- targetProxy = FFF504b4a4f07fef04b4a4f0 /* PBXContainerItemProxy */;
+ target = FFFAf3972c407fb0f3972c40 /* SceneQuery */;
+ targetProxy = FFF5f3972c407fb0f3972c40 /* PBXContainerItemProxy */;
};
- FFF404b26ce07fef04b26ce0 /* PBXTargetDependency */ = {
+ FFF4f3934f407fb0f3934f40 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFA04b4ea707fef04b4ea70 /* SimulationController */;
- targetProxy = FFF504b4ea707fef04b4ea70 /* PBXContainerItemProxy */;
+ target = FFFAf39771c07fb0f39771c0 /* SimulationController */;
+ targetProxy = FFF5f39771c07fb0f39771c0 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of PhysXCharacterKinematic */
- FFFF04b2d1d07fef04b2d1d0 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD04b37ba07fef04b37ba0 /* PhysXExtensions */; };
- FFFF0405b6787fef0405b678 /* CctBoxController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0405b6787fef0405b678 /* CctBoxController.cpp */; };
- FFFF0405b6e07fef0405b6e0 /* CctCapsuleController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0405b6e07fef0405b6e0 /* CctCapsuleController.cpp */; };
- FFFF0405b7487fef0405b748 /* CctCharacterController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0405b7487fef0405b748 /* CctCharacterController.cpp */; };
- FFFF0405b7b07fef0405b7b0 /* CctCharacterControllerCallbacks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0405b7b07fef0405b7b0 /* CctCharacterControllerCallbacks.cpp */; };
- FFFF0405b8187fef0405b818 /* CctCharacterControllerManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0405b8187fef0405b818 /* CctCharacterControllerManager.cpp */; };
- FFFF0405b8807fef0405b880 /* CctController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0405b8807fef0405b880 /* CctController.cpp */; };
- FFFF0405b8e87fef0405b8e8 /* CctObstacleContext.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0405b8e87fef0405b8e8 /* CctObstacleContext.cpp */; };
- FFFF0405b9507fef0405b950 /* CctSweptBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0405b9507fef0405b950 /* CctSweptBox.cpp */; };
- FFFF0405b9b87fef0405b9b8 /* CctSweptCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0405b9b87fef0405b9b8 /* CctSweptCapsule.cpp */; };
- FFFF0405ba207fef0405ba20 /* CctSweptVolume.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0405ba207fef0405ba20 /* CctSweptVolume.cpp */; };
+ FFFFf39548907fb0f3954890 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFDf39602f07fb0f39602f0 /* PhysXExtensions */; };
+ FFFFf481f0787fb0f481f078 /* CctBoxController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf481f0787fb0f481f078 /* CctBoxController.cpp */; };
+ FFFFf481f0e07fb0f481f0e0 /* CctCapsuleController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf481f0e07fb0f481f0e0 /* CctCapsuleController.cpp */; };
+ FFFFf481f1487fb0f481f148 /* CctCharacterController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf481f1487fb0f481f148 /* CctCharacterController.cpp */; };
+ FFFFf481f1b07fb0f481f1b0 /* CctCharacterControllerCallbacks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf481f1b07fb0f481f1b0 /* CctCharacterControllerCallbacks.cpp */; };
+ FFFFf481f2187fb0f481f218 /* CctCharacterControllerManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf481f2187fb0f481f218 /* CctCharacterControllerManager.cpp */; };
+ FFFFf481f2807fb0f481f280 /* CctController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf481f2807fb0f481f280 /* CctController.cpp */; };
+ FFFFf481f2e87fb0f481f2e8 /* CctObstacleContext.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf481f2e87fb0f481f2e8 /* CctObstacleContext.cpp */; };
+ FFFFf481f3507fb0f481f350 /* CctSweptBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf481f3507fb0f481f350 /* CctSweptBox.cpp */; };
+ FFFFf481f3b87fb0f481f3b8 /* CctSweptCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf481f3b87fb0f481f3b8 /* CctSweptCapsule.cpp */; };
+ FFFFf481f4207fb0f481f420 /* CctSweptVolume.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf481f4207fb0f481f420 /* CctSweptVolume.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFD04b269a07fef04b269a0 /* PhysXCharacterKinematic */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCharacterKinematic"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFD04b2dbc07fef04b2dbc0 /* PxBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBoxController.h"; path = "../../../Include/characterkinematic/PxBoxController.h"; sourceTree = SOURCE_ROOT; };
- FFFD04b2dc287fef04b2dc28 /* PxCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCapsuleController.h"; path = "../../../Include/characterkinematic/PxCapsuleController.h"; sourceTree = SOURCE_ROOT; };
- FFFD04b2dc907fef04b2dc90 /* PxCharacter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCharacter.h"; path = "../../../Include/characterkinematic/PxCharacter.h"; sourceTree = SOURCE_ROOT; };
- FFFD04b2dcf87fef04b2dcf8 /* PxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxController.h"; path = "../../../Include/characterkinematic/PxController.h"; sourceTree = SOURCE_ROOT; };
- FFFD04b2dd607fef04b2dd60 /* PxControllerBehavior.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerBehavior.h"; path = "../../../Include/characterkinematic/PxControllerBehavior.h"; sourceTree = SOURCE_ROOT; };
- FFFD04b2ddc87fef04b2ddc8 /* PxControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerManager.h"; path = "../../../Include/characterkinematic/PxControllerManager.h"; sourceTree = SOURCE_ROOT; };
- FFFD04b2de307fef04b2de30 /* PxControllerObstacles.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerObstacles.h"; path = "../../../Include/characterkinematic/PxControllerObstacles.h"; sourceTree = SOURCE_ROOT; };
- FFFD04b2de987fef04b2de98 /* PxExtended.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtended.h"; path = "../../../Include/characterkinematic/PxExtended.h"; sourceTree = SOURCE_ROOT; };
- FFFD0405b2007fef0405b200 /* CctBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.h"; path = "../../PhysXCharacterKinematic/src/CctBoxController.h"; sourceTree = SOURCE_ROOT; };
- FFFD0405b2687fef0405b268 /* CctCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.h"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.h"; sourceTree = SOURCE_ROOT; };
- FFFD0405b2d07fef0405b2d0 /* CctCharacterController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.h"; sourceTree = SOURCE_ROOT; };
- FFFD0405b3387fef0405b338 /* CctCharacterControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.h"; sourceTree = SOURCE_ROOT; };
- FFFD0405b3a07fef0405b3a0 /* CctController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.h"; path = "../../PhysXCharacterKinematic/src/CctController.h"; sourceTree = SOURCE_ROOT; };
- FFFD0405b4087fef0405b408 /* CctInternalStructs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctInternalStructs.h"; path = "../../PhysXCharacterKinematic/src/CctInternalStructs.h"; sourceTree = SOURCE_ROOT; };
- FFFD0405b4707fef0405b470 /* CctObstacleContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.h"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.h"; sourceTree = SOURCE_ROOT; };
- FFFD0405b4d87fef0405b4d8 /* CctSweptBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.h"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.h"; sourceTree = SOURCE_ROOT; };
- FFFD0405b5407fef0405b540 /* CctSweptCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.h"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.h"; sourceTree = SOURCE_ROOT; };
- FFFD0405b5a87fef0405b5a8 /* CctSweptVolume.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.h"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.h"; sourceTree = SOURCE_ROOT; };
- FFFD0405b6107fef0405b610 /* CctUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctUtils.h"; path = "../../PhysXCharacterKinematic/src/CctUtils.h"; sourceTree = SOURCE_ROOT; };
- FFFD0405b6787fef0405b678 /* CctBoxController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.cpp"; path = "../../PhysXCharacterKinematic/src/CctBoxController.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0405b6e07fef0405b6e0 /* CctCapsuleController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0405b7487fef0405b748 /* CctCharacterController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0405b7b07fef0405b7b0 /* CctCharacterControllerCallbacks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerCallbacks.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerCallbacks.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0405b8187fef0405b818 /* CctCharacterControllerManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0405b8807fef0405b880 /* CctController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.cpp"; path = "../../PhysXCharacterKinematic/src/CctController.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0405b8e87fef0405b8e8 /* CctObstacleContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.cpp"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0405b9507fef0405b950 /* CctSweptBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0405b9b87fef0405b9b8 /* CctSweptCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0405ba207fef0405ba20 /* CctSweptVolume.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3934b807fb0f3934b80 /* PhysXCharacterKinematic */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCharacterKinematic"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFDf3955f907fb0f3955f90 /* PxBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBoxController.h"; path = "../../../Include/characterkinematic/PxBoxController.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3955ff87fb0f3955ff8 /* PxCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCapsuleController.h"; path = "../../../Include/characterkinematic/PxCapsuleController.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf39560607fb0f3956060 /* PxCharacter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCharacter.h"; path = "../../../Include/characterkinematic/PxCharacter.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf39560c87fb0f39560c8 /* PxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxController.h"; path = "../../../Include/characterkinematic/PxController.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf39561307fb0f3956130 /* PxControllerBehavior.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerBehavior.h"; path = "../../../Include/characterkinematic/PxControllerBehavior.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf39561987fb0f3956198 /* PxControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerManager.h"; path = "../../../Include/characterkinematic/PxControllerManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf39562007fb0f3956200 /* PxControllerObstacles.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerObstacles.h"; path = "../../../Include/characterkinematic/PxControllerObstacles.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf39562687fb0f3956268 /* PxExtended.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtended.h"; path = "../../../Include/characterkinematic/PxExtended.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf481ec007fb0f481ec00 /* CctBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.h"; path = "../../PhysXCharacterKinematic/src/CctBoxController.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf481ec687fb0f481ec68 /* CctCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.h"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf481ecd07fb0f481ecd0 /* CctCharacterController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf481ed387fb0f481ed38 /* CctCharacterControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf481eda07fb0f481eda0 /* CctController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.h"; path = "../../PhysXCharacterKinematic/src/CctController.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf481ee087fb0f481ee08 /* CctInternalStructs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctInternalStructs.h"; path = "../../PhysXCharacterKinematic/src/CctInternalStructs.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf481ee707fb0f481ee70 /* CctObstacleContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.h"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf481eed87fb0f481eed8 /* CctSweptBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.h"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf481ef407fb0f481ef40 /* CctSweptCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.h"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf481efa87fb0f481efa8 /* CctSweptVolume.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.h"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf481f0107fb0f481f010 /* CctUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctUtils.h"; path = "../../PhysXCharacterKinematic/src/CctUtils.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf481f0787fb0f481f078 /* CctBoxController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.cpp"; path = "../../PhysXCharacterKinematic/src/CctBoxController.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf481f0e07fb0f481f0e0 /* CctCapsuleController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf481f1487fb0f481f148 /* CctCharacterController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf481f1b07fb0f481f1b0 /* CctCharacterControllerCallbacks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerCallbacks.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerCallbacks.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf481f2187fb0f481f218 /* CctCharacterControllerManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf481f2807fb0f481f280 /* CctController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.cpp"; path = "../../PhysXCharacterKinematic/src/CctController.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf481f2e87fb0f481f2e8 /* CctObstacleContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.cpp"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf481f3507fb0f481f350 /* CctSweptBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf481f3b87fb0f481f3b8 /* CctSweptCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf481f4207fb0f481f420 /* CctSweptVolume.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.cpp"; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */
/* Begin PBXResourcesBuildPhase section */
- FFF204b269a07fef04b269a0 /* Resources */ = {
+ FFF2f3934b807fb0f3934b80 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -412,7 +412,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFC04b269a07fef04b269a0 /* Frameworks */ = {
+ FFFCf3934b807fb0f3934b80 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -422,20 +422,20 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF804b269a07fef04b269a0 /* Sources */ = {
+ FFF8f3934b807fb0f3934b80 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFF0405b6787fef0405b678,
- FFFF0405b6e07fef0405b6e0,
- FFFF0405b7487fef0405b748,
- FFFF0405b7b07fef0405b7b0,
- FFFF0405b8187fef0405b818,
- FFFF0405b8807fef0405b880,
- FFFF0405b8e87fef0405b8e8,
- FFFF0405b9507fef0405b950,
- FFFF0405b9b87fef0405b9b8,
- FFFF0405ba207fef0405ba20,
+ FFFFf481f0787fb0f481f078,
+ FFFFf481f0e07fb0f481f0e0,
+ FFFFf481f1487fb0f481f148,
+ FFFFf481f1b07fb0f481f1b0,
+ FFFFf481f2187fb0f481f218,
+ FFFFf481f2807fb0f481f280,
+ FFFFf481f2e87fb0f481f2e8,
+ FFFFf481f3507fb0f481f350,
+ FFFFf481f3b87fb0f481f3b8,
+ FFFFf481f4207fb0f481f420,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -444,91 +444,91 @@
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
- FFF404b2bda07fef04b2bda0 /* PBXTargetDependency */ = {
+ FFF4f3955d507fb0f3955d50 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFA0314a5307fef0314a530 /* PhysXCommon */;
- targetProxy = FFF50314a5307fef0314a530 /* PBXContainerItemProxy */;
+ target = FFFAf299eeb07fb0f299eeb0 /* PhysXCommon */;
+ targetProxy = FFF5f299eeb07fb0f299eeb0 /* PBXContainerItemProxy */;
};
- FFF404b2d1d07fef04b2d1d0 /* PBXTargetDependency */ = {
+ FFF4f39548907fb0f3954890 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFA04b37ba07fef04b37ba0 /* PhysXExtensions */;
- targetProxy = FFF504b37ba07fef04b37ba0 /* PBXContainerItemProxy */;
+ target = FFFAf39602f07fb0f39602f0 /* PhysXExtensions */;
+ targetProxy = FFF5f39602f07fb0f39602f0 /* PBXContainerItemProxy */;
};
- FFF404b2c3a07fef04b2c3a0 /* PBXTargetDependency */ = {
+ FFF4f39555f07fb0f39555f0 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFA031431707fef03143170 /* PxFoundation */;
- targetProxy = FFF5031431707fef03143170 /* PBXContainerItemProxy */;
+ target = FFFAf298c0307fb0f298c030 /* PxFoundation */;
+ targetProxy = FFF5f298c0307fb0f298c030 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of PhysXVehicle */
- FFFF040648087fef04064808 /* PxVehicleComponents.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD040648087fef04064808 /* PxVehicleComponents.cpp */; };
- FFFF040648707fef04064870 /* PxVehicleDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD040648707fef04064870 /* PxVehicleDrive.cpp */; };
- FFFF040648d87fef040648d8 /* PxVehicleDrive4W.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD040648d87fef040648d8 /* PxVehicleDrive4W.cpp */; };
- FFFF040649407fef04064940 /* PxVehicleDriveNW.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD040649407fef04064940 /* PxVehicleDriveNW.cpp */; };
- FFFF040649a87fef040649a8 /* PxVehicleDriveTank.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD040649a87fef040649a8 /* PxVehicleDriveTank.cpp */; };
- FFFF04064a107fef04064a10 /* PxVehicleMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD04064a107fef04064a10 /* PxVehicleMetaData.cpp */; };
- FFFF04064a787fef04064a78 /* PxVehicleNoDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD04064a787fef04064a78 /* PxVehicleNoDrive.cpp */; };
- FFFF04064ae07fef04064ae0 /* PxVehicleSDK.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD04064ae07fef04064ae0 /* PxVehicleSDK.cpp */; };
- FFFF04064b487fef04064b48 /* PxVehicleSerialization.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD04064b487fef04064b48 /* PxVehicleSerialization.cpp */; };
- FFFF04064bb07fef04064bb0 /* PxVehicleSuspWheelTire4.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD04064bb07fef04064bb0 /* PxVehicleSuspWheelTire4.cpp */; };
- FFFF04064c187fef04064c18 /* PxVehicleTireFriction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD04064c187fef04064c18 /* PxVehicleTireFriction.cpp */; };
- FFFF04064c807fef04064c80 /* PxVehicleUpdate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD04064c807fef04064c80 /* PxVehicleUpdate.cpp */; };
- FFFF04064ce87fef04064ce8 /* PxVehicleWheels.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD04064ce87fef04064ce8 /* PxVehicleWheels.cpp */; };
- FFFF04064d507fef04064d50 /* VehicleUtilControl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD04064d507fef04064d50 /* VehicleUtilControl.cpp */; };
- FFFF04064db87fef04064db8 /* VehicleUtilSetup.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD04064db87fef04064db8 /* VehicleUtilSetup.cpp */; };
- FFFF04064e207fef04064e20 /* VehicleUtilTelemetry.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD04064e207fef04064e20 /* VehicleUtilTelemetry.cpp */; };
- FFFF04b39a787fef04b39a78 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD04b39a787fef04b39a78 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */; };
- FFFF04b39ae07fef04b39ae0 /* src/PxVehicleMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD04b39ae07fef04b39ae0 /* src/PxVehicleMetaDataObjects.cpp */; };
+ FFFFf482b8087fb0f482b808 /* PxVehicleComponents.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf482b8087fb0f482b808 /* PxVehicleComponents.cpp */; };
+ FFFFf482b8707fb0f482b870 /* PxVehicleDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf482b8707fb0f482b870 /* PxVehicleDrive.cpp */; };
+ FFFFf482b8d87fb0f482b8d8 /* PxVehicleDrive4W.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf482b8d87fb0f482b8d8 /* PxVehicleDrive4W.cpp */; };
+ FFFFf482b9407fb0f482b940 /* PxVehicleDriveNW.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf482b9407fb0f482b940 /* PxVehicleDriveNW.cpp */; };
+ FFFFf482b9a87fb0f482b9a8 /* PxVehicleDriveTank.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf482b9a87fb0f482b9a8 /* PxVehicleDriveTank.cpp */; };
+ FFFFf482ba107fb0f482ba10 /* PxVehicleMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf482ba107fb0f482ba10 /* PxVehicleMetaData.cpp */; };
+ FFFFf482ba787fb0f482ba78 /* PxVehicleNoDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf482ba787fb0f482ba78 /* PxVehicleNoDrive.cpp */; };
+ FFFFf482bae07fb0f482bae0 /* PxVehicleSDK.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf482bae07fb0f482bae0 /* PxVehicleSDK.cpp */; };
+ FFFFf482bb487fb0f482bb48 /* PxVehicleSerialization.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf482bb487fb0f482bb48 /* PxVehicleSerialization.cpp */; };
+ FFFFf482bbb07fb0f482bbb0 /* PxVehicleSuspWheelTire4.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf482bbb07fb0f482bbb0 /* PxVehicleSuspWheelTire4.cpp */; };
+ FFFFf482bc187fb0f482bc18 /* PxVehicleTireFriction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf482bc187fb0f482bc18 /* PxVehicleTireFriction.cpp */; };
+ FFFFf482bc807fb0f482bc80 /* PxVehicleUpdate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf482bc807fb0f482bc80 /* PxVehicleUpdate.cpp */; };
+ FFFFf482bce87fb0f482bce8 /* PxVehicleWheels.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf482bce87fb0f482bce8 /* PxVehicleWheels.cpp */; };
+ FFFFf482bd507fb0f482bd50 /* VehicleUtilControl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf482bd507fb0f482bd50 /* VehicleUtilControl.cpp */; };
+ FFFFf482bdb87fb0f482bdb8 /* VehicleUtilSetup.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf482bdb87fb0f482bdb8 /* VehicleUtilSetup.cpp */; };
+ FFFFf482be207fb0f482be20 /* VehicleUtilTelemetry.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf482be207fb0f482be20 /* VehicleUtilTelemetry.cpp */; };
+ FFFFf39621c87fb0f39621c8 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDf39621c87fb0f39621c8 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */; };
+ FFFFf39622307fb0f3962230 /* src/PxVehicleMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDf39622307fb0f3962230 /* src/PxVehicleMetaDataObjects.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFD04b27f107fef04b27f10 /* PhysXVehicle */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXVehicle"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFD0405d0007fef0405d000 /* PxVehicleComponents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.h"; path = "../../../Include/vehicle/PxVehicleComponents.h"; sourceTree = SOURCE_ROOT; };
- FFFD0405d0687fef0405d068 /* PxVehicleDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.h"; path = "../../../Include/vehicle/PxVehicleDrive.h"; sourceTree = SOURCE_ROOT; };
- FFFD0405d0d07fef0405d0d0 /* PxVehicleDrive4W.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.h"; path = "../../../Include/vehicle/PxVehicleDrive4W.h"; sourceTree = SOURCE_ROOT; };
- FFFD0405d1387fef0405d138 /* PxVehicleDriveNW.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.h"; path = "../../../Include/vehicle/PxVehicleDriveNW.h"; sourceTree = SOURCE_ROOT; };
- FFFD0405d1a07fef0405d1a0 /* PxVehicleDriveTank.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.h"; path = "../../../Include/vehicle/PxVehicleDriveTank.h"; sourceTree = SOURCE_ROOT; };
- FFFD0405d2087fef0405d208 /* PxVehicleNoDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.h"; path = "../../../Include/vehicle/PxVehicleNoDrive.h"; sourceTree = SOURCE_ROOT; };
- FFFD0405d2707fef0405d270 /* PxVehicleSDK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.h"; path = "../../../Include/vehicle/PxVehicleSDK.h"; sourceTree = SOURCE_ROOT; };
- FFFD0405d2d87fef0405d2d8 /* PxVehicleShaders.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleShaders.h"; path = "../../../Include/vehicle/PxVehicleShaders.h"; sourceTree = SOURCE_ROOT; };
- FFFD0405d3407fef0405d340 /* PxVehicleTireFriction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.h"; path = "../../../Include/vehicle/PxVehicleTireFriction.h"; sourceTree = SOURCE_ROOT; };
- FFFD0405d3a87fef0405d3a8 /* PxVehicleUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.h"; path = "../../../Include/vehicle/PxVehicleUpdate.h"; sourceTree = SOURCE_ROOT; };
- FFFD0405d4107fef0405d410 /* PxVehicleUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtil.h"; path = "../../../Include/vehicle/PxVehicleUtil.h"; sourceTree = SOURCE_ROOT; };
- FFFD0405d4787fef0405d478 /* PxVehicleUtilControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilControl.h"; path = "../../../Include/vehicle/PxVehicleUtilControl.h"; sourceTree = SOURCE_ROOT; };
- FFFD0405d4e07fef0405d4e0 /* PxVehicleUtilSetup.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilSetup.h"; path = "../../../Include/vehicle/PxVehicleUtilSetup.h"; sourceTree = SOURCE_ROOT; };
- FFFD0405d5487fef0405d548 /* PxVehicleUtilTelemetry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilTelemetry.h"; path = "../../../Include/vehicle/PxVehicleUtilTelemetry.h"; sourceTree = SOURCE_ROOT; };
- FFFD0405d5b07fef0405d5b0 /* PxVehicleWheels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.h"; path = "../../../Include/vehicle/PxVehicleWheels.h"; sourceTree = SOURCE_ROOT; };
- FFFD040646007fef04064600 /* PxVehicleDefaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDefaults.h"; path = "../../PhysXVehicle/src/PxVehicleDefaults.h"; sourceTree = SOURCE_ROOT; };
- FFFD040646687fef04064668 /* PxVehicleLinearMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleLinearMath.h"; path = "../../PhysXVehicle/src/PxVehicleLinearMath.h"; sourceTree = SOURCE_ROOT; };
- FFFD040646d07fef040646d0 /* PxVehicleSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.h"; path = "../../PhysXVehicle/src/PxVehicleSerialization.h"; sourceTree = SOURCE_ROOT; };
- FFFD040647387fef04064738 /* PxVehicleSuspLimitConstraintShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspLimitConstraintShader.h"; path = "../../PhysXVehicle/src/PxVehicleSuspLimitConstraintShader.h"; sourceTree = SOURCE_ROOT; };
- FFFD040647a07fef040647a0 /* PxVehicleSuspWheelTire4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.h"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.h"; sourceTree = SOURCE_ROOT; };
- FFFD040648087fef04064808 /* PxVehicleComponents.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.cpp"; path = "../../PhysXVehicle/src/PxVehicleComponents.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD040648707fef04064870 /* PxVehicleDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD040648d87fef040648d8 /* PxVehicleDrive4W.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive4W.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD040649407fef04064940 /* PxVehicleDriveNW.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveNW.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD040649a87fef040649a8 /* PxVehicleDriveTank.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveTank.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD04064a107fef04064a10 /* PxVehicleMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleMetaData.cpp"; path = "../../PhysXVehicle/src/PxVehicleMetaData.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD04064a787fef04064a78 /* PxVehicleNoDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleNoDrive.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD04064ae07fef04064ae0 /* PxVehicleSDK.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.cpp"; path = "../../PhysXVehicle/src/PxVehicleSDK.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD04064b487fef04064b48 /* PxVehicleSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.cpp"; path = "../../PhysXVehicle/src/PxVehicleSerialization.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD04064bb07fef04064bb0 /* PxVehicleSuspWheelTire4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.cpp"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD04064c187fef04064c18 /* PxVehicleTireFriction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.cpp"; path = "../../PhysXVehicle/src/PxVehicleTireFriction.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD04064c807fef04064c80 /* PxVehicleUpdate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.cpp"; path = "../../PhysXVehicle/src/PxVehicleUpdate.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD04064ce87fef04064ce8 /* PxVehicleWheels.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.cpp"; path = "../../PhysXVehicle/src/PxVehicleWheels.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD04064d507fef04064d50 /* VehicleUtilControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilControl.cpp"; path = "../../PhysXVehicle/src/VehicleUtilControl.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD04064db87fef04064db8 /* VehicleUtilSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilSetup.cpp"; path = "../../PhysXVehicle/src/VehicleUtilSetup.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD04064e207fef04064e20 /* VehicleUtilTelemetry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilTelemetry.cpp"; path = "../../PhysXVehicle/src/VehicleUtilTelemetry.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD04b399407fef04b39940 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; };
- FFFD04b399a87fef04b399a8 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
- FFFD04b39a107fef04b39a10 /* include/PxVehicleMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
- FFFD04b39a787fef04b39a78 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXVehicle/src/PhysXMetaData/src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD04b39ae07fef04b39ae0 /* src/PxVehicleMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxVehicleMetaDataObjects.cpp"; path = "../../PhysXVehicle/src/PhysXMetaData/src/PxVehicleMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3950f807fb0f3950f80 /* PhysXVehicle */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXVehicle"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFDf4820a007fb0f4820a00 /* PxVehicleComponents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.h"; path = "../../../Include/vehicle/PxVehicleComponents.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4820a687fb0f4820a68 /* PxVehicleDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.h"; path = "../../../Include/vehicle/PxVehicleDrive.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4820ad07fb0f4820ad0 /* PxVehicleDrive4W.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.h"; path = "../../../Include/vehicle/PxVehicleDrive4W.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4820b387fb0f4820b38 /* PxVehicleDriveNW.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.h"; path = "../../../Include/vehicle/PxVehicleDriveNW.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4820ba07fb0f4820ba0 /* PxVehicleDriveTank.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.h"; path = "../../../Include/vehicle/PxVehicleDriveTank.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4820c087fb0f4820c08 /* PxVehicleNoDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.h"; path = "../../../Include/vehicle/PxVehicleNoDrive.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4820c707fb0f4820c70 /* PxVehicleSDK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.h"; path = "../../../Include/vehicle/PxVehicleSDK.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4820cd87fb0f4820cd8 /* PxVehicleShaders.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleShaders.h"; path = "../../../Include/vehicle/PxVehicleShaders.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4820d407fb0f4820d40 /* PxVehicleTireFriction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.h"; path = "../../../Include/vehicle/PxVehicleTireFriction.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4820da87fb0f4820da8 /* PxVehicleUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.h"; path = "../../../Include/vehicle/PxVehicleUpdate.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4820e107fb0f4820e10 /* PxVehicleUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtil.h"; path = "../../../Include/vehicle/PxVehicleUtil.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4820e787fb0f4820e78 /* PxVehicleUtilControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilControl.h"; path = "../../../Include/vehicle/PxVehicleUtilControl.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4820ee07fb0f4820ee0 /* PxVehicleUtilSetup.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilSetup.h"; path = "../../../Include/vehicle/PxVehicleUtilSetup.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4820f487fb0f4820f48 /* PxVehicleUtilTelemetry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilTelemetry.h"; path = "../../../Include/vehicle/PxVehicleUtilTelemetry.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4820fb07fb0f4820fb0 /* PxVehicleWheels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.h"; path = "../../../Include/vehicle/PxVehicleWheels.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482b6007fb0f482b600 /* PxVehicleDefaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDefaults.h"; path = "../../PhysXVehicle/src/PxVehicleDefaults.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482b6687fb0f482b668 /* PxVehicleLinearMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleLinearMath.h"; path = "../../PhysXVehicle/src/PxVehicleLinearMath.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482b6d07fb0f482b6d0 /* PxVehicleSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.h"; path = "../../PhysXVehicle/src/PxVehicleSerialization.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482b7387fb0f482b738 /* PxVehicleSuspLimitConstraintShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspLimitConstraintShader.h"; path = "../../PhysXVehicle/src/PxVehicleSuspLimitConstraintShader.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482b7a07fb0f482b7a0 /* PxVehicleSuspWheelTire4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.h"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482b8087fb0f482b808 /* PxVehicleComponents.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.cpp"; path = "../../PhysXVehicle/src/PxVehicleComponents.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf482b8707fb0f482b870 /* PxVehicleDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf482b8d87fb0f482b8d8 /* PxVehicleDrive4W.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive4W.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf482b9407fb0f482b940 /* PxVehicleDriveNW.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveNW.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf482b9a87fb0f482b9a8 /* PxVehicleDriveTank.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveTank.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf482ba107fb0f482ba10 /* PxVehicleMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleMetaData.cpp"; path = "../../PhysXVehicle/src/PxVehicleMetaData.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf482ba787fb0f482ba78 /* PxVehicleNoDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleNoDrive.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf482bae07fb0f482bae0 /* PxVehicleSDK.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.cpp"; path = "../../PhysXVehicle/src/PxVehicleSDK.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf482bb487fb0f482bb48 /* PxVehicleSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.cpp"; path = "../../PhysXVehicle/src/PxVehicleSerialization.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf482bbb07fb0f482bbb0 /* PxVehicleSuspWheelTire4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.cpp"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf482bc187fb0f482bc18 /* PxVehicleTireFriction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.cpp"; path = "../../PhysXVehicle/src/PxVehicleTireFriction.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf482bc807fb0f482bc80 /* PxVehicleUpdate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.cpp"; path = "../../PhysXVehicle/src/PxVehicleUpdate.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf482bce87fb0f482bce8 /* PxVehicleWheels.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.cpp"; path = "../../PhysXVehicle/src/PxVehicleWheels.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf482bd507fb0f482bd50 /* VehicleUtilControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilControl.cpp"; path = "../../PhysXVehicle/src/VehicleUtilControl.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf482bdb87fb0f482bdb8 /* VehicleUtilSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilSetup.cpp"; path = "../../PhysXVehicle/src/VehicleUtilSetup.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf482be207fb0f482be20 /* VehicleUtilTelemetry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilTelemetry.cpp"; path = "../../PhysXVehicle/src/VehicleUtilTelemetry.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf39620907fb0f3962090 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf39620f87fb0f39620f8 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf39621607fb0f3962160 /* include/PxVehicleMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf39621c87fb0f39621c8 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXVehicle/src/PhysXMetaData/src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf39622307fb0f3962230 /* 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 */
- FFF204b27f107fef04b27f10 /* Resources */ = {
+ FFF2f3950f807fb0f3950f80 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -538,7 +538,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFC04b27f107fef04b27f10 /* Frameworks */ = {
+ FFFCf3950f807fb0f3950f80 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -548,28 +548,28 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF804b27f107fef04b27f10 /* Sources */ = {
+ FFF8f3950f807fb0f3950f80 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFF040648087fef04064808,
- FFFF040648707fef04064870,
- FFFF040648d87fef040648d8,
- FFFF040649407fef04064940,
- FFFF040649a87fef040649a8,
- FFFF04064a107fef04064a10,
- FFFF04064a787fef04064a78,
- FFFF04064ae07fef04064ae0,
- FFFF04064b487fef04064b48,
- FFFF04064bb07fef04064bb0,
- FFFF04064c187fef04064c18,
- FFFF04064c807fef04064c80,
- FFFF04064ce87fef04064ce8,
- FFFF04064d507fef04064d50,
- FFFF04064db87fef04064db8,
- FFFF04064e207fef04064e20,
- FFFF04b39a787fef04b39a78,
- FFFF04b39ae07fef04b39ae0,
+ FFFFf482b8087fb0f482b808,
+ FFFFf482b8707fb0f482b870,
+ FFFFf482b8d87fb0f482b8d8,
+ FFFFf482b9407fb0f482b940,
+ FFFFf482b9a87fb0f482b9a8,
+ FFFFf482ba107fb0f482ba10,
+ FFFFf482ba787fb0f482ba78,
+ FFFFf482bae07fb0f482bae0,
+ FFFFf482bb487fb0f482bb48,
+ FFFFf482bbb07fb0f482bbb0,
+ FFFFf482bc187fb0f482bc18,
+ FFFFf482bc807fb0f482bc80,
+ FFFFf482bce87fb0f482bce8,
+ FFFFf482bd507fb0f482bd50,
+ FFFFf482bdb87fb0f482bdb8,
+ FFFFf482be207fb0f482be20,
+ FFFFf39621c87fb0f39621c8,
+ FFFFf39622307fb0f3962230,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -581,220 +581,220 @@
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of PhysXExtensions */
- FFFF04066ee87fef04066ee8 /* ExtBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD04066ee87fef04066ee8 /* ExtBroadPhase.cpp */; };
- FFFF04066f507fef04066f50 /* ExtClothFabricCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD04066f507fef04066f50 /* ExtClothFabricCooker.cpp */; };
- FFFF04066fb87fef04066fb8 /* ExtClothGeodesicTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD04066fb87fef04066fb8 /* ExtClothGeodesicTetherCooker.cpp */; };
- FFFF040670207fef04067020 /* ExtClothMeshQuadifier.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD040670207fef04067020 /* ExtClothMeshQuadifier.cpp */; };
- FFFF040670887fef04067088 /* ExtClothSimpleTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD040670887fef04067088 /* ExtClothSimpleTetherCooker.cpp */; };
- FFFF040670f07fef040670f0 /* ExtCollection.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD040670f07fef040670f0 /* ExtCollection.cpp */; };
- FFFF040671587fef04067158 /* ExtConvexMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD040671587fef04067158 /* ExtConvexMeshExt.cpp */; };
- FFFF040671c07fef040671c0 /* ExtCpuWorkerThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD040671c07fef040671c0 /* ExtCpuWorkerThread.cpp */; };
- FFFF040672287fef04067228 /* ExtD6Joint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD040672287fef04067228 /* ExtD6Joint.cpp */; };
- FFFF040672907fef04067290 /* ExtD6JointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD040672907fef04067290 /* ExtD6JointSolverPrep.cpp */; };
- FFFF040672f87fef040672f8 /* ExtDefaultCpuDispatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD040672f87fef040672f8 /* ExtDefaultCpuDispatcher.cpp */; };
- FFFF040673607fef04067360 /* ExtDefaultErrorCallback.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD040673607fef04067360 /* ExtDefaultErrorCallback.cpp */; };
- FFFF040673c87fef040673c8 /* ExtDefaultSimulationFilterShader.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD040673c87fef040673c8 /* ExtDefaultSimulationFilterShader.cpp */; };
- FFFF040674307fef04067430 /* ExtDefaultStreams.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD040674307fef04067430 /* ExtDefaultStreams.cpp */; };
- FFFF040674987fef04067498 /* ExtDistanceJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD040674987fef04067498 /* ExtDistanceJoint.cpp */; };
- FFFF040675007fef04067500 /* ExtDistanceJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD040675007fef04067500 /* ExtDistanceJointSolverPrep.cpp */; };
- FFFF040675687fef04067568 /* ExtExtensions.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD040675687fef04067568 /* ExtExtensions.cpp */; };
- FFFF040675d07fef040675d0 /* ExtFixedJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD040675d07fef040675d0 /* ExtFixedJoint.cpp */; };
- FFFF040676387fef04067638 /* ExtFixedJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD040676387fef04067638 /* ExtFixedJointSolverPrep.cpp */; };
- FFFF040676a07fef040676a0 /* ExtJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD040676a07fef040676a0 /* ExtJoint.cpp */; };
- FFFF040677087fef04067708 /* ExtMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD040677087fef04067708 /* ExtMetaData.cpp */; };
- FFFF040677707fef04067770 /* ExtParticleExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD040677707fef04067770 /* ExtParticleExt.cpp */; };
- FFFF040677d87fef040677d8 /* ExtPrismaticJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD040677d87fef040677d8 /* ExtPrismaticJoint.cpp */; };
- FFFF040678407fef04067840 /* ExtPrismaticJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD040678407fef04067840 /* ExtPrismaticJointSolverPrep.cpp */; };
- FFFF040678a87fef040678a8 /* ExtPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD040678a87fef040678a8 /* ExtPvd.cpp */; };
- FFFF040679107fef04067910 /* ExtPxStringTable.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD040679107fef04067910 /* ExtPxStringTable.cpp */; };
- FFFF040679787fef04067978 /* ExtRaycastCCD.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD040679787fef04067978 /* ExtRaycastCCD.cpp */; };
- FFFF040679e07fef040679e0 /* ExtRevoluteJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD040679e07fef040679e0 /* ExtRevoluteJoint.cpp */; };
- FFFF04067a487fef04067a48 /* ExtRevoluteJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD04067a487fef04067a48 /* ExtRevoluteJointSolverPrep.cpp */; };
- FFFF04067ab07fef04067ab0 /* ExtRigidBodyExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD04067ab07fef04067ab0 /* ExtRigidBodyExt.cpp */; };
- FFFF04067b187fef04067b18 /* ExtSceneQueryExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD04067b187fef04067b18 /* ExtSceneQueryExt.cpp */; };
- FFFF04067b807fef04067b80 /* ExtSimpleFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD04067b807fef04067b80 /* ExtSimpleFactory.cpp */; };
- FFFF04067be87fef04067be8 /* ExtSmoothNormals.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD04067be87fef04067be8 /* ExtSmoothNormals.cpp */; };
- FFFF04067c507fef04067c50 /* ExtSphericalJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD04067c507fef04067c50 /* ExtSphericalJoint.cpp */; };
- FFFF04067cb87fef04067cb8 /* ExtSphericalJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD04067cb87fef04067cb8 /* ExtSphericalJointSolverPrep.cpp */; };
- FFFF04067d207fef04067d20 /* ExtTriangleMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD04067d207fef04067d20 /* ExtTriangleMeshExt.cpp */; };
- FFFF0406b2d07fef0406b2d0 /* SnSerialUtils.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD0406b2d07fef0406b2d0 /* SnSerialUtils.cpp */; };
- FFFF0406b3387fef0406b338 /* SnSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD0406b3387fef0406b338 /* SnSerialization.cpp */; };
- FFFF0406b3a07fef0406b3a0 /* SnSerializationRegistry.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD0406b3a07fef0406b3a0 /* SnSerializationRegistry.cpp */; };
- FFFF0406b6e07fef0406b6e0 /* Binary/SnBinaryDeserialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD0406b6e07fef0406b6e0 /* Binary/SnBinaryDeserialization.cpp */; };
- FFFF0406b7487fef0406b748 /* Binary/SnBinarySerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD0406b7487fef0406b748 /* Binary/SnBinarySerialization.cpp */; };
- FFFF0406b7b07fef0406b7b0 /* Binary/SnConvX.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD0406b7b07fef0406b7b0 /* Binary/SnConvX.cpp */; };
- FFFF0406b8187fef0406b818 /* Binary/SnConvX_Align.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD0406b8187fef0406b818 /* Binary/SnConvX_Align.cpp */; };
- FFFF0406b8807fef0406b880 /* Binary/SnConvX_Convert.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD0406b8807fef0406b880 /* Binary/SnConvX_Convert.cpp */; };
- FFFF0406b8e87fef0406b8e8 /* Binary/SnConvX_Error.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD0406b8e87fef0406b8e8 /* Binary/SnConvX_Error.cpp */; };
- FFFF0406b9507fef0406b950 /* Binary/SnConvX_MetaData.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD0406b9507fef0406b950 /* Binary/SnConvX_MetaData.cpp */; };
- FFFF0406b9b87fef0406b9b8 /* Binary/SnConvX_Output.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD0406b9b87fef0406b9b8 /* Binary/SnConvX_Output.cpp */; };
- FFFF0406ba207fef0406ba20 /* Binary/SnConvX_Union.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD0406ba207fef0406ba20 /* Binary/SnConvX_Union.cpp */; };
- FFFF0406ba887fef0406ba88 /* Binary/SnSerializationContext.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD0406ba887fef0406ba88 /* Binary/SnSerializationContext.cpp */; };
- FFFF0406c3e07fef0406c3e0 /* Xml/SnJointRepXSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD0406c3e07fef0406c3e0 /* Xml/SnJointRepXSerializer.cpp */; };
- FFFF0406c4487fef0406c448 /* Xml/SnRepXCoreSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD0406c4487fef0406c448 /* Xml/SnRepXCoreSerializer.cpp */; };
- FFFF0406c4b07fef0406c4b0 /* Xml/SnRepXUpgrader.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD0406c4b07fef0406c4b0 /* Xml/SnRepXUpgrader.cpp */; };
- FFFF0406c5187fef0406c518 /* Xml/SnXmlSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD0406c5187fef0406c518 /* Xml/SnXmlSerialization.cpp */; };
- FFFF040692e07fef040692e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD040692e07fef040692e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */; };
+ FFFFf482d6e87fb0f482d6e8 /* ExtBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf482d6e87fb0f482d6e8 /* ExtBroadPhase.cpp */; };
+ FFFFf482d7507fb0f482d750 /* ExtClothFabricCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf482d7507fb0f482d750 /* ExtClothFabricCooker.cpp */; };
+ FFFFf482d7b87fb0f482d7b8 /* ExtClothGeodesicTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf482d7b87fb0f482d7b8 /* ExtClothGeodesicTetherCooker.cpp */; };
+ FFFFf482d8207fb0f482d820 /* ExtClothMeshQuadifier.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf482d8207fb0f482d820 /* ExtClothMeshQuadifier.cpp */; };
+ FFFFf482d8887fb0f482d888 /* ExtClothSimpleTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf482d8887fb0f482d888 /* ExtClothSimpleTetherCooker.cpp */; };
+ FFFFf482d8f07fb0f482d8f0 /* ExtCollection.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf482d8f07fb0f482d8f0 /* ExtCollection.cpp */; };
+ FFFFf482d9587fb0f482d958 /* ExtConvexMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf482d9587fb0f482d958 /* ExtConvexMeshExt.cpp */; };
+ FFFFf482d9c07fb0f482d9c0 /* ExtCpuWorkerThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf482d9c07fb0f482d9c0 /* ExtCpuWorkerThread.cpp */; };
+ FFFFf482da287fb0f482da28 /* ExtD6Joint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf482da287fb0f482da28 /* ExtD6Joint.cpp */; };
+ FFFFf482da907fb0f482da90 /* ExtD6JointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf482da907fb0f482da90 /* ExtD6JointSolverPrep.cpp */; };
+ FFFFf482daf87fb0f482daf8 /* ExtDefaultCpuDispatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf482daf87fb0f482daf8 /* ExtDefaultCpuDispatcher.cpp */; };
+ FFFFf482db607fb0f482db60 /* ExtDefaultErrorCallback.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf482db607fb0f482db60 /* ExtDefaultErrorCallback.cpp */; };
+ FFFFf482dbc87fb0f482dbc8 /* ExtDefaultSimulationFilterShader.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf482dbc87fb0f482dbc8 /* ExtDefaultSimulationFilterShader.cpp */; };
+ FFFFf482dc307fb0f482dc30 /* ExtDefaultStreams.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf482dc307fb0f482dc30 /* ExtDefaultStreams.cpp */; };
+ FFFFf482dc987fb0f482dc98 /* ExtDistanceJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf482dc987fb0f482dc98 /* ExtDistanceJoint.cpp */; };
+ FFFFf482dd007fb0f482dd00 /* ExtDistanceJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf482dd007fb0f482dd00 /* ExtDistanceJointSolverPrep.cpp */; };
+ FFFFf482dd687fb0f482dd68 /* ExtExtensions.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf482dd687fb0f482dd68 /* ExtExtensions.cpp */; };
+ FFFFf482ddd07fb0f482ddd0 /* ExtFixedJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf482ddd07fb0f482ddd0 /* ExtFixedJoint.cpp */; };
+ FFFFf482de387fb0f482de38 /* ExtFixedJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf482de387fb0f482de38 /* ExtFixedJointSolverPrep.cpp */; };
+ FFFFf482dea07fb0f482dea0 /* ExtJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf482dea07fb0f482dea0 /* ExtJoint.cpp */; };
+ FFFFf482df087fb0f482df08 /* ExtMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf482df087fb0f482df08 /* ExtMetaData.cpp */; };
+ FFFFf482df707fb0f482df70 /* ExtParticleExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf482df707fb0f482df70 /* ExtParticleExt.cpp */; };
+ FFFFf482dfd87fb0f482dfd8 /* ExtPrismaticJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf482dfd87fb0f482dfd8 /* ExtPrismaticJoint.cpp */; };
+ FFFFf482e0407fb0f482e040 /* ExtPrismaticJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf482e0407fb0f482e040 /* ExtPrismaticJointSolverPrep.cpp */; };
+ FFFFf482e0a87fb0f482e0a8 /* ExtPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf482e0a87fb0f482e0a8 /* ExtPvd.cpp */; };
+ FFFFf482e1107fb0f482e110 /* ExtPxStringTable.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf482e1107fb0f482e110 /* ExtPxStringTable.cpp */; };
+ FFFFf482e1787fb0f482e178 /* ExtRaycastCCD.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf482e1787fb0f482e178 /* ExtRaycastCCD.cpp */; };
+ FFFFf482e1e07fb0f482e1e0 /* ExtRevoluteJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf482e1e07fb0f482e1e0 /* ExtRevoluteJoint.cpp */; };
+ FFFFf482e2487fb0f482e248 /* ExtRevoluteJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf482e2487fb0f482e248 /* ExtRevoluteJointSolverPrep.cpp */; };
+ FFFFf482e2b07fb0f482e2b0 /* ExtRigidBodyExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf482e2b07fb0f482e2b0 /* ExtRigidBodyExt.cpp */; };
+ FFFFf482e3187fb0f482e318 /* ExtSceneQueryExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf482e3187fb0f482e318 /* ExtSceneQueryExt.cpp */; };
+ FFFFf482e3807fb0f482e380 /* ExtSimpleFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf482e3807fb0f482e380 /* ExtSimpleFactory.cpp */; };
+ FFFFf482e3e87fb0f482e3e8 /* ExtSmoothNormals.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf482e3e87fb0f482e3e8 /* ExtSmoothNormals.cpp */; };
+ FFFFf482e4507fb0f482e450 /* ExtSphericalJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf482e4507fb0f482e450 /* ExtSphericalJoint.cpp */; };
+ FFFFf482e4b87fb0f482e4b8 /* ExtSphericalJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf482e4b87fb0f482e4b8 /* ExtSphericalJointSolverPrep.cpp */; };
+ FFFFf482e5207fb0f482e520 /* ExtTriangleMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf482e5207fb0f482e520 /* ExtTriangleMeshExt.cpp */; };
+ FFFFf4831ad07fb0f4831ad0 /* SnSerialUtils.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDf4831ad07fb0f4831ad0 /* SnSerialUtils.cpp */; };
+ FFFFf4831b387fb0f4831b38 /* SnSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDf4831b387fb0f4831b38 /* SnSerialization.cpp */; };
+ FFFFf4831ba07fb0f4831ba0 /* SnSerializationRegistry.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDf4831ba07fb0f4831ba0 /* SnSerializationRegistry.cpp */; };
+ FFFFf4831ee07fb0f4831ee0 /* Binary/SnBinaryDeserialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDf4831ee07fb0f4831ee0 /* Binary/SnBinaryDeserialization.cpp */; };
+ FFFFf4831f487fb0f4831f48 /* Binary/SnBinarySerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDf4831f487fb0f4831f48 /* Binary/SnBinarySerialization.cpp */; };
+ FFFFf4831fb07fb0f4831fb0 /* Binary/SnConvX.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDf4831fb07fb0f4831fb0 /* Binary/SnConvX.cpp */; };
+ FFFFf48320187fb0f4832018 /* Binary/SnConvX_Align.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDf48320187fb0f4832018 /* Binary/SnConvX_Align.cpp */; };
+ FFFFf48320807fb0f4832080 /* Binary/SnConvX_Convert.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDf48320807fb0f4832080 /* Binary/SnConvX_Convert.cpp */; };
+ FFFFf48320e87fb0f48320e8 /* Binary/SnConvX_Error.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDf48320e87fb0f48320e8 /* Binary/SnConvX_Error.cpp */; };
+ FFFFf48321507fb0f4832150 /* Binary/SnConvX_MetaData.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDf48321507fb0f4832150 /* Binary/SnConvX_MetaData.cpp */; };
+ FFFFf48321b87fb0f48321b8 /* Binary/SnConvX_Output.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDf48321b87fb0f48321b8 /* Binary/SnConvX_Output.cpp */; };
+ FFFFf48322207fb0f4832220 /* Binary/SnConvX_Union.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDf48322207fb0f4832220 /* Binary/SnConvX_Union.cpp */; };
+ FFFFf48322887fb0f4832288 /* Binary/SnSerializationContext.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDf48322887fb0f4832288 /* Binary/SnSerializationContext.cpp */; };
+ FFFFf4832be07fb0f4832be0 /* Xml/SnJointRepXSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDf4832be07fb0f4832be0 /* Xml/SnJointRepXSerializer.cpp */; };
+ FFFFf4832c487fb0f4832c48 /* Xml/SnRepXCoreSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDf4832c487fb0f4832c48 /* Xml/SnRepXCoreSerializer.cpp */; };
+ FFFFf4832cb07fb0f4832cb0 /* Xml/SnRepXUpgrader.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDf4832cb07fb0f4832cb0 /* Xml/SnRepXUpgrader.cpp */; };
+ FFFFf4832d187fb0f4832d18 /* Xml/SnXmlSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDf4832d187fb0f4832d18 /* Xml/SnXmlSerialization.cpp */; };
+ FFFFf482fae07fb0f482fae0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDf482fae07fb0f482fae0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFD04b37ba07fef04b37ba0 /* PhysXExtensions */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXExtensions"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFD04067e007fef04067e00 /* PxBinaryConverter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBinaryConverter.h"; path = "../../../Include/extensions/PxBinaryConverter.h"; sourceTree = SOURCE_ROOT; };
- FFFD04067e687fef04067e68 /* PxBroadPhaseExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhaseExt.h"; path = "../../../Include/extensions/PxBroadPhaseExt.h"; sourceTree = SOURCE_ROOT; };
- FFFD04067ed07fef04067ed0 /* PxClothFabricCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothFabricCooker.h"; path = "../../../Include/extensions/PxClothFabricCooker.h"; sourceTree = SOURCE_ROOT; };
- FFFD04067f387fef04067f38 /* PxClothMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshDesc.h"; path = "../../../Include/extensions/PxClothMeshDesc.h"; sourceTree = SOURCE_ROOT; };
- FFFD04067fa07fef04067fa0 /* PxClothMeshQuadifier.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshQuadifier.h"; path = "../../../Include/extensions/PxClothMeshQuadifier.h"; sourceTree = SOURCE_ROOT; };
- FFFD040680087fef04068008 /* PxClothTetherCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothTetherCooker.h"; path = "../../../Include/extensions/PxClothTetherCooker.h"; sourceTree = SOURCE_ROOT; };
- FFFD040680707fef04068070 /* PxCollectionExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCollectionExt.h"; path = "../../../Include/extensions/PxCollectionExt.h"; sourceTree = SOURCE_ROOT; };
- FFFD040680d87fef040680d8 /* PxConstraintExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintExt.h"; path = "../../../Include/extensions/PxConstraintExt.h"; sourceTree = SOURCE_ROOT; };
- FFFD040681407fef04068140 /* PxConvexMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshExt.h"; path = "../../../Include/extensions/PxConvexMeshExt.h"; sourceTree = SOURCE_ROOT; };
- FFFD040681a87fef040681a8 /* PxD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxD6Joint.h"; path = "../../../Include/extensions/PxD6Joint.h"; sourceTree = SOURCE_ROOT; };
- FFFD040682107fef04068210 /* PxDefaultAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultAllocator.h"; path = "../../../Include/extensions/PxDefaultAllocator.h"; sourceTree = SOURCE_ROOT; };
- FFFD040682787fef04068278 /* PxDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultCpuDispatcher.h"; path = "../../../Include/extensions/PxDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; };
- FFFD040682e07fef040682e0 /* PxDefaultErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultErrorCallback.h"; path = "../../../Include/extensions/PxDefaultErrorCallback.h"; sourceTree = SOURCE_ROOT; };
- FFFD040683487fef04068348 /* PxDefaultSimulationFilterShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultSimulationFilterShader.h"; path = "../../../Include/extensions/PxDefaultSimulationFilterShader.h"; sourceTree = SOURCE_ROOT; };
- FFFD040683b07fef040683b0 /* PxDefaultStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultStreams.h"; path = "../../../Include/extensions/PxDefaultStreams.h"; sourceTree = SOURCE_ROOT; };
- FFFD040684187fef04068418 /* PxDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDistanceJoint.h"; path = "../../../Include/extensions/PxDistanceJoint.h"; sourceTree = SOURCE_ROOT; };
- FFFD040684807fef04068480 /* PxExtensionsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtensionsAPI.h"; path = "../../../Include/extensions/PxExtensionsAPI.h"; sourceTree = SOURCE_ROOT; };
- FFFD040684e87fef040684e8 /* PxFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFixedJoint.h"; path = "../../../Include/extensions/PxFixedJoint.h"; sourceTree = SOURCE_ROOT; };
- FFFD040685507fef04068550 /* PxJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJoint.h"; path = "../../../Include/extensions/PxJoint.h"; sourceTree = SOURCE_ROOT; };
- FFFD040685b87fef040685b8 /* PxJointLimit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJointLimit.h"; path = "../../../Include/extensions/PxJointLimit.h"; sourceTree = SOURCE_ROOT; };
- FFFD040686207fef04068620 /* PxMassProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMassProperties.h"; path = "../../../Include/extensions/PxMassProperties.h"; sourceTree = SOURCE_ROOT; };
- FFFD040686887fef04068688 /* PxParticleExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxParticleExt.h"; path = "../../../Include/extensions/PxParticleExt.h"; sourceTree = SOURCE_ROOT; };
- FFFD040686f07fef040686f0 /* PxPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPrismaticJoint.h"; path = "../../../Include/extensions/PxPrismaticJoint.h"; sourceTree = SOURCE_ROOT; };
- FFFD040687587fef04068758 /* PxRaycastCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRaycastCCD.h"; path = "../../../Include/extensions/PxRaycastCCD.h"; sourceTree = SOURCE_ROOT; };
- FFFD040687c07fef040687c0 /* PxRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSerializer.h"; path = "../../../Include/extensions/PxRepXSerializer.h"; sourceTree = SOURCE_ROOT; };
- FFFD040688287fef04068828 /* PxRepXSimpleType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSimpleType.h"; path = "../../../Include/extensions/PxRepXSimpleType.h"; sourceTree = SOURCE_ROOT; };
- FFFD040688907fef04068890 /* PxRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRevoluteJoint.h"; path = "../../../Include/extensions/PxRevoluteJoint.h"; sourceTree = SOURCE_ROOT; };
- FFFD040688f87fef040688f8 /* PxRigidActorExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActorExt.h"; path = "../../../Include/extensions/PxRigidActorExt.h"; sourceTree = SOURCE_ROOT; };
- FFFD040689607fef04068960 /* PxRigidBodyExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBodyExt.h"; path = "../../../Include/extensions/PxRigidBodyExt.h"; sourceTree = SOURCE_ROOT; };
- FFFD040689c87fef040689c8 /* PxSceneQueryExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneQueryExt.h"; path = "../../../Include/extensions/PxSceneQueryExt.h"; sourceTree = SOURCE_ROOT; };
- FFFD04068a307fef04068a30 /* PxSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSerialization.h"; path = "../../../Include/extensions/PxSerialization.h"; sourceTree = SOURCE_ROOT; };
- FFFD04068a987fef04068a98 /* PxShapeExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShapeExt.h"; path = "../../../Include/extensions/PxShapeExt.h"; sourceTree = SOURCE_ROOT; };
- FFFD04068b007fef04068b00 /* PxSimpleFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleFactory.h"; path = "../../../Include/extensions/PxSimpleFactory.h"; sourceTree = SOURCE_ROOT; };
- FFFD04068b687fef04068b68 /* PxSmoothNormals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSmoothNormals.h"; path = "../../../Include/extensions/PxSmoothNormals.h"; sourceTree = SOURCE_ROOT; };
- FFFD04068bd07fef04068bd0 /* PxSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSphericalJoint.h"; path = "../../../Include/extensions/PxSphericalJoint.h"; sourceTree = SOURCE_ROOT; };
- FFFD04068c387fef04068c38 /* PxStringTableExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStringTableExt.h"; path = "../../../Include/extensions/PxStringTableExt.h"; sourceTree = SOURCE_ROOT; };
- FFFD04068ca07fef04068ca0 /* PxTriangleMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshExt.h"; path = "../../../Include/extensions/PxTriangleMeshExt.h"; sourceTree = SOURCE_ROOT; };
- FFFD040668007fef04066800 /* ExtConstraintHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConstraintHelper.h"; path = "../../PhysXExtensions/src/ExtConstraintHelper.h"; sourceTree = SOURCE_ROOT; };
- FFFD040668687fef04066868 /* ExtCpuWorkerThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.h"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.h"; sourceTree = SOURCE_ROOT; };
- FFFD040668d07fef040668d0 /* ExtD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.h"; path = "../../PhysXExtensions/src/ExtD6Joint.h"; sourceTree = SOURCE_ROOT; };
- FFFD040669387fef04066938 /* ExtDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.h"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; };
- FFFD040669a07fef040669a0 /* ExtDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.h"; path = "../../PhysXExtensions/src/ExtDistanceJoint.h"; sourceTree = SOURCE_ROOT; };
- FFFD04066a087fef04066a08 /* ExtFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.h"; path = "../../PhysXExtensions/src/ExtFixedJoint.h"; sourceTree = SOURCE_ROOT; };
- FFFD04066a707fef04066a70 /* ExtInertiaTensor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtInertiaTensor.h"; path = "../../PhysXExtensions/src/ExtInertiaTensor.h"; sourceTree = SOURCE_ROOT; };
- FFFD04066ad87fef04066ad8 /* ExtJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.h"; path = "../../PhysXExtensions/src/ExtJoint.h"; sourceTree = SOURCE_ROOT; };
- FFFD04066b407fef04066b40 /* ExtJointMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJointMetaDataExtensions.h"; path = "../../PhysXExtensions/src/ExtJointMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; };
- FFFD04066ba87fef04066ba8 /* ExtPlatform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPlatform.h"; path = "../../PhysXExtensions/src/ExtPlatform.h"; sourceTree = SOURCE_ROOT; };
- FFFD04066c107fef04066c10 /* ExtPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.h"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.h"; sourceTree = SOURCE_ROOT; };
- FFFD04066c787fef04066c78 /* ExtPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.h"; path = "../../PhysXExtensions/src/ExtPvd.h"; sourceTree = SOURCE_ROOT; };
- FFFD04066ce07fef04066ce0 /* ExtRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.h"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.h"; sourceTree = SOURCE_ROOT; };
- FFFD04066d487fef04066d48 /* ExtSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSerialization.h"; path = "../../PhysXExtensions/src/ExtSerialization.h"; sourceTree = SOURCE_ROOT; };
- FFFD04066db07fef04066db0 /* ExtSharedQueueEntryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSharedQueueEntryPool.h"; path = "../../PhysXExtensions/src/ExtSharedQueueEntryPool.h"; sourceTree = SOURCE_ROOT; };
- FFFD04066e187fef04066e18 /* ExtSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.h"; path = "../../PhysXExtensions/src/ExtSphericalJoint.h"; sourceTree = SOURCE_ROOT; };
- FFFD04066e807fef04066e80 /* ExtTaskQueueHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTaskQueueHelper.h"; path = "../../PhysXExtensions/src/ExtTaskQueueHelper.h"; sourceTree = SOURCE_ROOT; };
- FFFD04066ee87fef04066ee8 /* ExtBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtBroadPhase.cpp"; path = "../../PhysXExtensions/src/ExtBroadPhase.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD04066f507fef04066f50 /* ExtClothFabricCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothFabricCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothFabricCooker.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD04066fb87fef04066fb8 /* ExtClothGeodesicTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothGeodesicTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothGeodesicTetherCooker.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD040670207fef04067020 /* ExtClothMeshQuadifier.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothMeshQuadifier.cpp"; path = "../../PhysXExtensions/src/ExtClothMeshQuadifier.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD040670887fef04067088 /* ExtClothSimpleTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothSimpleTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothSimpleTetherCooker.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD040670f07fef040670f0 /* ExtCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCollection.cpp"; path = "../../PhysXExtensions/src/ExtCollection.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD040671587fef04067158 /* ExtConvexMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConvexMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtConvexMeshExt.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD040671c07fef040671c0 /* ExtCpuWorkerThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.cpp"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD040672287fef04067228 /* ExtD6Joint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.cpp"; path = "../../PhysXExtensions/src/ExtD6Joint.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD040672907fef04067290 /* ExtD6JointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6JointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtD6JointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD040672f87fef040672f8 /* ExtDefaultCpuDispatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.cpp"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD040673607fef04067360 /* ExtDefaultErrorCallback.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultErrorCallback.cpp"; path = "../../PhysXExtensions/src/ExtDefaultErrorCallback.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD040673c87fef040673c8 /* ExtDefaultSimulationFilterShader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultSimulationFilterShader.cpp"; path = "../../PhysXExtensions/src/ExtDefaultSimulationFilterShader.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD040674307fef04067430 /* ExtDefaultStreams.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultStreams.cpp"; path = "../../PhysXExtensions/src/ExtDefaultStreams.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD040674987fef04067498 /* ExtDistanceJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJoint.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD040675007fef04067500 /* ExtDistanceJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD040675687fef04067568 /* ExtExtensions.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtExtensions.cpp"; path = "../../PhysXExtensions/src/ExtExtensions.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD040675d07fef040675d0 /* ExtFixedJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.cpp"; path = "../../PhysXExtensions/src/ExtFixedJoint.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD040676387fef04067638 /* ExtFixedJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtFixedJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD040676a07fef040676a0 /* ExtJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.cpp"; path = "../../PhysXExtensions/src/ExtJoint.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD040677087fef04067708 /* ExtMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtMetaData.cpp"; path = "../../PhysXExtensions/src/ExtMetaData.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD040677707fef04067770 /* ExtParticleExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtParticleExt.cpp"; path = "../../PhysXExtensions/src/ExtParticleExt.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD040677d87fef040677d8 /* ExtPrismaticJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD040678407fef04067840 /* ExtPrismaticJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD040678a87fef040678a8 /* ExtPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.cpp"; path = "../../PhysXExtensions/src/ExtPvd.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD040679107fef04067910 /* ExtPxStringTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPxStringTable.cpp"; path = "../../PhysXExtensions/src/ExtPxStringTable.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD040679787fef04067978 /* ExtRaycastCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRaycastCCD.cpp"; path = "../../PhysXExtensions/src/ExtRaycastCCD.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD040679e07fef040679e0 /* ExtRevoluteJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD04067a487fef04067a48 /* ExtRevoluteJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD04067ab07fef04067ab0 /* ExtRigidBodyExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRigidBodyExt.cpp"; path = "../../PhysXExtensions/src/ExtRigidBodyExt.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD04067b187fef04067b18 /* ExtSceneQueryExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSceneQueryExt.cpp"; path = "../../PhysXExtensions/src/ExtSceneQueryExt.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD04067b807fef04067b80 /* ExtSimpleFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSimpleFactory.cpp"; path = "../../PhysXExtensions/src/ExtSimpleFactory.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD04067be87fef04067be8 /* ExtSmoothNormals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSmoothNormals.cpp"; path = "../../PhysXExtensions/src/ExtSmoothNormals.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD04067c507fef04067c50 /* ExtSphericalJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJoint.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD04067cb87fef04067cb8 /* ExtSphericalJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD04067d207fef04067d20 /* ExtTriangleMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTriangleMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtTriangleMeshExt.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0406b2007fef0406b200 /* SnSerialUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.h"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.h"; sourceTree = SOURCE_ROOT; };
- FFFD0406b2687fef0406b268 /* SnSerializationRegistry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.h"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.h"; sourceTree = SOURCE_ROOT; };
- FFFD0406b2d07fef0406b2d0 /* SnSerialUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0406b3387fef0406b338 /* SnSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialization.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0406b3a07fef0406b3a0 /* SnSerializationRegistry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0406b4087fef0406b408 /* Binary/SnConvX.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.h"; sourceTree = SOURCE_ROOT; };
- FFFD0406b4707fef0406b470 /* Binary/SnConvX_Align.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.h"; sourceTree = SOURCE_ROOT; };
- FFFD0406b4d87fef0406b4d8 /* Binary/SnConvX_Common.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Common.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Common.h"; sourceTree = SOURCE_ROOT; };
- FFFD0406b5407fef0406b540 /* Binary/SnConvX_MetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.h"; sourceTree = SOURCE_ROOT; };
- FFFD0406b5a87fef0406b5a8 /* Binary/SnConvX_Output.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.h"; sourceTree = SOURCE_ROOT; };
- FFFD0406b6107fef0406b610 /* Binary/SnConvX_Union.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.h"; sourceTree = SOURCE_ROOT; };
- FFFD0406b6787fef0406b678 /* Binary/SnSerializationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.h"; sourceTree = SOURCE_ROOT; };
- FFFD0406b6e07fef0406b6e0 /* Binary/SnBinaryDeserialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinaryDeserialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinaryDeserialization.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0406b7487fef0406b748 /* Binary/SnBinarySerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinarySerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinarySerialization.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0406b7b07fef0406b7b0 /* Binary/SnConvX.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0406b8187fef0406b818 /* Binary/SnConvX_Align.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0406b8807fef0406b880 /* Binary/SnConvX_Convert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Convert.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Convert.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0406b8e87fef0406b8e8 /* Binary/SnConvX_Error.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Error.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Error.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0406b9507fef0406b950 /* Binary/SnConvX_MetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0406b9b87fef0406b9b8 /* Binary/SnConvX_Output.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0406ba207fef0406ba20 /* Binary/SnConvX_Union.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0406ba887fef0406ba88 /* Binary/SnSerializationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0406baf07fef0406baf0 /* Xml/SnJointRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnJointRepXSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.h"; sourceTree = SOURCE_ROOT; };
- FFFD0406bb587fef0406bb58 /* Xml/SnPxStreamOperators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnPxStreamOperators.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnPxStreamOperators.h"; sourceTree = SOURCE_ROOT; };
- FFFD0406bbc07fef0406bbc0 /* Xml/SnRepX1_0Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX1_0Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX1_0Defaults.h"; sourceTree = SOURCE_ROOT; };
- FFFD0406bc287fef0406bc28 /* Xml/SnRepX3_1Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_1Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_1Defaults.h"; sourceTree = SOURCE_ROOT; };
- FFFD0406bc907fef0406bc90 /* Xml/SnRepX3_2Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_2Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_2Defaults.h"; sourceTree = SOURCE_ROOT; };
- FFFD0406bcf87fef0406bcf8 /* Xml/SnRepXCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCollection.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCollection.h"; sourceTree = SOURCE_ROOT; };
- FFFD0406bd607fef0406bd60 /* Xml/SnRepXCoreSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.h"; sourceTree = SOURCE_ROOT; };
- FFFD0406bdc87fef0406bdc8 /* Xml/SnRepXSerializerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXSerializerImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXSerializerImpl.h"; sourceTree = SOURCE_ROOT; };
- FFFD0406be307fef0406be30 /* Xml/SnRepXUpgrader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.h"; sourceTree = SOURCE_ROOT; };
- FFFD0406be987fef0406be98 /* Xml/SnSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; };
- FFFD0406bf007fef0406bf00 /* Xml/SnXmlDeserializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlDeserializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlDeserializer.h"; sourceTree = SOURCE_ROOT; };
- FFFD0406bf687fef0406bf68 /* Xml/SnXmlImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlImpl.h"; sourceTree = SOURCE_ROOT; };
- FFFD0406bfd07fef0406bfd0 /* Xml/SnXmlMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryAllocator.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryAllocator.h"; sourceTree = SOURCE_ROOT; };
- FFFD0406c0387fef0406c038 /* Xml/SnXmlMemoryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPool.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPool.h"; sourceTree = SOURCE_ROOT; };
- FFFD0406c0a07fef0406c0a0 /* Xml/SnXmlMemoryPoolStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPoolStreams.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPoolStreams.h"; sourceTree = SOURCE_ROOT; };
- FFFD0406c1087fef0406c108 /* Xml/SnXmlReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlReader.h"; sourceTree = SOURCE_ROOT; };
- FFFD0406c1707fef0406c170 /* Xml/SnXmlSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerializer.h"; sourceTree = SOURCE_ROOT; };
- FFFD0406c1d87fef0406c1d8 /* Xml/SnXmlSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; };
- FFFD0406c2407fef0406c240 /* Xml/SnXmlStringToType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlStringToType.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlStringToType.h"; sourceTree = SOURCE_ROOT; };
- FFFD0406c2a87fef0406c2a8 /* Xml/SnXmlVisitorReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorReader.h"; sourceTree = SOURCE_ROOT; };
- FFFD0406c3107fef0406c310 /* Xml/SnXmlVisitorWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorWriter.h"; sourceTree = SOURCE_ROOT; };
- FFFD0406c3787fef0406c378 /* Xml/SnXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlWriter.h"; sourceTree = SOURCE_ROOT; };
- FFFD0406c3e07fef0406c3e0 /* Xml/SnJointRepXSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnJointRepXSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0406c4487fef0406c448 /* Xml/SnRepXCoreSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0406c4b07fef0406c4b0 /* Xml/SnRepXUpgrader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0406c5187fef0406c518 /* Xml/SnXmlSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerialization.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0406c5807fef0406c580 /* File/SnFile.h */= { isa = PBXFileReference; fileEncoding = 4; name = "File/SnFile.h"; path = "../../PhysXExtensions/src/serialization/File/SnFile.h"; sourceTree = SOURCE_ROOT; };
- FFFD04068e007fef04068e00 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; };
- FFFD04068e687fef04068e68 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; };
- FFFD04068ed07fef04068ed0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; };
- FFFD04068f387fef04068f38 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; };
- FFFD04068fa07fef04068fa0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
- FFFD040690087fef04069008 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; };
- FFFD040690707fef04069070 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; };
- FFFD040690d87fef040690d8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
- FFFD040691407fef04069140 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; };
- FFFD040691a87fef040691a8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; };
- FFFD040692107fef04069210 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
- FFFD040692787fef04069278 /* extensions/include/PxExtensionMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
- FFFD040692e07fef040692e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXMetaData/extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf39602f07fb0f39602f0 /* PhysXExtensions */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXExtensions"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFDf482e6007fb0f482e600 /* PxBinaryConverter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBinaryConverter.h"; path = "../../../Include/extensions/PxBinaryConverter.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482e6687fb0f482e668 /* PxBroadPhaseExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhaseExt.h"; path = "../../../Include/extensions/PxBroadPhaseExt.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482e6d07fb0f482e6d0 /* PxClothFabricCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothFabricCooker.h"; path = "../../../Include/extensions/PxClothFabricCooker.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482e7387fb0f482e738 /* PxClothMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshDesc.h"; path = "../../../Include/extensions/PxClothMeshDesc.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482e7a07fb0f482e7a0 /* PxClothMeshQuadifier.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshQuadifier.h"; path = "../../../Include/extensions/PxClothMeshQuadifier.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482e8087fb0f482e808 /* PxClothTetherCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothTetherCooker.h"; path = "../../../Include/extensions/PxClothTetherCooker.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482e8707fb0f482e870 /* PxCollectionExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCollectionExt.h"; path = "../../../Include/extensions/PxCollectionExt.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482e8d87fb0f482e8d8 /* PxConstraintExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintExt.h"; path = "../../../Include/extensions/PxConstraintExt.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482e9407fb0f482e940 /* PxConvexMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshExt.h"; path = "../../../Include/extensions/PxConvexMeshExt.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482e9a87fb0f482e9a8 /* PxD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxD6Joint.h"; path = "../../../Include/extensions/PxD6Joint.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482ea107fb0f482ea10 /* PxDefaultAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultAllocator.h"; path = "../../../Include/extensions/PxDefaultAllocator.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482ea787fb0f482ea78 /* PxDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultCpuDispatcher.h"; path = "../../../Include/extensions/PxDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482eae07fb0f482eae0 /* PxDefaultErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultErrorCallback.h"; path = "../../../Include/extensions/PxDefaultErrorCallback.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482eb487fb0f482eb48 /* PxDefaultSimulationFilterShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultSimulationFilterShader.h"; path = "../../../Include/extensions/PxDefaultSimulationFilterShader.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482ebb07fb0f482ebb0 /* PxDefaultStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultStreams.h"; path = "../../../Include/extensions/PxDefaultStreams.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482ec187fb0f482ec18 /* PxDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDistanceJoint.h"; path = "../../../Include/extensions/PxDistanceJoint.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482ec807fb0f482ec80 /* PxExtensionsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtensionsAPI.h"; path = "../../../Include/extensions/PxExtensionsAPI.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482ece87fb0f482ece8 /* PxFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFixedJoint.h"; path = "../../../Include/extensions/PxFixedJoint.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482ed507fb0f482ed50 /* PxJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJoint.h"; path = "../../../Include/extensions/PxJoint.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482edb87fb0f482edb8 /* PxJointLimit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJointLimit.h"; path = "../../../Include/extensions/PxJointLimit.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482ee207fb0f482ee20 /* PxMassProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMassProperties.h"; path = "../../../Include/extensions/PxMassProperties.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482ee887fb0f482ee88 /* PxParticleExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxParticleExt.h"; path = "../../../Include/extensions/PxParticleExt.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482eef07fb0f482eef0 /* PxPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPrismaticJoint.h"; path = "../../../Include/extensions/PxPrismaticJoint.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482ef587fb0f482ef58 /* PxRaycastCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRaycastCCD.h"; path = "../../../Include/extensions/PxRaycastCCD.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482efc07fb0f482efc0 /* PxRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSerializer.h"; path = "../../../Include/extensions/PxRepXSerializer.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482f0287fb0f482f028 /* PxRepXSimpleType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSimpleType.h"; path = "../../../Include/extensions/PxRepXSimpleType.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482f0907fb0f482f090 /* PxRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRevoluteJoint.h"; path = "../../../Include/extensions/PxRevoluteJoint.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482f0f87fb0f482f0f8 /* PxRigidActorExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActorExt.h"; path = "../../../Include/extensions/PxRigidActorExt.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482f1607fb0f482f160 /* PxRigidBodyExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBodyExt.h"; path = "../../../Include/extensions/PxRigidBodyExt.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482f1c87fb0f482f1c8 /* PxSceneQueryExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneQueryExt.h"; path = "../../../Include/extensions/PxSceneQueryExt.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482f2307fb0f482f230 /* PxSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSerialization.h"; path = "../../../Include/extensions/PxSerialization.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482f2987fb0f482f298 /* PxShapeExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShapeExt.h"; path = "../../../Include/extensions/PxShapeExt.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482f3007fb0f482f300 /* PxSimpleFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleFactory.h"; path = "../../../Include/extensions/PxSimpleFactory.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482f3687fb0f482f368 /* PxSmoothNormals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSmoothNormals.h"; path = "../../../Include/extensions/PxSmoothNormals.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482f3d07fb0f482f3d0 /* PxSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSphericalJoint.h"; path = "../../../Include/extensions/PxSphericalJoint.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482f4387fb0f482f438 /* PxStringTableExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStringTableExt.h"; path = "../../../Include/extensions/PxStringTableExt.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482f4a07fb0f482f4a0 /* PxTriangleMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshExt.h"; path = "../../../Include/extensions/PxTriangleMeshExt.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482d0007fb0f482d000 /* ExtConstraintHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConstraintHelper.h"; path = "../../PhysXExtensions/src/ExtConstraintHelper.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482d0687fb0f482d068 /* ExtCpuWorkerThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.h"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482d0d07fb0f482d0d0 /* ExtD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.h"; path = "../../PhysXExtensions/src/ExtD6Joint.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482d1387fb0f482d138 /* ExtDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.h"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482d1a07fb0f482d1a0 /* ExtDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.h"; path = "../../PhysXExtensions/src/ExtDistanceJoint.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482d2087fb0f482d208 /* ExtFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.h"; path = "../../PhysXExtensions/src/ExtFixedJoint.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482d2707fb0f482d270 /* ExtInertiaTensor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtInertiaTensor.h"; path = "../../PhysXExtensions/src/ExtInertiaTensor.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482d2d87fb0f482d2d8 /* ExtJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.h"; path = "../../PhysXExtensions/src/ExtJoint.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482d3407fb0f482d340 /* ExtJointMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJointMetaDataExtensions.h"; path = "../../PhysXExtensions/src/ExtJointMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482d3a87fb0f482d3a8 /* ExtPlatform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPlatform.h"; path = "../../PhysXExtensions/src/ExtPlatform.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482d4107fb0f482d410 /* ExtPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.h"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482d4787fb0f482d478 /* ExtPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.h"; path = "../../PhysXExtensions/src/ExtPvd.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482d4e07fb0f482d4e0 /* ExtRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.h"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482d5487fb0f482d548 /* ExtSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSerialization.h"; path = "../../PhysXExtensions/src/ExtSerialization.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482d5b07fb0f482d5b0 /* ExtSharedQueueEntryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSharedQueueEntryPool.h"; path = "../../PhysXExtensions/src/ExtSharedQueueEntryPool.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482d6187fb0f482d618 /* ExtSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.h"; path = "../../PhysXExtensions/src/ExtSphericalJoint.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482d6807fb0f482d680 /* ExtTaskQueueHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTaskQueueHelper.h"; path = "../../PhysXExtensions/src/ExtTaskQueueHelper.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482d6e87fb0f482d6e8 /* ExtBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtBroadPhase.cpp"; path = "../../PhysXExtensions/src/ExtBroadPhase.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf482d7507fb0f482d750 /* ExtClothFabricCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothFabricCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothFabricCooker.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf482d7b87fb0f482d7b8 /* ExtClothGeodesicTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothGeodesicTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothGeodesicTetherCooker.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf482d8207fb0f482d820 /* ExtClothMeshQuadifier.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothMeshQuadifier.cpp"; path = "../../PhysXExtensions/src/ExtClothMeshQuadifier.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf482d8887fb0f482d888 /* ExtClothSimpleTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothSimpleTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothSimpleTetherCooker.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf482d8f07fb0f482d8f0 /* ExtCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCollection.cpp"; path = "../../PhysXExtensions/src/ExtCollection.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf482d9587fb0f482d958 /* ExtConvexMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConvexMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtConvexMeshExt.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf482d9c07fb0f482d9c0 /* ExtCpuWorkerThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.cpp"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf482da287fb0f482da28 /* ExtD6Joint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.cpp"; path = "../../PhysXExtensions/src/ExtD6Joint.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf482da907fb0f482da90 /* ExtD6JointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6JointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtD6JointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf482daf87fb0f482daf8 /* ExtDefaultCpuDispatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.cpp"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf482db607fb0f482db60 /* ExtDefaultErrorCallback.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultErrorCallback.cpp"; path = "../../PhysXExtensions/src/ExtDefaultErrorCallback.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf482dbc87fb0f482dbc8 /* ExtDefaultSimulationFilterShader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultSimulationFilterShader.cpp"; path = "../../PhysXExtensions/src/ExtDefaultSimulationFilterShader.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf482dc307fb0f482dc30 /* ExtDefaultStreams.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultStreams.cpp"; path = "../../PhysXExtensions/src/ExtDefaultStreams.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf482dc987fb0f482dc98 /* ExtDistanceJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJoint.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf482dd007fb0f482dd00 /* ExtDistanceJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf482dd687fb0f482dd68 /* ExtExtensions.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtExtensions.cpp"; path = "../../PhysXExtensions/src/ExtExtensions.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf482ddd07fb0f482ddd0 /* ExtFixedJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.cpp"; path = "../../PhysXExtensions/src/ExtFixedJoint.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf482de387fb0f482de38 /* ExtFixedJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtFixedJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf482dea07fb0f482dea0 /* ExtJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.cpp"; path = "../../PhysXExtensions/src/ExtJoint.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf482df087fb0f482df08 /* ExtMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtMetaData.cpp"; path = "../../PhysXExtensions/src/ExtMetaData.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf482df707fb0f482df70 /* ExtParticleExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtParticleExt.cpp"; path = "../../PhysXExtensions/src/ExtParticleExt.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf482dfd87fb0f482dfd8 /* ExtPrismaticJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf482e0407fb0f482e040 /* ExtPrismaticJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf482e0a87fb0f482e0a8 /* ExtPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.cpp"; path = "../../PhysXExtensions/src/ExtPvd.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf482e1107fb0f482e110 /* ExtPxStringTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPxStringTable.cpp"; path = "../../PhysXExtensions/src/ExtPxStringTable.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf482e1787fb0f482e178 /* ExtRaycastCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRaycastCCD.cpp"; path = "../../PhysXExtensions/src/ExtRaycastCCD.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf482e1e07fb0f482e1e0 /* ExtRevoluteJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf482e2487fb0f482e248 /* ExtRevoluteJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf482e2b07fb0f482e2b0 /* ExtRigidBodyExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRigidBodyExt.cpp"; path = "../../PhysXExtensions/src/ExtRigidBodyExt.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf482e3187fb0f482e318 /* ExtSceneQueryExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSceneQueryExt.cpp"; path = "../../PhysXExtensions/src/ExtSceneQueryExt.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf482e3807fb0f482e380 /* ExtSimpleFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSimpleFactory.cpp"; path = "../../PhysXExtensions/src/ExtSimpleFactory.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf482e3e87fb0f482e3e8 /* ExtSmoothNormals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSmoothNormals.cpp"; path = "../../PhysXExtensions/src/ExtSmoothNormals.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf482e4507fb0f482e450 /* ExtSphericalJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJoint.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf482e4b87fb0f482e4b8 /* ExtSphericalJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf482e5207fb0f482e520 /* ExtTriangleMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTriangleMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtTriangleMeshExt.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf4831a007fb0f4831a00 /* SnSerialUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.h"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4831a687fb0f4831a68 /* SnSerializationRegistry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.h"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4831ad07fb0f4831ad0 /* SnSerialUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf4831b387fb0f4831b38 /* SnSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialization.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf4831ba07fb0f4831ba0 /* SnSerializationRegistry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf4831c087fb0f4831c08 /* Binary/SnConvX.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4831c707fb0f4831c70 /* Binary/SnConvX_Align.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4831cd87fb0f4831cd8 /* Binary/SnConvX_Common.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Common.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Common.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4831d407fb0f4831d40 /* Binary/SnConvX_MetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4831da87fb0f4831da8 /* Binary/SnConvX_Output.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4831e107fb0f4831e10 /* Binary/SnConvX_Union.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4831e787fb0f4831e78 /* Binary/SnSerializationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4831ee07fb0f4831ee0 /* Binary/SnBinaryDeserialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinaryDeserialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinaryDeserialization.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf4831f487fb0f4831f48 /* Binary/SnBinarySerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinarySerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinarySerialization.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf4831fb07fb0f4831fb0 /* Binary/SnConvX.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf48320187fb0f4832018 /* Binary/SnConvX_Align.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf48320807fb0f4832080 /* Binary/SnConvX_Convert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Convert.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Convert.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf48320e87fb0f48320e8 /* Binary/SnConvX_Error.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Error.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Error.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf48321507fb0f4832150 /* Binary/SnConvX_MetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf48321b87fb0f48321b8 /* Binary/SnConvX_Output.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf48322207fb0f4832220 /* Binary/SnConvX_Union.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf48322887fb0f4832288 /* Binary/SnSerializationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf48322f07fb0f48322f0 /* Xml/SnJointRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnJointRepXSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48323587fb0f4832358 /* Xml/SnPxStreamOperators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnPxStreamOperators.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnPxStreamOperators.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48323c07fb0f48323c0 /* Xml/SnRepX1_0Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX1_0Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX1_0Defaults.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48324287fb0f4832428 /* Xml/SnRepX3_1Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_1Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_1Defaults.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48324907fb0f4832490 /* Xml/SnRepX3_2Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_2Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_2Defaults.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48324f87fb0f48324f8 /* Xml/SnRepXCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCollection.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCollection.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48325607fb0f4832560 /* Xml/SnRepXCoreSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48325c87fb0f48325c8 /* Xml/SnRepXSerializerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXSerializerImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXSerializerImpl.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48326307fb0f4832630 /* Xml/SnRepXUpgrader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48326987fb0f4832698 /* Xml/SnSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48327007fb0f4832700 /* Xml/SnXmlDeserializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlDeserializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlDeserializer.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48327687fb0f4832768 /* Xml/SnXmlImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlImpl.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48327d07fb0f48327d0 /* Xml/SnXmlMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryAllocator.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryAllocator.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48328387fb0f4832838 /* Xml/SnXmlMemoryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPool.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPool.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48328a07fb0f48328a0 /* Xml/SnXmlMemoryPoolStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPoolStreams.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPoolStreams.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48329087fb0f4832908 /* Xml/SnXmlReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlReader.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48329707fb0f4832970 /* Xml/SnXmlSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerializer.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48329d87fb0f48329d8 /* Xml/SnXmlSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4832a407fb0f4832a40 /* Xml/SnXmlStringToType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlStringToType.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlStringToType.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4832aa87fb0f4832aa8 /* Xml/SnXmlVisitorReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorReader.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4832b107fb0f4832b10 /* Xml/SnXmlVisitorWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorWriter.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4832b787fb0f4832b78 /* Xml/SnXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlWriter.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4832be07fb0f4832be0 /* Xml/SnJointRepXSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnJointRepXSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf4832c487fb0f4832c48 /* Xml/SnRepXCoreSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf4832cb07fb0f4832cb0 /* Xml/SnRepXUpgrader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf4832d187fb0f4832d18 /* Xml/SnXmlSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerialization.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf4832d807fb0f4832d80 /* File/SnFile.h */= { isa = PBXFileReference; fileEncoding = 4; name = "File/SnFile.h"; path = "../../PhysXExtensions/src/serialization/File/SnFile.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482f6007fb0f482f600 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482f6687fb0f482f668 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482f6d07fb0f482f6d0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482f7387fb0f482f738 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482f7a07fb0f482f7a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482f8087fb0f482f808 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482f8707fb0f482f870 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482f8d87fb0f482f8d8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482f9407fb0f482f940 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482f9a87fb0f482f9a8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482fa107fb0f482fa10 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482fa787fb0f482fa78 /* extensions/include/PxExtensionMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf482fae07fb0f482fae0 /* 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 */
- FFF204b37ba07fef04b37ba0 /* Resources */ = {
+ FFF2f39602f07fb0f39602f0 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -804,7 +804,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFC04b37ba07fef04b37ba0 /* Frameworks */ = {
+ FFFCf39602f07fb0f39602f0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -814,64 +814,64 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF804b37ba07fef04b37ba0 /* Sources */ = {
+ FFF8f39602f07fb0f39602f0 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFF04066ee87fef04066ee8,
- FFFF04066f507fef04066f50,
- FFFF04066fb87fef04066fb8,
- FFFF040670207fef04067020,
- FFFF040670887fef04067088,
- FFFF040670f07fef040670f0,
- FFFF040671587fef04067158,
- FFFF040671c07fef040671c0,
- FFFF040672287fef04067228,
- FFFF040672907fef04067290,
- FFFF040672f87fef040672f8,
- FFFF040673607fef04067360,
- FFFF040673c87fef040673c8,
- FFFF040674307fef04067430,
- FFFF040674987fef04067498,
- FFFF040675007fef04067500,
- FFFF040675687fef04067568,
- FFFF040675d07fef040675d0,
- FFFF040676387fef04067638,
- FFFF040676a07fef040676a0,
- FFFF040677087fef04067708,
- FFFF040677707fef04067770,
- FFFF040677d87fef040677d8,
- FFFF040678407fef04067840,
- FFFF040678a87fef040678a8,
- FFFF040679107fef04067910,
- FFFF040679787fef04067978,
- FFFF040679e07fef040679e0,
- FFFF04067a487fef04067a48,
- FFFF04067ab07fef04067ab0,
- FFFF04067b187fef04067b18,
- FFFF04067b807fef04067b80,
- FFFF04067be87fef04067be8,
- FFFF04067c507fef04067c50,
- FFFF04067cb87fef04067cb8,
- FFFF04067d207fef04067d20,
- FFFF0406b2d07fef0406b2d0,
- FFFF0406b3387fef0406b338,
- FFFF0406b3a07fef0406b3a0,
- FFFF0406b6e07fef0406b6e0,
- FFFF0406b7487fef0406b748,
- FFFF0406b7b07fef0406b7b0,
- FFFF0406b8187fef0406b818,
- FFFF0406b8807fef0406b880,
- FFFF0406b8e87fef0406b8e8,
- FFFF0406b9507fef0406b950,
- FFFF0406b9b87fef0406b9b8,
- FFFF0406ba207fef0406ba20,
- FFFF0406ba887fef0406ba88,
- FFFF0406c3e07fef0406c3e0,
- FFFF0406c4487fef0406c448,
- FFFF0406c4b07fef0406c4b0,
- FFFF0406c5187fef0406c518,
- FFFF040692e07fef040692e0,
+ FFFFf482d6e87fb0f482d6e8,
+ FFFFf482d7507fb0f482d750,
+ FFFFf482d7b87fb0f482d7b8,
+ FFFFf482d8207fb0f482d820,
+ FFFFf482d8887fb0f482d888,
+ FFFFf482d8f07fb0f482d8f0,
+ FFFFf482d9587fb0f482d958,
+ FFFFf482d9c07fb0f482d9c0,
+ FFFFf482da287fb0f482da28,
+ FFFFf482da907fb0f482da90,
+ FFFFf482daf87fb0f482daf8,
+ FFFFf482db607fb0f482db60,
+ FFFFf482dbc87fb0f482dbc8,
+ FFFFf482dc307fb0f482dc30,
+ FFFFf482dc987fb0f482dc98,
+ FFFFf482dd007fb0f482dd00,
+ FFFFf482dd687fb0f482dd68,
+ FFFFf482ddd07fb0f482ddd0,
+ FFFFf482de387fb0f482de38,
+ FFFFf482dea07fb0f482dea0,
+ FFFFf482df087fb0f482df08,
+ FFFFf482df707fb0f482df70,
+ FFFFf482dfd87fb0f482dfd8,
+ FFFFf482e0407fb0f482e040,
+ FFFFf482e0a87fb0f482e0a8,
+ FFFFf482e1107fb0f482e110,
+ FFFFf482e1787fb0f482e178,
+ FFFFf482e1e07fb0f482e1e0,
+ FFFFf482e2487fb0f482e248,
+ FFFFf482e2b07fb0f482e2b0,
+ FFFFf482e3187fb0f482e318,
+ FFFFf482e3807fb0f482e380,
+ FFFFf482e3e87fb0f482e3e8,
+ FFFFf482e4507fb0f482e450,
+ FFFFf482e4b87fb0f482e4b8,
+ FFFFf482e5207fb0f482e520,
+ FFFFf4831ad07fb0f4831ad0,
+ FFFFf4831b387fb0f4831b38,
+ FFFFf4831ba07fb0f4831ba0,
+ FFFFf4831ee07fb0f4831ee0,
+ FFFFf4831f487fb0f4831f48,
+ FFFFf4831fb07fb0f4831fb0,
+ FFFFf48320187fb0f4832018,
+ FFFFf48320807fb0f4832080,
+ FFFFf48320e87fb0f48320e8,
+ FFFFf48321507fb0f4832150,
+ FFFFf48321b87fb0f48321b8,
+ FFFFf48322207fb0f4832220,
+ FFFFf48322887fb0f4832288,
+ FFFFf4832be07fb0f4832be0,
+ FFFFf4832c487fb0f4832c48,
+ FFFFf4832cb07fb0f4832cb0,
+ FFFFf4832d187fb0f4832d18,
+ FFFFf482fae07fb0f482fae0,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -880,65 +880,65 @@
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
- FFF404b372a07fef04b372a0 /* PBXTargetDependency */ = {
+ FFF4f395f9f07fb0f395f9f0 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFA04b1a4607fef04b1a460 /* PsFastXml */;
- targetProxy = FFF504b1a4607fef04b1a460 /* PBXContainerItemProxy */;
+ target = FFFAf39379407fb0f3937940 /* PsFastXml */;
+ targetProxy = FFF5f39379407fb0f3937940 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of SceneQuery */
- FFFF0406f2007fef0406f200 /* SqAABBPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0406f2007fef0406f200 /* SqAABBPruner.cpp */; };
- FFFF0406f2687fef0406f268 /* SqAABBTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0406f2687fef0406f268 /* SqAABBTree.cpp */; };
- FFFF0406f2d07fef0406f2d0 /* SqAABBTreeBuild.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0406f2d07fef0406f2d0 /* SqAABBTreeBuild.cpp */; };
- FFFF0406f3387fef0406f338 /* SqAABBTreeUpdateMap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0406f3387fef0406f338 /* SqAABBTreeUpdateMap.cpp */; };
- FFFF0406f3a07fef0406f3a0 /* SqBounds.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0406f3a07fef0406f3a0 /* SqBounds.cpp */; };
- FFFF0406f4087fef0406f408 /* SqBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0406f4087fef0406f408 /* SqBucketPruner.cpp */; };
- FFFF0406f4707fef0406f470 /* SqExtendedBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0406f4707fef0406f470 /* SqExtendedBucketPruner.cpp */; };
- FFFF0406f4d87fef0406f4d8 /* SqIncrementalAABBPrunerCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0406f4d87fef0406f4d8 /* SqIncrementalAABBPrunerCore.cpp */; };
- FFFF0406f5407fef0406f540 /* SqIncrementalAABBTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0406f5407fef0406f540 /* SqIncrementalAABBTree.cpp */; };
- FFFF0406f5a87fef0406f5a8 /* SqMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0406f5a87fef0406f5a8 /* SqMetaData.cpp */; };
- FFFF0406f6107fef0406f610 /* SqPruningPool.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0406f6107fef0406f610 /* SqPruningPool.cpp */; };
- FFFF0406f6787fef0406f678 /* SqPruningStructure.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0406f6787fef0406f678 /* SqPruningStructure.cpp */; };
- FFFF0406f6e07fef0406f6e0 /* SqSceneQueryManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0406f6e07fef0406f6e0 /* SqSceneQueryManager.cpp */; };
+ FFFFf4835a007fb0f4835a00 /* SqAABBPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf4835a007fb0f4835a00 /* SqAABBPruner.cpp */; };
+ FFFFf4835a687fb0f4835a68 /* SqAABBTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf4835a687fb0f4835a68 /* SqAABBTree.cpp */; };
+ FFFFf4835ad07fb0f4835ad0 /* SqAABBTreeBuild.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf4835ad07fb0f4835ad0 /* SqAABBTreeBuild.cpp */; };
+ FFFFf4835b387fb0f4835b38 /* SqAABBTreeUpdateMap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf4835b387fb0f4835b38 /* SqAABBTreeUpdateMap.cpp */; };
+ FFFFf4835ba07fb0f4835ba0 /* SqBounds.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf4835ba07fb0f4835ba0 /* SqBounds.cpp */; };
+ FFFFf4835c087fb0f4835c08 /* SqBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf4835c087fb0f4835c08 /* SqBucketPruner.cpp */; };
+ FFFFf4835c707fb0f4835c70 /* SqExtendedBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf4835c707fb0f4835c70 /* SqExtendedBucketPruner.cpp */; };
+ FFFFf4835cd87fb0f4835cd8 /* SqIncrementalAABBPrunerCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf4835cd87fb0f4835cd8 /* SqIncrementalAABBPrunerCore.cpp */; };
+ FFFFf4835d407fb0f4835d40 /* SqIncrementalAABBTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf4835d407fb0f4835d40 /* SqIncrementalAABBTree.cpp */; };
+ FFFFf4835da87fb0f4835da8 /* SqMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf4835da87fb0f4835da8 /* SqMetaData.cpp */; };
+ FFFFf4835e107fb0f4835e10 /* SqPruningPool.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf4835e107fb0f4835e10 /* SqPruningPool.cpp */; };
+ FFFFf4835e787fb0f4835e78 /* SqPruningStructure.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf4835e787fb0f4835e78 /* SqPruningStructure.cpp */; };
+ FFFFf4835ee07fb0f4835ee0 /* SqSceneQueryManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf4835ee07fb0f4835ee0 /* SqSceneQueryManager.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFD04b4a4f07fef04b4a4f0 /* SceneQuery */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SceneQuery"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFD0406f2007fef0406f200 /* SqAABBPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.cpp"; path = "../../SceneQuery/src/SqAABBPruner.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0406f2687fef0406f268 /* SqAABBTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.cpp"; path = "../../SceneQuery/src/SqAABBTree.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0406f2d07fef0406f2d0 /* SqAABBTreeBuild.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeBuild.cpp"; path = "../../SceneQuery/src/SqAABBTreeBuild.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0406f3387fef0406f338 /* SqAABBTreeUpdateMap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.cpp"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0406f3a07fef0406f3a0 /* SqBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.cpp"; path = "../../SceneQuery/src/SqBounds.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0406f4087fef0406f408 /* SqBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.cpp"; path = "../../SceneQuery/src/SqBucketPruner.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0406f4707fef0406f470 /* SqExtendedBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.cpp"; path = "../../SceneQuery/src/SqExtendedBucketPruner.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0406f4d87fef0406f4d8 /* SqIncrementalAABBPrunerCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqIncrementalAABBPrunerCore.cpp"; path = "../../SceneQuery/src/SqIncrementalAABBPrunerCore.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0406f5407fef0406f540 /* SqIncrementalAABBTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqIncrementalAABBTree.cpp"; path = "../../SceneQuery/src/SqIncrementalAABBTree.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0406f5a87fef0406f5a8 /* SqMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqMetaData.cpp"; path = "../../SceneQuery/src/SqMetaData.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0406f6107fef0406f610 /* SqPruningPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.cpp"; path = "../../SceneQuery/src/SqPruningPool.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0406f6787fef0406f678 /* SqPruningStructure.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.cpp"; path = "../../SceneQuery/src/SqPruningStructure.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0406f6e07fef0406f6e0 /* SqSceneQueryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.cpp"; path = "../../SceneQuery/src/SqSceneQueryManager.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0406f7487fef0406f748 /* SqAABBPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.h"; path = "../../SceneQuery/src/SqAABBPruner.h"; sourceTree = SOURCE_ROOT; };
- FFFD0406f7b07fef0406f7b0 /* SqAABBTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.h"; path = "../../SceneQuery/src/SqAABBTree.h"; sourceTree = SOURCE_ROOT; };
- FFFD0406f8187fef0406f818 /* SqAABBTreeBuild.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeBuild.h"; path = "../../SceneQuery/src/SqAABBTreeBuild.h"; sourceTree = SOURCE_ROOT; };
- FFFD0406f8807fef0406f880 /* SqAABBTreeQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeQuery.h"; path = "../../SceneQuery/src/SqAABBTreeQuery.h"; sourceTree = SOURCE_ROOT; };
- FFFD0406f8e87fef0406f8e8 /* SqAABBTreeUpdateMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.h"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.h"; sourceTree = SOURCE_ROOT; };
- FFFD0406f9507fef0406f950 /* SqBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.h"; path = "../../SceneQuery/src/SqBounds.h"; sourceTree = SOURCE_ROOT; };
- FFFD0406f9b87fef0406f9b8 /* SqBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.h"; path = "../../SceneQuery/src/SqBucketPruner.h"; sourceTree = SOURCE_ROOT; };
- FFFD0406fa207fef0406fa20 /* SqExtendedBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.h"; path = "../../SceneQuery/src/SqExtendedBucketPruner.h"; sourceTree = SOURCE_ROOT; };
- FFFD0406fa887fef0406fa88 /* SqIncrementalAABBPrunerCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqIncrementalAABBPrunerCore.h"; path = "../../SceneQuery/src/SqIncrementalAABBPrunerCore.h"; sourceTree = SOURCE_ROOT; };
- FFFD0406faf07fef0406faf0 /* SqIncrementalAABBTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqIncrementalAABBTree.h"; path = "../../SceneQuery/src/SqIncrementalAABBTree.h"; sourceTree = SOURCE_ROOT; };
- FFFD0406fb587fef0406fb58 /* SqPrunerTestsSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerTestsSIMD.h"; path = "../../SceneQuery/src/SqPrunerTestsSIMD.h"; sourceTree = SOURCE_ROOT; };
- FFFD0406fbc07fef0406fbc0 /* SqPruningPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.h"; path = "../../SceneQuery/src/SqPruningPool.h"; sourceTree = SOURCE_ROOT; };
- FFFD0406fc287fef0406fc28 /* SqTypedef.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqTypedef.h"; path = "../../SceneQuery/src/SqTypedef.h"; sourceTree = SOURCE_ROOT; };
- FFFD04b4e7b07fef04b4e7b0 /* SqPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruner.h"; path = "../../SceneQuery/include/SqPruner.h"; sourceTree = SOURCE_ROOT; };
- FFFD04b4e8187fef04b4e818 /* SqPrunerMergeData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerMergeData.h"; path = "../../SceneQuery/include/SqPrunerMergeData.h"; sourceTree = SOURCE_ROOT; };
- FFFD04b4e8807fef04b4e880 /* SqPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.h"; path = "../../SceneQuery/include/SqPruningStructure.h"; sourceTree = SOURCE_ROOT; };
- FFFD04b4e8e87fef04b4e8e8 /* SqSceneQueryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.h"; path = "../../SceneQuery/include/SqSceneQueryManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3972c407fb0f3972c40 /* SceneQuery */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SceneQuery"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFDf4835a007fb0f4835a00 /* SqAABBPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.cpp"; path = "../../SceneQuery/src/SqAABBPruner.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf4835a687fb0f4835a68 /* SqAABBTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.cpp"; path = "../../SceneQuery/src/SqAABBTree.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf4835ad07fb0f4835ad0 /* SqAABBTreeBuild.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeBuild.cpp"; path = "../../SceneQuery/src/SqAABBTreeBuild.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf4835b387fb0f4835b38 /* SqAABBTreeUpdateMap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.cpp"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf4835ba07fb0f4835ba0 /* SqBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.cpp"; path = "../../SceneQuery/src/SqBounds.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf4835c087fb0f4835c08 /* SqBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.cpp"; path = "../../SceneQuery/src/SqBucketPruner.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf4835c707fb0f4835c70 /* SqExtendedBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.cpp"; path = "../../SceneQuery/src/SqExtendedBucketPruner.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf4835cd87fb0f4835cd8 /* SqIncrementalAABBPrunerCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqIncrementalAABBPrunerCore.cpp"; path = "../../SceneQuery/src/SqIncrementalAABBPrunerCore.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf4835d407fb0f4835d40 /* SqIncrementalAABBTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqIncrementalAABBTree.cpp"; path = "../../SceneQuery/src/SqIncrementalAABBTree.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf4835da87fb0f4835da8 /* SqMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqMetaData.cpp"; path = "../../SceneQuery/src/SqMetaData.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf4835e107fb0f4835e10 /* SqPruningPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.cpp"; path = "../../SceneQuery/src/SqPruningPool.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf4835e787fb0f4835e78 /* SqPruningStructure.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.cpp"; path = "../../SceneQuery/src/SqPruningStructure.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf4835ee07fb0f4835ee0 /* SqSceneQueryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.cpp"; path = "../../SceneQuery/src/SqSceneQueryManager.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf4835f487fb0f4835f48 /* SqAABBPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.h"; path = "../../SceneQuery/src/SqAABBPruner.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4835fb07fb0f4835fb0 /* SqAABBTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.h"; path = "../../SceneQuery/src/SqAABBTree.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48360187fb0f4836018 /* SqAABBTreeBuild.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeBuild.h"; path = "../../SceneQuery/src/SqAABBTreeBuild.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48360807fb0f4836080 /* SqAABBTreeQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeQuery.h"; path = "../../SceneQuery/src/SqAABBTreeQuery.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48360e87fb0f48360e8 /* SqAABBTreeUpdateMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.h"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48361507fb0f4836150 /* SqBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.h"; path = "../../SceneQuery/src/SqBounds.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48361b87fb0f48361b8 /* SqBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.h"; path = "../../SceneQuery/src/SqBucketPruner.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48362207fb0f4836220 /* SqExtendedBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.h"; path = "../../SceneQuery/src/SqExtendedBucketPruner.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48362887fb0f4836288 /* SqIncrementalAABBPrunerCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqIncrementalAABBPrunerCore.h"; path = "../../SceneQuery/src/SqIncrementalAABBPrunerCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48362f07fb0f48362f0 /* SqIncrementalAABBTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqIncrementalAABBTree.h"; path = "../../SceneQuery/src/SqIncrementalAABBTree.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48363587fb0f4836358 /* SqPrunerTestsSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerTestsSIMD.h"; path = "../../SceneQuery/src/SqPrunerTestsSIMD.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48363c07fb0f48363c0 /* SqPruningPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.h"; path = "../../SceneQuery/src/SqPruningPool.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48364287fb0f4836428 /* SqTypedef.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqTypedef.h"; path = "../../SceneQuery/src/SqTypedef.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3976f007fb0f3976f00 /* SqPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruner.h"; path = "../../SceneQuery/include/SqPruner.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3976f687fb0f3976f68 /* SqPrunerMergeData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerMergeData.h"; path = "../../SceneQuery/include/SqPrunerMergeData.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3976fd07fb0f3976fd0 /* SqPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.h"; path = "../../SceneQuery/include/SqPruningStructure.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf39770387fb0f3977038 /* SqSceneQueryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.h"; path = "../../SceneQuery/include/SqSceneQueryManager.h"; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */
/* Begin PBXResourcesBuildPhase section */
- FFF204b4a4f07fef04b4a4f0 /* Resources */ = {
+ FFF2f3972c407fb0f3972c40 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -948,7 +948,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFC04b4a4f07fef04b4a4f0 /* Frameworks */ = {
+ FFFCf3972c407fb0f3972c40 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -958,23 +958,23 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF804b4a4f07fef04b4a4f0 /* Sources */ = {
+ FFF8f3972c407fb0f3972c40 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFF0406f2007fef0406f200,
- FFFF0406f2687fef0406f268,
- FFFF0406f2d07fef0406f2d0,
- FFFF0406f3387fef0406f338,
- FFFF0406f3a07fef0406f3a0,
- FFFF0406f4087fef0406f408,
- FFFF0406f4707fef0406f470,
- FFFF0406f4d87fef0406f4d8,
- FFFF0406f5407fef0406f540,
- FFFF0406f5a87fef0406f5a8,
- FFFF0406f6107fef0406f610,
- FFFF0406f6787fef0406f678,
- FFFF0406f6e07fef0406f6e0,
+ FFFFf4835a007fb0f4835a00,
+ FFFFf4835a687fb0f4835a68,
+ FFFFf4835ad07fb0f4835ad0,
+ FFFFf4835b387fb0f4835b38,
+ FFFFf4835ba07fb0f4835ba0,
+ FFFFf4835c087fb0f4835c08,
+ FFFFf4835c707fb0f4835c70,
+ FFFFf4835cd87fb0f4835cd8,
+ FFFFf4835d407fb0f4835d40,
+ FFFFf4835da87fb0f4835da8,
+ FFFFf4835e107fb0f4835e10,
+ FFFFf4835e787fb0f4835e78,
+ FFFFf4835ee07fb0f4835ee0,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -986,154 +986,154 @@
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of SimulationController */
- FFFF0580efd07fef0580efd0 /* ScActorCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0580efd07fef0580efd0 /* ScActorCore.cpp */; };
- FFFF0580f0387fef0580f038 /* ScActorSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0580f0387fef0580f038 /* ScActorSim.cpp */; };
- FFFF0580f0a07fef0580f0a0 /* ScArticulationCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0580f0a07fef0580f0a0 /* ScArticulationCore.cpp */; };
- FFFF0580f1087fef0580f108 /* ScArticulationJointCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0580f1087fef0580f108 /* ScArticulationJointCore.cpp */; };
- FFFF0580f1707fef0580f170 /* ScArticulationJointSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0580f1707fef0580f170 /* ScArticulationJointSim.cpp */; };
- FFFF0580f1d87fef0580f1d8 /* ScArticulationSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0580f1d87fef0580f1d8 /* ScArticulationSim.cpp */; };
- FFFF0580f2407fef0580f240 /* ScBodyCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0580f2407fef0580f240 /* ScBodyCore.cpp */; };
- FFFF0580f2a87fef0580f2a8 /* ScBodyCoreKinematic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0580f2a87fef0580f2a8 /* ScBodyCoreKinematic.cpp */; };
- FFFF0580f3107fef0580f310 /* ScBodySim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0580f3107fef0580f310 /* ScBodySim.cpp */; };
- FFFF0580f3787fef0580f378 /* ScConstraintCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0580f3787fef0580f378 /* ScConstraintCore.cpp */; };
- FFFF0580f3e07fef0580f3e0 /* ScConstraintGroupNode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0580f3e07fef0580f3e0 /* ScConstraintGroupNode.cpp */; };
- FFFF0580f4487fef0580f448 /* ScConstraintInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0580f4487fef0580f448 /* ScConstraintInteraction.cpp */; };
- FFFF0580f4b07fef0580f4b0 /* ScConstraintProjectionManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0580f4b07fef0580f4b0 /* ScConstraintProjectionManager.cpp */; };
- FFFF0580f5187fef0580f518 /* ScConstraintProjectionTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0580f5187fef0580f518 /* ScConstraintProjectionTree.cpp */; };
- FFFF0580f5807fef0580f580 /* ScConstraintSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0580f5807fef0580f580 /* ScConstraintSim.cpp */; };
- FFFF0580f5e87fef0580f5e8 /* ScElementInteractionMarker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0580f5e87fef0580f5e8 /* ScElementInteractionMarker.cpp */; };
- FFFF0580f6507fef0580f650 /* ScElementSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0580f6507fef0580f650 /* ScElementSim.cpp */; };
- FFFF0580f6b87fef0580f6b8 /* ScInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0580f6b87fef0580f6b8 /* ScInteraction.cpp */; };
- FFFF0580f7207fef0580f720 /* ScIterators.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0580f7207fef0580f720 /* ScIterators.cpp */; };
- FFFF0580f7887fef0580f788 /* ScMaterialCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0580f7887fef0580f788 /* ScMaterialCore.cpp */; };
- FFFF0580f7f07fef0580f7f0 /* ScMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0580f7f07fef0580f7f0 /* ScMetaData.cpp */; };
- FFFF0580f8587fef0580f858 /* ScNPhaseCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0580f8587fef0580f858 /* ScNPhaseCore.cpp */; };
- FFFF0580f8c07fef0580f8c0 /* ScPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0580f8c07fef0580f8c0 /* ScPhysics.cpp */; };
- FFFF0580f9287fef0580f928 /* ScRigidCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0580f9287fef0580f928 /* ScRigidCore.cpp */; };
- FFFF0580f9907fef0580f990 /* ScRigidSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0580f9907fef0580f990 /* ScRigidSim.cpp */; };
- FFFF0580f9f87fef0580f9f8 /* ScScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0580f9f87fef0580f9f8 /* ScScene.cpp */; };
- FFFF0580fa607fef0580fa60 /* ScShapeCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0580fa607fef0580fa60 /* ScShapeCore.cpp */; };
- FFFF0580fac87fef0580fac8 /* ScShapeInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0580fac87fef0580fac8 /* ScShapeInteraction.cpp */; };
- FFFF0580fb307fef0580fb30 /* ScShapeSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0580fb307fef0580fb30 /* ScShapeSim.cpp */; };
- FFFF0580fb987fef0580fb98 /* ScSimStats.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0580fb987fef0580fb98 /* ScSimStats.cpp */; };
- FFFF0580fc007fef0580fc00 /* ScSimulationController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0580fc007fef0580fc00 /* ScSimulationController.cpp */; };
- FFFF0580fc687fef0580fc68 /* ScSqBoundsManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0580fc687fef0580fc68 /* ScSqBoundsManager.cpp */; };
- FFFF0580fcd07fef0580fcd0 /* ScStaticCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0580fcd07fef0580fcd0 /* ScStaticCore.cpp */; };
- FFFF0580fd387fef0580fd38 /* ScStaticSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0580fd387fef0580fd38 /* ScStaticSim.cpp */; };
- FFFF0580fda07fef0580fda0 /* ScTriggerInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0580fda07fef0580fda0 /* ScTriggerInteraction.cpp */; };
- FFFF0580ff407fef0580ff40 /* particles/ScParticleBodyInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0580ff407fef0580ff40 /* particles/ScParticleBodyInteraction.cpp */; };
- FFFF0580ffa87fef0580ffa8 /* particles/ScParticlePacketShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0580ffa87fef0580ffa8 /* particles/ScParticlePacketShape.cpp */; };
- FFFF058100107fef05810010 /* particles/ScParticleSystemCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD058100107fef05810010 /* particles/ScParticleSystemCore.cpp */; };
- FFFF058100787fef05810078 /* particles/ScParticleSystemSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD058100787fef05810078 /* particles/ScParticleSystemSim.cpp */; };
- FFFF058101b07fef058101b0 /* cloth/ScClothCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD058101b07fef058101b0 /* cloth/ScClothCore.cpp */; };
- FFFF058102187fef05810218 /* cloth/ScClothFabricCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD058102187fef05810218 /* cloth/ScClothFabricCore.cpp */; };
- FFFF058102807fef05810280 /* cloth/ScClothShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD058102807fef05810280 /* cloth/ScClothShape.cpp */; };
- FFFF058102e87fef058102e8 /* cloth/ScClothSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD058102e87fef058102e8 /* cloth/ScClothSim.cpp */; };
+ FFFFf21d75d07fb0f21d75d0 /* ScActorCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21d75d07fb0f21d75d0 /* ScActorCore.cpp */; };
+ FFFFf21d76387fb0f21d7638 /* ScActorSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21d76387fb0f21d7638 /* ScActorSim.cpp */; };
+ FFFFf21d76a07fb0f21d76a0 /* ScArticulationCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21d76a07fb0f21d76a0 /* ScArticulationCore.cpp */; };
+ FFFFf21d77087fb0f21d7708 /* ScArticulationJointCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21d77087fb0f21d7708 /* ScArticulationJointCore.cpp */; };
+ FFFFf21d77707fb0f21d7770 /* ScArticulationJointSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21d77707fb0f21d7770 /* ScArticulationJointSim.cpp */; };
+ FFFFf21d77d87fb0f21d77d8 /* ScArticulationSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21d77d87fb0f21d77d8 /* ScArticulationSim.cpp */; };
+ FFFFf21d78407fb0f21d7840 /* ScBodyCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21d78407fb0f21d7840 /* ScBodyCore.cpp */; };
+ FFFFf21d78a87fb0f21d78a8 /* ScBodyCoreKinematic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21d78a87fb0f21d78a8 /* ScBodyCoreKinematic.cpp */; };
+ FFFFf21d79107fb0f21d7910 /* ScBodySim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21d79107fb0f21d7910 /* ScBodySim.cpp */; };
+ FFFFf21d79787fb0f21d7978 /* ScConstraintCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21d79787fb0f21d7978 /* ScConstraintCore.cpp */; };
+ FFFFf21d79e07fb0f21d79e0 /* ScConstraintGroupNode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21d79e07fb0f21d79e0 /* ScConstraintGroupNode.cpp */; };
+ FFFFf21d7a487fb0f21d7a48 /* ScConstraintInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21d7a487fb0f21d7a48 /* ScConstraintInteraction.cpp */; };
+ FFFFf21d7ab07fb0f21d7ab0 /* ScConstraintProjectionManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21d7ab07fb0f21d7ab0 /* ScConstraintProjectionManager.cpp */; };
+ FFFFf21d7b187fb0f21d7b18 /* ScConstraintProjectionTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21d7b187fb0f21d7b18 /* ScConstraintProjectionTree.cpp */; };
+ FFFFf21d7b807fb0f21d7b80 /* ScConstraintSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21d7b807fb0f21d7b80 /* ScConstraintSim.cpp */; };
+ FFFFf21d7be87fb0f21d7be8 /* ScElementInteractionMarker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21d7be87fb0f21d7be8 /* ScElementInteractionMarker.cpp */; };
+ FFFFf21d7c507fb0f21d7c50 /* ScElementSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21d7c507fb0f21d7c50 /* ScElementSim.cpp */; };
+ FFFFf21d7cb87fb0f21d7cb8 /* ScInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21d7cb87fb0f21d7cb8 /* ScInteraction.cpp */; };
+ FFFFf21d7d207fb0f21d7d20 /* ScIterators.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21d7d207fb0f21d7d20 /* ScIterators.cpp */; };
+ FFFFf21d7d887fb0f21d7d88 /* ScMaterialCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21d7d887fb0f21d7d88 /* ScMaterialCore.cpp */; };
+ FFFFf21d7df07fb0f21d7df0 /* ScMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21d7df07fb0f21d7df0 /* ScMetaData.cpp */; };
+ FFFFf21d7e587fb0f21d7e58 /* ScNPhaseCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21d7e587fb0f21d7e58 /* ScNPhaseCore.cpp */; };
+ FFFFf21d7ec07fb0f21d7ec0 /* ScPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21d7ec07fb0f21d7ec0 /* ScPhysics.cpp */; };
+ FFFFf21d7f287fb0f21d7f28 /* ScRigidCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21d7f287fb0f21d7f28 /* ScRigidCore.cpp */; };
+ FFFFf21d7f907fb0f21d7f90 /* ScRigidSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21d7f907fb0f21d7f90 /* ScRigidSim.cpp */; };
+ FFFFf21d7ff87fb0f21d7ff8 /* ScScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21d7ff87fb0f21d7ff8 /* ScScene.cpp */; };
+ FFFFf21d80607fb0f21d8060 /* ScShapeCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21d80607fb0f21d8060 /* ScShapeCore.cpp */; };
+ FFFFf21d80c87fb0f21d80c8 /* ScShapeInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21d80c87fb0f21d80c8 /* ScShapeInteraction.cpp */; };
+ FFFFf21d81307fb0f21d8130 /* ScShapeSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21d81307fb0f21d8130 /* ScShapeSim.cpp */; };
+ FFFFf21d81987fb0f21d8198 /* ScSimStats.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21d81987fb0f21d8198 /* ScSimStats.cpp */; };
+ FFFFf21d82007fb0f21d8200 /* ScSimulationController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21d82007fb0f21d8200 /* ScSimulationController.cpp */; };
+ FFFFf21d82687fb0f21d8268 /* ScSqBoundsManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21d82687fb0f21d8268 /* ScSqBoundsManager.cpp */; };
+ FFFFf21d82d07fb0f21d82d0 /* ScStaticCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21d82d07fb0f21d82d0 /* ScStaticCore.cpp */; };
+ FFFFf21d83387fb0f21d8338 /* ScStaticSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21d83387fb0f21d8338 /* ScStaticSim.cpp */; };
+ FFFFf21d83a07fb0f21d83a0 /* ScTriggerInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21d83a07fb0f21d83a0 /* ScTriggerInteraction.cpp */; };
+ FFFFf21d85407fb0f21d8540 /* particles/ScParticleBodyInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21d85407fb0f21d8540 /* particles/ScParticleBodyInteraction.cpp */; };
+ FFFFf21d85a87fb0f21d85a8 /* particles/ScParticlePacketShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21d85a87fb0f21d85a8 /* particles/ScParticlePacketShape.cpp */; };
+ FFFFf21d86107fb0f21d8610 /* particles/ScParticleSystemCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21d86107fb0f21d8610 /* particles/ScParticleSystemCore.cpp */; };
+ FFFFf21d86787fb0f21d8678 /* particles/ScParticleSystemSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21d86787fb0f21d8678 /* particles/ScParticleSystemSim.cpp */; };
+ FFFFf21d87b07fb0f21d87b0 /* cloth/ScClothCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21d87b07fb0f21d87b0 /* cloth/ScClothCore.cpp */; };
+ FFFFf21d88187fb0f21d8818 /* cloth/ScClothFabricCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21d88187fb0f21d8818 /* cloth/ScClothFabricCore.cpp */; };
+ FFFFf21d88807fb0f21d8880 /* cloth/ScClothShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21d88807fb0f21d8880 /* cloth/ScClothShape.cpp */; };
+ FFFFf21d88e87fb0f21d88e8 /* cloth/ScClothSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21d88e87fb0f21d88e8 /* cloth/ScClothSim.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFD04b4ea707fef04b4ea70 /* SimulationController */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SimulationController"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFD04071e007fef04071e00 /* ScActorCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.h"; path = "../../SimulationController/include/ScActorCore.h"; sourceTree = SOURCE_ROOT; };
- FFFD04071e687fef04071e68 /* ScArticulationCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.h"; path = "../../SimulationController/include/ScArticulationCore.h"; sourceTree = SOURCE_ROOT; };
- FFFD04071ed07fef04071ed0 /* ScArticulationJointCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.h"; path = "../../SimulationController/include/ScArticulationJointCore.h"; sourceTree = SOURCE_ROOT; };
- FFFD04071f387fef04071f38 /* ScBodyCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.h"; path = "../../SimulationController/include/ScBodyCore.h"; sourceTree = SOURCE_ROOT; };
- FFFD04071fa07fef04071fa0 /* ScClothCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothCore.h"; path = "../../SimulationController/include/ScClothCore.h"; sourceTree = SOURCE_ROOT; };
- FFFD040720087fef04072008 /* ScClothFabricCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothFabricCore.h"; path = "../../SimulationController/include/ScClothFabricCore.h"; sourceTree = SOURCE_ROOT; };
- FFFD040720707fef04072070 /* ScConstraintCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.h"; path = "../../SimulationController/include/ScConstraintCore.h"; sourceTree = SOURCE_ROOT; };
- FFFD040720d87fef040720d8 /* ScIterators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.h"; path = "../../SimulationController/include/ScIterators.h"; sourceTree = SOURCE_ROOT; };
- FFFD040721407fef04072140 /* ScMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.h"; path = "../../SimulationController/include/ScMaterialCore.h"; sourceTree = SOURCE_ROOT; };
- FFFD040721a87fef040721a8 /* ScParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScParticleSystemCore.h"; path = "../../SimulationController/include/ScParticleSystemCore.h"; sourceTree = SOURCE_ROOT; };
- FFFD040722107fef04072210 /* ScPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.h"; path = "../../SimulationController/include/ScPhysics.h"; sourceTree = SOURCE_ROOT; };
- FFFD040722787fef04072278 /* ScRigidCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.h"; path = "../../SimulationController/include/ScRigidCore.h"; sourceTree = SOURCE_ROOT; };
- FFFD040722e07fef040722e0 /* ScScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.h"; path = "../../SimulationController/include/ScScene.h"; sourceTree = SOURCE_ROOT; };
- FFFD040723487fef04072348 /* ScShapeCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.h"; path = "../../SimulationController/include/ScShapeCore.h"; sourceTree = SOURCE_ROOT; };
- FFFD040723b07fef040723b0 /* ScStaticCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.h"; path = "../../SimulationController/include/ScStaticCore.h"; sourceTree = SOURCE_ROOT; };
- FFFD0580e2007fef0580e200 /* ScActorElementPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorElementPair.h"; path = "../../SimulationController/src/ScActorElementPair.h"; sourceTree = SOURCE_ROOT; };
- FFFD0580e2687fef0580e268 /* ScActorInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorInteraction.h"; path = "../../SimulationController/src/ScActorInteraction.h"; sourceTree = SOURCE_ROOT; };
- FFFD0580e2d07fef0580e2d0 /* ScActorPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorPair.h"; path = "../../SimulationController/src/ScActorPair.h"; sourceTree = SOURCE_ROOT; };
- FFFD0580e3387fef0580e338 /* ScActorSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.h"; path = "../../SimulationController/src/ScActorSim.h"; sourceTree = SOURCE_ROOT; };
- FFFD0580e3a07fef0580e3a0 /* ScArticulationJointSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.h"; path = "../../SimulationController/src/ScArticulationJointSim.h"; sourceTree = SOURCE_ROOT; };
- FFFD0580e4087fef0580e408 /* ScArticulationSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.h"; path = "../../SimulationController/src/ScArticulationSim.h"; sourceTree = SOURCE_ROOT; };
- FFFD0580e4707fef0580e470 /* ScBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.h"; path = "../../SimulationController/src/ScBodySim.h"; sourceTree = SOURCE_ROOT; };
- FFFD0580e4d87fef0580e4d8 /* ScClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClient.h"; path = "../../SimulationController/src/ScClient.h"; sourceTree = SOURCE_ROOT; };
- FFFD0580e5407fef0580e540 /* ScConstraintGroupNode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.h"; path = "../../SimulationController/src/ScConstraintGroupNode.h"; sourceTree = SOURCE_ROOT; };
- FFFD0580e5a87fef0580e5a8 /* ScConstraintInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.h"; path = "../../SimulationController/src/ScConstraintInteraction.h"; sourceTree = SOURCE_ROOT; };
- FFFD0580e6107fef0580e610 /* ScConstraintProjectionManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.h"; path = "../../SimulationController/src/ScConstraintProjectionManager.h"; sourceTree = SOURCE_ROOT; };
- FFFD0580e6787fef0580e678 /* ScConstraintProjectionTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.h"; path = "../../SimulationController/src/ScConstraintProjectionTree.h"; sourceTree = SOURCE_ROOT; };
- FFFD0580e6e07fef0580e6e0 /* ScConstraintSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.h"; path = "../../SimulationController/src/ScConstraintSim.h"; sourceTree = SOURCE_ROOT; };
- FFFD0580e7487fef0580e748 /* ScContactReportBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactReportBuffer.h"; path = "../../SimulationController/src/ScContactReportBuffer.h"; sourceTree = SOURCE_ROOT; };
- FFFD0580e7b07fef0580e7b0 /* ScContactStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactStream.h"; path = "../../SimulationController/src/ScContactStream.h"; sourceTree = SOURCE_ROOT; };
- FFFD0580e8187fef0580e818 /* ScElementInteractionMarker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.h"; path = "../../SimulationController/src/ScElementInteractionMarker.h"; sourceTree = SOURCE_ROOT; };
- FFFD0580e8807fef0580e880 /* ScElementSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.h"; path = "../../SimulationController/src/ScElementSim.h"; sourceTree = SOURCE_ROOT; };
- FFFD0580e8e87fef0580e8e8 /* ScElementSimInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSimInteraction.h"; path = "../../SimulationController/src/ScElementSimInteraction.h"; sourceTree = SOURCE_ROOT; };
- FFFD0580e9507fef0580e950 /* ScInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.h"; path = "../../SimulationController/src/ScInteraction.h"; sourceTree = SOURCE_ROOT; };
- FFFD0580e9b87fef0580e9b8 /* ScInteractionFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteractionFlags.h"; path = "../../SimulationController/src/ScInteractionFlags.h"; sourceTree = SOURCE_ROOT; };
- FFFD0580ea207fef0580ea20 /* ScNPhaseCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.h"; path = "../../SimulationController/src/ScNPhaseCore.h"; sourceTree = SOURCE_ROOT; };
- FFFD0580ea887fef0580ea88 /* ScObjectIDTracker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScObjectIDTracker.h"; path = "../../SimulationController/src/ScObjectIDTracker.h"; sourceTree = SOURCE_ROOT; };
- FFFD0580eaf07fef0580eaf0 /* ScRbElementInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRbElementInteraction.h"; path = "../../SimulationController/src/ScRbElementInteraction.h"; sourceTree = SOURCE_ROOT; };
- FFFD0580eb587fef0580eb58 /* ScRigidSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.h"; path = "../../SimulationController/src/ScRigidSim.h"; sourceTree = SOURCE_ROOT; };
- FFFD0580ebc07fef0580ebc0 /* ScShapeInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.h"; path = "../../SimulationController/src/ScShapeInteraction.h"; sourceTree = SOURCE_ROOT; };
- FFFD0580ec287fef0580ec28 /* ScShapeIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeIterator.h"; path = "../../SimulationController/src/ScShapeIterator.h"; sourceTree = SOURCE_ROOT; };
- FFFD0580ec907fef0580ec90 /* ScShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.h"; path = "../../SimulationController/src/ScShapeSim.h"; sourceTree = SOURCE_ROOT; };
- FFFD0580ecf87fef0580ecf8 /* ScSimStateData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStateData.h"; path = "../../SimulationController/src/ScSimStateData.h"; sourceTree = SOURCE_ROOT; };
- FFFD0580ed607fef0580ed60 /* ScSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.h"; path = "../../SimulationController/src/ScSimStats.h"; sourceTree = SOURCE_ROOT; };
- FFFD0580edc87fef0580edc8 /* ScSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.h"; path = "../../SimulationController/src/ScSimulationController.h"; sourceTree = SOURCE_ROOT; };
- FFFD0580ee307fef0580ee30 /* ScSqBoundsManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.h"; path = "../../SimulationController/src/ScSqBoundsManager.h"; sourceTree = SOURCE_ROOT; };
- FFFD0580ee987fef0580ee98 /* ScStaticSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.h"; path = "../../SimulationController/src/ScStaticSim.h"; sourceTree = SOURCE_ROOT; };
- FFFD0580ef007fef0580ef00 /* ScTriggerInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.h"; path = "../../SimulationController/src/ScTriggerInteraction.h"; sourceTree = SOURCE_ROOT; };
- FFFD0580ef687fef0580ef68 /* ScTriggerPairs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerPairs.h"; path = "../../SimulationController/src/ScTriggerPairs.h"; sourceTree = SOURCE_ROOT; };
- FFFD0580efd07fef0580efd0 /* ScActorCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.cpp"; path = "../../SimulationController/src/ScActorCore.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0580f0387fef0580f038 /* ScActorSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.cpp"; path = "../../SimulationController/src/ScActorSim.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0580f0a07fef0580f0a0 /* ScArticulationCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.cpp"; path = "../../SimulationController/src/ScArticulationCore.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0580f1087fef0580f108 /* ScArticulationJointCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.cpp"; path = "../../SimulationController/src/ScArticulationJointCore.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0580f1707fef0580f170 /* ScArticulationJointSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.cpp"; path = "../../SimulationController/src/ScArticulationJointSim.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0580f1d87fef0580f1d8 /* ScArticulationSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.cpp"; path = "../../SimulationController/src/ScArticulationSim.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0580f2407fef0580f240 /* ScBodyCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.cpp"; path = "../../SimulationController/src/ScBodyCore.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0580f2a87fef0580f2a8 /* ScBodyCoreKinematic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCoreKinematic.cpp"; path = "../../SimulationController/src/ScBodyCoreKinematic.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0580f3107fef0580f310 /* ScBodySim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.cpp"; path = "../../SimulationController/src/ScBodySim.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0580f3787fef0580f378 /* ScConstraintCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.cpp"; path = "../../SimulationController/src/ScConstraintCore.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0580f3e07fef0580f3e0 /* ScConstraintGroupNode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.cpp"; path = "../../SimulationController/src/ScConstraintGroupNode.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0580f4487fef0580f448 /* ScConstraintInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.cpp"; path = "../../SimulationController/src/ScConstraintInteraction.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0580f4b07fef0580f4b0 /* ScConstraintProjectionManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.cpp"; path = "../../SimulationController/src/ScConstraintProjectionManager.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0580f5187fef0580f518 /* ScConstraintProjectionTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.cpp"; path = "../../SimulationController/src/ScConstraintProjectionTree.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0580f5807fef0580f580 /* ScConstraintSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.cpp"; path = "../../SimulationController/src/ScConstraintSim.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0580f5e87fef0580f5e8 /* ScElementInteractionMarker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.cpp"; path = "../../SimulationController/src/ScElementInteractionMarker.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0580f6507fef0580f650 /* ScElementSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.cpp"; path = "../../SimulationController/src/ScElementSim.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0580f6b87fef0580f6b8 /* ScInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.cpp"; path = "../../SimulationController/src/ScInteraction.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0580f7207fef0580f720 /* ScIterators.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.cpp"; path = "../../SimulationController/src/ScIterators.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0580f7887fef0580f788 /* ScMaterialCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.cpp"; path = "../../SimulationController/src/ScMaterialCore.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0580f7f07fef0580f7f0 /* ScMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMetaData.cpp"; path = "../../SimulationController/src/ScMetaData.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0580f8587fef0580f858 /* ScNPhaseCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.cpp"; path = "../../SimulationController/src/ScNPhaseCore.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0580f8c07fef0580f8c0 /* ScPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.cpp"; path = "../../SimulationController/src/ScPhysics.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0580f9287fef0580f928 /* ScRigidCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.cpp"; path = "../../SimulationController/src/ScRigidCore.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0580f9907fef0580f990 /* ScRigidSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.cpp"; path = "../../SimulationController/src/ScRigidSim.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0580f9f87fef0580f9f8 /* ScScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.cpp"; path = "../../SimulationController/src/ScScene.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0580fa607fef0580fa60 /* ScShapeCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.cpp"; path = "../../SimulationController/src/ScShapeCore.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0580fac87fef0580fac8 /* ScShapeInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.cpp"; path = "../../SimulationController/src/ScShapeInteraction.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0580fb307fef0580fb30 /* ScShapeSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.cpp"; path = "../../SimulationController/src/ScShapeSim.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0580fb987fef0580fb98 /* ScSimStats.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.cpp"; path = "../../SimulationController/src/ScSimStats.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0580fc007fef0580fc00 /* ScSimulationController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.cpp"; path = "../../SimulationController/src/ScSimulationController.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0580fc687fef0580fc68 /* ScSqBoundsManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.cpp"; path = "../../SimulationController/src/ScSqBoundsManager.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0580fcd07fef0580fcd0 /* ScStaticCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.cpp"; path = "../../SimulationController/src/ScStaticCore.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0580fd387fef0580fd38 /* ScStaticSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.cpp"; path = "../../SimulationController/src/ScStaticSim.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0580fda07fef0580fda0 /* ScTriggerInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.cpp"; path = "../../SimulationController/src/ScTriggerInteraction.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0580fe087fef0580fe08 /* particles/ScParticleBodyInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.h"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.h"; sourceTree = SOURCE_ROOT; };
- FFFD0580fe707fef0580fe70 /* particles/ScParticlePacketShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.h"; path = "../../SimulationController/src/particles/ScParticlePacketShape.h"; sourceTree = SOURCE_ROOT; };
- FFFD0580fed87fef0580fed8 /* particles/ScParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.h"; path = "../../SimulationController/src/particles/ScParticleSystemSim.h"; sourceTree = SOURCE_ROOT; };
- FFFD0580ff407fef0580ff40 /* particles/ScParticleBodyInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.cpp"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0580ffa87fef0580ffa8 /* particles/ScParticlePacketShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.cpp"; path = "../../SimulationController/src/particles/ScParticlePacketShape.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD058100107fef05810010 /* particles/ScParticleSystemCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemCore.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemCore.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD058100787fef05810078 /* particles/ScParticleSystemSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemSim.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD058100e07fef058100e0 /* cloth/ScClothShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.h"; path = "../../SimulationController/src/cloth/ScClothShape.h"; sourceTree = SOURCE_ROOT; };
- FFFD058101487fef05810148 /* cloth/ScClothSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothSim.h"; path = "../../SimulationController/src/cloth/ScClothSim.h"; sourceTree = SOURCE_ROOT; };
- FFFD058101b07fef058101b0 /* cloth/ScClothCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothCore.cpp"; path = "../../SimulationController/src/cloth/ScClothCore.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD058102187fef05810218 /* cloth/ScClothFabricCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothFabricCore.cpp"; path = "../../SimulationController/src/cloth/ScClothFabricCore.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD058102807fef05810280 /* cloth/ScClothShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.cpp"; path = "../../SimulationController/src/cloth/ScClothShape.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD058102e87fef058102e8 /* cloth/ScClothSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothSim.cpp"; path = "../../SimulationController/src/cloth/ScClothSim.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf39771c07fb0f39771c0 /* SimulationController */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SimulationController"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFDf48386007fb0f4838600 /* ScActorCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.h"; path = "../../SimulationController/include/ScActorCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48386687fb0f4838668 /* ScArticulationCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.h"; path = "../../SimulationController/include/ScArticulationCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48386d07fb0f48386d0 /* ScArticulationJointCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.h"; path = "../../SimulationController/include/ScArticulationJointCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48387387fb0f4838738 /* ScBodyCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.h"; path = "../../SimulationController/include/ScBodyCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48387a07fb0f48387a0 /* ScClothCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothCore.h"; path = "../../SimulationController/include/ScClothCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48388087fb0f4838808 /* ScClothFabricCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothFabricCore.h"; path = "../../SimulationController/include/ScClothFabricCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48388707fb0f4838870 /* ScConstraintCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.h"; path = "../../SimulationController/include/ScConstraintCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48388d87fb0f48388d8 /* ScIterators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.h"; path = "../../SimulationController/include/ScIterators.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48389407fb0f4838940 /* ScMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.h"; path = "../../SimulationController/include/ScMaterialCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48389a87fb0f48389a8 /* ScParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScParticleSystemCore.h"; path = "../../SimulationController/include/ScParticleSystemCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4838a107fb0f4838a10 /* ScPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.h"; path = "../../SimulationController/include/ScPhysics.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4838a787fb0f4838a78 /* ScRigidCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.h"; path = "../../SimulationController/include/ScRigidCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4838ae07fb0f4838ae0 /* ScScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.h"; path = "../../SimulationController/include/ScScene.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4838b487fb0f4838b48 /* ScShapeCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.h"; path = "../../SimulationController/include/ScShapeCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4838bb07fb0f4838bb0 /* ScStaticCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.h"; path = "../../SimulationController/include/ScStaticCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d68007fb0f21d6800 /* ScActorElementPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorElementPair.h"; path = "../../SimulationController/src/ScActorElementPair.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d68687fb0f21d6868 /* ScActorInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorInteraction.h"; path = "../../SimulationController/src/ScActorInteraction.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d68d07fb0f21d68d0 /* ScActorPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorPair.h"; path = "../../SimulationController/src/ScActorPair.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d69387fb0f21d6938 /* ScActorSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.h"; path = "../../SimulationController/src/ScActorSim.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d69a07fb0f21d69a0 /* ScArticulationJointSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.h"; path = "../../SimulationController/src/ScArticulationJointSim.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d6a087fb0f21d6a08 /* ScArticulationSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.h"; path = "../../SimulationController/src/ScArticulationSim.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d6a707fb0f21d6a70 /* ScBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.h"; path = "../../SimulationController/src/ScBodySim.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d6ad87fb0f21d6ad8 /* ScClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClient.h"; path = "../../SimulationController/src/ScClient.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d6b407fb0f21d6b40 /* ScConstraintGroupNode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.h"; path = "../../SimulationController/src/ScConstraintGroupNode.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d6ba87fb0f21d6ba8 /* ScConstraintInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.h"; path = "../../SimulationController/src/ScConstraintInteraction.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d6c107fb0f21d6c10 /* ScConstraintProjectionManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.h"; path = "../../SimulationController/src/ScConstraintProjectionManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d6c787fb0f21d6c78 /* ScConstraintProjectionTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.h"; path = "../../SimulationController/src/ScConstraintProjectionTree.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d6ce07fb0f21d6ce0 /* ScConstraintSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.h"; path = "../../SimulationController/src/ScConstraintSim.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d6d487fb0f21d6d48 /* ScContactReportBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactReportBuffer.h"; path = "../../SimulationController/src/ScContactReportBuffer.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d6db07fb0f21d6db0 /* ScContactStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactStream.h"; path = "../../SimulationController/src/ScContactStream.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d6e187fb0f21d6e18 /* ScElementInteractionMarker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.h"; path = "../../SimulationController/src/ScElementInteractionMarker.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d6e807fb0f21d6e80 /* ScElementSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.h"; path = "../../SimulationController/src/ScElementSim.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d6ee87fb0f21d6ee8 /* ScElementSimInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSimInteraction.h"; path = "../../SimulationController/src/ScElementSimInteraction.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d6f507fb0f21d6f50 /* ScInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.h"; path = "../../SimulationController/src/ScInteraction.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d6fb87fb0f21d6fb8 /* ScInteractionFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteractionFlags.h"; path = "../../SimulationController/src/ScInteractionFlags.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d70207fb0f21d7020 /* ScNPhaseCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.h"; path = "../../SimulationController/src/ScNPhaseCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d70887fb0f21d7088 /* ScObjectIDTracker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScObjectIDTracker.h"; path = "../../SimulationController/src/ScObjectIDTracker.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d70f07fb0f21d70f0 /* ScRbElementInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRbElementInteraction.h"; path = "../../SimulationController/src/ScRbElementInteraction.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d71587fb0f21d7158 /* ScRigidSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.h"; path = "../../SimulationController/src/ScRigidSim.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d71c07fb0f21d71c0 /* ScShapeInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.h"; path = "../../SimulationController/src/ScShapeInteraction.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d72287fb0f21d7228 /* ScShapeIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeIterator.h"; path = "../../SimulationController/src/ScShapeIterator.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d72907fb0f21d7290 /* ScShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.h"; path = "../../SimulationController/src/ScShapeSim.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d72f87fb0f21d72f8 /* ScSimStateData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStateData.h"; path = "../../SimulationController/src/ScSimStateData.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d73607fb0f21d7360 /* ScSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.h"; path = "../../SimulationController/src/ScSimStats.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d73c87fb0f21d73c8 /* ScSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.h"; path = "../../SimulationController/src/ScSimulationController.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d74307fb0f21d7430 /* ScSqBoundsManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.h"; path = "../../SimulationController/src/ScSqBoundsManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d74987fb0f21d7498 /* ScStaticSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.h"; path = "../../SimulationController/src/ScStaticSim.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d75007fb0f21d7500 /* ScTriggerInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.h"; path = "../../SimulationController/src/ScTriggerInteraction.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d75687fb0f21d7568 /* ScTriggerPairs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerPairs.h"; path = "../../SimulationController/src/ScTriggerPairs.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d75d07fb0f21d75d0 /* ScActorCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.cpp"; path = "../../SimulationController/src/ScActorCore.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d76387fb0f21d7638 /* ScActorSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.cpp"; path = "../../SimulationController/src/ScActorSim.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d76a07fb0f21d76a0 /* ScArticulationCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.cpp"; path = "../../SimulationController/src/ScArticulationCore.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d77087fb0f21d7708 /* ScArticulationJointCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.cpp"; path = "../../SimulationController/src/ScArticulationJointCore.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d77707fb0f21d7770 /* ScArticulationJointSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.cpp"; path = "../../SimulationController/src/ScArticulationJointSim.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d77d87fb0f21d77d8 /* ScArticulationSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.cpp"; path = "../../SimulationController/src/ScArticulationSim.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d78407fb0f21d7840 /* ScBodyCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.cpp"; path = "../../SimulationController/src/ScBodyCore.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d78a87fb0f21d78a8 /* ScBodyCoreKinematic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCoreKinematic.cpp"; path = "../../SimulationController/src/ScBodyCoreKinematic.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d79107fb0f21d7910 /* ScBodySim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.cpp"; path = "../../SimulationController/src/ScBodySim.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d79787fb0f21d7978 /* ScConstraintCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.cpp"; path = "../../SimulationController/src/ScConstraintCore.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d79e07fb0f21d79e0 /* ScConstraintGroupNode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.cpp"; path = "../../SimulationController/src/ScConstraintGroupNode.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d7a487fb0f21d7a48 /* ScConstraintInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.cpp"; path = "../../SimulationController/src/ScConstraintInteraction.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d7ab07fb0f21d7ab0 /* ScConstraintProjectionManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.cpp"; path = "../../SimulationController/src/ScConstraintProjectionManager.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d7b187fb0f21d7b18 /* ScConstraintProjectionTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.cpp"; path = "../../SimulationController/src/ScConstraintProjectionTree.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d7b807fb0f21d7b80 /* ScConstraintSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.cpp"; path = "../../SimulationController/src/ScConstraintSim.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d7be87fb0f21d7be8 /* ScElementInteractionMarker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.cpp"; path = "../../SimulationController/src/ScElementInteractionMarker.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d7c507fb0f21d7c50 /* ScElementSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.cpp"; path = "../../SimulationController/src/ScElementSim.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d7cb87fb0f21d7cb8 /* ScInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.cpp"; path = "../../SimulationController/src/ScInteraction.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d7d207fb0f21d7d20 /* ScIterators.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.cpp"; path = "../../SimulationController/src/ScIterators.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d7d887fb0f21d7d88 /* ScMaterialCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.cpp"; path = "../../SimulationController/src/ScMaterialCore.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d7df07fb0f21d7df0 /* ScMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMetaData.cpp"; path = "../../SimulationController/src/ScMetaData.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d7e587fb0f21d7e58 /* ScNPhaseCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.cpp"; path = "../../SimulationController/src/ScNPhaseCore.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d7ec07fb0f21d7ec0 /* ScPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.cpp"; path = "../../SimulationController/src/ScPhysics.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d7f287fb0f21d7f28 /* ScRigidCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.cpp"; path = "../../SimulationController/src/ScRigidCore.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d7f907fb0f21d7f90 /* ScRigidSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.cpp"; path = "../../SimulationController/src/ScRigidSim.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d7ff87fb0f21d7ff8 /* ScScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.cpp"; path = "../../SimulationController/src/ScScene.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d80607fb0f21d8060 /* ScShapeCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.cpp"; path = "../../SimulationController/src/ScShapeCore.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d80c87fb0f21d80c8 /* ScShapeInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.cpp"; path = "../../SimulationController/src/ScShapeInteraction.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d81307fb0f21d8130 /* ScShapeSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.cpp"; path = "../../SimulationController/src/ScShapeSim.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d81987fb0f21d8198 /* ScSimStats.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.cpp"; path = "../../SimulationController/src/ScSimStats.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d82007fb0f21d8200 /* ScSimulationController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.cpp"; path = "../../SimulationController/src/ScSimulationController.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d82687fb0f21d8268 /* ScSqBoundsManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.cpp"; path = "../../SimulationController/src/ScSqBoundsManager.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d82d07fb0f21d82d0 /* ScStaticCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.cpp"; path = "../../SimulationController/src/ScStaticCore.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d83387fb0f21d8338 /* ScStaticSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.cpp"; path = "../../SimulationController/src/ScStaticSim.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d83a07fb0f21d83a0 /* ScTriggerInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.cpp"; path = "../../SimulationController/src/ScTriggerInteraction.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d84087fb0f21d8408 /* particles/ScParticleBodyInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.h"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d84707fb0f21d8470 /* particles/ScParticlePacketShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.h"; path = "../../SimulationController/src/particles/ScParticlePacketShape.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d84d87fb0f21d84d8 /* particles/ScParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.h"; path = "../../SimulationController/src/particles/ScParticleSystemSim.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d85407fb0f21d8540 /* particles/ScParticleBodyInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.cpp"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d85a87fb0f21d85a8 /* particles/ScParticlePacketShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.cpp"; path = "../../SimulationController/src/particles/ScParticlePacketShape.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d86107fb0f21d8610 /* particles/ScParticleSystemCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemCore.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemCore.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d86787fb0f21d8678 /* particles/ScParticleSystemSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemSim.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d86e07fb0f21d86e0 /* cloth/ScClothShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.h"; path = "../../SimulationController/src/cloth/ScClothShape.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d87487fb0f21d8748 /* cloth/ScClothSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothSim.h"; path = "../../SimulationController/src/cloth/ScClothSim.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d87b07fb0f21d87b0 /* cloth/ScClothCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothCore.cpp"; path = "../../SimulationController/src/cloth/ScClothCore.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d88187fb0f21d8818 /* cloth/ScClothFabricCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothFabricCore.cpp"; path = "../../SimulationController/src/cloth/ScClothFabricCore.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d88807fb0f21d8880 /* cloth/ScClothShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.cpp"; path = "../../SimulationController/src/cloth/ScClothShape.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21d88e87fb0f21d88e8 /* 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 */
- FFF204b4ea707fef04b4ea70 /* Resources */ = {
+ FFF2f39771c07fb0f39771c0 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -1143,7 +1143,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFC04b4ea707fef04b4ea70 /* Frameworks */ = {
+ FFFCf39771c07fb0f39771c0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -1153,53 +1153,53 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF804b4ea707fef04b4ea70 /* Sources */ = {
+ FFF8f39771c07fb0f39771c0 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFF0580efd07fef0580efd0,
- FFFF0580f0387fef0580f038,
- FFFF0580f0a07fef0580f0a0,
- FFFF0580f1087fef0580f108,
- FFFF0580f1707fef0580f170,
- FFFF0580f1d87fef0580f1d8,
- FFFF0580f2407fef0580f240,
- FFFF0580f2a87fef0580f2a8,
- FFFF0580f3107fef0580f310,
- FFFF0580f3787fef0580f378,
- FFFF0580f3e07fef0580f3e0,
- FFFF0580f4487fef0580f448,
- FFFF0580f4b07fef0580f4b0,
- FFFF0580f5187fef0580f518,
- FFFF0580f5807fef0580f580,
- FFFF0580f5e87fef0580f5e8,
- FFFF0580f6507fef0580f650,
- FFFF0580f6b87fef0580f6b8,
- FFFF0580f7207fef0580f720,
- FFFF0580f7887fef0580f788,
- FFFF0580f7f07fef0580f7f0,
- FFFF0580f8587fef0580f858,
- FFFF0580f8c07fef0580f8c0,
- FFFF0580f9287fef0580f928,
- FFFF0580f9907fef0580f990,
- FFFF0580f9f87fef0580f9f8,
- FFFF0580fa607fef0580fa60,
- FFFF0580fac87fef0580fac8,
- FFFF0580fb307fef0580fb30,
- FFFF0580fb987fef0580fb98,
- FFFF0580fc007fef0580fc00,
- FFFF0580fc687fef0580fc68,
- FFFF0580fcd07fef0580fcd0,
- FFFF0580fd387fef0580fd38,
- FFFF0580fda07fef0580fda0,
- FFFF0580ff407fef0580ff40,
- FFFF0580ffa87fef0580ffa8,
- FFFF058100107fef05810010,
- FFFF058100787fef05810078,
- FFFF058101b07fef058101b0,
- FFFF058102187fef05810218,
- FFFF058102807fef05810280,
- FFFF058102e87fef058102e8,
+ FFFFf21d75d07fb0f21d75d0,
+ FFFFf21d76387fb0f21d7638,
+ FFFFf21d76a07fb0f21d76a0,
+ FFFFf21d77087fb0f21d7708,
+ FFFFf21d77707fb0f21d7770,
+ FFFFf21d77d87fb0f21d77d8,
+ FFFFf21d78407fb0f21d7840,
+ FFFFf21d78a87fb0f21d78a8,
+ FFFFf21d79107fb0f21d7910,
+ FFFFf21d79787fb0f21d7978,
+ FFFFf21d79e07fb0f21d79e0,
+ FFFFf21d7a487fb0f21d7a48,
+ FFFFf21d7ab07fb0f21d7ab0,
+ FFFFf21d7b187fb0f21d7b18,
+ FFFFf21d7b807fb0f21d7b80,
+ FFFFf21d7be87fb0f21d7be8,
+ FFFFf21d7c507fb0f21d7c50,
+ FFFFf21d7cb87fb0f21d7cb8,
+ FFFFf21d7d207fb0f21d7d20,
+ FFFFf21d7d887fb0f21d7d88,
+ FFFFf21d7df07fb0f21d7df0,
+ FFFFf21d7e587fb0f21d7e58,
+ FFFFf21d7ec07fb0f21d7ec0,
+ FFFFf21d7f287fb0f21d7f28,
+ FFFFf21d7f907fb0f21d7f90,
+ FFFFf21d7ff87fb0f21d7ff8,
+ FFFFf21d80607fb0f21d8060,
+ FFFFf21d80c87fb0f21d80c8,
+ FFFFf21d81307fb0f21d8130,
+ FFFFf21d81987fb0f21d8198,
+ FFFFf21d82007fb0f21d8200,
+ FFFFf21d82687fb0f21d8268,
+ FFFFf21d82d07fb0f21d82d0,
+ FFFFf21d83387fb0f21d8338,
+ FFFFf21d83a07fb0f21d83a0,
+ FFFFf21d85407fb0f21d8540,
+ FFFFf21d85a87fb0f21d85a8,
+ FFFFf21d86107fb0f21d8610,
+ FFFFf21d86787fb0f21d8678,
+ FFFFf21d87b07fb0f21d87b0,
+ FFFFf21d88187fb0f21d8818,
+ FFFFf21d88807fb0f21d8880,
+ FFFFf21d88e87fb0f21d88e8,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -1211,80 +1211,80 @@
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of PhysXCooking */
- FFFF0492f7007fef0492f700 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD04b37ba07fef04b37ba0 /* PhysXExtensions */; };
- FFFF058144007fef05814400 /* Adjacencies.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD058144007fef05814400 /* Adjacencies.cpp */; };
- FFFF058144687fef05814468 /* Cooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD058144687fef05814468 /* Cooking.cpp */; };
- FFFF058144d07fef058144d0 /* CookingUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD058144d07fef058144d0 /* CookingUtils.cpp */; };
- FFFF058145387fef05814538 /* EdgeList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD058145387fef05814538 /* EdgeList.cpp */; };
- FFFF058145a07fef058145a0 /* MeshCleaner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD058145a07fef058145a0 /* MeshCleaner.cpp */; };
- FFFF058146087fef05814608 /* Quantizer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD058146087fef05814608 /* Quantizer.cpp */; };
- FFFF058148e07fef058148e0 /* mesh/GrbTriangleMeshCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD058148e07fef058148e0 /* mesh/GrbTriangleMeshCooking.cpp */; };
- FFFF058149487fef05814948 /* mesh/HeightFieldCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD058149487fef05814948 /* mesh/HeightFieldCooking.cpp */; };
- FFFF058149b07fef058149b0 /* mesh/RTreeCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD058149b07fef058149b0 /* mesh/RTreeCooking.cpp */; };
- FFFF05814a187fef05814a18 /* mesh/TriangleMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD05814a187fef05814a18 /* mesh/TriangleMeshBuilder.cpp */; };
- FFFF05814c887fef05814c88 /* convex/BigConvexDataBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD05814c887fef05814c88 /* convex/BigConvexDataBuilder.cpp */; };
- FFFF05814cf07fef05814cf0 /* convex/ConvexHullBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD05814cf07fef05814cf0 /* convex/ConvexHullBuilder.cpp */; };
- FFFF05814d587fef05814d58 /* convex/ConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD05814d587fef05814d58 /* convex/ConvexHullLib.cpp */; };
- FFFF05814dc07fef05814dc0 /* convex/ConvexHullUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD05814dc07fef05814dc0 /* convex/ConvexHullUtils.cpp */; };
- FFFF05814e287fef05814e28 /* convex/ConvexMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD05814e287fef05814e28 /* convex/ConvexMeshBuilder.cpp */; };
- FFFF05814e907fef05814e90 /* convex/ConvexPolygonsBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD05814e907fef05814e90 /* convex/ConvexPolygonsBuilder.cpp */; };
- FFFF05814ef87fef05814ef8 /* convex/InflationConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD05814ef87fef05814ef8 /* convex/InflationConvexHullLib.cpp */; };
- FFFF05814f607fef05814f60 /* convex/QuickHullConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD05814f607fef05814f60 /* convex/QuickHullConvexHullLib.cpp */; };
- FFFF05814fc87fef05814fc8 /* convex/VolumeIntegration.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD05814fc87fef05814fc8 /* convex/VolumeIntegration.cpp */; };
+ FFFFf3a007707fb0f3a00770 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFDf39602f07fb0f39602f0 /* PhysXExtensions */; };
+ FFFFf21dea007fb0f21dea00 /* Adjacencies.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21dea007fb0f21dea00 /* Adjacencies.cpp */; };
+ FFFFf21dea687fb0f21dea68 /* Cooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21dea687fb0f21dea68 /* Cooking.cpp */; };
+ FFFFf21dead07fb0f21dead0 /* CookingUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21dead07fb0f21dead0 /* CookingUtils.cpp */; };
+ FFFFf21deb387fb0f21deb38 /* EdgeList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21deb387fb0f21deb38 /* EdgeList.cpp */; };
+ FFFFf21deba07fb0f21deba0 /* MeshCleaner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21deba07fb0f21deba0 /* MeshCleaner.cpp */; };
+ FFFFf21dec087fb0f21dec08 /* Quantizer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21dec087fb0f21dec08 /* Quantizer.cpp */; };
+ FFFFf21deee07fb0f21deee0 /* mesh/GrbTriangleMeshCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21deee07fb0f21deee0 /* mesh/GrbTriangleMeshCooking.cpp */; };
+ FFFFf21def487fb0f21def48 /* mesh/HeightFieldCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21def487fb0f21def48 /* mesh/HeightFieldCooking.cpp */; };
+ FFFFf21defb07fb0f21defb0 /* mesh/RTreeCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21defb07fb0f21defb0 /* mesh/RTreeCooking.cpp */; };
+ FFFFf21df0187fb0f21df018 /* mesh/TriangleMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21df0187fb0f21df018 /* mesh/TriangleMeshBuilder.cpp */; };
+ FFFFf21df2887fb0f21df288 /* convex/BigConvexDataBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21df2887fb0f21df288 /* convex/BigConvexDataBuilder.cpp */; };
+ FFFFf21df2f07fb0f21df2f0 /* convex/ConvexHullBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21df2f07fb0f21df2f0 /* convex/ConvexHullBuilder.cpp */; };
+ FFFFf21df3587fb0f21df358 /* convex/ConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21df3587fb0f21df358 /* convex/ConvexHullLib.cpp */; };
+ FFFFf21df3c07fb0f21df3c0 /* convex/ConvexHullUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21df3c07fb0f21df3c0 /* convex/ConvexHullUtils.cpp */; };
+ FFFFf21df4287fb0f21df428 /* convex/ConvexMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21df4287fb0f21df428 /* convex/ConvexMeshBuilder.cpp */; };
+ FFFFf21df4907fb0f21df490 /* convex/ConvexPolygonsBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21df4907fb0f21df490 /* convex/ConvexPolygonsBuilder.cpp */; };
+ FFFFf21df4f87fb0f21df4f8 /* convex/InflationConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21df4f87fb0f21df4f8 /* convex/InflationConvexHullLib.cpp */; };
+ FFFFf21df5607fb0f21df560 /* convex/QuickHullConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21df5607fb0f21df560 /* convex/QuickHullConvexHullLib.cpp */; };
+ FFFFf21df5c87fb0f21df5c8 /* convex/VolumeIntegration.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21df5c87fb0f21df5c8 /* convex/VolumeIntegration.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFD0492c6407fef0492c640 /* PhysXCooking */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCooking"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFD0492e5207fef0492e520 /* PxBVH33MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH33MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH33MidphaseDesc.h"; sourceTree = SOURCE_ROOT; };
- FFFD0492e5887fef0492e588 /* PxBVH34MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH34MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH34MidphaseDesc.h"; sourceTree = SOURCE_ROOT; };
- FFFD0492e5f07fef0492e5f0 /* PxConvexMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshDesc.h"; path = "../../../Include/cooking/PxConvexMeshDesc.h"; sourceTree = SOURCE_ROOT; };
- FFFD0492e6587fef0492e658 /* PxCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCooking.h"; path = "../../../Include/cooking/PxCooking.h"; sourceTree = SOURCE_ROOT; };
- FFFD0492e6c07fef0492e6c0 /* PxMidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMidphaseDesc.h"; path = "../../../Include/cooking/PxMidphaseDesc.h"; sourceTree = SOURCE_ROOT; };
- FFFD0492e7287fef0492e728 /* PxTriangleMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshDesc.h"; path = "../../../Include/cooking/PxTriangleMeshDesc.h"; sourceTree = SOURCE_ROOT; };
- FFFD0492e7907fef0492e790 /* Pxc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Pxc.h"; path = "../../../Include/cooking/Pxc.h"; sourceTree = SOURCE_ROOT; };
- FFFD058144007fef05814400 /* Adjacencies.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.cpp"; path = "../../PhysXCooking/src/Adjacencies.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD058144687fef05814468 /* Cooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.cpp"; path = "../../PhysXCooking/src/Cooking.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD058144d07fef058144d0 /* CookingUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.cpp"; path = "../../PhysXCooking/src/CookingUtils.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD058145387fef05814538 /* EdgeList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.cpp"; path = "../../PhysXCooking/src/EdgeList.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD058145a07fef058145a0 /* MeshCleaner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.cpp"; path = "../../PhysXCooking/src/MeshCleaner.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD058146087fef05814608 /* Quantizer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.cpp"; path = "../../PhysXCooking/src/Quantizer.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD058146707fef05814670 /* Adjacencies.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.h"; path = "../../PhysXCooking/src/Adjacencies.h"; sourceTree = SOURCE_ROOT; };
- FFFD058146d87fef058146d8 /* Cooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.h"; path = "../../PhysXCooking/src/Cooking.h"; sourceTree = SOURCE_ROOT; };
- FFFD058147407fef05814740 /* CookingUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.h"; path = "../../PhysXCooking/src/CookingUtils.h"; sourceTree = SOURCE_ROOT; };
- FFFD058147a87fef058147a8 /* EdgeList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.h"; path = "../../PhysXCooking/src/EdgeList.h"; sourceTree = SOURCE_ROOT; };
- FFFD058148107fef05814810 /* MeshCleaner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.h"; path = "../../PhysXCooking/src/MeshCleaner.h"; sourceTree = SOURCE_ROOT; };
- FFFD058148787fef05814878 /* Quantizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.h"; path = "../../PhysXCooking/src/Quantizer.h"; sourceTree = SOURCE_ROOT; };
- FFFD058148e07fef058148e0 /* mesh/GrbTriangleMeshCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.cpp"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD058149487fef05814948 /* mesh/HeightFieldCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.cpp"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD058149b07fef058149b0 /* mesh/RTreeCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.cpp"; path = "../../PhysXCooking/src/mesh/RTreeCooking.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD05814a187fef05814a18 /* mesh/TriangleMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.cpp"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD05814a807fef05814a80 /* mesh/GrbTriangleMeshCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.h"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.h"; sourceTree = SOURCE_ROOT; };
- FFFD05814ae87fef05814ae8 /* mesh/HeightFieldCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.h"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.h"; sourceTree = SOURCE_ROOT; };
- FFFD05814b507fef05814b50 /* mesh/QuickSelect.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/QuickSelect.h"; path = "../../PhysXCooking/src/mesh/QuickSelect.h"; sourceTree = SOURCE_ROOT; };
- FFFD05814bb87fef05814bb8 /* mesh/RTreeCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.h"; path = "../../PhysXCooking/src/mesh/RTreeCooking.h"; sourceTree = SOURCE_ROOT; };
- FFFD05814c207fef05814c20 /* mesh/TriangleMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.h"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.h"; sourceTree = SOURCE_ROOT; };
- FFFD05814c887fef05814c88 /* convex/BigConvexDataBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.cpp"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD05814cf07fef05814cf0 /* convex/ConvexHullBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD05814d587fef05814d58 /* convex/ConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD05814dc07fef05814dc0 /* convex/ConvexHullUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD05814e287fef05814e28 /* convex/ConvexMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD05814e907fef05814e90 /* convex/ConvexPolygonsBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD05814ef87fef05814ef8 /* convex/InflationConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD05814f607fef05814f60 /* convex/QuickHullConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD05814fc87fef05814fc8 /* convex/VolumeIntegration.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/VolumeIntegration.cpp"; path = "../../PhysXCooking/src/convex/VolumeIntegration.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD058150307fef05815030 /* convex/BigConvexDataBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.h"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.h"; sourceTree = SOURCE_ROOT; };
- FFFD058150987fef05815098 /* convex/ConvexHullBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.h"; sourceTree = SOURCE_ROOT; };
- FFFD058151007fef05815100 /* convex/ConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.h"; path = "../../PhysXCooking/src/convex/ConvexHullLib.h"; sourceTree = SOURCE_ROOT; };
- FFFD058151687fef05815168 /* convex/ConvexHullUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.h"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.h"; sourceTree = SOURCE_ROOT; };
- FFFD058151d07fef058151d0 /* convex/ConvexMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.h"; sourceTree = SOURCE_ROOT; };
- FFFD058152387fef05815238 /* convex/ConvexPolygonsBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.h"; sourceTree = SOURCE_ROOT; };
- FFFD058152a07fef058152a0 /* convex/InflationConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.h"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.h"; sourceTree = SOURCE_ROOT; };
- FFFD058153087fef05815308 /* convex/QuickHullConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.h"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.h"; sourceTree = SOURCE_ROOT; };
- FFFD058153707fef05815370 /* convex/VolumeIntegration.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/VolumeIntegration.h"; path = "../../PhysXCooking/src/convex/VolumeIntegration.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2c8ba007fb0f2c8ba00 /* PhysXCooking */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCooking"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFDf3a000007fb0f3a00000 /* PxBVH33MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH33MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH33MidphaseDesc.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3a000687fb0f3a00068 /* PxBVH34MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH34MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH34MidphaseDesc.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3a000d07fb0f3a000d0 /* PxConvexMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshDesc.h"; path = "../../../Include/cooking/PxConvexMeshDesc.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3a001387fb0f3a00138 /* PxCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCooking.h"; path = "../../../Include/cooking/PxCooking.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3a001a07fb0f3a001a0 /* PxMidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMidphaseDesc.h"; path = "../../../Include/cooking/PxMidphaseDesc.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3a002087fb0f3a00208 /* PxTriangleMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshDesc.h"; path = "../../../Include/cooking/PxTriangleMeshDesc.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3a002707fb0f3a00270 /* Pxc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Pxc.h"; path = "../../../Include/cooking/Pxc.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21dea007fb0f21dea00 /* Adjacencies.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.cpp"; path = "../../PhysXCooking/src/Adjacencies.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21dea687fb0f21dea68 /* Cooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.cpp"; path = "../../PhysXCooking/src/Cooking.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21dead07fb0f21dead0 /* CookingUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.cpp"; path = "../../PhysXCooking/src/CookingUtils.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21deb387fb0f21deb38 /* EdgeList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.cpp"; path = "../../PhysXCooking/src/EdgeList.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21deba07fb0f21deba0 /* MeshCleaner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.cpp"; path = "../../PhysXCooking/src/MeshCleaner.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21dec087fb0f21dec08 /* Quantizer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.cpp"; path = "../../PhysXCooking/src/Quantizer.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21dec707fb0f21dec70 /* Adjacencies.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.h"; path = "../../PhysXCooking/src/Adjacencies.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21decd87fb0f21decd8 /* Cooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.h"; path = "../../PhysXCooking/src/Cooking.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21ded407fb0f21ded40 /* CookingUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.h"; path = "../../PhysXCooking/src/CookingUtils.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21deda87fb0f21deda8 /* EdgeList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.h"; path = "../../PhysXCooking/src/EdgeList.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21dee107fb0f21dee10 /* MeshCleaner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.h"; path = "../../PhysXCooking/src/MeshCleaner.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21dee787fb0f21dee78 /* Quantizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.h"; path = "../../PhysXCooking/src/Quantizer.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21deee07fb0f21deee0 /* mesh/GrbTriangleMeshCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.cpp"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21def487fb0f21def48 /* mesh/HeightFieldCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.cpp"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21defb07fb0f21defb0 /* mesh/RTreeCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.cpp"; path = "../../PhysXCooking/src/mesh/RTreeCooking.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21df0187fb0f21df018 /* mesh/TriangleMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.cpp"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21df0807fb0f21df080 /* mesh/GrbTriangleMeshCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.h"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21df0e87fb0f21df0e8 /* mesh/HeightFieldCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.h"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21df1507fb0f21df150 /* mesh/QuickSelect.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/QuickSelect.h"; path = "../../PhysXCooking/src/mesh/QuickSelect.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21df1b87fb0f21df1b8 /* mesh/RTreeCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.h"; path = "../../PhysXCooking/src/mesh/RTreeCooking.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21df2207fb0f21df220 /* mesh/TriangleMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.h"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21df2887fb0f21df288 /* convex/BigConvexDataBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.cpp"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21df2f07fb0f21df2f0 /* convex/ConvexHullBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21df3587fb0f21df358 /* convex/ConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21df3c07fb0f21df3c0 /* convex/ConvexHullUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21df4287fb0f21df428 /* convex/ConvexMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21df4907fb0f21df490 /* convex/ConvexPolygonsBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21df4f87fb0f21df4f8 /* convex/InflationConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21df5607fb0f21df560 /* convex/QuickHullConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21df5c87fb0f21df5c8 /* convex/VolumeIntegration.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/VolumeIntegration.cpp"; path = "../../PhysXCooking/src/convex/VolumeIntegration.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21df6307fb0f21df630 /* convex/BigConvexDataBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.h"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21df6987fb0f21df698 /* convex/ConvexHullBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21df7007fb0f21df700 /* convex/ConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.h"; path = "../../PhysXCooking/src/convex/ConvexHullLib.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21df7687fb0f21df768 /* convex/ConvexHullUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.h"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21df7d07fb0f21df7d0 /* convex/ConvexMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21df8387fb0f21df838 /* convex/ConvexPolygonsBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21df8a07fb0f21df8a0 /* convex/InflationConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.h"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21df9087fb0f21df908 /* convex/QuickHullConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.h"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21df9707fb0f21df970 /* 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 */
- FFF20492c6407fef0492c640 /* Resources */ = {
+ FFF2f2c8ba007fb0f2c8ba00 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -1294,7 +1294,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFC0492c6407fef0492c640 /* Frameworks */ = {
+ FFFCf2c8ba007fb0f2c8ba00 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -1304,29 +1304,29 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF80492c6407fef0492c640 /* Sources */ = {
+ FFF8f2c8ba007fb0f2c8ba00 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFF058144007fef05814400,
- FFFF058144687fef05814468,
- FFFF058144d07fef058144d0,
- FFFF058145387fef05814538,
- FFFF058145a07fef058145a0,
- FFFF058146087fef05814608,
- FFFF058148e07fef058148e0,
- FFFF058149487fef05814948,
- FFFF058149b07fef058149b0,
- FFFF05814a187fef05814a18,
- FFFF05814c887fef05814c88,
- FFFF05814cf07fef05814cf0,
- FFFF05814d587fef05814d58,
- FFFF05814dc07fef05814dc0,
- FFFF05814e287fef05814e28,
- FFFF05814e907fef05814e90,
- FFFF05814ef87fef05814ef8,
- FFFF05814f607fef05814f60,
- FFFF05814fc87fef05814fc8,
+ FFFFf21dea007fb0f21dea00,
+ FFFFf21dea687fb0f21dea68,
+ FFFFf21dead07fb0f21dead0,
+ FFFFf21deb387fb0f21deb38,
+ FFFFf21deba07fb0f21deba0,
+ FFFFf21dec087fb0f21dec08,
+ FFFFf21deee07fb0f21deee0,
+ FFFFf21def487fb0f21def48,
+ FFFFf21defb07fb0f21defb0,
+ FFFFf21df0187fb0f21df018,
+ FFFFf21df2887fb0f21df288,
+ FFFFf21df2f07fb0f21df2f0,
+ FFFFf21df3587fb0f21df358,
+ FFFFf21df3c07fb0f21df3c0,
+ FFFFf21df4287fb0f21df428,
+ FFFFf21df4907fb0f21df490,
+ FFFFf21df4f87fb0f21df4f8,
+ FFFFf21df5607fb0f21df560,
+ FFFFf21df5c87fb0f21df5c8,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -1335,514 +1335,514 @@
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
- FFF40492f4507fef0492f450 /* PBXTargetDependency */ = {
+ FFF4f3a019407fb0f3a01940 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFA0314a5307fef0314a530 /* PhysXCommon */;
- targetProxy = FFF50314a5307fef0314a530 /* PBXContainerItemProxy */;
+ target = FFFAf299eeb07fb0f299eeb0 /* PhysXCommon */;
+ targetProxy = FFF5f299eeb07fb0f299eeb0 /* PBXContainerItemProxy */;
};
- FFF40492f7007fef0492f700 /* PBXTargetDependency */ = {
+ FFF4f3a007707fb0f3a00770 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFA04b37ba07fef04b37ba0 /* PhysXExtensions */;
- targetProxy = FFF504b37ba07fef04b37ba0 /* PBXContainerItemProxy */;
+ target = FFFAf39602f07fb0f39602f0 /* PhysXExtensions */;
+ targetProxy = FFF5f39602f07fb0f39602f0 /* PBXContainerItemProxy */;
};
- FFF404918bf07fef04918bf0 /* PBXTargetDependency */ = {
+ FFF4f2c8b8a07fb0f2c8b8a0 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFA031431707fef03143170 /* PxFoundation */;
- targetProxy = FFF5031431707fef03143170 /* PBXContainerItemProxy */;
+ target = FFFAf298c0307fb0f298c030 /* PxFoundation */;
+ targetProxy = FFF5f298c0307fb0f298c030 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of PhysXCommon */
- FFFF039562007fef03956200 /* src/CmBoxPruning.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD039562007fef03956200 /* src/CmBoxPruning.cpp */; };
- FFFF039562687fef03956268 /* src/CmCollection.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD039562687fef03956268 /* src/CmCollection.cpp */; };
- FFFF039562d07fef039562d0 /* src/CmMathUtils.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD039562d07fef039562d0 /* src/CmMathUtils.cpp */; };
- FFFF039563387fef03956338 /* src/CmPtrTable.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD039563387fef03956338 /* src/CmPtrTable.cpp */; };
- FFFF039563a07fef039563a0 /* src/CmRadixSort.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD039563a07fef039563a0 /* src/CmRadixSort.cpp */; };
- FFFF039564087fef03956408 /* src/CmRadixSortBuffered.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD039564087fef03956408 /* src/CmRadixSortBuffered.cpp */; };
- FFFF039564707fef03956470 /* src/CmRenderOutput.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD039564707fef03956470 /* src/CmRenderOutput.cpp */; };
- FFFF039564d87fef039564d8 /* src/CmVisualization.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD039564d87fef039564d8 /* src/CmVisualization.cpp */; };
- FFFF02854fa87fef02854fa8 /* ../../Include/GeomUtils in geomutils */= { isa = PBXBuildFile; fileRef = FFFD02854fa87fef02854fa8 /* ../../Include/GeomUtils */; };
- FFFF028584e07fef028584e0 /* src/GuBounds.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD028584e07fef028584e0 /* src/GuBounds.cpp */; };
- FFFF028585487fef02858548 /* src/GuBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD028585487fef02858548 /* src/GuBox.cpp */; };
- FFFF028585b07fef028585b0 /* src/GuCCTSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD028585b07fef028585b0 /* src/GuCCTSweepTests.cpp */; };
- FFFF028586187fef02858618 /* src/GuCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD028586187fef02858618 /* src/GuCapsule.cpp */; };
- FFFF028586807fef02858680 /* src/GuGeometryQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD028586807fef02858680 /* src/GuGeometryQuery.cpp */; };
- FFFF028586e87fef028586e8 /* src/GuGeometryUnion.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD028586e87fef028586e8 /* src/GuGeometryUnion.cpp */; };
- FFFF028587507fef02858750 /* src/GuInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD028587507fef02858750 /* src/GuInternal.cpp */; };
- FFFF028587b87fef028587b8 /* src/GuMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD028587b87fef028587b8 /* src/GuMTD.cpp */; };
- FFFF028588207fef02858820 /* src/GuMeshFactory.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD028588207fef02858820 /* src/GuMeshFactory.cpp */; };
- FFFF028588887fef02858888 /* src/GuMetaData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD028588887fef02858888 /* src/GuMetaData.cpp */; };
- FFFF028588f07fef028588f0 /* src/GuOverlapTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD028588f07fef028588f0 /* src/GuOverlapTests.cpp */; };
- FFFF028589587fef02858958 /* src/GuRaycastTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD028589587fef02858958 /* src/GuRaycastTests.cpp */; };
- FFFF028589c07fef028589c0 /* src/GuSerialize.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD028589c07fef028589c0 /* src/GuSerialize.cpp */; };
- FFFF02858a287fef02858a28 /* src/GuSweepMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD02858a287fef02858a28 /* src/GuSweepMTD.cpp */; };
- FFFF02858a907fef02858a90 /* src/GuSweepSharedTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD02858a907fef02858a90 /* src/GuSweepSharedTests.cpp */; };
- FFFF02858af87fef02858af8 /* src/GuSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD02858af87fef02858af8 /* src/GuSweepTests.cpp */; };
- FFFF02858b607fef02858b60 /* src/contact/GuContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD02858b607fef02858b60 /* src/contact/GuContactBoxBox.cpp */; };
- FFFF02858bc87fef02858bc8 /* src/contact/GuContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD02858bc87fef02858bc8 /* src/contact/GuContactCapsuleBox.cpp */; };
- FFFF02858c307fef02858c30 /* src/contact/GuContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD02858c307fef02858c30 /* src/contact/GuContactCapsuleCapsule.cpp */; };
- FFFF02858c987fef02858c98 /* src/contact/GuContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD02858c987fef02858c98 /* src/contact/GuContactCapsuleConvex.cpp */; };
- FFFF02858d007fef02858d00 /* src/contact/GuContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD02858d007fef02858d00 /* src/contact/GuContactCapsuleMesh.cpp */; };
- FFFF02858d687fef02858d68 /* src/contact/GuContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD02858d687fef02858d68 /* src/contact/GuContactConvexConvex.cpp */; };
- FFFF02858dd07fef02858dd0 /* src/contact/GuContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD02858dd07fef02858dd0 /* src/contact/GuContactConvexMesh.cpp */; };
- FFFF02858e387fef02858e38 /* src/contact/GuContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD02858e387fef02858e38 /* src/contact/GuContactPlaneBox.cpp */; };
- FFFF02858ea07fef02858ea0 /* src/contact/GuContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD02858ea07fef02858ea0 /* src/contact/GuContactPlaneCapsule.cpp */; };
- FFFF02858f087fef02858f08 /* src/contact/GuContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD02858f087fef02858f08 /* src/contact/GuContactPlaneConvex.cpp */; };
- FFFF02858f707fef02858f70 /* src/contact/GuContactPolygonPolygon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD02858f707fef02858f70 /* src/contact/GuContactPolygonPolygon.cpp */; };
- FFFF02858fd87fef02858fd8 /* src/contact/GuContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD02858fd87fef02858fd8 /* src/contact/GuContactSphereBox.cpp */; };
- FFFF028590407fef02859040 /* src/contact/GuContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD028590407fef02859040 /* src/contact/GuContactSphereCapsule.cpp */; };
- FFFF028590a87fef028590a8 /* src/contact/GuContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD028590a87fef028590a8 /* src/contact/GuContactSphereMesh.cpp */; };
- FFFF028591107fef02859110 /* src/contact/GuContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD028591107fef02859110 /* src/contact/GuContactSpherePlane.cpp */; };
- FFFF028591787fef02859178 /* src/contact/GuContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD028591787fef02859178 /* src/contact/GuContactSphereSphere.cpp */; };
- FFFF028591e07fef028591e0 /* src/contact/GuFeatureCode.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD028591e07fef028591e0 /* src/contact/GuFeatureCode.cpp */; };
- FFFF028592487fef02859248 /* src/contact/GuLegacyContactBoxHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD028592487fef02859248 /* src/contact/GuLegacyContactBoxHeightField.cpp */; };
- FFFF028592b07fef028592b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD028592b07fef028592b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */; };
- FFFF028593187fef02859318 /* src/contact/GuLegacyContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD028593187fef02859318 /* src/contact/GuLegacyContactConvexHeightField.cpp */; };
- FFFF028593807fef02859380 /* src/contact/GuLegacyContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD028593807fef02859380 /* src/contact/GuLegacyContactSphereHeightField.cpp */; };
- FFFF028593e87fef028593e8 /* src/common/GuBarycentricCoordinates.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD028593e87fef028593e8 /* src/common/GuBarycentricCoordinates.cpp */; };
- FFFF028594507fef02859450 /* src/common/GuSeparatingAxes.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD028594507fef02859450 /* src/common/GuSeparatingAxes.cpp */; };
- FFFF028594b87fef028594b8 /* src/convex/GuBigConvexData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD028594b87fef028594b8 /* src/convex/GuBigConvexData.cpp */; };
- FFFF028595207fef02859520 /* src/convex/GuConvexHelper.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD028595207fef02859520 /* src/convex/GuConvexHelper.cpp */; };
- FFFF028595887fef02859588 /* src/convex/GuConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD028595887fef02859588 /* src/convex/GuConvexMesh.cpp */; };
- FFFF028595f07fef028595f0 /* src/convex/GuConvexSupportTable.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD028595f07fef028595f0 /* src/convex/GuConvexSupportTable.cpp */; };
- FFFF028596587fef02859658 /* src/convex/GuConvexUtilsInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD028596587fef02859658 /* src/convex/GuConvexUtilsInternal.cpp */; };
- FFFF028596c07fef028596c0 /* src/convex/GuHillClimbing.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD028596c07fef028596c0 /* src/convex/GuHillClimbing.cpp */; };
- FFFF028597287fef02859728 /* src/convex/GuShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD028597287fef02859728 /* src/convex/GuShapeConvex.cpp */; };
- FFFF028597907fef02859790 /* src/distance/GuDistancePointBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD028597907fef02859790 /* src/distance/GuDistancePointBox.cpp */; };
- FFFF028597f87fef028597f8 /* src/distance/GuDistancePointTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD028597f87fef028597f8 /* src/distance/GuDistancePointTriangle.cpp */; };
- FFFF028598607fef02859860 /* src/distance/GuDistanceSegmentBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD028598607fef02859860 /* src/distance/GuDistanceSegmentBox.cpp */; };
- FFFF028598c87fef028598c8 /* src/distance/GuDistanceSegmentSegment.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD028598c87fef028598c8 /* src/distance/GuDistanceSegmentSegment.cpp */; };
- FFFF028599307fef02859930 /* src/distance/GuDistanceSegmentTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD028599307fef02859930 /* src/distance/GuDistanceSegmentTriangle.cpp */; };
- FFFF028599987fef02859998 /* src/sweep/GuSweepBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD028599987fef02859998 /* src/sweep/GuSweepBoxBox.cpp */; };
- FFFF02859a007fef02859a00 /* src/sweep/GuSweepBoxSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD02859a007fef02859a00 /* src/sweep/GuSweepBoxSphere.cpp */; };
- FFFF02859a687fef02859a68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD02859a687fef02859a68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */; };
- FFFF02859ad07fef02859ad0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD02859ad07fef02859ad0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */; };
- FFFF02859b387fef02859b38 /* src/sweep/GuSweepCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD02859b387fef02859b38 /* src/sweep/GuSweepCapsuleBox.cpp */; };
- FFFF02859ba07fef02859ba0 /* src/sweep/GuSweepCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD02859ba07fef02859ba0 /* src/sweep/GuSweepCapsuleCapsule.cpp */; };
- FFFF02859c087fef02859c08 /* src/sweep/GuSweepCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD02859c087fef02859c08 /* src/sweep/GuSweepCapsuleTriangle.cpp */; };
- FFFF02859c707fef02859c70 /* src/sweep/GuSweepSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD02859c707fef02859c70 /* src/sweep/GuSweepSphereCapsule.cpp */; };
- FFFF02859cd87fef02859cd8 /* src/sweep/GuSweepSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD02859cd87fef02859cd8 /* src/sweep/GuSweepSphereSphere.cpp */; };
- FFFF02859d407fef02859d40 /* src/sweep/GuSweepSphereTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD02859d407fef02859d40 /* src/sweep/GuSweepSphereTriangle.cpp */; };
- FFFF02859da87fef02859da8 /* src/sweep/GuSweepTriangleUtils.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD02859da87fef02859da8 /* src/sweep/GuSweepTriangleUtils.cpp */; };
- FFFF02859e107fef02859e10 /* src/gjk/GuEPA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD02859e107fef02859e10 /* src/gjk/GuEPA.cpp */; };
- FFFF02859e787fef02859e78 /* src/gjk/GuGJKSimplex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD02859e787fef02859e78 /* src/gjk/GuGJKSimplex.cpp */; };
- FFFF02859ee07fef02859ee0 /* src/gjk/GuGJKTest.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD02859ee07fef02859ee0 /* src/gjk/GuGJKTest.cpp */; };
- FFFF02859f487fef02859f48 /* src/intersection/GuIntersectionBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD02859f487fef02859f48 /* src/intersection/GuIntersectionBoxBox.cpp */; };
- FFFF02859fb07fef02859fb0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD02859fb07fef02859fb0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */; };
- FFFF0285a0187fef0285a018 /* src/intersection/GuIntersectionEdgeEdge.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0285a0187fef0285a018 /* src/intersection/GuIntersectionEdgeEdge.cpp */; };
- FFFF0285a0807fef0285a080 /* src/intersection/GuIntersectionRayBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0285a0807fef0285a080 /* src/intersection/GuIntersectionRayBox.cpp */; };
- FFFF0285a0e87fef0285a0e8 /* src/intersection/GuIntersectionRayCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0285a0e87fef0285a0e8 /* src/intersection/GuIntersectionRayCapsule.cpp */; };
- FFFF0285a1507fef0285a150 /* src/intersection/GuIntersectionRaySphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0285a1507fef0285a150 /* src/intersection/GuIntersectionRaySphere.cpp */; };
- FFFF0285a1b87fef0285a1b8 /* src/intersection/GuIntersectionSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0285a1b87fef0285a1b8 /* src/intersection/GuIntersectionSphereBox.cpp */; };
- FFFF0285a2207fef0285a220 /* src/intersection/GuIntersectionTriangleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0285a2207fef0285a220 /* src/intersection/GuIntersectionTriangleBox.cpp */; };
- FFFF0285a2887fef0285a288 /* src/mesh/GuBV32.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0285a2887fef0285a288 /* src/mesh/GuBV32.cpp */; };
- FFFF0285a2f07fef0285a2f0 /* src/mesh/GuBV32Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0285a2f07fef0285a2f0 /* src/mesh/GuBV32Build.cpp */; };
- FFFF0285a3587fef0285a358 /* src/mesh/GuBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0285a3587fef0285a358 /* src/mesh/GuBV4.cpp */; };
- FFFF0285a3c07fef0285a3c0 /* src/mesh/GuBV4Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0285a3c07fef0285a3c0 /* src/mesh/GuBV4Build.cpp */; };
- FFFF0285a4287fef0285a428 /* src/mesh/GuBV4_AABBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0285a4287fef0285a428 /* src/mesh/GuBV4_AABBSweep.cpp */; };
- FFFF0285a4907fef0285a490 /* src/mesh/GuBV4_BoxOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0285a4907fef0285a490 /* src/mesh/GuBV4_BoxOverlap.cpp */; };
- FFFF0285a4f87fef0285a4f8 /* src/mesh/GuBV4_CapsuleSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0285a4f87fef0285a4f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */; };
- FFFF0285a5607fef0285a560 /* src/mesh/GuBV4_CapsuleSweepAA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0285a5607fef0285a560 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */; };
- FFFF0285a5c87fef0285a5c8 /* src/mesh/GuBV4_OBBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0285a5c87fef0285a5c8 /* src/mesh/GuBV4_OBBSweep.cpp */; };
- FFFF0285a6307fef0285a630 /* src/mesh/GuBV4_Raycast.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0285a6307fef0285a630 /* src/mesh/GuBV4_Raycast.cpp */; };
- FFFF0285a6987fef0285a698 /* src/mesh/GuBV4_SphereOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0285a6987fef0285a698 /* src/mesh/GuBV4_SphereOverlap.cpp */; };
- FFFF0285a7007fef0285a700 /* src/mesh/GuBV4_SphereSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0285a7007fef0285a700 /* src/mesh/GuBV4_SphereSweep.cpp */; };
- FFFF0285a7687fef0285a768 /* src/mesh/GuMeshQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0285a7687fef0285a768 /* src/mesh/GuMeshQuery.cpp */; };
- FFFF0285a7d07fef0285a7d0 /* src/mesh/GuMidphaseBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0285a7d07fef0285a7d0 /* src/mesh/GuMidphaseBV4.cpp */; };
- FFFF0285a8387fef0285a838 /* src/mesh/GuMidphaseRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0285a8387fef0285a838 /* src/mesh/GuMidphaseRTree.cpp */; };
- FFFF0285a8a07fef0285a8a0 /* src/mesh/GuOverlapTestsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0285a8a07fef0285a8a0 /* src/mesh/GuOverlapTestsMesh.cpp */; };
- FFFF0285a9087fef0285a908 /* src/mesh/GuRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0285a9087fef0285a908 /* src/mesh/GuRTree.cpp */; };
- FFFF0285a9707fef0285a970 /* src/mesh/GuRTreeQueries.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0285a9707fef0285a970 /* src/mesh/GuRTreeQueries.cpp */; };
- FFFF0285a9d87fef0285a9d8 /* src/mesh/GuSweepsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0285a9d87fef0285a9d8 /* src/mesh/GuSweepsMesh.cpp */; };
- FFFF0285aa407fef0285aa40 /* src/mesh/GuTriangleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0285aa407fef0285aa40 /* src/mesh/GuTriangleMesh.cpp */; };
- FFFF0285aaa87fef0285aaa8 /* src/mesh/GuTriangleMeshBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0285aaa87fef0285aaa8 /* src/mesh/GuTriangleMeshBV4.cpp */; };
- FFFF0285ab107fef0285ab10 /* src/mesh/GuTriangleMeshRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0285ab107fef0285ab10 /* src/mesh/GuTriangleMeshRTree.cpp */; };
- FFFF0285ab787fef0285ab78 /* src/hf/GuHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0285ab787fef0285ab78 /* src/hf/GuHeightField.cpp */; };
- FFFF0285abe07fef0285abe0 /* src/hf/GuHeightFieldUtil.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0285abe07fef0285abe0 /* src/hf/GuHeightFieldUtil.cpp */; };
- FFFF0285ac487fef0285ac48 /* src/hf/GuOverlapTestsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0285ac487fef0285ac48 /* src/hf/GuOverlapTestsHF.cpp */; };
- FFFF0285acb07fef0285acb0 /* src/hf/GuSweepsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0285acb07fef0285acb0 /* src/hf/GuSweepsHF.cpp */; };
- FFFF0285ad187fef0285ad18 /* src/pcm/GuPCMContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0285ad187fef0285ad18 /* src/pcm/GuPCMContactBoxBox.cpp */; };
- FFFF0285ad807fef0285ad80 /* src/pcm/GuPCMContactBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0285ad807fef0285ad80 /* src/pcm/GuPCMContactBoxConvex.cpp */; };
- FFFF0285ade87fef0285ade8 /* src/pcm/GuPCMContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0285ade87fef0285ade8 /* src/pcm/GuPCMContactCapsuleBox.cpp */; };
- FFFF0285ae507fef0285ae50 /* src/pcm/GuPCMContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0285ae507fef0285ae50 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */; };
- FFFF0285aeb87fef0285aeb8 /* src/pcm/GuPCMContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0285aeb87fef0285aeb8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */; };
- FFFF0285af207fef0285af20 /* src/pcm/GuPCMContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0285af207fef0285af20 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */; };
- FFFF0285af887fef0285af88 /* src/pcm/GuPCMContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0285af887fef0285af88 /* src/pcm/GuPCMContactCapsuleMesh.cpp */; };
- FFFF0285aff07fef0285aff0 /* src/pcm/GuPCMContactConvexCommon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0285aff07fef0285aff0 /* src/pcm/GuPCMContactConvexCommon.cpp */; };
- FFFF0285b0587fef0285b058 /* src/pcm/GuPCMContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0285b0587fef0285b058 /* src/pcm/GuPCMContactConvexConvex.cpp */; };
- FFFF0285b0c07fef0285b0c0 /* src/pcm/GuPCMContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0285b0c07fef0285b0c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */; };
- FFFF0285b1287fef0285b128 /* src/pcm/GuPCMContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0285b1287fef0285b128 /* src/pcm/GuPCMContactConvexMesh.cpp */; };
- FFFF0285b1907fef0285b190 /* src/pcm/GuPCMContactGenBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0285b1907fef0285b190 /* src/pcm/GuPCMContactGenBoxConvex.cpp */; };
- FFFF0285b1f87fef0285b1f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0285b1f87fef0285b1f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */; };
- FFFF0285b2607fef0285b260 /* src/pcm/GuPCMContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0285b2607fef0285b260 /* src/pcm/GuPCMContactPlaneBox.cpp */; };
- FFFF0285b2c87fef0285b2c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0285b2c87fef0285b2c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */; };
- FFFF0285b3307fef0285b330 /* src/pcm/GuPCMContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0285b3307fef0285b330 /* src/pcm/GuPCMContactPlaneConvex.cpp */; };
- FFFF0285b3987fef0285b398 /* src/pcm/GuPCMContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0285b3987fef0285b398 /* src/pcm/GuPCMContactSphereBox.cpp */; };
- FFFF0285b4007fef0285b400 /* src/pcm/GuPCMContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0285b4007fef0285b400 /* src/pcm/GuPCMContactSphereCapsule.cpp */; };
- FFFF0285b4687fef0285b468 /* src/pcm/GuPCMContactSphereConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0285b4687fef0285b468 /* src/pcm/GuPCMContactSphereConvex.cpp */; };
- FFFF0285b4d07fef0285b4d0 /* src/pcm/GuPCMContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0285b4d07fef0285b4d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */; };
- FFFF0285b5387fef0285b538 /* src/pcm/GuPCMContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0285b5387fef0285b538 /* src/pcm/GuPCMContactSphereMesh.cpp */; };
- FFFF0285b5a07fef0285b5a0 /* src/pcm/GuPCMContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0285b5a07fef0285b5a0 /* src/pcm/GuPCMContactSpherePlane.cpp */; };
- FFFF0285b6087fef0285b608 /* src/pcm/GuPCMContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0285b6087fef0285b608 /* src/pcm/GuPCMContactSphereSphere.cpp */; };
- FFFF0285b6707fef0285b670 /* src/pcm/GuPCMShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0285b6707fef0285b670 /* src/pcm/GuPCMShapeConvex.cpp */; };
- FFFF0285b6d87fef0285b6d8 /* src/pcm/GuPCMTriangleContactGen.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0285b6d87fef0285b6d8 /* src/pcm/GuPCMTriangleContactGen.cpp */; };
- FFFF0285b7407fef0285b740 /* src/pcm/GuPersistentContactManifold.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0285b7407fef0285b740 /* src/pcm/GuPersistentContactManifold.cpp */; };
- FFFF0285b7a87fef0285b7a8 /* src/ccd/GuCCDSweepConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0285b7a87fef0285b7a8 /* src/ccd/GuCCDSweepConvexMesh.cpp */; };
- FFFF0285b8107fef0285b810 /* src/ccd/GuCCDSweepPrimitives.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD0285b8107fef0285b810 /* src/ccd/GuCCDSweepPrimitives.cpp */; };
+ FFFFf21a3c007fb0f21a3c00 /* src/CmBoxPruning.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDf21a3c007fb0f21a3c00 /* src/CmBoxPruning.cpp */; };
+ FFFFf21a3c687fb0f21a3c68 /* src/CmCollection.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDf21a3c687fb0f21a3c68 /* src/CmCollection.cpp */; };
+ FFFFf21a3cd07fb0f21a3cd0 /* src/CmMathUtils.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDf21a3cd07fb0f21a3cd0 /* src/CmMathUtils.cpp */; };
+ FFFFf21a3d387fb0f21a3d38 /* src/CmPtrTable.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDf21a3d387fb0f21a3d38 /* src/CmPtrTable.cpp */; };
+ FFFFf21a3da07fb0f21a3da0 /* src/CmRadixSort.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDf21a3da07fb0f21a3da0 /* src/CmRadixSort.cpp */; };
+ FFFFf21a3e087fb0f21a3e08 /* src/CmRadixSortBuffered.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDf21a3e087fb0f21a3e08 /* src/CmRadixSortBuffered.cpp */; };
+ FFFFf21a3e707fb0f21a3e70 /* src/CmRenderOutput.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDf21a3e707fb0f21a3e70 /* src/CmRenderOutput.cpp */; };
+ FFFFf21a3ed87fb0f21a3ed8 /* src/CmVisualization.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDf21a3ed87fb0f21a3ed8 /* src/CmVisualization.cpp */; };
+ FFFFf30013a87fb0f30013a8 /* ../../Include/GeomUtils in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30013a87fb0f30013a8 /* ../../Include/GeomUtils */; };
+ FFFFf30048e07fb0f30048e0 /* src/GuBounds.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30048e07fb0f30048e0 /* src/GuBounds.cpp */; };
+ FFFFf30049487fb0f3004948 /* src/GuBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30049487fb0f3004948 /* src/GuBox.cpp */; };
+ FFFFf30049b07fb0f30049b0 /* src/GuCCTSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30049b07fb0f30049b0 /* src/GuCCTSweepTests.cpp */; };
+ FFFFf3004a187fb0f3004a18 /* src/GuCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf3004a187fb0f3004a18 /* src/GuCapsule.cpp */; };
+ FFFFf3004a807fb0f3004a80 /* src/GuGeometryQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf3004a807fb0f3004a80 /* src/GuGeometryQuery.cpp */; };
+ FFFFf3004ae87fb0f3004ae8 /* src/GuGeometryUnion.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf3004ae87fb0f3004ae8 /* src/GuGeometryUnion.cpp */; };
+ FFFFf3004b507fb0f3004b50 /* src/GuInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf3004b507fb0f3004b50 /* src/GuInternal.cpp */; };
+ FFFFf3004bb87fb0f3004bb8 /* src/GuMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf3004bb87fb0f3004bb8 /* src/GuMTD.cpp */; };
+ FFFFf3004c207fb0f3004c20 /* src/GuMeshFactory.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf3004c207fb0f3004c20 /* src/GuMeshFactory.cpp */; };
+ FFFFf3004c887fb0f3004c88 /* src/GuMetaData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf3004c887fb0f3004c88 /* src/GuMetaData.cpp */; };
+ FFFFf3004cf07fb0f3004cf0 /* src/GuOverlapTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf3004cf07fb0f3004cf0 /* src/GuOverlapTests.cpp */; };
+ FFFFf3004d587fb0f3004d58 /* src/GuRaycastTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf3004d587fb0f3004d58 /* src/GuRaycastTests.cpp */; };
+ FFFFf3004dc07fb0f3004dc0 /* src/GuSerialize.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf3004dc07fb0f3004dc0 /* src/GuSerialize.cpp */; };
+ FFFFf3004e287fb0f3004e28 /* src/GuSweepMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf3004e287fb0f3004e28 /* src/GuSweepMTD.cpp */; };
+ FFFFf3004e907fb0f3004e90 /* src/GuSweepSharedTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf3004e907fb0f3004e90 /* src/GuSweepSharedTests.cpp */; };
+ FFFFf3004ef87fb0f3004ef8 /* src/GuSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf3004ef87fb0f3004ef8 /* src/GuSweepTests.cpp */; };
+ FFFFf3004f607fb0f3004f60 /* src/contact/GuContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf3004f607fb0f3004f60 /* src/contact/GuContactBoxBox.cpp */; };
+ FFFFf3004fc87fb0f3004fc8 /* src/contact/GuContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf3004fc87fb0f3004fc8 /* src/contact/GuContactCapsuleBox.cpp */; };
+ FFFFf30050307fb0f3005030 /* src/contact/GuContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30050307fb0f3005030 /* src/contact/GuContactCapsuleCapsule.cpp */; };
+ FFFFf30050987fb0f3005098 /* src/contact/GuContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30050987fb0f3005098 /* src/contact/GuContactCapsuleConvex.cpp */; };
+ FFFFf30051007fb0f3005100 /* src/contact/GuContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30051007fb0f3005100 /* src/contact/GuContactCapsuleMesh.cpp */; };
+ FFFFf30051687fb0f3005168 /* src/contact/GuContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30051687fb0f3005168 /* src/contact/GuContactConvexConvex.cpp */; };
+ FFFFf30051d07fb0f30051d0 /* src/contact/GuContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30051d07fb0f30051d0 /* src/contact/GuContactConvexMesh.cpp */; };
+ FFFFf30052387fb0f3005238 /* src/contact/GuContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30052387fb0f3005238 /* src/contact/GuContactPlaneBox.cpp */; };
+ FFFFf30052a07fb0f30052a0 /* src/contact/GuContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30052a07fb0f30052a0 /* src/contact/GuContactPlaneCapsule.cpp */; };
+ FFFFf30053087fb0f3005308 /* src/contact/GuContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30053087fb0f3005308 /* src/contact/GuContactPlaneConvex.cpp */; };
+ FFFFf30053707fb0f3005370 /* src/contact/GuContactPolygonPolygon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30053707fb0f3005370 /* src/contact/GuContactPolygonPolygon.cpp */; };
+ FFFFf30053d87fb0f30053d8 /* src/contact/GuContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30053d87fb0f30053d8 /* src/contact/GuContactSphereBox.cpp */; };
+ FFFFf30054407fb0f3005440 /* src/contact/GuContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30054407fb0f3005440 /* src/contact/GuContactSphereCapsule.cpp */; };
+ FFFFf30054a87fb0f30054a8 /* src/contact/GuContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30054a87fb0f30054a8 /* src/contact/GuContactSphereMesh.cpp */; };
+ FFFFf30055107fb0f3005510 /* src/contact/GuContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30055107fb0f3005510 /* src/contact/GuContactSpherePlane.cpp */; };
+ FFFFf30055787fb0f3005578 /* src/contact/GuContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30055787fb0f3005578 /* src/contact/GuContactSphereSphere.cpp */; };
+ FFFFf30055e07fb0f30055e0 /* src/contact/GuFeatureCode.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30055e07fb0f30055e0 /* src/contact/GuFeatureCode.cpp */; };
+ FFFFf30056487fb0f3005648 /* src/contact/GuLegacyContactBoxHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30056487fb0f3005648 /* src/contact/GuLegacyContactBoxHeightField.cpp */; };
+ FFFFf30056b07fb0f30056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30056b07fb0f30056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */; };
+ FFFFf30057187fb0f3005718 /* src/contact/GuLegacyContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30057187fb0f3005718 /* src/contact/GuLegacyContactConvexHeightField.cpp */; };
+ FFFFf30057807fb0f3005780 /* src/contact/GuLegacyContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30057807fb0f3005780 /* src/contact/GuLegacyContactSphereHeightField.cpp */; };
+ FFFFf30057e87fb0f30057e8 /* src/common/GuBarycentricCoordinates.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30057e87fb0f30057e8 /* src/common/GuBarycentricCoordinates.cpp */; };
+ FFFFf30058507fb0f3005850 /* src/common/GuSeparatingAxes.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30058507fb0f3005850 /* src/common/GuSeparatingAxes.cpp */; };
+ FFFFf30058b87fb0f30058b8 /* src/convex/GuBigConvexData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30058b87fb0f30058b8 /* src/convex/GuBigConvexData.cpp */; };
+ FFFFf30059207fb0f3005920 /* src/convex/GuConvexHelper.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30059207fb0f3005920 /* src/convex/GuConvexHelper.cpp */; };
+ FFFFf30059887fb0f3005988 /* src/convex/GuConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30059887fb0f3005988 /* src/convex/GuConvexMesh.cpp */; };
+ FFFFf30059f07fb0f30059f0 /* src/convex/GuConvexSupportTable.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30059f07fb0f30059f0 /* src/convex/GuConvexSupportTable.cpp */; };
+ FFFFf3005a587fb0f3005a58 /* src/convex/GuConvexUtilsInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf3005a587fb0f3005a58 /* src/convex/GuConvexUtilsInternal.cpp */; };
+ FFFFf3005ac07fb0f3005ac0 /* src/convex/GuHillClimbing.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf3005ac07fb0f3005ac0 /* src/convex/GuHillClimbing.cpp */; };
+ FFFFf3005b287fb0f3005b28 /* src/convex/GuShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf3005b287fb0f3005b28 /* src/convex/GuShapeConvex.cpp */; };
+ FFFFf3005b907fb0f3005b90 /* src/distance/GuDistancePointBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf3005b907fb0f3005b90 /* src/distance/GuDistancePointBox.cpp */; };
+ FFFFf3005bf87fb0f3005bf8 /* src/distance/GuDistancePointTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf3005bf87fb0f3005bf8 /* src/distance/GuDistancePointTriangle.cpp */; };
+ FFFFf3005c607fb0f3005c60 /* src/distance/GuDistanceSegmentBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf3005c607fb0f3005c60 /* src/distance/GuDistanceSegmentBox.cpp */; };
+ FFFFf3005cc87fb0f3005cc8 /* src/distance/GuDistanceSegmentSegment.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf3005cc87fb0f3005cc8 /* src/distance/GuDistanceSegmentSegment.cpp */; };
+ FFFFf3005d307fb0f3005d30 /* src/distance/GuDistanceSegmentTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf3005d307fb0f3005d30 /* src/distance/GuDistanceSegmentTriangle.cpp */; };
+ FFFFf3005d987fb0f3005d98 /* src/sweep/GuSweepBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf3005d987fb0f3005d98 /* src/sweep/GuSweepBoxBox.cpp */; };
+ FFFFf3005e007fb0f3005e00 /* src/sweep/GuSweepBoxSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf3005e007fb0f3005e00 /* src/sweep/GuSweepBoxSphere.cpp */; };
+ FFFFf3005e687fb0f3005e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf3005e687fb0f3005e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */; };
+ FFFFf3005ed07fb0f3005ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf3005ed07fb0f3005ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */; };
+ FFFFf3005f387fb0f3005f38 /* src/sweep/GuSweepCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf3005f387fb0f3005f38 /* src/sweep/GuSweepCapsuleBox.cpp */; };
+ FFFFf3005fa07fb0f3005fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf3005fa07fb0f3005fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */; };
+ FFFFf30060087fb0f3006008 /* src/sweep/GuSweepCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30060087fb0f3006008 /* src/sweep/GuSweepCapsuleTriangle.cpp */; };
+ FFFFf30060707fb0f3006070 /* src/sweep/GuSweepSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30060707fb0f3006070 /* src/sweep/GuSweepSphereCapsule.cpp */; };
+ FFFFf30060d87fb0f30060d8 /* src/sweep/GuSweepSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30060d87fb0f30060d8 /* src/sweep/GuSweepSphereSphere.cpp */; };
+ FFFFf30061407fb0f3006140 /* src/sweep/GuSweepSphereTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30061407fb0f3006140 /* src/sweep/GuSweepSphereTriangle.cpp */; };
+ FFFFf30061a87fb0f30061a8 /* src/sweep/GuSweepTriangleUtils.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30061a87fb0f30061a8 /* src/sweep/GuSweepTriangleUtils.cpp */; };
+ FFFFf30062107fb0f3006210 /* src/gjk/GuEPA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30062107fb0f3006210 /* src/gjk/GuEPA.cpp */; };
+ FFFFf30062787fb0f3006278 /* src/gjk/GuGJKSimplex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30062787fb0f3006278 /* src/gjk/GuGJKSimplex.cpp */; };
+ FFFFf30062e07fb0f30062e0 /* src/gjk/GuGJKTest.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30062e07fb0f30062e0 /* src/gjk/GuGJKTest.cpp */; };
+ FFFFf30063487fb0f3006348 /* src/intersection/GuIntersectionBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30063487fb0f3006348 /* src/intersection/GuIntersectionBoxBox.cpp */; };
+ FFFFf30063b07fb0f30063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30063b07fb0f30063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */; };
+ FFFFf30064187fb0f3006418 /* src/intersection/GuIntersectionEdgeEdge.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30064187fb0f3006418 /* src/intersection/GuIntersectionEdgeEdge.cpp */; };
+ FFFFf30064807fb0f3006480 /* src/intersection/GuIntersectionRayBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30064807fb0f3006480 /* src/intersection/GuIntersectionRayBox.cpp */; };
+ FFFFf30064e87fb0f30064e8 /* src/intersection/GuIntersectionRayCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30064e87fb0f30064e8 /* src/intersection/GuIntersectionRayCapsule.cpp */; };
+ FFFFf30065507fb0f3006550 /* src/intersection/GuIntersectionRaySphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30065507fb0f3006550 /* src/intersection/GuIntersectionRaySphere.cpp */; };
+ FFFFf30065b87fb0f30065b8 /* src/intersection/GuIntersectionSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30065b87fb0f30065b8 /* src/intersection/GuIntersectionSphereBox.cpp */; };
+ FFFFf30066207fb0f3006620 /* src/intersection/GuIntersectionTriangleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30066207fb0f3006620 /* src/intersection/GuIntersectionTriangleBox.cpp */; };
+ FFFFf30066887fb0f3006688 /* src/mesh/GuBV32.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30066887fb0f3006688 /* src/mesh/GuBV32.cpp */; };
+ FFFFf30066f07fb0f30066f0 /* src/mesh/GuBV32Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30066f07fb0f30066f0 /* src/mesh/GuBV32Build.cpp */; };
+ FFFFf30067587fb0f3006758 /* src/mesh/GuBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30067587fb0f3006758 /* src/mesh/GuBV4.cpp */; };
+ FFFFf30067c07fb0f30067c0 /* src/mesh/GuBV4Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30067c07fb0f30067c0 /* src/mesh/GuBV4Build.cpp */; };
+ FFFFf30068287fb0f3006828 /* src/mesh/GuBV4_AABBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30068287fb0f3006828 /* src/mesh/GuBV4_AABBSweep.cpp */; };
+ FFFFf30068907fb0f3006890 /* src/mesh/GuBV4_BoxOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30068907fb0f3006890 /* src/mesh/GuBV4_BoxOverlap.cpp */; };
+ FFFFf30068f87fb0f30068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30068f87fb0f30068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */; };
+ FFFFf30069607fb0f3006960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30069607fb0f3006960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */; };
+ FFFFf30069c87fb0f30069c8 /* src/mesh/GuBV4_OBBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30069c87fb0f30069c8 /* src/mesh/GuBV4_OBBSweep.cpp */; };
+ FFFFf3006a307fb0f3006a30 /* src/mesh/GuBV4_Raycast.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf3006a307fb0f3006a30 /* src/mesh/GuBV4_Raycast.cpp */; };
+ FFFFf3006a987fb0f3006a98 /* src/mesh/GuBV4_SphereOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf3006a987fb0f3006a98 /* src/mesh/GuBV4_SphereOverlap.cpp */; };
+ FFFFf3006b007fb0f3006b00 /* src/mesh/GuBV4_SphereSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf3006b007fb0f3006b00 /* src/mesh/GuBV4_SphereSweep.cpp */; };
+ FFFFf3006b687fb0f3006b68 /* src/mesh/GuMeshQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf3006b687fb0f3006b68 /* src/mesh/GuMeshQuery.cpp */; };
+ FFFFf3006bd07fb0f3006bd0 /* src/mesh/GuMidphaseBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf3006bd07fb0f3006bd0 /* src/mesh/GuMidphaseBV4.cpp */; };
+ FFFFf3006c387fb0f3006c38 /* src/mesh/GuMidphaseRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf3006c387fb0f3006c38 /* src/mesh/GuMidphaseRTree.cpp */; };
+ FFFFf3006ca07fb0f3006ca0 /* src/mesh/GuOverlapTestsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf3006ca07fb0f3006ca0 /* src/mesh/GuOverlapTestsMesh.cpp */; };
+ FFFFf3006d087fb0f3006d08 /* src/mesh/GuRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf3006d087fb0f3006d08 /* src/mesh/GuRTree.cpp */; };
+ FFFFf3006d707fb0f3006d70 /* src/mesh/GuRTreeQueries.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf3006d707fb0f3006d70 /* src/mesh/GuRTreeQueries.cpp */; };
+ FFFFf3006dd87fb0f3006dd8 /* src/mesh/GuSweepsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf3006dd87fb0f3006dd8 /* src/mesh/GuSweepsMesh.cpp */; };
+ FFFFf3006e407fb0f3006e40 /* src/mesh/GuTriangleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf3006e407fb0f3006e40 /* src/mesh/GuTriangleMesh.cpp */; };
+ FFFFf3006ea87fb0f3006ea8 /* src/mesh/GuTriangleMeshBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf3006ea87fb0f3006ea8 /* src/mesh/GuTriangleMeshBV4.cpp */; };
+ FFFFf3006f107fb0f3006f10 /* src/mesh/GuTriangleMeshRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf3006f107fb0f3006f10 /* src/mesh/GuTriangleMeshRTree.cpp */; };
+ FFFFf3006f787fb0f3006f78 /* src/hf/GuHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf3006f787fb0f3006f78 /* src/hf/GuHeightField.cpp */; };
+ FFFFf3006fe07fb0f3006fe0 /* src/hf/GuHeightFieldUtil.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf3006fe07fb0f3006fe0 /* src/hf/GuHeightFieldUtil.cpp */; };
+ FFFFf30070487fb0f3007048 /* src/hf/GuOverlapTestsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30070487fb0f3007048 /* src/hf/GuOverlapTestsHF.cpp */; };
+ FFFFf30070b07fb0f30070b0 /* src/hf/GuSweepsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30070b07fb0f30070b0 /* src/hf/GuSweepsHF.cpp */; };
+ FFFFf30071187fb0f3007118 /* src/pcm/GuPCMContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30071187fb0f3007118 /* src/pcm/GuPCMContactBoxBox.cpp */; };
+ FFFFf30071807fb0f3007180 /* src/pcm/GuPCMContactBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30071807fb0f3007180 /* src/pcm/GuPCMContactBoxConvex.cpp */; };
+ FFFFf30071e87fb0f30071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30071e87fb0f30071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */; };
+ FFFFf30072507fb0f3007250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30072507fb0f3007250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */; };
+ FFFFf30072b87fb0f30072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30072b87fb0f30072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */; };
+ FFFFf30073207fb0f3007320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30073207fb0f3007320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */; };
+ FFFFf30073887fb0f3007388 /* src/pcm/GuPCMContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30073887fb0f3007388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */; };
+ FFFFf30073f07fb0f30073f0 /* src/pcm/GuPCMContactConvexCommon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30073f07fb0f30073f0 /* src/pcm/GuPCMContactConvexCommon.cpp */; };
+ FFFFf30074587fb0f3007458 /* src/pcm/GuPCMContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30074587fb0f3007458 /* src/pcm/GuPCMContactConvexConvex.cpp */; };
+ FFFFf30074c07fb0f30074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30074c07fb0f30074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */; };
+ FFFFf30075287fb0f3007528 /* src/pcm/GuPCMContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30075287fb0f3007528 /* src/pcm/GuPCMContactConvexMesh.cpp */; };
+ FFFFf30075907fb0f3007590 /* src/pcm/GuPCMContactGenBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30075907fb0f3007590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */; };
+ FFFFf30075f87fb0f30075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30075f87fb0f30075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */; };
+ FFFFf30076607fb0f3007660 /* src/pcm/GuPCMContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30076607fb0f3007660 /* src/pcm/GuPCMContactPlaneBox.cpp */; };
+ FFFFf30076c87fb0f30076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30076c87fb0f30076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */; };
+ FFFFf30077307fb0f3007730 /* src/pcm/GuPCMContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30077307fb0f3007730 /* src/pcm/GuPCMContactPlaneConvex.cpp */; };
+ FFFFf30077987fb0f3007798 /* src/pcm/GuPCMContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30077987fb0f3007798 /* src/pcm/GuPCMContactSphereBox.cpp */; };
+ FFFFf30078007fb0f3007800 /* src/pcm/GuPCMContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30078007fb0f3007800 /* src/pcm/GuPCMContactSphereCapsule.cpp */; };
+ FFFFf30078687fb0f3007868 /* src/pcm/GuPCMContactSphereConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30078687fb0f3007868 /* src/pcm/GuPCMContactSphereConvex.cpp */; };
+ FFFFf30078d07fb0f30078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30078d07fb0f30078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */; };
+ FFFFf30079387fb0f3007938 /* src/pcm/GuPCMContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30079387fb0f3007938 /* src/pcm/GuPCMContactSphereMesh.cpp */; };
+ FFFFf30079a07fb0f30079a0 /* src/pcm/GuPCMContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf30079a07fb0f30079a0 /* src/pcm/GuPCMContactSpherePlane.cpp */; };
+ FFFFf3007a087fb0f3007a08 /* src/pcm/GuPCMContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf3007a087fb0f3007a08 /* src/pcm/GuPCMContactSphereSphere.cpp */; };
+ FFFFf3007a707fb0f3007a70 /* src/pcm/GuPCMShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf3007a707fb0f3007a70 /* src/pcm/GuPCMShapeConvex.cpp */; };
+ FFFFf3007ad87fb0f3007ad8 /* src/pcm/GuPCMTriangleContactGen.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf3007ad87fb0f3007ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */; };
+ FFFFf3007b407fb0f3007b40 /* src/pcm/GuPersistentContactManifold.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf3007b407fb0f3007b40 /* src/pcm/GuPersistentContactManifold.cpp */; };
+ FFFFf3007ba87fb0f3007ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf3007ba87fb0f3007ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */; };
+ FFFFf3007c107fb0f3007c10 /* src/ccd/GuCCDSweepPrimitives.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDf3007c107fb0f3007c10 /* src/ccd/GuCCDSweepPrimitives.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFD0314a5307fef0314a530 /* PhysXCommon */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCommon"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFD0284fa007fef0284fa00 /* common/PxBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxBase.h"; path = "../../../Include/common/PxBase.h"; sourceTree = SOURCE_ROOT; };
- FFFD0284fa687fef0284fa68 /* common/PxCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCollection.h"; path = "../../../Include/common/PxCollection.h"; sourceTree = SOURCE_ROOT; };
- FFFD0284fad07fef0284fad0 /* common/PxCoreUtilityTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCoreUtilityTypes.h"; path = "../../../Include/common/PxCoreUtilityTypes.h"; sourceTree = SOURCE_ROOT; };
- FFFD0284fb387fef0284fb38 /* common/PxMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaData.h"; path = "../../../Include/common/PxMetaData.h"; sourceTree = SOURCE_ROOT; };
- FFFD0284fba07fef0284fba0 /* common/PxMetaDataFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaDataFlags.h"; path = "../../../Include/common/PxMetaDataFlags.h"; sourceTree = SOURCE_ROOT; };
- FFFD0284fc087fef0284fc08 /* common/PxPhysXCommonConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysXCommonConfig.h"; path = "../../../Include/common/PxPhysXCommonConfig.h"; sourceTree = SOURCE_ROOT; };
- FFFD0284fc707fef0284fc70 /* common/PxPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysicsInsertionCallback.h"; path = "../../../Include/common/PxPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; };
- FFFD0284fcd87fef0284fcd8 /* common/PxRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxRenderBuffer.h"; path = "../../../Include/common/PxRenderBuffer.h"; sourceTree = SOURCE_ROOT; };
- FFFD0284fd407fef0284fd40 /* common/PxSerialFramework.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerialFramework.h"; path = "../../../Include/common/PxSerialFramework.h"; sourceTree = SOURCE_ROOT; };
- FFFD0284fda87fef0284fda8 /* common/PxSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerializer.h"; path = "../../../Include/common/PxSerializer.h"; sourceTree = SOURCE_ROOT; };
- FFFD0284fe107fef0284fe10 /* common/PxStringTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxStringTable.h"; path = "../../../Include/common/PxStringTable.h"; sourceTree = SOURCE_ROOT; };
- FFFD0284fe787fef0284fe78 /* common/PxTolerancesScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTolerancesScale.h"; path = "../../../Include/common/PxTolerancesScale.h"; sourceTree = SOURCE_ROOT; };
- FFFD0284fee07fef0284fee0 /* common/PxTypeInfo.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTypeInfo.h"; path = "../../../Include/common/PxTypeInfo.h"; sourceTree = SOURCE_ROOT; };
- FFFD0284ff487fef0284ff48 /* geometry/PxBoxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxBoxGeometry.h"; path = "../../../Include/geometry/PxBoxGeometry.h"; sourceTree = SOURCE_ROOT; };
- FFFD0284ffb07fef0284ffb0 /* geometry/PxCapsuleGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxCapsuleGeometry.h"; path = "../../../Include/geometry/PxCapsuleGeometry.h"; sourceTree = SOURCE_ROOT; };
- FFFD028500187fef02850018 /* geometry/PxConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMesh.h"; path = "../../../Include/geometry/PxConvexMesh.h"; sourceTree = SOURCE_ROOT; };
- FFFD028500807fef02850080 /* geometry/PxConvexMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMeshGeometry.h"; path = "../../../Include/geometry/PxConvexMeshGeometry.h"; sourceTree = SOURCE_ROOT; };
- FFFD028500e87fef028500e8 /* geometry/PxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometry.h"; path = "../../../Include/geometry/PxGeometry.h"; sourceTree = SOURCE_ROOT; };
- FFFD028501507fef02850150 /* geometry/PxGeometryHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryHelpers.h"; path = "../../../Include/geometry/PxGeometryHelpers.h"; sourceTree = SOURCE_ROOT; };
- FFFD028501b87fef028501b8 /* geometry/PxGeometryQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryQuery.h"; path = "../../../Include/geometry/PxGeometryQuery.h"; sourceTree = SOURCE_ROOT; };
- FFFD028502207fef02850220 /* geometry/PxHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightField.h"; path = "../../../Include/geometry/PxHeightField.h"; sourceTree = SOURCE_ROOT; };
- FFFD028502887fef02850288 /* geometry/PxHeightFieldDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldDesc.h"; path = "../../../Include/geometry/PxHeightFieldDesc.h"; sourceTree = SOURCE_ROOT; };
- FFFD028502f07fef028502f0 /* geometry/PxHeightFieldFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldFlag.h"; path = "../../../Include/geometry/PxHeightFieldFlag.h"; sourceTree = SOURCE_ROOT; };
- FFFD028503587fef02850358 /* geometry/PxHeightFieldGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldGeometry.h"; path = "../../../Include/geometry/PxHeightFieldGeometry.h"; sourceTree = SOURCE_ROOT; };
- FFFD028503c07fef028503c0 /* geometry/PxHeightFieldSample.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldSample.h"; path = "../../../Include/geometry/PxHeightFieldSample.h"; sourceTree = SOURCE_ROOT; };
- FFFD028504287fef02850428 /* geometry/PxMeshQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshQuery.h"; path = "../../../Include/geometry/PxMeshQuery.h"; sourceTree = SOURCE_ROOT; };
- FFFD028504907fef02850490 /* geometry/PxMeshScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshScale.h"; path = "../../../Include/geometry/PxMeshScale.h"; sourceTree = SOURCE_ROOT; };
- FFFD028504f87fef028504f8 /* geometry/PxPlaneGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxPlaneGeometry.h"; path = "../../../Include/geometry/PxPlaneGeometry.h"; sourceTree = SOURCE_ROOT; };
- FFFD028505607fef02850560 /* geometry/PxSimpleTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSimpleTriangleMesh.h"; path = "../../../Include/geometry/PxSimpleTriangleMesh.h"; sourceTree = SOURCE_ROOT; };
- FFFD028505c87fef028505c8 /* geometry/PxSphereGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSphereGeometry.h"; path = "../../../Include/geometry/PxSphereGeometry.h"; sourceTree = SOURCE_ROOT; };
- FFFD028506307fef02850630 /* geometry/PxTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangle.h"; path = "../../../Include/geometry/PxTriangle.h"; sourceTree = SOURCE_ROOT; };
- FFFD028506987fef02850698 /* geometry/PxTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMesh.h"; path = "../../../Include/geometry/PxTriangleMesh.h"; sourceTree = SOURCE_ROOT; };
- FFFD028507007fef02850700 /* geometry/PxTriangleMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMeshGeometry.h"; path = "../../../Include/geometry/PxTriangleMeshGeometry.h"; sourceTree = SOURCE_ROOT; };
- FFFD039562007fef03956200 /* src/CmBoxPruning.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.cpp"; path = "../../Common/src/CmBoxPruning.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD039562687fef03956268 /* src/CmCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.cpp"; path = "../../Common/src/CmCollection.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD039562d07fef039562d0 /* src/CmMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMathUtils.cpp"; path = "../../Common/src/CmMathUtils.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD039563387fef03956338 /* src/CmPtrTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.cpp"; path = "../../Common/src/CmPtrTable.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD039563a07fef039563a0 /* src/CmRadixSort.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.cpp"; path = "../../Common/src/CmRadixSort.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD039564087fef03956408 /* src/CmRadixSortBuffered.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.cpp"; path = "../../Common/src/CmRadixSortBuffered.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD039564707fef03956470 /* src/CmRenderOutput.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.cpp"; path = "../../Common/src/CmRenderOutput.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD039564d87fef039564d8 /* src/CmVisualization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.cpp"; path = "../../Common/src/CmVisualization.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD039565407fef03956540 /* src/CmBitMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBitMap.h"; path = "../../Common/src/CmBitMap.h"; sourceTree = SOURCE_ROOT; };
- FFFD039565a87fef039565a8 /* src/CmBoxPruning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.h"; path = "../../Common/src/CmBoxPruning.h"; sourceTree = SOURCE_ROOT; };
- FFFD039566107fef03956610 /* src/CmCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.h"; path = "../../Common/src/CmCollection.h"; sourceTree = SOURCE_ROOT; };
- FFFD039566787fef03956678 /* src/CmConeLimitHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmConeLimitHelper.h"; path = "../../Common/src/CmConeLimitHelper.h"; sourceTree = SOURCE_ROOT; };
- FFFD039566e07fef039566e0 /* src/CmFlushPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmFlushPool.h"; path = "../../Common/src/CmFlushPool.h"; sourceTree = SOURCE_ROOT; };
- FFFD039567487fef03956748 /* src/CmIDPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIDPool.h"; path = "../../Common/src/CmIDPool.h"; sourceTree = SOURCE_ROOT; };
- FFFD039567b07fef039567b0 /* src/CmIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIO.h"; path = "../../Common/src/CmIO.h"; sourceTree = SOURCE_ROOT; };
- FFFD039568187fef03956818 /* src/CmMatrix34.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMatrix34.h"; path = "../../Common/src/CmMatrix34.h"; sourceTree = SOURCE_ROOT; };
- FFFD039568807fef03956880 /* src/CmPhysXCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPhysXCommon.h"; path = "../../Common/src/CmPhysXCommon.h"; sourceTree = SOURCE_ROOT; };
- FFFD039568e87fef039568e8 /* src/CmPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPool.h"; path = "../../Common/src/CmPool.h"; sourceTree = SOURCE_ROOT; };
- FFFD039569507fef03956950 /* src/CmPreallocatingPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPreallocatingPool.h"; path = "../../Common/src/CmPreallocatingPool.h"; sourceTree = SOURCE_ROOT; };
- FFFD039569b87fef039569b8 /* src/CmPriorityQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPriorityQueue.h"; path = "../../Common/src/CmPriorityQueue.h"; sourceTree = SOURCE_ROOT; };
- FFFD03956a207fef03956a20 /* src/CmPtrTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.h"; path = "../../Common/src/CmPtrTable.h"; sourceTree = SOURCE_ROOT; };
- FFFD03956a887fef03956a88 /* src/CmQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmQueue.h"; path = "../../Common/src/CmQueue.h"; sourceTree = SOURCE_ROOT; };
- FFFD03956af07fef03956af0 /* src/CmRadixSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.h"; path = "../../Common/src/CmRadixSort.h"; sourceTree = SOURCE_ROOT; };
- FFFD03956b587fef03956b58 /* src/CmRadixSortBuffered.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.h"; path = "../../Common/src/CmRadixSortBuffered.h"; sourceTree = SOURCE_ROOT; };
- FFFD03956bc07fef03956bc0 /* src/CmRefCountable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRefCountable.h"; path = "../../Common/src/CmRefCountable.h"; sourceTree = SOURCE_ROOT; };
- FFFD03956c287fef03956c28 /* src/CmRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderBuffer.h"; path = "../../Common/src/CmRenderBuffer.h"; sourceTree = SOURCE_ROOT; };
- FFFD03956c907fef03956c90 /* src/CmRenderOutput.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.h"; path = "../../Common/src/CmRenderOutput.h"; sourceTree = SOURCE_ROOT; };
- FFFD03956cf87fef03956cf8 /* src/CmScaling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmScaling.h"; path = "../../Common/src/CmScaling.h"; sourceTree = SOURCE_ROOT; };
- FFFD03956d607fef03956d60 /* src/CmSpatialVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmSpatialVector.h"; path = "../../Common/src/CmSpatialVector.h"; sourceTree = SOURCE_ROOT; };
- FFFD03956dc87fef03956dc8 /* src/CmTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTask.h"; path = "../../Common/src/CmTask.h"; sourceTree = SOURCE_ROOT; };
- FFFD03956e307fef03956e30 /* src/CmTaskPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTaskPool.h"; path = "../../Common/src/CmTaskPool.h"; sourceTree = SOURCE_ROOT; };
- FFFD03956e987fef03956e98 /* src/CmTmpMem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTmpMem.h"; path = "../../Common/src/CmTmpMem.h"; sourceTree = SOURCE_ROOT; };
- FFFD03956f007fef03956f00 /* src/CmTransformUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTransformUtils.h"; path = "../../Common/src/CmTransformUtils.h"; sourceTree = SOURCE_ROOT; };
- FFFD03956f687fef03956f68 /* src/CmUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmUtils.h"; path = "../../Common/src/CmUtils.h"; sourceTree = SOURCE_ROOT; };
- FFFD03956fd07fef03956fd0 /* src/CmVisualization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.h"; path = "../../Common/src/CmVisualization.h"; sourceTree = SOURCE_ROOT; };
- FFFD02854c007fef02854c00 /* headers/GuAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuAxes.h"; path = "../../GeomUtils/headers/GuAxes.h"; sourceTree = SOURCE_ROOT; };
- FFFD02854c687fef02854c68 /* headers/GuBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuBox.h"; path = "../../GeomUtils/headers/GuBox.h"; sourceTree = SOURCE_ROOT; };
- FFFD02854cd07fef02854cd0 /* headers/GuDistanceSegmentBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentBox.h"; path = "../../GeomUtils/headers/GuDistanceSegmentBox.h"; sourceTree = SOURCE_ROOT; };
- FFFD02854d387fef02854d38 /* headers/GuDistanceSegmentSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentSegment.h"; path = "../../GeomUtils/headers/GuDistanceSegmentSegment.h"; sourceTree = SOURCE_ROOT; };
- FFFD02854da07fef02854da0 /* headers/GuIntersectionBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionBoxBox.h"; path = "../../GeomUtils/headers/GuIntersectionBoxBox.h"; sourceTree = SOURCE_ROOT; };
- FFFD02854e087fef02854e08 /* headers/GuIntersectionTriangleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionTriangleBox.h"; path = "../../GeomUtils/headers/GuIntersectionTriangleBox.h"; sourceTree = SOURCE_ROOT; };
- FFFD02854e707fef02854e70 /* headers/GuRaycastTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuRaycastTests.h"; path = "../../GeomUtils/headers/GuRaycastTests.h"; sourceTree = SOURCE_ROOT; };
- FFFD02854ed87fef02854ed8 /* headers/GuSIMDHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSIMDHelpers.h"; path = "../../GeomUtils/headers/GuSIMDHelpers.h"; sourceTree = SOURCE_ROOT; };
- FFFD02854f407fef02854f40 /* headers/GuSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSegment.h"; path = "../../GeomUtils/headers/GuSegment.h"; sourceTree = SOURCE_ROOT; };
- FFFD02854fa87fef02854fa8 /* ../../Include/GeomUtils */= { isa = PBXFileReference; fileEncoding = 4; name = "../../Include/GeomUtils"; path = "../../../Include/GeomUtils"; sourceTree = SOURCE_ROOT; };
- FFFD028550107fef02855010 /* src/GuBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.h"; path = "../../GeomUtils/src/GuBounds.h"; sourceTree = SOURCE_ROOT; };
- FFFD028550787fef02855078 /* src/GuCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.h"; path = "../../GeomUtils/src/GuCapsule.h"; sourceTree = SOURCE_ROOT; };
- FFFD028550e07fef028550e0 /* src/GuCenterExtents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCenterExtents.h"; path = "../../GeomUtils/src/GuCenterExtents.h"; sourceTree = SOURCE_ROOT; };
- FFFD028551487fef02855148 /* src/GuGeometryUnion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.h"; path = "../../GeomUtils/src/GuGeometryUnion.h"; sourceTree = SOURCE_ROOT; };
- FFFD028551b07fef028551b0 /* src/GuInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.h"; path = "../../GeomUtils/src/GuInternal.h"; sourceTree = SOURCE_ROOT; };
- FFFD028552187fef02855218 /* src/GuMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.h"; path = "../../GeomUtils/src/GuMTD.h"; sourceTree = SOURCE_ROOT; };
- FFFD028552807fef02855280 /* src/GuMeshFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.h"; path = "../../GeomUtils/src/GuMeshFactory.h"; sourceTree = SOURCE_ROOT; };
- FFFD028552e87fef028552e8 /* src/GuOverlapTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.h"; path = "../../GeomUtils/src/GuOverlapTests.h"; sourceTree = SOURCE_ROOT; };
- FFFD028553507fef02855350 /* src/GuSerialize.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.h"; path = "../../GeomUtils/src/GuSerialize.h"; sourceTree = SOURCE_ROOT; };
- FFFD028553b87fef028553b8 /* src/GuSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSphere.h"; path = "../../GeomUtils/src/GuSphere.h"; sourceTree = SOURCE_ROOT; };
- FFFD028554207fef02855420 /* src/GuSweepMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.h"; path = "../../GeomUtils/src/GuSweepMTD.h"; sourceTree = SOURCE_ROOT; };
- FFFD028554887fef02855488 /* src/GuSweepSharedTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.h"; path = "../../GeomUtils/src/GuSweepSharedTests.h"; sourceTree = SOURCE_ROOT; };
- FFFD028554f07fef028554f0 /* src/GuSweepTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.h"; path = "../../GeomUtils/src/GuSweepTests.h"; sourceTree = SOURCE_ROOT; };
- FFFD028555587fef02855558 /* src/contact/GuContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactMethodImpl.h"; path = "../../GeomUtils/src/contact/GuContactMethodImpl.h"; sourceTree = SOURCE_ROOT; };
- FFFD028555c07fef028555c0 /* src/contact/GuContactPolygonPolygon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.h"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.h"; sourceTree = SOURCE_ROOT; };
- FFFD028556287fef02855628 /* src/contact/GuFeatureCode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.h"; path = "../../GeomUtils/src/contact/GuFeatureCode.h"; sourceTree = SOURCE_ROOT; };
- FFFD028556907fef02855690 /* src/contact/GuLegacyTraceLineCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyTraceLineCallback.h"; path = "../../GeomUtils/src/contact/GuLegacyTraceLineCallback.h"; sourceTree = SOURCE_ROOT; };
- FFFD028556f87fef028556f8 /* src/common/GuBarycentricCoordinates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.h"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.h"; sourceTree = SOURCE_ROOT; };
- FFFD028557607fef02855760 /* src/common/GuBoxConversion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBoxConversion.h"; path = "../../GeomUtils/src/common/GuBoxConversion.h"; sourceTree = SOURCE_ROOT; };
- FFFD028557c87fef028557c8 /* src/common/GuEdgeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeCache.h"; path = "../../GeomUtils/src/common/GuEdgeCache.h"; sourceTree = SOURCE_ROOT; };
- FFFD028558307fef02855830 /* src/common/GuEdgeListData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeListData.h"; path = "../../GeomUtils/src/common/GuEdgeListData.h"; sourceTree = SOURCE_ROOT; };
- FFFD028558987fef02855898 /* src/common/GuSeparatingAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.h"; path = "../../GeomUtils/src/common/GuSeparatingAxes.h"; sourceTree = SOURCE_ROOT; };
- FFFD028559007fef02855900 /* src/convex/GuBigConvexData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.h"; path = "../../GeomUtils/src/convex/GuBigConvexData.h"; sourceTree = SOURCE_ROOT; };
- FFFD028559687fef02855968 /* src/convex/GuBigConvexData2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData2.h"; path = "../../GeomUtils/src/convex/GuBigConvexData2.h"; sourceTree = SOURCE_ROOT; };
- FFFD028559d07fef028559d0 /* src/convex/GuConvexEdgeFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexEdgeFlags.h"; path = "../../GeomUtils/src/convex/GuConvexEdgeFlags.h"; sourceTree = SOURCE_ROOT; };
- FFFD02855a387fef02855a38 /* src/convex/GuConvexHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.h"; path = "../../GeomUtils/src/convex/GuConvexHelper.h"; sourceTree = SOURCE_ROOT; };
- FFFD02855aa07fef02855aa0 /* src/convex/GuConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.h"; path = "../../GeomUtils/src/convex/GuConvexMesh.h"; sourceTree = SOURCE_ROOT; };
- FFFD02855b087fef02855b08 /* src/convex/GuConvexMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMeshData.h"; path = "../../GeomUtils/src/convex/GuConvexMeshData.h"; sourceTree = SOURCE_ROOT; };
- FFFD02855b707fef02855b70 /* src/convex/GuConvexSupportTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.h"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.h"; sourceTree = SOURCE_ROOT; };
- FFFD02855bd87fef02855bd8 /* src/convex/GuConvexUtilsInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.h"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.h"; sourceTree = SOURCE_ROOT; };
- FFFD02855c407fef02855c40 /* src/convex/GuCubeIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuCubeIndex.h"; path = "../../GeomUtils/src/convex/GuCubeIndex.h"; sourceTree = SOURCE_ROOT; };
- FFFD02855ca87fef02855ca8 /* src/convex/GuHillClimbing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.h"; path = "../../GeomUtils/src/convex/GuHillClimbing.h"; sourceTree = SOURCE_ROOT; };
- FFFD02855d107fef02855d10 /* src/convex/GuShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.h"; path = "../../GeomUtils/src/convex/GuShapeConvex.h"; sourceTree = SOURCE_ROOT; };
- FFFD02855d787fef02855d78 /* src/distance/GuDistancePointBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.h"; path = "../../GeomUtils/src/distance/GuDistancePointBox.h"; sourceTree = SOURCE_ROOT; };
- FFFD02855de07fef02855de0 /* src/distance/GuDistancePointSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointSegment.h"; path = "../../GeomUtils/src/distance/GuDistancePointSegment.h"; sourceTree = SOURCE_ROOT; };
- FFFD02855e487fef02855e48 /* src/distance/GuDistancePointTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.h"; sourceTree = SOURCE_ROOT; };
- FFFD02855eb07fef02855eb0 /* src/distance/GuDistancePointTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangleSIMD.h"; sourceTree = SOURCE_ROOT; };
- FFFD02855f187fef02855f18 /* src/distance/GuDistanceSegmentSegmentSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegmentSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegmentSIMD.h"; sourceTree = SOURCE_ROOT; };
- FFFD02855f807fef02855f80 /* src/distance/GuDistanceSegmentTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.h"; sourceTree = SOURCE_ROOT; };
- FFFD02855fe87fef02855fe8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangleSIMD.h"; sourceTree = SOURCE_ROOT; };
- FFFD028560507fef02856050 /* src/sweep/GuSweepBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.h"; sourceTree = SOURCE_ROOT; };
- FFFD028560b87fef028560b8 /* src/sweep/GuSweepBoxSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.h"; sourceTree = SOURCE_ROOT; };
- FFFD028561207fef02856120 /* 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; };
- FFFD028561887fef02856188 /* 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; };
- FFFD028561f07fef028561f0 /* src/sweep/GuSweepCapsuleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.h"; sourceTree = SOURCE_ROOT; };
- FFFD028562587fef02856258 /* src/sweep/GuSweepCapsuleCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.h"; sourceTree = SOURCE_ROOT; };
- FFFD028562c07fef028562c0 /* src/sweep/GuSweepCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; };
- FFFD028563287fef02856328 /* src/sweep/GuSweepSphereCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.h"; sourceTree = SOURCE_ROOT; };
- FFFD028563907fef02856390 /* src/sweep/GuSweepSphereSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.h"; sourceTree = SOURCE_ROOT; };
- FFFD028563f87fef028563f8 /* src/sweep/GuSweepSphereTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.h"; sourceTree = SOURCE_ROOT; };
- FFFD028564607fef02856460 /* src/sweep/GuSweepTriangleUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.h"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.h"; sourceTree = SOURCE_ROOT; };
- FFFD028564c87fef028564c8 /* src/gjk/GuEPA.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.h"; path = "../../GeomUtils/src/gjk/GuEPA.h"; sourceTree = SOURCE_ROOT; };
- FFFD028565307fef02856530 /* src/gjk/GuEPAFacet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPAFacet.h"; path = "../../GeomUtils/src/gjk/GuEPAFacet.h"; sourceTree = SOURCE_ROOT; };
- FFFD028565987fef02856598 /* src/gjk/GuGJK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJK.h"; path = "../../GeomUtils/src/gjk/GuGJK.h"; sourceTree = SOURCE_ROOT; };
- FFFD028566007fef02856600 /* src/gjk/GuGJKPenetration.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKPenetration.h"; path = "../../GeomUtils/src/gjk/GuGJKPenetration.h"; sourceTree = SOURCE_ROOT; };
- FFFD028566687fef02856668 /* src/gjk/GuGJKRaycast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKRaycast.h"; path = "../../GeomUtils/src/gjk/GuGJKRaycast.h"; sourceTree = SOURCE_ROOT; };
- FFFD028566d07fef028566d0 /* src/gjk/GuGJKSimplex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.h"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.h"; sourceTree = SOURCE_ROOT; };
- FFFD028567387fef02856738 /* src/gjk/GuGJKTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.h"; path = "../../GeomUtils/src/gjk/GuGJKTest.h"; sourceTree = SOURCE_ROOT; };
- FFFD028567a07fef028567a0 /* src/gjk/GuGJKType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKType.h"; path = "../../GeomUtils/src/gjk/GuGJKType.h"; sourceTree = SOURCE_ROOT; };
- FFFD028568087fef02856808 /* src/gjk/GuGJKUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKUtil.h"; path = "../../GeomUtils/src/gjk/GuGJKUtil.h"; sourceTree = SOURCE_ROOT; };
- FFFD028568707fef02856870 /* src/gjk/GuVecBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecBox.h"; path = "../../GeomUtils/src/gjk/GuVecBox.h"; sourceTree = SOURCE_ROOT; };
- FFFD028568d87fef028568d8 /* src/gjk/GuVecCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecCapsule.h"; path = "../../GeomUtils/src/gjk/GuVecCapsule.h"; sourceTree = SOURCE_ROOT; };
- FFFD028569407fef02856940 /* src/gjk/GuVecConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvex.h"; path = "../../GeomUtils/src/gjk/GuVecConvex.h"; sourceTree = SOURCE_ROOT; };
- FFFD028569a87fef028569a8 /* src/gjk/GuVecConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHull.h"; sourceTree = SOURCE_ROOT; };
- FFFD02856a107fef02856a10 /* src/gjk/GuVecConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; };
- FFFD02856a787fef02856a78 /* src/gjk/GuVecPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecPlane.h"; path = "../../GeomUtils/src/gjk/GuVecPlane.h"; sourceTree = SOURCE_ROOT; };
- FFFD02856ae07fef02856ae0 /* src/gjk/GuVecShrunkBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkBox.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkBox.h"; sourceTree = SOURCE_ROOT; };
- FFFD02856b487fef02856b48 /* src/gjk/GuVecShrunkConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHull.h"; sourceTree = SOURCE_ROOT; };
- FFFD02856bb07fef02856bb0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; };
- FFFD02856c187fef02856c18 /* src/gjk/GuVecSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecSphere.h"; path = "../../GeomUtils/src/gjk/GuVecSphere.h"; sourceTree = SOURCE_ROOT; };
- FFFD02856c807fef02856c80 /* src/gjk/GuVecTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecTriangle.h"; path = "../../GeomUtils/src/gjk/GuVecTriangle.h"; sourceTree = SOURCE_ROOT; };
- FFFD02856ce87fef02856ce8 /* src/intersection/GuIntersectionCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; };
- FFFD02856d507fef02856d50 /* src/intersection/GuIntersectionEdgeEdge.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.h"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.h"; sourceTree = SOURCE_ROOT; };
- FFFD02856db87fef02856db8 /* src/intersection/GuIntersectionRay.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRay.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRay.h"; sourceTree = SOURCE_ROOT; };
- FFFD02856e207fef02856e20 /* src/intersection/GuIntersectionRayBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.h"; sourceTree = SOURCE_ROOT; };
- FFFD02856e887fef02856e88 /* src/intersection/GuIntersectionRayBoxSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBoxSIMD.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBoxSIMD.h"; sourceTree = SOURCE_ROOT; };
- FFFD02856ef07fef02856ef0 /* src/intersection/GuIntersectionRayCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.h"; sourceTree = SOURCE_ROOT; };
- FFFD02856f587fef02856f58 /* src/intersection/GuIntersectionRayPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayPlane.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayPlane.h"; sourceTree = SOURCE_ROOT; };
- FFFD02856fc07fef02856fc0 /* src/intersection/GuIntersectionRaySphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.h"; sourceTree = SOURCE_ROOT; };
- FFFD028570287fef02857028 /* src/intersection/GuIntersectionRayTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayTriangle.h"; sourceTree = SOURCE_ROOT; };
- FFFD028570907fef02857090 /* src/intersection/GuIntersectionSphereBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.h"; sourceTree = SOURCE_ROOT; };
- FFFD028570f87fef028570f8 /* src/mesh/GuBV32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.h"; path = "../../GeomUtils/src/mesh/GuBV32.h"; sourceTree = SOURCE_ROOT; };
- FFFD028571607fef02857160 /* src/mesh/GuBV32Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.h"; path = "../../GeomUtils/src/mesh/GuBV32Build.h"; sourceTree = SOURCE_ROOT; };
- FFFD028571c87fef028571c8 /* src/mesh/GuBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.h"; path = "../../GeomUtils/src/mesh/GuBV4.h"; sourceTree = SOURCE_ROOT; };
- FFFD028572307fef02857230 /* src/mesh/GuBV4Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.h"; path = "../../GeomUtils/src/mesh/GuBV4Build.h"; sourceTree = SOURCE_ROOT; };
- FFFD028572987fef02857298 /* src/mesh/GuBV4Settings.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Settings.h"; path = "../../GeomUtils/src/mesh/GuBV4Settings.h"; sourceTree = SOURCE_ROOT; };
- FFFD028573007fef02857300 /* 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; };
- FFFD028573687fef02857368 /* 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; };
- FFFD028573d07fef028573d0 /* 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; };
- FFFD028574387fef02857438 /* 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; };
- FFFD028574a07fef028574a0 /* 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; };
- FFFD028575087fef02857508 /* 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; };
- FFFD028575707fef02857570 /* 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; };
- FFFD028575d87fef028575d8 /* 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; };
- FFFD028576407fef02857640 /* 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; };
- FFFD028576a87fef028576a8 /* 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; };
- FFFD028577107fef02857710 /* 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; };
- FFFD028577787fef02857778 /* 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; };
- FFFD028577e07fef028577e0 /* 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; };
- FFFD028578487fef02857848 /* 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; };
- FFFD028578b07fef028578b0 /* 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; };
- FFFD028579187fef02857918 /* 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; };
- FFFD028579807fef02857980 /* 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; };
- FFFD028579e87fef028579e8 /* 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; };
- FFFD02857a507fef02857a50 /* 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; };
- FFFD02857ab87fef02857ab8 /* 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; };
- FFFD02857b207fef02857b20 /* src/mesh/GuBVConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBVConstants.h"; path = "../../GeomUtils/src/mesh/GuBVConstants.h"; sourceTree = SOURCE_ROOT; };
- FFFD02857b887fef02857b88 /* src/mesh/GuMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshData.h"; path = "../../GeomUtils/src/mesh/GuMeshData.h"; sourceTree = SOURCE_ROOT; };
- FFFD02857bf07fef02857bf0 /* src/mesh/GuMidphaseInterface.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseInterface.h"; path = "../../GeomUtils/src/mesh/GuMidphaseInterface.h"; sourceTree = SOURCE_ROOT; };
- FFFD02857c587fef02857c58 /* src/mesh/GuRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.h"; path = "../../GeomUtils/src/mesh/GuRTree.h"; sourceTree = SOURCE_ROOT; };
- FFFD02857cc07fef02857cc0 /* src/mesh/GuSweepConvexTri.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepConvexTri.h"; path = "../../GeomUtils/src/mesh/GuSweepConvexTri.h"; sourceTree = SOURCE_ROOT; };
- FFFD02857d287fef02857d28 /* src/mesh/GuSweepMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepMesh.h"; path = "../../GeomUtils/src/mesh/GuSweepMesh.h"; sourceTree = SOURCE_ROOT; };
- FFFD02857d907fef02857d90 /* src/mesh/GuTriangle32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangle32.h"; path = "../../GeomUtils/src/mesh/GuTriangle32.h"; sourceTree = SOURCE_ROOT; };
- FFFD02857df87fef02857df8 /* src/mesh/GuTriangleCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleCache.h"; path = "../../GeomUtils/src/mesh/GuTriangleCache.h"; sourceTree = SOURCE_ROOT; };
- FFFD02857e607fef02857e60 /* src/mesh/GuTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.h"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.h"; sourceTree = SOURCE_ROOT; };
- FFFD02857ec87fef02857ec8 /* src/mesh/GuTriangleMeshBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.h"; sourceTree = SOURCE_ROOT; };
- FFFD02857f307fef02857f30 /* src/mesh/GuTriangleMeshRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.h"; sourceTree = SOURCE_ROOT; };
- FFFD02857f987fef02857f98 /* src/mesh/GuTriangleVertexPointers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleVertexPointers.h"; path = "../../GeomUtils/src/mesh/GuTriangleVertexPointers.h"; sourceTree = SOURCE_ROOT; };
- FFFD028580007fef02858000 /* src/hf/GuEntityReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuEntityReport.h"; path = "../../GeomUtils/src/hf/GuEntityReport.h"; sourceTree = SOURCE_ROOT; };
- FFFD028580687fef02858068 /* src/hf/GuHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.h"; path = "../../GeomUtils/src/hf/GuHeightField.h"; sourceTree = SOURCE_ROOT; };
- FFFD028580d07fef028580d0 /* src/hf/GuHeightFieldData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldData.h"; path = "../../GeomUtils/src/hf/GuHeightFieldData.h"; sourceTree = SOURCE_ROOT; };
- FFFD028581387fef02858138 /* src/hf/GuHeightFieldUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.h"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.h"; sourceTree = SOURCE_ROOT; };
- FFFD028581a07fef028581a0 /* src/pcm/GuPCMContactConvexCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.h"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.h"; sourceTree = SOURCE_ROOT; };
- FFFD028582087fef02858208 /* src/pcm/GuPCMContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGen.h"; sourceTree = SOURCE_ROOT; };
- FFFD028582707fef02858270 /* src/pcm/GuPCMContactGenUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenUtil.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGenUtil.h"; sourceTree = SOURCE_ROOT; };
- FFFD028582d87fef028582d8 /* src/pcm/GuPCMContactMeshCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactMeshCallback.h"; path = "../../GeomUtils/src/pcm/GuPCMContactMeshCallback.h"; sourceTree = SOURCE_ROOT; };
- FFFD028583407fef02858340 /* src/pcm/GuPCMShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.h"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.h"; sourceTree = SOURCE_ROOT; };
- FFFD028583a87fef028583a8 /* src/pcm/GuPCMTriangleContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.h"; sourceTree = SOURCE_ROOT; };
- FFFD028584107fef02858410 /* src/pcm/GuPersistentContactManifold.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.h"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.h"; sourceTree = SOURCE_ROOT; };
- FFFD028584787fef02858478 /* src/ccd/GuCCDSweepConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.h"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.h"; sourceTree = SOURCE_ROOT; };
- FFFD028584e07fef028584e0 /* src/GuBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.cpp"; path = "../../GeomUtils/src/GuBounds.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD028585487fef02858548 /* src/GuBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBox.cpp"; path = "../../GeomUtils/src/GuBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD028585b07fef028585b0 /* src/GuCCTSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCCTSweepTests.cpp"; path = "../../GeomUtils/src/GuCCTSweepTests.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD028586187fef02858618 /* src/GuCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.cpp"; path = "../../GeomUtils/src/GuCapsule.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD028586807fef02858680 /* src/GuGeometryQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryQuery.cpp"; path = "../../GeomUtils/src/GuGeometryQuery.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD028586e87fef028586e8 /* src/GuGeometryUnion.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.cpp"; path = "../../GeomUtils/src/GuGeometryUnion.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD028587507fef02858750 /* src/GuInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.cpp"; path = "../../GeomUtils/src/GuInternal.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD028587b87fef028587b8 /* src/GuMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.cpp"; path = "../../GeomUtils/src/GuMTD.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD028588207fef02858820 /* src/GuMeshFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.cpp"; path = "../../GeomUtils/src/GuMeshFactory.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD028588887fef02858888 /* src/GuMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMetaData.cpp"; path = "../../GeomUtils/src/GuMetaData.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD028588f07fef028588f0 /* src/GuOverlapTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.cpp"; path = "../../GeomUtils/src/GuOverlapTests.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD028589587fef02858958 /* src/GuRaycastTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuRaycastTests.cpp"; path = "../../GeomUtils/src/GuRaycastTests.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD028589c07fef028589c0 /* src/GuSerialize.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.cpp"; path = "../../GeomUtils/src/GuSerialize.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD02858a287fef02858a28 /* src/GuSweepMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.cpp"; path = "../../GeomUtils/src/GuSweepMTD.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD02858a907fef02858a90 /* src/GuSweepSharedTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.cpp"; path = "../../GeomUtils/src/GuSweepSharedTests.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD02858af87fef02858af8 /* src/GuSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.cpp"; path = "../../GeomUtils/src/GuSweepTests.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD02858b607fef02858b60 /* src/contact/GuContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactBoxBox.cpp"; path = "../../GeomUtils/src/contact/GuContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD02858bc87fef02858bc8 /* src/contact/GuContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleBox.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD02858c307fef02858c30 /* src/contact/GuContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD02858c987fef02858c98 /* src/contact/GuContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD02858d007fef02858d00 /* src/contact/GuContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD02858d687fef02858d68 /* src/contact/GuContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD02858dd07fef02858dd0 /* src/contact/GuContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD02858e387fef02858e38 /* src/contact/GuContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneBox.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD02858ea07fef02858ea0 /* src/contact/GuContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD02858f087fef02858f08 /* src/contact/GuContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD02858f707fef02858f70 /* src/contact/GuContactPolygonPolygon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.cpp"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD02858fd87fef02858fd8 /* src/contact/GuContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereBox.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD028590407fef02859040 /* src/contact/GuContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD028590a87fef028590a8 /* src/contact/GuContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD028591107fef02859110 /* src/contact/GuContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSpherePlane.cpp"; path = "../../GeomUtils/src/contact/GuContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD028591787fef02859178 /* src/contact/GuContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereSphere.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD028591e07fef028591e0 /* src/contact/GuFeatureCode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.cpp"; path = "../../GeomUtils/src/contact/GuFeatureCode.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD028592487fef02859248 /* src/contact/GuLegacyContactBoxHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactBoxHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactBoxHeightField.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD028592b07fef028592b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD028593187fef02859318 /* src/contact/GuLegacyContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactConvexHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD028593807fef02859380 /* src/contact/GuLegacyContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactSphereHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD028593e87fef028593e8 /* src/common/GuBarycentricCoordinates.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.cpp"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD028594507fef02859450 /* src/common/GuSeparatingAxes.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.cpp"; path = "../../GeomUtils/src/common/GuSeparatingAxes.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD028594b87fef028594b8 /* src/convex/GuBigConvexData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.cpp"; path = "../../GeomUtils/src/convex/GuBigConvexData.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD028595207fef02859520 /* src/convex/GuConvexHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.cpp"; path = "../../GeomUtils/src/convex/GuConvexHelper.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD028595887fef02859588 /* src/convex/GuConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.cpp"; path = "../../GeomUtils/src/convex/GuConvexMesh.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD028595f07fef028595f0 /* src/convex/GuConvexSupportTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.cpp"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD028596587fef02859658 /* src/convex/GuConvexUtilsInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.cpp"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD028596c07fef028596c0 /* src/convex/GuHillClimbing.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.cpp"; path = "../../GeomUtils/src/convex/GuHillClimbing.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD028597287fef02859728 /* src/convex/GuShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.cpp"; path = "../../GeomUtils/src/convex/GuShapeConvex.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD028597907fef02859790 /* src/distance/GuDistancePointBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD028597f87fef028597f8 /* src/distance/GuDistancePointTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD028598607fef02859860 /* src/distance/GuDistanceSegmentBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentBox.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD028598c87fef028598c8 /* src/distance/GuDistanceSegmentSegment.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegment.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegment.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD028599307fef02859930 /* src/distance/GuDistanceSegmentTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD028599987fef02859998 /* src/sweep/GuSweepBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD02859a007fef02859a00 /* src/sweep/GuSweepBoxSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD02859a687fef02859a68 /* 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; };
- FFFD02859ad07fef02859ad0 /* 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; };
- FFFD02859b387fef02859b38 /* src/sweep/GuSweepCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD02859ba07fef02859ba0 /* src/sweep/GuSweepCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD02859c087fef02859c08 /* src/sweep/GuSweepCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD02859c707fef02859c70 /* src/sweep/GuSweepSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD02859cd87fef02859cd8 /* src/sweep/GuSweepSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD02859d407fef02859d40 /* src/sweep/GuSweepSphereTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD02859da87fef02859da8 /* src/sweep/GuSweepTriangleUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.cpp"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD02859e107fef02859e10 /* src/gjk/GuEPA.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.cpp"; path = "../../GeomUtils/src/gjk/GuEPA.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD02859e787fef02859e78 /* src/gjk/GuGJKSimplex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.cpp"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD02859ee07fef02859ee0 /* src/gjk/GuGJKTest.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.cpp"; path = "../../GeomUtils/src/gjk/GuGJKTest.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD02859f487fef02859f48 /* src/intersection/GuIntersectionBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionBoxBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionBoxBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD02859fb07fef02859fb0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0285a0187fef0285a018 /* src/intersection/GuIntersectionEdgeEdge.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0285a0807fef0285a080 /* src/intersection/GuIntersectionRayBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0285a0e87fef0285a0e8 /* src/intersection/GuIntersectionRayCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0285a1507fef0285a150 /* src/intersection/GuIntersectionRaySphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0285a1b87fef0285a1b8 /* src/intersection/GuIntersectionSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0285a2207fef0285a220 /* src/intersection/GuIntersectionTriangleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionTriangleBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionTriangleBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0285a2887fef0285a288 /* src/mesh/GuBV32.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.cpp"; path = "../../GeomUtils/src/mesh/GuBV32.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0285a2f07fef0285a2f0 /* src/mesh/GuBV32Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV32Build.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0285a3587fef0285a358 /* src/mesh/GuBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.cpp"; path = "../../GeomUtils/src/mesh/GuBV4.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0285a3c07fef0285a3c0 /* src/mesh/GuBV4Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV4Build.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0285a4287fef0285a428 /* 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; };
- FFFD0285a4907fef0285a490 /* 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; };
- FFFD0285a4f87fef0285a4f8 /* 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; };
- FFFD0285a5607fef0285a560 /* 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; };
- FFFD0285a5c87fef0285a5c8 /* 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; };
- FFFD0285a6307fef0285a630 /* 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; };
- FFFD0285a6987fef0285a698 /* 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; };
- FFFD0285a7007fef0285a700 /* 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; };
- FFFD0285a7687fef0285a768 /* src/mesh/GuMeshQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshQuery.cpp"; path = "../../GeomUtils/src/mesh/GuMeshQuery.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0285a7d07fef0285a7d0 /* src/mesh/GuMidphaseBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseBV4.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseBV4.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0285a8387fef0285a838 /* src/mesh/GuMidphaseRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseRTree.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseRTree.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0285a8a07fef0285a8a0 /* src/mesh/GuOverlapTestsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuOverlapTestsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuOverlapTestsMesh.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0285a9087fef0285a908 /* src/mesh/GuRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.cpp"; path = "../../GeomUtils/src/mesh/GuRTree.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0285a9707fef0285a970 /* src/mesh/GuRTreeQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTreeQueries.cpp"; path = "../../GeomUtils/src/mesh/GuRTreeQueries.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0285a9d87fef0285a9d8 /* src/mesh/GuSweepsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuSweepsMesh.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0285aa407fef0285aa40 /* src/mesh/GuTriangleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0285aaa87fef0285aaa8 /* src/mesh/GuTriangleMeshBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0285ab107fef0285ab10 /* src/mesh/GuTriangleMeshRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0285ab787fef0285ab78 /* src/hf/GuHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.cpp"; path = "../../GeomUtils/src/hf/GuHeightField.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0285abe07fef0285abe0 /* src/hf/GuHeightFieldUtil.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.cpp"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0285ac487fef0285ac48 /* src/hf/GuOverlapTestsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuOverlapTestsHF.cpp"; path = "../../GeomUtils/src/hf/GuOverlapTestsHF.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0285acb07fef0285acb0 /* src/hf/GuSweepsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuSweepsHF.cpp"; path = "../../GeomUtils/src/hf/GuSweepsHF.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0285ad187fef0285ad18 /* src/pcm/GuPCMContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0285ad807fef0285ad80 /* src/pcm/GuPCMContactBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxConvex.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0285ade87fef0285ade8 /* src/pcm/GuPCMContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0285ae507fef0285ae50 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0285aeb87fef0285aeb8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0285af207fef0285af20 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0285af887fef0285af88 /* src/pcm/GuPCMContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0285aff07fef0285aff0 /* src/pcm/GuPCMContactConvexCommon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0285b0587fef0285b058 /* src/pcm/GuPCMContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0285b0c07fef0285b0c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0285b1287fef0285b128 /* src/pcm/GuPCMContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0285b1907fef0285b190 /* src/pcm/GuPCMContactGenBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenBoxConvex.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0285b1f87fef0285b1f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0285b2607fef0285b260 /* src/pcm/GuPCMContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0285b2c87fef0285b2c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0285b3307fef0285b330 /* src/pcm/GuPCMContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0285b3987fef0285b398 /* src/pcm/GuPCMContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0285b4007fef0285b400 /* src/pcm/GuPCMContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0285b4687fef0285b468 /* src/pcm/GuPCMContactSphereConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereConvex.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0285b4d07fef0285b4d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0285b5387fef0285b538 /* src/pcm/GuPCMContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0285b5a07fef0285b5a0 /* src/pcm/GuPCMContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSpherePlane.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0285b6087fef0285b608 /* src/pcm/GuPCMContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereSphere.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0285b6707fef0285b670 /* src/pcm/GuPCMShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0285b6d87fef0285b6d8 /* src/pcm/GuPCMTriangleContactGen.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.cpp"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0285b7407fef0285b740 /* src/pcm/GuPersistentContactManifold.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.cpp"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0285b7a87fef0285b7a8 /* src/ccd/GuCCDSweepConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.cpp"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0285b8107fef0285b810 /* src/ccd/GuCCDSweepPrimitives.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepPrimitives.cpp"; path = "../../GeomUtils/src/ccd/GuCCDSweepPrimitives.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf299eeb07fb0f299eeb0 /* PhysXCommon */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCommon"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFDf300ec007fb0f300ec00 /* common/PxBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxBase.h"; path = "../../../Include/common/PxBase.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf300ec687fb0f300ec68 /* common/PxCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCollection.h"; path = "../../../Include/common/PxCollection.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf300ecd07fb0f300ecd0 /* common/PxCoreUtilityTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCoreUtilityTypes.h"; path = "../../../Include/common/PxCoreUtilityTypes.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf300ed387fb0f300ed38 /* common/PxMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaData.h"; path = "../../../Include/common/PxMetaData.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf300eda07fb0f300eda0 /* common/PxMetaDataFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaDataFlags.h"; path = "../../../Include/common/PxMetaDataFlags.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf300ee087fb0f300ee08 /* common/PxPhysXCommonConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysXCommonConfig.h"; path = "../../../Include/common/PxPhysXCommonConfig.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf300ee707fb0f300ee70 /* common/PxPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysicsInsertionCallback.h"; path = "../../../Include/common/PxPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf300eed87fb0f300eed8 /* common/PxRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxRenderBuffer.h"; path = "../../../Include/common/PxRenderBuffer.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf300ef407fb0f300ef40 /* common/PxSerialFramework.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerialFramework.h"; path = "../../../Include/common/PxSerialFramework.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf300efa87fb0f300efa8 /* common/PxSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerializer.h"; path = "../../../Include/common/PxSerializer.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf300f0107fb0f300f010 /* common/PxStringTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxStringTable.h"; path = "../../../Include/common/PxStringTable.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf300f0787fb0f300f078 /* common/PxTolerancesScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTolerancesScale.h"; path = "../../../Include/common/PxTolerancesScale.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf300f0e07fb0f300f0e0 /* common/PxTypeInfo.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTypeInfo.h"; path = "../../../Include/common/PxTypeInfo.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf300f1487fb0f300f148 /* geometry/PxBoxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxBoxGeometry.h"; path = "../../../Include/geometry/PxBoxGeometry.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf300f1b07fb0f300f1b0 /* geometry/PxCapsuleGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxCapsuleGeometry.h"; path = "../../../Include/geometry/PxCapsuleGeometry.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf300f2187fb0f300f218 /* geometry/PxConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMesh.h"; path = "../../../Include/geometry/PxConvexMesh.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf300f2807fb0f300f280 /* geometry/PxConvexMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMeshGeometry.h"; path = "../../../Include/geometry/PxConvexMeshGeometry.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf300f2e87fb0f300f2e8 /* geometry/PxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometry.h"; path = "../../../Include/geometry/PxGeometry.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf300f3507fb0f300f350 /* geometry/PxGeometryHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryHelpers.h"; path = "../../../Include/geometry/PxGeometryHelpers.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf300f3b87fb0f300f3b8 /* geometry/PxGeometryQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryQuery.h"; path = "../../../Include/geometry/PxGeometryQuery.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf300f4207fb0f300f420 /* geometry/PxHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightField.h"; path = "../../../Include/geometry/PxHeightField.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf300f4887fb0f300f488 /* geometry/PxHeightFieldDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldDesc.h"; path = "../../../Include/geometry/PxHeightFieldDesc.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf300f4f07fb0f300f4f0 /* geometry/PxHeightFieldFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldFlag.h"; path = "../../../Include/geometry/PxHeightFieldFlag.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf300f5587fb0f300f558 /* geometry/PxHeightFieldGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldGeometry.h"; path = "../../../Include/geometry/PxHeightFieldGeometry.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf300f5c07fb0f300f5c0 /* geometry/PxHeightFieldSample.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldSample.h"; path = "../../../Include/geometry/PxHeightFieldSample.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf300f6287fb0f300f628 /* geometry/PxMeshQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshQuery.h"; path = "../../../Include/geometry/PxMeshQuery.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf300f6907fb0f300f690 /* geometry/PxMeshScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshScale.h"; path = "../../../Include/geometry/PxMeshScale.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf300f6f87fb0f300f6f8 /* geometry/PxPlaneGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxPlaneGeometry.h"; path = "../../../Include/geometry/PxPlaneGeometry.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf300f7607fb0f300f760 /* geometry/PxSimpleTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSimpleTriangleMesh.h"; path = "../../../Include/geometry/PxSimpleTriangleMesh.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf300f7c87fb0f300f7c8 /* geometry/PxSphereGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSphereGeometry.h"; path = "../../../Include/geometry/PxSphereGeometry.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf300f8307fb0f300f830 /* geometry/PxTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangle.h"; path = "../../../Include/geometry/PxTriangle.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf300f8987fb0f300f898 /* geometry/PxTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMesh.h"; path = "../../../Include/geometry/PxTriangleMesh.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf300f9007fb0f300f900 /* geometry/PxTriangleMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMeshGeometry.h"; path = "../../../Include/geometry/PxTriangleMeshGeometry.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21a3c007fb0f21a3c00 /* src/CmBoxPruning.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.cpp"; path = "../../Common/src/CmBoxPruning.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21a3c687fb0f21a3c68 /* src/CmCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.cpp"; path = "../../Common/src/CmCollection.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21a3cd07fb0f21a3cd0 /* src/CmMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMathUtils.cpp"; path = "../../Common/src/CmMathUtils.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21a3d387fb0f21a3d38 /* src/CmPtrTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.cpp"; path = "../../Common/src/CmPtrTable.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21a3da07fb0f21a3da0 /* src/CmRadixSort.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.cpp"; path = "../../Common/src/CmRadixSort.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21a3e087fb0f21a3e08 /* src/CmRadixSortBuffered.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.cpp"; path = "../../Common/src/CmRadixSortBuffered.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21a3e707fb0f21a3e70 /* src/CmRenderOutput.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.cpp"; path = "../../Common/src/CmRenderOutput.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21a3ed87fb0f21a3ed8 /* src/CmVisualization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.cpp"; path = "../../Common/src/CmVisualization.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21a3f407fb0f21a3f40 /* src/CmBitMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBitMap.h"; path = "../../Common/src/CmBitMap.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21a3fa87fb0f21a3fa8 /* src/CmBoxPruning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.h"; path = "../../Common/src/CmBoxPruning.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21a40107fb0f21a4010 /* src/CmCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.h"; path = "../../Common/src/CmCollection.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21a40787fb0f21a4078 /* src/CmConeLimitHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmConeLimitHelper.h"; path = "../../Common/src/CmConeLimitHelper.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21a40e07fb0f21a40e0 /* src/CmFlushPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmFlushPool.h"; path = "../../Common/src/CmFlushPool.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21a41487fb0f21a4148 /* src/CmIDPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIDPool.h"; path = "../../Common/src/CmIDPool.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21a41b07fb0f21a41b0 /* src/CmIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIO.h"; path = "../../Common/src/CmIO.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21a42187fb0f21a4218 /* src/CmMatrix34.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMatrix34.h"; path = "../../Common/src/CmMatrix34.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21a42807fb0f21a4280 /* src/CmPhysXCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPhysXCommon.h"; path = "../../Common/src/CmPhysXCommon.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21a42e87fb0f21a42e8 /* src/CmPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPool.h"; path = "../../Common/src/CmPool.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21a43507fb0f21a4350 /* src/CmPreallocatingPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPreallocatingPool.h"; path = "../../Common/src/CmPreallocatingPool.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21a43b87fb0f21a43b8 /* src/CmPriorityQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPriorityQueue.h"; path = "../../Common/src/CmPriorityQueue.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21a44207fb0f21a4420 /* src/CmPtrTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.h"; path = "../../Common/src/CmPtrTable.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21a44887fb0f21a4488 /* src/CmQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmQueue.h"; path = "../../Common/src/CmQueue.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21a44f07fb0f21a44f0 /* src/CmRadixSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.h"; path = "../../Common/src/CmRadixSort.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21a45587fb0f21a4558 /* src/CmRadixSortBuffered.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.h"; path = "../../Common/src/CmRadixSortBuffered.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21a45c07fb0f21a45c0 /* src/CmRefCountable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRefCountable.h"; path = "../../Common/src/CmRefCountable.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21a46287fb0f21a4628 /* src/CmRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderBuffer.h"; path = "../../Common/src/CmRenderBuffer.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21a46907fb0f21a4690 /* src/CmRenderOutput.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.h"; path = "../../Common/src/CmRenderOutput.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21a46f87fb0f21a46f8 /* src/CmScaling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmScaling.h"; path = "../../Common/src/CmScaling.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21a47607fb0f21a4760 /* src/CmSpatialVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmSpatialVector.h"; path = "../../Common/src/CmSpatialVector.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21a47c87fb0f21a47c8 /* src/CmTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTask.h"; path = "../../Common/src/CmTask.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21a48307fb0f21a4830 /* src/CmTaskPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTaskPool.h"; path = "../../Common/src/CmTaskPool.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21a48987fb0f21a4898 /* src/CmTmpMem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTmpMem.h"; path = "../../Common/src/CmTmpMem.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21a49007fb0f21a4900 /* src/CmTransformUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTransformUtils.h"; path = "../../Common/src/CmTransformUtils.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21a49687fb0f21a4968 /* src/CmUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmUtils.h"; path = "../../Common/src/CmUtils.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21a49d07fb0f21a49d0 /* src/CmVisualization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.h"; path = "../../Common/src/CmVisualization.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30010007fb0f3001000 /* headers/GuAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuAxes.h"; path = "../../GeomUtils/headers/GuAxes.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30010687fb0f3001068 /* headers/GuBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuBox.h"; path = "../../GeomUtils/headers/GuBox.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30010d07fb0f30010d0 /* headers/GuDistanceSegmentBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentBox.h"; path = "../../GeomUtils/headers/GuDistanceSegmentBox.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30011387fb0f3001138 /* headers/GuDistanceSegmentSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentSegment.h"; path = "../../GeomUtils/headers/GuDistanceSegmentSegment.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30011a07fb0f30011a0 /* headers/GuIntersectionBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionBoxBox.h"; path = "../../GeomUtils/headers/GuIntersectionBoxBox.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30012087fb0f3001208 /* headers/GuIntersectionTriangleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionTriangleBox.h"; path = "../../GeomUtils/headers/GuIntersectionTriangleBox.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30012707fb0f3001270 /* headers/GuRaycastTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuRaycastTests.h"; path = "../../GeomUtils/headers/GuRaycastTests.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30012d87fb0f30012d8 /* headers/GuSIMDHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSIMDHelpers.h"; path = "../../GeomUtils/headers/GuSIMDHelpers.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30013407fb0f3001340 /* headers/GuSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSegment.h"; path = "../../GeomUtils/headers/GuSegment.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30013a87fb0f30013a8 /* ../../Include/GeomUtils */= { isa = PBXFileReference; fileEncoding = 4; name = "../../Include/GeomUtils"; path = "../../../Include/GeomUtils"; sourceTree = SOURCE_ROOT; };
+ FFFDf30014107fb0f3001410 /* src/GuBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.h"; path = "../../GeomUtils/src/GuBounds.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30014787fb0f3001478 /* src/GuCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.h"; path = "../../GeomUtils/src/GuCapsule.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30014e07fb0f30014e0 /* src/GuCenterExtents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCenterExtents.h"; path = "../../GeomUtils/src/GuCenterExtents.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30015487fb0f3001548 /* src/GuGeometryUnion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.h"; path = "../../GeomUtils/src/GuGeometryUnion.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30015b07fb0f30015b0 /* src/GuInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.h"; path = "../../GeomUtils/src/GuInternal.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30016187fb0f3001618 /* src/GuMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.h"; path = "../../GeomUtils/src/GuMTD.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30016807fb0f3001680 /* src/GuMeshFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.h"; path = "../../GeomUtils/src/GuMeshFactory.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30016e87fb0f30016e8 /* src/GuOverlapTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.h"; path = "../../GeomUtils/src/GuOverlapTests.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30017507fb0f3001750 /* src/GuSerialize.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.h"; path = "../../GeomUtils/src/GuSerialize.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30017b87fb0f30017b8 /* src/GuSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSphere.h"; path = "../../GeomUtils/src/GuSphere.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30018207fb0f3001820 /* src/GuSweepMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.h"; path = "../../GeomUtils/src/GuSweepMTD.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30018887fb0f3001888 /* src/GuSweepSharedTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.h"; path = "../../GeomUtils/src/GuSweepSharedTests.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30018f07fb0f30018f0 /* src/GuSweepTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.h"; path = "../../GeomUtils/src/GuSweepTests.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30019587fb0f3001958 /* src/contact/GuContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactMethodImpl.h"; path = "../../GeomUtils/src/contact/GuContactMethodImpl.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30019c07fb0f30019c0 /* src/contact/GuContactPolygonPolygon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.h"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3001a287fb0f3001a28 /* src/contact/GuFeatureCode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.h"; path = "../../GeomUtils/src/contact/GuFeatureCode.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3001a907fb0f3001a90 /* src/contact/GuLegacyTraceLineCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyTraceLineCallback.h"; path = "../../GeomUtils/src/contact/GuLegacyTraceLineCallback.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3001af87fb0f3001af8 /* src/common/GuBarycentricCoordinates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.h"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3001b607fb0f3001b60 /* src/common/GuBoxConversion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBoxConversion.h"; path = "../../GeomUtils/src/common/GuBoxConversion.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3001bc87fb0f3001bc8 /* src/common/GuEdgeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeCache.h"; path = "../../GeomUtils/src/common/GuEdgeCache.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3001c307fb0f3001c30 /* src/common/GuEdgeListData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeListData.h"; path = "../../GeomUtils/src/common/GuEdgeListData.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3001c987fb0f3001c98 /* src/common/GuSeparatingAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.h"; path = "../../GeomUtils/src/common/GuSeparatingAxes.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3001d007fb0f3001d00 /* src/convex/GuBigConvexData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.h"; path = "../../GeomUtils/src/convex/GuBigConvexData.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3001d687fb0f3001d68 /* src/convex/GuBigConvexData2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData2.h"; path = "../../GeomUtils/src/convex/GuBigConvexData2.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3001dd07fb0f3001dd0 /* src/convex/GuConvexEdgeFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexEdgeFlags.h"; path = "../../GeomUtils/src/convex/GuConvexEdgeFlags.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3001e387fb0f3001e38 /* src/convex/GuConvexHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.h"; path = "../../GeomUtils/src/convex/GuConvexHelper.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3001ea07fb0f3001ea0 /* src/convex/GuConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.h"; path = "../../GeomUtils/src/convex/GuConvexMesh.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3001f087fb0f3001f08 /* src/convex/GuConvexMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMeshData.h"; path = "../../GeomUtils/src/convex/GuConvexMeshData.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3001f707fb0f3001f70 /* src/convex/GuConvexSupportTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.h"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3001fd87fb0f3001fd8 /* src/convex/GuConvexUtilsInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.h"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30020407fb0f3002040 /* src/convex/GuCubeIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuCubeIndex.h"; path = "../../GeomUtils/src/convex/GuCubeIndex.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30020a87fb0f30020a8 /* src/convex/GuHillClimbing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.h"; path = "../../GeomUtils/src/convex/GuHillClimbing.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30021107fb0f3002110 /* src/convex/GuShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.h"; path = "../../GeomUtils/src/convex/GuShapeConvex.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30021787fb0f3002178 /* src/distance/GuDistancePointBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.h"; path = "../../GeomUtils/src/distance/GuDistancePointBox.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30021e07fb0f30021e0 /* src/distance/GuDistancePointSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointSegment.h"; path = "../../GeomUtils/src/distance/GuDistancePointSegment.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30022487fb0f3002248 /* src/distance/GuDistancePointTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30022b07fb0f30022b0 /* src/distance/GuDistancePointTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangleSIMD.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30023187fb0f3002318 /* src/distance/GuDistanceSegmentSegmentSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegmentSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegmentSIMD.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30023807fb0f3002380 /* src/distance/GuDistanceSegmentTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30023e87fb0f30023e8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangleSIMD.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30024507fb0f3002450 /* src/sweep/GuSweepBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30024b87fb0f30024b8 /* src/sweep/GuSweepBoxSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30025207fb0f3002520 /* 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; };
+ FFFDf30025887fb0f3002588 /* 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; };
+ FFFDf30025f07fb0f30025f0 /* src/sweep/GuSweepCapsuleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30026587fb0f3002658 /* src/sweep/GuSweepCapsuleCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30026c07fb0f30026c0 /* src/sweep/GuSweepCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30027287fb0f3002728 /* src/sweep/GuSweepSphereCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30027907fb0f3002790 /* src/sweep/GuSweepSphereSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30027f87fb0f30027f8 /* src/sweep/GuSweepSphereTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30028607fb0f3002860 /* src/sweep/GuSweepTriangleUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.h"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30028c87fb0f30028c8 /* src/gjk/GuEPA.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.h"; path = "../../GeomUtils/src/gjk/GuEPA.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30029307fb0f3002930 /* src/gjk/GuEPAFacet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPAFacet.h"; path = "../../GeomUtils/src/gjk/GuEPAFacet.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30029987fb0f3002998 /* src/gjk/GuGJK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJK.h"; path = "../../GeomUtils/src/gjk/GuGJK.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3002a007fb0f3002a00 /* src/gjk/GuGJKPenetration.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKPenetration.h"; path = "../../GeomUtils/src/gjk/GuGJKPenetration.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3002a687fb0f3002a68 /* src/gjk/GuGJKRaycast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKRaycast.h"; path = "../../GeomUtils/src/gjk/GuGJKRaycast.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3002ad07fb0f3002ad0 /* src/gjk/GuGJKSimplex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.h"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3002b387fb0f3002b38 /* src/gjk/GuGJKTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.h"; path = "../../GeomUtils/src/gjk/GuGJKTest.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3002ba07fb0f3002ba0 /* src/gjk/GuGJKType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKType.h"; path = "../../GeomUtils/src/gjk/GuGJKType.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3002c087fb0f3002c08 /* src/gjk/GuGJKUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKUtil.h"; path = "../../GeomUtils/src/gjk/GuGJKUtil.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3002c707fb0f3002c70 /* src/gjk/GuVecBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecBox.h"; path = "../../GeomUtils/src/gjk/GuVecBox.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3002cd87fb0f3002cd8 /* src/gjk/GuVecCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecCapsule.h"; path = "../../GeomUtils/src/gjk/GuVecCapsule.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3002d407fb0f3002d40 /* src/gjk/GuVecConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvex.h"; path = "../../GeomUtils/src/gjk/GuVecConvex.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3002da87fb0f3002da8 /* src/gjk/GuVecConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHull.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3002e107fb0f3002e10 /* src/gjk/GuVecConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3002e787fb0f3002e78 /* src/gjk/GuVecPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecPlane.h"; path = "../../GeomUtils/src/gjk/GuVecPlane.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3002ee07fb0f3002ee0 /* src/gjk/GuVecShrunkBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkBox.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkBox.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3002f487fb0f3002f48 /* src/gjk/GuVecShrunkConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHull.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3002fb07fb0f3002fb0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30030187fb0f3003018 /* src/gjk/GuVecSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecSphere.h"; path = "../../GeomUtils/src/gjk/GuVecSphere.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30030807fb0f3003080 /* src/gjk/GuVecTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecTriangle.h"; path = "../../GeomUtils/src/gjk/GuVecTriangle.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30030e87fb0f30030e8 /* src/intersection/GuIntersectionCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30031507fb0f3003150 /* src/intersection/GuIntersectionEdgeEdge.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.h"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30031b87fb0f30031b8 /* src/intersection/GuIntersectionRay.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRay.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRay.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30032207fb0f3003220 /* src/intersection/GuIntersectionRayBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30032887fb0f3003288 /* src/intersection/GuIntersectionRayBoxSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBoxSIMD.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBoxSIMD.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30032f07fb0f30032f0 /* src/intersection/GuIntersectionRayCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30033587fb0f3003358 /* src/intersection/GuIntersectionRayPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayPlane.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayPlane.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30033c07fb0f30033c0 /* src/intersection/GuIntersectionRaySphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30034287fb0f3003428 /* src/intersection/GuIntersectionRayTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayTriangle.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30034907fb0f3003490 /* src/intersection/GuIntersectionSphereBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30034f87fb0f30034f8 /* src/mesh/GuBV32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.h"; path = "../../GeomUtils/src/mesh/GuBV32.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30035607fb0f3003560 /* src/mesh/GuBV32Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.h"; path = "../../GeomUtils/src/mesh/GuBV32Build.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30035c87fb0f30035c8 /* src/mesh/GuBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.h"; path = "../../GeomUtils/src/mesh/GuBV4.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30036307fb0f3003630 /* src/mesh/GuBV4Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.h"; path = "../../GeomUtils/src/mesh/GuBV4Build.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30036987fb0f3003698 /* src/mesh/GuBV4Settings.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Settings.h"; path = "../../GeomUtils/src/mesh/GuBV4Settings.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30037007fb0f3003700 /* 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; };
+ FFFDf30037687fb0f3003768 /* 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; };
+ FFFDf30037d07fb0f30037d0 /* 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; };
+ FFFDf30038387fb0f3003838 /* 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; };
+ FFFDf30038a07fb0f30038a0 /* 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; };
+ FFFDf30039087fb0f3003908 /* 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; };
+ FFFDf30039707fb0f3003970 /* 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; };
+ FFFDf30039d87fb0f30039d8 /* 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; };
+ FFFDf3003a407fb0f3003a40 /* 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; };
+ FFFDf3003aa87fb0f3003aa8 /* 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; };
+ FFFDf3003b107fb0f3003b10 /* 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; };
+ FFFDf3003b787fb0f3003b78 /* 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; };
+ FFFDf3003be07fb0f3003be0 /* 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; };
+ FFFDf3003c487fb0f3003c48 /* 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; };
+ FFFDf3003cb07fb0f3003cb0 /* 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; };
+ FFFDf3003d187fb0f3003d18 /* 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; };
+ FFFDf3003d807fb0f3003d80 /* 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; };
+ FFFDf3003de87fb0f3003de8 /* 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; };
+ FFFDf3003e507fb0f3003e50 /* 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; };
+ FFFDf3003eb87fb0f3003eb8 /* 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; };
+ FFFDf3003f207fb0f3003f20 /* src/mesh/GuBVConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBVConstants.h"; path = "../../GeomUtils/src/mesh/GuBVConstants.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3003f887fb0f3003f88 /* src/mesh/GuMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshData.h"; path = "../../GeomUtils/src/mesh/GuMeshData.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3003ff07fb0f3003ff0 /* src/mesh/GuMidphaseInterface.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseInterface.h"; path = "../../GeomUtils/src/mesh/GuMidphaseInterface.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30040587fb0f3004058 /* src/mesh/GuRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.h"; path = "../../GeomUtils/src/mesh/GuRTree.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30040c07fb0f30040c0 /* src/mesh/GuSweepConvexTri.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepConvexTri.h"; path = "../../GeomUtils/src/mesh/GuSweepConvexTri.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30041287fb0f3004128 /* src/mesh/GuSweepMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepMesh.h"; path = "../../GeomUtils/src/mesh/GuSweepMesh.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30041907fb0f3004190 /* src/mesh/GuTriangle32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangle32.h"; path = "../../GeomUtils/src/mesh/GuTriangle32.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30041f87fb0f30041f8 /* src/mesh/GuTriangleCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleCache.h"; path = "../../GeomUtils/src/mesh/GuTriangleCache.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30042607fb0f3004260 /* src/mesh/GuTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.h"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30042c87fb0f30042c8 /* src/mesh/GuTriangleMeshBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30043307fb0f3004330 /* src/mesh/GuTriangleMeshRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30043987fb0f3004398 /* src/mesh/GuTriangleVertexPointers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleVertexPointers.h"; path = "../../GeomUtils/src/mesh/GuTriangleVertexPointers.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30044007fb0f3004400 /* src/hf/GuEntityReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuEntityReport.h"; path = "../../GeomUtils/src/hf/GuEntityReport.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30044687fb0f3004468 /* src/hf/GuHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.h"; path = "../../GeomUtils/src/hf/GuHeightField.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30044d07fb0f30044d0 /* src/hf/GuHeightFieldData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldData.h"; path = "../../GeomUtils/src/hf/GuHeightFieldData.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30045387fb0f3004538 /* src/hf/GuHeightFieldUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.h"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30045a07fb0f30045a0 /* src/pcm/GuPCMContactConvexCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.h"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30046087fb0f3004608 /* src/pcm/GuPCMContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGen.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30046707fb0f3004670 /* src/pcm/GuPCMContactGenUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenUtil.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGenUtil.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30046d87fb0f30046d8 /* src/pcm/GuPCMContactMeshCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactMeshCallback.h"; path = "../../GeomUtils/src/pcm/GuPCMContactMeshCallback.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30047407fb0f3004740 /* src/pcm/GuPCMShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.h"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30047a87fb0f30047a8 /* src/pcm/GuPCMTriangleContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30048107fb0f3004810 /* src/pcm/GuPersistentContactManifold.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.h"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30048787fb0f3004878 /* src/ccd/GuCCDSweepConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.h"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30048e07fb0f30048e0 /* src/GuBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.cpp"; path = "../../GeomUtils/src/GuBounds.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30049487fb0f3004948 /* src/GuBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBox.cpp"; path = "../../GeomUtils/src/GuBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30049b07fb0f30049b0 /* src/GuCCTSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCCTSweepTests.cpp"; path = "../../GeomUtils/src/GuCCTSweepTests.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3004a187fb0f3004a18 /* src/GuCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.cpp"; path = "../../GeomUtils/src/GuCapsule.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3004a807fb0f3004a80 /* src/GuGeometryQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryQuery.cpp"; path = "../../GeomUtils/src/GuGeometryQuery.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3004ae87fb0f3004ae8 /* src/GuGeometryUnion.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.cpp"; path = "../../GeomUtils/src/GuGeometryUnion.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3004b507fb0f3004b50 /* src/GuInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.cpp"; path = "../../GeomUtils/src/GuInternal.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3004bb87fb0f3004bb8 /* src/GuMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.cpp"; path = "../../GeomUtils/src/GuMTD.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3004c207fb0f3004c20 /* src/GuMeshFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.cpp"; path = "../../GeomUtils/src/GuMeshFactory.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3004c887fb0f3004c88 /* src/GuMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMetaData.cpp"; path = "../../GeomUtils/src/GuMetaData.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3004cf07fb0f3004cf0 /* src/GuOverlapTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.cpp"; path = "../../GeomUtils/src/GuOverlapTests.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3004d587fb0f3004d58 /* src/GuRaycastTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuRaycastTests.cpp"; path = "../../GeomUtils/src/GuRaycastTests.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3004dc07fb0f3004dc0 /* src/GuSerialize.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.cpp"; path = "../../GeomUtils/src/GuSerialize.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3004e287fb0f3004e28 /* src/GuSweepMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.cpp"; path = "../../GeomUtils/src/GuSweepMTD.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3004e907fb0f3004e90 /* src/GuSweepSharedTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.cpp"; path = "../../GeomUtils/src/GuSweepSharedTests.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3004ef87fb0f3004ef8 /* src/GuSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.cpp"; path = "../../GeomUtils/src/GuSweepTests.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3004f607fb0f3004f60 /* src/contact/GuContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactBoxBox.cpp"; path = "../../GeomUtils/src/contact/GuContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3004fc87fb0f3004fc8 /* src/contact/GuContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleBox.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30050307fb0f3005030 /* src/contact/GuContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30050987fb0f3005098 /* src/contact/GuContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30051007fb0f3005100 /* src/contact/GuContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30051687fb0f3005168 /* src/contact/GuContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30051d07fb0f30051d0 /* src/contact/GuContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30052387fb0f3005238 /* src/contact/GuContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneBox.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30052a07fb0f30052a0 /* src/contact/GuContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30053087fb0f3005308 /* src/contact/GuContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30053707fb0f3005370 /* src/contact/GuContactPolygonPolygon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.cpp"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30053d87fb0f30053d8 /* src/contact/GuContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereBox.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30054407fb0f3005440 /* src/contact/GuContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30054a87fb0f30054a8 /* src/contact/GuContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30055107fb0f3005510 /* src/contact/GuContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSpherePlane.cpp"; path = "../../GeomUtils/src/contact/GuContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30055787fb0f3005578 /* src/contact/GuContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereSphere.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30055e07fb0f30055e0 /* src/contact/GuFeatureCode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.cpp"; path = "../../GeomUtils/src/contact/GuFeatureCode.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30056487fb0f3005648 /* src/contact/GuLegacyContactBoxHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactBoxHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactBoxHeightField.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30056b07fb0f30056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30057187fb0f3005718 /* src/contact/GuLegacyContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactConvexHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30057807fb0f3005780 /* src/contact/GuLegacyContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactSphereHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30057e87fb0f30057e8 /* src/common/GuBarycentricCoordinates.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.cpp"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30058507fb0f3005850 /* src/common/GuSeparatingAxes.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.cpp"; path = "../../GeomUtils/src/common/GuSeparatingAxes.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30058b87fb0f30058b8 /* src/convex/GuBigConvexData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.cpp"; path = "../../GeomUtils/src/convex/GuBigConvexData.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30059207fb0f3005920 /* src/convex/GuConvexHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.cpp"; path = "../../GeomUtils/src/convex/GuConvexHelper.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30059887fb0f3005988 /* src/convex/GuConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.cpp"; path = "../../GeomUtils/src/convex/GuConvexMesh.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30059f07fb0f30059f0 /* src/convex/GuConvexSupportTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.cpp"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3005a587fb0f3005a58 /* src/convex/GuConvexUtilsInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.cpp"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3005ac07fb0f3005ac0 /* src/convex/GuHillClimbing.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.cpp"; path = "../../GeomUtils/src/convex/GuHillClimbing.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3005b287fb0f3005b28 /* src/convex/GuShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.cpp"; path = "../../GeomUtils/src/convex/GuShapeConvex.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3005b907fb0f3005b90 /* src/distance/GuDistancePointBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3005bf87fb0f3005bf8 /* src/distance/GuDistancePointTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3005c607fb0f3005c60 /* src/distance/GuDistanceSegmentBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentBox.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3005cc87fb0f3005cc8 /* src/distance/GuDistanceSegmentSegment.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegment.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegment.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3005d307fb0f3005d30 /* src/distance/GuDistanceSegmentTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3005d987fb0f3005d98 /* src/sweep/GuSweepBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3005e007fb0f3005e00 /* src/sweep/GuSweepBoxSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3005e687fb0f3005e68 /* 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; };
+ FFFDf3005ed07fb0f3005ed0 /* 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; };
+ FFFDf3005f387fb0f3005f38 /* src/sweep/GuSweepCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3005fa07fb0f3005fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30060087fb0f3006008 /* src/sweep/GuSweepCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30060707fb0f3006070 /* src/sweep/GuSweepSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30060d87fb0f30060d8 /* src/sweep/GuSweepSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30061407fb0f3006140 /* src/sweep/GuSweepSphereTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30061a87fb0f30061a8 /* src/sweep/GuSweepTriangleUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.cpp"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30062107fb0f3006210 /* src/gjk/GuEPA.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.cpp"; path = "../../GeomUtils/src/gjk/GuEPA.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30062787fb0f3006278 /* src/gjk/GuGJKSimplex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.cpp"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30062e07fb0f30062e0 /* src/gjk/GuGJKTest.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.cpp"; path = "../../GeomUtils/src/gjk/GuGJKTest.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30063487fb0f3006348 /* src/intersection/GuIntersectionBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionBoxBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionBoxBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30063b07fb0f30063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30064187fb0f3006418 /* src/intersection/GuIntersectionEdgeEdge.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30064807fb0f3006480 /* src/intersection/GuIntersectionRayBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30064e87fb0f30064e8 /* src/intersection/GuIntersectionRayCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30065507fb0f3006550 /* src/intersection/GuIntersectionRaySphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30065b87fb0f30065b8 /* src/intersection/GuIntersectionSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30066207fb0f3006620 /* src/intersection/GuIntersectionTriangleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionTriangleBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionTriangleBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30066887fb0f3006688 /* src/mesh/GuBV32.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.cpp"; path = "../../GeomUtils/src/mesh/GuBV32.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30066f07fb0f30066f0 /* src/mesh/GuBV32Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV32Build.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30067587fb0f3006758 /* src/mesh/GuBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.cpp"; path = "../../GeomUtils/src/mesh/GuBV4.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30067c07fb0f30067c0 /* src/mesh/GuBV4Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV4Build.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30068287fb0f3006828 /* 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; };
+ FFFDf30068907fb0f3006890 /* 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; };
+ FFFDf30068f87fb0f30068f8 /* 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; };
+ FFFDf30069607fb0f3006960 /* 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; };
+ FFFDf30069c87fb0f30069c8 /* 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; };
+ FFFDf3006a307fb0f3006a30 /* 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; };
+ FFFDf3006a987fb0f3006a98 /* 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; };
+ FFFDf3006b007fb0f3006b00 /* 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; };
+ FFFDf3006b687fb0f3006b68 /* src/mesh/GuMeshQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshQuery.cpp"; path = "../../GeomUtils/src/mesh/GuMeshQuery.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3006bd07fb0f3006bd0 /* src/mesh/GuMidphaseBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseBV4.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseBV4.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3006c387fb0f3006c38 /* src/mesh/GuMidphaseRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseRTree.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseRTree.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3006ca07fb0f3006ca0 /* src/mesh/GuOverlapTestsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuOverlapTestsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuOverlapTestsMesh.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3006d087fb0f3006d08 /* src/mesh/GuRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.cpp"; path = "../../GeomUtils/src/mesh/GuRTree.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3006d707fb0f3006d70 /* src/mesh/GuRTreeQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTreeQueries.cpp"; path = "../../GeomUtils/src/mesh/GuRTreeQueries.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3006dd87fb0f3006dd8 /* src/mesh/GuSweepsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuSweepsMesh.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3006e407fb0f3006e40 /* src/mesh/GuTriangleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3006ea87fb0f3006ea8 /* src/mesh/GuTriangleMeshBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3006f107fb0f3006f10 /* src/mesh/GuTriangleMeshRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3006f787fb0f3006f78 /* src/hf/GuHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.cpp"; path = "../../GeomUtils/src/hf/GuHeightField.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3006fe07fb0f3006fe0 /* src/hf/GuHeightFieldUtil.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.cpp"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30070487fb0f3007048 /* src/hf/GuOverlapTestsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuOverlapTestsHF.cpp"; path = "../../GeomUtils/src/hf/GuOverlapTestsHF.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30070b07fb0f30070b0 /* src/hf/GuSweepsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuSweepsHF.cpp"; path = "../../GeomUtils/src/hf/GuSweepsHF.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30071187fb0f3007118 /* src/pcm/GuPCMContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30071807fb0f3007180 /* src/pcm/GuPCMContactBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxConvex.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30071e87fb0f30071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30072507fb0f3007250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30072b87fb0f30072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30073207fb0f3007320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30073887fb0f3007388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30073f07fb0f30073f0 /* src/pcm/GuPCMContactConvexCommon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30074587fb0f3007458 /* src/pcm/GuPCMContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30074c07fb0f30074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30075287fb0f3007528 /* src/pcm/GuPCMContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30075907fb0f3007590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenBoxConvex.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30075f87fb0f30075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30076607fb0f3007660 /* src/pcm/GuPCMContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30076c87fb0f30076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30077307fb0f3007730 /* src/pcm/GuPCMContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30077987fb0f3007798 /* src/pcm/GuPCMContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30078007fb0f3007800 /* src/pcm/GuPCMContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30078687fb0f3007868 /* src/pcm/GuPCMContactSphereConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereConvex.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30078d07fb0f30078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30079387fb0f3007938 /* src/pcm/GuPCMContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30079a07fb0f30079a0 /* src/pcm/GuPCMContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSpherePlane.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3007a087fb0f3007a08 /* src/pcm/GuPCMContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereSphere.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3007a707fb0f3007a70 /* src/pcm/GuPCMShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3007ad87fb0f3007ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.cpp"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3007b407fb0f3007b40 /* src/pcm/GuPersistentContactManifold.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.cpp"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3007ba87fb0f3007ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.cpp"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3007c107fb0f3007c10 /* 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 */
- FFF20314a5307fef0314a530 /* Resources */ = {
+ FFF2f299eeb07fb0f299eeb0 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFF02854fa87fef02854fa8,
+ FFFFf30013a87fb0f30013a8,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFC0314a5307fef0314a530 /* Frameworks */ = {
+ FFFCf299eeb07fb0f299eeb0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -1852,145 +1852,145 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF80314a5307fef0314a530 /* Sources */ = {
+ FFF8f299eeb07fb0f299eeb0 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFF039562007fef03956200,
- FFFF039562687fef03956268,
- FFFF039562d07fef039562d0,
- FFFF039563387fef03956338,
- FFFF039563a07fef039563a0,
- FFFF039564087fef03956408,
- FFFF039564707fef03956470,
- FFFF039564d87fef039564d8,
- FFFF028584e07fef028584e0,
- FFFF028585487fef02858548,
- FFFF028585b07fef028585b0,
- FFFF028586187fef02858618,
- FFFF028586807fef02858680,
- FFFF028586e87fef028586e8,
- FFFF028587507fef02858750,
- FFFF028587b87fef028587b8,
- FFFF028588207fef02858820,
- FFFF028588887fef02858888,
- FFFF028588f07fef028588f0,
- FFFF028589587fef02858958,
- FFFF028589c07fef028589c0,
- FFFF02858a287fef02858a28,
- FFFF02858a907fef02858a90,
- FFFF02858af87fef02858af8,
- FFFF02858b607fef02858b60,
- FFFF02858bc87fef02858bc8,
- FFFF02858c307fef02858c30,
- FFFF02858c987fef02858c98,
- FFFF02858d007fef02858d00,
- FFFF02858d687fef02858d68,
- FFFF02858dd07fef02858dd0,
- FFFF02858e387fef02858e38,
- FFFF02858ea07fef02858ea0,
- FFFF02858f087fef02858f08,
- FFFF02858f707fef02858f70,
- FFFF02858fd87fef02858fd8,
- FFFF028590407fef02859040,
- FFFF028590a87fef028590a8,
- FFFF028591107fef02859110,
- FFFF028591787fef02859178,
- FFFF028591e07fef028591e0,
- FFFF028592487fef02859248,
- FFFF028592b07fef028592b0,
- FFFF028593187fef02859318,
- FFFF028593807fef02859380,
- FFFF028593e87fef028593e8,
- FFFF028594507fef02859450,
- FFFF028594b87fef028594b8,
- FFFF028595207fef02859520,
- FFFF028595887fef02859588,
- FFFF028595f07fef028595f0,
- FFFF028596587fef02859658,
- FFFF028596c07fef028596c0,
- FFFF028597287fef02859728,
- FFFF028597907fef02859790,
- FFFF028597f87fef028597f8,
- FFFF028598607fef02859860,
- FFFF028598c87fef028598c8,
- FFFF028599307fef02859930,
- FFFF028599987fef02859998,
- FFFF02859a007fef02859a00,
- FFFF02859a687fef02859a68,
- FFFF02859ad07fef02859ad0,
- FFFF02859b387fef02859b38,
- FFFF02859ba07fef02859ba0,
- FFFF02859c087fef02859c08,
- FFFF02859c707fef02859c70,
- FFFF02859cd87fef02859cd8,
- FFFF02859d407fef02859d40,
- FFFF02859da87fef02859da8,
- FFFF02859e107fef02859e10,
- FFFF02859e787fef02859e78,
- FFFF02859ee07fef02859ee0,
- FFFF02859f487fef02859f48,
- FFFF02859fb07fef02859fb0,
- FFFF0285a0187fef0285a018,
- FFFF0285a0807fef0285a080,
- FFFF0285a0e87fef0285a0e8,
- FFFF0285a1507fef0285a150,
- FFFF0285a1b87fef0285a1b8,
- FFFF0285a2207fef0285a220,
- FFFF0285a2887fef0285a288,
- FFFF0285a2f07fef0285a2f0,
- FFFF0285a3587fef0285a358,
- FFFF0285a3c07fef0285a3c0,
- FFFF0285a4287fef0285a428,
- FFFF0285a4907fef0285a490,
- FFFF0285a4f87fef0285a4f8,
- FFFF0285a5607fef0285a560,
- FFFF0285a5c87fef0285a5c8,
- FFFF0285a6307fef0285a630,
- FFFF0285a6987fef0285a698,
- FFFF0285a7007fef0285a700,
- FFFF0285a7687fef0285a768,
- FFFF0285a7d07fef0285a7d0,
- FFFF0285a8387fef0285a838,
- FFFF0285a8a07fef0285a8a0,
- FFFF0285a9087fef0285a908,
- FFFF0285a9707fef0285a970,
- FFFF0285a9d87fef0285a9d8,
- FFFF0285aa407fef0285aa40,
- FFFF0285aaa87fef0285aaa8,
- FFFF0285ab107fef0285ab10,
- FFFF0285ab787fef0285ab78,
- FFFF0285abe07fef0285abe0,
- FFFF0285ac487fef0285ac48,
- FFFF0285acb07fef0285acb0,
- FFFF0285ad187fef0285ad18,
- FFFF0285ad807fef0285ad80,
- FFFF0285ade87fef0285ade8,
- FFFF0285ae507fef0285ae50,
- FFFF0285aeb87fef0285aeb8,
- FFFF0285af207fef0285af20,
- FFFF0285af887fef0285af88,
- FFFF0285aff07fef0285aff0,
- FFFF0285b0587fef0285b058,
- FFFF0285b0c07fef0285b0c0,
- FFFF0285b1287fef0285b128,
- FFFF0285b1907fef0285b190,
- FFFF0285b1f87fef0285b1f8,
- FFFF0285b2607fef0285b260,
- FFFF0285b2c87fef0285b2c8,
- FFFF0285b3307fef0285b330,
- FFFF0285b3987fef0285b398,
- FFFF0285b4007fef0285b400,
- FFFF0285b4687fef0285b468,
- FFFF0285b4d07fef0285b4d0,
- FFFF0285b5387fef0285b538,
- FFFF0285b5a07fef0285b5a0,
- FFFF0285b6087fef0285b608,
- FFFF0285b6707fef0285b670,
- FFFF0285b6d87fef0285b6d8,
- FFFF0285b7407fef0285b740,
- FFFF0285b7a87fef0285b7a8,
- FFFF0285b8107fef0285b810,
+ FFFFf21a3c007fb0f21a3c00,
+ FFFFf21a3c687fb0f21a3c68,
+ FFFFf21a3cd07fb0f21a3cd0,
+ FFFFf21a3d387fb0f21a3d38,
+ FFFFf21a3da07fb0f21a3da0,
+ FFFFf21a3e087fb0f21a3e08,
+ FFFFf21a3e707fb0f21a3e70,
+ FFFFf21a3ed87fb0f21a3ed8,
+ FFFFf30048e07fb0f30048e0,
+ FFFFf30049487fb0f3004948,
+ FFFFf30049b07fb0f30049b0,
+ FFFFf3004a187fb0f3004a18,
+ FFFFf3004a807fb0f3004a80,
+ FFFFf3004ae87fb0f3004ae8,
+ FFFFf3004b507fb0f3004b50,
+ FFFFf3004bb87fb0f3004bb8,
+ FFFFf3004c207fb0f3004c20,
+ FFFFf3004c887fb0f3004c88,
+ FFFFf3004cf07fb0f3004cf0,
+ FFFFf3004d587fb0f3004d58,
+ FFFFf3004dc07fb0f3004dc0,
+ FFFFf3004e287fb0f3004e28,
+ FFFFf3004e907fb0f3004e90,
+ FFFFf3004ef87fb0f3004ef8,
+ FFFFf3004f607fb0f3004f60,
+ FFFFf3004fc87fb0f3004fc8,
+ FFFFf30050307fb0f3005030,
+ FFFFf30050987fb0f3005098,
+ FFFFf30051007fb0f3005100,
+ FFFFf30051687fb0f3005168,
+ FFFFf30051d07fb0f30051d0,
+ FFFFf30052387fb0f3005238,
+ FFFFf30052a07fb0f30052a0,
+ FFFFf30053087fb0f3005308,
+ FFFFf30053707fb0f3005370,
+ FFFFf30053d87fb0f30053d8,
+ FFFFf30054407fb0f3005440,
+ FFFFf30054a87fb0f30054a8,
+ FFFFf30055107fb0f3005510,
+ FFFFf30055787fb0f3005578,
+ FFFFf30055e07fb0f30055e0,
+ FFFFf30056487fb0f3005648,
+ FFFFf30056b07fb0f30056b0,
+ FFFFf30057187fb0f3005718,
+ FFFFf30057807fb0f3005780,
+ FFFFf30057e87fb0f30057e8,
+ FFFFf30058507fb0f3005850,
+ FFFFf30058b87fb0f30058b8,
+ FFFFf30059207fb0f3005920,
+ FFFFf30059887fb0f3005988,
+ FFFFf30059f07fb0f30059f0,
+ FFFFf3005a587fb0f3005a58,
+ FFFFf3005ac07fb0f3005ac0,
+ FFFFf3005b287fb0f3005b28,
+ FFFFf3005b907fb0f3005b90,
+ FFFFf3005bf87fb0f3005bf8,
+ FFFFf3005c607fb0f3005c60,
+ FFFFf3005cc87fb0f3005cc8,
+ FFFFf3005d307fb0f3005d30,
+ FFFFf3005d987fb0f3005d98,
+ FFFFf3005e007fb0f3005e00,
+ FFFFf3005e687fb0f3005e68,
+ FFFFf3005ed07fb0f3005ed0,
+ FFFFf3005f387fb0f3005f38,
+ FFFFf3005fa07fb0f3005fa0,
+ FFFFf30060087fb0f3006008,
+ FFFFf30060707fb0f3006070,
+ FFFFf30060d87fb0f30060d8,
+ FFFFf30061407fb0f3006140,
+ FFFFf30061a87fb0f30061a8,
+ FFFFf30062107fb0f3006210,
+ FFFFf30062787fb0f3006278,
+ FFFFf30062e07fb0f30062e0,
+ FFFFf30063487fb0f3006348,
+ FFFFf30063b07fb0f30063b0,
+ FFFFf30064187fb0f3006418,
+ FFFFf30064807fb0f3006480,
+ FFFFf30064e87fb0f30064e8,
+ FFFFf30065507fb0f3006550,
+ FFFFf30065b87fb0f30065b8,
+ FFFFf30066207fb0f3006620,
+ FFFFf30066887fb0f3006688,
+ FFFFf30066f07fb0f30066f0,
+ FFFFf30067587fb0f3006758,
+ FFFFf30067c07fb0f30067c0,
+ FFFFf30068287fb0f3006828,
+ FFFFf30068907fb0f3006890,
+ FFFFf30068f87fb0f30068f8,
+ FFFFf30069607fb0f3006960,
+ FFFFf30069c87fb0f30069c8,
+ FFFFf3006a307fb0f3006a30,
+ FFFFf3006a987fb0f3006a98,
+ FFFFf3006b007fb0f3006b00,
+ FFFFf3006b687fb0f3006b68,
+ FFFFf3006bd07fb0f3006bd0,
+ FFFFf3006c387fb0f3006c38,
+ FFFFf3006ca07fb0f3006ca0,
+ FFFFf3006d087fb0f3006d08,
+ FFFFf3006d707fb0f3006d70,
+ FFFFf3006dd87fb0f3006dd8,
+ FFFFf3006e407fb0f3006e40,
+ FFFFf3006ea87fb0f3006ea8,
+ FFFFf3006f107fb0f3006f10,
+ FFFFf3006f787fb0f3006f78,
+ FFFFf3006fe07fb0f3006fe0,
+ FFFFf30070487fb0f3007048,
+ FFFFf30070b07fb0f30070b0,
+ FFFFf30071187fb0f3007118,
+ FFFFf30071807fb0f3007180,
+ FFFFf30071e87fb0f30071e8,
+ FFFFf30072507fb0f3007250,
+ FFFFf30072b87fb0f30072b8,
+ FFFFf30073207fb0f3007320,
+ FFFFf30073887fb0f3007388,
+ FFFFf30073f07fb0f30073f0,
+ FFFFf30074587fb0f3007458,
+ FFFFf30074c07fb0f30074c0,
+ FFFFf30075287fb0f3007528,
+ FFFFf30075907fb0f3007590,
+ FFFFf30075f87fb0f30075f8,
+ FFFFf30076607fb0f3007660,
+ FFFFf30076c87fb0f30076c8,
+ FFFFf30077307fb0f3007730,
+ FFFFf30077987fb0f3007798,
+ FFFFf30078007fb0f3007800,
+ FFFFf30078687fb0f3007868,
+ FFFFf30078d07fb0f30078d0,
+ FFFFf30079387fb0f3007938,
+ FFFFf30079a07fb0f30079a0,
+ FFFFf3007a087fb0f3007a08,
+ FFFFf3007a707fb0f3007a70,
+ FFFFf3007ad87fb0f3007ad8,
+ FFFFf3007b407fb0f3007b40,
+ FFFFf3007ba87fb0f3007ba8,
+ FFFFf3007c107fb0f3007c10,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -1999,132 +1999,132 @@
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
- FFF403100a307fef03100a30 /* PBXTargetDependency */ = {
+ FFF4f29940a07fb0f29940a0 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFA031431707fef03143170 /* PxFoundation */;
- targetProxy = FFF5031431707fef03143170 /* PBXContainerItemProxy */;
+ target = FFFAf298c0307fb0f298c030 /* PxFoundation */;
+ targetProxy = FFF5f298c0307fb0f298c030 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of PxFoundation */
- FFFF039451187fef03945118 /* src/PsAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD039451187fef03945118 /* src/PsAllocator.cpp */; };
- FFFF039451807fef03945180 /* src/PsAssert.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD039451807fef03945180 /* src/PsAssert.cpp */; };
- FFFF039451e87fef039451e8 /* src/PsFoundation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD039451e87fef039451e8 /* src/PsFoundation.cpp */; };
- FFFF039452507fef03945250 /* src/PsMathUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD039452507fef03945250 /* src/PsMathUtils.cpp */; };
- FFFF039452b87fef039452b8 /* src/PsString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD039452b87fef039452b8 /* src/PsString.cpp */; };
- FFFF039453207fef03945320 /* src/PsTempAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD039453207fef03945320 /* src/PsTempAllocator.cpp */; };
- FFFF039453887fef03945388 /* src/PsUtilities.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD039453887fef03945388 /* src/PsUtilities.cpp */; };
- FFFF039453f07fef039453f0 /* src/unix/PsUnixAtomic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD039453f07fef039453f0 /* src/unix/PsUnixAtomic.cpp */; };
- FFFF039454587fef03945458 /* src/unix/PsUnixCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD039454587fef03945458 /* src/unix/PsUnixCpu.cpp */; };
- FFFF039454c07fef039454c0 /* src/unix/PsUnixFPU.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD039454c07fef039454c0 /* src/unix/PsUnixFPU.cpp */; };
- FFFF039455287fef03945528 /* src/unix/PsUnixMutex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD039455287fef03945528 /* src/unix/PsUnixMutex.cpp */; };
- FFFF039455907fef03945590 /* src/unix/PsUnixPrintString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD039455907fef03945590 /* src/unix/PsUnixPrintString.cpp */; };
- FFFF039455f87fef039455f8 /* src/unix/PsUnixSList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD039455f87fef039455f8 /* src/unix/PsUnixSList.cpp */; };
- FFFF039456607fef03945660 /* src/unix/PsUnixSocket.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD039456607fef03945660 /* src/unix/PsUnixSocket.cpp */; };
- FFFF039456c87fef039456c8 /* src/unix/PsUnixSync.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD039456c87fef039456c8 /* src/unix/PsUnixSync.cpp */; };
- FFFF039457307fef03945730 /* src/unix/PsUnixThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD039457307fef03945730 /* src/unix/PsUnixThread.cpp */; };
- FFFF039457987fef03945798 /* src/unix/PsUnixTime.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD039457987fef03945798 /* src/unix/PsUnixTime.cpp */; };
+ FFFFf2192b187fb0f2192b18 /* src/PsAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf2192b187fb0f2192b18 /* src/PsAllocator.cpp */; };
+ FFFFf2192b807fb0f2192b80 /* src/PsAssert.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf2192b807fb0f2192b80 /* src/PsAssert.cpp */; };
+ FFFFf2192be87fb0f2192be8 /* src/PsFoundation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf2192be87fb0f2192be8 /* src/PsFoundation.cpp */; };
+ FFFFf2192c507fb0f2192c50 /* src/PsMathUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf2192c507fb0f2192c50 /* src/PsMathUtils.cpp */; };
+ FFFFf2192cb87fb0f2192cb8 /* src/PsString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf2192cb87fb0f2192cb8 /* src/PsString.cpp */; };
+ FFFFf2192d207fb0f2192d20 /* src/PsTempAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf2192d207fb0f2192d20 /* src/PsTempAllocator.cpp */; };
+ FFFFf2192d887fb0f2192d88 /* src/PsUtilities.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf2192d887fb0f2192d88 /* src/PsUtilities.cpp */; };
+ FFFFf2192df07fb0f2192df0 /* src/unix/PsUnixAtomic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf2192df07fb0f2192df0 /* src/unix/PsUnixAtomic.cpp */; };
+ FFFFf2192e587fb0f2192e58 /* src/unix/PsUnixCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf2192e587fb0f2192e58 /* src/unix/PsUnixCpu.cpp */; };
+ FFFFf2192ec07fb0f2192ec0 /* src/unix/PsUnixFPU.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf2192ec07fb0f2192ec0 /* src/unix/PsUnixFPU.cpp */; };
+ FFFFf2192f287fb0f2192f28 /* src/unix/PsUnixMutex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf2192f287fb0f2192f28 /* src/unix/PsUnixMutex.cpp */; };
+ FFFFf2192f907fb0f2192f90 /* src/unix/PsUnixPrintString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf2192f907fb0f2192f90 /* src/unix/PsUnixPrintString.cpp */; };
+ FFFFf2192ff87fb0f2192ff8 /* src/unix/PsUnixSList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf2192ff87fb0f2192ff8 /* src/unix/PsUnixSList.cpp */; };
+ FFFFf21930607fb0f2193060 /* src/unix/PsUnixSocket.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21930607fb0f2193060 /* src/unix/PsUnixSocket.cpp */; };
+ FFFFf21930c87fb0f21930c8 /* src/unix/PsUnixSync.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21930c87fb0f21930c8 /* src/unix/PsUnixSync.cpp */; };
+ FFFFf21931307fb0f2193130 /* src/unix/PsUnixThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21931307fb0f2193130 /* src/unix/PsUnixThread.cpp */; };
+ FFFFf21931987fb0f2193198 /* src/unix/PsUnixTime.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21931987fb0f2193198 /* src/unix/PsUnixTime.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFD031431707fef03143170 /* PxFoundation */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxFoundation"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFD0393c8007fef0393c800 /* Px.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Px.h"; path = "../../../../PxShared/include/foundation/Px.h"; sourceTree = SOURCE_ROOT; };
- FFFD0393c8687fef0393c868 /* PxAllocatorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAllocatorCallback.h"; path = "../../../../PxShared/include/foundation/PxAllocatorCallback.h"; sourceTree = SOURCE_ROOT; };
- FFFD0393c8d07fef0393c8d0 /* PxAssert.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAssert.h"; path = "../../../../PxShared/include/foundation/PxAssert.h"; sourceTree = SOURCE_ROOT; };
- FFFD0393c9387fef0393c938 /* PxBitAndData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBitAndData.h"; path = "../../../../PxShared/include/foundation/PxBitAndData.h"; sourceTree = SOURCE_ROOT; };
- FFFD0393c9a07fef0393c9a0 /* PxBounds3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBounds3.h"; path = "../../../../PxShared/include/foundation/PxBounds3.h"; sourceTree = SOURCE_ROOT; };
- FFFD0393ca087fef0393ca08 /* PxErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrorCallback.h"; path = "../../../../PxShared/include/foundation/PxErrorCallback.h"; sourceTree = SOURCE_ROOT; };
- FFFD0393ca707fef0393ca70 /* PxErrors.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrors.h"; path = "../../../../PxShared/include/foundation/PxErrors.h"; sourceTree = SOURCE_ROOT; };
- FFFD0393cad87fef0393cad8 /* PxFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFlags.h"; path = "../../../../PxShared/include/foundation/PxFlags.h"; sourceTree = SOURCE_ROOT; };
- FFFD0393cb407fef0393cb40 /* PxFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundation.h"; path = "../../../../PxShared/include/foundation/PxFoundation.h"; sourceTree = SOURCE_ROOT; };
- FFFD0393cba87fef0393cba8 /* PxFoundationVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundationVersion.h"; path = "../../../../PxShared/include/foundation/PxFoundationVersion.h"; sourceTree = SOURCE_ROOT; };
- FFFD0393cc107fef0393cc10 /* PxIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIO.h"; path = "../../../../PxShared/include/foundation/PxIO.h"; sourceTree = SOURCE_ROOT; };
- FFFD0393cc787fef0393cc78 /* PxIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIntrinsics.h"; path = "../../../../PxShared/include/foundation/PxIntrinsics.h"; sourceTree = SOURCE_ROOT; };
- FFFD0393cce07fef0393cce0 /* PxMat33.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat33.h"; path = "../../../../PxShared/include/foundation/PxMat33.h"; sourceTree = SOURCE_ROOT; };
- FFFD0393cd487fef0393cd48 /* PxMat44.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat44.h"; path = "../../../../PxShared/include/foundation/PxMat44.h"; sourceTree = SOURCE_ROOT; };
- FFFD0393cdb07fef0393cdb0 /* PxMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMath.h"; path = "../../../../PxShared/include/foundation/PxMath.h"; sourceTree = SOURCE_ROOT; };
- FFFD0393ce187fef0393ce18 /* PxMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMathUtils.h"; path = "../../../../PxShared/include/foundation/PxMathUtils.h"; sourceTree = SOURCE_ROOT; };
- FFFD0393ce807fef0393ce80 /* PxMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMemory.h"; path = "../../../../PxShared/include/foundation/PxMemory.h"; sourceTree = SOURCE_ROOT; };
- FFFD0393cee87fef0393cee8 /* PxPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPlane.h"; path = "../../../../PxShared/include/foundation/PxPlane.h"; sourceTree = SOURCE_ROOT; };
- FFFD0393cf507fef0393cf50 /* PxPreprocessor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPreprocessor.h"; path = "../../../../PxShared/include/foundation/PxPreprocessor.h"; sourceTree = SOURCE_ROOT; };
- FFFD0393cfb87fef0393cfb8 /* PxProfiler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxProfiler.h"; path = "../../../../PxShared/include/foundation/PxProfiler.h"; sourceTree = SOURCE_ROOT; };
- FFFD0393d0207fef0393d020 /* PxQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQuat.h"; path = "../../../../PxShared/include/foundation/PxQuat.h"; sourceTree = SOURCE_ROOT; };
- FFFD0393d0887fef0393d088 /* PxSimpleTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleTypes.h"; path = "../../../../PxShared/include/foundation/PxSimpleTypes.h"; sourceTree = SOURCE_ROOT; };
- FFFD0393d0f07fef0393d0f0 /* PxStrideIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStrideIterator.h"; path = "../../../../PxShared/include/foundation/PxStrideIterator.h"; sourceTree = SOURCE_ROOT; };
- FFFD0393d1587fef0393d158 /* PxTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTransform.h"; path = "../../../../PxShared/include/foundation/PxTransform.h"; sourceTree = SOURCE_ROOT; };
- FFFD0393d1c07fef0393d1c0 /* PxUnionCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxUnionCast.h"; path = "../../../../PxShared/include/foundation/PxUnionCast.h"; sourceTree = SOURCE_ROOT; };
- FFFD0393d2287fef0393d228 /* PxVec2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec2.h"; path = "../../../../PxShared/include/foundation/PxVec2.h"; sourceTree = SOURCE_ROOT; };
- FFFD0393d2907fef0393d290 /* PxVec3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec3.h"; path = "../../../../PxShared/include/foundation/PxVec3.h"; sourceTree = SOURCE_ROOT; };
- FFFD0393d2f87fef0393d2f8 /* PxVec4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec4.h"; path = "../../../../PxShared/include/foundation/PxVec4.h"; sourceTree = SOURCE_ROOT; };
- FFFD0393d3607fef0393d360 /* unix/PxUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "unix/PxUnixIntrinsics.h"; path = "../../../../PxShared/include/foundation/unix/PxUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; };
- FFFD03943e007fef03943e00 /* include/Ps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/Ps.h"; path = "../../../../PxShared/src/foundation/include/Ps.h"; sourceTree = SOURCE_ROOT; };
- FFFD03943e687fef03943e68 /* include/PsAlignedMalloc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlignedMalloc.h"; path = "../../../../PxShared/src/foundation/include/PsAlignedMalloc.h"; sourceTree = SOURCE_ROOT; };
- FFFD03943ed07fef03943ed0 /* include/PsAlloca.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlloca.h"; path = "../../../../PxShared/src/foundation/include/PsAlloca.h"; sourceTree = SOURCE_ROOT; };
- FFFD03943f387fef03943f38 /* include/PsAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsAllocator.h"; sourceTree = SOURCE_ROOT; };
- FFFD03943fa07fef03943fa0 /* include/PsAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAoS.h"; path = "../../../../PxShared/src/foundation/include/PsAoS.h"; sourceTree = SOURCE_ROOT; };
- FFFD039440087fef03944008 /* include/PsArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsArray.h"; path = "../../../../PxShared/src/foundation/include/PsArray.h"; sourceTree = SOURCE_ROOT; };
- FFFD039440707fef03944070 /* include/PsAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAtomic.h"; path = "../../../../PxShared/src/foundation/include/PsAtomic.h"; sourceTree = SOURCE_ROOT; };
- FFFD039440d87fef039440d8 /* include/PsBasicTemplates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBasicTemplates.h"; path = "../../../../PxShared/src/foundation/include/PsBasicTemplates.h"; sourceTree = SOURCE_ROOT; };
- FFFD039441407fef03944140 /* include/PsBitUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBitUtils.h"; path = "../../../../PxShared/src/foundation/include/PsBitUtils.h"; sourceTree = SOURCE_ROOT; };
- FFFD039441a87fef039441a8 /* include/PsBroadcast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBroadcast.h"; path = "../../../../PxShared/src/foundation/include/PsBroadcast.h"; sourceTree = SOURCE_ROOT; };
- FFFD039442107fef03944210 /* include/PsCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsCpu.h"; path = "../../../../PxShared/src/foundation/include/PsCpu.h"; sourceTree = SOURCE_ROOT; };
- FFFD039442787fef03944278 /* include/PsFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFPU.h"; path = "../../../../PxShared/src/foundation/include/PsFPU.h"; sourceTree = SOURCE_ROOT; };
- FFFD039442e07fef039442e0 /* include/PsFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFoundation.h"; path = "../../../../PxShared/src/foundation/include/PsFoundation.h"; sourceTree = SOURCE_ROOT; };
- FFFD039443487fef03944348 /* include/PsHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHash.h"; path = "../../../../PxShared/src/foundation/include/PsHash.h"; sourceTree = SOURCE_ROOT; };
- FFFD039443b07fef039443b0 /* include/PsHashInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashInternals.h"; path = "../../../../PxShared/src/foundation/include/PsHashInternals.h"; sourceTree = SOURCE_ROOT; };
- FFFD039444187fef03944418 /* include/PsHashMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashMap.h"; path = "../../../../PxShared/src/foundation/include/PsHashMap.h"; sourceTree = SOURCE_ROOT; };
- FFFD039444807fef03944480 /* include/PsHashSet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashSet.h"; path = "../../../../PxShared/src/foundation/include/PsHashSet.h"; sourceTree = SOURCE_ROOT; };
- FFFD039444e87fef039444e8 /* include/PsInlineAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAllocator.h"; sourceTree = SOURCE_ROOT; };
- FFFD039445507fef03944550 /* include/PsInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAoS.h"; sourceTree = SOURCE_ROOT; };
- FFFD039445b87fef039445b8 /* include/PsInlineArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineArray.h"; path = "../../../../PxShared/src/foundation/include/PsInlineArray.h"; sourceTree = SOURCE_ROOT; };
- FFFD039446207fef03944620 /* include/PsIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/PsIntrinsics.h"; sourceTree = SOURCE_ROOT; };
- FFFD039446887fef03944688 /* include/PsMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMathUtils.h"; path = "../../../../PxShared/src/foundation/include/PsMathUtils.h"; sourceTree = SOURCE_ROOT; };
- FFFD039446f07fef039446f0 /* include/PsMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMutex.h"; path = "../../../../PxShared/src/foundation/include/PsMutex.h"; sourceTree = SOURCE_ROOT; };
- FFFD039447587fef03944758 /* include/PsPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPool.h"; path = "../../../../PxShared/src/foundation/include/PsPool.h"; sourceTree = SOURCE_ROOT; };
- FFFD039447c07fef039447c0 /* include/PsSList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSList.h"; path = "../../../../PxShared/src/foundation/include/PsSList.h"; sourceTree = SOURCE_ROOT; };
- FFFD039448287fef03944828 /* include/PsSocket.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSocket.h"; path = "../../../../PxShared/src/foundation/include/PsSocket.h"; sourceTree = SOURCE_ROOT; };
- FFFD039448907fef03944890 /* include/PsSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSort.h"; path = "../../../../PxShared/src/foundation/include/PsSort.h"; sourceTree = SOURCE_ROOT; };
- FFFD039448f87fef039448f8 /* include/PsSortInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSortInternals.h"; path = "../../../../PxShared/src/foundation/include/PsSortInternals.h"; sourceTree = SOURCE_ROOT; };
- FFFD039449607fef03944960 /* include/PsString.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsString.h"; path = "../../../../PxShared/src/foundation/include/PsString.h"; sourceTree = SOURCE_ROOT; };
- FFFD039449c87fef039449c8 /* include/PsSync.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSync.h"; path = "../../../../PxShared/src/foundation/include/PsSync.h"; sourceTree = SOURCE_ROOT; };
- FFFD03944a307fef03944a30 /* include/PsTempAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTempAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsTempAllocator.h"; sourceTree = SOURCE_ROOT; };
- FFFD03944a987fef03944a98 /* include/PsThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsThread.h"; path = "../../../../PxShared/src/foundation/include/PsThread.h"; sourceTree = SOURCE_ROOT; };
- FFFD03944b007fef03944b00 /* include/PsTime.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTime.h"; path = "../../../../PxShared/src/foundation/include/PsTime.h"; sourceTree = SOURCE_ROOT; };
- FFFD03944b687fef03944b68 /* include/PsUserAllocated.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUserAllocated.h"; path = "../../../../PxShared/src/foundation/include/PsUserAllocated.h"; sourceTree = SOURCE_ROOT; };
- FFFD03944bd07fef03944bd0 /* include/PsUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsUtilities.h"; sourceTree = SOURCE_ROOT; };
- FFFD03944c387fef03944c38 /* include/PsVecMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMath.h"; path = "../../../../PxShared/src/foundation/include/PsVecMath.h"; sourceTree = SOURCE_ROOT; };
- FFFD03944ca07fef03944ca0 /* include/PsVecMathAoSScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalar.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalar.h"; sourceTree = SOURCE_ROOT; };
- FFFD03944d087fef03944d08 /* include/PsVecMathAoSScalarInline.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalarInline.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalarInline.h"; sourceTree = SOURCE_ROOT; };
- FFFD03944d707fef03944d70 /* include/PsVecMathSSE.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathSSE.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathSSE.h"; sourceTree = SOURCE_ROOT; };
- FFFD03944dd87fef03944dd8 /* include/PsVecMathUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathUtilities.h"; sourceTree = SOURCE_ROOT; };
- FFFD03944e407fef03944e40 /* include/PsVecQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecQuat.h"; path = "../../../../PxShared/src/foundation/include/PsVecQuat.h"; sourceTree = SOURCE_ROOT; };
- FFFD03944ea87fef03944ea8 /* include/PsVecTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecTransform.h"; path = "../../../../PxShared/src/foundation/include/PsVecTransform.h"; sourceTree = SOURCE_ROOT; };
- FFFD03944f107fef03944f10 /* include/unix/PsUnixAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixAoS.h"; sourceTree = SOURCE_ROOT; };
- FFFD03944f787fef03944f78 /* include/unix/PsUnixFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixFPU.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixFPU.h"; sourceTree = SOURCE_ROOT; };
- FFFD03944fe07fef03944fe0 /* include/unix/PsUnixInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixInlineAoS.h"; sourceTree = SOURCE_ROOT; };
- FFFD039450487fef03945048 /* include/unix/PsUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; };
- FFFD039450b07fef039450b0 /* include/unix/PsUnixTrigConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixTrigConstants.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixTrigConstants.h"; sourceTree = SOURCE_ROOT; };
- FFFD039451187fef03945118 /* src/PsAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsAllocator.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD039451807fef03945180 /* src/PsAssert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAssert.cpp"; path = "../../../../PxShared/src/foundation/src/PsAssert.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD039451e87fef039451e8 /* src/PsFoundation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsFoundation.cpp"; path = "../../../../PxShared/src/foundation/src/PsFoundation.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD039452507fef03945250 /* src/PsMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsMathUtils.cpp"; path = "../../../../PxShared/src/foundation/src/PsMathUtils.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD039452b87fef039452b8 /* src/PsString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsString.cpp"; path = "../../../../PxShared/src/foundation/src/PsString.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD039453207fef03945320 /* src/PsTempAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsTempAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsTempAllocator.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD039453887fef03945388 /* src/PsUtilities.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsUtilities.cpp"; path = "../../../../PxShared/src/foundation/src/PsUtilities.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD039453f07fef039453f0 /* src/unix/PsUnixAtomic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixAtomic.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixAtomic.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD039454587fef03945458 /* src/unix/PsUnixCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixCpu.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixCpu.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD039454c07fef039454c0 /* src/unix/PsUnixFPU.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixFPU.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixFPU.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD039455287fef03945528 /* src/unix/PsUnixMutex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixMutex.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixMutex.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD039455907fef03945590 /* src/unix/PsUnixPrintString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixPrintString.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixPrintString.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD039455f87fef039455f8 /* src/unix/PsUnixSList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSList.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSList.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD039456607fef03945660 /* src/unix/PsUnixSocket.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSocket.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSocket.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD039456c87fef039456c8 /* src/unix/PsUnixSync.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSync.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSync.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD039457307fef03945730 /* src/unix/PsUnixThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixThread.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixThread.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD039457987fef03945798 /* src/unix/PsUnixTime.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixTime.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixTime.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf298c0307fb0f298c030 /* PxFoundation */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxFoundation"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFDf218a2007fb0f218a200 /* Px.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Px.h"; path = "../../../../PxShared/include/foundation/Px.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf218a2687fb0f218a268 /* PxAllocatorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAllocatorCallback.h"; path = "../../../../PxShared/include/foundation/PxAllocatorCallback.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf218a2d07fb0f218a2d0 /* PxAssert.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAssert.h"; path = "../../../../PxShared/include/foundation/PxAssert.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf218a3387fb0f218a338 /* PxBitAndData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBitAndData.h"; path = "../../../../PxShared/include/foundation/PxBitAndData.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf218a3a07fb0f218a3a0 /* PxBounds3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBounds3.h"; path = "../../../../PxShared/include/foundation/PxBounds3.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf218a4087fb0f218a408 /* PxErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrorCallback.h"; path = "../../../../PxShared/include/foundation/PxErrorCallback.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf218a4707fb0f218a470 /* PxErrors.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrors.h"; path = "../../../../PxShared/include/foundation/PxErrors.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf218a4d87fb0f218a4d8 /* PxFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFlags.h"; path = "../../../../PxShared/include/foundation/PxFlags.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf218a5407fb0f218a540 /* PxFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundation.h"; path = "../../../../PxShared/include/foundation/PxFoundation.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf218a5a87fb0f218a5a8 /* PxFoundationVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundationVersion.h"; path = "../../../../PxShared/include/foundation/PxFoundationVersion.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf218a6107fb0f218a610 /* PxIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIO.h"; path = "../../../../PxShared/include/foundation/PxIO.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf218a6787fb0f218a678 /* PxIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIntrinsics.h"; path = "../../../../PxShared/include/foundation/PxIntrinsics.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf218a6e07fb0f218a6e0 /* PxMat33.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat33.h"; path = "../../../../PxShared/include/foundation/PxMat33.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf218a7487fb0f218a748 /* PxMat44.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat44.h"; path = "../../../../PxShared/include/foundation/PxMat44.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf218a7b07fb0f218a7b0 /* PxMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMath.h"; path = "../../../../PxShared/include/foundation/PxMath.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf218a8187fb0f218a818 /* PxMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMathUtils.h"; path = "../../../../PxShared/include/foundation/PxMathUtils.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf218a8807fb0f218a880 /* PxMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMemory.h"; path = "../../../../PxShared/include/foundation/PxMemory.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf218a8e87fb0f218a8e8 /* PxPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPlane.h"; path = "../../../../PxShared/include/foundation/PxPlane.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf218a9507fb0f218a950 /* PxPreprocessor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPreprocessor.h"; path = "../../../../PxShared/include/foundation/PxPreprocessor.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf218a9b87fb0f218a9b8 /* PxProfiler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxProfiler.h"; path = "../../../../PxShared/include/foundation/PxProfiler.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf218aa207fb0f218aa20 /* PxQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQuat.h"; path = "../../../../PxShared/include/foundation/PxQuat.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf218aa887fb0f218aa88 /* PxSimpleTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleTypes.h"; path = "../../../../PxShared/include/foundation/PxSimpleTypes.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf218aaf07fb0f218aaf0 /* PxStrideIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStrideIterator.h"; path = "../../../../PxShared/include/foundation/PxStrideIterator.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf218ab587fb0f218ab58 /* PxTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTransform.h"; path = "../../../../PxShared/include/foundation/PxTransform.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf218abc07fb0f218abc0 /* PxUnionCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxUnionCast.h"; path = "../../../../PxShared/include/foundation/PxUnionCast.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf218ac287fb0f218ac28 /* PxVec2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec2.h"; path = "../../../../PxShared/include/foundation/PxVec2.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf218ac907fb0f218ac90 /* PxVec3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec3.h"; path = "../../../../PxShared/include/foundation/PxVec3.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf218acf87fb0f218acf8 /* PxVec4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec4.h"; path = "../../../../PxShared/include/foundation/PxVec4.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf218ad607fb0f218ad60 /* unix/PxUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "unix/PxUnixIntrinsics.h"; path = "../../../../PxShared/include/foundation/unix/PxUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21918007fb0f2191800 /* include/Ps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/Ps.h"; path = "../../../../PxShared/src/foundation/include/Ps.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21918687fb0f2191868 /* include/PsAlignedMalloc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlignedMalloc.h"; path = "../../../../PxShared/src/foundation/include/PsAlignedMalloc.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21918d07fb0f21918d0 /* include/PsAlloca.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlloca.h"; path = "../../../../PxShared/src/foundation/include/PsAlloca.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21919387fb0f2191938 /* include/PsAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsAllocator.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21919a07fb0f21919a0 /* include/PsAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAoS.h"; path = "../../../../PxShared/src/foundation/include/PsAoS.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2191a087fb0f2191a08 /* include/PsArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsArray.h"; path = "../../../../PxShared/src/foundation/include/PsArray.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2191a707fb0f2191a70 /* include/PsAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAtomic.h"; path = "../../../../PxShared/src/foundation/include/PsAtomic.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2191ad87fb0f2191ad8 /* include/PsBasicTemplates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBasicTemplates.h"; path = "../../../../PxShared/src/foundation/include/PsBasicTemplates.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2191b407fb0f2191b40 /* include/PsBitUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBitUtils.h"; path = "../../../../PxShared/src/foundation/include/PsBitUtils.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2191ba87fb0f2191ba8 /* include/PsBroadcast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBroadcast.h"; path = "../../../../PxShared/src/foundation/include/PsBroadcast.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2191c107fb0f2191c10 /* include/PsCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsCpu.h"; path = "../../../../PxShared/src/foundation/include/PsCpu.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2191c787fb0f2191c78 /* include/PsFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFPU.h"; path = "../../../../PxShared/src/foundation/include/PsFPU.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2191ce07fb0f2191ce0 /* include/PsFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFoundation.h"; path = "../../../../PxShared/src/foundation/include/PsFoundation.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2191d487fb0f2191d48 /* include/PsHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHash.h"; path = "../../../../PxShared/src/foundation/include/PsHash.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2191db07fb0f2191db0 /* include/PsHashInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashInternals.h"; path = "../../../../PxShared/src/foundation/include/PsHashInternals.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2191e187fb0f2191e18 /* include/PsHashMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashMap.h"; path = "../../../../PxShared/src/foundation/include/PsHashMap.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2191e807fb0f2191e80 /* include/PsHashSet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashSet.h"; path = "../../../../PxShared/src/foundation/include/PsHashSet.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2191ee87fb0f2191ee8 /* include/PsInlineAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAllocator.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2191f507fb0f2191f50 /* include/PsInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAoS.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2191fb87fb0f2191fb8 /* include/PsInlineArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineArray.h"; path = "../../../../PxShared/src/foundation/include/PsInlineArray.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21920207fb0f2192020 /* include/PsIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/PsIntrinsics.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21920887fb0f2192088 /* include/PsMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMathUtils.h"; path = "../../../../PxShared/src/foundation/include/PsMathUtils.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21920f07fb0f21920f0 /* include/PsMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMutex.h"; path = "../../../../PxShared/src/foundation/include/PsMutex.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21921587fb0f2192158 /* include/PsPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPool.h"; path = "../../../../PxShared/src/foundation/include/PsPool.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21921c07fb0f21921c0 /* include/PsSList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSList.h"; path = "../../../../PxShared/src/foundation/include/PsSList.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21922287fb0f2192228 /* include/PsSocket.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSocket.h"; path = "../../../../PxShared/src/foundation/include/PsSocket.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21922907fb0f2192290 /* include/PsSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSort.h"; path = "../../../../PxShared/src/foundation/include/PsSort.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21922f87fb0f21922f8 /* include/PsSortInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSortInternals.h"; path = "../../../../PxShared/src/foundation/include/PsSortInternals.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21923607fb0f2192360 /* include/PsString.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsString.h"; path = "../../../../PxShared/src/foundation/include/PsString.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21923c87fb0f21923c8 /* include/PsSync.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSync.h"; path = "../../../../PxShared/src/foundation/include/PsSync.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21924307fb0f2192430 /* include/PsTempAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTempAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsTempAllocator.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21924987fb0f2192498 /* include/PsThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsThread.h"; path = "../../../../PxShared/src/foundation/include/PsThread.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21925007fb0f2192500 /* include/PsTime.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTime.h"; path = "../../../../PxShared/src/foundation/include/PsTime.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21925687fb0f2192568 /* include/PsUserAllocated.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUserAllocated.h"; path = "../../../../PxShared/src/foundation/include/PsUserAllocated.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21925d07fb0f21925d0 /* include/PsUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsUtilities.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21926387fb0f2192638 /* include/PsVecMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMath.h"; path = "../../../../PxShared/src/foundation/include/PsVecMath.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21926a07fb0f21926a0 /* include/PsVecMathAoSScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalar.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalar.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21927087fb0f2192708 /* include/PsVecMathAoSScalarInline.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalarInline.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalarInline.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21927707fb0f2192770 /* include/PsVecMathSSE.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathSSE.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathSSE.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21927d87fb0f21927d8 /* include/PsVecMathUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathUtilities.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21928407fb0f2192840 /* include/PsVecQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecQuat.h"; path = "../../../../PxShared/src/foundation/include/PsVecQuat.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21928a87fb0f21928a8 /* include/PsVecTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecTransform.h"; path = "../../../../PxShared/src/foundation/include/PsVecTransform.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21929107fb0f2192910 /* include/unix/PsUnixAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixAoS.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21929787fb0f2192978 /* include/unix/PsUnixFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixFPU.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixFPU.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21929e07fb0f21929e0 /* include/unix/PsUnixInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixInlineAoS.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2192a487fb0f2192a48 /* include/unix/PsUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2192ab07fb0f2192ab0 /* include/unix/PsUnixTrigConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixTrigConstants.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixTrigConstants.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2192b187fb0f2192b18 /* src/PsAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsAllocator.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2192b807fb0f2192b80 /* src/PsAssert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAssert.cpp"; path = "../../../../PxShared/src/foundation/src/PsAssert.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2192be87fb0f2192be8 /* src/PsFoundation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsFoundation.cpp"; path = "../../../../PxShared/src/foundation/src/PsFoundation.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2192c507fb0f2192c50 /* src/PsMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsMathUtils.cpp"; path = "../../../../PxShared/src/foundation/src/PsMathUtils.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2192cb87fb0f2192cb8 /* src/PsString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsString.cpp"; path = "../../../../PxShared/src/foundation/src/PsString.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2192d207fb0f2192d20 /* src/PsTempAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsTempAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsTempAllocator.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2192d887fb0f2192d88 /* src/PsUtilities.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsUtilities.cpp"; path = "../../../../PxShared/src/foundation/src/PsUtilities.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2192df07fb0f2192df0 /* src/unix/PsUnixAtomic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixAtomic.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixAtomic.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2192e587fb0f2192e58 /* src/unix/PsUnixCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixCpu.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixCpu.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2192ec07fb0f2192ec0 /* src/unix/PsUnixFPU.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixFPU.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixFPU.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2192f287fb0f2192f28 /* src/unix/PsUnixMutex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixMutex.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixMutex.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2192f907fb0f2192f90 /* src/unix/PsUnixPrintString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixPrintString.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixPrintString.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2192ff87fb0f2192ff8 /* src/unix/PsUnixSList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSList.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSList.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21930607fb0f2193060 /* src/unix/PsUnixSocket.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSocket.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSocket.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21930c87fb0f21930c8 /* src/unix/PsUnixSync.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSync.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSync.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21931307fb0f2193130 /* src/unix/PsUnixThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixThread.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixThread.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21931987fb0f2193198 /* 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 */
- FFF2031431707fef03143170 /* Resources */ = {
+ FFF2f298c0307fb0f298c030 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2134,7 +2134,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFC031431707fef03143170 /* Frameworks */ = {
+ FFFCf298c0307fb0f298c030 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2144,27 +2144,27 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF8031431707fef03143170 /* Sources */ = {
+ FFF8f298c0307fb0f298c030 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFF039451187fef03945118,
- FFFF039451807fef03945180,
- FFFF039451e87fef039451e8,
- FFFF039452507fef03945250,
- FFFF039452b87fef039452b8,
- FFFF039453207fef03945320,
- FFFF039453887fef03945388,
- FFFF039453f07fef039453f0,
- FFFF039454587fef03945458,
- FFFF039454c07fef039454c0,
- FFFF039455287fef03945528,
- FFFF039455907fef03945590,
- FFFF039455f87fef039455f8,
- FFFF039456607fef03945660,
- FFFF039456c87fef039456c8,
- FFFF039457307fef03945730,
- FFFF039457987fef03945798,
+ FFFFf2192b187fb0f2192b18,
+ FFFFf2192b807fb0f2192b80,
+ FFFFf2192be87fb0f2192be8,
+ FFFFf2192c507fb0f2192c50,
+ FFFFf2192cb87fb0f2192cb8,
+ FFFFf2192d207fb0f2192d20,
+ FFFFf2192d887fb0f2192d88,
+ FFFFf2192df07fb0f2192df0,
+ FFFFf2192e587fb0f2192e58,
+ FFFFf2192ec07fb0f2192ec0,
+ FFFFf2192f287fb0f2192f28,
+ FFFFf2192f907fb0f2192f90,
+ FFFFf2192ff87fb0f2192ff8,
+ FFFFf21930607fb0f2193060,
+ FFFFf21930c87fb0f21930c8,
+ FFFFf21931307fb0f2193130,
+ FFFFf21931987fb0f2193198,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -2176,103 +2176,103 @@
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of PxPvdSDK */
- FFFF028701a87fef028701a8 /* src/PxProfileEventImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD028701a87fef028701a8 /* src/PxProfileEventImpl.cpp */; };
- FFFF028702107fef02870210 /* src/PxPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD028702107fef02870210 /* src/PxPvd.cpp */; };
- FFFF028702787fef02870278 /* src/PxPvdDataStream.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD028702787fef02870278 /* src/PxPvdDataStream.cpp */; };
- FFFF028702e07fef028702e0 /* src/PxPvdDefaultFileTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD028702e07fef028702e0 /* src/PxPvdDefaultFileTransport.cpp */; };
- FFFF028703487fef02870348 /* src/PxPvdDefaultSocketTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD028703487fef02870348 /* src/PxPvdDefaultSocketTransport.cpp */; };
- FFFF028703b07fef028703b0 /* src/PxPvdImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD028703b07fef028703b0 /* src/PxPvdImpl.cpp */; };
- FFFF028704187fef02870418 /* src/PxPvdMemClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD028704187fef02870418 /* src/PxPvdMemClient.cpp */; };
- FFFF028704807fef02870480 /* src/PxPvdObjectModelMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD028704807fef02870480 /* src/PxPvdObjectModelMetaData.cpp */; };
- FFFF028704e87fef028704e8 /* src/PxPvdObjectRegistrar.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD028704e87fef028704e8 /* src/PxPvdObjectRegistrar.cpp */; };
- FFFF028705507fef02870550 /* src/PxPvdProfileZoneClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD028705507fef02870550 /* src/PxPvdProfileZoneClient.cpp */; };
- FFFF028705b87fef028705b8 /* src/PxPvdUserRenderer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD028705b87fef028705b8 /* src/PxPvdUserRenderer.cpp */; };
+ FFFFf182f9a87fb0f182f9a8 /* src/PxProfileEventImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf182f9a87fb0f182f9a8 /* src/PxProfileEventImpl.cpp */; };
+ FFFFf182fa107fb0f182fa10 /* src/PxPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf182fa107fb0f182fa10 /* src/PxPvd.cpp */; };
+ FFFFf182fa787fb0f182fa78 /* src/PxPvdDataStream.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf182fa787fb0f182fa78 /* src/PxPvdDataStream.cpp */; };
+ FFFFf182fae07fb0f182fae0 /* src/PxPvdDefaultFileTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf182fae07fb0f182fae0 /* src/PxPvdDefaultFileTransport.cpp */; };
+ FFFFf182fb487fb0f182fb48 /* src/PxPvdDefaultSocketTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf182fb487fb0f182fb48 /* src/PxPvdDefaultSocketTransport.cpp */; };
+ FFFFf182fbb07fb0f182fbb0 /* src/PxPvdImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf182fbb07fb0f182fbb0 /* src/PxPvdImpl.cpp */; };
+ FFFFf182fc187fb0f182fc18 /* src/PxPvdMemClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf182fc187fb0f182fc18 /* src/PxPvdMemClient.cpp */; };
+ FFFFf182fc807fb0f182fc80 /* src/PxPvdObjectModelMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf182fc807fb0f182fc80 /* src/PxPvdObjectModelMetaData.cpp */; };
+ FFFFf182fce87fb0f182fce8 /* src/PxPvdObjectRegistrar.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf182fce87fb0f182fce8 /* src/PxPvdObjectRegistrar.cpp */; };
+ FFFFf182fd507fb0f182fd50 /* src/PxPvdProfileZoneClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf182fd507fb0f182fd50 /* src/PxPvdProfileZoneClient.cpp */; };
+ FFFFf182fdb87fb0f182fdb8 /* src/PxPvdUserRenderer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf182fdb87fb0f182fdb8 /* src/PxPvdUserRenderer.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFD030748c07fef030748c0 /* PxPvdSDK */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxPvdSDK"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFD030770707fef03077070 /* PxPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvd.h"; path = "../../../../PxShared/include/pvd/PxPvd.h"; sourceTree = SOURCE_ROOT; };
- FFFD030770d87fef030770d8 /* PxPvdTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvdTransport.h"; path = "../../../../PxShared/include/pvd/PxPvdTransport.h"; sourceTree = SOURCE_ROOT; };
- FFFD0286fe007fef0286fe00 /* include/PsPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPvd.h"; path = "../../../../PxShared/src/pvd/include/PsPvd.h"; sourceTree = SOURCE_ROOT; };
- FFFD0286fe687fef0286fe68 /* include/PxProfileAllocatorWrapper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxProfileAllocatorWrapper.h"; path = "../../../../PxShared/src/pvd/include/PxProfileAllocatorWrapper.h"; sourceTree = SOURCE_ROOT; };
- FFFD0286fed07fef0286fed0 /* include/PxPvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdClient.h"; path = "../../../../PxShared/src/pvd/include/PxPvdClient.h"; sourceTree = SOURCE_ROOT; };
- FFFD0286ff387fef0286ff38 /* include/PxPvdDataStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStream.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStream.h"; sourceTree = SOURCE_ROOT; };
- FFFD0286ffa07fef0286ffa0 /* include/PxPvdDataStreamHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStreamHelpers.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStreamHelpers.h"; sourceTree = SOURCE_ROOT; };
- FFFD028700087fef02870008 /* include/PxPvdErrorCodes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdErrorCodes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdErrorCodes.h"; sourceTree = SOURCE_ROOT; };
- FFFD028700707fef02870070 /* include/PxPvdObjectModelBaseTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdObjectModelBaseTypes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdObjectModelBaseTypes.h"; sourceTree = SOURCE_ROOT; };
- FFFD028700d87fef028700d8 /* include/PxPvdRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdRenderBuffer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdRenderBuffer.h"; sourceTree = SOURCE_ROOT; };
- FFFD028701407fef02870140 /* include/PxPvdUserRenderer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdUserRenderer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdUserRenderer.h"; sourceTree = SOURCE_ROOT; };
- FFFD028701a87fef028701a8 /* src/PxProfileEventImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxProfileEventImpl.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD028702107fef02870210 /* src/PxPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvd.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvd.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD028702787fef02870278 /* src/PxPvdDataStream.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDataStream.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDataStream.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD028702e07fef028702e0 /* src/PxPvdDefaultFileTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD028703487fef02870348 /* src/PxPvdDefaultSocketTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD028703b07fef028703b0 /* src/PxPvdImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD028704187fef02870418 /* src/PxPvdMemClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD028704807fef02870480 /* src/PxPvdObjectModelMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD028704e87fef028704e8 /* src/PxPvdObjectRegistrar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD028705507fef02870550 /* src/PxPvdProfileZoneClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD028705b87fef028705b8 /* src/PxPvdUserRenderer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderer.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderer.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD028706207fef02870620 /* src/PxProfileBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileBase.h"; path = "../../../../PxShared/src/pvd/src/PxProfileBase.h"; sourceTree = SOURCE_ROOT; };
- FFFD028706887fef02870688 /* src/PxProfileCompileTimeEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileCompileTimeEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileCompileTimeEventFilter.h"; sourceTree = SOURCE_ROOT; };
- FFFD028706f07fef028706f0 /* src/PxProfileContextProvider.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProvider.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProvider.h"; sourceTree = SOURCE_ROOT; };
- FFFD028707587fef02870758 /* src/PxProfileContextProviderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProviderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProviderImpl.h"; sourceTree = SOURCE_ROOT; };
- FFFD028707c07fef028707c0 /* src/PxProfileDataBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataBuffer.h"; sourceTree = SOURCE_ROOT; };
- FFFD028708287fef02870828 /* src/PxProfileDataParsing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataParsing.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataParsing.h"; sourceTree = SOURCE_ROOT; };
- FFFD028708907fef02870890 /* src/PxProfileEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBuffer.h"; sourceTree = SOURCE_ROOT; };
- FFFD028708f87fef028708f8 /* src/PxProfileEventBufferAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferAtomic.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferAtomic.h"; sourceTree = SOURCE_ROOT; };
- FFFD028709607fef02870960 /* src/PxProfileEventBufferClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClient.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClient.h"; sourceTree = SOURCE_ROOT; };
- FFFD028709c87fef028709c8 /* src/PxProfileEventBufferClientManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClientManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClientManager.h"; sourceTree = SOURCE_ROOT; };
- FFFD02870a307fef02870a30 /* src/PxProfileEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventFilter.h"; sourceTree = SOURCE_ROOT; };
- FFFD02870a987fef02870a98 /* src/PxProfileEventHandler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventHandler.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventHandler.h"; sourceTree = SOURCE_ROOT; };
- FFFD02870b007fef02870b00 /* src/PxProfileEventId.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventId.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventId.h"; sourceTree = SOURCE_ROOT; };
- FFFD02870b687fef02870b68 /* src/PxProfileEventMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventMutex.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventMutex.h"; sourceTree = SOURCE_ROOT; };
- FFFD02870bd07fef02870bd0 /* src/PxProfileEventNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventNames.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventNames.h"; sourceTree = SOURCE_ROOT; };
- FFFD02870c387fef02870c38 /* src/PxProfileEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventParser.h"; sourceTree = SOURCE_ROOT; };
- FFFD02870ca07fef02870ca0 /* src/PxProfileEventSender.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSender.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSender.h"; sourceTree = SOURCE_ROOT; };
- FFFD02870d087fef02870d08 /* src/PxProfileEventSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSerialization.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSerialization.h"; sourceTree = SOURCE_ROOT; };
- FFFD02870d707fef02870d70 /* src/PxProfileEventSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSystem.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSystem.h"; sourceTree = SOURCE_ROOT; };
- FFFD02870dd87fef02870dd8 /* src/PxProfileEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEvents.h"; sourceTree = SOURCE_ROOT; };
- FFFD02870e407fef02870e40 /* src/PxProfileMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemory.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemory.h"; sourceTree = SOURCE_ROOT; };
- FFFD02870ea87fef02870ea8 /* src/PxProfileMemoryBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryBuffer.h"; sourceTree = SOURCE_ROOT; };
- FFFD02870f107fef02870f10 /* src/PxProfileMemoryEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventBuffer.h"; sourceTree = SOURCE_ROOT; };
- FFFD02870f787fef02870f78 /* src/PxProfileMemoryEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventParser.h"; sourceTree = SOURCE_ROOT; };
- FFFD02870fe07fef02870fe0 /* src/PxProfileMemoryEventRecorder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventRecorder.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventRecorder.h"; sourceTree = SOURCE_ROOT; };
- FFFD028710487fef02871048 /* src/PxProfileMemoryEventReflexiveWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventReflexiveWriter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventReflexiveWriter.h"; sourceTree = SOURCE_ROOT; };
- FFFD028710b07fef028710b0 /* src/PxProfileMemoryEventSummarizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventSummarizer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventSummarizer.h"; sourceTree = SOURCE_ROOT; };
- FFFD028711187fef02871118 /* src/PxProfileMemoryEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventTypes.h"; sourceTree = SOURCE_ROOT; };
- FFFD028711807fef02871180 /* src/PxProfileMemoryEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEvents.h"; sourceTree = SOURCE_ROOT; };
- FFFD028711e87fef028711e8 /* src/PxProfileScopedEvent.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedEvent.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedEvent.h"; sourceTree = SOURCE_ROOT; };
- FFFD028712507fef02871250 /* src/PxProfileScopedMutexLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedMutexLock.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedMutexLock.h"; sourceTree = SOURCE_ROOT; };
- FFFD028712b87fef028712b8 /* src/PxProfileZone.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZone.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZone.h"; sourceTree = SOURCE_ROOT; };
- FFFD028713207fef02871320 /* src/PxProfileZoneImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneImpl.h"; sourceTree = SOURCE_ROOT; };
- FFFD028713887fef02871388 /* src/PxProfileZoneManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManager.h"; sourceTree = SOURCE_ROOT; };
- FFFD028713f07fef028713f0 /* src/PxProfileZoneManagerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManagerImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManagerImpl.h"; sourceTree = SOURCE_ROOT; };
- FFFD028714587fef02871458 /* src/PxPvdBits.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdBits.h"; path = "../../../../PxShared/src/pvd/src/PxPvdBits.h"; sourceTree = SOURCE_ROOT; };
- FFFD028714c07fef028714c0 /* src/PxPvdByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdByteStreams.h"; sourceTree = SOURCE_ROOT; };
- FFFD028715287fef02871528 /* src/PxPvdCommStreamEventSink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEventSink.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEventSink.h"; sourceTree = SOURCE_ROOT; };
- FFFD028715907fef02871590 /* src/PxPvdCommStreamEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEvents.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEvents.h"; sourceTree = SOURCE_ROOT; };
- FFFD028715f87fef028715f8 /* src/PxPvdCommStreamSDKEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamSDKEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamSDKEventTypes.h"; sourceTree = SOURCE_ROOT; };
- FFFD028716607fef02871660 /* src/PxPvdCommStreamTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamTypes.h"; sourceTree = SOURCE_ROOT; };
- FFFD028716c87fef028716c8 /* src/PxPvdDefaultFileTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.h"; sourceTree = SOURCE_ROOT; };
- FFFD028717307fef02871730 /* src/PxPvdDefaultSocketTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.h"; sourceTree = SOURCE_ROOT; };
- FFFD028717987fef02871798 /* src/PxPvdFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdFoundation.h"; path = "../../../../PxShared/src/pvd/src/PxPvdFoundation.h"; sourceTree = SOURCE_ROOT; };
- FFFD028718007fef02871800 /* src/PxPvdImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.h"; sourceTree = SOURCE_ROOT; };
- FFFD028718687fef02871868 /* src/PxPvdInternalByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdInternalByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdInternalByteStreams.h"; sourceTree = SOURCE_ROOT; };
- FFFD028718d07fef028718d0 /* src/PxPvdMarshalling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMarshalling.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMarshalling.h"; sourceTree = SOURCE_ROOT; };
- FFFD028719387fef02871938 /* src/PxPvdMemClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.h"; sourceTree = SOURCE_ROOT; };
- FFFD028719a07fef028719a0 /* src/PxPvdObjectModel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModel.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModel.h"; sourceTree = SOURCE_ROOT; };
- FFFD02871a087fef02871a08 /* src/PxPvdObjectModelInternalTypeDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypeDefs.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypeDefs.h"; sourceTree = SOURCE_ROOT; };
- FFFD02871a707fef02871a70 /* src/PxPvdObjectModelInternalTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypes.h"; sourceTree = SOURCE_ROOT; };
- FFFD02871ad87fef02871ad8 /* src/PxPvdObjectModelMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.h"; sourceTree = SOURCE_ROOT; };
- FFFD02871b407fef02871b40 /* src/PxPvdObjectRegistrar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.h"; sourceTree = SOURCE_ROOT; };
- FFFD02871ba87fef02871ba8 /* src/PxPvdProfileZoneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.h"; sourceTree = SOURCE_ROOT; };
- FFFD02871c107fef02871c10 /* src/PxPvdUserRenderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderImpl.h"; sourceTree = SOURCE_ROOT; };
- FFFD02871c787fef02871c78 /* src/PxPvdUserRenderTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderTypes.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf14114a07fb0f14114a0 /* PxPvdSDK */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxPvdSDK"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFDf140d8007fb0f140d800 /* PxPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvd.h"; path = "../../../../PxShared/include/pvd/PxPvd.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf140d8687fb0f140d868 /* PxPvdTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvdTransport.h"; path = "../../../../PxShared/include/pvd/PxPvdTransport.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf182f6007fb0f182f600 /* include/PsPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPvd.h"; path = "../../../../PxShared/src/pvd/include/PsPvd.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf182f6687fb0f182f668 /* include/PxProfileAllocatorWrapper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxProfileAllocatorWrapper.h"; path = "../../../../PxShared/src/pvd/include/PxProfileAllocatorWrapper.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf182f6d07fb0f182f6d0 /* include/PxPvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdClient.h"; path = "../../../../PxShared/src/pvd/include/PxPvdClient.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf182f7387fb0f182f738 /* include/PxPvdDataStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStream.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStream.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf182f7a07fb0f182f7a0 /* include/PxPvdDataStreamHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStreamHelpers.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStreamHelpers.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf182f8087fb0f182f808 /* include/PxPvdErrorCodes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdErrorCodes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdErrorCodes.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf182f8707fb0f182f870 /* include/PxPvdObjectModelBaseTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdObjectModelBaseTypes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdObjectModelBaseTypes.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf182f8d87fb0f182f8d8 /* include/PxPvdRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdRenderBuffer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdRenderBuffer.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf182f9407fb0f182f940 /* include/PxPvdUserRenderer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdUserRenderer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdUserRenderer.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf182f9a87fb0f182f9a8 /* src/PxProfileEventImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxProfileEventImpl.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf182fa107fb0f182fa10 /* src/PxPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvd.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvd.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf182fa787fb0f182fa78 /* src/PxPvdDataStream.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDataStream.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDataStream.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf182fae07fb0f182fae0 /* src/PxPvdDefaultFileTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf182fb487fb0f182fb48 /* src/PxPvdDefaultSocketTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf182fbb07fb0f182fbb0 /* src/PxPvdImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf182fc187fb0f182fc18 /* src/PxPvdMemClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf182fc807fb0f182fc80 /* src/PxPvdObjectModelMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf182fce87fb0f182fce8 /* src/PxPvdObjectRegistrar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf182fd507fb0f182fd50 /* src/PxPvdProfileZoneClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf182fdb87fb0f182fdb8 /* src/PxPvdUserRenderer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderer.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderer.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf182fe207fb0f182fe20 /* src/PxProfileBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileBase.h"; path = "../../../../PxShared/src/pvd/src/PxProfileBase.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf182fe887fb0f182fe88 /* src/PxProfileCompileTimeEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileCompileTimeEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileCompileTimeEventFilter.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf182fef07fb0f182fef0 /* src/PxProfileContextProvider.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProvider.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProvider.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf182ff587fb0f182ff58 /* src/PxProfileContextProviderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProviderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProviderImpl.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf182ffc07fb0f182ffc0 /* src/PxProfileDataBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataBuffer.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf18300287fb0f1830028 /* src/PxProfileDataParsing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataParsing.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataParsing.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf18300907fb0f1830090 /* src/PxProfileEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBuffer.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf18300f87fb0f18300f8 /* src/PxProfileEventBufferAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferAtomic.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferAtomic.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf18301607fb0f1830160 /* src/PxProfileEventBufferClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClient.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClient.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf18301c87fb0f18301c8 /* src/PxProfileEventBufferClientManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClientManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClientManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf18302307fb0f1830230 /* src/PxProfileEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventFilter.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf18302987fb0f1830298 /* src/PxProfileEventHandler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventHandler.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventHandler.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf18303007fb0f1830300 /* src/PxProfileEventId.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventId.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventId.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf18303687fb0f1830368 /* src/PxProfileEventMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventMutex.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventMutex.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf18303d07fb0f18303d0 /* src/PxProfileEventNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventNames.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventNames.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf18304387fb0f1830438 /* src/PxProfileEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventParser.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf18304a07fb0f18304a0 /* src/PxProfileEventSender.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSender.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSender.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf18305087fb0f1830508 /* src/PxProfileEventSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSerialization.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSerialization.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf18305707fb0f1830570 /* src/PxProfileEventSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSystem.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSystem.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf18305d87fb0f18305d8 /* src/PxProfileEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEvents.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf18306407fb0f1830640 /* src/PxProfileMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemory.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemory.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf18306a87fb0f18306a8 /* src/PxProfileMemoryBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryBuffer.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf18307107fb0f1830710 /* src/PxProfileMemoryEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventBuffer.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf18307787fb0f1830778 /* src/PxProfileMemoryEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventParser.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf18307e07fb0f18307e0 /* src/PxProfileMemoryEventRecorder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventRecorder.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventRecorder.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf18308487fb0f1830848 /* src/PxProfileMemoryEventReflexiveWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventReflexiveWriter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventReflexiveWriter.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf18308b07fb0f18308b0 /* src/PxProfileMemoryEventSummarizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventSummarizer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventSummarizer.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf18309187fb0f1830918 /* src/PxProfileMemoryEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventTypes.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf18309807fb0f1830980 /* src/PxProfileMemoryEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEvents.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf18309e87fb0f18309e8 /* src/PxProfileScopedEvent.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedEvent.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedEvent.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf1830a507fb0f1830a50 /* src/PxProfileScopedMutexLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedMutexLock.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedMutexLock.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf1830ab87fb0f1830ab8 /* src/PxProfileZone.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZone.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZone.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf1830b207fb0f1830b20 /* src/PxProfileZoneImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneImpl.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf1830b887fb0f1830b88 /* src/PxProfileZoneManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf1830bf07fb0f1830bf0 /* src/PxProfileZoneManagerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManagerImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManagerImpl.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf1830c587fb0f1830c58 /* src/PxPvdBits.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdBits.h"; path = "../../../../PxShared/src/pvd/src/PxPvdBits.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf1830cc07fb0f1830cc0 /* src/PxPvdByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdByteStreams.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf1830d287fb0f1830d28 /* src/PxPvdCommStreamEventSink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEventSink.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEventSink.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf1830d907fb0f1830d90 /* src/PxPvdCommStreamEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEvents.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEvents.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf1830df87fb0f1830df8 /* src/PxPvdCommStreamSDKEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamSDKEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamSDKEventTypes.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf1830e607fb0f1830e60 /* src/PxPvdCommStreamTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamTypes.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf1830ec87fb0f1830ec8 /* src/PxPvdDefaultFileTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf1830f307fb0f1830f30 /* src/PxPvdDefaultSocketTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf1830f987fb0f1830f98 /* src/PxPvdFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdFoundation.h"; path = "../../../../PxShared/src/pvd/src/PxPvdFoundation.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf18310007fb0f1831000 /* src/PxPvdImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf18310687fb0f1831068 /* src/PxPvdInternalByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdInternalByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdInternalByteStreams.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf18310d07fb0f18310d0 /* src/PxPvdMarshalling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMarshalling.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMarshalling.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf18311387fb0f1831138 /* src/PxPvdMemClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf18311a07fb0f18311a0 /* src/PxPvdObjectModel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModel.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModel.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf18312087fb0f1831208 /* src/PxPvdObjectModelInternalTypeDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypeDefs.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypeDefs.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf18312707fb0f1831270 /* src/PxPvdObjectModelInternalTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypes.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf18312d87fb0f18312d8 /* src/PxPvdObjectModelMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf18313407fb0f1831340 /* src/PxPvdObjectRegistrar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf18313a87fb0f18313a8 /* src/PxPvdProfileZoneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf18314107fb0f1831410 /* src/PxPvdUserRenderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderImpl.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf18314787fb0f1831478 /* 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 */
- FFF2030748c07fef030748c0 /* Resources */ = {
+ FFF2f14114a07fb0f14114a0 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2282,7 +2282,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFC030748c07fef030748c0 /* Frameworks */ = {
+ FFFCf14114a07fb0f14114a0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2292,21 +2292,21 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF8030748c07fef030748c0 /* Sources */ = {
+ FFF8f14114a07fb0f14114a0 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFF028701a87fef028701a8,
- FFFF028702107fef02870210,
- FFFF028702787fef02870278,
- FFFF028702e07fef028702e0,
- FFFF028703487fef02870348,
- FFFF028703b07fef028703b0,
- FFFF028704187fef02870418,
- FFFF028704807fef02870480,
- FFFF028704e87fef028704e8,
- FFFF028705507fef02870550,
- FFFF028705b87fef028705b8,
+ FFFFf182f9a87fb0f182f9a8,
+ FFFFf182fa107fb0f182fa10,
+ FFFFf182fa787fb0f182fa78,
+ FFFFf182fae07fb0f182fae0,
+ FFFFf182fb487fb0f182fb48,
+ FFFFf182fbb07fb0f182fbb0,
+ FFFFf182fc187fb0f182fc18,
+ FFFFf182fc807fb0f182fc80,
+ FFFFf182fce87fb0f182fce8,
+ FFFFf182fd507fb0f182fd50,
+ FFFFf182fdb87fb0f182fdb8,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -2315,108 +2315,108 @@
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
- FFF402673d607fef02673d60 /* PBXTargetDependency */ = {
+ FFF4f14106507fb0f1410650 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFA031431707fef03143170 /* PxFoundation */;
- targetProxy = FFF5031431707fef03143170 /* PBXContainerItemProxy */;
+ target = FFFAf298c0307fb0f298c030 /* PxFoundation */;
+ targetProxy = FFF5f298c0307fb0f298c030 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of LowLevel */
- FFFF0310b8507fef0310b850 /* px_globals.cpp in API Source */= { isa = PBXBuildFile; fileRef = FFFD0310b8507fef0310b850 /* px_globals.cpp */; };
- FFFF0310f6707fef0310f670 /* PxsCCD.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD0310f6707fef0310f670 /* PxsCCD.cpp */; };
- FFFF0310f6d87fef0310f6d8 /* PxsContactManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD0310f6d87fef0310f6d8 /* PxsContactManager.cpp */; };
- FFFF0310f7407fef0310f740 /* PxsContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD0310f7407fef0310f740 /* PxsContext.cpp */; };
- FFFF0310f7a87fef0310f7a8 /* PxsDefaultMemoryManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD0310f7a87fef0310f7a8 /* PxsDefaultMemoryManager.cpp */; };
- FFFF0310f8107fef0310f810 /* PxsIslandSim.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD0310f8107fef0310f810 /* PxsIslandSim.cpp */; };
- FFFF0310f8787fef0310f878 /* PxsMaterialCombiner.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD0310f8787fef0310f878 /* PxsMaterialCombiner.cpp */; };
- FFFF0310f8e07fef0310f8e0 /* PxsNphaseImplementationContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD0310f8e07fef0310f8e0 /* PxsNphaseImplementationContext.cpp */; };
- FFFF0310f9487fef0310f948 /* PxsSimpleIslandManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD0310f9487fef0310f948 /* PxsSimpleIslandManager.cpp */; };
- FFFF039614007fef03961400 /* collision/PxcContact.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD039614007fef03961400 /* collision/PxcContact.cpp */; };
- FFFF039614687fef03961468 /* pipeline/PxcContactCache.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD039614687fef03961468 /* pipeline/PxcContactCache.cpp */; };
- FFFF039614d07fef039614d0 /* pipeline/PxcContactMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD039614d07fef039614d0 /* pipeline/PxcContactMethodImpl.cpp */; };
- FFFF039615387fef03961538 /* pipeline/PxcMaterialHeightField.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD039615387fef03961538 /* pipeline/PxcMaterialHeightField.cpp */; };
- FFFF039615a07fef039615a0 /* pipeline/PxcMaterialMesh.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD039615a07fef039615a0 /* pipeline/PxcMaterialMesh.cpp */; };
- FFFF039616087fef03961608 /* pipeline/PxcMaterialMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD039616087fef03961608 /* pipeline/PxcMaterialMethodImpl.cpp */; };
- FFFF039616707fef03961670 /* pipeline/PxcMaterialShape.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD039616707fef03961670 /* pipeline/PxcMaterialShape.cpp */; };
- FFFF039616d87fef039616d8 /* pipeline/PxcNpBatch.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD039616d87fef039616d8 /* pipeline/PxcNpBatch.cpp */; };
- FFFF039617407fef03961740 /* pipeline/PxcNpCacheStreamPair.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD039617407fef03961740 /* pipeline/PxcNpCacheStreamPair.cpp */; };
- FFFF039617a87fef039617a8 /* pipeline/PxcNpContactPrepShared.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD039617a87fef039617a8 /* pipeline/PxcNpContactPrepShared.cpp */; };
- FFFF039618107fef03961810 /* pipeline/PxcNpMemBlockPool.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD039618107fef03961810 /* pipeline/PxcNpMemBlockPool.cpp */; };
- FFFF039618787fef03961878 /* pipeline/PxcNpThreadContext.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD039618787fef03961878 /* pipeline/PxcNpThreadContext.cpp */; };
+ FFFFf2d426307fb0f2d42630 /* px_globals.cpp in API Source */= { isa = PBXBuildFile; fileRef = FFFDf2d426307fb0f2d42630 /* px_globals.cpp */; };
+ FFFFf2d44fb07fb0f2d44fb0 /* PxsCCD.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDf2d44fb07fb0f2d44fb0 /* PxsCCD.cpp */; };
+ FFFFf2d450187fb0f2d45018 /* PxsContactManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDf2d450187fb0f2d45018 /* PxsContactManager.cpp */; };
+ FFFFf2d450807fb0f2d45080 /* PxsContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDf2d450807fb0f2d45080 /* PxsContext.cpp */; };
+ FFFFf2d450e87fb0f2d450e8 /* PxsDefaultMemoryManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDf2d450e87fb0f2d450e8 /* PxsDefaultMemoryManager.cpp */; };
+ FFFFf2d451507fb0f2d45150 /* PxsIslandSim.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDf2d451507fb0f2d45150 /* PxsIslandSim.cpp */; };
+ FFFFf2d451b87fb0f2d451b8 /* PxsMaterialCombiner.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDf2d451b87fb0f2d451b8 /* PxsMaterialCombiner.cpp */; };
+ FFFFf2d452207fb0f2d45220 /* PxsNphaseImplementationContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDf2d452207fb0f2d45220 /* PxsNphaseImplementationContext.cpp */; };
+ FFFFf2d452887fb0f2d45288 /* PxsSimpleIslandManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDf2d452887fb0f2d45288 /* PxsSimpleIslandManager.cpp */; };
+ FFFFf30196007fb0f3019600 /* collision/PxcContact.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDf30196007fb0f3019600 /* collision/PxcContact.cpp */; };
+ FFFFf30196687fb0f3019668 /* pipeline/PxcContactCache.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDf30196687fb0f3019668 /* pipeline/PxcContactCache.cpp */; };
+ FFFFf30196d07fb0f30196d0 /* pipeline/PxcContactMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDf30196d07fb0f30196d0 /* pipeline/PxcContactMethodImpl.cpp */; };
+ FFFFf30197387fb0f3019738 /* pipeline/PxcMaterialHeightField.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDf30197387fb0f3019738 /* pipeline/PxcMaterialHeightField.cpp */; };
+ FFFFf30197a07fb0f30197a0 /* pipeline/PxcMaterialMesh.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDf30197a07fb0f30197a0 /* pipeline/PxcMaterialMesh.cpp */; };
+ FFFFf30198087fb0f3019808 /* pipeline/PxcMaterialMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDf30198087fb0f3019808 /* pipeline/PxcMaterialMethodImpl.cpp */; };
+ FFFFf30198707fb0f3019870 /* pipeline/PxcMaterialShape.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDf30198707fb0f3019870 /* pipeline/PxcMaterialShape.cpp */; };
+ FFFFf30198d87fb0f30198d8 /* pipeline/PxcNpBatch.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDf30198d87fb0f30198d8 /* pipeline/PxcNpBatch.cpp */; };
+ FFFFf30199407fb0f3019940 /* pipeline/PxcNpCacheStreamPair.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDf30199407fb0f3019940 /* pipeline/PxcNpCacheStreamPair.cpp */; };
+ FFFFf30199a87fb0f30199a8 /* pipeline/PxcNpContactPrepShared.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDf30199a87fb0f30199a8 /* pipeline/PxcNpContactPrepShared.cpp */; };
+ FFFFf3019a107fb0f3019a10 /* pipeline/PxcNpMemBlockPool.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDf3019a107fb0f3019a10 /* pipeline/PxcNpMemBlockPool.cpp */; };
+ FFFFf3019a787fb0f3019a78 /* pipeline/PxcNpThreadContext.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDf3019a787fb0f3019a78 /* pipeline/PxcNpThreadContext.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFD0310a8f07fef0310a8f0 /* LowLevel */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevel"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFD0310b8507fef0310b850 /* px_globals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "px_globals.cpp"; path = "../../LowLevel/API/src/px_globals.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0310e4107fef0310e410 /* PxsMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCore.h"; path = "../../LowLevel/API/include/PxsMaterialCore.h"; sourceTree = SOURCE_ROOT; };
- FFFD0310e4787fef0310e478 /* PxsMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialManager.h"; path = "../../LowLevel/API/include/PxsMaterialManager.h"; sourceTree = SOURCE_ROOT; };
- FFFD0310e4e07fef0310e4e0 /* PxvConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvConfig.h"; path = "../../LowLevel/API/include/PxvConfig.h"; sourceTree = SOURCE_ROOT; };
- FFFD0310e5487fef0310e548 /* PxvContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvContext.h"; path = "../../LowLevel/API/include/PxvContext.h"; sourceTree = SOURCE_ROOT; };
- FFFD0310e5b07fef0310e5b0 /* PxvDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvDynamics.h"; path = "../../LowLevel/API/include/PxvDynamics.h"; sourceTree = SOURCE_ROOT; };
- FFFD0310e6187fef0310e618 /* PxvGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGeometry.h"; path = "../../LowLevel/API/include/PxvGeometry.h"; sourceTree = SOURCE_ROOT; };
- FFFD0310e6807fef0310e680 /* PxvGlobals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGlobals.h"; path = "../../LowLevel/API/include/PxvGlobals.h"; sourceTree = SOURCE_ROOT; };
- FFFD0310e6e87fef0310e6e8 /* PxvManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvManager.h"; path = "../../LowLevel/API/include/PxvManager.h"; sourceTree = SOURCE_ROOT; };
- FFFD0310e7507fef0310e750 /* PxvSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvSimStats.h"; path = "../../LowLevel/API/include/PxvSimStats.h"; sourceTree = SOURCE_ROOT; };
- FFFD0310f6707fef0310f670 /* PxsCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.cpp"; path = "../../LowLevel/software/src/PxsCCD.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0310f6d87fef0310f6d8 /* PxsContactManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.cpp"; path = "../../LowLevel/software/src/PxsContactManager.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0310f7407fef0310f740 /* PxsContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.cpp"; path = "../../LowLevel/software/src/PxsContext.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0310f7a87fef0310f7a8 /* PxsDefaultMemoryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.cpp"; path = "../../LowLevel/software/src/PxsDefaultMemoryManager.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0310f8107fef0310f810 /* PxsIslandSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.cpp"; path = "../../LowLevel/software/src/PxsIslandSim.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0310f8787fef0310f878 /* PxsMaterialCombiner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.cpp"; path = "../../LowLevel/software/src/PxsMaterialCombiner.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0310f8e07fef0310f8e0 /* PxsNphaseImplementationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.cpp"; path = "../../LowLevel/software/src/PxsNphaseImplementationContext.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0310f9487fef0310f948 /* PxsSimpleIslandManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.cpp"; path = "../../LowLevel/software/src/PxsSimpleIslandManager.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD03957e007fef03957e00 /* PxsBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsBodySim.h"; path = "../../LowLevel/software/include/PxsBodySim.h"; sourceTree = SOURCE_ROOT; };
- FFFD03957e687fef03957e68 /* PxsCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.h"; path = "../../LowLevel/software/include/PxsCCD.h"; sourceTree = SOURCE_ROOT; };
- FFFD03957ed07fef03957ed0 /* PxsContactManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.h"; path = "../../LowLevel/software/include/PxsContactManager.h"; sourceTree = SOURCE_ROOT; };
- FFFD03957f387fef03957f38 /* PxsContactManagerState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManagerState.h"; path = "../../LowLevel/software/include/PxsContactManagerState.h"; sourceTree = SOURCE_ROOT; };
- FFFD03957fa07fef03957fa0 /* PxsContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.h"; path = "../../LowLevel/software/include/PxsContext.h"; sourceTree = SOURCE_ROOT; };
- FFFD039580087fef03958008 /* PxsDefaultMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.h"; path = "../../LowLevel/software/include/PxsDefaultMemoryManager.h"; sourceTree = SOURCE_ROOT; };
- FFFD039580707fef03958070 /* PxsHeapMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsHeapMemoryAllocator.h"; path = "../../LowLevel/software/include/PxsHeapMemoryAllocator.h"; sourceTree = SOURCE_ROOT; };
- FFFD039580d87fef039580d8 /* PxsIncrementalConstraintPartitioning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIncrementalConstraintPartitioning.h"; path = "../../LowLevel/software/include/PxsIncrementalConstraintPartitioning.h"; sourceTree = SOURCE_ROOT; };
- FFFD039581407fef03958140 /* PxsIslandManagerTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandManagerTypes.h"; path = "../../LowLevel/software/include/PxsIslandManagerTypes.h"; sourceTree = SOURCE_ROOT; };
- FFFD039581a87fef039581a8 /* PxsIslandSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.h"; path = "../../LowLevel/software/include/PxsIslandSim.h"; sourceTree = SOURCE_ROOT; };
- FFFD039582107fef03958210 /* PxsKernelWrangler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsKernelWrangler.h"; path = "../../LowLevel/software/include/PxsKernelWrangler.h"; sourceTree = SOURCE_ROOT; };
- FFFD039582787fef03958278 /* PxsMaterialCombiner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.h"; path = "../../LowLevel/software/include/PxsMaterialCombiner.h"; sourceTree = SOURCE_ROOT; };
- FFFD039582e07fef039582e0 /* PxsMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMemoryManager.h"; path = "../../LowLevel/software/include/PxsMemoryManager.h"; sourceTree = SOURCE_ROOT; };
- FFFD039583487fef03958348 /* PxsNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxsNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; };
- FFFD039583b07fef039583b0 /* PxsRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsRigidBody.h"; path = "../../LowLevel/software/include/PxsRigidBody.h"; sourceTree = SOURCE_ROOT; };
- FFFD039584187fef03958418 /* PxsShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsShapeSim.h"; path = "../../LowLevel/software/include/PxsShapeSim.h"; sourceTree = SOURCE_ROOT; };
- FFFD039584807fef03958480 /* PxsSimpleIslandManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.h"; path = "../../LowLevel/software/include/PxsSimpleIslandManager.h"; sourceTree = SOURCE_ROOT; };
- FFFD039584e87fef039584e8 /* PxsSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimulationController.h"; path = "../../LowLevel/software/include/PxsSimulationController.h"; sourceTree = SOURCE_ROOT; };
- FFFD039585507fef03958550 /* PxsTransformCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsTransformCache.h"; path = "../../LowLevel/software/include/PxsTransformCache.h"; sourceTree = SOURCE_ROOT; };
- FFFD039585b87fef039585b8 /* PxvNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxvNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; };
- FFFD039614007fef03961400 /* collision/PxcContact.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContact.cpp"; path = "../../LowLevel/common/src/collision/PxcContact.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD039614687fef03961468 /* pipeline/PxcContactCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactCache.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD039614d07fef039614d0 /* pipeline/PxcContactMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactMethodImpl.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD039615387fef03961538 /* pipeline/PxcMaterialHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialHeightField.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialHeightField.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD039615a07fef039615a0 /* pipeline/PxcMaterialMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMesh.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMesh.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD039616087fef03961608 /* pipeline/PxcMaterialMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMethodImpl.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD039616707fef03961670 /* pipeline/PxcMaterialShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialShape.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialShape.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD039616d87fef039616d8 /* pipeline/PxcNpBatch.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpBatch.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD039617407fef03961740 /* pipeline/PxcNpCacheStreamPair.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpCacheStreamPair.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD039617a87fef039617a8 /* pipeline/PxcNpContactPrepShared.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpContactPrepShared.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD039618107fef03961810 /* pipeline/PxcNpMemBlockPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpMemBlockPool.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD039618787fef03961878 /* pipeline/PxcNpThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpThreadContext.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD03961c007fef03961c00 /* collision/PxcContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContactMethodImpl.h"; path = "../../LowLevel/common/include/collision/PxcContactMethodImpl.h"; sourceTree = SOURCE_ROOT; };
- FFFD03961c687fef03961c68 /* pipeline/PxcCCDStateStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcCCDStateStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcCCDStateStreamPair.h"; sourceTree = SOURCE_ROOT; };
- FFFD03961cd07fef03961cd0 /* pipeline/PxcConstraintBlockStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcConstraintBlockStream.h"; path = "../../LowLevel/common/include/pipeline/PxcConstraintBlockStream.h"; sourceTree = SOURCE_ROOT; };
- FFFD03961d387fef03961d38 /* pipeline/PxcContactCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.h"; path = "../../LowLevel/common/include/pipeline/PxcContactCache.h"; sourceTree = SOURCE_ROOT; };
- FFFD03961da07fef03961da0 /* pipeline/PxcMaterialMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.h"; path = "../../LowLevel/common/include/pipeline/PxcMaterialMethodImpl.h"; sourceTree = SOURCE_ROOT; };
- FFFD03961e087fef03961e08 /* pipeline/PxcNpBatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.h"; path = "../../LowLevel/common/include/pipeline/PxcNpBatch.h"; sourceTree = SOURCE_ROOT; };
- FFFD03961e707fef03961e70 /* pipeline/PxcNpCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCache.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCache.h"; sourceTree = SOURCE_ROOT; };
- FFFD03961ed87fef03961ed8 /* pipeline/PxcNpCacheStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCacheStreamPair.h"; sourceTree = SOURCE_ROOT; };
- FFFD03961f407fef03961f40 /* pipeline/PxcNpContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.h"; path = "../../LowLevel/common/include/pipeline/PxcNpContactPrepShared.h"; sourceTree = SOURCE_ROOT; };
- FFFD03961fa87fef03961fa8 /* pipeline/PxcNpMemBlockPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.h"; path = "../../LowLevel/common/include/pipeline/PxcNpMemBlockPool.h"; sourceTree = SOURCE_ROOT; };
- FFFD039620107fef03962010 /* pipeline/PxcNpThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.h"; path = "../../LowLevel/common/include/pipeline/PxcNpThreadContext.h"; sourceTree = SOURCE_ROOT; };
- FFFD039620787fef03962078 /* pipeline/PxcNpWorkUnit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpWorkUnit.h"; path = "../../LowLevel/common/include/pipeline/PxcNpWorkUnit.h"; sourceTree = SOURCE_ROOT; };
- FFFD039620e07fef039620e0 /* pipeline/PxcRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcRigidBody.h"; path = "../../LowLevel/common/include/pipeline/PxcRigidBody.h"; sourceTree = SOURCE_ROOT; };
- FFFD039621487fef03962148 /* utils/PxcScratchAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "utils/PxcScratchAllocator.h"; path = "../../LowLevel/common/include/utils/PxcScratchAllocator.h"; sourceTree = SOURCE_ROOT; };
- FFFD039621b07fef039621b0 /* utils/PxcThreadCoherentCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "utils/PxcThreadCoherentCache.h"; path = "../../LowLevel/common/include/utils/PxcThreadCoherentCache.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2d3dd907fb0f2d3dd90 /* LowLevel */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevel"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFDf2d426307fb0f2d42630 /* px_globals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "px_globals.cpp"; path = "../../LowLevel/API/src/px_globals.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2d43e407fb0f2d43e40 /* PxsMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCore.h"; path = "../../LowLevel/API/include/PxsMaterialCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2d43ea87fb0f2d43ea8 /* PxsMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialManager.h"; path = "../../LowLevel/API/include/PxsMaterialManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2d43f107fb0f2d43f10 /* PxvConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvConfig.h"; path = "../../LowLevel/API/include/PxvConfig.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2d43f787fb0f2d43f78 /* PxvContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvContext.h"; path = "../../LowLevel/API/include/PxvContext.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2d43fe07fb0f2d43fe0 /* PxvDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvDynamics.h"; path = "../../LowLevel/API/include/PxvDynamics.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2d440487fb0f2d44048 /* PxvGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGeometry.h"; path = "../../LowLevel/API/include/PxvGeometry.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2d440b07fb0f2d440b0 /* PxvGlobals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGlobals.h"; path = "../../LowLevel/API/include/PxvGlobals.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2d441187fb0f2d44118 /* PxvManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvManager.h"; path = "../../LowLevel/API/include/PxvManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2d441807fb0f2d44180 /* PxvSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvSimStats.h"; path = "../../LowLevel/API/include/PxvSimStats.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2d44fb07fb0f2d44fb0 /* PxsCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.cpp"; path = "../../LowLevel/software/src/PxsCCD.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2d450187fb0f2d45018 /* PxsContactManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.cpp"; path = "../../LowLevel/software/src/PxsContactManager.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2d450807fb0f2d45080 /* PxsContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.cpp"; path = "../../LowLevel/software/src/PxsContext.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2d450e87fb0f2d450e8 /* PxsDefaultMemoryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.cpp"; path = "../../LowLevel/software/src/PxsDefaultMemoryManager.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2d451507fb0f2d45150 /* PxsIslandSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.cpp"; path = "../../LowLevel/software/src/PxsIslandSim.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2d451b87fb0f2d451b8 /* PxsMaterialCombiner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.cpp"; path = "../../LowLevel/software/src/PxsMaterialCombiner.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2d452207fb0f2d45220 /* PxsNphaseImplementationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.cpp"; path = "../../LowLevel/software/src/PxsNphaseImplementationContext.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2d452887fb0f2d45288 /* PxsSimpleIslandManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.cpp"; path = "../../LowLevel/software/src/PxsSimpleIslandManager.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf301ac007fb0f301ac00 /* PxsBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsBodySim.h"; path = "../../LowLevel/software/include/PxsBodySim.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf301ac687fb0f301ac68 /* PxsCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.h"; path = "../../LowLevel/software/include/PxsCCD.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf301acd07fb0f301acd0 /* PxsContactManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.h"; path = "../../LowLevel/software/include/PxsContactManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf301ad387fb0f301ad38 /* PxsContactManagerState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManagerState.h"; path = "../../LowLevel/software/include/PxsContactManagerState.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf301ada07fb0f301ada0 /* PxsContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.h"; path = "../../LowLevel/software/include/PxsContext.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf301ae087fb0f301ae08 /* PxsDefaultMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.h"; path = "../../LowLevel/software/include/PxsDefaultMemoryManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf301ae707fb0f301ae70 /* PxsHeapMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsHeapMemoryAllocator.h"; path = "../../LowLevel/software/include/PxsHeapMemoryAllocator.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf301aed87fb0f301aed8 /* PxsIncrementalConstraintPartitioning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIncrementalConstraintPartitioning.h"; path = "../../LowLevel/software/include/PxsIncrementalConstraintPartitioning.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf301af407fb0f301af40 /* PxsIslandManagerTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandManagerTypes.h"; path = "../../LowLevel/software/include/PxsIslandManagerTypes.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf301afa87fb0f301afa8 /* PxsIslandSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.h"; path = "../../LowLevel/software/include/PxsIslandSim.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf301b0107fb0f301b010 /* PxsKernelWrangler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsKernelWrangler.h"; path = "../../LowLevel/software/include/PxsKernelWrangler.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf301b0787fb0f301b078 /* PxsMaterialCombiner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.h"; path = "../../LowLevel/software/include/PxsMaterialCombiner.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf301b0e07fb0f301b0e0 /* PxsMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMemoryManager.h"; path = "../../LowLevel/software/include/PxsMemoryManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf301b1487fb0f301b148 /* PxsNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxsNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf301b1b07fb0f301b1b0 /* PxsRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsRigidBody.h"; path = "../../LowLevel/software/include/PxsRigidBody.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf301b2187fb0f301b218 /* PxsShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsShapeSim.h"; path = "../../LowLevel/software/include/PxsShapeSim.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf301b2807fb0f301b280 /* PxsSimpleIslandManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.h"; path = "../../LowLevel/software/include/PxsSimpleIslandManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf301b2e87fb0f301b2e8 /* PxsSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimulationController.h"; path = "../../LowLevel/software/include/PxsSimulationController.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf301b3507fb0f301b350 /* PxsTransformCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsTransformCache.h"; path = "../../LowLevel/software/include/PxsTransformCache.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf301b3b87fb0f301b3b8 /* PxvNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxvNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf30196007fb0f3019600 /* collision/PxcContact.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContact.cpp"; path = "../../LowLevel/common/src/collision/PxcContact.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30196687fb0f3019668 /* pipeline/PxcContactCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactCache.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30196d07fb0f30196d0 /* pipeline/PxcContactMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactMethodImpl.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30197387fb0f3019738 /* pipeline/PxcMaterialHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialHeightField.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialHeightField.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30197a07fb0f30197a0 /* pipeline/PxcMaterialMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMesh.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMesh.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30198087fb0f3019808 /* pipeline/PxcMaterialMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMethodImpl.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30198707fb0f3019870 /* pipeline/PxcMaterialShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialShape.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialShape.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30198d87fb0f30198d8 /* pipeline/PxcNpBatch.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpBatch.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30199407fb0f3019940 /* pipeline/PxcNpCacheStreamPair.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpCacheStreamPair.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf30199a87fb0f30199a8 /* pipeline/PxcNpContactPrepShared.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpContactPrepShared.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3019a107fb0f3019a10 /* pipeline/PxcNpMemBlockPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpMemBlockPool.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3019a787fb0f3019a78 /* pipeline/PxcNpThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpThreadContext.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3019e007fb0f3019e00 /* collision/PxcContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContactMethodImpl.h"; path = "../../LowLevel/common/include/collision/PxcContactMethodImpl.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3019e687fb0f3019e68 /* pipeline/PxcCCDStateStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcCCDStateStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcCCDStateStreamPair.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3019ed07fb0f3019ed0 /* pipeline/PxcConstraintBlockStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcConstraintBlockStream.h"; path = "../../LowLevel/common/include/pipeline/PxcConstraintBlockStream.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3019f387fb0f3019f38 /* pipeline/PxcContactCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.h"; path = "../../LowLevel/common/include/pipeline/PxcContactCache.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf3019fa07fb0f3019fa0 /* pipeline/PxcMaterialMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.h"; path = "../../LowLevel/common/include/pipeline/PxcMaterialMethodImpl.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf301a0087fb0f301a008 /* pipeline/PxcNpBatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.h"; path = "../../LowLevel/common/include/pipeline/PxcNpBatch.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf301a0707fb0f301a070 /* pipeline/PxcNpCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCache.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCache.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf301a0d87fb0f301a0d8 /* pipeline/PxcNpCacheStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCacheStreamPair.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf301a1407fb0f301a140 /* pipeline/PxcNpContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.h"; path = "../../LowLevel/common/include/pipeline/PxcNpContactPrepShared.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf301a1a87fb0f301a1a8 /* pipeline/PxcNpMemBlockPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.h"; path = "../../LowLevel/common/include/pipeline/PxcNpMemBlockPool.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf301a2107fb0f301a210 /* pipeline/PxcNpThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.h"; path = "../../LowLevel/common/include/pipeline/PxcNpThreadContext.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf301a2787fb0f301a278 /* pipeline/PxcNpWorkUnit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpWorkUnit.h"; path = "../../LowLevel/common/include/pipeline/PxcNpWorkUnit.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf301a2e07fb0f301a2e0 /* pipeline/PxcRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcRigidBody.h"; path = "../../LowLevel/common/include/pipeline/PxcRigidBody.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf301a3487fb0f301a348 /* utils/PxcScratchAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "utils/PxcScratchAllocator.h"; path = "../../LowLevel/common/include/utils/PxcScratchAllocator.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf301a3b07fb0f301a3b0 /* 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 */
- FFF20310a8f07fef0310a8f0 /* Resources */ = {
+ FFF2f2d3dd907fb0f2d3dd90 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2426,7 +2426,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFC0310a8f07fef0310a8f0 /* Frameworks */ = {
+ FFFCf2d3dd907fb0f2d3dd90 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2436,31 +2436,31 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF80310a8f07fef0310a8f0 /* Sources */ = {
+ FFF8f2d3dd907fb0f2d3dd90 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFF0310b8507fef0310b850,
- FFFF0310f6707fef0310f670,
- FFFF0310f6d87fef0310f6d8,
- FFFF0310f7407fef0310f740,
- FFFF0310f7a87fef0310f7a8,
- FFFF0310f8107fef0310f810,
- FFFF0310f8787fef0310f878,
- FFFF0310f8e07fef0310f8e0,
- FFFF0310f9487fef0310f948,
- FFFF039614007fef03961400,
- FFFF039614687fef03961468,
- FFFF039614d07fef039614d0,
- FFFF039615387fef03961538,
- FFFF039615a07fef039615a0,
- FFFF039616087fef03961608,
- FFFF039616707fef03961670,
- FFFF039616d87fef039616d8,
- FFFF039617407fef03961740,
- FFFF039617a87fef039617a8,
- FFFF039618107fef03961810,
- FFFF039618787fef03961878,
+ FFFFf2d426307fb0f2d42630,
+ FFFFf2d44fb07fb0f2d44fb0,
+ FFFFf2d450187fb0f2d45018,
+ FFFFf2d450807fb0f2d45080,
+ FFFFf2d450e87fb0f2d450e8,
+ FFFFf2d451507fb0f2d45150,
+ FFFFf2d451b87fb0f2d451b8,
+ FFFFf2d452207fb0f2d45220,
+ FFFFf2d452887fb0f2d45288,
+ FFFFf30196007fb0f3019600,
+ FFFFf30196687fb0f3019668,
+ FFFFf30196d07fb0f30196d0,
+ FFFFf30197387fb0f3019738,
+ FFFFf30197a07fb0f30197a0,
+ FFFFf30198087fb0f3019808,
+ FFFFf30198707fb0f3019870,
+ FFFFf30198d87fb0f30198d8,
+ FFFFf30199407fb0f3019940,
+ FFFFf30199a87fb0f30199a8,
+ FFFFf3019a107fb0f3019a10,
+ FFFFf3019a787fb0f3019a78,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -2472,38 +2472,38 @@
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of LowLevelAABB */
- FFFF040268707fef04026870 /* BpBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD040268707fef04026870 /* BpBroadPhase.cpp */; };
- FFFF040268d87fef040268d8 /* BpBroadPhaseMBP.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD040268d87fef040268d8 /* BpBroadPhaseMBP.cpp */; };
- FFFF040269407fef04026940 /* BpBroadPhaseSap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD040269407fef04026940 /* BpBroadPhaseSap.cpp */; };
- FFFF040269a87fef040269a8 /* BpBroadPhaseSapAux.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD040269a87fef040269a8 /* BpBroadPhaseSapAux.cpp */; };
- FFFF04026a107fef04026a10 /* BpMBPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD04026a107fef04026a10 /* BpMBPTasks.cpp */; };
- FFFF04026a787fef04026a78 /* BpSAPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD04026a787fef04026a78 /* BpSAPTasks.cpp */; };
- FFFF04026ae07fef04026ae0 /* BpSimpleAABBManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD04026ae07fef04026ae0 /* BpSimpleAABBManager.cpp */; };
+ FFFFf48002707fb0f4800270 /* BpBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf48002707fb0f4800270 /* BpBroadPhase.cpp */; };
+ FFFFf48002d87fb0f48002d8 /* BpBroadPhaseMBP.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf48002d87fb0f48002d8 /* BpBroadPhaseMBP.cpp */; };
+ FFFFf48003407fb0f4800340 /* BpBroadPhaseSap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf48003407fb0f4800340 /* BpBroadPhaseSap.cpp */; };
+ FFFFf48003a87fb0f48003a8 /* BpBroadPhaseSapAux.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf48003a87fb0f48003a8 /* BpBroadPhaseSapAux.cpp */; };
+ FFFFf48004107fb0f4800410 /* BpMBPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf48004107fb0f4800410 /* BpMBPTasks.cpp */; };
+ FFFFf48004787fb0f4800478 /* BpSAPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf48004787fb0f4800478 /* BpSAPTasks.cpp */; };
+ FFFFf48004e07fb0f48004e0 /* BpSimpleAABBManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf48004e07fb0f48004e0 /* BpSimpleAABBManager.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFD036069d07fef036069d0 /* LowLevelAABB */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelAABB"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFD03609f607fef03609f60 /* BpAABBManagerTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpAABBManagerTasks.h"; path = "../../LowLevelAABB/include/BpAABBManagerTasks.h"; sourceTree = SOURCE_ROOT; };
- FFFD03609fc87fef03609fc8 /* BpBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.h"; path = "../../LowLevelAABB/include/BpBroadPhase.h"; sourceTree = SOURCE_ROOT; };
- FFFD0360a0307fef0360a030 /* BpBroadPhaseUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseUpdate.h"; path = "../../LowLevelAABB/include/BpBroadPhaseUpdate.h"; sourceTree = SOURCE_ROOT; };
- FFFD0360a0987fef0360a098 /* BpSimpleAABBManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.h"; path = "../../LowLevelAABB/include/BpSimpleAABBManager.h"; sourceTree = SOURCE_ROOT; };
- FFFD040266007fef04026600 /* BpBroadPhaseMBP.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.h"; sourceTree = SOURCE_ROOT; };
- FFFD040266687fef04026668 /* BpBroadPhaseMBPCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBPCommon.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBPCommon.h"; sourceTree = SOURCE_ROOT; };
- FFFD040266d07fef040266d0 /* BpBroadPhaseSap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.h"; sourceTree = SOURCE_ROOT; };
- FFFD040267387fef04026738 /* BpBroadPhaseSapAux.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.h"; sourceTree = SOURCE_ROOT; };
- FFFD040267a07fef040267a0 /* BpMBPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.h"; path = "../../LowLevelAABB/src/BpMBPTasks.h"; sourceTree = SOURCE_ROOT; };
- FFFD040268087fef04026808 /* BpSAPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.h"; path = "../../LowLevelAABB/src/BpSAPTasks.h"; sourceTree = SOURCE_ROOT; };
- FFFD040268707fef04026870 /* BpBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.cpp"; path = "../../LowLevelAABB/src/BpBroadPhase.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD040268d87fef040268d8 /* BpBroadPhaseMBP.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD040269407fef04026940 /* BpBroadPhaseSap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD040269a87fef040269a8 /* BpBroadPhaseSapAux.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD04026a107fef04026a10 /* BpMBPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.cpp"; path = "../../LowLevelAABB/src/BpMBPTasks.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD04026a787fef04026a78 /* BpSAPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.cpp"; path = "../../LowLevelAABB/src/BpSAPTasks.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD04026ae07fef04026ae0 /* BpSimpleAABBManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.cpp"; path = "../../LowLevelAABB/src/BpSimpleAABBManager.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf39094b07fb0f39094b0 /* LowLevelAABB */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelAABB"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFDf39065e07fb0f39065e0 /* BpAABBManagerTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpAABBManagerTasks.h"; path = "../../LowLevelAABB/include/BpAABBManagerTasks.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf39066487fb0f3906648 /* BpBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.h"; path = "../../LowLevelAABB/include/BpBroadPhase.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf39066b07fb0f39066b0 /* BpBroadPhaseUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseUpdate.h"; path = "../../LowLevelAABB/include/BpBroadPhaseUpdate.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf39067187fb0f3906718 /* BpSimpleAABBManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.h"; path = "../../LowLevelAABB/include/BpSimpleAABBManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48000007fb0f4800000 /* BpBroadPhaseMBP.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48000687fb0f4800068 /* BpBroadPhaseMBPCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBPCommon.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBPCommon.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48000d07fb0f48000d0 /* BpBroadPhaseSap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48001387fb0f4800138 /* BpBroadPhaseSapAux.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48001a07fb0f48001a0 /* BpMBPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.h"; path = "../../LowLevelAABB/src/BpMBPTasks.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48002087fb0f4800208 /* BpSAPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.h"; path = "../../LowLevelAABB/src/BpSAPTasks.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48002707fb0f4800270 /* BpBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.cpp"; path = "../../LowLevelAABB/src/BpBroadPhase.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf48002d87fb0f48002d8 /* BpBroadPhaseMBP.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf48003407fb0f4800340 /* BpBroadPhaseSap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf48003a87fb0f48003a8 /* BpBroadPhaseSapAux.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf48004107fb0f4800410 /* BpMBPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.cpp"; path = "../../LowLevelAABB/src/BpMBPTasks.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf48004787fb0f4800478 /* BpSAPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.cpp"; path = "../../LowLevelAABB/src/BpSAPTasks.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf48004e07fb0f48004e0 /* BpSimpleAABBManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.cpp"; path = "../../LowLevelAABB/src/BpSimpleAABBManager.cpp"; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */
/* Begin PBXResourcesBuildPhase section */
- FFF2036069d07fef036069d0 /* Resources */ = {
+ FFF2f39094b07fb0f39094b0 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2513,7 +2513,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFC036069d07fef036069d0 /* Frameworks */ = {
+ FFFCf39094b07fb0f39094b0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2523,17 +2523,17 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF8036069d07fef036069d0 /* Sources */ = {
+ FFF8f39094b07fb0f39094b0 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFF040268707fef04026870,
- FFFF040268d87fef040268d8,
- FFFF040269407fef04026940,
- FFFF040269a87fef040269a8,
- FFFF04026a107fef04026a10,
- FFFF04026a787fef04026a78,
- FFFF04026ae07fef04026ae0,
+ FFFFf48002707fb0f4800270,
+ FFFFf48002d87fb0f48002d8,
+ FFFFf48003407fb0f4800340,
+ FFFFf48003a87fb0f48003a8,
+ FFFFf48004107fb0f4800410,
+ FFFFf48004787fb0f4800478,
+ FFFFf48004e07fb0f48004e0,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -2545,105 +2545,105 @@
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of LowLevelDynamics */
- FFFF0396ac007fef0396ac00 /* DyArticulation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD0396ac007fef0396ac00 /* DyArticulation.cpp */; };
- FFFF0396ac687fef0396ac68 /* DyArticulationContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD0396ac687fef0396ac68 /* DyArticulationContactPrep.cpp */; };
- FFFF0396acd07fef0396acd0 /* DyArticulationContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD0396acd07fef0396acd0 /* DyArticulationContactPrepPF.cpp */; };
- FFFF0396ad387fef0396ad38 /* DyArticulationHelper.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD0396ad387fef0396ad38 /* DyArticulationHelper.cpp */; };
- FFFF0396ada07fef0396ada0 /* DyArticulationSIMD.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD0396ada07fef0396ada0 /* DyArticulationSIMD.cpp */; };
- FFFF0396ae087fef0396ae08 /* DyArticulationScalar.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD0396ae087fef0396ae08 /* DyArticulationScalar.cpp */; };
- FFFF0396ae707fef0396ae70 /* DyConstraintPartition.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD0396ae707fef0396ae70 /* DyConstraintPartition.cpp */; };
- FFFF0396aed87fef0396aed8 /* DyConstraintSetup.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD0396aed87fef0396aed8 /* DyConstraintSetup.cpp */; };
- FFFF0396af407fef0396af40 /* DyConstraintSetupBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD0396af407fef0396af40 /* DyConstraintSetupBlock.cpp */; };
- FFFF0396afa87fef0396afa8 /* DyContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD0396afa87fef0396afa8 /* DyContactPrep.cpp */; };
- FFFF0396b0107fef0396b010 /* DyContactPrep4.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD0396b0107fef0396b010 /* DyContactPrep4.cpp */; };
- FFFF0396b0787fef0396b078 /* DyContactPrep4PF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD0396b0787fef0396b078 /* DyContactPrep4PF.cpp */; };
- FFFF0396b0e07fef0396b0e0 /* DyContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD0396b0e07fef0396b0e0 /* DyContactPrepPF.cpp */; };
- FFFF0396b1487fef0396b148 /* DyDynamics.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD0396b1487fef0396b148 /* DyDynamics.cpp */; };
- FFFF0396b1b07fef0396b1b0 /* DyFrictionCorrelation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD0396b1b07fef0396b1b0 /* DyFrictionCorrelation.cpp */; };
- FFFF0396b2187fef0396b218 /* DyRigidBodyToSolverBody.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD0396b2187fef0396b218 /* DyRigidBodyToSolverBody.cpp */; };
- FFFF0396b2807fef0396b280 /* DySolverConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD0396b2807fef0396b280 /* DySolverConstraints.cpp */; };
- FFFF0396b2e87fef0396b2e8 /* DySolverConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD0396b2e87fef0396b2e8 /* DySolverConstraintsBlock.cpp */; };
- FFFF0396b3507fef0396b350 /* DySolverControl.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD0396b3507fef0396b350 /* DySolverControl.cpp */; };
- FFFF0396b3b87fef0396b3b8 /* DySolverControlPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD0396b3b87fef0396b3b8 /* DySolverControlPF.cpp */; };
- FFFF0396b4207fef0396b420 /* DySolverPFConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD0396b4207fef0396b420 /* DySolverPFConstraints.cpp */; };
- FFFF0396b4887fef0396b488 /* DySolverPFConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD0396b4887fef0396b488 /* DySolverPFConstraintsBlock.cpp */; };
- FFFF0396b4f07fef0396b4f0 /* DyThreadContext.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD0396b4f07fef0396b4f0 /* DyThreadContext.cpp */; };
- FFFF0396b5587fef0396b558 /* DyThresholdTable.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD0396b5587fef0396b558 /* DyThresholdTable.cpp */; };
+ FFFFf21ae0007fb0f21ae000 /* DyArticulation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDf21ae0007fb0f21ae000 /* DyArticulation.cpp */; };
+ FFFFf21ae0687fb0f21ae068 /* DyArticulationContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDf21ae0687fb0f21ae068 /* DyArticulationContactPrep.cpp */; };
+ FFFFf21ae0d07fb0f21ae0d0 /* DyArticulationContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDf21ae0d07fb0f21ae0d0 /* DyArticulationContactPrepPF.cpp */; };
+ FFFFf21ae1387fb0f21ae138 /* DyArticulationHelper.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDf21ae1387fb0f21ae138 /* DyArticulationHelper.cpp */; };
+ FFFFf21ae1a07fb0f21ae1a0 /* DyArticulationSIMD.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDf21ae1a07fb0f21ae1a0 /* DyArticulationSIMD.cpp */; };
+ FFFFf21ae2087fb0f21ae208 /* DyArticulationScalar.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDf21ae2087fb0f21ae208 /* DyArticulationScalar.cpp */; };
+ FFFFf21ae2707fb0f21ae270 /* DyConstraintPartition.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDf21ae2707fb0f21ae270 /* DyConstraintPartition.cpp */; };
+ FFFFf21ae2d87fb0f21ae2d8 /* DyConstraintSetup.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDf21ae2d87fb0f21ae2d8 /* DyConstraintSetup.cpp */; };
+ FFFFf21ae3407fb0f21ae340 /* DyConstraintSetupBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDf21ae3407fb0f21ae340 /* DyConstraintSetupBlock.cpp */; };
+ FFFFf21ae3a87fb0f21ae3a8 /* DyContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDf21ae3a87fb0f21ae3a8 /* DyContactPrep.cpp */; };
+ FFFFf21ae4107fb0f21ae410 /* DyContactPrep4.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDf21ae4107fb0f21ae410 /* DyContactPrep4.cpp */; };
+ FFFFf21ae4787fb0f21ae478 /* DyContactPrep4PF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDf21ae4787fb0f21ae478 /* DyContactPrep4PF.cpp */; };
+ FFFFf21ae4e07fb0f21ae4e0 /* DyContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDf21ae4e07fb0f21ae4e0 /* DyContactPrepPF.cpp */; };
+ FFFFf21ae5487fb0f21ae548 /* DyDynamics.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDf21ae5487fb0f21ae548 /* DyDynamics.cpp */; };
+ FFFFf21ae5b07fb0f21ae5b0 /* DyFrictionCorrelation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDf21ae5b07fb0f21ae5b0 /* DyFrictionCorrelation.cpp */; };
+ FFFFf21ae6187fb0f21ae618 /* DyRigidBodyToSolverBody.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDf21ae6187fb0f21ae618 /* DyRigidBodyToSolverBody.cpp */; };
+ FFFFf21ae6807fb0f21ae680 /* DySolverConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDf21ae6807fb0f21ae680 /* DySolverConstraints.cpp */; };
+ FFFFf21ae6e87fb0f21ae6e8 /* DySolverConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDf21ae6e87fb0f21ae6e8 /* DySolverConstraintsBlock.cpp */; };
+ FFFFf21ae7507fb0f21ae750 /* DySolverControl.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDf21ae7507fb0f21ae750 /* DySolverControl.cpp */; };
+ FFFFf21ae7b87fb0f21ae7b8 /* DySolverControlPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDf21ae7b87fb0f21ae7b8 /* DySolverControlPF.cpp */; };
+ FFFFf21ae8207fb0f21ae820 /* DySolverPFConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDf21ae8207fb0f21ae820 /* DySolverPFConstraints.cpp */; };
+ FFFFf21ae8887fb0f21ae888 /* DySolverPFConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDf21ae8887fb0f21ae888 /* DySolverPFConstraintsBlock.cpp */; };
+ FFFFf21ae8f07fb0f21ae8f0 /* DyThreadContext.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDf21ae8f07fb0f21ae8f0 /* DyThreadContext.cpp */; };
+ FFFFf21ae9587fb0f21ae958 /* DyThresholdTable.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDf21ae9587fb0f21ae958 /* DyThresholdTable.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFD03135dd07fef03135dd0 /* LowLevelDynamics */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelDynamics"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFD0396ac007fef0396ac00 /* DyArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.cpp"; path = "../../LowLevelDynamics/src/DyArticulation.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0396ac687fef0396ac68 /* DyArticulationContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0396acd07fef0396acd0 /* DyArticulationContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0396ad387fef0396ad38 /* DyArticulationHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.cpp"; path = "../../LowLevelDynamics/src/DyArticulationHelper.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0396ada07fef0396ada0 /* DyArticulationSIMD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationSIMD.cpp"; path = "../../LowLevelDynamics/src/DyArticulationSIMD.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0396ae087fef0396ae08 /* DyArticulationScalar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.cpp"; path = "../../LowLevelDynamics/src/DyArticulationScalar.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0396ae707fef0396ae70 /* DyConstraintPartition.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.cpp"; path = "../../LowLevelDynamics/src/DyConstraintPartition.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0396aed87fef0396aed8 /* DyConstraintSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetup.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetup.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0396af407fef0396af40 /* DyConstraintSetupBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetupBlock.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetupBlock.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0396afa87fef0396afa8 /* DyContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0396b0107fef0396b010 /* DyContactPrep4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0396b0787fef0396b078 /* DyContactPrep4PF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4PF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4PF.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0396b0e07fef0396b0e0 /* DyContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0396b1487fef0396b148 /* DyDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.cpp"; path = "../../LowLevelDynamics/src/DyDynamics.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0396b1b07fef0396b1b0 /* DyFrictionCorrelation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionCorrelation.cpp"; path = "../../LowLevelDynamics/src/DyFrictionCorrelation.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0396b2187fef0396b218 /* DyRigidBodyToSolverBody.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyRigidBodyToSolverBody.cpp"; path = "../../LowLevelDynamics/src/DyRigidBodyToSolverBody.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0396b2807fef0396b280 /* DySolverConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraints.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0396b2e87fef0396b2e8 /* DySolverConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0396b3507fef0396b350 /* DySolverControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.cpp"; path = "../../LowLevelDynamics/src/DySolverControl.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0396b3b87fef0396b3b8 /* DySolverControlPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.cpp"; path = "../../LowLevelDynamics/src/DySolverControlPF.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0396b4207fef0396b420 /* DySolverPFConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraints.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0396b4887fef0396b488 /* DySolverPFConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0396b4f07fef0396b4f0 /* DyThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.cpp"; path = "../../LowLevelDynamics/src/DyThreadContext.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0396b5587fef0396b558 /* DyThresholdTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.cpp"; path = "../../LowLevelDynamics/src/DyThresholdTable.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD03133ee07fef03133ee0 /* DyArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.h"; path = "../../LowLevelDynamics/include/DyArticulation.h"; sourceTree = SOURCE_ROOT; };
- FFFD03133f487fef03133f48 /* DyConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraint.h"; path = "../../LowLevelDynamics/include/DyConstraint.h"; sourceTree = SOURCE_ROOT; };
- FFFD03133fb07fef03133fb0 /* DyConstraintWriteBack.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintWriteBack.h"; path = "../../LowLevelDynamics/include/DyConstraintWriteBack.h"; sourceTree = SOURCE_ROOT; };
- FFFD031340187fef03134018 /* DyContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContext.h"; path = "../../LowLevelDynamics/include/DyContext.h"; sourceTree = SOURCE_ROOT; };
- FFFD031340807fef03134080 /* DySleepingConfigulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySleepingConfigulation.h"; path = "../../LowLevelDynamics/include/DySleepingConfigulation.h"; sourceTree = SOURCE_ROOT; };
- FFFD031340e87fef031340e8 /* DyThresholdTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.h"; path = "../../LowLevelDynamics/include/DyThresholdTable.h"; sourceTree = SOURCE_ROOT; };
- FFFD0396b6007fef0396b600 /* DyArticulationContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.h"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.h"; sourceTree = SOURCE_ROOT; };
- FFFD0396b6687fef0396b668 /* DyArticulationFnsDebug.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsDebug.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsDebug.h"; sourceTree = SOURCE_ROOT; };
- FFFD0396b6d07fef0396b6d0 /* DyArticulationFnsScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsScalar.h"; sourceTree = SOURCE_ROOT; };
- FFFD0396b7387fef0396b738 /* DyArticulationFnsSimd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsSimd.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsSimd.h"; sourceTree = SOURCE_ROOT; };
- FFFD0396b7a07fef0396b7a0 /* DyArticulationHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.h"; path = "../../LowLevelDynamics/src/DyArticulationHelper.h"; sourceTree = SOURCE_ROOT; };
- FFFD0396b8087fef0396b808 /* DyArticulationPImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationPImpl.h"; path = "../../LowLevelDynamics/src/DyArticulationPImpl.h"; sourceTree = SOURCE_ROOT; };
- FFFD0396b8707fef0396b870 /* DyArticulationReference.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationReference.h"; path = "../../LowLevelDynamics/src/DyArticulationReference.h"; sourceTree = SOURCE_ROOT; };
- FFFD0396b8d87fef0396b8d8 /* DyArticulationScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationScalar.h"; sourceTree = SOURCE_ROOT; };
- FFFD0396b9407fef0396b940 /* DyArticulationUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationUtils.h"; path = "../../LowLevelDynamics/src/DyArticulationUtils.h"; sourceTree = SOURCE_ROOT; };
- FFFD0396b9a87fef0396b9a8 /* DyBodyCoreIntegrator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyBodyCoreIntegrator.h"; path = "../../LowLevelDynamics/src/DyBodyCoreIntegrator.h"; sourceTree = SOURCE_ROOT; };
- FFFD0396ba107fef0396ba10 /* DyConstraintPartition.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.h"; path = "../../LowLevelDynamics/src/DyConstraintPartition.h"; sourceTree = SOURCE_ROOT; };
- FFFD0396ba787fef0396ba78 /* DyConstraintPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPrep.h"; path = "../../LowLevelDynamics/src/DyConstraintPrep.h"; sourceTree = SOURCE_ROOT; };
- FFFD0396bae07fef0396bae0 /* DyContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.h"; path = "../../LowLevelDynamics/src/DyContactPrep.h"; sourceTree = SOURCE_ROOT; };
- FFFD0396bb487fef0396bb48 /* DyContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepShared.h"; path = "../../LowLevelDynamics/src/DyContactPrepShared.h"; sourceTree = SOURCE_ROOT; };
- FFFD0396bbb07fef0396bbb0 /* DyContactReduction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactReduction.h"; path = "../../LowLevelDynamics/src/DyContactReduction.h"; sourceTree = SOURCE_ROOT; };
- FFFD0396bc187fef0396bc18 /* DyCorrelationBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyCorrelationBuffer.h"; path = "../../LowLevelDynamics/src/DyCorrelationBuffer.h"; sourceTree = SOURCE_ROOT; };
- FFFD0396bc807fef0396bc80 /* DyDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.h"; path = "../../LowLevelDynamics/src/DyDynamics.h"; sourceTree = SOURCE_ROOT; };
- FFFD0396bce87fef0396bce8 /* DyFrictionPatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatch.h"; path = "../../LowLevelDynamics/src/DyFrictionPatch.h"; sourceTree = SOURCE_ROOT; };
- FFFD0396bd507fef0396bd50 /* DyFrictionPatchStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatchStreamPair.h"; path = "../../LowLevelDynamics/src/DyFrictionPatchStreamPair.h"; sourceTree = SOURCE_ROOT; };
- FFFD0396bdb87fef0396bdb8 /* DySolverBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverBody.h"; path = "../../LowLevelDynamics/src/DySolverBody.h"; sourceTree = SOURCE_ROOT; };
- FFFD0396be207fef0396be20 /* DySolverConstraint1D.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D.h"; sourceTree = SOURCE_ROOT; };
- FFFD0396be887fef0396be88 /* DySolverConstraint1D4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D4.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D4.h"; sourceTree = SOURCE_ROOT; };
- FFFD0396bef07fef0396bef0 /* DySolverConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintDesc.h"; path = "../../LowLevelDynamics/src/DySolverConstraintDesc.h"; sourceTree = SOURCE_ROOT; };
- FFFD0396bf587fef0396bf58 /* DySolverConstraintExtShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintExtShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintExtShared.h"; sourceTree = SOURCE_ROOT; };
- FFFD0396bfc07fef0396bfc0 /* DySolverConstraintTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintTypes.h"; path = "../../LowLevelDynamics/src/DySolverConstraintTypes.h"; sourceTree = SOURCE_ROOT; };
- FFFD0396c0287fef0396c028 /* DySolverConstraintsShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintsShared.h"; sourceTree = SOURCE_ROOT; };
- FFFD0396c0907fef0396c090 /* DySolverContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact.h"; path = "../../LowLevelDynamics/src/DySolverContact.h"; sourceTree = SOURCE_ROOT; };
- FFFD0396c0f87fef0396c0f8 /* DySolverContact4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact4.h"; path = "../../LowLevelDynamics/src/DySolverContact4.h"; sourceTree = SOURCE_ROOT; };
- FFFD0396c1607fef0396c160 /* DySolverContactPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF.h"; path = "../../LowLevelDynamics/src/DySolverContactPF.h"; sourceTree = SOURCE_ROOT; };
- FFFD0396c1c87fef0396c1c8 /* DySolverContactPF4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF4.h"; path = "../../LowLevelDynamics/src/DySolverContactPF4.h"; sourceTree = SOURCE_ROOT; };
- FFFD0396c2307fef0396c230 /* DySolverContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContext.h"; path = "../../LowLevelDynamics/src/DySolverContext.h"; sourceTree = SOURCE_ROOT; };
- FFFD0396c2987fef0396c298 /* DySolverControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.h"; path = "../../LowLevelDynamics/src/DySolverControl.h"; sourceTree = SOURCE_ROOT; };
- FFFD0396c3007fef0396c300 /* DySolverControlPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.h"; path = "../../LowLevelDynamics/src/DySolverControlPF.h"; sourceTree = SOURCE_ROOT; };
- FFFD0396c3687fef0396c368 /* DySolverCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverCore.h"; path = "../../LowLevelDynamics/src/DySolverCore.h"; sourceTree = SOURCE_ROOT; };
- FFFD0396c3d07fef0396c3d0 /* DySolverExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverExt.h"; path = "../../LowLevelDynamics/src/DySolverExt.h"; sourceTree = SOURCE_ROOT; };
- FFFD0396c4387fef0396c438 /* DySpatial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySpatial.h"; path = "../../LowLevelDynamics/src/DySpatial.h"; sourceTree = SOURCE_ROOT; };
- FFFD0396c4a07fef0396c4a0 /* DyThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.h"; path = "../../LowLevelDynamics/src/DyThreadContext.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2c04d807fb0f2c04d80 /* LowLevelDynamics */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelDynamics"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFDf21ae0007fb0f21ae000 /* DyArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.cpp"; path = "../../LowLevelDynamics/src/DyArticulation.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21ae0687fb0f21ae068 /* DyArticulationContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21ae0d07fb0f21ae0d0 /* DyArticulationContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21ae1387fb0f21ae138 /* DyArticulationHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.cpp"; path = "../../LowLevelDynamics/src/DyArticulationHelper.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21ae1a07fb0f21ae1a0 /* DyArticulationSIMD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationSIMD.cpp"; path = "../../LowLevelDynamics/src/DyArticulationSIMD.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21ae2087fb0f21ae208 /* DyArticulationScalar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.cpp"; path = "../../LowLevelDynamics/src/DyArticulationScalar.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21ae2707fb0f21ae270 /* DyConstraintPartition.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.cpp"; path = "../../LowLevelDynamics/src/DyConstraintPartition.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21ae2d87fb0f21ae2d8 /* DyConstraintSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetup.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetup.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21ae3407fb0f21ae340 /* DyConstraintSetupBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetupBlock.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetupBlock.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21ae3a87fb0f21ae3a8 /* DyContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21ae4107fb0f21ae410 /* DyContactPrep4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21ae4787fb0f21ae478 /* DyContactPrep4PF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4PF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4PF.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21ae4e07fb0f21ae4e0 /* DyContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21ae5487fb0f21ae548 /* DyDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.cpp"; path = "../../LowLevelDynamics/src/DyDynamics.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21ae5b07fb0f21ae5b0 /* DyFrictionCorrelation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionCorrelation.cpp"; path = "../../LowLevelDynamics/src/DyFrictionCorrelation.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21ae6187fb0f21ae618 /* DyRigidBodyToSolverBody.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyRigidBodyToSolverBody.cpp"; path = "../../LowLevelDynamics/src/DyRigidBodyToSolverBody.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21ae6807fb0f21ae680 /* DySolverConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraints.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21ae6e87fb0f21ae6e8 /* DySolverConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21ae7507fb0f21ae750 /* DySolverControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.cpp"; path = "../../LowLevelDynamics/src/DySolverControl.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21ae7b87fb0f21ae7b8 /* DySolverControlPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.cpp"; path = "../../LowLevelDynamics/src/DySolverControlPF.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21ae8207fb0f21ae820 /* DySolverPFConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraints.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21ae8887fb0f21ae888 /* DySolverPFConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21ae8f07fb0f21ae8f0 /* DyThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.cpp"; path = "../../LowLevelDynamics/src/DyThreadContext.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21ae9587fb0f21ae958 /* DyThresholdTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.cpp"; path = "../../LowLevelDynamics/src/DyThresholdTable.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2c0cd907fb0f2c0cd90 /* DyArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.h"; path = "../../LowLevelDynamics/include/DyArticulation.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2c0cdf87fb0f2c0cdf8 /* DyConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraint.h"; path = "../../LowLevelDynamics/include/DyConstraint.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2c0ce607fb0f2c0ce60 /* DyConstraintWriteBack.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintWriteBack.h"; path = "../../LowLevelDynamics/include/DyConstraintWriteBack.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2c0cec87fb0f2c0cec8 /* DyContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContext.h"; path = "../../LowLevelDynamics/include/DyContext.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2c0cf307fb0f2c0cf30 /* DySleepingConfigulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySleepingConfigulation.h"; path = "../../LowLevelDynamics/include/DySleepingConfigulation.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2c0cf987fb0f2c0cf98 /* DyThresholdTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.h"; path = "../../LowLevelDynamics/include/DyThresholdTable.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21af2007fb0f21af200 /* DyArticulationContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.h"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21af2687fb0f21af268 /* DyArticulationFnsDebug.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsDebug.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsDebug.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21af2d07fb0f21af2d0 /* DyArticulationFnsScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsScalar.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21af3387fb0f21af338 /* DyArticulationFnsSimd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsSimd.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsSimd.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21af3a07fb0f21af3a0 /* DyArticulationHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.h"; path = "../../LowLevelDynamics/src/DyArticulationHelper.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21af4087fb0f21af408 /* DyArticulationPImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationPImpl.h"; path = "../../LowLevelDynamics/src/DyArticulationPImpl.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21af4707fb0f21af470 /* DyArticulationReference.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationReference.h"; path = "../../LowLevelDynamics/src/DyArticulationReference.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21af4d87fb0f21af4d8 /* DyArticulationScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationScalar.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21af5407fb0f21af540 /* DyArticulationUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationUtils.h"; path = "../../LowLevelDynamics/src/DyArticulationUtils.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21af5a87fb0f21af5a8 /* DyBodyCoreIntegrator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyBodyCoreIntegrator.h"; path = "../../LowLevelDynamics/src/DyBodyCoreIntegrator.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21af6107fb0f21af610 /* DyConstraintPartition.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.h"; path = "../../LowLevelDynamics/src/DyConstraintPartition.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21af6787fb0f21af678 /* DyConstraintPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPrep.h"; path = "../../LowLevelDynamics/src/DyConstraintPrep.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21af6e07fb0f21af6e0 /* DyContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.h"; path = "../../LowLevelDynamics/src/DyContactPrep.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21af7487fb0f21af748 /* DyContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepShared.h"; path = "../../LowLevelDynamics/src/DyContactPrepShared.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21af7b07fb0f21af7b0 /* DyContactReduction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactReduction.h"; path = "../../LowLevelDynamics/src/DyContactReduction.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21af8187fb0f21af818 /* DyCorrelationBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyCorrelationBuffer.h"; path = "../../LowLevelDynamics/src/DyCorrelationBuffer.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21af8807fb0f21af880 /* DyDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.h"; path = "../../LowLevelDynamics/src/DyDynamics.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21af8e87fb0f21af8e8 /* DyFrictionPatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatch.h"; path = "../../LowLevelDynamics/src/DyFrictionPatch.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21af9507fb0f21af950 /* DyFrictionPatchStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatchStreamPair.h"; path = "../../LowLevelDynamics/src/DyFrictionPatchStreamPair.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21af9b87fb0f21af9b8 /* DySolverBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverBody.h"; path = "../../LowLevelDynamics/src/DySolverBody.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21afa207fb0f21afa20 /* DySolverConstraint1D.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21afa887fb0f21afa88 /* DySolverConstraint1D4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D4.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D4.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21afaf07fb0f21afaf0 /* DySolverConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintDesc.h"; path = "../../LowLevelDynamics/src/DySolverConstraintDesc.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21afb587fb0f21afb58 /* DySolverConstraintExtShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintExtShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintExtShared.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21afbc07fb0f21afbc0 /* DySolverConstraintTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintTypes.h"; path = "../../LowLevelDynamics/src/DySolverConstraintTypes.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21afc287fb0f21afc28 /* DySolverConstraintsShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintsShared.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21afc907fb0f21afc90 /* DySolverContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact.h"; path = "../../LowLevelDynamics/src/DySolverContact.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21afcf87fb0f21afcf8 /* DySolverContact4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact4.h"; path = "../../LowLevelDynamics/src/DySolverContact4.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21afd607fb0f21afd60 /* DySolverContactPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF.h"; path = "../../LowLevelDynamics/src/DySolverContactPF.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21afdc87fb0f21afdc8 /* DySolverContactPF4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF4.h"; path = "../../LowLevelDynamics/src/DySolverContactPF4.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21afe307fb0f21afe30 /* DySolverContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContext.h"; path = "../../LowLevelDynamics/src/DySolverContext.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21afe987fb0f21afe98 /* DySolverControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.h"; path = "../../LowLevelDynamics/src/DySolverControl.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21aff007fb0f21aff00 /* DySolverControlPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.h"; path = "../../LowLevelDynamics/src/DySolverControlPF.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21aff687fb0f21aff68 /* DySolverCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverCore.h"; path = "../../LowLevelDynamics/src/DySolverCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21affd07fb0f21affd0 /* DySolverExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverExt.h"; path = "../../LowLevelDynamics/src/DySolverExt.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21b00387fb0f21b0038 /* DySpatial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySpatial.h"; path = "../../LowLevelDynamics/src/DySpatial.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21b00a07fb0f21b00a0 /* DyThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.h"; path = "../../LowLevelDynamics/src/DyThreadContext.h"; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */
/* Begin PBXResourcesBuildPhase section */
- FFF203135dd07fef03135dd0 /* Resources */ = {
+ FFF2f2c04d807fb0f2c04d80 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2653,7 +2653,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFC03135dd07fef03135dd0 /* Frameworks */ = {
+ FFFCf2c04d807fb0f2c04d80 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2663,34 +2663,34 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF803135dd07fef03135dd0 /* Sources */ = {
+ FFF8f2c04d807fb0f2c04d80 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFF0396ac007fef0396ac00,
- FFFF0396ac687fef0396ac68,
- FFFF0396acd07fef0396acd0,
- FFFF0396ad387fef0396ad38,
- FFFF0396ada07fef0396ada0,
- FFFF0396ae087fef0396ae08,
- FFFF0396ae707fef0396ae70,
- FFFF0396aed87fef0396aed8,
- FFFF0396af407fef0396af40,
- FFFF0396afa87fef0396afa8,
- FFFF0396b0107fef0396b010,
- FFFF0396b0787fef0396b078,
- FFFF0396b0e07fef0396b0e0,
- FFFF0396b1487fef0396b148,
- FFFF0396b1b07fef0396b1b0,
- FFFF0396b2187fef0396b218,
- FFFF0396b2807fef0396b280,
- FFFF0396b2e87fef0396b2e8,
- FFFF0396b3507fef0396b350,
- FFFF0396b3b87fef0396b3b8,
- FFFF0396b4207fef0396b420,
- FFFF0396b4887fef0396b488,
- FFFF0396b4f07fef0396b4f0,
- FFFF0396b5587fef0396b558,
+ FFFFf21ae0007fb0f21ae000,
+ FFFFf21ae0687fb0f21ae068,
+ FFFFf21ae0d07fb0f21ae0d0,
+ FFFFf21ae1387fb0f21ae138,
+ FFFFf21ae1a07fb0f21ae1a0,
+ FFFFf21ae2087fb0f21ae208,
+ FFFFf21ae2707fb0f21ae270,
+ FFFFf21ae2d87fb0f21ae2d8,
+ FFFFf21ae3407fb0f21ae340,
+ FFFFf21ae3a87fb0f21ae3a8,
+ FFFFf21ae4107fb0f21ae410,
+ FFFFf21ae4787fb0f21ae478,
+ FFFFf21ae4e07fb0f21ae4e0,
+ FFFFf21ae5487fb0f21ae548,
+ FFFFf21ae5b07fb0f21ae5b0,
+ FFFFf21ae6187fb0f21ae618,
+ FFFFf21ae6807fb0f21ae680,
+ FFFFf21ae6e87fb0f21ae6e8,
+ FFFFf21ae7507fb0f21ae750,
+ FFFFf21ae7b87fb0f21ae7b8,
+ FFFFf21ae8207fb0f21ae820,
+ FFFFf21ae8887fb0f21ae888,
+ FFFFf21ae8f07fb0f21ae8f0,
+ FFFFf21ae9587fb0f21ae958,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -2702,73 +2702,73 @@
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of LowLevelCloth */
- FFFF0580a6907fef0580a690 /* Allocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0580a6907fef0580a690 /* Allocator.cpp */; };
- FFFF0580a6f87fef0580a6f8 /* Factory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0580a6f87fef0580a6f8 /* Factory.cpp */; };
- FFFF0580a7607fef0580a760 /* PhaseConfig.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0580a7607fef0580a760 /* PhaseConfig.cpp */; };
- FFFF0580a7c87fef0580a7c8 /* SwCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0580a7c87fef0580a7c8 /* SwCloth.cpp */; };
- FFFF0580a8307fef0580a830 /* SwClothData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0580a8307fef0580a830 /* SwClothData.cpp */; };
- FFFF0580a8987fef0580a898 /* SwCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0580a8987fef0580a898 /* SwCollision.cpp */; };
- FFFF0580a9007fef0580a900 /* SwFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0580a9007fef0580a900 /* SwFabric.cpp */; };
- FFFF0580a9687fef0580a968 /* SwFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0580a9687fef0580a968 /* SwFactory.cpp */; };
- FFFF0580a9d07fef0580a9d0 /* SwInterCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0580a9d07fef0580a9d0 /* SwInterCollision.cpp */; };
- FFFF0580aa387fef0580aa38 /* SwSelfCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0580aa387fef0580aa38 /* SwSelfCollision.cpp */; };
- FFFF0580aaa07fef0580aaa0 /* SwSolver.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0580aaa07fef0580aaa0 /* SwSolver.cpp */; };
- FFFF0580ab087fef0580ab08 /* SwSolverKernel.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0580ab087fef0580ab08 /* SwSolverKernel.cpp */; };
- FFFF0580ab707fef0580ab70 /* TripletScheduler.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0580ab707fef0580ab70 /* TripletScheduler.cpp */; };
+ FFFFf4813e907fb0f4813e90 /* Allocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf4813e907fb0f4813e90 /* Allocator.cpp */; };
+ FFFFf4813ef87fb0f4813ef8 /* Factory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf4813ef87fb0f4813ef8 /* Factory.cpp */; };
+ FFFFf4813f607fb0f4813f60 /* PhaseConfig.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf4813f607fb0f4813f60 /* PhaseConfig.cpp */; };
+ FFFFf4813fc87fb0f4813fc8 /* SwCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf4813fc87fb0f4813fc8 /* SwCloth.cpp */; };
+ FFFFf48140307fb0f4814030 /* SwClothData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf48140307fb0f4814030 /* SwClothData.cpp */; };
+ FFFFf48140987fb0f4814098 /* SwCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf48140987fb0f4814098 /* SwCollision.cpp */; };
+ FFFFf48141007fb0f4814100 /* SwFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf48141007fb0f4814100 /* SwFabric.cpp */; };
+ FFFFf48141687fb0f4814168 /* SwFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf48141687fb0f4814168 /* SwFactory.cpp */; };
+ FFFFf48141d07fb0f48141d0 /* SwInterCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf48141d07fb0f48141d0 /* SwInterCollision.cpp */; };
+ FFFFf48142387fb0f4814238 /* SwSelfCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf48142387fb0f4814238 /* SwSelfCollision.cpp */; };
+ FFFFf48142a07fb0f48142a0 /* SwSolver.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf48142a07fb0f48142a0 /* SwSolver.cpp */; };
+ FFFFf48143087fb0f4814308 /* SwSolverKernel.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf48143087fb0f4814308 /* SwSolverKernel.cpp */; };
+ FFFFf48143707fb0f4814370 /* TripletScheduler.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf48143707fb0f4814370 /* TripletScheduler.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFD049056907fef04905690 /* LowLevelCloth */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelCloth"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFD0490cc007fef0490cc00 /* Cloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cloth.h"; path = "../../LowLevelCloth/include/Cloth.h"; sourceTree = SOURCE_ROOT; };
- FFFD0490cc687fef0490cc68 /* Fabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Fabric.h"; path = "../../LowLevelCloth/include/Fabric.h"; sourceTree = SOURCE_ROOT; };
- FFFD0490ccd07fef0490ccd0 /* Factory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.h"; path = "../../LowLevelCloth/include/Factory.h"; sourceTree = SOURCE_ROOT; };
- FFFD0490cd387fef0490cd38 /* PhaseConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.h"; path = "../../LowLevelCloth/include/PhaseConfig.h"; sourceTree = SOURCE_ROOT; };
- FFFD0490cda07fef0490cda0 /* Range.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Range.h"; path = "../../LowLevelCloth/include/Range.h"; sourceTree = SOURCE_ROOT; };
- FFFD0490ce087fef0490ce08 /* Solver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Solver.h"; path = "../../LowLevelCloth/include/Solver.h"; sourceTree = SOURCE_ROOT; };
- FFFD0490ce707fef0490ce70 /* Types.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Types.h"; path = "../../LowLevelCloth/include/Types.h"; sourceTree = SOURCE_ROOT; };
- FFFD05809c007fef05809c00 /* Allocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.h"; path = "../../LowLevelCloth/src/Allocator.h"; sourceTree = SOURCE_ROOT; };
- FFFD05809c687fef05809c68 /* Array.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Array.h"; path = "../../LowLevelCloth/src/Array.h"; sourceTree = SOURCE_ROOT; };
- FFFD05809cd07fef05809cd0 /* BoundingBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BoundingBox.h"; path = "../../LowLevelCloth/src/BoundingBox.h"; sourceTree = SOURCE_ROOT; };
- FFFD05809d387fef05809d38 /* ClothBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothBase.h"; path = "../../LowLevelCloth/src/ClothBase.h"; sourceTree = SOURCE_ROOT; };
- FFFD05809da07fef05809da0 /* ClothImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothImpl.h"; path = "../../LowLevelCloth/src/ClothImpl.h"; sourceTree = SOURCE_ROOT; };
- FFFD05809e087fef05809e08 /* IndexPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IndexPair.h"; path = "../../LowLevelCloth/src/IndexPair.h"; sourceTree = SOURCE_ROOT; };
- FFFD05809e707fef05809e70 /* IterationState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IterationState.h"; path = "../../LowLevelCloth/src/IterationState.h"; sourceTree = SOURCE_ROOT; };
- FFFD05809ed87fef05809ed8 /* MovingAverage.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MovingAverage.h"; path = "../../LowLevelCloth/src/MovingAverage.h"; sourceTree = SOURCE_ROOT; };
- FFFD05809f407fef05809f40 /* PointInterpolator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PointInterpolator.h"; path = "../../LowLevelCloth/src/PointInterpolator.h"; sourceTree = SOURCE_ROOT; };
- FFFD05809fa87fef05809fa8 /* Simd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd.h"; path = "../../LowLevelCloth/src/Simd.h"; sourceTree = SOURCE_ROOT; };
- FFFD0580a0107fef0580a010 /* Simd4f.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd4f.h"; path = "../../LowLevelCloth/src/Simd4f.h"; sourceTree = SOURCE_ROOT; };
- FFFD0580a0787fef0580a078 /* Simd4i.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd4i.h"; path = "../../LowLevelCloth/src/Simd4i.h"; sourceTree = SOURCE_ROOT; };
- FFFD0580a0e07fef0580a0e0 /* SimdTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SimdTypes.h"; path = "../../LowLevelCloth/src/SimdTypes.h"; sourceTree = SOURCE_ROOT; };
- FFFD0580a1487fef0580a148 /* StackAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "StackAllocator.h"; path = "../../LowLevelCloth/src/StackAllocator.h"; sourceTree = SOURCE_ROOT; };
- FFFD0580a1b07fef0580a1b0 /* SwCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.h"; path = "../../LowLevelCloth/src/SwCloth.h"; sourceTree = SOURCE_ROOT; };
- FFFD0580a2187fef0580a218 /* SwClothData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.h"; path = "../../LowLevelCloth/src/SwClothData.h"; sourceTree = SOURCE_ROOT; };
- FFFD0580a2807fef0580a280 /* SwCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.h"; path = "../../LowLevelCloth/src/SwCollision.h"; sourceTree = SOURCE_ROOT; };
- FFFD0580a2e87fef0580a2e8 /* SwCollisionHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollisionHelpers.h"; path = "../../LowLevelCloth/src/SwCollisionHelpers.h"; sourceTree = SOURCE_ROOT; };
- FFFD0580a3507fef0580a350 /* SwFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.h"; path = "../../LowLevelCloth/src/SwFabric.h"; sourceTree = SOURCE_ROOT; };
- FFFD0580a3b87fef0580a3b8 /* SwFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.h"; path = "../../LowLevelCloth/src/SwFactory.h"; sourceTree = SOURCE_ROOT; };
- FFFD0580a4207fef0580a420 /* SwInterCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.h"; path = "../../LowLevelCloth/src/SwInterCollision.h"; sourceTree = SOURCE_ROOT; };
- FFFD0580a4887fef0580a488 /* SwSelfCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.h"; path = "../../LowLevelCloth/src/SwSelfCollision.h"; sourceTree = SOURCE_ROOT; };
- FFFD0580a4f07fef0580a4f0 /* SwSolver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.h"; path = "../../LowLevelCloth/src/SwSolver.h"; sourceTree = SOURCE_ROOT; };
- FFFD0580a5587fef0580a558 /* SwSolverKernel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.h"; path = "../../LowLevelCloth/src/SwSolverKernel.h"; sourceTree = SOURCE_ROOT; };
- FFFD0580a5c07fef0580a5c0 /* TripletScheduler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.h"; path = "../../LowLevelCloth/src/TripletScheduler.h"; sourceTree = SOURCE_ROOT; };
- FFFD0580a6287fef0580a628 /* Vec4T.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Vec4T.h"; path = "../../LowLevelCloth/src/Vec4T.h"; sourceTree = SOURCE_ROOT; };
- FFFD0580a6907fef0580a690 /* Allocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.cpp"; path = "../../LowLevelCloth/src/Allocator.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0580a6f87fef0580a6f8 /* Factory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.cpp"; path = "../../LowLevelCloth/src/Factory.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0580a7607fef0580a760 /* PhaseConfig.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.cpp"; path = "../../LowLevelCloth/src/PhaseConfig.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0580a7c87fef0580a7c8 /* SwCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.cpp"; path = "../../LowLevelCloth/src/SwCloth.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0580a8307fef0580a830 /* SwClothData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.cpp"; path = "../../LowLevelCloth/src/SwClothData.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0580a8987fef0580a898 /* SwCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.cpp"; path = "../../LowLevelCloth/src/SwCollision.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0580a9007fef0580a900 /* SwFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.cpp"; path = "../../LowLevelCloth/src/SwFabric.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0580a9687fef0580a968 /* SwFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.cpp"; path = "../../LowLevelCloth/src/SwFactory.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0580a9d07fef0580a9d0 /* SwInterCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.cpp"; path = "../../LowLevelCloth/src/SwInterCollision.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0580aa387fef0580aa38 /* SwSelfCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.cpp"; path = "../../LowLevelCloth/src/SwSelfCollision.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0580aaa07fef0580aaa0 /* SwSolver.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.cpp"; path = "../../LowLevelCloth/src/SwSolver.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0580ab087fef0580ab08 /* SwSolverKernel.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.cpp"; path = "../../LowLevelCloth/src/SwSolverKernel.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0580ab707fef0580ab70 /* TripletScheduler.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.cpp"; path = "../../LowLevelCloth/src/TripletScheduler.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf3927bf07fb0f3927bf0 /* LowLevelCloth */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelCloth"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFDf39305407fb0f3930540 /* Cloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cloth.h"; path = "../../LowLevelCloth/include/Cloth.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf39305a87fb0f39305a8 /* Fabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Fabric.h"; path = "../../LowLevelCloth/include/Fabric.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf39306107fb0f3930610 /* Factory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.h"; path = "../../LowLevelCloth/include/Factory.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf39306787fb0f3930678 /* PhaseConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.h"; path = "../../LowLevelCloth/include/PhaseConfig.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf39306e07fb0f39306e0 /* Range.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Range.h"; path = "../../LowLevelCloth/include/Range.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf39307487fb0f3930748 /* Solver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Solver.h"; path = "../../LowLevelCloth/include/Solver.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf39307b07fb0f39307b0 /* Types.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Types.h"; path = "../../LowLevelCloth/include/Types.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48134007fb0f4813400 /* Allocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.h"; path = "../../LowLevelCloth/src/Allocator.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48134687fb0f4813468 /* Array.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Array.h"; path = "../../LowLevelCloth/src/Array.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48134d07fb0f48134d0 /* BoundingBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BoundingBox.h"; path = "../../LowLevelCloth/src/BoundingBox.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48135387fb0f4813538 /* ClothBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothBase.h"; path = "../../LowLevelCloth/src/ClothBase.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48135a07fb0f48135a0 /* ClothImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothImpl.h"; path = "../../LowLevelCloth/src/ClothImpl.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48136087fb0f4813608 /* IndexPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IndexPair.h"; path = "../../LowLevelCloth/src/IndexPair.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48136707fb0f4813670 /* IterationState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IterationState.h"; path = "../../LowLevelCloth/src/IterationState.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48136d87fb0f48136d8 /* MovingAverage.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MovingAverage.h"; path = "../../LowLevelCloth/src/MovingAverage.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48137407fb0f4813740 /* PointInterpolator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PointInterpolator.h"; path = "../../LowLevelCloth/src/PointInterpolator.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48137a87fb0f48137a8 /* Simd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd.h"; path = "../../LowLevelCloth/src/Simd.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48138107fb0f4813810 /* Simd4f.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd4f.h"; path = "../../LowLevelCloth/src/Simd4f.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48138787fb0f4813878 /* Simd4i.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd4i.h"; path = "../../LowLevelCloth/src/Simd4i.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48138e07fb0f48138e0 /* SimdTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SimdTypes.h"; path = "../../LowLevelCloth/src/SimdTypes.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48139487fb0f4813948 /* StackAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "StackAllocator.h"; path = "../../LowLevelCloth/src/StackAllocator.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf48139b07fb0f48139b0 /* SwCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.h"; path = "../../LowLevelCloth/src/SwCloth.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4813a187fb0f4813a18 /* SwClothData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.h"; path = "../../LowLevelCloth/src/SwClothData.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4813a807fb0f4813a80 /* SwCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.h"; path = "../../LowLevelCloth/src/SwCollision.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4813ae87fb0f4813ae8 /* SwCollisionHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollisionHelpers.h"; path = "../../LowLevelCloth/src/SwCollisionHelpers.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4813b507fb0f4813b50 /* SwFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.h"; path = "../../LowLevelCloth/src/SwFabric.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4813bb87fb0f4813bb8 /* SwFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.h"; path = "../../LowLevelCloth/src/SwFactory.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4813c207fb0f4813c20 /* SwInterCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.h"; path = "../../LowLevelCloth/src/SwInterCollision.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4813c887fb0f4813c88 /* SwSelfCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.h"; path = "../../LowLevelCloth/src/SwSelfCollision.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4813cf07fb0f4813cf0 /* SwSolver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.h"; path = "../../LowLevelCloth/src/SwSolver.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4813d587fb0f4813d58 /* SwSolverKernel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.h"; path = "../../LowLevelCloth/src/SwSolverKernel.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4813dc07fb0f4813dc0 /* TripletScheduler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.h"; path = "../../LowLevelCloth/src/TripletScheduler.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4813e287fb0f4813e28 /* Vec4T.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Vec4T.h"; path = "../../LowLevelCloth/src/Vec4T.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf4813e907fb0f4813e90 /* Allocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.cpp"; path = "../../LowLevelCloth/src/Allocator.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf4813ef87fb0f4813ef8 /* Factory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.cpp"; path = "../../LowLevelCloth/src/Factory.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf4813f607fb0f4813f60 /* PhaseConfig.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.cpp"; path = "../../LowLevelCloth/src/PhaseConfig.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf4813fc87fb0f4813fc8 /* SwCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.cpp"; path = "../../LowLevelCloth/src/SwCloth.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf48140307fb0f4814030 /* SwClothData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.cpp"; path = "../../LowLevelCloth/src/SwClothData.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf48140987fb0f4814098 /* SwCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.cpp"; path = "../../LowLevelCloth/src/SwCollision.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf48141007fb0f4814100 /* SwFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.cpp"; path = "../../LowLevelCloth/src/SwFabric.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf48141687fb0f4814168 /* SwFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.cpp"; path = "../../LowLevelCloth/src/SwFactory.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf48141d07fb0f48141d0 /* SwInterCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.cpp"; path = "../../LowLevelCloth/src/SwInterCollision.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf48142387fb0f4814238 /* SwSelfCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.cpp"; path = "../../LowLevelCloth/src/SwSelfCollision.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf48142a07fb0f48142a0 /* SwSolver.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.cpp"; path = "../../LowLevelCloth/src/SwSolver.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf48143087fb0f4814308 /* SwSolverKernel.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.cpp"; path = "../../LowLevelCloth/src/SwSolverKernel.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf48143707fb0f4814370 /* TripletScheduler.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.cpp"; path = "../../LowLevelCloth/src/TripletScheduler.cpp"; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */
/* Begin PBXResourcesBuildPhase section */
- FFF2049056907fef04905690 /* Resources */ = {
+ FFF2f3927bf07fb0f3927bf0 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2778,7 +2778,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFC049056907fef04905690 /* Frameworks */ = {
+ FFFCf3927bf07fb0f3927bf0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2788,23 +2788,23 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF8049056907fef04905690 /* Sources */ = {
+ FFF8f3927bf07fb0f3927bf0 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFF0580a6907fef0580a690,
- FFFF0580a6f87fef0580a6f8,
- FFFF0580a7607fef0580a760,
- FFFF0580a7c87fef0580a7c8,
- FFFF0580a8307fef0580a830,
- FFFF0580a8987fef0580a898,
- FFFF0580a9007fef0580a900,
- FFFF0580a9687fef0580a968,
- FFFF0580a9d07fef0580a9d0,
- FFFF0580aa387fef0580aa38,
- FFFF0580aaa07fef0580aaa0,
- FFFF0580ab087fef0580ab08,
- FFFF0580ab707fef0580ab70,
+ FFFFf4813e907fb0f4813e90,
+ FFFFf4813ef87fb0f4813ef8,
+ FFFFf4813f607fb0f4813f60,
+ FFFFf4813fc87fb0f4813fc8,
+ FFFFf48140307fb0f4814030,
+ FFFFf48140987fb0f4814098,
+ FFFFf48141007fb0f4814100,
+ FFFFf48141687fb0f4814168,
+ FFFFf48141d07fb0f48141d0,
+ FFFFf48142387fb0f4814238,
+ FFFFf48142a07fb0f48142a0,
+ FFFFf48143087fb0f4814308,
+ FFFFf48143707fb0f4814370,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -2816,79 +2816,79 @@
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of LowLevelParticles */
- FFFF0402fd587fef0402fd58 /* PtBatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0402fd587fef0402fd58 /* PtBatcher.cpp */; };
- FFFF0402fdc07fef0402fdc0 /* PtBodyTransformVault.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0402fdc07fef0402fdc0 /* PtBodyTransformVault.cpp */; };
- FFFF0402fe287fef0402fe28 /* PtCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0402fe287fef0402fe28 /* PtCollision.cpp */; };
- FFFF0402fe907fef0402fe90 /* PtCollisionBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0402fe907fef0402fe90 /* PtCollisionBox.cpp */; };
- FFFF0402fef87fef0402fef8 /* PtCollisionCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0402fef87fef0402fef8 /* PtCollisionCapsule.cpp */; };
- FFFF0402ff607fef0402ff60 /* PtCollisionConvex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0402ff607fef0402ff60 /* PtCollisionConvex.cpp */; };
- FFFF0402ffc87fef0402ffc8 /* PtCollisionMesh.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD0402ffc87fef0402ffc8 /* PtCollisionMesh.cpp */; };
- FFFF040300307fef04030030 /* PtCollisionPlane.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD040300307fef04030030 /* PtCollisionPlane.cpp */; };
- FFFF040300987fef04030098 /* PtCollisionSphere.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD040300987fef04030098 /* PtCollisionSphere.cpp */; };
- FFFF040301007fef04030100 /* PtContextCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD040301007fef04030100 /* PtContextCpu.cpp */; };
- FFFF040301687fef04030168 /* PtDynamics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD040301687fef04030168 /* PtDynamics.cpp */; };
- FFFF040301d07fef040301d0 /* PtParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD040301d07fef040301d0 /* PtParticleData.cpp */; };
- FFFF040302387fef04030238 /* PtParticleShapeCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD040302387fef04030238 /* PtParticleShapeCpu.cpp */; };
- FFFF040302a07fef040302a0 /* PtParticleSystemSimCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD040302a07fef040302a0 /* PtParticleSystemSimCpu.cpp */; };
- FFFF040303087fef04030308 /* PtSpatialHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD040303087fef04030308 /* PtSpatialHash.cpp */; };
- FFFF040303707fef04030370 /* PtSpatialLocalHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD040303707fef04030370 /* PtSpatialLocalHash.cpp */; };
+ FFFFf21b85587fb0f21b8558 /* PtBatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21b85587fb0f21b8558 /* PtBatcher.cpp */; };
+ FFFFf21b85c07fb0f21b85c0 /* PtBodyTransformVault.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21b85c07fb0f21b85c0 /* PtBodyTransformVault.cpp */; };
+ FFFFf21b86287fb0f21b8628 /* PtCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21b86287fb0f21b8628 /* PtCollision.cpp */; };
+ FFFFf21b86907fb0f21b8690 /* PtCollisionBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21b86907fb0f21b8690 /* PtCollisionBox.cpp */; };
+ FFFFf21b86f87fb0f21b86f8 /* PtCollisionCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21b86f87fb0f21b86f8 /* PtCollisionCapsule.cpp */; };
+ FFFFf21b87607fb0f21b8760 /* PtCollisionConvex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21b87607fb0f21b8760 /* PtCollisionConvex.cpp */; };
+ FFFFf21b87c87fb0f21b87c8 /* PtCollisionMesh.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21b87c87fb0f21b87c8 /* PtCollisionMesh.cpp */; };
+ FFFFf21b88307fb0f21b8830 /* PtCollisionPlane.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21b88307fb0f21b8830 /* PtCollisionPlane.cpp */; };
+ FFFFf21b88987fb0f21b8898 /* PtCollisionSphere.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21b88987fb0f21b8898 /* PtCollisionSphere.cpp */; };
+ FFFFf21b89007fb0f21b8900 /* PtContextCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21b89007fb0f21b8900 /* PtContextCpu.cpp */; };
+ FFFFf21b89687fb0f21b8968 /* PtDynamics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21b89687fb0f21b8968 /* PtDynamics.cpp */; };
+ FFFFf21b89d07fb0f21b89d0 /* PtParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21b89d07fb0f21b89d0 /* PtParticleData.cpp */; };
+ FFFFf21b8a387fb0f21b8a38 /* PtParticleShapeCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21b8a387fb0f21b8a38 /* PtParticleShapeCpu.cpp */; };
+ FFFFf21b8aa07fb0f21b8aa0 /* PtParticleSystemSimCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21b8aa07fb0f21b8aa0 /* PtParticleSystemSimCpu.cpp */; };
+ FFFFf21b8b087fb0f21b8b08 /* PtSpatialHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21b8b087fb0f21b8b08 /* PtSpatialHash.cpp */; };
+ FFFFf21b8b707fb0f21b8b70 /* PtSpatialLocalHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf21b8b707fb0f21b8b70 /* PtSpatialLocalHash.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFD035f41907fef035f4190 /* LowLevelParticles */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelParticles"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFD040256007fef04025600 /* PtBodyTransformVault.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.h"; path = "../../LowLevelParticles/include/PtBodyTransformVault.h"; sourceTree = SOURCE_ROOT; };
- FFFD040256687fef04025668 /* PtContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContext.h"; path = "../../LowLevelParticles/include/PtContext.h"; sourceTree = SOURCE_ROOT; };
- FFFD040256d07fef040256d0 /* PtGridCellVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtGridCellVector.h"; path = "../../LowLevelParticles/include/PtGridCellVector.h"; sourceTree = SOURCE_ROOT; };
- FFFD040257387fef04025738 /* PtParticle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticle.h"; path = "../../LowLevelParticles/include/PtParticle.h"; sourceTree = SOURCE_ROOT; };
- FFFD040257a07fef040257a0 /* PtParticleContactManagerStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleContactManagerStream.h"; path = "../../LowLevelParticles/include/PtParticleContactManagerStream.h"; sourceTree = SOURCE_ROOT; };
- FFFD040258087fef04025808 /* PtParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.h"; path = "../../LowLevelParticles/include/PtParticleData.h"; sourceTree = SOURCE_ROOT; };
- FFFD040258707fef04025870 /* PtParticleShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShape.h"; path = "../../LowLevelParticles/include/PtParticleShape.h"; sourceTree = SOURCE_ROOT; };
- FFFD040258d87fef040258d8 /* PtParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemCore.h"; path = "../../LowLevelParticles/include/PtParticleSystemCore.h"; sourceTree = SOURCE_ROOT; };
- FFFD040259407fef04025940 /* PtParticleSystemFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemFlags.h"; path = "../../LowLevelParticles/include/PtParticleSystemFlags.h"; sourceTree = SOURCE_ROOT; };
- FFFD040259a87fef040259a8 /* PtParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSim.h"; path = "../../LowLevelParticles/include/PtParticleSystemSim.h"; sourceTree = SOURCE_ROOT; };
- FFFD0402f4007fef0402f400 /* PtBatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.h"; path = "../../LowLevelParticles/src/PtBatcher.h"; sourceTree = SOURCE_ROOT; };
- FFFD0402f4687fef0402f468 /* PtCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.h"; path = "../../LowLevelParticles/src/PtCollision.h"; sourceTree = SOURCE_ROOT; };
- FFFD0402f4d07fef0402f4d0 /* PtCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionData.h"; path = "../../LowLevelParticles/src/PtCollisionData.h"; sourceTree = SOURCE_ROOT; };
- FFFD0402f5387fef0402f538 /* PtCollisionHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionHelper.h"; path = "../../LowLevelParticles/src/PtCollisionHelper.h"; sourceTree = SOURCE_ROOT; };
- FFFD0402f5a07fef0402f5a0 /* PtCollisionMethods.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMethods.h"; path = "../../LowLevelParticles/src/PtCollisionMethods.h"; sourceTree = SOURCE_ROOT; };
- FFFD0402f6087fef0402f608 /* PtCollisionParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionParameters.h"; path = "../../LowLevelParticles/src/PtCollisionParameters.h"; sourceTree = SOURCE_ROOT; };
- FFFD0402f6707fef0402f670 /* PtConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConfig.h"; path = "../../LowLevelParticles/src/PtConfig.h"; sourceTree = SOURCE_ROOT; };
- FFFD0402f6d87fef0402f6d8 /* PtConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConstants.h"; path = "../../LowLevelParticles/src/PtConstants.h"; sourceTree = SOURCE_ROOT; };
- FFFD0402f7407fef0402f740 /* PtContextCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.h"; path = "../../LowLevelParticles/src/PtContextCpu.h"; sourceTree = SOURCE_ROOT; };
- FFFD0402f7a87fef0402f7a8 /* PtDynamicHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicHelper.h"; path = "../../LowLevelParticles/src/PtDynamicHelper.h"; sourceTree = SOURCE_ROOT; };
- FFFD0402f8107fef0402f810 /* PtDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.h"; path = "../../LowLevelParticles/src/PtDynamics.h"; sourceTree = SOURCE_ROOT; };
- FFFD0402f8787fef0402f878 /* PtDynamicsKernels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsKernels.h"; path = "../../LowLevelParticles/src/PtDynamicsKernels.h"; sourceTree = SOURCE_ROOT; };
- FFFD0402f8e07fef0402f8e0 /* PtDynamicsParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsParameters.h"; path = "../../LowLevelParticles/src/PtDynamicsParameters.h"; sourceTree = SOURCE_ROOT; };
- FFFD0402f9487fef0402f948 /* PtDynamicsTempBuffers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsTempBuffers.h"; path = "../../LowLevelParticles/src/PtDynamicsTempBuffers.h"; sourceTree = SOURCE_ROOT; };
- FFFD0402f9b07fef0402f9b0 /* PtHeightFieldAabbTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtHeightFieldAabbTest.h"; path = "../../LowLevelParticles/src/PtHeightFieldAabbTest.h"; sourceTree = SOURCE_ROOT; };
- FFFD0402fa187fef0402fa18 /* PtPacketSections.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtPacketSections.h"; path = "../../LowLevelParticles/src/PtPacketSections.h"; sourceTree = SOURCE_ROOT; };
- FFFD0402fa807fef0402fa80 /* PtParticleCell.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleCell.h"; path = "../../LowLevelParticles/src/PtParticleCell.h"; sourceTree = SOURCE_ROOT; };
- FFFD0402fae87fef0402fae8 /* PtParticleOpcodeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleOpcodeCache.h"; path = "../../LowLevelParticles/src/PtParticleOpcodeCache.h"; sourceTree = SOURCE_ROOT; };
- FFFD0402fb507fef0402fb50 /* PtParticleShapeCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.h"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.h"; sourceTree = SOURCE_ROOT; };
- FFFD0402fbb87fef0402fbb8 /* PtParticleSystemSimCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.h"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.h"; sourceTree = SOURCE_ROOT; };
- FFFD0402fc207fef0402fc20 /* PtSpatialHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.h"; path = "../../LowLevelParticles/src/PtSpatialHash.h"; sourceTree = SOURCE_ROOT; };
- FFFD0402fc887fef0402fc88 /* PtSpatialHashHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHashHelper.h"; path = "../../LowLevelParticles/src/PtSpatialHashHelper.h"; sourceTree = SOURCE_ROOT; };
- FFFD0402fcf07fef0402fcf0 /* PtTwoWayData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtTwoWayData.h"; path = "../../LowLevelParticles/src/PtTwoWayData.h"; sourceTree = SOURCE_ROOT; };
- FFFD0402fd587fef0402fd58 /* PtBatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.cpp"; path = "../../LowLevelParticles/src/PtBatcher.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0402fdc07fef0402fdc0 /* PtBodyTransformVault.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.cpp"; path = "../../LowLevelParticles/src/PtBodyTransformVault.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0402fe287fef0402fe28 /* PtCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.cpp"; path = "../../LowLevelParticles/src/PtCollision.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0402fe907fef0402fe90 /* PtCollisionBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionBox.cpp"; path = "../../LowLevelParticles/src/PtCollisionBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0402fef87fef0402fef8 /* PtCollisionCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionCapsule.cpp"; path = "../../LowLevelParticles/src/PtCollisionCapsule.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0402ff607fef0402ff60 /* PtCollisionConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionConvex.cpp"; path = "../../LowLevelParticles/src/PtCollisionConvex.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD0402ffc87fef0402ffc8 /* PtCollisionMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMesh.cpp"; path = "../../LowLevelParticles/src/PtCollisionMesh.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD040300307fef04030030 /* PtCollisionPlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionPlane.cpp"; path = "../../LowLevelParticles/src/PtCollisionPlane.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD040300987fef04030098 /* PtCollisionSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionSphere.cpp"; path = "../../LowLevelParticles/src/PtCollisionSphere.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD040301007fef04030100 /* PtContextCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.cpp"; path = "../../LowLevelParticles/src/PtContextCpu.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD040301687fef04030168 /* PtDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.cpp"; path = "../../LowLevelParticles/src/PtDynamics.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD040301d07fef040301d0 /* PtParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.cpp"; path = "../../LowLevelParticles/src/PtParticleData.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD040302387fef04030238 /* PtParticleShapeCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD040302a07fef040302a0 /* PtParticleSystemSimCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD040303087fef04030308 /* PtSpatialHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialHash.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD040303707fef04030370 /* PtSpatialLocalHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialLocalHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialLocalHash.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2c195d07fb0f2c195d0 /* LowLevelParticles */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelParticles"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFDf21a68007fb0f21a6800 /* PtBodyTransformVault.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.h"; path = "../../LowLevelParticles/include/PtBodyTransformVault.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21a68687fb0f21a6868 /* PtContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContext.h"; path = "../../LowLevelParticles/include/PtContext.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21a68d07fb0f21a68d0 /* PtGridCellVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtGridCellVector.h"; path = "../../LowLevelParticles/include/PtGridCellVector.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21a69387fb0f21a6938 /* PtParticle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticle.h"; path = "../../LowLevelParticles/include/PtParticle.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21a69a07fb0f21a69a0 /* PtParticleContactManagerStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleContactManagerStream.h"; path = "../../LowLevelParticles/include/PtParticleContactManagerStream.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21a6a087fb0f21a6a08 /* PtParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.h"; path = "../../LowLevelParticles/include/PtParticleData.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21a6a707fb0f21a6a70 /* PtParticleShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShape.h"; path = "../../LowLevelParticles/include/PtParticleShape.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21a6ad87fb0f21a6ad8 /* PtParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemCore.h"; path = "../../LowLevelParticles/include/PtParticleSystemCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21a6b407fb0f21a6b40 /* PtParticleSystemFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemFlags.h"; path = "../../LowLevelParticles/include/PtParticleSystemFlags.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21a6ba87fb0f21a6ba8 /* PtParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSim.h"; path = "../../LowLevelParticles/include/PtParticleSystemSim.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21b7c007fb0f21b7c00 /* PtBatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.h"; path = "../../LowLevelParticles/src/PtBatcher.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21b7c687fb0f21b7c68 /* PtCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.h"; path = "../../LowLevelParticles/src/PtCollision.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21b7cd07fb0f21b7cd0 /* PtCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionData.h"; path = "../../LowLevelParticles/src/PtCollisionData.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21b7d387fb0f21b7d38 /* PtCollisionHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionHelper.h"; path = "../../LowLevelParticles/src/PtCollisionHelper.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21b7da07fb0f21b7da0 /* PtCollisionMethods.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMethods.h"; path = "../../LowLevelParticles/src/PtCollisionMethods.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21b7e087fb0f21b7e08 /* PtCollisionParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionParameters.h"; path = "../../LowLevelParticles/src/PtCollisionParameters.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21b7e707fb0f21b7e70 /* PtConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConfig.h"; path = "../../LowLevelParticles/src/PtConfig.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21b7ed87fb0f21b7ed8 /* PtConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConstants.h"; path = "../../LowLevelParticles/src/PtConstants.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21b7f407fb0f21b7f40 /* PtContextCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.h"; path = "../../LowLevelParticles/src/PtContextCpu.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21b7fa87fb0f21b7fa8 /* PtDynamicHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicHelper.h"; path = "../../LowLevelParticles/src/PtDynamicHelper.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21b80107fb0f21b8010 /* PtDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.h"; path = "../../LowLevelParticles/src/PtDynamics.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21b80787fb0f21b8078 /* PtDynamicsKernels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsKernels.h"; path = "../../LowLevelParticles/src/PtDynamicsKernels.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21b80e07fb0f21b80e0 /* PtDynamicsParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsParameters.h"; path = "../../LowLevelParticles/src/PtDynamicsParameters.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21b81487fb0f21b8148 /* PtDynamicsTempBuffers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsTempBuffers.h"; path = "../../LowLevelParticles/src/PtDynamicsTempBuffers.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21b81b07fb0f21b81b0 /* PtHeightFieldAabbTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtHeightFieldAabbTest.h"; path = "../../LowLevelParticles/src/PtHeightFieldAabbTest.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21b82187fb0f21b8218 /* PtPacketSections.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtPacketSections.h"; path = "../../LowLevelParticles/src/PtPacketSections.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21b82807fb0f21b8280 /* PtParticleCell.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleCell.h"; path = "../../LowLevelParticles/src/PtParticleCell.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21b82e87fb0f21b82e8 /* PtParticleOpcodeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleOpcodeCache.h"; path = "../../LowLevelParticles/src/PtParticleOpcodeCache.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21b83507fb0f21b8350 /* PtParticleShapeCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.h"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21b83b87fb0f21b83b8 /* PtParticleSystemSimCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.h"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21b84207fb0f21b8420 /* PtSpatialHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.h"; path = "../../LowLevelParticles/src/PtSpatialHash.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21b84887fb0f21b8488 /* PtSpatialHashHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHashHelper.h"; path = "../../LowLevelParticles/src/PtSpatialHashHelper.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21b84f07fb0f21b84f0 /* PtTwoWayData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtTwoWayData.h"; path = "../../LowLevelParticles/src/PtTwoWayData.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf21b85587fb0f21b8558 /* PtBatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.cpp"; path = "../../LowLevelParticles/src/PtBatcher.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21b85c07fb0f21b85c0 /* PtBodyTransformVault.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.cpp"; path = "../../LowLevelParticles/src/PtBodyTransformVault.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21b86287fb0f21b8628 /* PtCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.cpp"; path = "../../LowLevelParticles/src/PtCollision.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21b86907fb0f21b8690 /* PtCollisionBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionBox.cpp"; path = "../../LowLevelParticles/src/PtCollisionBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21b86f87fb0f21b86f8 /* PtCollisionCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionCapsule.cpp"; path = "../../LowLevelParticles/src/PtCollisionCapsule.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21b87607fb0f21b8760 /* PtCollisionConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionConvex.cpp"; path = "../../LowLevelParticles/src/PtCollisionConvex.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21b87c87fb0f21b87c8 /* PtCollisionMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMesh.cpp"; path = "../../LowLevelParticles/src/PtCollisionMesh.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21b88307fb0f21b8830 /* PtCollisionPlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionPlane.cpp"; path = "../../LowLevelParticles/src/PtCollisionPlane.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21b88987fb0f21b8898 /* PtCollisionSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionSphere.cpp"; path = "../../LowLevelParticles/src/PtCollisionSphere.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21b89007fb0f21b8900 /* PtContextCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.cpp"; path = "../../LowLevelParticles/src/PtContextCpu.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21b89687fb0f21b8968 /* PtDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.cpp"; path = "../../LowLevelParticles/src/PtDynamics.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21b89d07fb0f21b89d0 /* PtParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.cpp"; path = "../../LowLevelParticles/src/PtParticleData.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21b8a387fb0f21b8a38 /* PtParticleShapeCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21b8aa07fb0f21b8aa0 /* PtParticleSystemSimCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21b8b087fb0f21b8b08 /* PtSpatialHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialHash.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf21b8b707fb0f21b8b70 /* PtSpatialLocalHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialLocalHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialLocalHash.cpp"; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */
/* Begin PBXResourcesBuildPhase section */
- FFF2035f41907fef035f4190 /* Resources */ = {
+ FFF2f2c195d07fb0f2c195d0 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2898,7 +2898,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFC035f41907fef035f4190 /* Frameworks */ = {
+ FFFCf2c195d07fb0f2c195d0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2908,26 +2908,26 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF8035f41907fef035f4190 /* Sources */ = {
+ FFF8f2c195d07fb0f2c195d0 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFF0402fd587fef0402fd58,
- FFFF0402fdc07fef0402fdc0,
- FFFF0402fe287fef0402fe28,
- FFFF0402fe907fef0402fe90,
- FFFF0402fef87fef0402fef8,
- FFFF0402ff607fef0402ff60,
- FFFF0402ffc87fef0402ffc8,
- FFFF040300307fef04030030,
- FFFF040300987fef04030098,
- FFFF040301007fef04030100,
- FFFF040301687fef04030168,
- FFFF040301d07fef040301d0,
- FFFF040302387fef04030238,
- FFFF040302a07fef040302a0,
- FFFF040303087fef04030308,
- FFFF040303707fef04030370,
+ FFFFf21b85587fb0f21b8558,
+ FFFFf21b85c07fb0f21b85c0,
+ FFFFf21b86287fb0f21b8628,
+ FFFFf21b86907fb0f21b8690,
+ FFFFf21b86f87fb0f21b86f8,
+ FFFFf21b87607fb0f21b8760,
+ FFFFf21b87c87fb0f21b87c8,
+ FFFFf21b88307fb0f21b8830,
+ FFFFf21b88987fb0f21b8898,
+ FFFFf21b89007fb0f21b8900,
+ FFFFf21b89687fb0f21b8968,
+ FFFFf21b89d07fb0f21b89d0,
+ FFFFf21b8a387fb0f21b8a38,
+ FFFFf21b8aa07fb0f21b8aa0,
+ FFFFf21b8b087fb0f21b8b08,
+ FFFFf21b8b707fb0f21b8b70,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -2939,22 +2939,22 @@
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of PxTask */
- FFFF03715af07fef03715af0 /* src/TaskManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD03715af07fef03715af0 /* src/TaskManager.cpp */; };
+ FFFFf2fafbd07fb0f2fafbd0 /* src/TaskManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf2fafbd07fb0f2fafbd0 /* src/TaskManager.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFD0370f9107fef0370f910 /* PxTask */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxTask"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFD037161d07fef037161d0 /* PxCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCpuDispatcher.h"; path = "../../../../PxShared/include/task/PxCpuDispatcher.h"; sourceTree = SOURCE_ROOT; };
- FFFD037162387fef03716238 /* PxGpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuDispatcher.h"; path = "../../../../PxShared/include/task/PxGpuDispatcher.h"; sourceTree = SOURCE_ROOT; };
- FFFD037162a07fef037162a0 /* PxGpuTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuTask.h"; path = "../../../../PxShared/include/task/PxGpuTask.h"; sourceTree = SOURCE_ROOT; };
- FFFD037163087fef03716308 /* PxTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTask.h"; path = "../../../../PxShared/include/task/PxTask.h"; sourceTree = SOURCE_ROOT; };
- FFFD037163707fef03716370 /* PxTaskDefine.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskDefine.h"; path = "../../../../PxShared/include/task/PxTaskDefine.h"; sourceTree = SOURCE_ROOT; };
- FFFD037163d87fef037163d8 /* PxTaskManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskManager.h"; path = "../../../../PxShared/include/task/PxTaskManager.h"; sourceTree = SOURCE_ROOT; };
- FFFD03715af07fef03715af0 /* src/TaskManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/TaskManager.cpp"; path = "../../../../PxShared/src/task/src/TaskManager.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf2faef607fb0f2faef60 /* PxTask */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxTask"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFDf2fad2907fb0f2fad290 /* PxCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCpuDispatcher.h"; path = "../../../../PxShared/include/task/PxCpuDispatcher.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2fad2f87fb0f2fad2f8 /* PxGpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuDispatcher.h"; path = "../../../../PxShared/include/task/PxGpuDispatcher.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2fad3607fb0f2fad360 /* PxGpuTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuTask.h"; path = "../../../../PxShared/include/task/PxGpuTask.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2fad3c87fb0f2fad3c8 /* PxTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTask.h"; path = "../../../../PxShared/include/task/PxTask.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2fad4307fb0f2fad430 /* PxTaskDefine.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskDefine.h"; path = "../../../../PxShared/include/task/PxTaskDefine.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2fad4987fb0f2fad498 /* PxTaskManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskManager.h"; path = "../../../../PxShared/include/task/PxTaskManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf2fafbd07fb0f2fafbd0 /* 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 */
- FFF20370f9107fef0370f910 /* Resources */ = {
+ FFF2f2faef607fb0f2faef60 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2964,7 +2964,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFC0370f9107fef0370f910 /* Frameworks */ = {
+ FFFCf2faef607fb0f2faef60 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2974,11 +2974,11 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF80370f9107fef0370f910 /* Sources */ = {
+ FFF8f2faef607fb0f2faef60 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFF03715af07fef03715af0,
+ FFFFf2fafbd07fb0f2fafbd0,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -2990,17 +2990,17 @@
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of PsFastXml */
- FFFF04b1acb07fef04b1acb0 /* PsFastXml.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD04b1acb07fef04b1acb0 /* PsFastXml.cpp */; };
+ FFFFf394ae707fb0f394ae70 /* PsFastXml.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDf394ae707fb0f394ae70 /* PsFastXml.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFD04b1a4607fef04b1a460 /* PsFastXml */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PsFastXml"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFD04b1abb07fef04b1abb0 /* PsFastXml.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PsFastXml.h"; path = "../../../../PxShared/src/fastxml/include/PsFastXml.h"; sourceTree = SOURCE_ROOT; };
- FFFD04b1acb07fef04b1acb0 /* PsFastXml.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PsFastXml.cpp"; path = "../../../../PxShared/src/fastxml/src/PsFastXml.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFDf39379407fb0f3937940 /* PsFastXml */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PsFastXml"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFDf394ad707fb0f394ad70 /* PsFastXml.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PsFastXml.h"; path = "../../../../PxShared/src/fastxml/include/PsFastXml.h"; sourceTree = SOURCE_ROOT; };
+ FFFDf394ae707fb0f394ae70 /* 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 */
- FFF204b1a4607fef04b1a460 /* Resources */ = {
+ FFF2f39379407fb0f3937940 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -3010,7 +3010,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFC04b1a4607fef04b1a460 /* Frameworks */ = {
+ FFFCf39379407fb0f3937940 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -3020,11 +3020,11 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF804b1a4607fef04b1a460 /* Sources */ = {
+ FFF8f39379407fb0f3937940 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFF04b1acb07fef04b1acb0,
+ FFFFf394ae707fb0f394ae70,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -3036,1974 +3036,1974 @@
/* End PBXTargetDependency section */
/* Begin PBXContainerItemProxy section */
- FFF504b1def07fef04b1def0 /* PBXContainerItemProxy */ = {
- containerPortal = FFF90247d5407fef0247d540 /* Project object */;
+ FFF5f39459607fb0f3945960 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF9f1568a407fb0f1568a40 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFA04b1def07fef04b1def0 /* PhysX */;
+ remoteGlobalIDString = FFFAf39459607fb0f3945960 /* PhysX */;
remoteInfo = "PhysX";
};
- FFF504b269a07fef04b269a0 /* PBXContainerItemProxy */ = {
- containerPortal = FFF90247d5407fef0247d540 /* Project object */;
+ FFF5f3934b807fb0f3934b80 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF9f1568a407fb0f1568a40 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFA04b269a07fef04b269a0 /* PhysXCharacterKinematic */;
+ remoteGlobalIDString = FFFAf3934b807fb0f3934b80 /* PhysXCharacterKinematic */;
remoteInfo = "PhysXCharacterKinematic";
};
- FFF504b27f107fef04b27f10 /* PBXContainerItemProxy */ = {
- containerPortal = FFF90247d5407fef0247d540 /* Project object */;
+ FFF5f3950f807fb0f3950f80 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF9f1568a407fb0f1568a40 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFA04b27f107fef04b27f10 /* PhysXVehicle */;
+ remoteGlobalIDString = FFFAf3950f807fb0f3950f80 /* PhysXVehicle */;
remoteInfo = "PhysXVehicle";
};
- FFF504b37ba07fef04b37ba0 /* PBXContainerItemProxy */ = {
- containerPortal = FFF90247d5407fef0247d540 /* Project object */;
+ FFF5f39602f07fb0f39602f0 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF9f1568a407fb0f1568a40 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFA04b37ba07fef04b37ba0 /* PhysXExtensions */;
+ remoteGlobalIDString = FFFAf39602f07fb0f39602f0 /* PhysXExtensions */;
remoteInfo = "PhysXExtensions";
};
- FFF504b4a4f07fef04b4a4f0 /* PBXContainerItemProxy */ = {
- containerPortal = FFF90247d5407fef0247d540 /* Project object */;
+ FFF5f3972c407fb0f3972c40 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF9f1568a407fb0f1568a40 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFA04b4a4f07fef04b4a4f0 /* SceneQuery */;
+ remoteGlobalIDString = FFFAf3972c407fb0f3972c40 /* SceneQuery */;
remoteInfo = "SceneQuery";
};
- FFF504b4ea707fef04b4ea70 /* PBXContainerItemProxy */ = {
- containerPortal = FFF90247d5407fef0247d540 /* Project object */;
+ FFF5f39771c07fb0f39771c0 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF9f1568a407fb0f1568a40 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFA04b4ea707fef04b4ea70 /* SimulationController */;
+ remoteGlobalIDString = FFFAf39771c07fb0f39771c0 /* SimulationController */;
remoteInfo = "SimulationController";
};
- FFF50492c6407fef0492c640 /* PBXContainerItemProxy */ = {
- containerPortal = FFF90247d5407fef0247d540 /* Project object */;
+ FFF5f2c8ba007fb0f2c8ba00 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF9f1568a407fb0f1568a40 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFA0492c6407fef0492c640 /* PhysXCooking */;
+ remoteGlobalIDString = FFFAf2c8ba007fb0f2c8ba00 /* PhysXCooking */;
remoteInfo = "PhysXCooking";
};
- FFF50314a5307fef0314a530 /* PBXContainerItemProxy */ = {
- containerPortal = FFF90247d5407fef0247d540 /* Project object */;
+ FFF5f299eeb07fb0f299eeb0 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF9f1568a407fb0f1568a40 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFA0314a5307fef0314a530 /* PhysXCommon */;
+ remoteGlobalIDString = FFFAf299eeb07fb0f299eeb0 /* PhysXCommon */;
remoteInfo = "PhysXCommon";
};
- FFF5031431707fef03143170 /* PBXContainerItemProxy */ = {
- containerPortal = FFF90247d5407fef0247d540 /* Project object */;
+ FFF5f298c0307fb0f298c030 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF9f1568a407fb0f1568a40 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFA031431707fef03143170 /* PxFoundation */;
+ remoteGlobalIDString = FFFAf298c0307fb0f298c030 /* PxFoundation */;
remoteInfo = "PxFoundation";
};
- FFF5030748c07fef030748c0 /* PBXContainerItemProxy */ = {
- containerPortal = FFF90247d5407fef0247d540 /* Project object */;
+ FFF5f14114a07fb0f14114a0 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF9f1568a407fb0f1568a40 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFA030748c07fef030748c0 /* PxPvdSDK */;
+ remoteGlobalIDString = FFFAf14114a07fb0f14114a0 /* PxPvdSDK */;
remoteInfo = "PxPvdSDK";
};
- FFF50310a8f07fef0310a8f0 /* PBXContainerItemProxy */ = {
- containerPortal = FFF90247d5407fef0247d540 /* Project object */;
+ FFF5f2d3dd907fb0f2d3dd90 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF9f1568a407fb0f1568a40 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFA0310a8f07fef0310a8f0 /* LowLevel */;
+ remoteGlobalIDString = FFFAf2d3dd907fb0f2d3dd90 /* LowLevel */;
remoteInfo = "LowLevel";
};
- FFF5036069d07fef036069d0 /* PBXContainerItemProxy */ = {
- containerPortal = FFF90247d5407fef0247d540 /* Project object */;
+ FFF5f39094b07fb0f39094b0 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF9f1568a407fb0f1568a40 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFA036069d07fef036069d0 /* LowLevelAABB */;
+ remoteGlobalIDString = FFFAf39094b07fb0f39094b0 /* LowLevelAABB */;
remoteInfo = "LowLevelAABB";
};
- FFF503135dd07fef03135dd0 /* PBXContainerItemProxy */ = {
- containerPortal = FFF90247d5407fef0247d540 /* Project object */;
+ FFF5f2c04d807fb0f2c04d80 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF9f1568a407fb0f1568a40 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFA03135dd07fef03135dd0 /* LowLevelDynamics */;
+ remoteGlobalIDString = FFFAf2c04d807fb0f2c04d80 /* LowLevelDynamics */;
remoteInfo = "LowLevelDynamics";
};
- FFF5049056907fef04905690 /* PBXContainerItemProxy */ = {
- containerPortal = FFF90247d5407fef0247d540 /* Project object */;
+ FFF5f3927bf07fb0f3927bf0 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF9f1568a407fb0f1568a40 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFA049056907fef04905690 /* LowLevelCloth */;
+ remoteGlobalIDString = FFFAf3927bf07fb0f3927bf0 /* LowLevelCloth */;
remoteInfo = "LowLevelCloth";
};
- FFF5035f41907fef035f4190 /* PBXContainerItemProxy */ = {
- containerPortal = FFF90247d5407fef0247d540 /* Project object */;
+ FFF5f2c195d07fb0f2c195d0 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF9f1568a407fb0f1568a40 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFA035f41907fef035f4190 /* LowLevelParticles */;
+ remoteGlobalIDString = FFFAf2c195d07fb0f2c195d0 /* LowLevelParticles */;
remoteInfo = "LowLevelParticles";
};
- FFF50370f9107fef0370f910 /* PBXContainerItemProxy */ = {
- containerPortal = FFF90247d5407fef0247d540 /* Project object */;
+ FFF5f2faef607fb0f2faef60 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF9f1568a407fb0f1568a40 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFA0370f9107fef0370f910 /* PxTask */;
+ remoteGlobalIDString = FFFAf2faef607fb0f2faef60 /* PxTask */;
remoteInfo = "PxTask";
};
- FFF504b1a4607fef04b1a460 /* PBXContainerItemProxy */ = {
- containerPortal = FFF90247d5407fef0247d540 /* Project object */;
+ FFF5f39379407fb0f3937940 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF9f1568a407fb0f1568a40 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFA04b1a4607fef04b1a460 /* PsFastXml */;
+ remoteGlobalIDString = FFFAf39379407fb0f3937940 /* PsFastXml */;
remoteInfo = "PsFastXml";
};
/* End PBXContainerItemProxy section */
/* Begin PBXGroup section */
- FFFB0247d5a87fef0247d5a8 /* PhysX */ = {
+ FFFBf1568aa87fb0f1568aa8 /* PhysX */ = {
isa = PBXGroup;
children = (
- FFF00247d5407fef0247d540 /* Source */,
- FFEE0247d5407fef0247d540 /* Products */,
+ FFF0f1568a407fb0f1568a40 /* Source */,
+ FFEEf1568a407fb0f1568a40 /* Products */,
);
name = "PhysX";
sourceTree = "<group>";
};
- FFF00247d5407fef0247d540 /* Source */ = {
+ FFF0f1568a407fb0f1568a40 /* Source */ = {
isa = PBXGroup;
children = (
- FFFB04b1def07fef04b1def0,
- FFFB04b269a07fef04b269a0,
- FFFB04b27f107fef04b27f10,
- FFFB04b37ba07fef04b37ba0,
- FFFB04b4a4f07fef04b4a4f0,
- FFFB04b4ea707fef04b4ea70,
- FFFB0492c6407fef0492c640,
- FFFB0314a5307fef0314a530,
- FFFB031431707fef03143170,
- FFFB030748c07fef030748c0,
- FFFB0310a8f07fef0310a8f0,
- FFFB036069d07fef036069d0,
- FFFB03135dd07fef03135dd0,
- FFFB049056907fef04905690,
- FFFB035f41907fef035f4190,
- FFFB0370f9107fef0370f910,
- FFFB04b1a4607fef04b1a460,
+ FFFBf39459607fb0f3945960,
+ FFFBf3934b807fb0f3934b80,
+ FFFBf3950f807fb0f3950f80,
+ FFFBf39602f07fb0f39602f0,
+ FFFBf3972c407fb0f3972c40,
+ FFFBf39771c07fb0f39771c0,
+ FFFBf2c8ba007fb0f2c8ba00,
+ FFFBf299eeb07fb0f299eeb0,
+ FFFBf298c0307fb0f298c030,
+ FFFBf14114a07fb0f14114a0,
+ FFFBf2d3dd907fb0f2d3dd90,
+ FFFBf39094b07fb0f39094b0,
+ FFFBf2c04d807fb0f2c04d80,
+ FFFBf3927bf07fb0f3927bf0,
+ FFFBf2c195d07fb0f2c195d0,
+ FFFBf2faef607fb0f2faef60,
+ FFFBf39379407fb0f3937940,
);
name = Source;
sourceTree = "<group>";
};
- FFEE0247d5407fef0247d540 /* Products */ = {
+ FFEEf1568a407fb0f1568a40 /* Products */ = {
isa = PBXGroup;
children = (
- FFFD04b1def07fef04b1def0,
- FFFD04b269a07fef04b269a0,
- FFFD04b27f107fef04b27f10,
- FFFD04b37ba07fef04b37ba0,
- FFFD04b4a4f07fef04b4a4f0,
- FFFD04b4ea707fef04b4ea70,
- FFFD0492c6407fef0492c640,
- FFFD0314a5307fef0314a530,
- FFFD031431707fef03143170,
- FFFD030748c07fef030748c0,
- FFFD0310a8f07fef0310a8f0,
- FFFD036069d07fef036069d0,
- FFFD03135dd07fef03135dd0,
- FFFD049056907fef04905690,
- FFFD035f41907fef035f4190,
- FFFD0370f9107fef0370f910,
- FFFD04b1a4607fef04b1a460,
+ FFFDf39459607fb0f3945960,
+ FFFDf3934b807fb0f3934b80,
+ FFFDf3950f807fb0f3950f80,
+ FFFDf39602f07fb0f39602f0,
+ FFFDf3972c407fb0f3972c40,
+ FFFDf39771c07fb0f39771c0,
+ FFFDf2c8ba007fb0f2c8ba00,
+ FFFDf299eeb07fb0f299eeb0,
+ FFFDf298c0307fb0f298c030,
+ FFFDf14114a07fb0f14114a0,
+ FFFDf2d3dd907fb0f2d3dd90,
+ FFFDf39094b07fb0f39094b0,
+ FFFDf2c04d807fb0f2c04d80,
+ FFFDf3927bf07fb0f3927bf0,
+ FFFDf2c195d07fb0f2c195d0,
+ FFFDf2faef607fb0f2faef60,
+ FFFDf39379407fb0f3937940,
);
name = Products;
sourceTree = "<group>";
};
- FFFB04b1def07fef04b1def0 /* PhysX */ = {
+ FFFBf39459607fb0f3945960 /* PhysX */ = {
isa = PBXGroup;
children = (
- FFFB04b2e7e07fef04b2e7e0 /* src */,
- FFFB04b2e8087fef04b2e808 /* include */,
- FFFB04b2e8307fef04b2e830 /* metadata */,
+ FFFBf3956ee07fb0f3956ee0 /* src */,
+ FFFBf3956f087fb0f3956f08 /* include */,
+ FFFBf3956f307fb0f3956f30 /* metadata */,
);
name = "PhysX";
sourceTree = "<group>";
};
- FFFB04b2e7e07fef04b2e7e0 /* src */ = {
+ FFFBf3956ee07fb0f3956ee0 /* src */ = {
isa = PBXGroup;
children = (
- FFFD040578007fef04057800 /* NpActor.h */,
- FFFD040578687fef04057868 /* NpActorTemplate.h */,
- FFFD040578d07fef040578d0 /* NpAggregate.h */,
- FFFD040579387fef04057938 /* NpArticulation.h */,
- FFFD040579a07fef040579a0 /* NpArticulationJoint.h */,
- FFFD04057a087fef04057a08 /* NpArticulationLink.h */,
- FFFD04057a707fef04057a70 /* NpBatchQuery.h */,
- FFFD04057ad87fef04057ad8 /* NpCast.h */,
- FFFD04057b407fef04057b40 /* NpConnector.h */,
- FFFD04057ba87fef04057ba8 /* NpConstraint.h */,
- FFFD04057c107fef04057c10 /* NpFactory.h */,
- FFFD04057c787fef04057c78 /* NpMaterial.h */,
- FFFD04057ce07fef04057ce0 /* NpMaterialManager.h */,
- FFFD04057d487fef04057d48 /* NpPhysics.h */,
- FFFD04057db07fef04057db0 /* NpPhysicsInsertionCallback.h */,
- FFFD04057e187fef04057e18 /* NpPtrTableStorageManager.h */,
- FFFD04057e807fef04057e80 /* NpPvdSceneQueryCollector.h */,
- FFFD04057ee87fef04057ee8 /* NpQueryShared.h */,
- FFFD04057f507fef04057f50 /* NpReadCheck.h */,
- FFFD04057fb87fef04057fb8 /* NpRigidActorTemplate.h */,
- FFFD040580207fef04058020 /* NpRigidActorTemplateInternal.h */,
- FFFD040580887fef04058088 /* NpRigidBodyTemplate.h */,
- FFFD040580f07fef040580f0 /* NpRigidDynamic.h */,
- FFFD040581587fef04058158 /* NpRigidStatic.h */,
- FFFD040581c07fef040581c0 /* NpScene.h */,
- FFFD040582287fef04058228 /* NpSceneQueries.h */,
- FFFD040582907fef04058290 /* NpShape.h */,
- FFFD040582f87fef040582f8 /* NpShapeManager.h */,
- FFFD040583607fef04058360 /* NpSpatialIndex.h */,
- FFFD040583c87fef040583c8 /* NpVolumeCache.h */,
- FFFD040584307fef04058430 /* NpWriteCheck.h */,
- FFFD040584987fef04058498 /* PvdMetaDataBindingData.h */,
- FFFD040585007fef04058500 /* PvdMetaDataPvdBinding.h */,
- FFFD040585687fef04058568 /* PvdPhysicsClient.h */,
- FFFD040585d07fef040585d0 /* PvdTypeNames.h */,
- FFFD040586387fef04058638 /* NpActor.cpp */,
- FFFD040586a07fef040586a0 /* NpAggregate.cpp */,
- FFFD040587087fef04058708 /* NpArticulation.cpp */,
- FFFD040587707fef04058770 /* NpArticulationJoint.cpp */,
- FFFD040587d87fef040587d8 /* NpArticulationLink.cpp */,
- FFFD040588407fef04058840 /* NpBatchQuery.cpp */,
- FFFD040588a87fef040588a8 /* NpConstraint.cpp */,
- FFFD040589107fef04058910 /* NpFactory.cpp */,
- FFFD040589787fef04058978 /* NpMaterial.cpp */,
- FFFD040589e07fef040589e0 /* NpMetaData.cpp */,
- FFFD04058a487fef04058a48 /* NpPhysics.cpp */,
- FFFD04058ab07fef04058ab0 /* NpPvdSceneQueryCollector.cpp */,
- FFFD04058b187fef04058b18 /* NpReadCheck.cpp */,
- FFFD04058b807fef04058b80 /* NpRigidDynamic.cpp */,
- FFFD04058be87fef04058be8 /* NpRigidStatic.cpp */,
- FFFD04058c507fef04058c50 /* NpScene.cpp */,
- FFFD04058cb87fef04058cb8 /* NpSceneQueries.cpp */,
- FFFD04058d207fef04058d20 /* NpSerializerAdapter.cpp */,
- FFFD04058d887fef04058d88 /* NpShape.cpp */,
- FFFD04058df07fef04058df0 /* NpShapeManager.cpp */,
- FFFD04058e587fef04058e58 /* NpSpatialIndex.cpp */,
- FFFD04058ec07fef04058ec0 /* NpVolumeCache.cpp */,
- FFFD04058f287fef04058f28 /* NpWriteCheck.cpp */,
- FFFD04058f907fef04058f90 /* PvdMetaDataPvdBinding.cpp */,
- FFFD04058ff87fef04058ff8 /* PvdPhysicsClient.cpp */,
- FFFD040590607fef04059060 /* particles/NpParticleBaseTemplate.h */,
- FFFD040590c87fef040590c8 /* particles/NpParticleFluid.h */,
- FFFD040591307fef04059130 /* particles/NpParticleFluidReadData.h */,
- FFFD040591987fef04059198 /* particles/NpParticleSystem.h */,
- FFFD040592007fef04059200 /* particles/NpParticleFluid.cpp */,
- FFFD040592687fef04059268 /* particles/NpParticleSystem.cpp */,
- FFFD040592d07fef040592d0 /* buffering/ScbActor.h */,
- FFFD040593387fef04059338 /* buffering/ScbAggregate.h */,
- FFFD040593a07fef040593a0 /* buffering/ScbArticulation.h */,
- FFFD040594087fef04059408 /* buffering/ScbArticulationJoint.h */,
- FFFD040594707fef04059470 /* buffering/ScbBase.h */,
- FFFD040594d87fef040594d8 /* buffering/ScbBody.h */,
- FFFD040595407fef04059540 /* buffering/ScbCloth.h */,
- FFFD040595a87fef040595a8 /* buffering/ScbConstraint.h */,
- FFFD040596107fef04059610 /* buffering/ScbDefs.h */,
- FFFD040596787fef04059678 /* buffering/ScbNpDeps.h */,
- FFFD040596e07fef040596e0 /* buffering/ScbParticleSystem.h */,
- FFFD040597487fef04059748 /* buffering/ScbRigidObject.h */,
- FFFD040597b07fef040597b0 /* buffering/ScbRigidStatic.h */,
- FFFD040598187fef04059818 /* buffering/ScbScene.h */,
- FFFD040598807fef04059880 /* buffering/ScbSceneBuffer.h */,
- FFFD040598e87fef040598e8 /* buffering/ScbScenePvdClient.h */,
- FFFD040599507fef04059950 /* buffering/ScbShape.h */,
- FFFD040599b87fef040599b8 /* buffering/ScbType.h */,
- FFFD04059a207fef04059a20 /* buffering/ScbActor.cpp */,
- FFFD04059a887fef04059a88 /* buffering/ScbAggregate.cpp */,
- FFFD04059af07fef04059af0 /* buffering/ScbBase.cpp */,
- FFFD04059b587fef04059b58 /* buffering/ScbCloth.cpp */,
- FFFD04059bc07fef04059bc0 /* buffering/ScbMetaData.cpp */,
- FFFD04059c287fef04059c28 /* buffering/ScbParticleSystem.cpp */,
- FFFD04059c907fef04059c90 /* buffering/ScbScene.cpp */,
- FFFD04059cf87fef04059cf8 /* buffering/ScbScenePvdClient.cpp */,
- FFFD04059d607fef04059d60 /* buffering/ScbShape.cpp */,
- FFFD04059dc87fef04059dc8 /* cloth/NpCloth.h */,
- FFFD04059e307fef04059e30 /* cloth/NpClothFabric.h */,
- FFFD04059e987fef04059e98 /* cloth/NpClothParticleData.h */,
- FFFD04059f007fef04059f00 /* cloth/NpCloth.cpp */,
- FFFD04059f687fef04059f68 /* cloth/NpClothFabric.cpp */,
- FFFD04059fd07fef04059fd0 /* cloth/NpClothParticleData.cpp */,
- FFFD0405a0387fef0405a038 /* ../../ImmediateMode/src/NpImmediateMode.cpp */,
+ FFFDf48216007fb0f4821600 /* NpActor.h */,
+ FFFDf48216687fb0f4821668 /* NpActorTemplate.h */,
+ FFFDf48216d07fb0f48216d0 /* NpAggregate.h */,
+ FFFDf48217387fb0f4821738 /* NpArticulation.h */,
+ FFFDf48217a07fb0f48217a0 /* NpArticulationJoint.h */,
+ FFFDf48218087fb0f4821808 /* NpArticulationLink.h */,
+ FFFDf48218707fb0f4821870 /* NpBatchQuery.h */,
+ FFFDf48218d87fb0f48218d8 /* NpCast.h */,
+ FFFDf48219407fb0f4821940 /* NpConnector.h */,
+ FFFDf48219a87fb0f48219a8 /* NpConstraint.h */,
+ FFFDf4821a107fb0f4821a10 /* NpFactory.h */,
+ FFFDf4821a787fb0f4821a78 /* NpMaterial.h */,
+ FFFDf4821ae07fb0f4821ae0 /* NpMaterialManager.h */,
+ FFFDf4821b487fb0f4821b48 /* NpPhysics.h */,
+ FFFDf4821bb07fb0f4821bb0 /* NpPhysicsInsertionCallback.h */,
+ FFFDf4821c187fb0f4821c18 /* NpPtrTableStorageManager.h */,
+ FFFDf4821c807fb0f4821c80 /* NpPvdSceneQueryCollector.h */,
+ FFFDf4821ce87fb0f4821ce8 /* NpQueryShared.h */,
+ FFFDf4821d507fb0f4821d50 /* NpReadCheck.h */,
+ FFFDf4821db87fb0f4821db8 /* NpRigidActorTemplate.h */,
+ FFFDf4821e207fb0f4821e20 /* NpRigidActorTemplateInternal.h */,
+ FFFDf4821e887fb0f4821e88 /* NpRigidBodyTemplate.h */,
+ FFFDf4821ef07fb0f4821ef0 /* NpRigidDynamic.h */,
+ FFFDf4821f587fb0f4821f58 /* NpRigidStatic.h */,
+ FFFDf4821fc07fb0f4821fc0 /* NpScene.h */,
+ FFFDf48220287fb0f4822028 /* NpSceneQueries.h */,
+ FFFDf48220907fb0f4822090 /* NpShape.h */,
+ FFFDf48220f87fb0f48220f8 /* NpShapeManager.h */,
+ FFFDf48221607fb0f4822160 /* NpSpatialIndex.h */,
+ FFFDf48221c87fb0f48221c8 /* NpVolumeCache.h */,
+ FFFDf48222307fb0f4822230 /* NpWriteCheck.h */,
+ FFFDf48222987fb0f4822298 /* PvdMetaDataBindingData.h */,
+ FFFDf48223007fb0f4822300 /* PvdMetaDataPvdBinding.h */,
+ FFFDf48223687fb0f4822368 /* PvdPhysicsClient.h */,
+ FFFDf48223d07fb0f48223d0 /* PvdTypeNames.h */,
+ FFFDf48224387fb0f4822438 /* NpActor.cpp */,
+ FFFDf48224a07fb0f48224a0 /* NpAggregate.cpp */,
+ FFFDf48225087fb0f4822508 /* NpArticulation.cpp */,
+ FFFDf48225707fb0f4822570 /* NpArticulationJoint.cpp */,
+ FFFDf48225d87fb0f48225d8 /* NpArticulationLink.cpp */,
+ FFFDf48226407fb0f4822640 /* NpBatchQuery.cpp */,
+ FFFDf48226a87fb0f48226a8 /* NpConstraint.cpp */,
+ FFFDf48227107fb0f4822710 /* NpFactory.cpp */,
+ FFFDf48227787fb0f4822778 /* NpMaterial.cpp */,
+ FFFDf48227e07fb0f48227e0 /* NpMetaData.cpp */,
+ FFFDf48228487fb0f4822848 /* NpPhysics.cpp */,
+ FFFDf48228b07fb0f48228b0 /* NpPvdSceneQueryCollector.cpp */,
+ FFFDf48229187fb0f4822918 /* NpReadCheck.cpp */,
+ FFFDf48229807fb0f4822980 /* NpRigidDynamic.cpp */,
+ FFFDf48229e87fb0f48229e8 /* NpRigidStatic.cpp */,
+ FFFDf4822a507fb0f4822a50 /* NpScene.cpp */,
+ FFFDf4822ab87fb0f4822ab8 /* NpSceneQueries.cpp */,
+ FFFDf4822b207fb0f4822b20 /* NpSerializerAdapter.cpp */,
+ FFFDf4822b887fb0f4822b88 /* NpShape.cpp */,
+ FFFDf4822bf07fb0f4822bf0 /* NpShapeManager.cpp */,
+ FFFDf4822c587fb0f4822c58 /* NpSpatialIndex.cpp */,
+ FFFDf4822cc07fb0f4822cc0 /* NpVolumeCache.cpp */,
+ FFFDf4822d287fb0f4822d28 /* NpWriteCheck.cpp */,
+ FFFDf4822d907fb0f4822d90 /* PvdMetaDataPvdBinding.cpp */,
+ FFFDf4822df87fb0f4822df8 /* PvdPhysicsClient.cpp */,
+ FFFDf4822e607fb0f4822e60 /* particles/NpParticleBaseTemplate.h */,
+ FFFDf4822ec87fb0f4822ec8 /* particles/NpParticleFluid.h */,
+ FFFDf4822f307fb0f4822f30 /* particles/NpParticleFluidReadData.h */,
+ FFFDf4822f987fb0f4822f98 /* particles/NpParticleSystem.h */,
+ FFFDf48230007fb0f4823000 /* particles/NpParticleFluid.cpp */,
+ FFFDf48230687fb0f4823068 /* particles/NpParticleSystem.cpp */,
+ FFFDf48230d07fb0f48230d0 /* buffering/ScbActor.h */,
+ FFFDf48231387fb0f4823138 /* buffering/ScbAggregate.h */,
+ FFFDf48231a07fb0f48231a0 /* buffering/ScbArticulation.h */,
+ FFFDf48232087fb0f4823208 /* buffering/ScbArticulationJoint.h */,
+ FFFDf48232707fb0f4823270 /* buffering/ScbBase.h */,
+ FFFDf48232d87fb0f48232d8 /* buffering/ScbBody.h */,
+ FFFDf48233407fb0f4823340 /* buffering/ScbCloth.h */,
+ FFFDf48233a87fb0f48233a8 /* buffering/ScbConstraint.h */,
+ FFFDf48234107fb0f4823410 /* buffering/ScbDefs.h */,
+ FFFDf48234787fb0f4823478 /* buffering/ScbNpDeps.h */,
+ FFFDf48234e07fb0f48234e0 /* buffering/ScbParticleSystem.h */,
+ FFFDf48235487fb0f4823548 /* buffering/ScbRigidObject.h */,
+ FFFDf48235b07fb0f48235b0 /* buffering/ScbRigidStatic.h */,
+ FFFDf48236187fb0f4823618 /* buffering/ScbScene.h */,
+ FFFDf48236807fb0f4823680 /* buffering/ScbSceneBuffer.h */,
+ FFFDf48236e87fb0f48236e8 /* buffering/ScbScenePvdClient.h */,
+ FFFDf48237507fb0f4823750 /* buffering/ScbShape.h */,
+ FFFDf48237b87fb0f48237b8 /* buffering/ScbType.h */,
+ FFFDf48238207fb0f4823820 /* buffering/ScbActor.cpp */,
+ FFFDf48238887fb0f4823888 /* buffering/ScbAggregate.cpp */,
+ FFFDf48238f07fb0f48238f0 /* buffering/ScbBase.cpp */,
+ FFFDf48239587fb0f4823958 /* buffering/ScbCloth.cpp */,
+ FFFDf48239c07fb0f48239c0 /* buffering/ScbMetaData.cpp */,
+ FFFDf4823a287fb0f4823a28 /* buffering/ScbParticleSystem.cpp */,
+ FFFDf4823a907fb0f4823a90 /* buffering/ScbScene.cpp */,
+ FFFDf4823af87fb0f4823af8 /* buffering/ScbScenePvdClient.cpp */,
+ FFFDf4823b607fb0f4823b60 /* buffering/ScbShape.cpp */,
+ FFFDf4823bc87fb0f4823bc8 /* cloth/NpCloth.h */,
+ FFFDf4823c307fb0f4823c30 /* cloth/NpClothFabric.h */,
+ FFFDf4823c987fb0f4823c98 /* cloth/NpClothParticleData.h */,
+ FFFDf4823d007fb0f4823d00 /* cloth/NpCloth.cpp */,
+ FFFDf4823d687fb0f4823d68 /* cloth/NpClothFabric.cpp */,
+ FFFDf4823dd07fb0f4823dd0 /* cloth/NpClothParticleData.cpp */,
+ FFFDf4823e387fb0f4823e38 /* ../../ImmediateMode/src/NpImmediateMode.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
- FFFB04b2e8087fef04b2e808 /* include */ = {
+ FFFBf3956f087fb0f3956f08 /* include */ = {
isa = PBXGroup;
children = (
- FFFD04060a007fef04060a00 /* PxActor.h */,
- FFFD04060a687fef04060a68 /* PxAggregate.h */,
- FFFD04060ad07fef04060ad0 /* PxArticulation.h */,
- FFFD04060b387fef04060b38 /* PxArticulationJoint.h */,
- FFFD04060ba07fef04060ba0 /* PxArticulationLink.h */,
- FFFD04060c087fef04060c08 /* PxBatchQuery.h */,
- FFFD04060c707fef04060c70 /* PxBatchQueryDesc.h */,
- FFFD04060cd87fef04060cd8 /* PxBroadPhase.h */,
- FFFD04060d407fef04060d40 /* PxClient.h */,
- FFFD04060da87fef04060da8 /* PxConstraint.h */,
- FFFD04060e107fef04060e10 /* PxConstraintDesc.h */,
- FFFD04060e787fef04060e78 /* PxContact.h */,
- FFFD04060ee07fef04060ee0 /* PxContactModifyCallback.h */,
- FFFD04060f487fef04060f48 /* PxDeletionListener.h */,
- FFFD04060fb07fef04060fb0 /* PxFiltering.h */,
- FFFD040610187fef04061018 /* PxForceMode.h */,
- FFFD040610807fef04061080 /* PxImmediateMode.h */,
- FFFD040610e87fef040610e8 /* PxLockedData.h */,
- FFFD040611507fef04061150 /* PxMaterial.h */,
- FFFD040611b87fef040611b8 /* PxPhysXConfig.h */,
- FFFD040612207fef04061220 /* PxPhysics.h */,
- FFFD040612887fef04061288 /* PxPhysicsAPI.h */,
- FFFD040612f07fef040612f0 /* PxPhysicsSerialization.h */,
- FFFD040613587fef04061358 /* PxPhysicsVersion.h */,
- FFFD040613c07fef040613c0 /* PxPruningStructure.h */,
- FFFD040614287fef04061428 /* PxQueryFiltering.h */,
- FFFD040614907fef04061490 /* PxQueryReport.h */,
- FFFD040614f87fef040614f8 /* PxRigidActor.h */,
- FFFD040615607fef04061560 /* PxRigidBody.h */,
- FFFD040615c87fef040615c8 /* PxRigidDynamic.h */,
- FFFD040616307fef04061630 /* PxRigidStatic.h */,
- FFFD040616987fef04061698 /* PxScene.h */,
- FFFD040617007fef04061700 /* PxSceneDesc.h */,
- FFFD040617687fef04061768 /* PxSceneLock.h */,
- FFFD040617d07fef040617d0 /* PxShape.h */,
- FFFD040618387fef04061838 /* PxSimulationEventCallback.h */,
- FFFD040618a07fef040618a0 /* PxSimulationStatistics.h */,
- FFFD040619087fef04061908 /* PxSpatialIndex.h */,
- FFFD040619707fef04061970 /* PxVisualizationParameter.h */,
- FFFD040619d87fef040619d8 /* PxVolumeCache.h */,
- FFFD04061a407fef04061a40 /* particles/PxParticleBase.h */,
- FFFD04061aa87fef04061aa8 /* particles/PxParticleBaseFlag.h */,
- FFFD04061b107fef04061b10 /* particles/PxParticleCreationData.h */,
- FFFD04061b787fef04061b78 /* particles/PxParticleFlag.h */,
- FFFD04061be07fef04061be0 /* particles/PxParticleFluid.h */,
- FFFD04061c487fef04061c48 /* particles/PxParticleFluidReadData.h */,
- FFFD04061cb07fef04061cb0 /* particles/PxParticleReadData.h */,
- FFFD04061d187fef04061d18 /* particles/PxParticleSystem.h */,
- FFFD04061d807fef04061d80 /* pvd/PxPvdSceneClient.h */,
- FFFD04061de87fef04061de8 /* cloth/PxCloth.h */,
- FFFD04061e507fef04061e50 /* cloth/PxClothCollisionData.h */,
- FFFD04061eb87fef04061eb8 /* cloth/PxClothFabric.h */,
- FFFD04061f207fef04061f20 /* cloth/PxClothParticleData.h */,
- FFFD04061f887fef04061f88 /* cloth/PxClothTypes.h */,
+ FFFDf48278007fb0f4827800 /* PxActor.h */,
+ FFFDf48278687fb0f4827868 /* PxAggregate.h */,
+ FFFDf48278d07fb0f48278d0 /* PxArticulation.h */,
+ FFFDf48279387fb0f4827938 /* PxArticulationJoint.h */,
+ FFFDf48279a07fb0f48279a0 /* PxArticulationLink.h */,
+ FFFDf4827a087fb0f4827a08 /* PxBatchQuery.h */,
+ FFFDf4827a707fb0f4827a70 /* PxBatchQueryDesc.h */,
+ FFFDf4827ad87fb0f4827ad8 /* PxBroadPhase.h */,
+ FFFDf4827b407fb0f4827b40 /* PxClient.h */,
+ FFFDf4827ba87fb0f4827ba8 /* PxConstraint.h */,
+ FFFDf4827c107fb0f4827c10 /* PxConstraintDesc.h */,
+ FFFDf4827c787fb0f4827c78 /* PxContact.h */,
+ FFFDf4827ce07fb0f4827ce0 /* PxContactModifyCallback.h */,
+ FFFDf4827d487fb0f4827d48 /* PxDeletionListener.h */,
+ FFFDf4827db07fb0f4827db0 /* PxFiltering.h */,
+ FFFDf4827e187fb0f4827e18 /* PxForceMode.h */,
+ FFFDf4827e807fb0f4827e80 /* PxImmediateMode.h */,
+ FFFDf4827ee87fb0f4827ee8 /* PxLockedData.h */,
+ FFFDf4827f507fb0f4827f50 /* PxMaterial.h */,
+ FFFDf4827fb87fb0f4827fb8 /* PxPhysXConfig.h */,
+ FFFDf48280207fb0f4828020 /* PxPhysics.h */,
+ FFFDf48280887fb0f4828088 /* PxPhysicsAPI.h */,
+ FFFDf48280f07fb0f48280f0 /* PxPhysicsSerialization.h */,
+ FFFDf48281587fb0f4828158 /* PxPhysicsVersion.h */,
+ FFFDf48281c07fb0f48281c0 /* PxPruningStructure.h */,
+ FFFDf48282287fb0f4828228 /* PxQueryFiltering.h */,
+ FFFDf48282907fb0f4828290 /* PxQueryReport.h */,
+ FFFDf48282f87fb0f48282f8 /* PxRigidActor.h */,
+ FFFDf48283607fb0f4828360 /* PxRigidBody.h */,
+ FFFDf48283c87fb0f48283c8 /* PxRigidDynamic.h */,
+ FFFDf48284307fb0f4828430 /* PxRigidStatic.h */,
+ FFFDf48284987fb0f4828498 /* PxScene.h */,
+ FFFDf48285007fb0f4828500 /* PxSceneDesc.h */,
+ FFFDf48285687fb0f4828568 /* PxSceneLock.h */,
+ FFFDf48285d07fb0f48285d0 /* PxShape.h */,
+ FFFDf48286387fb0f4828638 /* PxSimulationEventCallback.h */,
+ FFFDf48286a07fb0f48286a0 /* PxSimulationStatistics.h */,
+ FFFDf48287087fb0f4828708 /* PxSpatialIndex.h */,
+ FFFDf48287707fb0f4828770 /* PxVisualizationParameter.h */,
+ FFFDf48287d87fb0f48287d8 /* PxVolumeCache.h */,
+ FFFDf48288407fb0f4828840 /* particles/PxParticleBase.h */,
+ FFFDf48288a87fb0f48288a8 /* particles/PxParticleBaseFlag.h */,
+ FFFDf48289107fb0f4828910 /* particles/PxParticleCreationData.h */,
+ FFFDf48289787fb0f4828978 /* particles/PxParticleFlag.h */,
+ FFFDf48289e07fb0f48289e0 /* particles/PxParticleFluid.h */,
+ FFFDf4828a487fb0f4828a48 /* particles/PxParticleFluidReadData.h */,
+ FFFDf4828ab07fb0f4828ab0 /* particles/PxParticleReadData.h */,
+ FFFDf4828b187fb0f4828b18 /* particles/PxParticleSystem.h */,
+ FFFDf4828b807fb0f4828b80 /* pvd/PxPvdSceneClient.h */,
+ FFFDf4828be87fb0f4828be8 /* cloth/PxCloth.h */,
+ FFFDf4828c507fb0f4828c50 /* cloth/PxClothCollisionData.h */,
+ FFFDf4828cb87fb0f4828cb8 /* cloth/PxClothFabric.h */,
+ FFFDf4828d207fb0f4828d20 /* cloth/PxClothParticleData.h */,
+ FFFDf4828d887fb0f4828d88 /* cloth/PxClothTypes.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
- FFFB04b2e8307fef04b2e830 /* metadata */ = {
+ FFFBf3956f307fb0f3956f30 /* metadata */ = {
isa = PBXGroup;
children = (
- FFFD0405fc007fef0405fc00 /* core/include/PvdMetaDataDefineProperties.h */,
- FFFD0405fc687fef0405fc68 /* core/include/PvdMetaDataExtensions.h */,
- FFFD0405fcd07fef0405fcd0 /* core/include/PvdMetaDataPropertyVisitor.h */,
- FFFD0405fd387fef0405fd38 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */,
- FFFD0405fda07fef0405fda0 /* core/include/PxAutoGeneratedMetaDataObjects.h */,
- FFFD0405fe087fef0405fe08 /* core/include/PxMetaDataCompare.h */,
- FFFD0405fe707fef0405fe70 /* core/include/PxMetaDataCppPrefix.h */,
- FFFD0405fed87fef0405fed8 /* core/include/PxMetaDataObjects.h */,
- FFFD0405ff407fef0405ff40 /* core/include/RepXMetaDataPropertyVisitor.h */,
- FFFD0405ffa87fef0405ffa8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */,
- FFFD040600107fef04060010 /* core/src/PxMetaDataObjects.cpp */,
+ FFFDf48240007fb0f4824000 /* core/include/PvdMetaDataDefineProperties.h */,
+ FFFDf48240687fb0f4824068 /* core/include/PvdMetaDataExtensions.h */,
+ FFFDf48240d07fb0f48240d0 /* core/include/PvdMetaDataPropertyVisitor.h */,
+ FFFDf48241387fb0f4824138 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */,
+ FFFDf48241a07fb0f48241a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */,
+ FFFDf48242087fb0f4824208 /* core/include/PxMetaDataCompare.h */,
+ FFFDf48242707fb0f4824270 /* core/include/PxMetaDataCppPrefix.h */,
+ FFFDf48242d87fb0f48242d8 /* core/include/PxMetaDataObjects.h */,
+ FFFDf48243407fb0f4824340 /* core/include/RepXMetaDataPropertyVisitor.h */,
+ FFFDf48243a87fb0f48243a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */,
+ FFFDf48244107fb0f4824410 /* core/src/PxMetaDataObjects.cpp */,
);
name = "metadata";
sourceTree = SOURCE_ROOT;
};
- FFFB04b269a07fef04b269a0 /* PhysXCharacterKinematic */ = {
+ FFFBf3934b807fb0f3934b80 /* PhysXCharacterKinematic */ = {
isa = PBXGroup;
children = (
- FFFB04b2db707fef04b2db70 /* include */,
- FFFB04b2db987fef04b2db98 /* src */,
+ FFFBf39546d07fb0f39546d0 /* include */,
+ FFFBf39546f87fb0f39546f8 /* src */,
);
name = "PhysXCharacterKinematic";
sourceTree = "<group>";
};
- FFFB04b2db707fef04b2db70 /* include */ = {
+ FFFBf39546d07fb0f39546d0 /* include */ = {
isa = PBXGroup;
children = (
- FFFD04b2dbc07fef04b2dbc0 /* PxBoxController.h */,
- FFFD04b2dc287fef04b2dc28 /* PxCapsuleController.h */,
- FFFD04b2dc907fef04b2dc90 /* PxCharacter.h */,
- FFFD04b2dcf87fef04b2dcf8 /* PxController.h */,
- FFFD04b2dd607fef04b2dd60 /* PxControllerBehavior.h */,
- FFFD04b2ddc87fef04b2ddc8 /* PxControllerManager.h */,
- FFFD04b2de307fef04b2de30 /* PxControllerObstacles.h */,
- FFFD04b2de987fef04b2de98 /* PxExtended.h */,
+ FFFDf3955f907fb0f3955f90 /* PxBoxController.h */,
+ FFFDf3955ff87fb0f3955ff8 /* PxCapsuleController.h */,
+ FFFDf39560607fb0f3956060 /* PxCharacter.h */,
+ FFFDf39560c87fb0f39560c8 /* PxController.h */,
+ FFFDf39561307fb0f3956130 /* PxControllerBehavior.h */,
+ FFFDf39561987fb0f3956198 /* PxControllerManager.h */,
+ FFFDf39562007fb0f3956200 /* PxControllerObstacles.h */,
+ FFFDf39562687fb0f3956268 /* PxExtended.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
- FFFB04b2db987fef04b2db98 /* src */ = {
+ FFFBf39546f87fb0f39546f8 /* src */ = {
isa = PBXGroup;
children = (
- FFFD0405b2007fef0405b200 /* CctBoxController.h */,
- FFFD0405b2687fef0405b268 /* CctCapsuleController.h */,
- FFFD0405b2d07fef0405b2d0 /* CctCharacterController.h */,
- FFFD0405b3387fef0405b338 /* CctCharacterControllerManager.h */,
- FFFD0405b3a07fef0405b3a0 /* CctController.h */,
- FFFD0405b4087fef0405b408 /* CctInternalStructs.h */,
- FFFD0405b4707fef0405b470 /* CctObstacleContext.h */,
- FFFD0405b4d87fef0405b4d8 /* CctSweptBox.h */,
- FFFD0405b5407fef0405b540 /* CctSweptCapsule.h */,
- FFFD0405b5a87fef0405b5a8 /* CctSweptVolume.h */,
- FFFD0405b6107fef0405b610 /* CctUtils.h */,
- FFFD0405b6787fef0405b678 /* CctBoxController.cpp */,
- FFFD0405b6e07fef0405b6e0 /* CctCapsuleController.cpp */,
- FFFD0405b7487fef0405b748 /* CctCharacterController.cpp */,
- FFFD0405b7b07fef0405b7b0 /* CctCharacterControllerCallbacks.cpp */,
- FFFD0405b8187fef0405b818 /* CctCharacterControllerManager.cpp */,
- FFFD0405b8807fef0405b880 /* CctController.cpp */,
- FFFD0405b8e87fef0405b8e8 /* CctObstacleContext.cpp */,
- FFFD0405b9507fef0405b950 /* CctSweptBox.cpp */,
- FFFD0405b9b87fef0405b9b8 /* CctSweptCapsule.cpp */,
- FFFD0405ba207fef0405ba20 /* CctSweptVolume.cpp */,
+ FFFDf481ec007fb0f481ec00 /* CctBoxController.h */,
+ FFFDf481ec687fb0f481ec68 /* CctCapsuleController.h */,
+ FFFDf481ecd07fb0f481ecd0 /* CctCharacterController.h */,
+ FFFDf481ed387fb0f481ed38 /* CctCharacterControllerManager.h */,
+ FFFDf481eda07fb0f481eda0 /* CctController.h */,
+ FFFDf481ee087fb0f481ee08 /* CctInternalStructs.h */,
+ FFFDf481ee707fb0f481ee70 /* CctObstacleContext.h */,
+ FFFDf481eed87fb0f481eed8 /* CctSweptBox.h */,
+ FFFDf481ef407fb0f481ef40 /* CctSweptCapsule.h */,
+ FFFDf481efa87fb0f481efa8 /* CctSweptVolume.h */,
+ FFFDf481f0107fb0f481f010 /* CctUtils.h */,
+ FFFDf481f0787fb0f481f078 /* CctBoxController.cpp */,
+ FFFDf481f0e07fb0f481f0e0 /* CctCapsuleController.cpp */,
+ FFFDf481f1487fb0f481f148 /* CctCharacterController.cpp */,
+ FFFDf481f1b07fb0f481f1b0 /* CctCharacterControllerCallbacks.cpp */,
+ FFFDf481f2187fb0f481f218 /* CctCharacterControllerManager.cpp */,
+ FFFDf481f2807fb0f481f280 /* CctController.cpp */,
+ FFFDf481f2e87fb0f481f2e8 /* CctObstacleContext.cpp */,
+ FFFDf481f3507fb0f481f350 /* CctSweptBox.cpp */,
+ FFFDf481f3b87fb0f481f3b8 /* CctSweptCapsule.cpp */,
+ FFFDf481f4207fb0f481f420 /* CctSweptVolume.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
- FFFB04b27f107fef04b27f10 /* PhysXVehicle */ = {
+ FFFBf3950f807fb0f3950f80 /* PhysXVehicle */ = {
isa = PBXGroup;
children = (
- FFFB04b38bf07fef04b38bf0 /* include */,
- FFFB04b38c187fef04b38c18 /* src */,
- FFFB04b38c407fef04b38c40 /* metadata */,
+ FFFBf39613407fb0f3961340 /* include */,
+ FFFBf39613687fb0f3961368 /* src */,
+ FFFBf39613907fb0f3961390 /* metadata */,
);
name = "PhysXVehicle";
sourceTree = "<group>";
};
- FFFB04b38bf07fef04b38bf0 /* include */ = {
+ FFFBf39613407fb0f3961340 /* include */ = {
isa = PBXGroup;
children = (
- FFFD0405d0007fef0405d000 /* PxVehicleComponents.h */,
- FFFD0405d0687fef0405d068 /* PxVehicleDrive.h */,
- FFFD0405d0d07fef0405d0d0 /* PxVehicleDrive4W.h */,
- FFFD0405d1387fef0405d138 /* PxVehicleDriveNW.h */,
- FFFD0405d1a07fef0405d1a0 /* PxVehicleDriveTank.h */,
- FFFD0405d2087fef0405d208 /* PxVehicleNoDrive.h */,
- FFFD0405d2707fef0405d270 /* PxVehicleSDK.h */,
- FFFD0405d2d87fef0405d2d8 /* PxVehicleShaders.h */,
- FFFD0405d3407fef0405d340 /* PxVehicleTireFriction.h */,
- FFFD0405d3a87fef0405d3a8 /* PxVehicleUpdate.h */,
- FFFD0405d4107fef0405d410 /* PxVehicleUtil.h */,
- FFFD0405d4787fef0405d478 /* PxVehicleUtilControl.h */,
- FFFD0405d4e07fef0405d4e0 /* PxVehicleUtilSetup.h */,
- FFFD0405d5487fef0405d548 /* PxVehicleUtilTelemetry.h */,
- FFFD0405d5b07fef0405d5b0 /* PxVehicleWheels.h */,
+ FFFDf4820a007fb0f4820a00 /* PxVehicleComponents.h */,
+ FFFDf4820a687fb0f4820a68 /* PxVehicleDrive.h */,
+ FFFDf4820ad07fb0f4820ad0 /* PxVehicleDrive4W.h */,
+ FFFDf4820b387fb0f4820b38 /* PxVehicleDriveNW.h */,
+ FFFDf4820ba07fb0f4820ba0 /* PxVehicleDriveTank.h */,
+ FFFDf4820c087fb0f4820c08 /* PxVehicleNoDrive.h */,
+ FFFDf4820c707fb0f4820c70 /* PxVehicleSDK.h */,
+ FFFDf4820cd87fb0f4820cd8 /* PxVehicleShaders.h */,
+ FFFDf4820d407fb0f4820d40 /* PxVehicleTireFriction.h */,
+ FFFDf4820da87fb0f4820da8 /* PxVehicleUpdate.h */,
+ FFFDf4820e107fb0f4820e10 /* PxVehicleUtil.h */,
+ FFFDf4820e787fb0f4820e78 /* PxVehicleUtilControl.h */,
+ FFFDf4820ee07fb0f4820ee0 /* PxVehicleUtilSetup.h */,
+ FFFDf4820f487fb0f4820f48 /* PxVehicleUtilTelemetry.h */,
+ FFFDf4820fb07fb0f4820fb0 /* PxVehicleWheels.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
- FFFB04b38c187fef04b38c18 /* src */ = {
+ FFFBf39613687fb0f3961368 /* src */ = {
isa = PBXGroup;
children = (
- FFFD040646007fef04064600 /* PxVehicleDefaults.h */,
- FFFD040646687fef04064668 /* PxVehicleLinearMath.h */,
- FFFD040646d07fef040646d0 /* PxVehicleSerialization.h */,
- FFFD040647387fef04064738 /* PxVehicleSuspLimitConstraintShader.h */,
- FFFD040647a07fef040647a0 /* PxVehicleSuspWheelTire4.h */,
- FFFD040648087fef04064808 /* PxVehicleComponents.cpp */,
- FFFD040648707fef04064870 /* PxVehicleDrive.cpp */,
- FFFD040648d87fef040648d8 /* PxVehicleDrive4W.cpp */,
- FFFD040649407fef04064940 /* PxVehicleDriveNW.cpp */,
- FFFD040649a87fef040649a8 /* PxVehicleDriveTank.cpp */,
- FFFD04064a107fef04064a10 /* PxVehicleMetaData.cpp */,
- FFFD04064a787fef04064a78 /* PxVehicleNoDrive.cpp */,
- FFFD04064ae07fef04064ae0 /* PxVehicleSDK.cpp */,
- FFFD04064b487fef04064b48 /* PxVehicleSerialization.cpp */,
- FFFD04064bb07fef04064bb0 /* PxVehicleSuspWheelTire4.cpp */,
- FFFD04064c187fef04064c18 /* PxVehicleTireFriction.cpp */,
- FFFD04064c807fef04064c80 /* PxVehicleUpdate.cpp */,
- FFFD04064ce87fef04064ce8 /* PxVehicleWheels.cpp */,
- FFFD04064d507fef04064d50 /* VehicleUtilControl.cpp */,
- FFFD04064db87fef04064db8 /* VehicleUtilSetup.cpp */,
- FFFD04064e207fef04064e20 /* VehicleUtilTelemetry.cpp */,
+ FFFDf482b6007fb0f482b600 /* PxVehicleDefaults.h */,
+ FFFDf482b6687fb0f482b668 /* PxVehicleLinearMath.h */,
+ FFFDf482b6d07fb0f482b6d0 /* PxVehicleSerialization.h */,
+ FFFDf482b7387fb0f482b738 /* PxVehicleSuspLimitConstraintShader.h */,
+ FFFDf482b7a07fb0f482b7a0 /* PxVehicleSuspWheelTire4.h */,
+ FFFDf482b8087fb0f482b808 /* PxVehicleComponents.cpp */,
+ FFFDf482b8707fb0f482b870 /* PxVehicleDrive.cpp */,
+ FFFDf482b8d87fb0f482b8d8 /* PxVehicleDrive4W.cpp */,
+ FFFDf482b9407fb0f482b940 /* PxVehicleDriveNW.cpp */,
+ FFFDf482b9a87fb0f482b9a8 /* PxVehicleDriveTank.cpp */,
+ FFFDf482ba107fb0f482ba10 /* PxVehicleMetaData.cpp */,
+ FFFDf482ba787fb0f482ba78 /* PxVehicleNoDrive.cpp */,
+ FFFDf482bae07fb0f482bae0 /* PxVehicleSDK.cpp */,
+ FFFDf482bb487fb0f482bb48 /* PxVehicleSerialization.cpp */,
+ FFFDf482bbb07fb0f482bbb0 /* PxVehicleSuspWheelTire4.cpp */,
+ FFFDf482bc187fb0f482bc18 /* PxVehicleTireFriction.cpp */,
+ FFFDf482bc807fb0f482bc80 /* PxVehicleUpdate.cpp */,
+ FFFDf482bce87fb0f482bce8 /* PxVehicleWheels.cpp */,
+ FFFDf482bd507fb0f482bd50 /* VehicleUtilControl.cpp */,
+ FFFDf482bdb87fb0f482bdb8 /* VehicleUtilSetup.cpp */,
+ FFFDf482be207fb0f482be20 /* VehicleUtilTelemetry.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
- FFFB04b38c407fef04b38c40 /* metadata */ = {
+ FFFBf39613907fb0f3961390 /* metadata */ = {
isa = PBXGroup;
children = (
- FFFD04b399407fef04b39940 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */,
- FFFD04b399a87fef04b399a8 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */,
- FFFD04b39a107fef04b39a10 /* include/PxVehicleMetaDataObjects.h */,
- FFFD04b39a787fef04b39a78 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */,
- FFFD04b39ae07fef04b39ae0 /* src/PxVehicleMetaDataObjects.cpp */,
+ FFFDf39620907fb0f3962090 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */,
+ FFFDf39620f87fb0f39620f8 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */,
+ FFFDf39621607fb0f3962160 /* include/PxVehicleMetaDataObjects.h */,
+ FFFDf39621c87fb0f39621c8 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */,
+ FFFDf39622307fb0f3962230 /* src/PxVehicleMetaDataObjects.cpp */,
);
name = "metadata";
sourceTree = SOURCE_ROOT;
};
- FFFB04b37ba07fef04b37ba0 /* PhysXExtensions */ = {
+ FFFBf39602f07fb0f39602f0 /* PhysXExtensions */ = {
isa = PBXGroup;
children = (
- FFFB04b40c107fef04b40c10 /* include */,
- FFFB04b40c387fef04b40c38 /* src */,
- FFFB04b40c607fef04b40c60 /* serialization */,
- FFFB04b40c887fef04b40c88 /* metadata */,
+ FFFBf39693607fb0f3969360 /* include */,
+ FFFBf39693887fb0f3969388 /* src */,
+ FFFBf39693b07fb0f39693b0 /* serialization */,
+ FFFBf39693d87fb0f39693d8 /* metadata */,
);
name = "PhysXExtensions";
sourceTree = "<group>";
};
- FFFB04b40c107fef04b40c10 /* include */ = {
+ FFFBf39693607fb0f3969360 /* include */ = {
isa = PBXGroup;
children = (
- FFFD04067e007fef04067e00 /* PxBinaryConverter.h */,
- FFFD04067e687fef04067e68 /* PxBroadPhaseExt.h */,
- FFFD04067ed07fef04067ed0 /* PxClothFabricCooker.h */,
- FFFD04067f387fef04067f38 /* PxClothMeshDesc.h */,
- FFFD04067fa07fef04067fa0 /* PxClothMeshQuadifier.h */,
- FFFD040680087fef04068008 /* PxClothTetherCooker.h */,
- FFFD040680707fef04068070 /* PxCollectionExt.h */,
- FFFD040680d87fef040680d8 /* PxConstraintExt.h */,
- FFFD040681407fef04068140 /* PxConvexMeshExt.h */,
- FFFD040681a87fef040681a8 /* PxD6Joint.h */,
- FFFD040682107fef04068210 /* PxDefaultAllocator.h */,
- FFFD040682787fef04068278 /* PxDefaultCpuDispatcher.h */,
- FFFD040682e07fef040682e0 /* PxDefaultErrorCallback.h */,
- FFFD040683487fef04068348 /* PxDefaultSimulationFilterShader.h */,
- FFFD040683b07fef040683b0 /* PxDefaultStreams.h */,
- FFFD040684187fef04068418 /* PxDistanceJoint.h */,
- FFFD040684807fef04068480 /* PxExtensionsAPI.h */,
- FFFD040684e87fef040684e8 /* PxFixedJoint.h */,
- FFFD040685507fef04068550 /* PxJoint.h */,
- FFFD040685b87fef040685b8 /* PxJointLimit.h */,
- FFFD040686207fef04068620 /* PxMassProperties.h */,
- FFFD040686887fef04068688 /* PxParticleExt.h */,
- FFFD040686f07fef040686f0 /* PxPrismaticJoint.h */,
- FFFD040687587fef04068758 /* PxRaycastCCD.h */,
- FFFD040687c07fef040687c0 /* PxRepXSerializer.h */,
- FFFD040688287fef04068828 /* PxRepXSimpleType.h */,
- FFFD040688907fef04068890 /* PxRevoluteJoint.h */,
- FFFD040688f87fef040688f8 /* PxRigidActorExt.h */,
- FFFD040689607fef04068960 /* PxRigidBodyExt.h */,
- FFFD040689c87fef040689c8 /* PxSceneQueryExt.h */,
- FFFD04068a307fef04068a30 /* PxSerialization.h */,
- FFFD04068a987fef04068a98 /* PxShapeExt.h */,
- FFFD04068b007fef04068b00 /* PxSimpleFactory.h */,
- FFFD04068b687fef04068b68 /* PxSmoothNormals.h */,
- FFFD04068bd07fef04068bd0 /* PxSphericalJoint.h */,
- FFFD04068c387fef04068c38 /* PxStringTableExt.h */,
- FFFD04068ca07fef04068ca0 /* PxTriangleMeshExt.h */,
+ FFFDf482e6007fb0f482e600 /* PxBinaryConverter.h */,
+ FFFDf482e6687fb0f482e668 /* PxBroadPhaseExt.h */,
+ FFFDf482e6d07fb0f482e6d0 /* PxClothFabricCooker.h */,
+ FFFDf482e7387fb0f482e738 /* PxClothMeshDesc.h */,
+ FFFDf482e7a07fb0f482e7a0 /* PxClothMeshQuadifier.h */,
+ FFFDf482e8087fb0f482e808 /* PxClothTetherCooker.h */,
+ FFFDf482e8707fb0f482e870 /* PxCollectionExt.h */,
+ FFFDf482e8d87fb0f482e8d8 /* PxConstraintExt.h */,
+ FFFDf482e9407fb0f482e940 /* PxConvexMeshExt.h */,
+ FFFDf482e9a87fb0f482e9a8 /* PxD6Joint.h */,
+ FFFDf482ea107fb0f482ea10 /* PxDefaultAllocator.h */,
+ FFFDf482ea787fb0f482ea78 /* PxDefaultCpuDispatcher.h */,
+ FFFDf482eae07fb0f482eae0 /* PxDefaultErrorCallback.h */,
+ FFFDf482eb487fb0f482eb48 /* PxDefaultSimulationFilterShader.h */,
+ FFFDf482ebb07fb0f482ebb0 /* PxDefaultStreams.h */,
+ FFFDf482ec187fb0f482ec18 /* PxDistanceJoint.h */,
+ FFFDf482ec807fb0f482ec80 /* PxExtensionsAPI.h */,
+ FFFDf482ece87fb0f482ece8 /* PxFixedJoint.h */,
+ FFFDf482ed507fb0f482ed50 /* PxJoint.h */,
+ FFFDf482edb87fb0f482edb8 /* PxJointLimit.h */,
+ FFFDf482ee207fb0f482ee20 /* PxMassProperties.h */,
+ FFFDf482ee887fb0f482ee88 /* PxParticleExt.h */,
+ FFFDf482eef07fb0f482eef0 /* PxPrismaticJoint.h */,
+ FFFDf482ef587fb0f482ef58 /* PxRaycastCCD.h */,
+ FFFDf482efc07fb0f482efc0 /* PxRepXSerializer.h */,
+ FFFDf482f0287fb0f482f028 /* PxRepXSimpleType.h */,
+ FFFDf482f0907fb0f482f090 /* PxRevoluteJoint.h */,
+ FFFDf482f0f87fb0f482f0f8 /* PxRigidActorExt.h */,
+ FFFDf482f1607fb0f482f160 /* PxRigidBodyExt.h */,
+ FFFDf482f1c87fb0f482f1c8 /* PxSceneQueryExt.h */,
+ FFFDf482f2307fb0f482f230 /* PxSerialization.h */,
+ FFFDf482f2987fb0f482f298 /* PxShapeExt.h */,
+ FFFDf482f3007fb0f482f300 /* PxSimpleFactory.h */,
+ FFFDf482f3687fb0f482f368 /* PxSmoothNormals.h */,
+ FFFDf482f3d07fb0f482f3d0 /* PxSphericalJoint.h */,
+ FFFDf482f4387fb0f482f438 /* PxStringTableExt.h */,
+ FFFDf482f4a07fb0f482f4a0 /* PxTriangleMeshExt.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
- FFFB04b40c387fef04b40c38 /* src */ = {
+ FFFBf39693887fb0f3969388 /* src */ = {
isa = PBXGroup;
children = (
- FFFD040668007fef04066800 /* ExtConstraintHelper.h */,
- FFFD040668687fef04066868 /* ExtCpuWorkerThread.h */,
- FFFD040668d07fef040668d0 /* ExtD6Joint.h */,
- FFFD040669387fef04066938 /* ExtDefaultCpuDispatcher.h */,
- FFFD040669a07fef040669a0 /* ExtDistanceJoint.h */,
- FFFD04066a087fef04066a08 /* ExtFixedJoint.h */,
- FFFD04066a707fef04066a70 /* ExtInertiaTensor.h */,
- FFFD04066ad87fef04066ad8 /* ExtJoint.h */,
- FFFD04066b407fef04066b40 /* ExtJointMetaDataExtensions.h */,
- FFFD04066ba87fef04066ba8 /* ExtPlatform.h */,
- FFFD04066c107fef04066c10 /* ExtPrismaticJoint.h */,
- FFFD04066c787fef04066c78 /* ExtPvd.h */,
- FFFD04066ce07fef04066ce0 /* ExtRevoluteJoint.h */,
- FFFD04066d487fef04066d48 /* ExtSerialization.h */,
- FFFD04066db07fef04066db0 /* ExtSharedQueueEntryPool.h */,
- FFFD04066e187fef04066e18 /* ExtSphericalJoint.h */,
- FFFD04066e807fef04066e80 /* ExtTaskQueueHelper.h */,
- FFFD04066ee87fef04066ee8 /* ExtBroadPhase.cpp */,
- FFFD04066f507fef04066f50 /* ExtClothFabricCooker.cpp */,
- FFFD04066fb87fef04066fb8 /* ExtClothGeodesicTetherCooker.cpp */,
- FFFD040670207fef04067020 /* ExtClothMeshQuadifier.cpp */,
- FFFD040670887fef04067088 /* ExtClothSimpleTetherCooker.cpp */,
- FFFD040670f07fef040670f0 /* ExtCollection.cpp */,
- FFFD040671587fef04067158 /* ExtConvexMeshExt.cpp */,
- FFFD040671c07fef040671c0 /* ExtCpuWorkerThread.cpp */,
- FFFD040672287fef04067228 /* ExtD6Joint.cpp */,
- FFFD040672907fef04067290 /* ExtD6JointSolverPrep.cpp */,
- FFFD040672f87fef040672f8 /* ExtDefaultCpuDispatcher.cpp */,
- FFFD040673607fef04067360 /* ExtDefaultErrorCallback.cpp */,
- FFFD040673c87fef040673c8 /* ExtDefaultSimulationFilterShader.cpp */,
- FFFD040674307fef04067430 /* ExtDefaultStreams.cpp */,
- FFFD040674987fef04067498 /* ExtDistanceJoint.cpp */,
- FFFD040675007fef04067500 /* ExtDistanceJointSolverPrep.cpp */,
- FFFD040675687fef04067568 /* ExtExtensions.cpp */,
- FFFD040675d07fef040675d0 /* ExtFixedJoint.cpp */,
- FFFD040676387fef04067638 /* ExtFixedJointSolverPrep.cpp */,
- FFFD040676a07fef040676a0 /* ExtJoint.cpp */,
- FFFD040677087fef04067708 /* ExtMetaData.cpp */,
- FFFD040677707fef04067770 /* ExtParticleExt.cpp */,
- FFFD040677d87fef040677d8 /* ExtPrismaticJoint.cpp */,
- FFFD040678407fef04067840 /* ExtPrismaticJointSolverPrep.cpp */,
- FFFD040678a87fef040678a8 /* ExtPvd.cpp */,
- FFFD040679107fef04067910 /* ExtPxStringTable.cpp */,
- FFFD040679787fef04067978 /* ExtRaycastCCD.cpp */,
- FFFD040679e07fef040679e0 /* ExtRevoluteJoint.cpp */,
- FFFD04067a487fef04067a48 /* ExtRevoluteJointSolverPrep.cpp */,
- FFFD04067ab07fef04067ab0 /* ExtRigidBodyExt.cpp */,
- FFFD04067b187fef04067b18 /* ExtSceneQueryExt.cpp */,
- FFFD04067b807fef04067b80 /* ExtSimpleFactory.cpp */,
- FFFD04067be87fef04067be8 /* ExtSmoothNormals.cpp */,
- FFFD04067c507fef04067c50 /* ExtSphericalJoint.cpp */,
- FFFD04067cb87fef04067cb8 /* ExtSphericalJointSolverPrep.cpp */,
- FFFD04067d207fef04067d20 /* ExtTriangleMeshExt.cpp */,
+ FFFDf482d0007fb0f482d000 /* ExtConstraintHelper.h */,
+ FFFDf482d0687fb0f482d068 /* ExtCpuWorkerThread.h */,
+ FFFDf482d0d07fb0f482d0d0 /* ExtD6Joint.h */,
+ FFFDf482d1387fb0f482d138 /* ExtDefaultCpuDispatcher.h */,
+ FFFDf482d1a07fb0f482d1a0 /* ExtDistanceJoint.h */,
+ FFFDf482d2087fb0f482d208 /* ExtFixedJoint.h */,
+ FFFDf482d2707fb0f482d270 /* ExtInertiaTensor.h */,
+ FFFDf482d2d87fb0f482d2d8 /* ExtJoint.h */,
+ FFFDf482d3407fb0f482d340 /* ExtJointMetaDataExtensions.h */,
+ FFFDf482d3a87fb0f482d3a8 /* ExtPlatform.h */,
+ FFFDf482d4107fb0f482d410 /* ExtPrismaticJoint.h */,
+ FFFDf482d4787fb0f482d478 /* ExtPvd.h */,
+ FFFDf482d4e07fb0f482d4e0 /* ExtRevoluteJoint.h */,
+ FFFDf482d5487fb0f482d548 /* ExtSerialization.h */,
+ FFFDf482d5b07fb0f482d5b0 /* ExtSharedQueueEntryPool.h */,
+ FFFDf482d6187fb0f482d618 /* ExtSphericalJoint.h */,
+ FFFDf482d6807fb0f482d680 /* ExtTaskQueueHelper.h */,
+ FFFDf482d6e87fb0f482d6e8 /* ExtBroadPhase.cpp */,
+ FFFDf482d7507fb0f482d750 /* ExtClothFabricCooker.cpp */,
+ FFFDf482d7b87fb0f482d7b8 /* ExtClothGeodesicTetherCooker.cpp */,
+ FFFDf482d8207fb0f482d820 /* ExtClothMeshQuadifier.cpp */,
+ FFFDf482d8887fb0f482d888 /* ExtClothSimpleTetherCooker.cpp */,
+ FFFDf482d8f07fb0f482d8f0 /* ExtCollection.cpp */,
+ FFFDf482d9587fb0f482d958 /* ExtConvexMeshExt.cpp */,
+ FFFDf482d9c07fb0f482d9c0 /* ExtCpuWorkerThread.cpp */,
+ FFFDf482da287fb0f482da28 /* ExtD6Joint.cpp */,
+ FFFDf482da907fb0f482da90 /* ExtD6JointSolverPrep.cpp */,
+ FFFDf482daf87fb0f482daf8 /* ExtDefaultCpuDispatcher.cpp */,
+ FFFDf482db607fb0f482db60 /* ExtDefaultErrorCallback.cpp */,
+ FFFDf482dbc87fb0f482dbc8 /* ExtDefaultSimulationFilterShader.cpp */,
+ FFFDf482dc307fb0f482dc30 /* ExtDefaultStreams.cpp */,
+ FFFDf482dc987fb0f482dc98 /* ExtDistanceJoint.cpp */,
+ FFFDf482dd007fb0f482dd00 /* ExtDistanceJointSolverPrep.cpp */,
+ FFFDf482dd687fb0f482dd68 /* ExtExtensions.cpp */,
+ FFFDf482ddd07fb0f482ddd0 /* ExtFixedJoint.cpp */,
+ FFFDf482de387fb0f482de38 /* ExtFixedJointSolverPrep.cpp */,
+ FFFDf482dea07fb0f482dea0 /* ExtJoint.cpp */,
+ FFFDf482df087fb0f482df08 /* ExtMetaData.cpp */,
+ FFFDf482df707fb0f482df70 /* ExtParticleExt.cpp */,
+ FFFDf482dfd87fb0f482dfd8 /* ExtPrismaticJoint.cpp */,
+ FFFDf482e0407fb0f482e040 /* ExtPrismaticJointSolverPrep.cpp */,
+ FFFDf482e0a87fb0f482e0a8 /* ExtPvd.cpp */,
+ FFFDf482e1107fb0f482e110 /* ExtPxStringTable.cpp */,
+ FFFDf482e1787fb0f482e178 /* ExtRaycastCCD.cpp */,
+ FFFDf482e1e07fb0f482e1e0 /* ExtRevoluteJoint.cpp */,
+ FFFDf482e2487fb0f482e248 /* ExtRevoluteJointSolverPrep.cpp */,
+ FFFDf482e2b07fb0f482e2b0 /* ExtRigidBodyExt.cpp */,
+ FFFDf482e3187fb0f482e318 /* ExtSceneQueryExt.cpp */,
+ FFFDf482e3807fb0f482e380 /* ExtSimpleFactory.cpp */,
+ FFFDf482e3e87fb0f482e3e8 /* ExtSmoothNormals.cpp */,
+ FFFDf482e4507fb0f482e450 /* ExtSphericalJoint.cpp */,
+ FFFDf482e4b87fb0f482e4b8 /* ExtSphericalJointSolverPrep.cpp */,
+ FFFDf482e5207fb0f482e520 /* ExtTriangleMeshExt.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
- FFFB04b40c607fef04b40c60 /* serialization */ = {
+ FFFBf39693b07fb0f39693b0 /* serialization */ = {
isa = PBXGroup;
children = (
- FFFD0406b2007fef0406b200 /* SnSerialUtils.h */,
- FFFD0406b2687fef0406b268 /* SnSerializationRegistry.h */,
- FFFD0406b2d07fef0406b2d0 /* SnSerialUtils.cpp */,
- FFFD0406b3387fef0406b338 /* SnSerialization.cpp */,
- FFFD0406b3a07fef0406b3a0 /* SnSerializationRegistry.cpp */,
- FFFD0406b4087fef0406b408 /* Binary/SnConvX.h */,
- FFFD0406b4707fef0406b470 /* Binary/SnConvX_Align.h */,
- FFFD0406b4d87fef0406b4d8 /* Binary/SnConvX_Common.h */,
- FFFD0406b5407fef0406b540 /* Binary/SnConvX_MetaData.h */,
- FFFD0406b5a87fef0406b5a8 /* Binary/SnConvX_Output.h */,
- FFFD0406b6107fef0406b610 /* Binary/SnConvX_Union.h */,
- FFFD0406b6787fef0406b678 /* Binary/SnSerializationContext.h */,
- FFFD0406b6e07fef0406b6e0 /* Binary/SnBinaryDeserialization.cpp */,
- FFFD0406b7487fef0406b748 /* Binary/SnBinarySerialization.cpp */,
- FFFD0406b7b07fef0406b7b0 /* Binary/SnConvX.cpp */,
- FFFD0406b8187fef0406b818 /* Binary/SnConvX_Align.cpp */,
- FFFD0406b8807fef0406b880 /* Binary/SnConvX_Convert.cpp */,
- FFFD0406b8e87fef0406b8e8 /* Binary/SnConvX_Error.cpp */,
- FFFD0406b9507fef0406b950 /* Binary/SnConvX_MetaData.cpp */,
- FFFD0406b9b87fef0406b9b8 /* Binary/SnConvX_Output.cpp */,
- FFFD0406ba207fef0406ba20 /* Binary/SnConvX_Union.cpp */,
- FFFD0406ba887fef0406ba88 /* Binary/SnSerializationContext.cpp */,
- FFFD0406baf07fef0406baf0 /* Xml/SnJointRepXSerializer.h */,
- FFFD0406bb587fef0406bb58 /* Xml/SnPxStreamOperators.h */,
- FFFD0406bbc07fef0406bbc0 /* Xml/SnRepX1_0Defaults.h */,
- FFFD0406bc287fef0406bc28 /* Xml/SnRepX3_1Defaults.h */,
- FFFD0406bc907fef0406bc90 /* Xml/SnRepX3_2Defaults.h */,
- FFFD0406bcf87fef0406bcf8 /* Xml/SnRepXCollection.h */,
- FFFD0406bd607fef0406bd60 /* Xml/SnRepXCoreSerializer.h */,
- FFFD0406bdc87fef0406bdc8 /* Xml/SnRepXSerializerImpl.h */,
- FFFD0406be307fef0406be30 /* Xml/SnRepXUpgrader.h */,
- FFFD0406be987fef0406be98 /* Xml/SnSimpleXmlWriter.h */,
- FFFD0406bf007fef0406bf00 /* Xml/SnXmlDeserializer.h */,
- FFFD0406bf687fef0406bf68 /* Xml/SnXmlImpl.h */,
- FFFD0406bfd07fef0406bfd0 /* Xml/SnXmlMemoryAllocator.h */,
- FFFD0406c0387fef0406c038 /* Xml/SnXmlMemoryPool.h */,
- FFFD0406c0a07fef0406c0a0 /* Xml/SnXmlMemoryPoolStreams.h */,
- FFFD0406c1087fef0406c108 /* Xml/SnXmlReader.h */,
- FFFD0406c1707fef0406c170 /* Xml/SnXmlSerializer.h */,
- FFFD0406c1d87fef0406c1d8 /* Xml/SnXmlSimpleXmlWriter.h */,
- FFFD0406c2407fef0406c240 /* Xml/SnXmlStringToType.h */,
- FFFD0406c2a87fef0406c2a8 /* Xml/SnXmlVisitorReader.h */,
- FFFD0406c3107fef0406c310 /* Xml/SnXmlVisitorWriter.h */,
- FFFD0406c3787fef0406c378 /* Xml/SnXmlWriter.h */,
- FFFD0406c3e07fef0406c3e0 /* Xml/SnJointRepXSerializer.cpp */,
- FFFD0406c4487fef0406c448 /* Xml/SnRepXCoreSerializer.cpp */,
- FFFD0406c4b07fef0406c4b0 /* Xml/SnRepXUpgrader.cpp */,
- FFFD0406c5187fef0406c518 /* Xml/SnXmlSerialization.cpp */,
- FFFD0406c5807fef0406c580 /* File/SnFile.h */,
+ FFFDf4831a007fb0f4831a00 /* SnSerialUtils.h */,
+ FFFDf4831a687fb0f4831a68 /* SnSerializationRegistry.h */,
+ FFFDf4831ad07fb0f4831ad0 /* SnSerialUtils.cpp */,
+ FFFDf4831b387fb0f4831b38 /* SnSerialization.cpp */,
+ FFFDf4831ba07fb0f4831ba0 /* SnSerializationRegistry.cpp */,
+ FFFDf4831c087fb0f4831c08 /* Binary/SnConvX.h */,
+ FFFDf4831c707fb0f4831c70 /* Binary/SnConvX_Align.h */,
+ FFFDf4831cd87fb0f4831cd8 /* Binary/SnConvX_Common.h */,
+ FFFDf4831d407fb0f4831d40 /* Binary/SnConvX_MetaData.h */,
+ FFFDf4831da87fb0f4831da8 /* Binary/SnConvX_Output.h */,
+ FFFDf4831e107fb0f4831e10 /* Binary/SnConvX_Union.h */,
+ FFFDf4831e787fb0f4831e78 /* Binary/SnSerializationContext.h */,
+ FFFDf4831ee07fb0f4831ee0 /* Binary/SnBinaryDeserialization.cpp */,
+ FFFDf4831f487fb0f4831f48 /* Binary/SnBinarySerialization.cpp */,
+ FFFDf4831fb07fb0f4831fb0 /* Binary/SnConvX.cpp */,
+ FFFDf48320187fb0f4832018 /* Binary/SnConvX_Align.cpp */,
+ FFFDf48320807fb0f4832080 /* Binary/SnConvX_Convert.cpp */,
+ FFFDf48320e87fb0f48320e8 /* Binary/SnConvX_Error.cpp */,
+ FFFDf48321507fb0f4832150 /* Binary/SnConvX_MetaData.cpp */,
+ FFFDf48321b87fb0f48321b8 /* Binary/SnConvX_Output.cpp */,
+ FFFDf48322207fb0f4832220 /* Binary/SnConvX_Union.cpp */,
+ FFFDf48322887fb0f4832288 /* Binary/SnSerializationContext.cpp */,
+ FFFDf48322f07fb0f48322f0 /* Xml/SnJointRepXSerializer.h */,
+ FFFDf48323587fb0f4832358 /* Xml/SnPxStreamOperators.h */,
+ FFFDf48323c07fb0f48323c0 /* Xml/SnRepX1_0Defaults.h */,
+ FFFDf48324287fb0f4832428 /* Xml/SnRepX3_1Defaults.h */,
+ FFFDf48324907fb0f4832490 /* Xml/SnRepX3_2Defaults.h */,
+ FFFDf48324f87fb0f48324f8 /* Xml/SnRepXCollection.h */,
+ FFFDf48325607fb0f4832560 /* Xml/SnRepXCoreSerializer.h */,
+ FFFDf48325c87fb0f48325c8 /* Xml/SnRepXSerializerImpl.h */,
+ FFFDf48326307fb0f4832630 /* Xml/SnRepXUpgrader.h */,
+ FFFDf48326987fb0f4832698 /* Xml/SnSimpleXmlWriter.h */,
+ FFFDf48327007fb0f4832700 /* Xml/SnXmlDeserializer.h */,
+ FFFDf48327687fb0f4832768 /* Xml/SnXmlImpl.h */,
+ FFFDf48327d07fb0f48327d0 /* Xml/SnXmlMemoryAllocator.h */,
+ FFFDf48328387fb0f4832838 /* Xml/SnXmlMemoryPool.h */,
+ FFFDf48328a07fb0f48328a0 /* Xml/SnXmlMemoryPoolStreams.h */,
+ FFFDf48329087fb0f4832908 /* Xml/SnXmlReader.h */,
+ FFFDf48329707fb0f4832970 /* Xml/SnXmlSerializer.h */,
+ FFFDf48329d87fb0f48329d8 /* Xml/SnXmlSimpleXmlWriter.h */,
+ FFFDf4832a407fb0f4832a40 /* Xml/SnXmlStringToType.h */,
+ FFFDf4832aa87fb0f4832aa8 /* Xml/SnXmlVisitorReader.h */,
+ FFFDf4832b107fb0f4832b10 /* Xml/SnXmlVisitorWriter.h */,
+ FFFDf4832b787fb0f4832b78 /* Xml/SnXmlWriter.h */,
+ FFFDf4832be07fb0f4832be0 /* Xml/SnJointRepXSerializer.cpp */,
+ FFFDf4832c487fb0f4832c48 /* Xml/SnRepXCoreSerializer.cpp */,
+ FFFDf4832cb07fb0f4832cb0 /* Xml/SnRepXUpgrader.cpp */,
+ FFFDf4832d187fb0f4832d18 /* Xml/SnXmlSerialization.cpp */,
+ FFFDf4832d807fb0f4832d80 /* File/SnFile.h */,
);
name = "serialization";
sourceTree = SOURCE_ROOT;
};
- FFFB04b40c887fef04b40c88 /* metadata */ = {
+ FFFBf39693d87fb0f39693d8 /* metadata */ = {
isa = PBXGroup;
children = (
- FFFD04068e007fef04068e00 /* core/include/PvdMetaDataDefineProperties.h */,
- FFFD04068e687fef04068e68 /* core/include/PvdMetaDataExtensions.h */,
- FFFD04068ed07fef04068ed0 /* core/include/PvdMetaDataPropertyVisitor.h */,
- FFFD04068f387fef04068f38 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */,
- FFFD04068fa07fef04068fa0 /* core/include/PxAutoGeneratedMetaDataObjects.h */,
- FFFD040690087fef04069008 /* core/include/PxMetaDataCompare.h */,
- FFFD040690707fef04069070 /* core/include/PxMetaDataCppPrefix.h */,
- FFFD040690d87fef040690d8 /* core/include/PxMetaDataObjects.h */,
- FFFD040691407fef04069140 /* core/include/RepXMetaDataPropertyVisitor.h */,
- FFFD040691a87fef040691a8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */,
- FFFD040692107fef04069210 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */,
- FFFD040692787fef04069278 /* extensions/include/PxExtensionMetaDataObjects.h */,
- FFFD040692e07fef040692e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */,
+ FFFDf482f6007fb0f482f600 /* core/include/PvdMetaDataDefineProperties.h */,
+ FFFDf482f6687fb0f482f668 /* core/include/PvdMetaDataExtensions.h */,
+ FFFDf482f6d07fb0f482f6d0 /* core/include/PvdMetaDataPropertyVisitor.h */,
+ FFFDf482f7387fb0f482f738 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */,
+ FFFDf482f7a07fb0f482f7a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */,
+ FFFDf482f8087fb0f482f808 /* core/include/PxMetaDataCompare.h */,
+ FFFDf482f8707fb0f482f870 /* core/include/PxMetaDataCppPrefix.h */,
+ FFFDf482f8d87fb0f482f8d8 /* core/include/PxMetaDataObjects.h */,
+ FFFDf482f9407fb0f482f940 /* core/include/RepXMetaDataPropertyVisitor.h */,
+ FFFDf482f9a87fb0f482f9a8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */,
+ FFFDf482fa107fb0f482fa10 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */,
+ FFFDf482fa787fb0f482fa78 /* extensions/include/PxExtensionMetaDataObjects.h */,
+ FFFDf482fae07fb0f482fae0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */,
);
name = "metadata";
sourceTree = SOURCE_ROOT;
};
- FFFB04b4a4f07fef04b4a4f0 /* SceneQuery */ = {
+ FFFBf3972c407fb0f3972c40 /* SceneQuery */ = {
isa = PBXGroup;
children = (
- FFFB04b4bfa07fef04b4bfa0 /* src */,
- FFFB04b4bfc87fef04b4bfc8 /* include */,
+ FFFBf39746f07fb0f39746f0 /* src */,
+ FFFBf39747187fb0f3974718 /* include */,
);
name = "SceneQuery";
sourceTree = "<group>";
};
- FFFB04b4bfa07fef04b4bfa0 /* src */ = {
+ FFFBf39746f07fb0f39746f0 /* src */ = {
isa = PBXGroup;
children = (
- FFFD0406f2007fef0406f200 /* SqAABBPruner.cpp */,
- FFFD0406f2687fef0406f268 /* SqAABBTree.cpp */,
- FFFD0406f2d07fef0406f2d0 /* SqAABBTreeBuild.cpp */,
- FFFD0406f3387fef0406f338 /* SqAABBTreeUpdateMap.cpp */,
- FFFD0406f3a07fef0406f3a0 /* SqBounds.cpp */,
- FFFD0406f4087fef0406f408 /* SqBucketPruner.cpp */,
- FFFD0406f4707fef0406f470 /* SqExtendedBucketPruner.cpp */,
- FFFD0406f4d87fef0406f4d8 /* SqIncrementalAABBPrunerCore.cpp */,
- FFFD0406f5407fef0406f540 /* SqIncrementalAABBTree.cpp */,
- FFFD0406f5a87fef0406f5a8 /* SqMetaData.cpp */,
- FFFD0406f6107fef0406f610 /* SqPruningPool.cpp */,
- FFFD0406f6787fef0406f678 /* SqPruningStructure.cpp */,
- FFFD0406f6e07fef0406f6e0 /* SqSceneQueryManager.cpp */,
- FFFD0406f7487fef0406f748 /* SqAABBPruner.h */,
- FFFD0406f7b07fef0406f7b0 /* SqAABBTree.h */,
- FFFD0406f8187fef0406f818 /* SqAABBTreeBuild.h */,
- FFFD0406f8807fef0406f880 /* SqAABBTreeQuery.h */,
- FFFD0406f8e87fef0406f8e8 /* SqAABBTreeUpdateMap.h */,
- FFFD0406f9507fef0406f950 /* SqBounds.h */,
- FFFD0406f9b87fef0406f9b8 /* SqBucketPruner.h */,
- FFFD0406fa207fef0406fa20 /* SqExtendedBucketPruner.h */,
- FFFD0406fa887fef0406fa88 /* SqIncrementalAABBPrunerCore.h */,
- FFFD0406faf07fef0406faf0 /* SqIncrementalAABBTree.h */,
- FFFD0406fb587fef0406fb58 /* SqPrunerTestsSIMD.h */,
- FFFD0406fbc07fef0406fbc0 /* SqPruningPool.h */,
- FFFD0406fc287fef0406fc28 /* SqTypedef.h */,
+ FFFDf4835a007fb0f4835a00 /* SqAABBPruner.cpp */,
+ FFFDf4835a687fb0f4835a68 /* SqAABBTree.cpp */,
+ FFFDf4835ad07fb0f4835ad0 /* SqAABBTreeBuild.cpp */,
+ FFFDf4835b387fb0f4835b38 /* SqAABBTreeUpdateMap.cpp */,
+ FFFDf4835ba07fb0f4835ba0 /* SqBounds.cpp */,
+ FFFDf4835c087fb0f4835c08 /* SqBucketPruner.cpp */,
+ FFFDf4835c707fb0f4835c70 /* SqExtendedBucketPruner.cpp */,
+ FFFDf4835cd87fb0f4835cd8 /* SqIncrementalAABBPrunerCore.cpp */,
+ FFFDf4835d407fb0f4835d40 /* SqIncrementalAABBTree.cpp */,
+ FFFDf4835da87fb0f4835da8 /* SqMetaData.cpp */,
+ FFFDf4835e107fb0f4835e10 /* SqPruningPool.cpp */,
+ FFFDf4835e787fb0f4835e78 /* SqPruningStructure.cpp */,
+ FFFDf4835ee07fb0f4835ee0 /* SqSceneQueryManager.cpp */,
+ FFFDf4835f487fb0f4835f48 /* SqAABBPruner.h */,
+ FFFDf4835fb07fb0f4835fb0 /* SqAABBTree.h */,
+ FFFDf48360187fb0f4836018 /* SqAABBTreeBuild.h */,
+ FFFDf48360807fb0f4836080 /* SqAABBTreeQuery.h */,
+ FFFDf48360e87fb0f48360e8 /* SqAABBTreeUpdateMap.h */,
+ FFFDf48361507fb0f4836150 /* SqBounds.h */,
+ FFFDf48361b87fb0f48361b8 /* SqBucketPruner.h */,
+ FFFDf48362207fb0f4836220 /* SqExtendedBucketPruner.h */,
+ FFFDf48362887fb0f4836288 /* SqIncrementalAABBPrunerCore.h */,
+ FFFDf48362f07fb0f48362f0 /* SqIncrementalAABBTree.h */,
+ FFFDf48363587fb0f4836358 /* SqPrunerTestsSIMD.h */,
+ FFFDf48363c07fb0f48363c0 /* SqPruningPool.h */,
+ FFFDf48364287fb0f4836428 /* SqTypedef.h */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
- FFFB04b4bfc87fef04b4bfc8 /* include */ = {
+ FFFBf39747187fb0f3974718 /* include */ = {
isa = PBXGroup;
children = (
- FFFD04b4e7b07fef04b4e7b0 /* SqPruner.h */,
- FFFD04b4e8187fef04b4e818 /* SqPrunerMergeData.h */,
- FFFD04b4e8807fef04b4e880 /* SqPruningStructure.h */,
- FFFD04b4e8e87fef04b4e8e8 /* SqSceneQueryManager.h */,
+ FFFDf3976f007fb0f3976f00 /* SqPruner.h */,
+ FFFDf3976f687fb0f3976f68 /* SqPrunerMergeData.h */,
+ FFFDf3976fd07fb0f3976fd0 /* SqPruningStructure.h */,
+ FFFDf39770387fb0f3977038 /* SqSceneQueryManager.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
- FFFB04b4ea707fef04b4ea70 /* SimulationController */ = {
+ FFFBf39771c07fb0f39771c0 /* SimulationController */ = {
isa = PBXGroup;
children = (
- FFFB04b514a07fef04b514a0 /* include */,
- FFFB04b514c87fef04b514c8 /* src */,
+ FFFBf3979bf07fb0f3979bf0 /* include */,
+ FFFBf3979c187fb0f3979c18 /* src */,
);
name = "SimulationController";
sourceTree = "<group>";
};
- FFFB04b514a07fef04b514a0 /* include */ = {
+ FFFBf3979bf07fb0f3979bf0 /* include */ = {
isa = PBXGroup;
children = (
- FFFD04071e007fef04071e00 /* ScActorCore.h */,
- FFFD04071e687fef04071e68 /* ScArticulationCore.h */,
- FFFD04071ed07fef04071ed0 /* ScArticulationJointCore.h */,
- FFFD04071f387fef04071f38 /* ScBodyCore.h */,
- FFFD04071fa07fef04071fa0 /* ScClothCore.h */,
- FFFD040720087fef04072008 /* ScClothFabricCore.h */,
- FFFD040720707fef04072070 /* ScConstraintCore.h */,
- FFFD040720d87fef040720d8 /* ScIterators.h */,
- FFFD040721407fef04072140 /* ScMaterialCore.h */,
- FFFD040721a87fef040721a8 /* ScParticleSystemCore.h */,
- FFFD040722107fef04072210 /* ScPhysics.h */,
- FFFD040722787fef04072278 /* ScRigidCore.h */,
- FFFD040722e07fef040722e0 /* ScScene.h */,
- FFFD040723487fef04072348 /* ScShapeCore.h */,
- FFFD040723b07fef040723b0 /* ScStaticCore.h */,
+ FFFDf48386007fb0f4838600 /* ScActorCore.h */,
+ FFFDf48386687fb0f4838668 /* ScArticulationCore.h */,
+ FFFDf48386d07fb0f48386d0 /* ScArticulationJointCore.h */,
+ FFFDf48387387fb0f4838738 /* ScBodyCore.h */,
+ FFFDf48387a07fb0f48387a0 /* ScClothCore.h */,
+ FFFDf48388087fb0f4838808 /* ScClothFabricCore.h */,
+ FFFDf48388707fb0f4838870 /* ScConstraintCore.h */,
+ FFFDf48388d87fb0f48388d8 /* ScIterators.h */,
+ FFFDf48389407fb0f4838940 /* ScMaterialCore.h */,
+ FFFDf48389a87fb0f48389a8 /* ScParticleSystemCore.h */,
+ FFFDf4838a107fb0f4838a10 /* ScPhysics.h */,
+ FFFDf4838a787fb0f4838a78 /* ScRigidCore.h */,
+ FFFDf4838ae07fb0f4838ae0 /* ScScene.h */,
+ FFFDf4838b487fb0f4838b48 /* ScShapeCore.h */,
+ FFFDf4838bb07fb0f4838bb0 /* ScStaticCore.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
- FFFB04b514c87fef04b514c8 /* src */ = {
+ FFFBf3979c187fb0f3979c18 /* src */ = {
isa = PBXGroup;
children = (
- FFFD0580e2007fef0580e200 /* ScActorElementPair.h */,
- FFFD0580e2687fef0580e268 /* ScActorInteraction.h */,
- FFFD0580e2d07fef0580e2d0 /* ScActorPair.h */,
- FFFD0580e3387fef0580e338 /* ScActorSim.h */,
- FFFD0580e3a07fef0580e3a0 /* ScArticulationJointSim.h */,
- FFFD0580e4087fef0580e408 /* ScArticulationSim.h */,
- FFFD0580e4707fef0580e470 /* ScBodySim.h */,
- FFFD0580e4d87fef0580e4d8 /* ScClient.h */,
- FFFD0580e5407fef0580e540 /* ScConstraintGroupNode.h */,
- FFFD0580e5a87fef0580e5a8 /* ScConstraintInteraction.h */,
- FFFD0580e6107fef0580e610 /* ScConstraintProjectionManager.h */,
- FFFD0580e6787fef0580e678 /* ScConstraintProjectionTree.h */,
- FFFD0580e6e07fef0580e6e0 /* ScConstraintSim.h */,
- FFFD0580e7487fef0580e748 /* ScContactReportBuffer.h */,
- FFFD0580e7b07fef0580e7b0 /* ScContactStream.h */,
- FFFD0580e8187fef0580e818 /* ScElementInteractionMarker.h */,
- FFFD0580e8807fef0580e880 /* ScElementSim.h */,
- FFFD0580e8e87fef0580e8e8 /* ScElementSimInteraction.h */,
- FFFD0580e9507fef0580e950 /* ScInteraction.h */,
- FFFD0580e9b87fef0580e9b8 /* ScInteractionFlags.h */,
- FFFD0580ea207fef0580ea20 /* ScNPhaseCore.h */,
- FFFD0580ea887fef0580ea88 /* ScObjectIDTracker.h */,
- FFFD0580eaf07fef0580eaf0 /* ScRbElementInteraction.h */,
- FFFD0580eb587fef0580eb58 /* ScRigidSim.h */,
- FFFD0580ebc07fef0580ebc0 /* ScShapeInteraction.h */,
- FFFD0580ec287fef0580ec28 /* ScShapeIterator.h */,
- FFFD0580ec907fef0580ec90 /* ScShapeSim.h */,
- FFFD0580ecf87fef0580ecf8 /* ScSimStateData.h */,
- FFFD0580ed607fef0580ed60 /* ScSimStats.h */,
- FFFD0580edc87fef0580edc8 /* ScSimulationController.h */,
- FFFD0580ee307fef0580ee30 /* ScSqBoundsManager.h */,
- FFFD0580ee987fef0580ee98 /* ScStaticSim.h */,
- FFFD0580ef007fef0580ef00 /* ScTriggerInteraction.h */,
- FFFD0580ef687fef0580ef68 /* ScTriggerPairs.h */,
- FFFD0580efd07fef0580efd0 /* ScActorCore.cpp */,
- FFFD0580f0387fef0580f038 /* ScActorSim.cpp */,
- FFFD0580f0a07fef0580f0a0 /* ScArticulationCore.cpp */,
- FFFD0580f1087fef0580f108 /* ScArticulationJointCore.cpp */,
- FFFD0580f1707fef0580f170 /* ScArticulationJointSim.cpp */,
- FFFD0580f1d87fef0580f1d8 /* ScArticulationSim.cpp */,
- FFFD0580f2407fef0580f240 /* ScBodyCore.cpp */,
- FFFD0580f2a87fef0580f2a8 /* ScBodyCoreKinematic.cpp */,
- FFFD0580f3107fef0580f310 /* ScBodySim.cpp */,
- FFFD0580f3787fef0580f378 /* ScConstraintCore.cpp */,
- FFFD0580f3e07fef0580f3e0 /* ScConstraintGroupNode.cpp */,
- FFFD0580f4487fef0580f448 /* ScConstraintInteraction.cpp */,
- FFFD0580f4b07fef0580f4b0 /* ScConstraintProjectionManager.cpp */,
- FFFD0580f5187fef0580f518 /* ScConstraintProjectionTree.cpp */,
- FFFD0580f5807fef0580f580 /* ScConstraintSim.cpp */,
- FFFD0580f5e87fef0580f5e8 /* ScElementInteractionMarker.cpp */,
- FFFD0580f6507fef0580f650 /* ScElementSim.cpp */,
- FFFD0580f6b87fef0580f6b8 /* ScInteraction.cpp */,
- FFFD0580f7207fef0580f720 /* ScIterators.cpp */,
- FFFD0580f7887fef0580f788 /* ScMaterialCore.cpp */,
- FFFD0580f7f07fef0580f7f0 /* ScMetaData.cpp */,
- FFFD0580f8587fef0580f858 /* ScNPhaseCore.cpp */,
- FFFD0580f8c07fef0580f8c0 /* ScPhysics.cpp */,
- FFFD0580f9287fef0580f928 /* ScRigidCore.cpp */,
- FFFD0580f9907fef0580f990 /* ScRigidSim.cpp */,
- FFFD0580f9f87fef0580f9f8 /* ScScene.cpp */,
- FFFD0580fa607fef0580fa60 /* ScShapeCore.cpp */,
- FFFD0580fac87fef0580fac8 /* ScShapeInteraction.cpp */,
- FFFD0580fb307fef0580fb30 /* ScShapeSim.cpp */,
- FFFD0580fb987fef0580fb98 /* ScSimStats.cpp */,
- FFFD0580fc007fef0580fc00 /* ScSimulationController.cpp */,
- FFFD0580fc687fef0580fc68 /* ScSqBoundsManager.cpp */,
- FFFD0580fcd07fef0580fcd0 /* ScStaticCore.cpp */,
- FFFD0580fd387fef0580fd38 /* ScStaticSim.cpp */,
- FFFD0580fda07fef0580fda0 /* ScTriggerInteraction.cpp */,
- FFFD0580fe087fef0580fe08 /* particles/ScParticleBodyInteraction.h */,
- FFFD0580fe707fef0580fe70 /* particles/ScParticlePacketShape.h */,
- FFFD0580fed87fef0580fed8 /* particles/ScParticleSystemSim.h */,
- FFFD0580ff407fef0580ff40 /* particles/ScParticleBodyInteraction.cpp */,
- FFFD0580ffa87fef0580ffa8 /* particles/ScParticlePacketShape.cpp */,
- FFFD058100107fef05810010 /* particles/ScParticleSystemCore.cpp */,
- FFFD058100787fef05810078 /* particles/ScParticleSystemSim.cpp */,
- FFFD058100e07fef058100e0 /* cloth/ScClothShape.h */,
- FFFD058101487fef05810148 /* cloth/ScClothSim.h */,
- FFFD058101b07fef058101b0 /* cloth/ScClothCore.cpp */,
- FFFD058102187fef05810218 /* cloth/ScClothFabricCore.cpp */,
- FFFD058102807fef05810280 /* cloth/ScClothShape.cpp */,
- FFFD058102e87fef058102e8 /* cloth/ScClothSim.cpp */,
+ FFFDf21d68007fb0f21d6800 /* ScActorElementPair.h */,
+ FFFDf21d68687fb0f21d6868 /* ScActorInteraction.h */,
+ FFFDf21d68d07fb0f21d68d0 /* ScActorPair.h */,
+ FFFDf21d69387fb0f21d6938 /* ScActorSim.h */,
+ FFFDf21d69a07fb0f21d69a0 /* ScArticulationJointSim.h */,
+ FFFDf21d6a087fb0f21d6a08 /* ScArticulationSim.h */,
+ FFFDf21d6a707fb0f21d6a70 /* ScBodySim.h */,
+ FFFDf21d6ad87fb0f21d6ad8 /* ScClient.h */,
+ FFFDf21d6b407fb0f21d6b40 /* ScConstraintGroupNode.h */,
+ FFFDf21d6ba87fb0f21d6ba8 /* ScConstraintInteraction.h */,
+ FFFDf21d6c107fb0f21d6c10 /* ScConstraintProjectionManager.h */,
+ FFFDf21d6c787fb0f21d6c78 /* ScConstraintProjectionTree.h */,
+ FFFDf21d6ce07fb0f21d6ce0 /* ScConstraintSim.h */,
+ FFFDf21d6d487fb0f21d6d48 /* ScContactReportBuffer.h */,
+ FFFDf21d6db07fb0f21d6db0 /* ScContactStream.h */,
+ FFFDf21d6e187fb0f21d6e18 /* ScElementInteractionMarker.h */,
+ FFFDf21d6e807fb0f21d6e80 /* ScElementSim.h */,
+ FFFDf21d6ee87fb0f21d6ee8 /* ScElementSimInteraction.h */,
+ FFFDf21d6f507fb0f21d6f50 /* ScInteraction.h */,
+ FFFDf21d6fb87fb0f21d6fb8 /* ScInteractionFlags.h */,
+ FFFDf21d70207fb0f21d7020 /* ScNPhaseCore.h */,
+ FFFDf21d70887fb0f21d7088 /* ScObjectIDTracker.h */,
+ FFFDf21d70f07fb0f21d70f0 /* ScRbElementInteraction.h */,
+ FFFDf21d71587fb0f21d7158 /* ScRigidSim.h */,
+ FFFDf21d71c07fb0f21d71c0 /* ScShapeInteraction.h */,
+ FFFDf21d72287fb0f21d7228 /* ScShapeIterator.h */,
+ FFFDf21d72907fb0f21d7290 /* ScShapeSim.h */,
+ FFFDf21d72f87fb0f21d72f8 /* ScSimStateData.h */,
+ FFFDf21d73607fb0f21d7360 /* ScSimStats.h */,
+ FFFDf21d73c87fb0f21d73c8 /* ScSimulationController.h */,
+ FFFDf21d74307fb0f21d7430 /* ScSqBoundsManager.h */,
+ FFFDf21d74987fb0f21d7498 /* ScStaticSim.h */,
+ FFFDf21d75007fb0f21d7500 /* ScTriggerInteraction.h */,
+ FFFDf21d75687fb0f21d7568 /* ScTriggerPairs.h */,
+ FFFDf21d75d07fb0f21d75d0 /* ScActorCore.cpp */,
+ FFFDf21d76387fb0f21d7638 /* ScActorSim.cpp */,
+ FFFDf21d76a07fb0f21d76a0 /* ScArticulationCore.cpp */,
+ FFFDf21d77087fb0f21d7708 /* ScArticulationJointCore.cpp */,
+ FFFDf21d77707fb0f21d7770 /* ScArticulationJointSim.cpp */,
+ FFFDf21d77d87fb0f21d77d8 /* ScArticulationSim.cpp */,
+ FFFDf21d78407fb0f21d7840 /* ScBodyCore.cpp */,
+ FFFDf21d78a87fb0f21d78a8 /* ScBodyCoreKinematic.cpp */,
+ FFFDf21d79107fb0f21d7910 /* ScBodySim.cpp */,
+ FFFDf21d79787fb0f21d7978 /* ScConstraintCore.cpp */,
+ FFFDf21d79e07fb0f21d79e0 /* ScConstraintGroupNode.cpp */,
+ FFFDf21d7a487fb0f21d7a48 /* ScConstraintInteraction.cpp */,
+ FFFDf21d7ab07fb0f21d7ab0 /* ScConstraintProjectionManager.cpp */,
+ FFFDf21d7b187fb0f21d7b18 /* ScConstraintProjectionTree.cpp */,
+ FFFDf21d7b807fb0f21d7b80 /* ScConstraintSim.cpp */,
+ FFFDf21d7be87fb0f21d7be8 /* ScElementInteractionMarker.cpp */,
+ FFFDf21d7c507fb0f21d7c50 /* ScElementSim.cpp */,
+ FFFDf21d7cb87fb0f21d7cb8 /* ScInteraction.cpp */,
+ FFFDf21d7d207fb0f21d7d20 /* ScIterators.cpp */,
+ FFFDf21d7d887fb0f21d7d88 /* ScMaterialCore.cpp */,
+ FFFDf21d7df07fb0f21d7df0 /* ScMetaData.cpp */,
+ FFFDf21d7e587fb0f21d7e58 /* ScNPhaseCore.cpp */,
+ FFFDf21d7ec07fb0f21d7ec0 /* ScPhysics.cpp */,
+ FFFDf21d7f287fb0f21d7f28 /* ScRigidCore.cpp */,
+ FFFDf21d7f907fb0f21d7f90 /* ScRigidSim.cpp */,
+ FFFDf21d7ff87fb0f21d7ff8 /* ScScene.cpp */,
+ FFFDf21d80607fb0f21d8060 /* ScShapeCore.cpp */,
+ FFFDf21d80c87fb0f21d80c8 /* ScShapeInteraction.cpp */,
+ FFFDf21d81307fb0f21d8130 /* ScShapeSim.cpp */,
+ FFFDf21d81987fb0f21d8198 /* ScSimStats.cpp */,
+ FFFDf21d82007fb0f21d8200 /* ScSimulationController.cpp */,
+ FFFDf21d82687fb0f21d8268 /* ScSqBoundsManager.cpp */,
+ FFFDf21d82d07fb0f21d82d0 /* ScStaticCore.cpp */,
+ FFFDf21d83387fb0f21d8338 /* ScStaticSim.cpp */,
+ FFFDf21d83a07fb0f21d83a0 /* ScTriggerInteraction.cpp */,
+ FFFDf21d84087fb0f21d8408 /* particles/ScParticleBodyInteraction.h */,
+ FFFDf21d84707fb0f21d8470 /* particles/ScParticlePacketShape.h */,
+ FFFDf21d84d87fb0f21d84d8 /* particles/ScParticleSystemSim.h */,
+ FFFDf21d85407fb0f21d8540 /* particles/ScParticleBodyInteraction.cpp */,
+ FFFDf21d85a87fb0f21d85a8 /* particles/ScParticlePacketShape.cpp */,
+ FFFDf21d86107fb0f21d8610 /* particles/ScParticleSystemCore.cpp */,
+ FFFDf21d86787fb0f21d8678 /* particles/ScParticleSystemSim.cpp */,
+ FFFDf21d86e07fb0f21d86e0 /* cloth/ScClothShape.h */,
+ FFFDf21d87487fb0f21d8748 /* cloth/ScClothSim.h */,
+ FFFDf21d87b07fb0f21d87b0 /* cloth/ScClothCore.cpp */,
+ FFFDf21d88187fb0f21d8818 /* cloth/ScClothFabricCore.cpp */,
+ FFFDf21d88807fb0f21d8880 /* cloth/ScClothShape.cpp */,
+ FFFDf21d88e87fb0f21d88e8 /* cloth/ScClothSim.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
- FFFB0492c6407fef0492c640 /* PhysXCooking */ = {
+ FFFBf2c8ba007fb0f2c8ba00 /* PhysXCooking */ = {
isa = PBXGroup;
children = (
- FFFB0492a2307fef0492a230 /* include */,
- FFFB0492a2587fef0492a258 /* src */,
+ FFFBf2cfb8a07fb0f2cfb8a0 /* include */,
+ FFFBf2cfb8c87fb0f2cfb8c8 /* src */,
);
name = "PhysXCooking";
sourceTree = "<group>";
};
- FFFB0492a2307fef0492a230 /* include */ = {
+ FFFBf2cfb8a07fb0f2cfb8a0 /* include */ = {
isa = PBXGroup;
children = (
- FFFD0492e5207fef0492e520 /* PxBVH33MidphaseDesc.h */,
- FFFD0492e5887fef0492e588 /* PxBVH34MidphaseDesc.h */,
- FFFD0492e5f07fef0492e5f0 /* PxConvexMeshDesc.h */,
- FFFD0492e6587fef0492e658 /* PxCooking.h */,
- FFFD0492e6c07fef0492e6c0 /* PxMidphaseDesc.h */,
- FFFD0492e7287fef0492e728 /* PxTriangleMeshDesc.h */,
- FFFD0492e7907fef0492e790 /* Pxc.h */,
+ FFFDf3a000007fb0f3a00000 /* PxBVH33MidphaseDesc.h */,
+ FFFDf3a000687fb0f3a00068 /* PxBVH34MidphaseDesc.h */,
+ FFFDf3a000d07fb0f3a000d0 /* PxConvexMeshDesc.h */,
+ FFFDf3a001387fb0f3a00138 /* PxCooking.h */,
+ FFFDf3a001a07fb0f3a001a0 /* PxMidphaseDesc.h */,
+ FFFDf3a002087fb0f3a00208 /* PxTriangleMeshDesc.h */,
+ FFFDf3a002707fb0f3a00270 /* Pxc.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
- FFFB0492a2587fef0492a258 /* src */ = {
+ FFFBf2cfb8c87fb0f2cfb8c8 /* src */ = {
isa = PBXGroup;
children = (
- FFFD058144007fef05814400 /* Adjacencies.cpp */,
- FFFD058144687fef05814468 /* Cooking.cpp */,
- FFFD058144d07fef058144d0 /* CookingUtils.cpp */,
- FFFD058145387fef05814538 /* EdgeList.cpp */,
- FFFD058145a07fef058145a0 /* MeshCleaner.cpp */,
- FFFD058146087fef05814608 /* Quantizer.cpp */,
- FFFD058146707fef05814670 /* Adjacencies.h */,
- FFFD058146d87fef058146d8 /* Cooking.h */,
- FFFD058147407fef05814740 /* CookingUtils.h */,
- FFFD058147a87fef058147a8 /* EdgeList.h */,
- FFFD058148107fef05814810 /* MeshCleaner.h */,
- FFFD058148787fef05814878 /* Quantizer.h */,
- FFFD058148e07fef058148e0 /* mesh/GrbTriangleMeshCooking.cpp */,
- FFFD058149487fef05814948 /* mesh/HeightFieldCooking.cpp */,
- FFFD058149b07fef058149b0 /* mesh/RTreeCooking.cpp */,
- FFFD05814a187fef05814a18 /* mesh/TriangleMeshBuilder.cpp */,
- FFFD05814a807fef05814a80 /* mesh/GrbTriangleMeshCooking.h */,
- FFFD05814ae87fef05814ae8 /* mesh/HeightFieldCooking.h */,
- FFFD05814b507fef05814b50 /* mesh/QuickSelect.h */,
- FFFD05814bb87fef05814bb8 /* mesh/RTreeCooking.h */,
- FFFD05814c207fef05814c20 /* mesh/TriangleMeshBuilder.h */,
- FFFD05814c887fef05814c88 /* convex/BigConvexDataBuilder.cpp */,
- FFFD05814cf07fef05814cf0 /* convex/ConvexHullBuilder.cpp */,
- FFFD05814d587fef05814d58 /* convex/ConvexHullLib.cpp */,
- FFFD05814dc07fef05814dc0 /* convex/ConvexHullUtils.cpp */,
- FFFD05814e287fef05814e28 /* convex/ConvexMeshBuilder.cpp */,
- FFFD05814e907fef05814e90 /* convex/ConvexPolygonsBuilder.cpp */,
- FFFD05814ef87fef05814ef8 /* convex/InflationConvexHullLib.cpp */,
- FFFD05814f607fef05814f60 /* convex/QuickHullConvexHullLib.cpp */,
- FFFD05814fc87fef05814fc8 /* convex/VolumeIntegration.cpp */,
- FFFD058150307fef05815030 /* convex/BigConvexDataBuilder.h */,
- FFFD058150987fef05815098 /* convex/ConvexHullBuilder.h */,
- FFFD058151007fef05815100 /* convex/ConvexHullLib.h */,
- FFFD058151687fef05815168 /* convex/ConvexHullUtils.h */,
- FFFD058151d07fef058151d0 /* convex/ConvexMeshBuilder.h */,
- FFFD058152387fef05815238 /* convex/ConvexPolygonsBuilder.h */,
- FFFD058152a07fef058152a0 /* convex/InflationConvexHullLib.h */,
- FFFD058153087fef05815308 /* convex/QuickHullConvexHullLib.h */,
- FFFD058153707fef05815370 /* convex/VolumeIntegration.h */,
+ FFFDf21dea007fb0f21dea00 /* Adjacencies.cpp */,
+ FFFDf21dea687fb0f21dea68 /* Cooking.cpp */,
+ FFFDf21dead07fb0f21dead0 /* CookingUtils.cpp */,
+ FFFDf21deb387fb0f21deb38 /* EdgeList.cpp */,
+ FFFDf21deba07fb0f21deba0 /* MeshCleaner.cpp */,
+ FFFDf21dec087fb0f21dec08 /* Quantizer.cpp */,
+ FFFDf21dec707fb0f21dec70 /* Adjacencies.h */,
+ FFFDf21decd87fb0f21decd8 /* Cooking.h */,
+ FFFDf21ded407fb0f21ded40 /* CookingUtils.h */,
+ FFFDf21deda87fb0f21deda8 /* EdgeList.h */,
+ FFFDf21dee107fb0f21dee10 /* MeshCleaner.h */,
+ FFFDf21dee787fb0f21dee78 /* Quantizer.h */,
+ FFFDf21deee07fb0f21deee0 /* mesh/GrbTriangleMeshCooking.cpp */,
+ FFFDf21def487fb0f21def48 /* mesh/HeightFieldCooking.cpp */,
+ FFFDf21defb07fb0f21defb0 /* mesh/RTreeCooking.cpp */,
+ FFFDf21df0187fb0f21df018 /* mesh/TriangleMeshBuilder.cpp */,
+ FFFDf21df0807fb0f21df080 /* mesh/GrbTriangleMeshCooking.h */,
+ FFFDf21df0e87fb0f21df0e8 /* mesh/HeightFieldCooking.h */,
+ FFFDf21df1507fb0f21df150 /* mesh/QuickSelect.h */,
+ FFFDf21df1b87fb0f21df1b8 /* mesh/RTreeCooking.h */,
+ FFFDf21df2207fb0f21df220 /* mesh/TriangleMeshBuilder.h */,
+ FFFDf21df2887fb0f21df288 /* convex/BigConvexDataBuilder.cpp */,
+ FFFDf21df2f07fb0f21df2f0 /* convex/ConvexHullBuilder.cpp */,
+ FFFDf21df3587fb0f21df358 /* convex/ConvexHullLib.cpp */,
+ FFFDf21df3c07fb0f21df3c0 /* convex/ConvexHullUtils.cpp */,
+ FFFDf21df4287fb0f21df428 /* convex/ConvexMeshBuilder.cpp */,
+ FFFDf21df4907fb0f21df490 /* convex/ConvexPolygonsBuilder.cpp */,
+ FFFDf21df4f87fb0f21df4f8 /* convex/InflationConvexHullLib.cpp */,
+ FFFDf21df5607fb0f21df560 /* convex/QuickHullConvexHullLib.cpp */,
+ FFFDf21df5c87fb0f21df5c8 /* convex/VolumeIntegration.cpp */,
+ FFFDf21df6307fb0f21df630 /* convex/BigConvexDataBuilder.h */,
+ FFFDf21df6987fb0f21df698 /* convex/ConvexHullBuilder.h */,
+ FFFDf21df7007fb0f21df700 /* convex/ConvexHullLib.h */,
+ FFFDf21df7687fb0f21df768 /* convex/ConvexHullUtils.h */,
+ FFFDf21df7d07fb0f21df7d0 /* convex/ConvexMeshBuilder.h */,
+ FFFDf21df8387fb0f21df838 /* convex/ConvexPolygonsBuilder.h */,
+ FFFDf21df8a07fb0f21df8a0 /* convex/InflationConvexHullLib.h */,
+ FFFDf21df9087fb0f21df908 /* convex/QuickHullConvexHullLib.h */,
+ FFFDf21df9707fb0f21df970 /* convex/VolumeIntegration.h */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
- FFFB0314a5307fef0314a530 /* PhysXCommon */ = {
+ FFFBf299eeb07fb0f299eeb0 /* PhysXCommon */ = {
isa = PBXGroup;
children = (
- FFFB031484207fef03148420 /* include */,
- FFFB031484487fef03148448 /* common */,
- FFFB031484707fef03148470 /* geomutils */,
+ FFFBf29a12e07fb0f29a12e0 /* include */,
+ FFFBf29a13087fb0f29a1308 /* common */,
+ FFFBf29a13307fb0f29a1330 /* geomutils */,
);
name = "PhysXCommon";
sourceTree = "<group>";
};
- FFFB031484207fef03148420 /* include */ = {
+ FFFBf29a12e07fb0f29a12e0 /* include */ = {
isa = PBXGroup;
children = (
- FFFD0284fa007fef0284fa00 /* common/PxBase.h */,
- FFFD0284fa687fef0284fa68 /* common/PxCollection.h */,
- FFFD0284fad07fef0284fad0 /* common/PxCoreUtilityTypes.h */,
- FFFD0284fb387fef0284fb38 /* common/PxMetaData.h */,
- FFFD0284fba07fef0284fba0 /* common/PxMetaDataFlags.h */,
- FFFD0284fc087fef0284fc08 /* common/PxPhysXCommonConfig.h */,
- FFFD0284fc707fef0284fc70 /* common/PxPhysicsInsertionCallback.h */,
- FFFD0284fcd87fef0284fcd8 /* common/PxRenderBuffer.h */,
- FFFD0284fd407fef0284fd40 /* common/PxSerialFramework.h */,
- FFFD0284fda87fef0284fda8 /* common/PxSerializer.h */,
- FFFD0284fe107fef0284fe10 /* common/PxStringTable.h */,
- FFFD0284fe787fef0284fe78 /* common/PxTolerancesScale.h */,
- FFFD0284fee07fef0284fee0 /* common/PxTypeInfo.h */,
- FFFD0284ff487fef0284ff48 /* geometry/PxBoxGeometry.h */,
- FFFD0284ffb07fef0284ffb0 /* geometry/PxCapsuleGeometry.h */,
- FFFD028500187fef02850018 /* geometry/PxConvexMesh.h */,
- FFFD028500807fef02850080 /* geometry/PxConvexMeshGeometry.h */,
- FFFD028500e87fef028500e8 /* geometry/PxGeometry.h */,
- FFFD028501507fef02850150 /* geometry/PxGeometryHelpers.h */,
- FFFD028501b87fef028501b8 /* geometry/PxGeometryQuery.h */,
- FFFD028502207fef02850220 /* geometry/PxHeightField.h */,
- FFFD028502887fef02850288 /* geometry/PxHeightFieldDesc.h */,
- FFFD028502f07fef028502f0 /* geometry/PxHeightFieldFlag.h */,
- FFFD028503587fef02850358 /* geometry/PxHeightFieldGeometry.h */,
- FFFD028503c07fef028503c0 /* geometry/PxHeightFieldSample.h */,
- FFFD028504287fef02850428 /* geometry/PxMeshQuery.h */,
- FFFD028504907fef02850490 /* geometry/PxMeshScale.h */,
- FFFD028504f87fef028504f8 /* geometry/PxPlaneGeometry.h */,
- FFFD028505607fef02850560 /* geometry/PxSimpleTriangleMesh.h */,
- FFFD028505c87fef028505c8 /* geometry/PxSphereGeometry.h */,
- FFFD028506307fef02850630 /* geometry/PxTriangle.h */,
- FFFD028506987fef02850698 /* geometry/PxTriangleMesh.h */,
- FFFD028507007fef02850700 /* geometry/PxTriangleMeshGeometry.h */,
+ FFFDf300ec007fb0f300ec00 /* common/PxBase.h */,
+ FFFDf300ec687fb0f300ec68 /* common/PxCollection.h */,
+ FFFDf300ecd07fb0f300ecd0 /* common/PxCoreUtilityTypes.h */,
+ FFFDf300ed387fb0f300ed38 /* common/PxMetaData.h */,
+ FFFDf300eda07fb0f300eda0 /* common/PxMetaDataFlags.h */,
+ FFFDf300ee087fb0f300ee08 /* common/PxPhysXCommonConfig.h */,
+ FFFDf300ee707fb0f300ee70 /* common/PxPhysicsInsertionCallback.h */,
+ FFFDf300eed87fb0f300eed8 /* common/PxRenderBuffer.h */,
+ FFFDf300ef407fb0f300ef40 /* common/PxSerialFramework.h */,
+ FFFDf300efa87fb0f300efa8 /* common/PxSerializer.h */,
+ FFFDf300f0107fb0f300f010 /* common/PxStringTable.h */,
+ FFFDf300f0787fb0f300f078 /* common/PxTolerancesScale.h */,
+ FFFDf300f0e07fb0f300f0e0 /* common/PxTypeInfo.h */,
+ FFFDf300f1487fb0f300f148 /* geometry/PxBoxGeometry.h */,
+ FFFDf300f1b07fb0f300f1b0 /* geometry/PxCapsuleGeometry.h */,
+ FFFDf300f2187fb0f300f218 /* geometry/PxConvexMesh.h */,
+ FFFDf300f2807fb0f300f280 /* geometry/PxConvexMeshGeometry.h */,
+ FFFDf300f2e87fb0f300f2e8 /* geometry/PxGeometry.h */,
+ FFFDf300f3507fb0f300f350 /* geometry/PxGeometryHelpers.h */,
+ FFFDf300f3b87fb0f300f3b8 /* geometry/PxGeometryQuery.h */,
+ FFFDf300f4207fb0f300f420 /* geometry/PxHeightField.h */,
+ FFFDf300f4887fb0f300f488 /* geometry/PxHeightFieldDesc.h */,
+ FFFDf300f4f07fb0f300f4f0 /* geometry/PxHeightFieldFlag.h */,
+ FFFDf300f5587fb0f300f558 /* geometry/PxHeightFieldGeometry.h */,
+ FFFDf300f5c07fb0f300f5c0 /* geometry/PxHeightFieldSample.h */,
+ FFFDf300f6287fb0f300f628 /* geometry/PxMeshQuery.h */,
+ FFFDf300f6907fb0f300f690 /* geometry/PxMeshScale.h */,
+ FFFDf300f6f87fb0f300f6f8 /* geometry/PxPlaneGeometry.h */,
+ FFFDf300f7607fb0f300f760 /* geometry/PxSimpleTriangleMesh.h */,
+ FFFDf300f7c87fb0f300f7c8 /* geometry/PxSphereGeometry.h */,
+ FFFDf300f8307fb0f300f830 /* geometry/PxTriangle.h */,
+ FFFDf300f8987fb0f300f898 /* geometry/PxTriangleMesh.h */,
+ FFFDf300f9007fb0f300f900 /* geometry/PxTriangleMeshGeometry.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
- FFFB031484487fef03148448 /* common */ = {
+ FFFBf29a13087fb0f29a1308 /* common */ = {
isa = PBXGroup;
children = (
- FFFD039562007fef03956200 /* src/CmBoxPruning.cpp */,
- FFFD039562687fef03956268 /* src/CmCollection.cpp */,
- FFFD039562d07fef039562d0 /* src/CmMathUtils.cpp */,
- FFFD039563387fef03956338 /* src/CmPtrTable.cpp */,
- FFFD039563a07fef039563a0 /* src/CmRadixSort.cpp */,
- FFFD039564087fef03956408 /* src/CmRadixSortBuffered.cpp */,
- FFFD039564707fef03956470 /* src/CmRenderOutput.cpp */,
- FFFD039564d87fef039564d8 /* src/CmVisualization.cpp */,
- FFFD039565407fef03956540 /* src/CmBitMap.h */,
- FFFD039565a87fef039565a8 /* src/CmBoxPruning.h */,
- FFFD039566107fef03956610 /* src/CmCollection.h */,
- FFFD039566787fef03956678 /* src/CmConeLimitHelper.h */,
- FFFD039566e07fef039566e0 /* src/CmFlushPool.h */,
- FFFD039567487fef03956748 /* src/CmIDPool.h */,
- FFFD039567b07fef039567b0 /* src/CmIO.h */,
- FFFD039568187fef03956818 /* src/CmMatrix34.h */,
- FFFD039568807fef03956880 /* src/CmPhysXCommon.h */,
- FFFD039568e87fef039568e8 /* src/CmPool.h */,
- FFFD039569507fef03956950 /* src/CmPreallocatingPool.h */,
- FFFD039569b87fef039569b8 /* src/CmPriorityQueue.h */,
- FFFD03956a207fef03956a20 /* src/CmPtrTable.h */,
- FFFD03956a887fef03956a88 /* src/CmQueue.h */,
- FFFD03956af07fef03956af0 /* src/CmRadixSort.h */,
- FFFD03956b587fef03956b58 /* src/CmRadixSortBuffered.h */,
- FFFD03956bc07fef03956bc0 /* src/CmRefCountable.h */,
- FFFD03956c287fef03956c28 /* src/CmRenderBuffer.h */,
- FFFD03956c907fef03956c90 /* src/CmRenderOutput.h */,
- FFFD03956cf87fef03956cf8 /* src/CmScaling.h */,
- FFFD03956d607fef03956d60 /* src/CmSpatialVector.h */,
- FFFD03956dc87fef03956dc8 /* src/CmTask.h */,
- FFFD03956e307fef03956e30 /* src/CmTaskPool.h */,
- FFFD03956e987fef03956e98 /* src/CmTmpMem.h */,
- FFFD03956f007fef03956f00 /* src/CmTransformUtils.h */,
- FFFD03956f687fef03956f68 /* src/CmUtils.h */,
- FFFD03956fd07fef03956fd0 /* src/CmVisualization.h */,
+ FFFDf21a3c007fb0f21a3c00 /* src/CmBoxPruning.cpp */,
+ FFFDf21a3c687fb0f21a3c68 /* src/CmCollection.cpp */,
+ FFFDf21a3cd07fb0f21a3cd0 /* src/CmMathUtils.cpp */,
+ FFFDf21a3d387fb0f21a3d38 /* src/CmPtrTable.cpp */,
+ FFFDf21a3da07fb0f21a3da0 /* src/CmRadixSort.cpp */,
+ FFFDf21a3e087fb0f21a3e08 /* src/CmRadixSortBuffered.cpp */,
+ FFFDf21a3e707fb0f21a3e70 /* src/CmRenderOutput.cpp */,
+ FFFDf21a3ed87fb0f21a3ed8 /* src/CmVisualization.cpp */,
+ FFFDf21a3f407fb0f21a3f40 /* src/CmBitMap.h */,
+ FFFDf21a3fa87fb0f21a3fa8 /* src/CmBoxPruning.h */,
+ FFFDf21a40107fb0f21a4010 /* src/CmCollection.h */,
+ FFFDf21a40787fb0f21a4078 /* src/CmConeLimitHelper.h */,
+ FFFDf21a40e07fb0f21a40e0 /* src/CmFlushPool.h */,
+ FFFDf21a41487fb0f21a4148 /* src/CmIDPool.h */,
+ FFFDf21a41b07fb0f21a41b0 /* src/CmIO.h */,
+ FFFDf21a42187fb0f21a4218 /* src/CmMatrix34.h */,
+ FFFDf21a42807fb0f21a4280 /* src/CmPhysXCommon.h */,
+ FFFDf21a42e87fb0f21a42e8 /* src/CmPool.h */,
+ FFFDf21a43507fb0f21a4350 /* src/CmPreallocatingPool.h */,
+ FFFDf21a43b87fb0f21a43b8 /* src/CmPriorityQueue.h */,
+ FFFDf21a44207fb0f21a4420 /* src/CmPtrTable.h */,
+ FFFDf21a44887fb0f21a4488 /* src/CmQueue.h */,
+ FFFDf21a44f07fb0f21a44f0 /* src/CmRadixSort.h */,
+ FFFDf21a45587fb0f21a4558 /* src/CmRadixSortBuffered.h */,
+ FFFDf21a45c07fb0f21a45c0 /* src/CmRefCountable.h */,
+ FFFDf21a46287fb0f21a4628 /* src/CmRenderBuffer.h */,
+ FFFDf21a46907fb0f21a4690 /* src/CmRenderOutput.h */,
+ FFFDf21a46f87fb0f21a46f8 /* src/CmScaling.h */,
+ FFFDf21a47607fb0f21a4760 /* src/CmSpatialVector.h */,
+ FFFDf21a47c87fb0f21a47c8 /* src/CmTask.h */,
+ FFFDf21a48307fb0f21a4830 /* src/CmTaskPool.h */,
+ FFFDf21a48987fb0f21a4898 /* src/CmTmpMem.h */,
+ FFFDf21a49007fb0f21a4900 /* src/CmTransformUtils.h */,
+ FFFDf21a49687fb0f21a4968 /* src/CmUtils.h */,
+ FFFDf21a49d07fb0f21a49d0 /* src/CmVisualization.h */,
);
name = "common";
sourceTree = SOURCE_ROOT;
};
- FFFB031484707fef03148470 /* geomutils */ = {
+ FFFBf29a13307fb0f29a1330 /* geomutils */ = {
isa = PBXGroup;
children = (
- FFFD02854c007fef02854c00 /* headers/GuAxes.h */,
- FFFD02854c687fef02854c68 /* headers/GuBox.h */,
- FFFD02854cd07fef02854cd0 /* headers/GuDistanceSegmentBox.h */,
- FFFD02854d387fef02854d38 /* headers/GuDistanceSegmentSegment.h */,
- FFFD02854da07fef02854da0 /* headers/GuIntersectionBoxBox.h */,
- FFFD02854e087fef02854e08 /* headers/GuIntersectionTriangleBox.h */,
- FFFD02854e707fef02854e70 /* headers/GuRaycastTests.h */,
- FFFD02854ed87fef02854ed8 /* headers/GuSIMDHelpers.h */,
- FFFD02854f407fef02854f40 /* headers/GuSegment.h */,
- FFFD02854fa87fef02854fa8 /* ../../Include/GeomUtils */,
- FFFD028550107fef02855010 /* src/GuBounds.h */,
- FFFD028550787fef02855078 /* src/GuCapsule.h */,
- FFFD028550e07fef028550e0 /* src/GuCenterExtents.h */,
- FFFD028551487fef02855148 /* src/GuGeometryUnion.h */,
- FFFD028551b07fef028551b0 /* src/GuInternal.h */,
- FFFD028552187fef02855218 /* src/GuMTD.h */,
- FFFD028552807fef02855280 /* src/GuMeshFactory.h */,
- FFFD028552e87fef028552e8 /* src/GuOverlapTests.h */,
- FFFD028553507fef02855350 /* src/GuSerialize.h */,
- FFFD028553b87fef028553b8 /* src/GuSphere.h */,
- FFFD028554207fef02855420 /* src/GuSweepMTD.h */,
- FFFD028554887fef02855488 /* src/GuSweepSharedTests.h */,
- FFFD028554f07fef028554f0 /* src/GuSweepTests.h */,
- FFFD028555587fef02855558 /* src/contact/GuContactMethodImpl.h */,
- FFFD028555c07fef028555c0 /* src/contact/GuContactPolygonPolygon.h */,
- FFFD028556287fef02855628 /* src/contact/GuFeatureCode.h */,
- FFFD028556907fef02855690 /* src/contact/GuLegacyTraceLineCallback.h */,
- FFFD028556f87fef028556f8 /* src/common/GuBarycentricCoordinates.h */,
- FFFD028557607fef02855760 /* src/common/GuBoxConversion.h */,
- FFFD028557c87fef028557c8 /* src/common/GuEdgeCache.h */,
- FFFD028558307fef02855830 /* src/common/GuEdgeListData.h */,
- FFFD028558987fef02855898 /* src/common/GuSeparatingAxes.h */,
- FFFD028559007fef02855900 /* src/convex/GuBigConvexData.h */,
- FFFD028559687fef02855968 /* src/convex/GuBigConvexData2.h */,
- FFFD028559d07fef028559d0 /* src/convex/GuConvexEdgeFlags.h */,
- FFFD02855a387fef02855a38 /* src/convex/GuConvexHelper.h */,
- FFFD02855aa07fef02855aa0 /* src/convex/GuConvexMesh.h */,
- FFFD02855b087fef02855b08 /* src/convex/GuConvexMeshData.h */,
- FFFD02855b707fef02855b70 /* src/convex/GuConvexSupportTable.h */,
- FFFD02855bd87fef02855bd8 /* src/convex/GuConvexUtilsInternal.h */,
- FFFD02855c407fef02855c40 /* src/convex/GuCubeIndex.h */,
- FFFD02855ca87fef02855ca8 /* src/convex/GuHillClimbing.h */,
- FFFD02855d107fef02855d10 /* src/convex/GuShapeConvex.h */,
- FFFD02855d787fef02855d78 /* src/distance/GuDistancePointBox.h */,
- FFFD02855de07fef02855de0 /* src/distance/GuDistancePointSegment.h */,
- FFFD02855e487fef02855e48 /* src/distance/GuDistancePointTriangle.h */,
- FFFD02855eb07fef02855eb0 /* src/distance/GuDistancePointTriangleSIMD.h */,
- FFFD02855f187fef02855f18 /* src/distance/GuDistanceSegmentSegmentSIMD.h */,
- FFFD02855f807fef02855f80 /* src/distance/GuDistanceSegmentTriangle.h */,
- FFFD02855fe87fef02855fe8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */,
- FFFD028560507fef02856050 /* src/sweep/GuSweepBoxBox.h */,
- FFFD028560b87fef028560b8 /* src/sweep/GuSweepBoxSphere.h */,
- FFFD028561207fef02856120 /* src/sweep/GuSweepBoxTriangle_FeatureBased.h */,
- FFFD028561887fef02856188 /* src/sweep/GuSweepBoxTriangle_SAT.h */,
- FFFD028561f07fef028561f0 /* src/sweep/GuSweepCapsuleBox.h */,
- FFFD028562587fef02856258 /* src/sweep/GuSweepCapsuleCapsule.h */,
- FFFD028562c07fef028562c0 /* src/sweep/GuSweepCapsuleTriangle.h */,
- FFFD028563287fef02856328 /* src/sweep/GuSweepSphereCapsule.h */,
- FFFD028563907fef02856390 /* src/sweep/GuSweepSphereSphere.h */,
- FFFD028563f87fef028563f8 /* src/sweep/GuSweepSphereTriangle.h */,
- FFFD028564607fef02856460 /* src/sweep/GuSweepTriangleUtils.h */,
- FFFD028564c87fef028564c8 /* src/gjk/GuEPA.h */,
- FFFD028565307fef02856530 /* src/gjk/GuEPAFacet.h */,
- FFFD028565987fef02856598 /* src/gjk/GuGJK.h */,
- FFFD028566007fef02856600 /* src/gjk/GuGJKPenetration.h */,
- FFFD028566687fef02856668 /* src/gjk/GuGJKRaycast.h */,
- FFFD028566d07fef028566d0 /* src/gjk/GuGJKSimplex.h */,
- FFFD028567387fef02856738 /* src/gjk/GuGJKTest.h */,
- FFFD028567a07fef028567a0 /* src/gjk/GuGJKType.h */,
- FFFD028568087fef02856808 /* src/gjk/GuGJKUtil.h */,
- FFFD028568707fef02856870 /* src/gjk/GuVecBox.h */,
- FFFD028568d87fef028568d8 /* src/gjk/GuVecCapsule.h */,
- FFFD028569407fef02856940 /* src/gjk/GuVecConvex.h */,
- FFFD028569a87fef028569a8 /* src/gjk/GuVecConvexHull.h */,
- FFFD02856a107fef02856a10 /* src/gjk/GuVecConvexHullNoScale.h */,
- FFFD02856a787fef02856a78 /* src/gjk/GuVecPlane.h */,
- FFFD02856ae07fef02856ae0 /* src/gjk/GuVecShrunkBox.h */,
- FFFD02856b487fef02856b48 /* src/gjk/GuVecShrunkConvexHull.h */,
- FFFD02856bb07fef02856bb0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */,
- FFFD02856c187fef02856c18 /* src/gjk/GuVecSphere.h */,
- FFFD02856c807fef02856c80 /* src/gjk/GuVecTriangle.h */,
- FFFD02856ce87fef02856ce8 /* src/intersection/GuIntersectionCapsuleTriangle.h */,
- FFFD02856d507fef02856d50 /* src/intersection/GuIntersectionEdgeEdge.h */,
- FFFD02856db87fef02856db8 /* src/intersection/GuIntersectionRay.h */,
- FFFD02856e207fef02856e20 /* src/intersection/GuIntersectionRayBox.h */,
- FFFD02856e887fef02856e88 /* src/intersection/GuIntersectionRayBoxSIMD.h */,
- FFFD02856ef07fef02856ef0 /* src/intersection/GuIntersectionRayCapsule.h */,
- FFFD02856f587fef02856f58 /* src/intersection/GuIntersectionRayPlane.h */,
- FFFD02856fc07fef02856fc0 /* src/intersection/GuIntersectionRaySphere.h */,
- FFFD028570287fef02857028 /* src/intersection/GuIntersectionRayTriangle.h */,
- FFFD028570907fef02857090 /* src/intersection/GuIntersectionSphereBox.h */,
- FFFD028570f87fef028570f8 /* src/mesh/GuBV32.h */,
- FFFD028571607fef02857160 /* src/mesh/GuBV32Build.h */,
- FFFD028571c87fef028571c8 /* src/mesh/GuBV4.h */,
- FFFD028572307fef02857230 /* src/mesh/GuBV4Build.h */,
- FFFD028572987fef02857298 /* src/mesh/GuBV4Settings.h */,
- FFFD028573007fef02857300 /* src/mesh/GuBV4_AABBAABBSweepTest.h */,
- FFFD028573687fef02857368 /* src/mesh/GuBV4_BoxBoxOverlapTest.h */,
- FFFD028573d07fef028573d0 /* src/mesh/GuBV4_BoxOverlap_Internal.h */,
- FFFD028574387fef02857438 /* src/mesh/GuBV4_BoxSweep_Internal.h */,
- FFFD028574a07fef028574a0 /* src/mesh/GuBV4_BoxSweep_Params.h */,
- FFFD028575087fef02857508 /* src/mesh/GuBV4_CapsuleSweep_Internal.h */,
- FFFD028575707fef02857570 /* src/mesh/GuBV4_Common.h */,
- FFFD028575d87fef028575d8 /* src/mesh/GuBV4_Internal.h */,
- FFFD028576407fef02857640 /* src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h */,
- FFFD028576a87fef028576a8 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h */,
- FFFD028577107fef02857710 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h */,
- FFFD028577787fef02857778 /* src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h */,
- FFFD028577e07fef028577e0 /* src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h */,
- FFFD028578487fef02857848 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h */,
- FFFD028578b07fef028578b0 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h */,
- FFFD028579187fef02857918 /* src/mesh/GuBV4_Slabs.h */,
- FFFD028579807fef02857980 /* src/mesh/GuBV4_Slabs_KajiyaNoOrder.h */,
- FFFD028579e87fef028579e8 /* src/mesh/GuBV4_Slabs_KajiyaOrdered.h */,
- FFFD02857a507fef02857a50 /* src/mesh/GuBV4_Slabs_SwizzledNoOrder.h */,
- FFFD02857ab87fef02857ab8 /* src/mesh/GuBV4_Slabs_SwizzledOrdered.h */,
- FFFD02857b207fef02857b20 /* src/mesh/GuBVConstants.h */,
- FFFD02857b887fef02857b88 /* src/mesh/GuMeshData.h */,
- FFFD02857bf07fef02857bf0 /* src/mesh/GuMidphaseInterface.h */,
- FFFD02857c587fef02857c58 /* src/mesh/GuRTree.h */,
- FFFD02857cc07fef02857cc0 /* src/mesh/GuSweepConvexTri.h */,
- FFFD02857d287fef02857d28 /* src/mesh/GuSweepMesh.h */,
- FFFD02857d907fef02857d90 /* src/mesh/GuTriangle32.h */,
- FFFD02857df87fef02857df8 /* src/mesh/GuTriangleCache.h */,
- FFFD02857e607fef02857e60 /* src/mesh/GuTriangleMesh.h */,
- FFFD02857ec87fef02857ec8 /* src/mesh/GuTriangleMeshBV4.h */,
- FFFD02857f307fef02857f30 /* src/mesh/GuTriangleMeshRTree.h */,
- FFFD02857f987fef02857f98 /* src/mesh/GuTriangleVertexPointers.h */,
- FFFD028580007fef02858000 /* src/hf/GuEntityReport.h */,
- FFFD028580687fef02858068 /* src/hf/GuHeightField.h */,
- FFFD028580d07fef028580d0 /* src/hf/GuHeightFieldData.h */,
- FFFD028581387fef02858138 /* src/hf/GuHeightFieldUtil.h */,
- FFFD028581a07fef028581a0 /* src/pcm/GuPCMContactConvexCommon.h */,
- FFFD028582087fef02858208 /* src/pcm/GuPCMContactGen.h */,
- FFFD028582707fef02858270 /* src/pcm/GuPCMContactGenUtil.h */,
- FFFD028582d87fef028582d8 /* src/pcm/GuPCMContactMeshCallback.h */,
- FFFD028583407fef02858340 /* src/pcm/GuPCMShapeConvex.h */,
- FFFD028583a87fef028583a8 /* src/pcm/GuPCMTriangleContactGen.h */,
- FFFD028584107fef02858410 /* src/pcm/GuPersistentContactManifold.h */,
- FFFD028584787fef02858478 /* src/ccd/GuCCDSweepConvexMesh.h */,
- FFFD028584e07fef028584e0 /* src/GuBounds.cpp */,
- FFFD028585487fef02858548 /* src/GuBox.cpp */,
- FFFD028585b07fef028585b0 /* src/GuCCTSweepTests.cpp */,
- FFFD028586187fef02858618 /* src/GuCapsule.cpp */,
- FFFD028586807fef02858680 /* src/GuGeometryQuery.cpp */,
- FFFD028586e87fef028586e8 /* src/GuGeometryUnion.cpp */,
- FFFD028587507fef02858750 /* src/GuInternal.cpp */,
- FFFD028587b87fef028587b8 /* src/GuMTD.cpp */,
- FFFD028588207fef02858820 /* src/GuMeshFactory.cpp */,
- FFFD028588887fef02858888 /* src/GuMetaData.cpp */,
- FFFD028588f07fef028588f0 /* src/GuOverlapTests.cpp */,
- FFFD028589587fef02858958 /* src/GuRaycastTests.cpp */,
- FFFD028589c07fef028589c0 /* src/GuSerialize.cpp */,
- FFFD02858a287fef02858a28 /* src/GuSweepMTD.cpp */,
- FFFD02858a907fef02858a90 /* src/GuSweepSharedTests.cpp */,
- FFFD02858af87fef02858af8 /* src/GuSweepTests.cpp */,
- FFFD02858b607fef02858b60 /* src/contact/GuContactBoxBox.cpp */,
- FFFD02858bc87fef02858bc8 /* src/contact/GuContactCapsuleBox.cpp */,
- FFFD02858c307fef02858c30 /* src/contact/GuContactCapsuleCapsule.cpp */,
- FFFD02858c987fef02858c98 /* src/contact/GuContactCapsuleConvex.cpp */,
- FFFD02858d007fef02858d00 /* src/contact/GuContactCapsuleMesh.cpp */,
- FFFD02858d687fef02858d68 /* src/contact/GuContactConvexConvex.cpp */,
- FFFD02858dd07fef02858dd0 /* src/contact/GuContactConvexMesh.cpp */,
- FFFD02858e387fef02858e38 /* src/contact/GuContactPlaneBox.cpp */,
- FFFD02858ea07fef02858ea0 /* src/contact/GuContactPlaneCapsule.cpp */,
- FFFD02858f087fef02858f08 /* src/contact/GuContactPlaneConvex.cpp */,
- FFFD02858f707fef02858f70 /* src/contact/GuContactPolygonPolygon.cpp */,
- FFFD02858fd87fef02858fd8 /* src/contact/GuContactSphereBox.cpp */,
- FFFD028590407fef02859040 /* src/contact/GuContactSphereCapsule.cpp */,
- FFFD028590a87fef028590a8 /* src/contact/GuContactSphereMesh.cpp */,
- FFFD028591107fef02859110 /* src/contact/GuContactSpherePlane.cpp */,
- FFFD028591787fef02859178 /* src/contact/GuContactSphereSphere.cpp */,
- FFFD028591e07fef028591e0 /* src/contact/GuFeatureCode.cpp */,
- FFFD028592487fef02859248 /* src/contact/GuLegacyContactBoxHeightField.cpp */,
- FFFD028592b07fef028592b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */,
- FFFD028593187fef02859318 /* src/contact/GuLegacyContactConvexHeightField.cpp */,
- FFFD028593807fef02859380 /* src/contact/GuLegacyContactSphereHeightField.cpp */,
- FFFD028593e87fef028593e8 /* src/common/GuBarycentricCoordinates.cpp */,
- FFFD028594507fef02859450 /* src/common/GuSeparatingAxes.cpp */,
- FFFD028594b87fef028594b8 /* src/convex/GuBigConvexData.cpp */,
- FFFD028595207fef02859520 /* src/convex/GuConvexHelper.cpp */,
- FFFD028595887fef02859588 /* src/convex/GuConvexMesh.cpp */,
- FFFD028595f07fef028595f0 /* src/convex/GuConvexSupportTable.cpp */,
- FFFD028596587fef02859658 /* src/convex/GuConvexUtilsInternal.cpp */,
- FFFD028596c07fef028596c0 /* src/convex/GuHillClimbing.cpp */,
- FFFD028597287fef02859728 /* src/convex/GuShapeConvex.cpp */,
- FFFD028597907fef02859790 /* src/distance/GuDistancePointBox.cpp */,
- FFFD028597f87fef028597f8 /* src/distance/GuDistancePointTriangle.cpp */,
- FFFD028598607fef02859860 /* src/distance/GuDistanceSegmentBox.cpp */,
- FFFD028598c87fef028598c8 /* src/distance/GuDistanceSegmentSegment.cpp */,
- FFFD028599307fef02859930 /* src/distance/GuDistanceSegmentTriangle.cpp */,
- FFFD028599987fef02859998 /* src/sweep/GuSweepBoxBox.cpp */,
- FFFD02859a007fef02859a00 /* src/sweep/GuSweepBoxSphere.cpp */,
- FFFD02859a687fef02859a68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */,
- FFFD02859ad07fef02859ad0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */,
- FFFD02859b387fef02859b38 /* src/sweep/GuSweepCapsuleBox.cpp */,
- FFFD02859ba07fef02859ba0 /* src/sweep/GuSweepCapsuleCapsule.cpp */,
- FFFD02859c087fef02859c08 /* src/sweep/GuSweepCapsuleTriangle.cpp */,
- FFFD02859c707fef02859c70 /* src/sweep/GuSweepSphereCapsule.cpp */,
- FFFD02859cd87fef02859cd8 /* src/sweep/GuSweepSphereSphere.cpp */,
- FFFD02859d407fef02859d40 /* src/sweep/GuSweepSphereTriangle.cpp */,
- FFFD02859da87fef02859da8 /* src/sweep/GuSweepTriangleUtils.cpp */,
- FFFD02859e107fef02859e10 /* src/gjk/GuEPA.cpp */,
- FFFD02859e787fef02859e78 /* src/gjk/GuGJKSimplex.cpp */,
- FFFD02859ee07fef02859ee0 /* src/gjk/GuGJKTest.cpp */,
- FFFD02859f487fef02859f48 /* src/intersection/GuIntersectionBoxBox.cpp */,
- FFFD02859fb07fef02859fb0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */,
- FFFD0285a0187fef0285a018 /* src/intersection/GuIntersectionEdgeEdge.cpp */,
- FFFD0285a0807fef0285a080 /* src/intersection/GuIntersectionRayBox.cpp */,
- FFFD0285a0e87fef0285a0e8 /* src/intersection/GuIntersectionRayCapsule.cpp */,
- FFFD0285a1507fef0285a150 /* src/intersection/GuIntersectionRaySphere.cpp */,
- FFFD0285a1b87fef0285a1b8 /* src/intersection/GuIntersectionSphereBox.cpp */,
- FFFD0285a2207fef0285a220 /* src/intersection/GuIntersectionTriangleBox.cpp */,
- FFFD0285a2887fef0285a288 /* src/mesh/GuBV32.cpp */,
- FFFD0285a2f07fef0285a2f0 /* src/mesh/GuBV32Build.cpp */,
- FFFD0285a3587fef0285a358 /* src/mesh/GuBV4.cpp */,
- FFFD0285a3c07fef0285a3c0 /* src/mesh/GuBV4Build.cpp */,
- FFFD0285a4287fef0285a428 /* src/mesh/GuBV4_AABBSweep.cpp */,
- FFFD0285a4907fef0285a490 /* src/mesh/GuBV4_BoxOverlap.cpp */,
- FFFD0285a4f87fef0285a4f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */,
- FFFD0285a5607fef0285a560 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */,
- FFFD0285a5c87fef0285a5c8 /* src/mesh/GuBV4_OBBSweep.cpp */,
- FFFD0285a6307fef0285a630 /* src/mesh/GuBV4_Raycast.cpp */,
- FFFD0285a6987fef0285a698 /* src/mesh/GuBV4_SphereOverlap.cpp */,
- FFFD0285a7007fef0285a700 /* src/mesh/GuBV4_SphereSweep.cpp */,
- FFFD0285a7687fef0285a768 /* src/mesh/GuMeshQuery.cpp */,
- FFFD0285a7d07fef0285a7d0 /* src/mesh/GuMidphaseBV4.cpp */,
- FFFD0285a8387fef0285a838 /* src/mesh/GuMidphaseRTree.cpp */,
- FFFD0285a8a07fef0285a8a0 /* src/mesh/GuOverlapTestsMesh.cpp */,
- FFFD0285a9087fef0285a908 /* src/mesh/GuRTree.cpp */,
- FFFD0285a9707fef0285a970 /* src/mesh/GuRTreeQueries.cpp */,
- FFFD0285a9d87fef0285a9d8 /* src/mesh/GuSweepsMesh.cpp */,
- FFFD0285aa407fef0285aa40 /* src/mesh/GuTriangleMesh.cpp */,
- FFFD0285aaa87fef0285aaa8 /* src/mesh/GuTriangleMeshBV4.cpp */,
- FFFD0285ab107fef0285ab10 /* src/mesh/GuTriangleMeshRTree.cpp */,
- FFFD0285ab787fef0285ab78 /* src/hf/GuHeightField.cpp */,
- FFFD0285abe07fef0285abe0 /* src/hf/GuHeightFieldUtil.cpp */,
- FFFD0285ac487fef0285ac48 /* src/hf/GuOverlapTestsHF.cpp */,
- FFFD0285acb07fef0285acb0 /* src/hf/GuSweepsHF.cpp */,
- FFFD0285ad187fef0285ad18 /* src/pcm/GuPCMContactBoxBox.cpp */,
- FFFD0285ad807fef0285ad80 /* src/pcm/GuPCMContactBoxConvex.cpp */,
- FFFD0285ade87fef0285ade8 /* src/pcm/GuPCMContactCapsuleBox.cpp */,
- FFFD0285ae507fef0285ae50 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */,
- FFFD0285aeb87fef0285aeb8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */,
- FFFD0285af207fef0285af20 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */,
- FFFD0285af887fef0285af88 /* src/pcm/GuPCMContactCapsuleMesh.cpp */,
- FFFD0285aff07fef0285aff0 /* src/pcm/GuPCMContactConvexCommon.cpp */,
- FFFD0285b0587fef0285b058 /* src/pcm/GuPCMContactConvexConvex.cpp */,
- FFFD0285b0c07fef0285b0c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */,
- FFFD0285b1287fef0285b128 /* src/pcm/GuPCMContactConvexMesh.cpp */,
- FFFD0285b1907fef0285b190 /* src/pcm/GuPCMContactGenBoxConvex.cpp */,
- FFFD0285b1f87fef0285b1f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */,
- FFFD0285b2607fef0285b260 /* src/pcm/GuPCMContactPlaneBox.cpp */,
- FFFD0285b2c87fef0285b2c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */,
- FFFD0285b3307fef0285b330 /* src/pcm/GuPCMContactPlaneConvex.cpp */,
- FFFD0285b3987fef0285b398 /* src/pcm/GuPCMContactSphereBox.cpp */,
- FFFD0285b4007fef0285b400 /* src/pcm/GuPCMContactSphereCapsule.cpp */,
- FFFD0285b4687fef0285b468 /* src/pcm/GuPCMContactSphereConvex.cpp */,
- FFFD0285b4d07fef0285b4d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */,
- FFFD0285b5387fef0285b538 /* src/pcm/GuPCMContactSphereMesh.cpp */,
- FFFD0285b5a07fef0285b5a0 /* src/pcm/GuPCMContactSpherePlane.cpp */,
- FFFD0285b6087fef0285b608 /* src/pcm/GuPCMContactSphereSphere.cpp */,
- FFFD0285b6707fef0285b670 /* src/pcm/GuPCMShapeConvex.cpp */,
- FFFD0285b6d87fef0285b6d8 /* src/pcm/GuPCMTriangleContactGen.cpp */,
- FFFD0285b7407fef0285b740 /* src/pcm/GuPersistentContactManifold.cpp */,
- FFFD0285b7a87fef0285b7a8 /* src/ccd/GuCCDSweepConvexMesh.cpp */,
- FFFD0285b8107fef0285b810 /* src/ccd/GuCCDSweepPrimitives.cpp */,
+ FFFDf30010007fb0f3001000 /* headers/GuAxes.h */,
+ FFFDf30010687fb0f3001068 /* headers/GuBox.h */,
+ FFFDf30010d07fb0f30010d0 /* headers/GuDistanceSegmentBox.h */,
+ FFFDf30011387fb0f3001138 /* headers/GuDistanceSegmentSegment.h */,
+ FFFDf30011a07fb0f30011a0 /* headers/GuIntersectionBoxBox.h */,
+ FFFDf30012087fb0f3001208 /* headers/GuIntersectionTriangleBox.h */,
+ FFFDf30012707fb0f3001270 /* headers/GuRaycastTests.h */,
+ FFFDf30012d87fb0f30012d8 /* headers/GuSIMDHelpers.h */,
+ FFFDf30013407fb0f3001340 /* headers/GuSegment.h */,
+ FFFDf30013a87fb0f30013a8 /* ../../Include/GeomUtils */,
+ FFFDf30014107fb0f3001410 /* src/GuBounds.h */,
+ FFFDf30014787fb0f3001478 /* src/GuCapsule.h */,
+ FFFDf30014e07fb0f30014e0 /* src/GuCenterExtents.h */,
+ FFFDf30015487fb0f3001548 /* src/GuGeometryUnion.h */,
+ FFFDf30015b07fb0f30015b0 /* src/GuInternal.h */,
+ FFFDf30016187fb0f3001618 /* src/GuMTD.h */,
+ FFFDf30016807fb0f3001680 /* src/GuMeshFactory.h */,
+ FFFDf30016e87fb0f30016e8 /* src/GuOverlapTests.h */,
+ FFFDf30017507fb0f3001750 /* src/GuSerialize.h */,
+ FFFDf30017b87fb0f30017b8 /* src/GuSphere.h */,
+ FFFDf30018207fb0f3001820 /* src/GuSweepMTD.h */,
+ FFFDf30018887fb0f3001888 /* src/GuSweepSharedTests.h */,
+ FFFDf30018f07fb0f30018f0 /* src/GuSweepTests.h */,
+ FFFDf30019587fb0f3001958 /* src/contact/GuContactMethodImpl.h */,
+ FFFDf30019c07fb0f30019c0 /* src/contact/GuContactPolygonPolygon.h */,
+ FFFDf3001a287fb0f3001a28 /* src/contact/GuFeatureCode.h */,
+ FFFDf3001a907fb0f3001a90 /* src/contact/GuLegacyTraceLineCallback.h */,
+ FFFDf3001af87fb0f3001af8 /* src/common/GuBarycentricCoordinates.h */,
+ FFFDf3001b607fb0f3001b60 /* src/common/GuBoxConversion.h */,
+ FFFDf3001bc87fb0f3001bc8 /* src/common/GuEdgeCache.h */,
+ FFFDf3001c307fb0f3001c30 /* src/common/GuEdgeListData.h */,
+ FFFDf3001c987fb0f3001c98 /* src/common/GuSeparatingAxes.h */,
+ FFFDf3001d007fb0f3001d00 /* src/convex/GuBigConvexData.h */,
+ FFFDf3001d687fb0f3001d68 /* src/convex/GuBigConvexData2.h */,
+ FFFDf3001dd07fb0f3001dd0 /* src/convex/GuConvexEdgeFlags.h */,
+ FFFDf3001e387fb0f3001e38 /* src/convex/GuConvexHelper.h */,
+ FFFDf3001ea07fb0f3001ea0 /* src/convex/GuConvexMesh.h */,
+ FFFDf3001f087fb0f3001f08 /* src/convex/GuConvexMeshData.h */,
+ FFFDf3001f707fb0f3001f70 /* src/convex/GuConvexSupportTable.h */,
+ FFFDf3001fd87fb0f3001fd8 /* src/convex/GuConvexUtilsInternal.h */,
+ FFFDf30020407fb0f3002040 /* src/convex/GuCubeIndex.h */,
+ FFFDf30020a87fb0f30020a8 /* src/convex/GuHillClimbing.h */,
+ FFFDf30021107fb0f3002110 /* src/convex/GuShapeConvex.h */,
+ FFFDf30021787fb0f3002178 /* src/distance/GuDistancePointBox.h */,
+ FFFDf30021e07fb0f30021e0 /* src/distance/GuDistancePointSegment.h */,
+ FFFDf30022487fb0f3002248 /* src/distance/GuDistancePointTriangle.h */,
+ FFFDf30022b07fb0f30022b0 /* src/distance/GuDistancePointTriangleSIMD.h */,
+ FFFDf30023187fb0f3002318 /* src/distance/GuDistanceSegmentSegmentSIMD.h */,
+ FFFDf30023807fb0f3002380 /* src/distance/GuDistanceSegmentTriangle.h */,
+ FFFDf30023e87fb0f30023e8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */,
+ FFFDf30024507fb0f3002450 /* src/sweep/GuSweepBoxBox.h */,
+ FFFDf30024b87fb0f30024b8 /* src/sweep/GuSweepBoxSphere.h */,
+ FFFDf30025207fb0f3002520 /* src/sweep/GuSweepBoxTriangle_FeatureBased.h */,
+ FFFDf30025887fb0f3002588 /* src/sweep/GuSweepBoxTriangle_SAT.h */,
+ FFFDf30025f07fb0f30025f0 /* src/sweep/GuSweepCapsuleBox.h */,
+ FFFDf30026587fb0f3002658 /* src/sweep/GuSweepCapsuleCapsule.h */,
+ FFFDf30026c07fb0f30026c0 /* src/sweep/GuSweepCapsuleTriangle.h */,
+ FFFDf30027287fb0f3002728 /* src/sweep/GuSweepSphereCapsule.h */,
+ FFFDf30027907fb0f3002790 /* src/sweep/GuSweepSphereSphere.h */,
+ FFFDf30027f87fb0f30027f8 /* src/sweep/GuSweepSphereTriangle.h */,
+ FFFDf30028607fb0f3002860 /* src/sweep/GuSweepTriangleUtils.h */,
+ FFFDf30028c87fb0f30028c8 /* src/gjk/GuEPA.h */,
+ FFFDf30029307fb0f3002930 /* src/gjk/GuEPAFacet.h */,
+ FFFDf30029987fb0f3002998 /* src/gjk/GuGJK.h */,
+ FFFDf3002a007fb0f3002a00 /* src/gjk/GuGJKPenetration.h */,
+ FFFDf3002a687fb0f3002a68 /* src/gjk/GuGJKRaycast.h */,
+ FFFDf3002ad07fb0f3002ad0 /* src/gjk/GuGJKSimplex.h */,
+ FFFDf3002b387fb0f3002b38 /* src/gjk/GuGJKTest.h */,
+ FFFDf3002ba07fb0f3002ba0 /* src/gjk/GuGJKType.h */,
+ FFFDf3002c087fb0f3002c08 /* src/gjk/GuGJKUtil.h */,
+ FFFDf3002c707fb0f3002c70 /* src/gjk/GuVecBox.h */,
+ FFFDf3002cd87fb0f3002cd8 /* src/gjk/GuVecCapsule.h */,
+ FFFDf3002d407fb0f3002d40 /* src/gjk/GuVecConvex.h */,
+ FFFDf3002da87fb0f3002da8 /* src/gjk/GuVecConvexHull.h */,
+ FFFDf3002e107fb0f3002e10 /* src/gjk/GuVecConvexHullNoScale.h */,
+ FFFDf3002e787fb0f3002e78 /* src/gjk/GuVecPlane.h */,
+ FFFDf3002ee07fb0f3002ee0 /* src/gjk/GuVecShrunkBox.h */,
+ FFFDf3002f487fb0f3002f48 /* src/gjk/GuVecShrunkConvexHull.h */,
+ FFFDf3002fb07fb0f3002fb0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */,
+ FFFDf30030187fb0f3003018 /* src/gjk/GuVecSphere.h */,
+ FFFDf30030807fb0f3003080 /* src/gjk/GuVecTriangle.h */,
+ FFFDf30030e87fb0f30030e8 /* src/intersection/GuIntersectionCapsuleTriangle.h */,
+ FFFDf30031507fb0f3003150 /* src/intersection/GuIntersectionEdgeEdge.h */,
+ FFFDf30031b87fb0f30031b8 /* src/intersection/GuIntersectionRay.h */,
+ FFFDf30032207fb0f3003220 /* src/intersection/GuIntersectionRayBox.h */,
+ FFFDf30032887fb0f3003288 /* src/intersection/GuIntersectionRayBoxSIMD.h */,
+ FFFDf30032f07fb0f30032f0 /* src/intersection/GuIntersectionRayCapsule.h */,
+ FFFDf30033587fb0f3003358 /* src/intersection/GuIntersectionRayPlane.h */,
+ FFFDf30033c07fb0f30033c0 /* src/intersection/GuIntersectionRaySphere.h */,
+ FFFDf30034287fb0f3003428 /* src/intersection/GuIntersectionRayTriangle.h */,
+ FFFDf30034907fb0f3003490 /* src/intersection/GuIntersectionSphereBox.h */,
+ FFFDf30034f87fb0f30034f8 /* src/mesh/GuBV32.h */,
+ FFFDf30035607fb0f3003560 /* src/mesh/GuBV32Build.h */,
+ FFFDf30035c87fb0f30035c8 /* src/mesh/GuBV4.h */,
+ FFFDf30036307fb0f3003630 /* src/mesh/GuBV4Build.h */,
+ FFFDf30036987fb0f3003698 /* src/mesh/GuBV4Settings.h */,
+ FFFDf30037007fb0f3003700 /* src/mesh/GuBV4_AABBAABBSweepTest.h */,
+ FFFDf30037687fb0f3003768 /* src/mesh/GuBV4_BoxBoxOverlapTest.h */,
+ FFFDf30037d07fb0f30037d0 /* src/mesh/GuBV4_BoxOverlap_Internal.h */,
+ FFFDf30038387fb0f3003838 /* src/mesh/GuBV4_BoxSweep_Internal.h */,
+ FFFDf30038a07fb0f30038a0 /* src/mesh/GuBV4_BoxSweep_Params.h */,
+ FFFDf30039087fb0f3003908 /* src/mesh/GuBV4_CapsuleSweep_Internal.h */,
+ FFFDf30039707fb0f3003970 /* src/mesh/GuBV4_Common.h */,
+ FFFDf30039d87fb0f30039d8 /* src/mesh/GuBV4_Internal.h */,
+ FFFDf3003a407fb0f3003a40 /* src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h */,
+ FFFDf3003aa87fb0f3003aa8 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h */,
+ FFFDf3003b107fb0f3003b10 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h */,
+ FFFDf3003b787fb0f3003b78 /* src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h */,
+ FFFDf3003be07fb0f3003be0 /* src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h */,
+ FFFDf3003c487fb0f3003c48 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h */,
+ FFFDf3003cb07fb0f3003cb0 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h */,
+ FFFDf3003d187fb0f3003d18 /* src/mesh/GuBV4_Slabs.h */,
+ FFFDf3003d807fb0f3003d80 /* src/mesh/GuBV4_Slabs_KajiyaNoOrder.h */,
+ FFFDf3003de87fb0f3003de8 /* src/mesh/GuBV4_Slabs_KajiyaOrdered.h */,
+ FFFDf3003e507fb0f3003e50 /* src/mesh/GuBV4_Slabs_SwizzledNoOrder.h */,
+ FFFDf3003eb87fb0f3003eb8 /* src/mesh/GuBV4_Slabs_SwizzledOrdered.h */,
+ FFFDf3003f207fb0f3003f20 /* src/mesh/GuBVConstants.h */,
+ FFFDf3003f887fb0f3003f88 /* src/mesh/GuMeshData.h */,
+ FFFDf3003ff07fb0f3003ff0 /* src/mesh/GuMidphaseInterface.h */,
+ FFFDf30040587fb0f3004058 /* src/mesh/GuRTree.h */,
+ FFFDf30040c07fb0f30040c0 /* src/mesh/GuSweepConvexTri.h */,
+ FFFDf30041287fb0f3004128 /* src/mesh/GuSweepMesh.h */,
+ FFFDf30041907fb0f3004190 /* src/mesh/GuTriangle32.h */,
+ FFFDf30041f87fb0f30041f8 /* src/mesh/GuTriangleCache.h */,
+ FFFDf30042607fb0f3004260 /* src/mesh/GuTriangleMesh.h */,
+ FFFDf30042c87fb0f30042c8 /* src/mesh/GuTriangleMeshBV4.h */,
+ FFFDf30043307fb0f3004330 /* src/mesh/GuTriangleMeshRTree.h */,
+ FFFDf30043987fb0f3004398 /* src/mesh/GuTriangleVertexPointers.h */,
+ FFFDf30044007fb0f3004400 /* src/hf/GuEntityReport.h */,
+ FFFDf30044687fb0f3004468 /* src/hf/GuHeightField.h */,
+ FFFDf30044d07fb0f30044d0 /* src/hf/GuHeightFieldData.h */,
+ FFFDf30045387fb0f3004538 /* src/hf/GuHeightFieldUtil.h */,
+ FFFDf30045a07fb0f30045a0 /* src/pcm/GuPCMContactConvexCommon.h */,
+ FFFDf30046087fb0f3004608 /* src/pcm/GuPCMContactGen.h */,
+ FFFDf30046707fb0f3004670 /* src/pcm/GuPCMContactGenUtil.h */,
+ FFFDf30046d87fb0f30046d8 /* src/pcm/GuPCMContactMeshCallback.h */,
+ FFFDf30047407fb0f3004740 /* src/pcm/GuPCMShapeConvex.h */,
+ FFFDf30047a87fb0f30047a8 /* src/pcm/GuPCMTriangleContactGen.h */,
+ FFFDf30048107fb0f3004810 /* src/pcm/GuPersistentContactManifold.h */,
+ FFFDf30048787fb0f3004878 /* src/ccd/GuCCDSweepConvexMesh.h */,
+ FFFDf30048e07fb0f30048e0 /* src/GuBounds.cpp */,
+ FFFDf30049487fb0f3004948 /* src/GuBox.cpp */,
+ FFFDf30049b07fb0f30049b0 /* src/GuCCTSweepTests.cpp */,
+ FFFDf3004a187fb0f3004a18 /* src/GuCapsule.cpp */,
+ FFFDf3004a807fb0f3004a80 /* src/GuGeometryQuery.cpp */,
+ FFFDf3004ae87fb0f3004ae8 /* src/GuGeometryUnion.cpp */,
+ FFFDf3004b507fb0f3004b50 /* src/GuInternal.cpp */,
+ FFFDf3004bb87fb0f3004bb8 /* src/GuMTD.cpp */,
+ FFFDf3004c207fb0f3004c20 /* src/GuMeshFactory.cpp */,
+ FFFDf3004c887fb0f3004c88 /* src/GuMetaData.cpp */,
+ FFFDf3004cf07fb0f3004cf0 /* src/GuOverlapTests.cpp */,
+ FFFDf3004d587fb0f3004d58 /* src/GuRaycastTests.cpp */,
+ FFFDf3004dc07fb0f3004dc0 /* src/GuSerialize.cpp */,
+ FFFDf3004e287fb0f3004e28 /* src/GuSweepMTD.cpp */,
+ FFFDf3004e907fb0f3004e90 /* src/GuSweepSharedTests.cpp */,
+ FFFDf3004ef87fb0f3004ef8 /* src/GuSweepTests.cpp */,
+ FFFDf3004f607fb0f3004f60 /* src/contact/GuContactBoxBox.cpp */,
+ FFFDf3004fc87fb0f3004fc8 /* src/contact/GuContactCapsuleBox.cpp */,
+ FFFDf30050307fb0f3005030 /* src/contact/GuContactCapsuleCapsule.cpp */,
+ FFFDf30050987fb0f3005098 /* src/contact/GuContactCapsuleConvex.cpp */,
+ FFFDf30051007fb0f3005100 /* src/contact/GuContactCapsuleMesh.cpp */,
+ FFFDf30051687fb0f3005168 /* src/contact/GuContactConvexConvex.cpp */,
+ FFFDf30051d07fb0f30051d0 /* src/contact/GuContactConvexMesh.cpp */,
+ FFFDf30052387fb0f3005238 /* src/contact/GuContactPlaneBox.cpp */,
+ FFFDf30052a07fb0f30052a0 /* src/contact/GuContactPlaneCapsule.cpp */,
+ FFFDf30053087fb0f3005308 /* src/contact/GuContactPlaneConvex.cpp */,
+ FFFDf30053707fb0f3005370 /* src/contact/GuContactPolygonPolygon.cpp */,
+ FFFDf30053d87fb0f30053d8 /* src/contact/GuContactSphereBox.cpp */,
+ FFFDf30054407fb0f3005440 /* src/contact/GuContactSphereCapsule.cpp */,
+ FFFDf30054a87fb0f30054a8 /* src/contact/GuContactSphereMesh.cpp */,
+ FFFDf30055107fb0f3005510 /* src/contact/GuContactSpherePlane.cpp */,
+ FFFDf30055787fb0f3005578 /* src/contact/GuContactSphereSphere.cpp */,
+ FFFDf30055e07fb0f30055e0 /* src/contact/GuFeatureCode.cpp */,
+ FFFDf30056487fb0f3005648 /* src/contact/GuLegacyContactBoxHeightField.cpp */,
+ FFFDf30056b07fb0f30056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */,
+ FFFDf30057187fb0f3005718 /* src/contact/GuLegacyContactConvexHeightField.cpp */,
+ FFFDf30057807fb0f3005780 /* src/contact/GuLegacyContactSphereHeightField.cpp */,
+ FFFDf30057e87fb0f30057e8 /* src/common/GuBarycentricCoordinates.cpp */,
+ FFFDf30058507fb0f3005850 /* src/common/GuSeparatingAxes.cpp */,
+ FFFDf30058b87fb0f30058b8 /* src/convex/GuBigConvexData.cpp */,
+ FFFDf30059207fb0f3005920 /* src/convex/GuConvexHelper.cpp */,
+ FFFDf30059887fb0f3005988 /* src/convex/GuConvexMesh.cpp */,
+ FFFDf30059f07fb0f30059f0 /* src/convex/GuConvexSupportTable.cpp */,
+ FFFDf3005a587fb0f3005a58 /* src/convex/GuConvexUtilsInternal.cpp */,
+ FFFDf3005ac07fb0f3005ac0 /* src/convex/GuHillClimbing.cpp */,
+ FFFDf3005b287fb0f3005b28 /* src/convex/GuShapeConvex.cpp */,
+ FFFDf3005b907fb0f3005b90 /* src/distance/GuDistancePointBox.cpp */,
+ FFFDf3005bf87fb0f3005bf8 /* src/distance/GuDistancePointTriangle.cpp */,
+ FFFDf3005c607fb0f3005c60 /* src/distance/GuDistanceSegmentBox.cpp */,
+ FFFDf3005cc87fb0f3005cc8 /* src/distance/GuDistanceSegmentSegment.cpp */,
+ FFFDf3005d307fb0f3005d30 /* src/distance/GuDistanceSegmentTriangle.cpp */,
+ FFFDf3005d987fb0f3005d98 /* src/sweep/GuSweepBoxBox.cpp */,
+ FFFDf3005e007fb0f3005e00 /* src/sweep/GuSweepBoxSphere.cpp */,
+ FFFDf3005e687fb0f3005e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */,
+ FFFDf3005ed07fb0f3005ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */,
+ FFFDf3005f387fb0f3005f38 /* src/sweep/GuSweepCapsuleBox.cpp */,
+ FFFDf3005fa07fb0f3005fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */,
+ FFFDf30060087fb0f3006008 /* src/sweep/GuSweepCapsuleTriangle.cpp */,
+ FFFDf30060707fb0f3006070 /* src/sweep/GuSweepSphereCapsule.cpp */,
+ FFFDf30060d87fb0f30060d8 /* src/sweep/GuSweepSphereSphere.cpp */,
+ FFFDf30061407fb0f3006140 /* src/sweep/GuSweepSphereTriangle.cpp */,
+ FFFDf30061a87fb0f30061a8 /* src/sweep/GuSweepTriangleUtils.cpp */,
+ FFFDf30062107fb0f3006210 /* src/gjk/GuEPA.cpp */,
+ FFFDf30062787fb0f3006278 /* src/gjk/GuGJKSimplex.cpp */,
+ FFFDf30062e07fb0f30062e0 /* src/gjk/GuGJKTest.cpp */,
+ FFFDf30063487fb0f3006348 /* src/intersection/GuIntersectionBoxBox.cpp */,
+ FFFDf30063b07fb0f30063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */,
+ FFFDf30064187fb0f3006418 /* src/intersection/GuIntersectionEdgeEdge.cpp */,
+ FFFDf30064807fb0f3006480 /* src/intersection/GuIntersectionRayBox.cpp */,
+ FFFDf30064e87fb0f30064e8 /* src/intersection/GuIntersectionRayCapsule.cpp */,
+ FFFDf30065507fb0f3006550 /* src/intersection/GuIntersectionRaySphere.cpp */,
+ FFFDf30065b87fb0f30065b8 /* src/intersection/GuIntersectionSphereBox.cpp */,
+ FFFDf30066207fb0f3006620 /* src/intersection/GuIntersectionTriangleBox.cpp */,
+ FFFDf30066887fb0f3006688 /* src/mesh/GuBV32.cpp */,
+ FFFDf30066f07fb0f30066f0 /* src/mesh/GuBV32Build.cpp */,
+ FFFDf30067587fb0f3006758 /* src/mesh/GuBV4.cpp */,
+ FFFDf30067c07fb0f30067c0 /* src/mesh/GuBV4Build.cpp */,
+ FFFDf30068287fb0f3006828 /* src/mesh/GuBV4_AABBSweep.cpp */,
+ FFFDf30068907fb0f3006890 /* src/mesh/GuBV4_BoxOverlap.cpp */,
+ FFFDf30068f87fb0f30068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */,
+ FFFDf30069607fb0f3006960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */,
+ FFFDf30069c87fb0f30069c8 /* src/mesh/GuBV4_OBBSweep.cpp */,
+ FFFDf3006a307fb0f3006a30 /* src/mesh/GuBV4_Raycast.cpp */,
+ FFFDf3006a987fb0f3006a98 /* src/mesh/GuBV4_SphereOverlap.cpp */,
+ FFFDf3006b007fb0f3006b00 /* src/mesh/GuBV4_SphereSweep.cpp */,
+ FFFDf3006b687fb0f3006b68 /* src/mesh/GuMeshQuery.cpp */,
+ FFFDf3006bd07fb0f3006bd0 /* src/mesh/GuMidphaseBV4.cpp */,
+ FFFDf3006c387fb0f3006c38 /* src/mesh/GuMidphaseRTree.cpp */,
+ FFFDf3006ca07fb0f3006ca0 /* src/mesh/GuOverlapTestsMesh.cpp */,
+ FFFDf3006d087fb0f3006d08 /* src/mesh/GuRTree.cpp */,
+ FFFDf3006d707fb0f3006d70 /* src/mesh/GuRTreeQueries.cpp */,
+ FFFDf3006dd87fb0f3006dd8 /* src/mesh/GuSweepsMesh.cpp */,
+ FFFDf3006e407fb0f3006e40 /* src/mesh/GuTriangleMesh.cpp */,
+ FFFDf3006ea87fb0f3006ea8 /* src/mesh/GuTriangleMeshBV4.cpp */,
+ FFFDf3006f107fb0f3006f10 /* src/mesh/GuTriangleMeshRTree.cpp */,
+ FFFDf3006f787fb0f3006f78 /* src/hf/GuHeightField.cpp */,
+ FFFDf3006fe07fb0f3006fe0 /* src/hf/GuHeightFieldUtil.cpp */,
+ FFFDf30070487fb0f3007048 /* src/hf/GuOverlapTestsHF.cpp */,
+ FFFDf30070b07fb0f30070b0 /* src/hf/GuSweepsHF.cpp */,
+ FFFDf30071187fb0f3007118 /* src/pcm/GuPCMContactBoxBox.cpp */,
+ FFFDf30071807fb0f3007180 /* src/pcm/GuPCMContactBoxConvex.cpp */,
+ FFFDf30071e87fb0f30071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */,
+ FFFDf30072507fb0f3007250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */,
+ FFFDf30072b87fb0f30072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */,
+ FFFDf30073207fb0f3007320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */,
+ FFFDf30073887fb0f3007388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */,
+ FFFDf30073f07fb0f30073f0 /* src/pcm/GuPCMContactConvexCommon.cpp */,
+ FFFDf30074587fb0f3007458 /* src/pcm/GuPCMContactConvexConvex.cpp */,
+ FFFDf30074c07fb0f30074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */,
+ FFFDf30075287fb0f3007528 /* src/pcm/GuPCMContactConvexMesh.cpp */,
+ FFFDf30075907fb0f3007590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */,
+ FFFDf30075f87fb0f30075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */,
+ FFFDf30076607fb0f3007660 /* src/pcm/GuPCMContactPlaneBox.cpp */,
+ FFFDf30076c87fb0f30076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */,
+ FFFDf30077307fb0f3007730 /* src/pcm/GuPCMContactPlaneConvex.cpp */,
+ FFFDf30077987fb0f3007798 /* src/pcm/GuPCMContactSphereBox.cpp */,
+ FFFDf30078007fb0f3007800 /* src/pcm/GuPCMContactSphereCapsule.cpp */,
+ FFFDf30078687fb0f3007868 /* src/pcm/GuPCMContactSphereConvex.cpp */,
+ FFFDf30078d07fb0f30078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */,
+ FFFDf30079387fb0f3007938 /* src/pcm/GuPCMContactSphereMesh.cpp */,
+ FFFDf30079a07fb0f30079a0 /* src/pcm/GuPCMContactSpherePlane.cpp */,
+ FFFDf3007a087fb0f3007a08 /* src/pcm/GuPCMContactSphereSphere.cpp */,
+ FFFDf3007a707fb0f3007a70 /* src/pcm/GuPCMShapeConvex.cpp */,
+ FFFDf3007ad87fb0f3007ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */,
+ FFFDf3007b407fb0f3007b40 /* src/pcm/GuPersistentContactManifold.cpp */,
+ FFFDf3007ba87fb0f3007ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */,
+ FFFDf3007c107fb0f3007c10 /* src/ccd/GuCCDSweepPrimitives.cpp */,
);
name = "geomutils";
sourceTree = SOURCE_ROOT;
};
- FFFB031431707fef03143170 /* PxFoundation */ = {
+ FFFBf298c0307fb0f298c030 /* PxFoundation */ = {
isa = PBXGroup;
children = (
- FFFB0315b0c07fef0315b0c0 /* include */,
- FFFB0315b0e87fef0315b0e8 /* src */,
+ FFFBf2c013f07fb0f2c013f0 /* include */,
+ FFFBf2c014187fb0f2c01418 /* src */,
);
name = "PxFoundation";
sourceTree = "<group>";
};
- FFFB0315b0c07fef0315b0c0 /* include */ = {
+ FFFBf2c013f07fb0f2c013f0 /* include */ = {
isa = PBXGroup;
children = (
- FFFD0393c8007fef0393c800 /* Px.h */,
- FFFD0393c8687fef0393c868 /* PxAllocatorCallback.h */,
- FFFD0393c8d07fef0393c8d0 /* PxAssert.h */,
- FFFD0393c9387fef0393c938 /* PxBitAndData.h */,
- FFFD0393c9a07fef0393c9a0 /* PxBounds3.h */,
- FFFD0393ca087fef0393ca08 /* PxErrorCallback.h */,
- FFFD0393ca707fef0393ca70 /* PxErrors.h */,
- FFFD0393cad87fef0393cad8 /* PxFlags.h */,
- FFFD0393cb407fef0393cb40 /* PxFoundation.h */,
- FFFD0393cba87fef0393cba8 /* PxFoundationVersion.h */,
- FFFD0393cc107fef0393cc10 /* PxIO.h */,
- FFFD0393cc787fef0393cc78 /* PxIntrinsics.h */,
- FFFD0393cce07fef0393cce0 /* PxMat33.h */,
- FFFD0393cd487fef0393cd48 /* PxMat44.h */,
- FFFD0393cdb07fef0393cdb0 /* PxMath.h */,
- FFFD0393ce187fef0393ce18 /* PxMathUtils.h */,
- FFFD0393ce807fef0393ce80 /* PxMemory.h */,
- FFFD0393cee87fef0393cee8 /* PxPlane.h */,
- FFFD0393cf507fef0393cf50 /* PxPreprocessor.h */,
- FFFD0393cfb87fef0393cfb8 /* PxProfiler.h */,
- FFFD0393d0207fef0393d020 /* PxQuat.h */,
- FFFD0393d0887fef0393d088 /* PxSimpleTypes.h */,
- FFFD0393d0f07fef0393d0f0 /* PxStrideIterator.h */,
- FFFD0393d1587fef0393d158 /* PxTransform.h */,
- FFFD0393d1c07fef0393d1c0 /* PxUnionCast.h */,
- FFFD0393d2287fef0393d228 /* PxVec2.h */,
- FFFD0393d2907fef0393d290 /* PxVec3.h */,
- FFFD0393d2f87fef0393d2f8 /* PxVec4.h */,
- FFFD0393d3607fef0393d360 /* unix/PxUnixIntrinsics.h */,
+ FFFDf218a2007fb0f218a200 /* Px.h */,
+ FFFDf218a2687fb0f218a268 /* PxAllocatorCallback.h */,
+ FFFDf218a2d07fb0f218a2d0 /* PxAssert.h */,
+ FFFDf218a3387fb0f218a338 /* PxBitAndData.h */,
+ FFFDf218a3a07fb0f218a3a0 /* PxBounds3.h */,
+ FFFDf218a4087fb0f218a408 /* PxErrorCallback.h */,
+ FFFDf218a4707fb0f218a470 /* PxErrors.h */,
+ FFFDf218a4d87fb0f218a4d8 /* PxFlags.h */,
+ FFFDf218a5407fb0f218a540 /* PxFoundation.h */,
+ FFFDf218a5a87fb0f218a5a8 /* PxFoundationVersion.h */,
+ FFFDf218a6107fb0f218a610 /* PxIO.h */,
+ FFFDf218a6787fb0f218a678 /* PxIntrinsics.h */,
+ FFFDf218a6e07fb0f218a6e0 /* PxMat33.h */,
+ FFFDf218a7487fb0f218a748 /* PxMat44.h */,
+ FFFDf218a7b07fb0f218a7b0 /* PxMath.h */,
+ FFFDf218a8187fb0f218a818 /* PxMathUtils.h */,
+ FFFDf218a8807fb0f218a880 /* PxMemory.h */,
+ FFFDf218a8e87fb0f218a8e8 /* PxPlane.h */,
+ FFFDf218a9507fb0f218a950 /* PxPreprocessor.h */,
+ FFFDf218a9b87fb0f218a9b8 /* PxProfiler.h */,
+ FFFDf218aa207fb0f218aa20 /* PxQuat.h */,
+ FFFDf218aa887fb0f218aa88 /* PxSimpleTypes.h */,
+ FFFDf218aaf07fb0f218aaf0 /* PxStrideIterator.h */,
+ FFFDf218ab587fb0f218ab58 /* PxTransform.h */,
+ FFFDf218abc07fb0f218abc0 /* PxUnionCast.h */,
+ FFFDf218ac287fb0f218ac28 /* PxVec2.h */,
+ FFFDf218ac907fb0f218ac90 /* PxVec3.h */,
+ FFFDf218acf87fb0f218acf8 /* PxVec4.h */,
+ FFFDf218ad607fb0f218ad60 /* unix/PxUnixIntrinsics.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
- FFFB0315b0e87fef0315b0e8 /* src */ = {
+ FFFBf2c014187fb0f2c01418 /* src */ = {
isa = PBXGroup;
children = (
- FFFD03943e007fef03943e00 /* include/Ps.h */,
- FFFD03943e687fef03943e68 /* include/PsAlignedMalloc.h */,
- FFFD03943ed07fef03943ed0 /* include/PsAlloca.h */,
- FFFD03943f387fef03943f38 /* include/PsAllocator.h */,
- FFFD03943fa07fef03943fa0 /* include/PsAoS.h */,
- FFFD039440087fef03944008 /* include/PsArray.h */,
- FFFD039440707fef03944070 /* include/PsAtomic.h */,
- FFFD039440d87fef039440d8 /* include/PsBasicTemplates.h */,
- FFFD039441407fef03944140 /* include/PsBitUtils.h */,
- FFFD039441a87fef039441a8 /* include/PsBroadcast.h */,
- FFFD039442107fef03944210 /* include/PsCpu.h */,
- FFFD039442787fef03944278 /* include/PsFPU.h */,
- FFFD039442e07fef039442e0 /* include/PsFoundation.h */,
- FFFD039443487fef03944348 /* include/PsHash.h */,
- FFFD039443b07fef039443b0 /* include/PsHashInternals.h */,
- FFFD039444187fef03944418 /* include/PsHashMap.h */,
- FFFD039444807fef03944480 /* include/PsHashSet.h */,
- FFFD039444e87fef039444e8 /* include/PsInlineAllocator.h */,
- FFFD039445507fef03944550 /* include/PsInlineAoS.h */,
- FFFD039445b87fef039445b8 /* include/PsInlineArray.h */,
- FFFD039446207fef03944620 /* include/PsIntrinsics.h */,
- FFFD039446887fef03944688 /* include/PsMathUtils.h */,
- FFFD039446f07fef039446f0 /* include/PsMutex.h */,
- FFFD039447587fef03944758 /* include/PsPool.h */,
- FFFD039447c07fef039447c0 /* include/PsSList.h */,
- FFFD039448287fef03944828 /* include/PsSocket.h */,
- FFFD039448907fef03944890 /* include/PsSort.h */,
- FFFD039448f87fef039448f8 /* include/PsSortInternals.h */,
- FFFD039449607fef03944960 /* include/PsString.h */,
- FFFD039449c87fef039449c8 /* include/PsSync.h */,
- FFFD03944a307fef03944a30 /* include/PsTempAllocator.h */,
- FFFD03944a987fef03944a98 /* include/PsThread.h */,
- FFFD03944b007fef03944b00 /* include/PsTime.h */,
- FFFD03944b687fef03944b68 /* include/PsUserAllocated.h */,
- FFFD03944bd07fef03944bd0 /* include/PsUtilities.h */,
- FFFD03944c387fef03944c38 /* include/PsVecMath.h */,
- FFFD03944ca07fef03944ca0 /* include/PsVecMathAoSScalar.h */,
- FFFD03944d087fef03944d08 /* include/PsVecMathAoSScalarInline.h */,
- FFFD03944d707fef03944d70 /* include/PsVecMathSSE.h */,
- FFFD03944dd87fef03944dd8 /* include/PsVecMathUtilities.h */,
- FFFD03944e407fef03944e40 /* include/PsVecQuat.h */,
- FFFD03944ea87fef03944ea8 /* include/PsVecTransform.h */,
- FFFD03944f107fef03944f10 /* include/unix/PsUnixAoS.h */,
- FFFD03944f787fef03944f78 /* include/unix/PsUnixFPU.h */,
- FFFD03944fe07fef03944fe0 /* include/unix/PsUnixInlineAoS.h */,
- FFFD039450487fef03945048 /* include/unix/PsUnixIntrinsics.h */,
- FFFD039450b07fef039450b0 /* include/unix/PsUnixTrigConstants.h */,
- FFFD039451187fef03945118 /* src/PsAllocator.cpp */,
- FFFD039451807fef03945180 /* src/PsAssert.cpp */,
- FFFD039451e87fef039451e8 /* src/PsFoundation.cpp */,
- FFFD039452507fef03945250 /* src/PsMathUtils.cpp */,
- FFFD039452b87fef039452b8 /* src/PsString.cpp */,
- FFFD039453207fef03945320 /* src/PsTempAllocator.cpp */,
- FFFD039453887fef03945388 /* src/PsUtilities.cpp */,
- FFFD039453f07fef039453f0 /* src/unix/PsUnixAtomic.cpp */,
- FFFD039454587fef03945458 /* src/unix/PsUnixCpu.cpp */,
- FFFD039454c07fef039454c0 /* src/unix/PsUnixFPU.cpp */,
- FFFD039455287fef03945528 /* src/unix/PsUnixMutex.cpp */,
- FFFD039455907fef03945590 /* src/unix/PsUnixPrintString.cpp */,
- FFFD039455f87fef039455f8 /* src/unix/PsUnixSList.cpp */,
- FFFD039456607fef03945660 /* src/unix/PsUnixSocket.cpp */,
- FFFD039456c87fef039456c8 /* src/unix/PsUnixSync.cpp */,
- FFFD039457307fef03945730 /* src/unix/PsUnixThread.cpp */,
- FFFD039457987fef03945798 /* src/unix/PsUnixTime.cpp */,
+ FFFDf21918007fb0f2191800 /* include/Ps.h */,
+ FFFDf21918687fb0f2191868 /* include/PsAlignedMalloc.h */,
+ FFFDf21918d07fb0f21918d0 /* include/PsAlloca.h */,
+ FFFDf21919387fb0f2191938 /* include/PsAllocator.h */,
+ FFFDf21919a07fb0f21919a0 /* include/PsAoS.h */,
+ FFFDf2191a087fb0f2191a08 /* include/PsArray.h */,
+ FFFDf2191a707fb0f2191a70 /* include/PsAtomic.h */,
+ FFFDf2191ad87fb0f2191ad8 /* include/PsBasicTemplates.h */,
+ FFFDf2191b407fb0f2191b40 /* include/PsBitUtils.h */,
+ FFFDf2191ba87fb0f2191ba8 /* include/PsBroadcast.h */,
+ FFFDf2191c107fb0f2191c10 /* include/PsCpu.h */,
+ FFFDf2191c787fb0f2191c78 /* include/PsFPU.h */,
+ FFFDf2191ce07fb0f2191ce0 /* include/PsFoundation.h */,
+ FFFDf2191d487fb0f2191d48 /* include/PsHash.h */,
+ FFFDf2191db07fb0f2191db0 /* include/PsHashInternals.h */,
+ FFFDf2191e187fb0f2191e18 /* include/PsHashMap.h */,
+ FFFDf2191e807fb0f2191e80 /* include/PsHashSet.h */,
+ FFFDf2191ee87fb0f2191ee8 /* include/PsInlineAllocator.h */,
+ FFFDf2191f507fb0f2191f50 /* include/PsInlineAoS.h */,
+ FFFDf2191fb87fb0f2191fb8 /* include/PsInlineArray.h */,
+ FFFDf21920207fb0f2192020 /* include/PsIntrinsics.h */,
+ FFFDf21920887fb0f2192088 /* include/PsMathUtils.h */,
+ FFFDf21920f07fb0f21920f0 /* include/PsMutex.h */,
+ FFFDf21921587fb0f2192158 /* include/PsPool.h */,
+ FFFDf21921c07fb0f21921c0 /* include/PsSList.h */,
+ FFFDf21922287fb0f2192228 /* include/PsSocket.h */,
+ FFFDf21922907fb0f2192290 /* include/PsSort.h */,
+ FFFDf21922f87fb0f21922f8 /* include/PsSortInternals.h */,
+ FFFDf21923607fb0f2192360 /* include/PsString.h */,
+ FFFDf21923c87fb0f21923c8 /* include/PsSync.h */,
+ FFFDf21924307fb0f2192430 /* include/PsTempAllocator.h */,
+ FFFDf21924987fb0f2192498 /* include/PsThread.h */,
+ FFFDf21925007fb0f2192500 /* include/PsTime.h */,
+ FFFDf21925687fb0f2192568 /* include/PsUserAllocated.h */,
+ FFFDf21925d07fb0f21925d0 /* include/PsUtilities.h */,
+ FFFDf21926387fb0f2192638 /* include/PsVecMath.h */,
+ FFFDf21926a07fb0f21926a0 /* include/PsVecMathAoSScalar.h */,
+ FFFDf21927087fb0f2192708 /* include/PsVecMathAoSScalarInline.h */,
+ FFFDf21927707fb0f2192770 /* include/PsVecMathSSE.h */,
+ FFFDf21927d87fb0f21927d8 /* include/PsVecMathUtilities.h */,
+ FFFDf21928407fb0f2192840 /* include/PsVecQuat.h */,
+ FFFDf21928a87fb0f21928a8 /* include/PsVecTransform.h */,
+ FFFDf21929107fb0f2192910 /* include/unix/PsUnixAoS.h */,
+ FFFDf21929787fb0f2192978 /* include/unix/PsUnixFPU.h */,
+ FFFDf21929e07fb0f21929e0 /* include/unix/PsUnixInlineAoS.h */,
+ FFFDf2192a487fb0f2192a48 /* include/unix/PsUnixIntrinsics.h */,
+ FFFDf2192ab07fb0f2192ab0 /* include/unix/PsUnixTrigConstants.h */,
+ FFFDf2192b187fb0f2192b18 /* src/PsAllocator.cpp */,
+ FFFDf2192b807fb0f2192b80 /* src/PsAssert.cpp */,
+ FFFDf2192be87fb0f2192be8 /* src/PsFoundation.cpp */,
+ FFFDf2192c507fb0f2192c50 /* src/PsMathUtils.cpp */,
+ FFFDf2192cb87fb0f2192cb8 /* src/PsString.cpp */,
+ FFFDf2192d207fb0f2192d20 /* src/PsTempAllocator.cpp */,
+ FFFDf2192d887fb0f2192d88 /* src/PsUtilities.cpp */,
+ FFFDf2192df07fb0f2192df0 /* src/unix/PsUnixAtomic.cpp */,
+ FFFDf2192e587fb0f2192e58 /* src/unix/PsUnixCpu.cpp */,
+ FFFDf2192ec07fb0f2192ec0 /* src/unix/PsUnixFPU.cpp */,
+ FFFDf2192f287fb0f2192f28 /* src/unix/PsUnixMutex.cpp */,
+ FFFDf2192f907fb0f2192f90 /* src/unix/PsUnixPrintString.cpp */,
+ FFFDf2192ff87fb0f2192ff8 /* src/unix/PsUnixSList.cpp */,
+ FFFDf21930607fb0f2193060 /* src/unix/PsUnixSocket.cpp */,
+ FFFDf21930c87fb0f21930c8 /* src/unix/PsUnixSync.cpp */,
+ FFFDf21931307fb0f2193130 /* src/unix/PsUnixThread.cpp */,
+ FFFDf21931987fb0f2193198 /* src/unix/PsUnixTime.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
- FFFB030748c07fef030748c0 /* PxPvdSDK */ = {
+ FFFBf14114a07fb0f14114a0 /* PxPvdSDK */ = {
isa = PBXGroup;
children = (
- FFFB030766307fef03076630 /* include */,
- FFFB030766587fef03076658 /* src */,
+ FFFBf140e2007fb0f140e200 /* include */,
+ FFFBf140e2287fb0f140e228 /* src */,
);
name = "PxPvdSDK";
sourceTree = "<group>";
};
- FFFB030766307fef03076630 /* include */ = {
+ FFFBf140e2007fb0f140e200 /* include */ = {
isa = PBXGroup;
children = (
- FFFD030770707fef03077070 /* PxPvd.h */,
- FFFD030770d87fef030770d8 /* PxPvdTransport.h */,
+ FFFDf140d8007fb0f140d800 /* PxPvd.h */,
+ FFFDf140d8687fb0f140d868 /* PxPvdTransport.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
- FFFB030766587fef03076658 /* src */ = {
+ FFFBf140e2287fb0f140e228 /* src */ = {
isa = PBXGroup;
children = (
- FFFD0286fe007fef0286fe00 /* include/PsPvd.h */,
- FFFD0286fe687fef0286fe68 /* include/PxProfileAllocatorWrapper.h */,
- FFFD0286fed07fef0286fed0 /* include/PxPvdClient.h */,
- FFFD0286ff387fef0286ff38 /* include/PxPvdDataStream.h */,
- FFFD0286ffa07fef0286ffa0 /* include/PxPvdDataStreamHelpers.h */,
- FFFD028700087fef02870008 /* include/PxPvdErrorCodes.h */,
- FFFD028700707fef02870070 /* include/PxPvdObjectModelBaseTypes.h */,
- FFFD028700d87fef028700d8 /* include/PxPvdRenderBuffer.h */,
- FFFD028701407fef02870140 /* include/PxPvdUserRenderer.h */,
- FFFD028701a87fef028701a8 /* src/PxProfileEventImpl.cpp */,
- FFFD028702107fef02870210 /* src/PxPvd.cpp */,
- FFFD028702787fef02870278 /* src/PxPvdDataStream.cpp */,
- FFFD028702e07fef028702e0 /* src/PxPvdDefaultFileTransport.cpp */,
- FFFD028703487fef02870348 /* src/PxPvdDefaultSocketTransport.cpp */,
- FFFD028703b07fef028703b0 /* src/PxPvdImpl.cpp */,
- FFFD028704187fef02870418 /* src/PxPvdMemClient.cpp */,
- FFFD028704807fef02870480 /* src/PxPvdObjectModelMetaData.cpp */,
- FFFD028704e87fef028704e8 /* src/PxPvdObjectRegistrar.cpp */,
- FFFD028705507fef02870550 /* src/PxPvdProfileZoneClient.cpp */,
- FFFD028705b87fef028705b8 /* src/PxPvdUserRenderer.cpp */,
- FFFD028706207fef02870620 /* src/PxProfileBase.h */,
- FFFD028706887fef02870688 /* src/PxProfileCompileTimeEventFilter.h */,
- FFFD028706f07fef028706f0 /* src/PxProfileContextProvider.h */,
- FFFD028707587fef02870758 /* src/PxProfileContextProviderImpl.h */,
- FFFD028707c07fef028707c0 /* src/PxProfileDataBuffer.h */,
- FFFD028708287fef02870828 /* src/PxProfileDataParsing.h */,
- FFFD028708907fef02870890 /* src/PxProfileEventBuffer.h */,
- FFFD028708f87fef028708f8 /* src/PxProfileEventBufferAtomic.h */,
- FFFD028709607fef02870960 /* src/PxProfileEventBufferClient.h */,
- FFFD028709c87fef028709c8 /* src/PxProfileEventBufferClientManager.h */,
- FFFD02870a307fef02870a30 /* src/PxProfileEventFilter.h */,
- FFFD02870a987fef02870a98 /* src/PxProfileEventHandler.h */,
- FFFD02870b007fef02870b00 /* src/PxProfileEventId.h */,
- FFFD02870b687fef02870b68 /* src/PxProfileEventMutex.h */,
- FFFD02870bd07fef02870bd0 /* src/PxProfileEventNames.h */,
- FFFD02870c387fef02870c38 /* src/PxProfileEventParser.h */,
- FFFD02870ca07fef02870ca0 /* src/PxProfileEventSender.h */,
- FFFD02870d087fef02870d08 /* src/PxProfileEventSerialization.h */,
- FFFD02870d707fef02870d70 /* src/PxProfileEventSystem.h */,
- FFFD02870dd87fef02870dd8 /* src/PxProfileEvents.h */,
- FFFD02870e407fef02870e40 /* src/PxProfileMemory.h */,
- FFFD02870ea87fef02870ea8 /* src/PxProfileMemoryBuffer.h */,
- FFFD02870f107fef02870f10 /* src/PxProfileMemoryEventBuffer.h */,
- FFFD02870f787fef02870f78 /* src/PxProfileMemoryEventParser.h */,
- FFFD02870fe07fef02870fe0 /* src/PxProfileMemoryEventRecorder.h */,
- FFFD028710487fef02871048 /* src/PxProfileMemoryEventReflexiveWriter.h */,
- FFFD028710b07fef028710b0 /* src/PxProfileMemoryEventSummarizer.h */,
- FFFD028711187fef02871118 /* src/PxProfileMemoryEventTypes.h */,
- FFFD028711807fef02871180 /* src/PxProfileMemoryEvents.h */,
- FFFD028711e87fef028711e8 /* src/PxProfileScopedEvent.h */,
- FFFD028712507fef02871250 /* src/PxProfileScopedMutexLock.h */,
- FFFD028712b87fef028712b8 /* src/PxProfileZone.h */,
- FFFD028713207fef02871320 /* src/PxProfileZoneImpl.h */,
- FFFD028713887fef02871388 /* src/PxProfileZoneManager.h */,
- FFFD028713f07fef028713f0 /* src/PxProfileZoneManagerImpl.h */,
- FFFD028714587fef02871458 /* src/PxPvdBits.h */,
- FFFD028714c07fef028714c0 /* src/PxPvdByteStreams.h */,
- FFFD028715287fef02871528 /* src/PxPvdCommStreamEventSink.h */,
- FFFD028715907fef02871590 /* src/PxPvdCommStreamEvents.h */,
- FFFD028715f87fef028715f8 /* src/PxPvdCommStreamSDKEventTypes.h */,
- FFFD028716607fef02871660 /* src/PxPvdCommStreamTypes.h */,
- FFFD028716c87fef028716c8 /* src/PxPvdDefaultFileTransport.h */,
- FFFD028717307fef02871730 /* src/PxPvdDefaultSocketTransport.h */,
- FFFD028717987fef02871798 /* src/PxPvdFoundation.h */,
- FFFD028718007fef02871800 /* src/PxPvdImpl.h */,
- FFFD028718687fef02871868 /* src/PxPvdInternalByteStreams.h */,
- FFFD028718d07fef028718d0 /* src/PxPvdMarshalling.h */,
- FFFD028719387fef02871938 /* src/PxPvdMemClient.h */,
- FFFD028719a07fef028719a0 /* src/PxPvdObjectModel.h */,
- FFFD02871a087fef02871a08 /* src/PxPvdObjectModelInternalTypeDefs.h */,
- FFFD02871a707fef02871a70 /* src/PxPvdObjectModelInternalTypes.h */,
- FFFD02871ad87fef02871ad8 /* src/PxPvdObjectModelMetaData.h */,
- FFFD02871b407fef02871b40 /* src/PxPvdObjectRegistrar.h */,
- FFFD02871ba87fef02871ba8 /* src/PxPvdProfileZoneClient.h */,
- FFFD02871c107fef02871c10 /* src/PxPvdUserRenderImpl.h */,
- FFFD02871c787fef02871c78 /* src/PxPvdUserRenderTypes.h */,
+ FFFDf182f6007fb0f182f600 /* include/PsPvd.h */,
+ FFFDf182f6687fb0f182f668 /* include/PxProfileAllocatorWrapper.h */,
+ FFFDf182f6d07fb0f182f6d0 /* include/PxPvdClient.h */,
+ FFFDf182f7387fb0f182f738 /* include/PxPvdDataStream.h */,
+ FFFDf182f7a07fb0f182f7a0 /* include/PxPvdDataStreamHelpers.h */,
+ FFFDf182f8087fb0f182f808 /* include/PxPvdErrorCodes.h */,
+ FFFDf182f8707fb0f182f870 /* include/PxPvdObjectModelBaseTypes.h */,
+ FFFDf182f8d87fb0f182f8d8 /* include/PxPvdRenderBuffer.h */,
+ FFFDf182f9407fb0f182f940 /* include/PxPvdUserRenderer.h */,
+ FFFDf182f9a87fb0f182f9a8 /* src/PxProfileEventImpl.cpp */,
+ FFFDf182fa107fb0f182fa10 /* src/PxPvd.cpp */,
+ FFFDf182fa787fb0f182fa78 /* src/PxPvdDataStream.cpp */,
+ FFFDf182fae07fb0f182fae0 /* src/PxPvdDefaultFileTransport.cpp */,
+ FFFDf182fb487fb0f182fb48 /* src/PxPvdDefaultSocketTransport.cpp */,
+ FFFDf182fbb07fb0f182fbb0 /* src/PxPvdImpl.cpp */,
+ FFFDf182fc187fb0f182fc18 /* src/PxPvdMemClient.cpp */,
+ FFFDf182fc807fb0f182fc80 /* src/PxPvdObjectModelMetaData.cpp */,
+ FFFDf182fce87fb0f182fce8 /* src/PxPvdObjectRegistrar.cpp */,
+ FFFDf182fd507fb0f182fd50 /* src/PxPvdProfileZoneClient.cpp */,
+ FFFDf182fdb87fb0f182fdb8 /* src/PxPvdUserRenderer.cpp */,
+ FFFDf182fe207fb0f182fe20 /* src/PxProfileBase.h */,
+ FFFDf182fe887fb0f182fe88 /* src/PxProfileCompileTimeEventFilter.h */,
+ FFFDf182fef07fb0f182fef0 /* src/PxProfileContextProvider.h */,
+ FFFDf182ff587fb0f182ff58 /* src/PxProfileContextProviderImpl.h */,
+ FFFDf182ffc07fb0f182ffc0 /* src/PxProfileDataBuffer.h */,
+ FFFDf18300287fb0f1830028 /* src/PxProfileDataParsing.h */,
+ FFFDf18300907fb0f1830090 /* src/PxProfileEventBuffer.h */,
+ FFFDf18300f87fb0f18300f8 /* src/PxProfileEventBufferAtomic.h */,
+ FFFDf18301607fb0f1830160 /* src/PxProfileEventBufferClient.h */,
+ FFFDf18301c87fb0f18301c8 /* src/PxProfileEventBufferClientManager.h */,
+ FFFDf18302307fb0f1830230 /* src/PxProfileEventFilter.h */,
+ FFFDf18302987fb0f1830298 /* src/PxProfileEventHandler.h */,
+ FFFDf18303007fb0f1830300 /* src/PxProfileEventId.h */,
+ FFFDf18303687fb0f1830368 /* src/PxProfileEventMutex.h */,
+ FFFDf18303d07fb0f18303d0 /* src/PxProfileEventNames.h */,
+ FFFDf18304387fb0f1830438 /* src/PxProfileEventParser.h */,
+ FFFDf18304a07fb0f18304a0 /* src/PxProfileEventSender.h */,
+ FFFDf18305087fb0f1830508 /* src/PxProfileEventSerialization.h */,
+ FFFDf18305707fb0f1830570 /* src/PxProfileEventSystem.h */,
+ FFFDf18305d87fb0f18305d8 /* src/PxProfileEvents.h */,
+ FFFDf18306407fb0f1830640 /* src/PxProfileMemory.h */,
+ FFFDf18306a87fb0f18306a8 /* src/PxProfileMemoryBuffer.h */,
+ FFFDf18307107fb0f1830710 /* src/PxProfileMemoryEventBuffer.h */,
+ FFFDf18307787fb0f1830778 /* src/PxProfileMemoryEventParser.h */,
+ FFFDf18307e07fb0f18307e0 /* src/PxProfileMemoryEventRecorder.h */,
+ FFFDf18308487fb0f1830848 /* src/PxProfileMemoryEventReflexiveWriter.h */,
+ FFFDf18308b07fb0f18308b0 /* src/PxProfileMemoryEventSummarizer.h */,
+ FFFDf18309187fb0f1830918 /* src/PxProfileMemoryEventTypes.h */,
+ FFFDf18309807fb0f1830980 /* src/PxProfileMemoryEvents.h */,
+ FFFDf18309e87fb0f18309e8 /* src/PxProfileScopedEvent.h */,
+ FFFDf1830a507fb0f1830a50 /* src/PxProfileScopedMutexLock.h */,
+ FFFDf1830ab87fb0f1830ab8 /* src/PxProfileZone.h */,
+ FFFDf1830b207fb0f1830b20 /* src/PxProfileZoneImpl.h */,
+ FFFDf1830b887fb0f1830b88 /* src/PxProfileZoneManager.h */,
+ FFFDf1830bf07fb0f1830bf0 /* src/PxProfileZoneManagerImpl.h */,
+ FFFDf1830c587fb0f1830c58 /* src/PxPvdBits.h */,
+ FFFDf1830cc07fb0f1830cc0 /* src/PxPvdByteStreams.h */,
+ FFFDf1830d287fb0f1830d28 /* src/PxPvdCommStreamEventSink.h */,
+ FFFDf1830d907fb0f1830d90 /* src/PxPvdCommStreamEvents.h */,
+ FFFDf1830df87fb0f1830df8 /* src/PxPvdCommStreamSDKEventTypes.h */,
+ FFFDf1830e607fb0f1830e60 /* src/PxPvdCommStreamTypes.h */,
+ FFFDf1830ec87fb0f1830ec8 /* src/PxPvdDefaultFileTransport.h */,
+ FFFDf1830f307fb0f1830f30 /* src/PxPvdDefaultSocketTransport.h */,
+ FFFDf1830f987fb0f1830f98 /* src/PxPvdFoundation.h */,
+ FFFDf18310007fb0f1831000 /* src/PxPvdImpl.h */,
+ FFFDf18310687fb0f1831068 /* src/PxPvdInternalByteStreams.h */,
+ FFFDf18310d07fb0f18310d0 /* src/PxPvdMarshalling.h */,
+ FFFDf18311387fb0f1831138 /* src/PxPvdMemClient.h */,
+ FFFDf18311a07fb0f18311a0 /* src/PxPvdObjectModel.h */,
+ FFFDf18312087fb0f1831208 /* src/PxPvdObjectModelInternalTypeDefs.h */,
+ FFFDf18312707fb0f1831270 /* src/PxPvdObjectModelInternalTypes.h */,
+ FFFDf18312d87fb0f18312d8 /* src/PxPvdObjectModelMetaData.h */,
+ FFFDf18313407fb0f1831340 /* src/PxPvdObjectRegistrar.h */,
+ FFFDf18313a87fb0f18313a8 /* src/PxPvdProfileZoneClient.h */,
+ FFFDf18314107fb0f1831410 /* src/PxPvdUserRenderImpl.h */,
+ FFFDf18314787fb0f1831478 /* src/PxPvdUserRenderTypes.h */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
- FFFB0310a8f07fef0310a8f0 /* LowLevel */ = {
+ FFFBf2d3dd907fb0f2d3dd90 /* LowLevel */ = {
isa = PBXGroup;
children = (
- FFFB0310d0c07fef0310d0c0 /* API Source */,
- FFFB0310d0e87fef0310d0e8 /* API Includes */,
- FFFB0310d1107fef0310d110 /* Software Source */,
- FFFB0310d1387fef0310d138 /* Software Includes */,
- FFFB0310d1607fef0310d160 /* Common Source */,
- FFFB0310d1887fef0310d188 /* Common Includes */,
+ FFFBf2d426e07fb0f2d426e0 /* API Source */,
+ FFFBf2d427087fb0f2d42708 /* API Includes */,
+ FFFBf2d427307fb0f2d42730 /* Software Source */,
+ FFFBf2d427587fb0f2d42758 /* Software Includes */,
+ FFFBf2d427807fb0f2d42780 /* Common Source */,
+ FFFBf2d427a87fb0f2d427a8 /* Common Includes */,
);
name = "LowLevel";
sourceTree = "<group>";
};
- FFFB0310d0c07fef0310d0c0 /* API Source */ = {
+ FFFBf2d426e07fb0f2d426e0 /* API Source */ = {
isa = PBXGroup;
children = (
- FFFD0310b8507fef0310b850 /* px_globals.cpp */,
+ FFFDf2d426307fb0f2d42630 /* px_globals.cpp */,
);
name = "API Source";
sourceTree = SOURCE_ROOT;
};
- FFFB0310d0e87fef0310d0e8 /* API Includes */ = {
+ FFFBf2d427087fb0f2d42708 /* API Includes */ = {
isa = PBXGroup;
children = (
- FFFD0310e4107fef0310e410 /* PxsMaterialCore.h */,
- FFFD0310e4787fef0310e478 /* PxsMaterialManager.h */,
- FFFD0310e4e07fef0310e4e0 /* PxvConfig.h */,
- FFFD0310e5487fef0310e548 /* PxvContext.h */,
- FFFD0310e5b07fef0310e5b0 /* PxvDynamics.h */,
- FFFD0310e6187fef0310e618 /* PxvGeometry.h */,
- FFFD0310e6807fef0310e680 /* PxvGlobals.h */,
- FFFD0310e6e87fef0310e6e8 /* PxvManager.h */,
- FFFD0310e7507fef0310e750 /* PxvSimStats.h */,
+ FFFDf2d43e407fb0f2d43e40 /* PxsMaterialCore.h */,
+ FFFDf2d43ea87fb0f2d43ea8 /* PxsMaterialManager.h */,
+ FFFDf2d43f107fb0f2d43f10 /* PxvConfig.h */,
+ FFFDf2d43f787fb0f2d43f78 /* PxvContext.h */,
+ FFFDf2d43fe07fb0f2d43fe0 /* PxvDynamics.h */,
+ FFFDf2d440487fb0f2d44048 /* PxvGeometry.h */,
+ FFFDf2d440b07fb0f2d440b0 /* PxvGlobals.h */,
+ FFFDf2d441187fb0f2d44118 /* PxvManager.h */,
+ FFFDf2d441807fb0f2d44180 /* PxvSimStats.h */,
);
name = "API Includes";
sourceTree = SOURCE_ROOT;
};
- FFFB0310d1107fef0310d110 /* Software Source */ = {
+ FFFBf2d427307fb0f2d42730 /* Software Source */ = {
isa = PBXGroup;
children = (
- FFFD0310f6707fef0310f670 /* PxsCCD.cpp */,
- FFFD0310f6d87fef0310f6d8 /* PxsContactManager.cpp */,
- FFFD0310f7407fef0310f740 /* PxsContext.cpp */,
- FFFD0310f7a87fef0310f7a8 /* PxsDefaultMemoryManager.cpp */,
- FFFD0310f8107fef0310f810 /* PxsIslandSim.cpp */,
- FFFD0310f8787fef0310f878 /* PxsMaterialCombiner.cpp */,
- FFFD0310f8e07fef0310f8e0 /* PxsNphaseImplementationContext.cpp */,
- FFFD0310f9487fef0310f948 /* PxsSimpleIslandManager.cpp */,
+ FFFDf2d44fb07fb0f2d44fb0 /* PxsCCD.cpp */,
+ FFFDf2d450187fb0f2d45018 /* PxsContactManager.cpp */,
+ FFFDf2d450807fb0f2d45080 /* PxsContext.cpp */,
+ FFFDf2d450e87fb0f2d450e8 /* PxsDefaultMemoryManager.cpp */,
+ FFFDf2d451507fb0f2d45150 /* PxsIslandSim.cpp */,
+ FFFDf2d451b87fb0f2d451b8 /* PxsMaterialCombiner.cpp */,
+ FFFDf2d452207fb0f2d45220 /* PxsNphaseImplementationContext.cpp */,
+ FFFDf2d452887fb0f2d45288 /* PxsSimpleIslandManager.cpp */,
);
name = "Software Source";
sourceTree = SOURCE_ROOT;
};
- FFFB0310d1387fef0310d138 /* Software Includes */ = {
+ FFFBf2d427587fb0f2d42758 /* Software Includes */ = {
isa = PBXGroup;
children = (
- FFFD03957e007fef03957e00 /* PxsBodySim.h */,
- FFFD03957e687fef03957e68 /* PxsCCD.h */,
- FFFD03957ed07fef03957ed0 /* PxsContactManager.h */,
- FFFD03957f387fef03957f38 /* PxsContactManagerState.h */,
- FFFD03957fa07fef03957fa0 /* PxsContext.h */,
- FFFD039580087fef03958008 /* PxsDefaultMemoryManager.h */,
- FFFD039580707fef03958070 /* PxsHeapMemoryAllocator.h */,
- FFFD039580d87fef039580d8 /* PxsIncrementalConstraintPartitioning.h */,
- FFFD039581407fef03958140 /* PxsIslandManagerTypes.h */,
- FFFD039581a87fef039581a8 /* PxsIslandSim.h */,
- FFFD039582107fef03958210 /* PxsKernelWrangler.h */,
- FFFD039582787fef03958278 /* PxsMaterialCombiner.h */,
- FFFD039582e07fef039582e0 /* PxsMemoryManager.h */,
- FFFD039583487fef03958348 /* PxsNphaseImplementationContext.h */,
- FFFD039583b07fef039583b0 /* PxsRigidBody.h */,
- FFFD039584187fef03958418 /* PxsShapeSim.h */,
- FFFD039584807fef03958480 /* PxsSimpleIslandManager.h */,
- FFFD039584e87fef039584e8 /* PxsSimulationController.h */,
- FFFD039585507fef03958550 /* PxsTransformCache.h */,
- FFFD039585b87fef039585b8 /* PxvNphaseImplementationContext.h */,
+ FFFDf301ac007fb0f301ac00 /* PxsBodySim.h */,
+ FFFDf301ac687fb0f301ac68 /* PxsCCD.h */,
+ FFFDf301acd07fb0f301acd0 /* PxsContactManager.h */,
+ FFFDf301ad387fb0f301ad38 /* PxsContactManagerState.h */,
+ FFFDf301ada07fb0f301ada0 /* PxsContext.h */,
+ FFFDf301ae087fb0f301ae08 /* PxsDefaultMemoryManager.h */,
+ FFFDf301ae707fb0f301ae70 /* PxsHeapMemoryAllocator.h */,
+ FFFDf301aed87fb0f301aed8 /* PxsIncrementalConstraintPartitioning.h */,
+ FFFDf301af407fb0f301af40 /* PxsIslandManagerTypes.h */,
+ FFFDf301afa87fb0f301afa8 /* PxsIslandSim.h */,
+ FFFDf301b0107fb0f301b010 /* PxsKernelWrangler.h */,
+ FFFDf301b0787fb0f301b078 /* PxsMaterialCombiner.h */,
+ FFFDf301b0e07fb0f301b0e0 /* PxsMemoryManager.h */,
+ FFFDf301b1487fb0f301b148 /* PxsNphaseImplementationContext.h */,
+ FFFDf301b1b07fb0f301b1b0 /* PxsRigidBody.h */,
+ FFFDf301b2187fb0f301b218 /* PxsShapeSim.h */,
+ FFFDf301b2807fb0f301b280 /* PxsSimpleIslandManager.h */,
+ FFFDf301b2e87fb0f301b2e8 /* PxsSimulationController.h */,
+ FFFDf301b3507fb0f301b350 /* PxsTransformCache.h */,
+ FFFDf301b3b87fb0f301b3b8 /* PxvNphaseImplementationContext.h */,
);
name = "Software Includes";
sourceTree = SOURCE_ROOT;
};
- FFFB0310d1607fef0310d160 /* Common Source */ = {
+ FFFBf2d427807fb0f2d42780 /* Common Source */ = {
isa = PBXGroup;
children = (
- FFFD039614007fef03961400 /* collision/PxcContact.cpp */,
- FFFD039614687fef03961468 /* pipeline/PxcContactCache.cpp */,
- FFFD039614d07fef039614d0 /* pipeline/PxcContactMethodImpl.cpp */,
- FFFD039615387fef03961538 /* pipeline/PxcMaterialHeightField.cpp */,
- FFFD039615a07fef039615a0 /* pipeline/PxcMaterialMesh.cpp */,
- FFFD039616087fef03961608 /* pipeline/PxcMaterialMethodImpl.cpp */,
- FFFD039616707fef03961670 /* pipeline/PxcMaterialShape.cpp */,
- FFFD039616d87fef039616d8 /* pipeline/PxcNpBatch.cpp */,
- FFFD039617407fef03961740 /* pipeline/PxcNpCacheStreamPair.cpp */,
- FFFD039617a87fef039617a8 /* pipeline/PxcNpContactPrepShared.cpp */,
- FFFD039618107fef03961810 /* pipeline/PxcNpMemBlockPool.cpp */,
- FFFD039618787fef03961878 /* pipeline/PxcNpThreadContext.cpp */,
+ FFFDf30196007fb0f3019600 /* collision/PxcContact.cpp */,
+ FFFDf30196687fb0f3019668 /* pipeline/PxcContactCache.cpp */,
+ FFFDf30196d07fb0f30196d0 /* pipeline/PxcContactMethodImpl.cpp */,
+ FFFDf30197387fb0f3019738 /* pipeline/PxcMaterialHeightField.cpp */,
+ FFFDf30197a07fb0f30197a0 /* pipeline/PxcMaterialMesh.cpp */,
+ FFFDf30198087fb0f3019808 /* pipeline/PxcMaterialMethodImpl.cpp */,
+ FFFDf30198707fb0f3019870 /* pipeline/PxcMaterialShape.cpp */,
+ FFFDf30198d87fb0f30198d8 /* pipeline/PxcNpBatch.cpp */,
+ FFFDf30199407fb0f3019940 /* pipeline/PxcNpCacheStreamPair.cpp */,
+ FFFDf30199a87fb0f30199a8 /* pipeline/PxcNpContactPrepShared.cpp */,
+ FFFDf3019a107fb0f3019a10 /* pipeline/PxcNpMemBlockPool.cpp */,
+ FFFDf3019a787fb0f3019a78 /* pipeline/PxcNpThreadContext.cpp */,
);
name = "Common Source";
sourceTree = SOURCE_ROOT;
};
- FFFB0310d1887fef0310d188 /* Common Includes */ = {
+ FFFBf2d427a87fb0f2d427a8 /* Common Includes */ = {
isa = PBXGroup;
children = (
- FFFD03961c007fef03961c00 /* collision/PxcContactMethodImpl.h */,
- FFFD03961c687fef03961c68 /* pipeline/PxcCCDStateStreamPair.h */,
- FFFD03961cd07fef03961cd0 /* pipeline/PxcConstraintBlockStream.h */,
- FFFD03961d387fef03961d38 /* pipeline/PxcContactCache.h */,
- FFFD03961da07fef03961da0 /* pipeline/PxcMaterialMethodImpl.h */,
- FFFD03961e087fef03961e08 /* pipeline/PxcNpBatch.h */,
- FFFD03961e707fef03961e70 /* pipeline/PxcNpCache.h */,
- FFFD03961ed87fef03961ed8 /* pipeline/PxcNpCacheStreamPair.h */,
- FFFD03961f407fef03961f40 /* pipeline/PxcNpContactPrepShared.h */,
- FFFD03961fa87fef03961fa8 /* pipeline/PxcNpMemBlockPool.h */,
- FFFD039620107fef03962010 /* pipeline/PxcNpThreadContext.h */,
- FFFD039620787fef03962078 /* pipeline/PxcNpWorkUnit.h */,
- FFFD039620e07fef039620e0 /* pipeline/PxcRigidBody.h */,
- FFFD039621487fef03962148 /* utils/PxcScratchAllocator.h */,
- FFFD039621b07fef039621b0 /* utils/PxcThreadCoherentCache.h */,
+ FFFDf3019e007fb0f3019e00 /* collision/PxcContactMethodImpl.h */,
+ FFFDf3019e687fb0f3019e68 /* pipeline/PxcCCDStateStreamPair.h */,
+ FFFDf3019ed07fb0f3019ed0 /* pipeline/PxcConstraintBlockStream.h */,
+ FFFDf3019f387fb0f3019f38 /* pipeline/PxcContactCache.h */,
+ FFFDf3019fa07fb0f3019fa0 /* pipeline/PxcMaterialMethodImpl.h */,
+ FFFDf301a0087fb0f301a008 /* pipeline/PxcNpBatch.h */,
+ FFFDf301a0707fb0f301a070 /* pipeline/PxcNpCache.h */,
+ FFFDf301a0d87fb0f301a0d8 /* pipeline/PxcNpCacheStreamPair.h */,
+ FFFDf301a1407fb0f301a140 /* pipeline/PxcNpContactPrepShared.h */,
+ FFFDf301a1a87fb0f301a1a8 /* pipeline/PxcNpMemBlockPool.h */,
+ FFFDf301a2107fb0f301a210 /* pipeline/PxcNpThreadContext.h */,
+ FFFDf301a2787fb0f301a278 /* pipeline/PxcNpWorkUnit.h */,
+ FFFDf301a2e07fb0f301a2e0 /* pipeline/PxcRigidBody.h */,
+ FFFDf301a3487fb0f301a348 /* utils/PxcScratchAllocator.h */,
+ FFFDf301a3b07fb0f301a3b0 /* utils/PxcThreadCoherentCache.h */,
);
name = "Common Includes";
sourceTree = SOURCE_ROOT;
};
- FFFB036069d07fef036069d0 /* LowLevelAABB */ = {
+ FFFBf39094b07fb0f39094b0 /* LowLevelAABB */ = {
isa = PBXGroup;
children = (
- FFFB036092b07fef036092b0 /* include */,
- FFFB036092d87fef036092d8 /* src */,
+ FFFBf39065907fb0f3906590 /* include */,
+ FFFBf39065b87fb0f39065b8 /* src */,
);
name = "LowLevelAABB";
sourceTree = "<group>";
};
- FFFB036092b07fef036092b0 /* include */ = {
+ FFFBf39065907fb0f3906590 /* include */ = {
isa = PBXGroup;
children = (
- FFFD03609f607fef03609f60 /* BpAABBManagerTasks.h */,
- FFFD03609fc87fef03609fc8 /* BpBroadPhase.h */,
- FFFD0360a0307fef0360a030 /* BpBroadPhaseUpdate.h */,
- FFFD0360a0987fef0360a098 /* BpSimpleAABBManager.h */,
+ FFFDf39065e07fb0f39065e0 /* BpAABBManagerTasks.h */,
+ FFFDf39066487fb0f3906648 /* BpBroadPhase.h */,
+ FFFDf39066b07fb0f39066b0 /* BpBroadPhaseUpdate.h */,
+ FFFDf39067187fb0f3906718 /* BpSimpleAABBManager.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
- FFFB036092d87fef036092d8 /* src */ = {
+ FFFBf39065b87fb0f39065b8 /* src */ = {
isa = PBXGroup;
children = (
- FFFD040266007fef04026600 /* BpBroadPhaseMBP.h */,
- FFFD040266687fef04026668 /* BpBroadPhaseMBPCommon.h */,
- FFFD040266d07fef040266d0 /* BpBroadPhaseSap.h */,
- FFFD040267387fef04026738 /* BpBroadPhaseSapAux.h */,
- FFFD040267a07fef040267a0 /* BpMBPTasks.h */,
- FFFD040268087fef04026808 /* BpSAPTasks.h */,
- FFFD040268707fef04026870 /* BpBroadPhase.cpp */,
- FFFD040268d87fef040268d8 /* BpBroadPhaseMBP.cpp */,
- FFFD040269407fef04026940 /* BpBroadPhaseSap.cpp */,
- FFFD040269a87fef040269a8 /* BpBroadPhaseSapAux.cpp */,
- FFFD04026a107fef04026a10 /* BpMBPTasks.cpp */,
- FFFD04026a787fef04026a78 /* BpSAPTasks.cpp */,
- FFFD04026ae07fef04026ae0 /* BpSimpleAABBManager.cpp */,
+ FFFDf48000007fb0f4800000 /* BpBroadPhaseMBP.h */,
+ FFFDf48000687fb0f4800068 /* BpBroadPhaseMBPCommon.h */,
+ FFFDf48000d07fb0f48000d0 /* BpBroadPhaseSap.h */,
+ FFFDf48001387fb0f4800138 /* BpBroadPhaseSapAux.h */,
+ FFFDf48001a07fb0f48001a0 /* BpMBPTasks.h */,
+ FFFDf48002087fb0f4800208 /* BpSAPTasks.h */,
+ FFFDf48002707fb0f4800270 /* BpBroadPhase.cpp */,
+ FFFDf48002d87fb0f48002d8 /* BpBroadPhaseMBP.cpp */,
+ FFFDf48003407fb0f4800340 /* BpBroadPhaseSap.cpp */,
+ FFFDf48003a87fb0f48003a8 /* BpBroadPhaseSapAux.cpp */,
+ FFFDf48004107fb0f4800410 /* BpMBPTasks.cpp */,
+ FFFDf48004787fb0f4800478 /* BpSAPTasks.cpp */,
+ FFFDf48004e07fb0f48004e0 /* BpSimpleAABBManager.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
- FFFB03135dd07fef03135dd0 /* LowLevelDynamics */ = {
+ FFFBf2c04d807fb0f2c04d80 /* LowLevelDynamics */ = {
isa = PBXGroup;
children = (
- FFFB0311f8f07fef0311f8f0 /* Dynamics Source */,
- FFFB0311f9187fef0311f918 /* Dynamics Includes */,
- FFFB0311f9407fef0311f940 /* Dynamics Internal Includes */,
+ FFFBf2c0b7807fb0f2c0b780 /* Dynamics Source */,
+ FFFBf2c0b7a87fb0f2c0b7a8 /* Dynamics Includes */,
+ FFFBf2c0b7d07fb0f2c0b7d0 /* Dynamics Internal Includes */,
);
name = "LowLevelDynamics";
sourceTree = "<group>";
};
- FFFB0311f8f07fef0311f8f0 /* Dynamics Source */ = {
+ FFFBf2c0b7807fb0f2c0b780 /* Dynamics Source */ = {
isa = PBXGroup;
children = (
- FFFD0396ac007fef0396ac00 /* DyArticulation.cpp */,
- FFFD0396ac687fef0396ac68 /* DyArticulationContactPrep.cpp */,
- FFFD0396acd07fef0396acd0 /* DyArticulationContactPrepPF.cpp */,
- FFFD0396ad387fef0396ad38 /* DyArticulationHelper.cpp */,
- FFFD0396ada07fef0396ada0 /* DyArticulationSIMD.cpp */,
- FFFD0396ae087fef0396ae08 /* DyArticulationScalar.cpp */,
- FFFD0396ae707fef0396ae70 /* DyConstraintPartition.cpp */,
- FFFD0396aed87fef0396aed8 /* DyConstraintSetup.cpp */,
- FFFD0396af407fef0396af40 /* DyConstraintSetupBlock.cpp */,
- FFFD0396afa87fef0396afa8 /* DyContactPrep.cpp */,
- FFFD0396b0107fef0396b010 /* DyContactPrep4.cpp */,
- FFFD0396b0787fef0396b078 /* DyContactPrep4PF.cpp */,
- FFFD0396b0e07fef0396b0e0 /* DyContactPrepPF.cpp */,
- FFFD0396b1487fef0396b148 /* DyDynamics.cpp */,
- FFFD0396b1b07fef0396b1b0 /* DyFrictionCorrelation.cpp */,
- FFFD0396b2187fef0396b218 /* DyRigidBodyToSolverBody.cpp */,
- FFFD0396b2807fef0396b280 /* DySolverConstraints.cpp */,
- FFFD0396b2e87fef0396b2e8 /* DySolverConstraintsBlock.cpp */,
- FFFD0396b3507fef0396b350 /* DySolverControl.cpp */,
- FFFD0396b3b87fef0396b3b8 /* DySolverControlPF.cpp */,
- FFFD0396b4207fef0396b420 /* DySolverPFConstraints.cpp */,
- FFFD0396b4887fef0396b488 /* DySolverPFConstraintsBlock.cpp */,
- FFFD0396b4f07fef0396b4f0 /* DyThreadContext.cpp */,
- FFFD0396b5587fef0396b558 /* DyThresholdTable.cpp */,
+ FFFDf21ae0007fb0f21ae000 /* DyArticulation.cpp */,
+ FFFDf21ae0687fb0f21ae068 /* DyArticulationContactPrep.cpp */,
+ FFFDf21ae0d07fb0f21ae0d0 /* DyArticulationContactPrepPF.cpp */,
+ FFFDf21ae1387fb0f21ae138 /* DyArticulationHelper.cpp */,
+ FFFDf21ae1a07fb0f21ae1a0 /* DyArticulationSIMD.cpp */,
+ FFFDf21ae2087fb0f21ae208 /* DyArticulationScalar.cpp */,
+ FFFDf21ae2707fb0f21ae270 /* DyConstraintPartition.cpp */,
+ FFFDf21ae2d87fb0f21ae2d8 /* DyConstraintSetup.cpp */,
+ FFFDf21ae3407fb0f21ae340 /* DyConstraintSetupBlock.cpp */,
+ FFFDf21ae3a87fb0f21ae3a8 /* DyContactPrep.cpp */,
+ FFFDf21ae4107fb0f21ae410 /* DyContactPrep4.cpp */,
+ FFFDf21ae4787fb0f21ae478 /* DyContactPrep4PF.cpp */,
+ FFFDf21ae4e07fb0f21ae4e0 /* DyContactPrepPF.cpp */,
+ FFFDf21ae5487fb0f21ae548 /* DyDynamics.cpp */,
+ FFFDf21ae5b07fb0f21ae5b0 /* DyFrictionCorrelation.cpp */,
+ FFFDf21ae6187fb0f21ae618 /* DyRigidBodyToSolverBody.cpp */,
+ FFFDf21ae6807fb0f21ae680 /* DySolverConstraints.cpp */,
+ FFFDf21ae6e87fb0f21ae6e8 /* DySolverConstraintsBlock.cpp */,
+ FFFDf21ae7507fb0f21ae750 /* DySolverControl.cpp */,
+ FFFDf21ae7b87fb0f21ae7b8 /* DySolverControlPF.cpp */,
+ FFFDf21ae8207fb0f21ae820 /* DySolverPFConstraints.cpp */,
+ FFFDf21ae8887fb0f21ae888 /* DySolverPFConstraintsBlock.cpp */,
+ FFFDf21ae8f07fb0f21ae8f0 /* DyThreadContext.cpp */,
+ FFFDf21ae9587fb0f21ae958 /* DyThresholdTable.cpp */,
);
name = "Dynamics Source";
sourceTree = SOURCE_ROOT;
};
- FFFB0311f9187fef0311f918 /* Dynamics Includes */ = {
+ FFFBf2c0b7a87fb0f2c0b7a8 /* Dynamics Includes */ = {
isa = PBXGroup;
children = (
- FFFD03133ee07fef03133ee0 /* DyArticulation.h */,
- FFFD03133f487fef03133f48 /* DyConstraint.h */,
- FFFD03133fb07fef03133fb0 /* DyConstraintWriteBack.h */,
- FFFD031340187fef03134018 /* DyContext.h */,
- FFFD031340807fef03134080 /* DySleepingConfigulation.h */,
- FFFD031340e87fef031340e8 /* DyThresholdTable.h */,
+ FFFDf2c0cd907fb0f2c0cd90 /* DyArticulation.h */,
+ FFFDf2c0cdf87fb0f2c0cdf8 /* DyConstraint.h */,
+ FFFDf2c0ce607fb0f2c0ce60 /* DyConstraintWriteBack.h */,
+ FFFDf2c0cec87fb0f2c0cec8 /* DyContext.h */,
+ FFFDf2c0cf307fb0f2c0cf30 /* DySleepingConfigulation.h */,
+ FFFDf2c0cf987fb0f2c0cf98 /* DyThresholdTable.h */,
);
name = "Dynamics Includes";
sourceTree = SOURCE_ROOT;
};
- FFFB0311f9407fef0311f940 /* Dynamics Internal Includes */ = {
+ FFFBf2c0b7d07fb0f2c0b7d0 /* Dynamics Internal Includes */ = {
isa = PBXGroup;
children = (
- FFFD0396b6007fef0396b600 /* DyArticulationContactPrep.h */,
- FFFD0396b6687fef0396b668 /* DyArticulationFnsDebug.h */,
- FFFD0396b6d07fef0396b6d0 /* DyArticulationFnsScalar.h */,
- FFFD0396b7387fef0396b738 /* DyArticulationFnsSimd.h */,
- FFFD0396b7a07fef0396b7a0 /* DyArticulationHelper.h */,
- FFFD0396b8087fef0396b808 /* DyArticulationPImpl.h */,
- FFFD0396b8707fef0396b870 /* DyArticulationReference.h */,
- FFFD0396b8d87fef0396b8d8 /* DyArticulationScalar.h */,
- FFFD0396b9407fef0396b940 /* DyArticulationUtils.h */,
- FFFD0396b9a87fef0396b9a8 /* DyBodyCoreIntegrator.h */,
- FFFD0396ba107fef0396ba10 /* DyConstraintPartition.h */,
- FFFD0396ba787fef0396ba78 /* DyConstraintPrep.h */,
- FFFD0396bae07fef0396bae0 /* DyContactPrep.h */,
- FFFD0396bb487fef0396bb48 /* DyContactPrepShared.h */,
- FFFD0396bbb07fef0396bbb0 /* DyContactReduction.h */,
- FFFD0396bc187fef0396bc18 /* DyCorrelationBuffer.h */,
- FFFD0396bc807fef0396bc80 /* DyDynamics.h */,
- FFFD0396bce87fef0396bce8 /* DyFrictionPatch.h */,
- FFFD0396bd507fef0396bd50 /* DyFrictionPatchStreamPair.h */,
- FFFD0396bdb87fef0396bdb8 /* DySolverBody.h */,
- FFFD0396be207fef0396be20 /* DySolverConstraint1D.h */,
- FFFD0396be887fef0396be88 /* DySolverConstraint1D4.h */,
- FFFD0396bef07fef0396bef0 /* DySolverConstraintDesc.h */,
- FFFD0396bf587fef0396bf58 /* DySolverConstraintExtShared.h */,
- FFFD0396bfc07fef0396bfc0 /* DySolverConstraintTypes.h */,
- FFFD0396c0287fef0396c028 /* DySolverConstraintsShared.h */,
- FFFD0396c0907fef0396c090 /* DySolverContact.h */,
- FFFD0396c0f87fef0396c0f8 /* DySolverContact4.h */,
- FFFD0396c1607fef0396c160 /* DySolverContactPF.h */,
- FFFD0396c1c87fef0396c1c8 /* DySolverContactPF4.h */,
- FFFD0396c2307fef0396c230 /* DySolverContext.h */,
- FFFD0396c2987fef0396c298 /* DySolverControl.h */,
- FFFD0396c3007fef0396c300 /* DySolverControlPF.h */,
- FFFD0396c3687fef0396c368 /* DySolverCore.h */,
- FFFD0396c3d07fef0396c3d0 /* DySolverExt.h */,
- FFFD0396c4387fef0396c438 /* DySpatial.h */,
- FFFD0396c4a07fef0396c4a0 /* DyThreadContext.h */,
+ FFFDf21af2007fb0f21af200 /* DyArticulationContactPrep.h */,
+ FFFDf21af2687fb0f21af268 /* DyArticulationFnsDebug.h */,
+ FFFDf21af2d07fb0f21af2d0 /* DyArticulationFnsScalar.h */,
+ FFFDf21af3387fb0f21af338 /* DyArticulationFnsSimd.h */,
+ FFFDf21af3a07fb0f21af3a0 /* DyArticulationHelper.h */,
+ FFFDf21af4087fb0f21af408 /* DyArticulationPImpl.h */,
+ FFFDf21af4707fb0f21af470 /* DyArticulationReference.h */,
+ FFFDf21af4d87fb0f21af4d8 /* DyArticulationScalar.h */,
+ FFFDf21af5407fb0f21af540 /* DyArticulationUtils.h */,
+ FFFDf21af5a87fb0f21af5a8 /* DyBodyCoreIntegrator.h */,
+ FFFDf21af6107fb0f21af610 /* DyConstraintPartition.h */,
+ FFFDf21af6787fb0f21af678 /* DyConstraintPrep.h */,
+ FFFDf21af6e07fb0f21af6e0 /* DyContactPrep.h */,
+ FFFDf21af7487fb0f21af748 /* DyContactPrepShared.h */,
+ FFFDf21af7b07fb0f21af7b0 /* DyContactReduction.h */,
+ FFFDf21af8187fb0f21af818 /* DyCorrelationBuffer.h */,
+ FFFDf21af8807fb0f21af880 /* DyDynamics.h */,
+ FFFDf21af8e87fb0f21af8e8 /* DyFrictionPatch.h */,
+ FFFDf21af9507fb0f21af950 /* DyFrictionPatchStreamPair.h */,
+ FFFDf21af9b87fb0f21af9b8 /* DySolverBody.h */,
+ FFFDf21afa207fb0f21afa20 /* DySolverConstraint1D.h */,
+ FFFDf21afa887fb0f21afa88 /* DySolverConstraint1D4.h */,
+ FFFDf21afaf07fb0f21afaf0 /* DySolverConstraintDesc.h */,
+ FFFDf21afb587fb0f21afb58 /* DySolverConstraintExtShared.h */,
+ FFFDf21afbc07fb0f21afbc0 /* DySolverConstraintTypes.h */,
+ FFFDf21afc287fb0f21afc28 /* DySolverConstraintsShared.h */,
+ FFFDf21afc907fb0f21afc90 /* DySolverContact.h */,
+ FFFDf21afcf87fb0f21afcf8 /* DySolverContact4.h */,
+ FFFDf21afd607fb0f21afd60 /* DySolverContactPF.h */,
+ FFFDf21afdc87fb0f21afdc8 /* DySolverContactPF4.h */,
+ FFFDf21afe307fb0f21afe30 /* DySolverContext.h */,
+ FFFDf21afe987fb0f21afe98 /* DySolverControl.h */,
+ FFFDf21aff007fb0f21aff00 /* DySolverControlPF.h */,
+ FFFDf21aff687fb0f21aff68 /* DySolverCore.h */,
+ FFFDf21affd07fb0f21affd0 /* DySolverExt.h */,
+ FFFDf21b00387fb0f21b0038 /* DySpatial.h */,
+ FFFDf21b00a07fb0f21b00a0 /* DyThreadContext.h */,
);
name = "Dynamics Internal Includes";
sourceTree = SOURCE_ROOT;
};
- FFFB049056907fef04905690 /* LowLevelCloth */ = {
+ FFFBf3927bf07fb0f3927bf0 /* LowLevelCloth */ = {
isa = PBXGroup;
children = (
- FFFB049089407fef04908940 /* include */,
- FFFB049089687fef04908968 /* src */,
+ FFFBf391e9d07fb0f391e9d0 /* include */,
+ FFFBf391e9f87fb0f391e9f8 /* src */,
);
name = "LowLevelCloth";
sourceTree = "<group>";
};
- FFFB049089407fef04908940 /* include */ = {
+ FFFBf391e9d07fb0f391e9d0 /* include */ = {
isa = PBXGroup;
children = (
- FFFD0490cc007fef0490cc00 /* Cloth.h */,
- FFFD0490cc687fef0490cc68 /* Fabric.h */,
- FFFD0490ccd07fef0490ccd0 /* Factory.h */,
- FFFD0490cd387fef0490cd38 /* PhaseConfig.h */,
- FFFD0490cda07fef0490cda0 /* Range.h */,
- FFFD0490ce087fef0490ce08 /* Solver.h */,
- FFFD0490ce707fef0490ce70 /* Types.h */,
+ FFFDf39305407fb0f3930540 /* Cloth.h */,
+ FFFDf39305a87fb0f39305a8 /* Fabric.h */,
+ FFFDf39306107fb0f3930610 /* Factory.h */,
+ FFFDf39306787fb0f3930678 /* PhaseConfig.h */,
+ FFFDf39306e07fb0f39306e0 /* Range.h */,
+ FFFDf39307487fb0f3930748 /* Solver.h */,
+ FFFDf39307b07fb0f39307b0 /* Types.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
- FFFB049089687fef04908968 /* src */ = {
+ FFFBf391e9f87fb0f391e9f8 /* src */ = {
isa = PBXGroup;
children = (
- FFFD05809c007fef05809c00 /* Allocator.h */,
- FFFD05809c687fef05809c68 /* Array.h */,
- FFFD05809cd07fef05809cd0 /* BoundingBox.h */,
- FFFD05809d387fef05809d38 /* ClothBase.h */,
- FFFD05809da07fef05809da0 /* ClothImpl.h */,
- FFFD05809e087fef05809e08 /* IndexPair.h */,
- FFFD05809e707fef05809e70 /* IterationState.h */,
- FFFD05809ed87fef05809ed8 /* MovingAverage.h */,
- FFFD05809f407fef05809f40 /* PointInterpolator.h */,
- FFFD05809fa87fef05809fa8 /* Simd.h */,
- FFFD0580a0107fef0580a010 /* Simd4f.h */,
- FFFD0580a0787fef0580a078 /* Simd4i.h */,
- FFFD0580a0e07fef0580a0e0 /* SimdTypes.h */,
- FFFD0580a1487fef0580a148 /* StackAllocator.h */,
- FFFD0580a1b07fef0580a1b0 /* SwCloth.h */,
- FFFD0580a2187fef0580a218 /* SwClothData.h */,
- FFFD0580a2807fef0580a280 /* SwCollision.h */,
- FFFD0580a2e87fef0580a2e8 /* SwCollisionHelpers.h */,
- FFFD0580a3507fef0580a350 /* SwFabric.h */,
- FFFD0580a3b87fef0580a3b8 /* SwFactory.h */,
- FFFD0580a4207fef0580a420 /* SwInterCollision.h */,
- FFFD0580a4887fef0580a488 /* SwSelfCollision.h */,
- FFFD0580a4f07fef0580a4f0 /* SwSolver.h */,
- FFFD0580a5587fef0580a558 /* SwSolverKernel.h */,
- FFFD0580a5c07fef0580a5c0 /* TripletScheduler.h */,
- FFFD0580a6287fef0580a628 /* Vec4T.h */,
- FFFD0580a6907fef0580a690 /* Allocator.cpp */,
- FFFD0580a6f87fef0580a6f8 /* Factory.cpp */,
- FFFD0580a7607fef0580a760 /* PhaseConfig.cpp */,
- FFFD0580a7c87fef0580a7c8 /* SwCloth.cpp */,
- FFFD0580a8307fef0580a830 /* SwClothData.cpp */,
- FFFD0580a8987fef0580a898 /* SwCollision.cpp */,
- FFFD0580a9007fef0580a900 /* SwFabric.cpp */,
- FFFD0580a9687fef0580a968 /* SwFactory.cpp */,
- FFFD0580a9d07fef0580a9d0 /* SwInterCollision.cpp */,
- FFFD0580aa387fef0580aa38 /* SwSelfCollision.cpp */,
- FFFD0580aaa07fef0580aaa0 /* SwSolver.cpp */,
- FFFD0580ab087fef0580ab08 /* SwSolverKernel.cpp */,
- FFFD0580ab707fef0580ab70 /* TripletScheduler.cpp */,
+ FFFDf48134007fb0f4813400 /* Allocator.h */,
+ FFFDf48134687fb0f4813468 /* Array.h */,
+ FFFDf48134d07fb0f48134d0 /* BoundingBox.h */,
+ FFFDf48135387fb0f4813538 /* ClothBase.h */,
+ FFFDf48135a07fb0f48135a0 /* ClothImpl.h */,
+ FFFDf48136087fb0f4813608 /* IndexPair.h */,
+ FFFDf48136707fb0f4813670 /* IterationState.h */,
+ FFFDf48136d87fb0f48136d8 /* MovingAverage.h */,
+ FFFDf48137407fb0f4813740 /* PointInterpolator.h */,
+ FFFDf48137a87fb0f48137a8 /* Simd.h */,
+ FFFDf48138107fb0f4813810 /* Simd4f.h */,
+ FFFDf48138787fb0f4813878 /* Simd4i.h */,
+ FFFDf48138e07fb0f48138e0 /* SimdTypes.h */,
+ FFFDf48139487fb0f4813948 /* StackAllocator.h */,
+ FFFDf48139b07fb0f48139b0 /* SwCloth.h */,
+ FFFDf4813a187fb0f4813a18 /* SwClothData.h */,
+ FFFDf4813a807fb0f4813a80 /* SwCollision.h */,
+ FFFDf4813ae87fb0f4813ae8 /* SwCollisionHelpers.h */,
+ FFFDf4813b507fb0f4813b50 /* SwFabric.h */,
+ FFFDf4813bb87fb0f4813bb8 /* SwFactory.h */,
+ FFFDf4813c207fb0f4813c20 /* SwInterCollision.h */,
+ FFFDf4813c887fb0f4813c88 /* SwSelfCollision.h */,
+ FFFDf4813cf07fb0f4813cf0 /* SwSolver.h */,
+ FFFDf4813d587fb0f4813d58 /* SwSolverKernel.h */,
+ FFFDf4813dc07fb0f4813dc0 /* TripletScheduler.h */,
+ FFFDf4813e287fb0f4813e28 /* Vec4T.h */,
+ FFFDf4813e907fb0f4813e90 /* Allocator.cpp */,
+ FFFDf4813ef87fb0f4813ef8 /* Factory.cpp */,
+ FFFDf4813f607fb0f4813f60 /* PhaseConfig.cpp */,
+ FFFDf4813fc87fb0f4813fc8 /* SwCloth.cpp */,
+ FFFDf48140307fb0f4814030 /* SwClothData.cpp */,
+ FFFDf48140987fb0f4814098 /* SwCollision.cpp */,
+ FFFDf48141007fb0f4814100 /* SwFabric.cpp */,
+ FFFDf48141687fb0f4814168 /* SwFactory.cpp */,
+ FFFDf48141d07fb0f48141d0 /* SwInterCollision.cpp */,
+ FFFDf48142387fb0f4814238 /* SwSelfCollision.cpp */,
+ FFFDf48142a07fb0f48142a0 /* SwSolver.cpp */,
+ FFFDf48143087fb0f4814308 /* SwSolverKernel.cpp */,
+ FFFDf48143707fb0f4814370 /* TripletScheduler.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
- FFFB035f41907fef035f4190 /* LowLevelParticles */ = {
+ FFFBf2c195d07fb0f2c195d0 /* LowLevelParticles */ = {
isa = PBXGroup;
children = (
- FFFB0361fcf07fef0361fcf0 /* include */,
- FFFB0361fd187fef0361fd18 /* src */,
+ FFFBf2c1a5807fb0f2c1a580 /* include */,
+ FFFBf2c1a5a87fb0f2c1a5a8 /* src */,
);
name = "LowLevelParticles";
sourceTree = "<group>";
};
- FFFB0361fcf07fef0361fcf0 /* include */ = {
+ FFFBf2c1a5807fb0f2c1a580 /* include */ = {
isa = PBXGroup;
children = (
- FFFD040256007fef04025600 /* PtBodyTransformVault.h */,
- FFFD040256687fef04025668 /* PtContext.h */,
- FFFD040256d07fef040256d0 /* PtGridCellVector.h */,
- FFFD040257387fef04025738 /* PtParticle.h */,
- FFFD040257a07fef040257a0 /* PtParticleContactManagerStream.h */,
- FFFD040258087fef04025808 /* PtParticleData.h */,
- FFFD040258707fef04025870 /* PtParticleShape.h */,
- FFFD040258d87fef040258d8 /* PtParticleSystemCore.h */,
- FFFD040259407fef04025940 /* PtParticleSystemFlags.h */,
- FFFD040259a87fef040259a8 /* PtParticleSystemSim.h */,
+ FFFDf21a68007fb0f21a6800 /* PtBodyTransformVault.h */,
+ FFFDf21a68687fb0f21a6868 /* PtContext.h */,
+ FFFDf21a68d07fb0f21a68d0 /* PtGridCellVector.h */,
+ FFFDf21a69387fb0f21a6938 /* PtParticle.h */,
+ FFFDf21a69a07fb0f21a69a0 /* PtParticleContactManagerStream.h */,
+ FFFDf21a6a087fb0f21a6a08 /* PtParticleData.h */,
+ FFFDf21a6a707fb0f21a6a70 /* PtParticleShape.h */,
+ FFFDf21a6ad87fb0f21a6ad8 /* PtParticleSystemCore.h */,
+ FFFDf21a6b407fb0f21a6b40 /* PtParticleSystemFlags.h */,
+ FFFDf21a6ba87fb0f21a6ba8 /* PtParticleSystemSim.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
- FFFB0361fd187fef0361fd18 /* src */ = {
+ FFFBf2c1a5a87fb0f2c1a5a8 /* src */ = {
isa = PBXGroup;
children = (
- FFFD0402f4007fef0402f400 /* PtBatcher.h */,
- FFFD0402f4687fef0402f468 /* PtCollision.h */,
- FFFD0402f4d07fef0402f4d0 /* PtCollisionData.h */,
- FFFD0402f5387fef0402f538 /* PtCollisionHelper.h */,
- FFFD0402f5a07fef0402f5a0 /* PtCollisionMethods.h */,
- FFFD0402f6087fef0402f608 /* PtCollisionParameters.h */,
- FFFD0402f6707fef0402f670 /* PtConfig.h */,
- FFFD0402f6d87fef0402f6d8 /* PtConstants.h */,
- FFFD0402f7407fef0402f740 /* PtContextCpu.h */,
- FFFD0402f7a87fef0402f7a8 /* PtDynamicHelper.h */,
- FFFD0402f8107fef0402f810 /* PtDynamics.h */,
- FFFD0402f8787fef0402f878 /* PtDynamicsKernels.h */,
- FFFD0402f8e07fef0402f8e0 /* PtDynamicsParameters.h */,
- FFFD0402f9487fef0402f948 /* PtDynamicsTempBuffers.h */,
- FFFD0402f9b07fef0402f9b0 /* PtHeightFieldAabbTest.h */,
- FFFD0402fa187fef0402fa18 /* PtPacketSections.h */,
- FFFD0402fa807fef0402fa80 /* PtParticleCell.h */,
- FFFD0402fae87fef0402fae8 /* PtParticleOpcodeCache.h */,
- FFFD0402fb507fef0402fb50 /* PtParticleShapeCpu.h */,
- FFFD0402fbb87fef0402fbb8 /* PtParticleSystemSimCpu.h */,
- FFFD0402fc207fef0402fc20 /* PtSpatialHash.h */,
- FFFD0402fc887fef0402fc88 /* PtSpatialHashHelper.h */,
- FFFD0402fcf07fef0402fcf0 /* PtTwoWayData.h */,
- FFFD0402fd587fef0402fd58 /* PtBatcher.cpp */,
- FFFD0402fdc07fef0402fdc0 /* PtBodyTransformVault.cpp */,
- FFFD0402fe287fef0402fe28 /* PtCollision.cpp */,
- FFFD0402fe907fef0402fe90 /* PtCollisionBox.cpp */,
- FFFD0402fef87fef0402fef8 /* PtCollisionCapsule.cpp */,
- FFFD0402ff607fef0402ff60 /* PtCollisionConvex.cpp */,
- FFFD0402ffc87fef0402ffc8 /* PtCollisionMesh.cpp */,
- FFFD040300307fef04030030 /* PtCollisionPlane.cpp */,
- FFFD040300987fef04030098 /* PtCollisionSphere.cpp */,
- FFFD040301007fef04030100 /* PtContextCpu.cpp */,
- FFFD040301687fef04030168 /* PtDynamics.cpp */,
- FFFD040301d07fef040301d0 /* PtParticleData.cpp */,
- FFFD040302387fef04030238 /* PtParticleShapeCpu.cpp */,
- FFFD040302a07fef040302a0 /* PtParticleSystemSimCpu.cpp */,
- FFFD040303087fef04030308 /* PtSpatialHash.cpp */,
- FFFD040303707fef04030370 /* PtSpatialLocalHash.cpp */,
+ FFFDf21b7c007fb0f21b7c00 /* PtBatcher.h */,
+ FFFDf21b7c687fb0f21b7c68 /* PtCollision.h */,
+ FFFDf21b7cd07fb0f21b7cd0 /* PtCollisionData.h */,
+ FFFDf21b7d387fb0f21b7d38 /* PtCollisionHelper.h */,
+ FFFDf21b7da07fb0f21b7da0 /* PtCollisionMethods.h */,
+ FFFDf21b7e087fb0f21b7e08 /* PtCollisionParameters.h */,
+ FFFDf21b7e707fb0f21b7e70 /* PtConfig.h */,
+ FFFDf21b7ed87fb0f21b7ed8 /* PtConstants.h */,
+ FFFDf21b7f407fb0f21b7f40 /* PtContextCpu.h */,
+ FFFDf21b7fa87fb0f21b7fa8 /* PtDynamicHelper.h */,
+ FFFDf21b80107fb0f21b8010 /* PtDynamics.h */,
+ FFFDf21b80787fb0f21b8078 /* PtDynamicsKernels.h */,
+ FFFDf21b80e07fb0f21b80e0 /* PtDynamicsParameters.h */,
+ FFFDf21b81487fb0f21b8148 /* PtDynamicsTempBuffers.h */,
+ FFFDf21b81b07fb0f21b81b0 /* PtHeightFieldAabbTest.h */,
+ FFFDf21b82187fb0f21b8218 /* PtPacketSections.h */,
+ FFFDf21b82807fb0f21b8280 /* PtParticleCell.h */,
+ FFFDf21b82e87fb0f21b82e8 /* PtParticleOpcodeCache.h */,
+ FFFDf21b83507fb0f21b8350 /* PtParticleShapeCpu.h */,
+ FFFDf21b83b87fb0f21b83b8 /* PtParticleSystemSimCpu.h */,
+ FFFDf21b84207fb0f21b8420 /* PtSpatialHash.h */,
+ FFFDf21b84887fb0f21b8488 /* PtSpatialHashHelper.h */,
+ FFFDf21b84f07fb0f21b84f0 /* PtTwoWayData.h */,
+ FFFDf21b85587fb0f21b8558 /* PtBatcher.cpp */,
+ FFFDf21b85c07fb0f21b85c0 /* PtBodyTransformVault.cpp */,
+ FFFDf21b86287fb0f21b8628 /* PtCollision.cpp */,
+ FFFDf21b86907fb0f21b8690 /* PtCollisionBox.cpp */,
+ FFFDf21b86f87fb0f21b86f8 /* PtCollisionCapsule.cpp */,
+ FFFDf21b87607fb0f21b8760 /* PtCollisionConvex.cpp */,
+ FFFDf21b87c87fb0f21b87c8 /* PtCollisionMesh.cpp */,
+ FFFDf21b88307fb0f21b8830 /* PtCollisionPlane.cpp */,
+ FFFDf21b88987fb0f21b8898 /* PtCollisionSphere.cpp */,
+ FFFDf21b89007fb0f21b8900 /* PtContextCpu.cpp */,
+ FFFDf21b89687fb0f21b8968 /* PtDynamics.cpp */,
+ FFFDf21b89d07fb0f21b89d0 /* PtParticleData.cpp */,
+ FFFDf21b8a387fb0f21b8a38 /* PtParticleShapeCpu.cpp */,
+ FFFDf21b8aa07fb0f21b8aa0 /* PtParticleSystemSimCpu.cpp */,
+ FFFDf21b8b087fb0f21b8b08 /* PtSpatialHash.cpp */,
+ FFFDf21b8b707fb0f21b8b70 /* PtSpatialLocalHash.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
- FFFB0370f9107fef0370f910 /* PxTask */ = {
+ FFFBf2faef607fb0f2faef60 /* PxTask */ = {
isa = PBXGroup;
children = (
- FFFB03714b307fef03714b30 /* include */,
- FFFB03714b587fef03714b58 /* src */,
+ FFFBf2faf3907fb0f2faf390 /* include */,
+ FFFBf2faf3b87fb0f2faf3b8 /* src */,
);
name = "PxTask";
sourceTree = "<group>";
};
- FFFB03714b307fef03714b30 /* include */ = {
+ FFFBf2faf3907fb0f2faf390 /* include */ = {
isa = PBXGroup;
children = (
- FFFD037161d07fef037161d0 /* PxCpuDispatcher.h */,
- FFFD037162387fef03716238 /* PxGpuDispatcher.h */,
- FFFD037162a07fef037162a0 /* PxGpuTask.h */,
- FFFD037163087fef03716308 /* PxTask.h */,
- FFFD037163707fef03716370 /* PxTaskDefine.h */,
- FFFD037163d87fef037163d8 /* PxTaskManager.h */,
+ FFFDf2fad2907fb0f2fad290 /* PxCpuDispatcher.h */,
+ FFFDf2fad2f87fb0f2fad2f8 /* PxGpuDispatcher.h */,
+ FFFDf2fad3607fb0f2fad360 /* PxGpuTask.h */,
+ FFFDf2fad3c87fb0f2fad3c8 /* PxTask.h */,
+ FFFDf2fad4307fb0f2fad430 /* PxTaskDefine.h */,
+ FFFDf2fad4987fb0f2fad498 /* PxTaskManager.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
- FFFB03714b587fef03714b58 /* src */ = {
+ FFFBf2faf3b87fb0f2faf3b8 /* src */ = {
isa = PBXGroup;
children = (
- FFFD03715af07fef03715af0 /* src/TaskManager.cpp */,
+ FFFDf2fafbd07fb0f2fafbd0 /* src/TaskManager.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
- FFFB04b1a4607fef04b1a460 /* PsFastXml */ = {
+ FFFBf39379407fb0f3937940 /* PsFastXml */ = {
isa = PBXGroup;
children = (
- FFFB04b1aa207fef04b1aa20 /* include */,
- FFFB04b1aa487fef04b1aa48 /* src */,
+ FFFBf394abe07fb0f394abe0 /* include */,
+ FFFBf394ac087fb0f394ac08 /* src */,
);
name = "PsFastXml";
sourceTree = "<group>";
};
- FFFB04b1aa207fef04b1aa20 /* include */ = {
+ FFFBf394abe07fb0f394abe0 /* include */ = {
isa = PBXGroup;
children = (
- FFFD04b1abb07fef04b1abb0 /* PsFastXml.h */,
+ FFFDf394ad707fb0f394ad70 /* PsFastXml.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
- FFFB04b1aa487fef04b1aa48 /* src */ = {
+ FFFBf394ac087fb0f394ac08 /* src */ = {
isa = PBXGroup;
children = (
- FFFD04b1acb07fef04b1acb0 /* PsFastXml.cpp */,
+ FFFDf394ae707fb0f394ae70 /* PsFastXml.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
@@ -5011,61 +5011,61 @@
/* End PBXGroup section */
/* Begin PBXNativeTarget section */
- FFFA04b1def07fef04b1def0 /* PhysX */ = {
+ FFFAf39459607fb0f3945960 /* PhysX */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF604b1def07fef04b1def0 /* Build configuration list for PBXNativeTarget "PhysX" */;
+ buildConfigurationList = FFF6f39459607fb0f3945960 /* Build configuration list for PBXNativeTarget "PhysX" */;
buildPhases = (
- FFF204b1def07fef04b1def0,
- FFF804b1def07fef04b1def0,
- FFFC04b1def07fef04b1def0,
+ FFF2f39459607fb0f3945960,
+ FFF8f39459607fb0f3945960,
+ FFFCf39459607fb0f3945960,
);
buildRules = (
);
dependencies = (
- FFF404b272207fef04b27220, /* LowLevel */
- FFF404b2a1d07fef04b2a1d0, /* LowLevelAABB */
- FFF404b265b07fef04b265b0, /* LowLevelCloth */
- FFF404b265507fef04b26550, /* LowLevelDynamics */
- FFF404b266107fef04b26610, /* LowLevelParticles */
- FFF404b271c07fef04b271c0, /* PhysXCommon */
- FFF404b1e1e07fef04b1e1e0, /* PxFoundation */
- FFF404b1de907fef04b1de90, /* PxPvdSDK */
- FFF404b26d107fef04b26d10, /* PxTask */
- FFF404b26c807fef04b26c80, /* SceneQuery */
- FFF404b26ce07fef04b26ce0, /* SimulationController */
+ FFF4f39524c07fb0f39524c0, /* LowLevel */
+ FFF4f39525207fb0f3952520, /* LowLevelAABB */
+ FFF4f39476807fb0f3947680, /* LowLevelCloth */
+ FFF4f39520207fb0f3952020, /* LowLevelDynamics */
+ FFF4f39476e07fb0f39476e0, /* LowLevelParticles */
+ FFF4f3934e207fb0f3934e20, /* PhysXCommon */
+ FFF4f3945c507fb0f3945c50, /* PxFoundation */
+ FFF4f39459007fb0f3945900, /* PxPvdSDK */
+ FFF4f3934f707fb0f3934f70, /* PxTask */
+ FFF4f3934ee07fb0f3934ee0, /* SceneQuery */
+ FFF4f3934f407fb0f3934f40, /* SimulationController */
);
name = "PhysX";
productName = "PhysX";
- productReference = FFFD04b1def07fef04b1def0 /* PhysX */;
+ productReference = FFFDf39459607fb0f3945960 /* PhysX */;
productType = "com.apple.product-type.library.static";
};
- FFFA04b269a07fef04b269a0 /* PhysXCharacterKinematic */ = {
+ FFFAf3934b807fb0f3934b80 /* PhysXCharacterKinematic */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF604b269a07fef04b269a0 /* Build configuration list for PBXNativeTarget "PhysXCharacterKinematic" */;
+ buildConfigurationList = FFF6f3934b807fb0f3934b80 /* Build configuration list for PBXNativeTarget "PhysXCharacterKinematic" */;
buildPhases = (
- FFF204b269a07fef04b269a0,
- FFF804b269a07fef04b269a0,
- FFFC04b269a07fef04b269a0,
+ FFF2f3934b807fb0f3934b80,
+ FFF8f3934b807fb0f3934b80,
+ FFFCf3934b807fb0f3934b80,
);
buildRules = (
);
dependencies = (
- FFF404b2bda07fef04b2bda0, /* PhysXCommon */
- FFF404b2d1d07fef04b2d1d0, /* PhysXExtensions */
- FFF404b2c3a07fef04b2c3a0, /* PxFoundation */
+ FFF4f3955d507fb0f3955d50, /* PhysXCommon */
+ FFF4f39548907fb0f3954890, /* PhysXExtensions */
+ FFF4f39555f07fb0f39555f0, /* PxFoundation */
);
name = "PhysXCharacterKinematic";
productName = "PhysXCharacterKinematic";
- productReference = FFFD04b269a07fef04b269a0 /* PhysXCharacterKinematic */;
+ productReference = FFFDf3934b807fb0f3934b80 /* PhysXCharacterKinematic */;
productType = "com.apple.product-type.library.static";
};
- FFFA04b27f107fef04b27f10 /* PhysXVehicle */ = {
+ FFFAf3950f807fb0f3950f80 /* PhysXVehicle */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF604b27f107fef04b27f10 /* Build configuration list for PBXNativeTarget "PhysXVehicle" */;
+ buildConfigurationList = FFF6f3950f807fb0f3950f80 /* Build configuration list for PBXNativeTarget "PhysXVehicle" */;
buildPhases = (
- FFF204b27f107fef04b27f10,
- FFF804b27f107fef04b27f10,
- FFFC04b27f107fef04b27f10,
+ FFF2f3950f807fb0f3950f80,
+ FFF8f3950f807fb0f3950f80,
+ FFFCf3950f807fb0f3950f80,
);
buildRules = (
);
@@ -5073,34 +5073,34 @@
);
name = "PhysXVehicle";
productName = "PhysXVehicle";
- productReference = FFFD04b27f107fef04b27f10 /* PhysXVehicle */;
+ productReference = FFFDf3950f807fb0f3950f80 /* PhysXVehicle */;
productType = "com.apple.product-type.library.static";
};
- FFFA04b37ba07fef04b37ba0 /* PhysXExtensions */ = {
+ FFFAf39602f07fb0f39602f0 /* PhysXExtensions */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF604b37ba07fef04b37ba0 /* Build configuration list for PBXNativeTarget "PhysXExtensions" */;
+ buildConfigurationList = FFF6f39602f07fb0f39602f0 /* Build configuration list for PBXNativeTarget "PhysXExtensions" */;
buildPhases = (
- FFF204b37ba07fef04b37ba0,
- FFF804b37ba07fef04b37ba0,
- FFFC04b37ba07fef04b37ba0,
+ FFF2f39602f07fb0f39602f0,
+ FFF8f39602f07fb0f39602f0,
+ FFFCf39602f07fb0f39602f0,
);
buildRules = (
);
dependencies = (
- FFF404b372a07fef04b372a0, /* PsFastXml */
+ FFF4f395f9f07fb0f395f9f0, /* PsFastXml */
);
name = "PhysXExtensions";
productName = "PhysXExtensions";
- productReference = FFFD04b37ba07fef04b37ba0 /* PhysXExtensions */;
+ productReference = FFFDf39602f07fb0f39602f0 /* PhysXExtensions */;
productType = "com.apple.product-type.library.static";
};
- FFFA04b4a4f07fef04b4a4f0 /* SceneQuery */ = {
+ FFFAf3972c407fb0f3972c40 /* SceneQuery */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF604b4a4f07fef04b4a4f0 /* Build configuration list for PBXNativeTarget "SceneQuery" */;
+ buildConfigurationList = FFF6f3972c407fb0f3972c40 /* Build configuration list for PBXNativeTarget "SceneQuery" */;
buildPhases = (
- FFF204b4a4f07fef04b4a4f0,
- FFF804b4a4f07fef04b4a4f0,
- FFFC04b4a4f07fef04b4a4f0,
+ FFF2f3972c407fb0f3972c40,
+ FFF8f3972c407fb0f3972c40,
+ FFFCf3972c407fb0f3972c40,
);
buildRules = (
);
@@ -5108,16 +5108,16 @@
);
name = "SceneQuery";
productName = "SceneQuery";
- productReference = FFFD04b4a4f07fef04b4a4f0 /* SceneQuery */;
+ productReference = FFFDf3972c407fb0f3972c40 /* SceneQuery */;
productType = "com.apple.product-type.library.static";
};
- FFFA04b4ea707fef04b4ea70 /* SimulationController */ = {
+ FFFAf39771c07fb0f39771c0 /* SimulationController */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF604b4ea707fef04b4ea70 /* Build configuration list for PBXNativeTarget "SimulationController" */;
+ buildConfigurationList = FFF6f39771c07fb0f39771c0 /* Build configuration list for PBXNativeTarget "SimulationController" */;
buildPhases = (
- FFF204b4ea707fef04b4ea70,
- FFF804b4ea707fef04b4ea70,
- FFFC04b4ea707fef04b4ea70,
+ FFF2f39771c07fb0f39771c0,
+ FFF8f39771c07fb0f39771c0,
+ FFFCf39771c07fb0f39771c0,
);
buildRules = (
);
@@ -5125,54 +5125,54 @@
);
name = "SimulationController";
productName = "SimulationController";
- productReference = FFFD04b4ea707fef04b4ea70 /* SimulationController */;
+ productReference = FFFDf39771c07fb0f39771c0 /* SimulationController */;
productType = "com.apple.product-type.library.static";
};
- FFFA0492c6407fef0492c640 /* PhysXCooking */ = {
+ FFFAf2c8ba007fb0f2c8ba00 /* PhysXCooking */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF60492c6407fef0492c640 /* Build configuration list for PBXNativeTarget "PhysXCooking" */;
+ buildConfigurationList = FFF6f2c8ba007fb0f2c8ba00 /* Build configuration list for PBXNativeTarget "PhysXCooking" */;
buildPhases = (
- FFF20492c6407fef0492c640,
- FFF80492c6407fef0492c640,
- FFFC0492c6407fef0492c640,
+ FFF2f2c8ba007fb0f2c8ba00,
+ FFF8f2c8ba007fb0f2c8ba00,
+ FFFCf2c8ba007fb0f2c8ba00,
);
buildRules = (
);
dependencies = (
- FFF40492f4507fef0492f450, /* PhysXCommon */
- FFF40492f7007fef0492f700, /* PhysXExtensions */
- FFF404918bf07fef04918bf0, /* PxFoundation */
+ FFF4f3a019407fb0f3a01940, /* PhysXCommon */
+ FFF4f3a007707fb0f3a00770, /* PhysXExtensions */
+ FFF4f2c8b8a07fb0f2c8b8a0, /* PxFoundation */
);
name = "PhysXCooking";
productName = "PhysXCooking";
- productReference = FFFD0492c6407fef0492c640 /* PhysXCooking */;
+ productReference = FFFDf2c8ba007fb0f2c8ba00 /* PhysXCooking */;
productType = "com.apple.product-type.library.static";
};
- FFFA0314a5307fef0314a530 /* PhysXCommon */ = {
+ FFFAf299eeb07fb0f299eeb0 /* PhysXCommon */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF60314a5307fef0314a530 /* Build configuration list for PBXNativeTarget "PhysXCommon" */;
+ buildConfigurationList = FFF6f299eeb07fb0f299eeb0 /* Build configuration list for PBXNativeTarget "PhysXCommon" */;
buildPhases = (
- FFF20314a5307fef0314a530,
- FFF80314a5307fef0314a530,
- FFFC0314a5307fef0314a530,
+ FFF2f299eeb07fb0f299eeb0,
+ FFF8f299eeb07fb0f299eeb0,
+ FFFCf299eeb07fb0f299eeb0,
);
buildRules = (
);
dependencies = (
- FFF403100a307fef03100a30, /* PxFoundation */
+ FFF4f29940a07fb0f29940a0, /* PxFoundation */
);
name = "PhysXCommon";
productName = "PhysXCommon";
- productReference = FFFD0314a5307fef0314a530 /* PhysXCommon */;
+ productReference = FFFDf299eeb07fb0f299eeb0 /* PhysXCommon */;
productType = "com.apple.product-type.library.static";
};
- FFFA031431707fef03143170 /* PxFoundation */ = {
+ FFFAf298c0307fb0f298c030 /* PxFoundation */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF6031431707fef03143170 /* Build configuration list for PBXNativeTarget "PxFoundation" */;
+ buildConfigurationList = FFF6f298c0307fb0f298c030 /* Build configuration list for PBXNativeTarget "PxFoundation" */;
buildPhases = (
- FFF2031431707fef03143170,
- FFF8031431707fef03143170,
- FFFC031431707fef03143170,
+ FFF2f298c0307fb0f298c030,
+ FFF8f298c0307fb0f298c030,
+ FFFCf298c0307fb0f298c030,
);
buildRules = (
);
@@ -5180,34 +5180,34 @@
);
name = "PxFoundation";
productName = "PxFoundation";
- productReference = FFFD031431707fef03143170 /* PxFoundation */;
+ productReference = FFFDf298c0307fb0f298c030 /* PxFoundation */;
productType = "com.apple.product-type.library.static";
};
- FFFA030748c07fef030748c0 /* PxPvdSDK */ = {
+ FFFAf14114a07fb0f14114a0 /* PxPvdSDK */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF6030748c07fef030748c0 /* Build configuration list for PBXNativeTarget "PxPvdSDK" */;
+ buildConfigurationList = FFF6f14114a07fb0f14114a0 /* Build configuration list for PBXNativeTarget "PxPvdSDK" */;
buildPhases = (
- FFF2030748c07fef030748c0,
- FFF8030748c07fef030748c0,
- FFFC030748c07fef030748c0,
+ FFF2f14114a07fb0f14114a0,
+ FFF8f14114a07fb0f14114a0,
+ FFFCf14114a07fb0f14114a0,
);
buildRules = (
);
dependencies = (
- FFF402673d607fef02673d60, /* PxFoundation */
+ FFF4f14106507fb0f1410650, /* PxFoundation */
);
name = "PxPvdSDK";
productName = "PxPvdSDK";
- productReference = FFFD030748c07fef030748c0 /* PxPvdSDK */;
+ productReference = FFFDf14114a07fb0f14114a0 /* PxPvdSDK */;
productType = "com.apple.product-type.library.static";
};
- FFFA0310a8f07fef0310a8f0 /* LowLevel */ = {
+ FFFAf2d3dd907fb0f2d3dd90 /* LowLevel */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF60310a8f07fef0310a8f0 /* Build configuration list for PBXNativeTarget "LowLevel" */;
+ buildConfigurationList = FFF6f2d3dd907fb0f2d3dd90 /* Build configuration list for PBXNativeTarget "LowLevel" */;
buildPhases = (
- FFF20310a8f07fef0310a8f0,
- FFF80310a8f07fef0310a8f0,
- FFFC0310a8f07fef0310a8f0,
+ FFF2f2d3dd907fb0f2d3dd90,
+ FFF8f2d3dd907fb0f2d3dd90,
+ FFFCf2d3dd907fb0f2d3dd90,
);
buildRules = (
);
@@ -5215,16 +5215,16 @@
);
name = "LowLevel";
productName = "LowLevel";
- productReference = FFFD0310a8f07fef0310a8f0 /* LowLevel */;
+ productReference = FFFDf2d3dd907fb0f2d3dd90 /* LowLevel */;
productType = "com.apple.product-type.library.static";
};
- FFFA036069d07fef036069d0 /* LowLevelAABB */ = {
+ FFFAf39094b07fb0f39094b0 /* LowLevelAABB */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF6036069d07fef036069d0 /* Build configuration list for PBXNativeTarget "LowLevelAABB" */;
+ buildConfigurationList = FFF6f39094b07fb0f39094b0 /* Build configuration list for PBXNativeTarget "LowLevelAABB" */;
buildPhases = (
- FFF2036069d07fef036069d0,
- FFF8036069d07fef036069d0,
- FFFC036069d07fef036069d0,
+ FFF2f39094b07fb0f39094b0,
+ FFF8f39094b07fb0f39094b0,
+ FFFCf39094b07fb0f39094b0,
);
buildRules = (
);
@@ -5232,16 +5232,16 @@
);
name = "LowLevelAABB";
productName = "LowLevelAABB";
- productReference = FFFD036069d07fef036069d0 /* LowLevelAABB */;
+ productReference = FFFDf39094b07fb0f39094b0 /* LowLevelAABB */;
productType = "com.apple.product-type.library.static";
};
- FFFA03135dd07fef03135dd0 /* LowLevelDynamics */ = {
+ FFFAf2c04d807fb0f2c04d80 /* LowLevelDynamics */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF603135dd07fef03135dd0 /* Build configuration list for PBXNativeTarget "LowLevelDynamics" */;
+ buildConfigurationList = FFF6f2c04d807fb0f2c04d80 /* Build configuration list for PBXNativeTarget "LowLevelDynamics" */;
buildPhases = (
- FFF203135dd07fef03135dd0,
- FFF803135dd07fef03135dd0,
- FFFC03135dd07fef03135dd0,
+ FFF2f2c04d807fb0f2c04d80,
+ FFF8f2c04d807fb0f2c04d80,
+ FFFCf2c04d807fb0f2c04d80,
);
buildRules = (
);
@@ -5249,16 +5249,16 @@
);
name = "LowLevelDynamics";
productName = "LowLevelDynamics";
- productReference = FFFD03135dd07fef03135dd0 /* LowLevelDynamics */;
+ productReference = FFFDf2c04d807fb0f2c04d80 /* LowLevelDynamics */;
productType = "com.apple.product-type.library.static";
};
- FFFA049056907fef04905690 /* LowLevelCloth */ = {
+ FFFAf3927bf07fb0f3927bf0 /* LowLevelCloth */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF6049056907fef04905690 /* Build configuration list for PBXNativeTarget "LowLevelCloth" */;
+ buildConfigurationList = FFF6f3927bf07fb0f3927bf0 /* Build configuration list for PBXNativeTarget "LowLevelCloth" */;
buildPhases = (
- FFF2049056907fef04905690,
- FFF8049056907fef04905690,
- FFFC049056907fef04905690,
+ FFF2f3927bf07fb0f3927bf0,
+ FFF8f3927bf07fb0f3927bf0,
+ FFFCf3927bf07fb0f3927bf0,
);
buildRules = (
);
@@ -5266,16 +5266,16 @@
);
name = "LowLevelCloth";
productName = "LowLevelCloth";
- productReference = FFFD049056907fef04905690 /* LowLevelCloth */;
+ productReference = FFFDf3927bf07fb0f3927bf0 /* LowLevelCloth */;
productType = "com.apple.product-type.library.static";
};
- FFFA035f41907fef035f4190 /* LowLevelParticles */ = {
+ FFFAf2c195d07fb0f2c195d0 /* LowLevelParticles */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF6035f41907fef035f4190 /* Build configuration list for PBXNativeTarget "LowLevelParticles" */;
+ buildConfigurationList = FFF6f2c195d07fb0f2c195d0 /* Build configuration list for PBXNativeTarget "LowLevelParticles" */;
buildPhases = (
- FFF2035f41907fef035f4190,
- FFF8035f41907fef035f4190,
- FFFC035f41907fef035f4190,
+ FFF2f2c195d07fb0f2c195d0,
+ FFF8f2c195d07fb0f2c195d0,
+ FFFCf2c195d07fb0f2c195d0,
);
buildRules = (
);
@@ -5283,16 +5283,16 @@
);
name = "LowLevelParticles";
productName = "LowLevelParticles";
- productReference = FFFD035f41907fef035f4190 /* LowLevelParticles */;
+ productReference = FFFDf2c195d07fb0f2c195d0 /* LowLevelParticles */;
productType = "com.apple.product-type.library.static";
};
- FFFA0370f9107fef0370f910 /* PxTask */ = {
+ FFFAf2faef607fb0f2faef60 /* PxTask */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF60370f9107fef0370f910 /* Build configuration list for PBXNativeTarget "PxTask" */;
+ buildConfigurationList = FFF6f2faef607fb0f2faef60 /* Build configuration list for PBXNativeTarget "PxTask" */;
buildPhases = (
- FFF20370f9107fef0370f910,
- FFF80370f9107fef0370f910,
- FFFC0370f9107fef0370f910,
+ FFF2f2faef607fb0f2faef60,
+ FFF8f2faef607fb0f2faef60,
+ FFFCf2faef607fb0f2faef60,
);
buildRules = (
);
@@ -5300,16 +5300,16 @@
);
name = "PxTask";
productName = "PxTask";
- productReference = FFFD0370f9107fef0370f910 /* PxTask */;
+ productReference = FFFDf2faef607fb0f2faef60 /* PxTask */;
productType = "com.apple.product-type.library.static";
};
- FFFA04b1a4607fef04b1a460 /* PsFastXml */ = {
+ FFFAf39379407fb0f3937940 /* PsFastXml */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF604b1a4607fef04b1a460 /* Build configuration list for PBXNativeTarget "PsFastXml" */;
+ buildConfigurationList = FFF6f39379407fb0f3937940 /* Build configuration list for PBXNativeTarget "PsFastXml" */;
buildPhases = (
- FFF204b1a4607fef04b1a460,
- FFF804b1a4607fef04b1a460,
- FFFC04b1a4607fef04b1a460,
+ FFF2f39379407fb0f3937940,
+ FFF8f39379407fb0f3937940,
+ FFFCf39379407fb0f3937940,
);
buildRules = (
);
@@ -5317,213 +5317,213 @@
);
name = "PsFastXml";
productName = "PsFastXml";
- productReference = FFFD04b1a4607fef04b1a460 /* PsFastXml */;
+ productReference = FFFDf39379407fb0f3937940 /* PsFastXml */;
productType = "com.apple.product-type.library.static";
};
/* End PBXNativeTarget section */
/* Begin XCConfigurationList section */
- FFF604b1def07fef04b1def0 = {
+ FFF6f39459607fb0f3945960 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF705815e007fef05815e00,
- FFF7058164f07fef058164f0,
- FFF705816be07fef05816be0,
- FFF7058172d07fef058172d0,
+ FFF7f21e04007fb0f21e0400,
+ FFF7f21e0af07fb0f21e0af0,
+ FFF7f21e11e07fb0f21e11e0,
+ FFF7f21e18d07fb0f21e18d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "release";
};
- FFF604b269a07fef04b269a0 = {
+ FFF6f3934b807fb0f3934b80 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF705817a007fef05817a00,
- FFF7058180f07fef058180f0,
- FFF7058187e07fef058187e0,
- FFF705818ed07fef05818ed0,
+ FFF7f21e20007fb0f21e2000,
+ FFF7f21e26f07fb0f21e26f0,
+ FFF7f21e2de07fb0f21e2de0,
+ FFF7f21e34d07fb0f21e34d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
- FFF604b27f107fef04b27f10 = {
+ FFF6f3950f807fb0f3950f80 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF7058196007fef05819600,
- FFF705819cf07fef05819cf0,
- FFF70581a3e07fef0581a3e0,
- FFF70581aad07fef0581aad0,
+ FFF7f21e3c007fb0f21e3c00,
+ FFF7f21e42f07fb0f21e42f0,
+ FFF7f21e49e07fb0f21e49e0,
+ FFF7f21e50d07fb0f21e50d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
- FFF604b37ba07fef04b37ba0 = {
+ FFF6f39602f07fb0f39602f0 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF70581b2007fef0581b200,
- FFF70581b8f07fef0581b8f0,
- FFF70581bfe07fef0581bfe0,
- FFF70581c6d07fef0581c6d0,
+ FFF7f21e58007fb0f21e5800,
+ FFF7f21e5ef07fb0f21e5ef0,
+ FFF7f21e65e07fb0f21e65e0,
+ FFF7f21e6cd07fb0f21e6cd0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
- FFF604b4a4f07fef04b4a4f0 = {
+ FFF6f3972c407fb0f3972c40 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF70581ce007fef0581ce00,
- FFF70581d4f07fef0581d4f0,
- FFF70581dbe07fef0581dbe0,
- FFF70581e2d07fef0581e2d0,
+ FFF7f21e74007fb0f21e7400,
+ FFF7f21e7af07fb0f21e7af0,
+ FFF7f21e81e07fb0f21e81e0,
+ FFF7f21e88d07fb0f21e88d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
- FFF604b4ea707fef04b4ea70 = {
+ FFF6f39771c07fb0f39771c0 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF70581ea007fef0581ea00,
- FFF70581f0f07fef0581f0f0,
- FFF70581f7e07fef0581f7e0,
- FFF70581fed07fef0581fed0,
+ FFF7f21e90007fb0f21e9000,
+ FFF7f21e96f07fb0f21e96f0,
+ FFF7f21e9de07fb0f21e9de0,
+ FFF7f21ea4d07fb0f21ea4d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
- FFF60492c6407fef0492c640 = {
+ FFF6f2c8ba007fb0f2c8ba00 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF7058206007fef05820600,
- FFF705820cf07fef05820cf0,
- FFF7058213e07fef058213e0,
- FFF705821ad07fef05821ad0,
+ FFF7f21eac007fb0f21eac00,
+ FFF7f21eb2f07fb0f21eb2f0,
+ FFF7f21eb9e07fb0f21eb9e0,
+ FFF7f21ec0d07fb0f21ec0d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "release";
};
- FFF60314a5307fef0314a530 = {
+ FFF6f299eeb07fb0f299eeb0 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF702861c007fef02861c00,
- FFF7028622f07fef028622f0,
- FFF7028629e07fef028629e0,
- FFF7028630d07fef028630d0,
+ FFF7f30110007fb0f3011000,
+ FFF7f30116f07fb0f30116f0,
+ FFF7f3011de07fb0f3011de0,
+ FFF7f30124d07fb0f30124d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "release";
};
- FFF6031431707fef03143170 = {
+ FFF6f298c0307fb0f298c030 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF7039546007fef03954600,
- FFF703954cf07fef03954cf0,
- FFF7039553e07fef039553e0,
- FFF703955ad07fef03955ad0,
+ FFF7f21a20007fb0f21a2000,
+ FFF7f21a26f07fb0f21a26f0,
+ FFF7f21a2de07fb0f21a2de0,
+ FFF7f21a34d07fb0f21a34d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
- FFF6030748c07fef030748c0 = {
+ FFF6f14114a07fb0f14114a0 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF70286d4007fef0286d400,
- FFF70286daf07fef0286daf0,
- FFF70286e1e07fef0286e1e0,
- FFF70286e8d07fef0286e8d0,
+ FFF7f3012c007fb0f3012c00,
+ FFF7f30132f07fb0f30132f0,
+ FFF7f30139e07fb0f30139e0,
+ FFF7f30140d07fb0f30140d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
- FFF60310a8f07fef0310a8f0 = {
+ FFF6f2d3dd907fb0f2d3dd90 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF703963a007fef03963a00,
- FFF7039640f07fef039640f0,
- FFF7039647e07fef039647e0,
- FFF703964ed07fef03964ed0,
+ FFF7f301cc007fb0f301cc00,
+ FFF7f301d2f07fb0f301d2f0,
+ FFF7f301d9e07fb0f301d9e0,
+ FFF7f301e0d07fb0f301e0d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
- FFF6036069d07fef036069d0 = {
+ FFF6f39094b07fb0f39094b0 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF7040284007fef04028400,
- FFF704028af07fef04028af0,
- FFF7040291e07fef040291e0,
- FFF7040298d07fef040298d0,
+ FFF7f480a4007fb0f480a400,
+ FFF7f480aaf07fb0f480aaf0,
+ FFF7f480b1e07fb0f480b1e0,
+ FFF7f480b8d07fb0f480b8d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
- FFF603135dd07fef03135dd0 = {
+ FFF6f2c04d807fb0f2c04d80 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF70396d0007fef0396d000,
- FFF70396d6f07fef0396d6f0,
- FFF70396dde07fef0396dde0,
- FFF70396e4d07fef0396e4d0,
+ FFF7f21b0c007fb0f21b0c00,
+ FFF7f21b12f07fb0f21b12f0,
+ FFF7f21b19e07fb0f21b19e0,
+ FFF7f21b20d07fb0f21b20d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
- FFF6049056907fef04905690 = {
+ FFF6f3927bf07fb0f3927bf0 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF70580b6007fef0580b600,
- FFF70580bcf07fef0580bcf0,
- FFF70580c3e07fef0580c3e0,
- FFF70580cad07fef0580cad0,
+ FFF7f4814e007fb0f4814e00,
+ FFF7f48154f07fb0f48154f0,
+ FFF7f4815be07fb0f4815be0,
+ FFF7f48162d07fb0f48162d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
- FFF6035f41907fef035f4190 = {
+ FFF6f2c195d07fb0f2c195d0 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF704030e007fef04030e00,
- FFF7040314f07fef040314f0,
- FFF704031be07fef04031be0,
- FFF7040322d07fef040322d0,
+ FFF7f21b96007fb0f21b9600,
+ FFF7f21b9cf07fb0f21b9cf0,
+ FFF7f21ba3e07fb0f21ba3e0,
+ FFF7f21baad07fb0f21baad0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
- FFF60370f9107fef0370f910 = {
+ FFF6f2faef607fb0f2faef60 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF7039754007fef03975400,
- FFF703975af07fef03975af0,
- FFF7039761e07fef039761e0,
- FFF7039768d07fef039768d0,
+ FFF7f1835a007fb0f1835a00,
+ FFF7f18360f07fb0f18360f0,
+ FFF7f18367e07fb0f18367e0,
+ FFF7f1836ed07fb0f1836ed0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
- FFF604b1a4607fef04b1a460 = {
+ FFF6f39379407fb0f3937940 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF704053e007fef04053e00,
- FFF7040544f07fef040544f0,
- FFF704054be07fef04054be0,
- FFF7040552d07fef040552d0,
+ FFF7f481b8007fb0f481b800,
+ FFF7f481bef07fb0f481bef0,
+ FFF7f481c5e07fb0f481c5e0,
+ FFF7f481ccd07fb0f481ccd0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
- FFF60247d5407fef0247d540 = {
+ FFF6f1568a407fb0f1568a40 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF305815e007fef05815e00 /* release */,
- FFF3058164f07fef058164f0 /* debug */,
- FFF305816be07fef05816be0 /* checked */,
- FFF3058172d07fef058172d0 /* profile */,
+ FFF3f21e04007fb0f21e0400 /* release */,
+ FFF3f21e0af07fb0f21e0af0 /* debug */,
+ FFF3f21e11e07fb0f21e11e0 /* checked */,
+ FFF3f21e18d07fb0f21e18d0 /* profile */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "release";
};
/* End XCConfigurationList section */
/* Begin XCBuildConfiguration section */
- FFF705815e007fef05815e00 /* release */ = {
+ FFF7f21e04007fb0f21e0400 /* 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;
@@ -5553,7 +5553,7 @@
};
name = "release";
};
- FFF7058164f07fef058164f0 /* debug */ = {
+ FFF7f21e0af07fb0f21e0af0 /* 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;
@@ -5583,7 +5583,7 @@
};
name = "debug";
};
- FFF705816be07fef05816be0 /* checked */ = {
+ FFF7f21e11e07fb0f21e11e0 /* 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;
@@ -5613,7 +5613,7 @@
};
name = "checked";
};
- FFF7058172d07fef058172d0 /* profile */ = {
+ FFF7f21e18d07fb0f21e18d0 /* 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;
@@ -5643,7 +5643,7 @@
};
name = "profile";
};
- FFF705817a007fef05817a00 /* debug */ = {
+ FFF7f21e20007fb0f21e2000 /* 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;
@@ -5673,7 +5673,7 @@
};
name = "debug";
};
- FFF7058180f07fef058180f0 /* checked */ = {
+ FFF7f21e26f07fb0f21e26f0 /* 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;
@@ -5703,7 +5703,7 @@
};
name = "checked";
};
- FFF7058187e07fef058187e0 /* profile */ = {
+ FFF7f21e2de07fb0f21e2de0 /* 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;
@@ -5733,7 +5733,7 @@
};
name = "profile";
};
- FFF705818ed07fef05818ed0 /* release */ = {
+ FFF7f21e34d07fb0f21e34d0 /* 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;
@@ -5763,7 +5763,7 @@
};
name = "release";
};
- FFF7058196007fef05819600 /* debug */ = {
+ FFF7f21e3c007fb0f21e3c00 /* 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;
@@ -5793,7 +5793,7 @@
};
name = "debug";
};
- FFF705819cf07fef05819cf0 /* checked */ = {
+ FFF7f21e42f07fb0f21e42f0 /* 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;
@@ -5823,7 +5823,7 @@
};
name = "checked";
};
- FFF70581a3e07fef0581a3e0 /* profile */ = {
+ FFF7f21e49e07fb0f21e49e0 /* 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;
@@ -5853,7 +5853,7 @@
};
name = "profile";
};
- FFF70581aad07fef0581aad0 /* release */ = {
+ FFF7f21e50d07fb0f21e50d0 /* 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;
@@ -5883,7 +5883,7 @@
};
name = "release";
};
- FFF70581b2007fef0581b200 /* debug */ = {
+ FFF7f21e58007fb0f21e5800 /* 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;
@@ -5913,7 +5913,7 @@
};
name = "debug";
};
- FFF70581b8f07fef0581b8f0 /* checked */ = {
+ FFF7f21e5ef07fb0f21e5ef0 /* 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;
@@ -5943,7 +5943,7 @@
};
name = "checked";
};
- FFF70581bfe07fef0581bfe0 /* profile */ = {
+ FFF7f21e65e07fb0f21e65e0 /* 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;
@@ -5973,7 +5973,7 @@
};
name = "profile";
};
- FFF70581c6d07fef0581c6d0 /* release */ = {
+ FFF7f21e6cd07fb0f21e6cd0 /* 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;
@@ -6003,7 +6003,7 @@
};
name = "release";
};
- FFF70581ce007fef0581ce00 /* debug */ = {
+ FFF7f21e74007fb0f21e7400 /* 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;
@@ -6033,7 +6033,7 @@
};
name = "debug";
};
- FFF70581d4f07fef0581d4f0 /* checked */ = {
+ FFF7f21e7af07fb0f21e7af0 /* 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;
@@ -6063,7 +6063,7 @@
};
name = "checked";
};
- FFF70581dbe07fef0581dbe0 /* profile */ = {
+ FFF7f21e81e07fb0f21e81e0 /* 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;
@@ -6093,7 +6093,7 @@
};
name = "profile";
};
- FFF70581e2d07fef0581e2d0 /* release */ = {
+ FFF7f21e88d07fb0f21e88d0 /* 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;
@@ -6123,7 +6123,7 @@
};
name = "release";
};
- FFF70581ea007fef0581ea00 /* debug */ = {
+ FFF7f21e90007fb0f21e9000 /* 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;
@@ -6153,7 +6153,7 @@
};
name = "debug";
};
- FFF70581f0f07fef0581f0f0 /* checked */ = {
+ FFF7f21e96f07fb0f21e96f0 /* 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;
@@ -6183,7 +6183,7 @@
};
name = "checked";
};
- FFF70581f7e07fef0581f7e0 /* profile */ = {
+ FFF7f21e9de07fb0f21e9de0 /* 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;
@@ -6213,7 +6213,7 @@
};
name = "profile";
};
- FFF70581fed07fef0581fed0 /* release */ = {
+ FFF7f21ea4d07fb0f21ea4d0 /* 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;
@@ -6243,7 +6243,7 @@
};
name = "release";
};
- FFF7058206007fef05820600 /* release */ = {
+ FFF7f21eac007fb0f21eac00 /* 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;
@@ -6273,7 +6273,7 @@
};
name = "release";
};
- FFF705820cf07fef05820cf0 /* debug */ = {
+ FFF7f21eb2f07fb0f21eb2f0 /* 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;
@@ -6303,7 +6303,7 @@
};
name = "debug";
};
- FFF7058213e07fef058213e0 /* checked */ = {
+ FFF7f21eb9e07fb0f21eb9e0 /* 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;
@@ -6333,7 +6333,7 @@
};
name = "checked";
};
- FFF705821ad07fef05821ad0 /* profile */ = {
+ FFF7f21ec0d07fb0f21ec0d0 /* 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;
@@ -6363,7 +6363,7 @@
};
name = "profile";
};
- FFF702861c007fef02861c00 /* release */ = {
+ FFF7f30110007fb0f3011000 /* 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;
@@ -6393,7 +6393,7 @@
};
name = "release";
};
- FFF7028622f07fef028622f0 /* debug */ = {
+ FFF7f30116f07fb0f30116f0 /* 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;
@@ -6423,7 +6423,7 @@
};
name = "debug";
};
- FFF7028629e07fef028629e0 /* checked */ = {
+ FFF7f3011de07fb0f3011de0 /* 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;
@@ -6453,7 +6453,7 @@
};
name = "checked";
};
- FFF7028630d07fef028630d0 /* profile */ = {
+ FFF7f30124d07fb0f30124d0 /* 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;
@@ -6483,7 +6483,7 @@
};
name = "profile";
};
- FFF7039546007fef03954600 /* debug */ = {
+ FFF7f21a20007fb0f21a2000 /* 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;
@@ -6513,7 +6513,7 @@
};
name = "debug";
};
- FFF703954cf07fef03954cf0 /* release */ = {
+ FFF7f21a26f07fb0f21a26f0 /* 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;
@@ -6543,7 +6543,7 @@
};
name = "release";
};
- FFF7039553e07fef039553e0 /* checked */ = {
+ FFF7f21a2de07fb0f21a2de0 /* 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;
@@ -6573,7 +6573,7 @@
};
name = "checked";
};
- FFF703955ad07fef03955ad0 /* profile */ = {
+ FFF7f21a34d07fb0f21a34d0 /* 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;
@@ -6603,7 +6603,7 @@
};
name = "profile";
};
- FFF70286d4007fef0286d400 /* debug */ = {
+ FFF7f3012c007fb0f3012c00 /* 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;
@@ -6633,7 +6633,7 @@
};
name = "debug";
};
- FFF70286daf07fef0286daf0 /* release */ = {
+ FFF7f30132f07fb0f30132f0 /* 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;
@@ -6663,7 +6663,7 @@
};
name = "release";
};
- FFF70286e1e07fef0286e1e0 /* checked */ = {
+ FFF7f30139e07fb0f30139e0 /* 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;
@@ -6693,7 +6693,7 @@
};
name = "checked";
};
- FFF70286e8d07fef0286e8d0 /* profile */ = {
+ FFF7f30140d07fb0f30140d0 /* 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;
@@ -6723,7 +6723,7 @@
};
name = "profile";
};
- FFF703963a007fef03963a00 /* debug */ = {
+ FFF7f301cc007fb0f301cc00 /* 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;
@@ -6753,7 +6753,7 @@
};
name = "debug";
};
- FFF7039640f07fef039640f0 /* checked */ = {
+ FFF7f301d2f07fb0f301d2f0 /* 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;
@@ -6783,7 +6783,7 @@
};
name = "checked";
};
- FFF7039647e07fef039647e0 /* profile */ = {
+ FFF7f301d9e07fb0f301d9e0 /* 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;
@@ -6813,7 +6813,7 @@
};
name = "profile";
};
- FFF703964ed07fef03964ed0 /* release */ = {
+ FFF7f301e0d07fb0f301e0d0 /* 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;
@@ -6843,7 +6843,7 @@
};
name = "release";
};
- FFF7040284007fef04028400 /* debug */ = {
+ FFF7f480a4007fb0f480a400 /* 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;
@@ -6873,7 +6873,7 @@
};
name = "debug";
};
- FFF704028af07fef04028af0 /* checked */ = {
+ FFF7f480aaf07fb0f480aaf0 /* 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;
@@ -6903,7 +6903,7 @@
};
name = "checked";
};
- FFF7040291e07fef040291e0 /* profile */ = {
+ FFF7f480b1e07fb0f480b1e0 /* 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;
@@ -6933,7 +6933,7 @@
};
name = "profile";
};
- FFF7040298d07fef040298d0 /* release */ = {
+ FFF7f480b8d07fb0f480b8d0 /* 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;
@@ -6963,7 +6963,7 @@
};
name = "release";
};
- FFF70396d0007fef0396d000 /* debug */ = {
+ FFF7f21b0c007fb0f21b0c00 /* 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;
@@ -6993,7 +6993,7 @@
};
name = "debug";
};
- FFF70396d6f07fef0396d6f0 /* checked */ = {
+ FFF7f21b12f07fb0f21b12f0 /* 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;
@@ -7023,7 +7023,7 @@
};
name = "checked";
};
- FFF70396dde07fef0396dde0 /* profile */ = {
+ FFF7f21b19e07fb0f21b19e0 /* 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;
@@ -7053,7 +7053,7 @@
};
name = "profile";
};
- FFF70396e4d07fef0396e4d0 /* release */ = {
+ FFF7f21b20d07fb0f21b20d0 /* 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;
@@ -7083,7 +7083,7 @@
};
name = "release";
};
- FFF70580b6007fef0580b600 /* debug */ = {
+ FFF7f4814e007fb0f4814e00 /* 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;
@@ -7113,7 +7113,7 @@
};
name = "debug";
};
- FFF70580bcf07fef0580bcf0 /* checked */ = {
+ FFF7f48154f07fb0f48154f0 /* 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;
@@ -7143,7 +7143,7 @@
};
name = "checked";
};
- FFF70580c3e07fef0580c3e0 /* profile */ = {
+ FFF7f4815be07fb0f4815be0 /* 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;
@@ -7173,7 +7173,7 @@
};
name = "profile";
};
- FFF70580cad07fef0580cad0 /* release */ = {
+ FFF7f48162d07fb0f48162d0 /* 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;
@@ -7203,7 +7203,7 @@
};
name = "release";
};
- FFF704030e007fef04030e00 /* debug */ = {
+ FFF7f21b96007fb0f21b9600 /* 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;
@@ -7233,7 +7233,7 @@
};
name = "debug";
};
- FFF7040314f07fef040314f0 /* checked */ = {
+ FFF7f21b9cf07fb0f21b9cf0 /* 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;
@@ -7263,7 +7263,7 @@
};
name = "checked";
};
- FFF704031be07fef04031be0 /* profile */ = {
+ FFF7f21ba3e07fb0f21ba3e0 /* 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;
@@ -7293,7 +7293,7 @@
};
name = "profile";
};
- FFF7040322d07fef040322d0 /* release */ = {
+ FFF7f21baad07fb0f21baad0 /* 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;
@@ -7323,7 +7323,7 @@
};
name = "release";
};
- FFF7039754007fef03975400 /* debug */ = {
+ FFF7f1835a007fb0f1835a00 /* 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;
@@ -7353,7 +7353,7 @@
};
name = "debug";
};
- FFF703975af07fef03975af0 /* release */ = {
+ FFF7f18360f07fb0f18360f0 /* 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;
@@ -7383,7 +7383,7 @@
};
name = "release";
};
- FFF7039761e07fef039761e0 /* checked */ = {
+ FFF7f18367e07fb0f18367e0 /* 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;
@@ -7413,7 +7413,7 @@
};
name = "checked";
};
- FFF7039768d07fef039768d0 /* profile */ = {
+ FFF7f1836ed07fb0f1836ed0 /* 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;
@@ -7443,7 +7443,7 @@
};
name = "profile";
};
- FFF704053e007fef04053e00 /* debug */ = {
+ FFF7f481b8007fb0f481b800 /* 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;
@@ -7473,7 +7473,7 @@
};
name = "debug";
};
- FFF7040544f07fef040544f0 /* release */ = {
+ FFF7f481bef07fb0f481bef0 /* 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;
@@ -7503,7 +7503,7 @@
};
name = "release";
};
- FFF704054be07fef04054be0 /* checked */ = {
+ FFF7f481c5e07fb0f481c5e0 /* 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;
@@ -7533,7 +7533,7 @@
};
name = "checked";
};
- FFF7040552d07fef040552d0 /* profile */ = {
+ FFF7f481ccd07fb0f481ccd0 /* 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;
@@ -7563,25 +7563,25 @@
};
name = "profile";
};
- FFF305815e007fef05815e00 /* release */ = {
+ FFF3f21e04007fb0f21e0400 /* release */ = {
isa = XCBuildConfiguration;
buildSettings = {
};
name = "release";
};
- FFF3058164f07fef058164f0 /* debug */ = {
+ FFF3f21e0af07fb0f21e0af0 /* debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
};
name = "debug";
};
- FFF305816be07fef05816be0 /* checked */ = {
+ FFF3f21e11e07fb0f21e11e0 /* checked */ = {
isa = XCBuildConfiguration;
buildSettings = {
};
name = "checked";
};
- FFF3058172d07fef058172d0 /* profile */ = {
+ FFF3f21e18d07fb0f21e18d0 /* profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
};
@@ -7590,34 +7590,34 @@
/* End XCBuildConfiguration section */
/* Begin PBXProject section */
- FFF90247d5407fef0247d540 /* Project object */ = {
+ FFF9f1568a407fb0f1568a40 /* Project object */ = {
isa = PBXProject;
- buildConfigurationList = FFF60247d5407fef0247d540 /* Build configuration list for PBXProject PhysX */;
+ buildConfigurationList = FFF6f1568a407fb0f1568a40 /* Build configuration list for PBXProject PhysX */;
compatibilityVersion = "Xcode 3.2";
hasScannedForEncodings = 1;
- mainGroup = FFFB0247d5a87fef0247d5a8 /* PhysX */;
+ mainGroup = FFFBf1568aa87fb0f1568aa8 /* PhysX */;
targets = (
- FFFA04b1def07fef04b1def0,
- FFFA04b269a07fef04b269a0,
- FFFA04b27f107fef04b27f10,
- FFFA04b37ba07fef04b37ba0,
- FFFA04b4a4f07fef04b4a4f0,
- FFFA04b4ea707fef04b4ea70,
- FFFA0492c6407fef0492c640,
- FFFA0314a5307fef0314a530,
- FFFA031431707fef03143170,
- FFFA030748c07fef030748c0,
- FFFA0310a8f07fef0310a8f0,
- FFFA036069d07fef036069d0,
- FFFA03135dd07fef03135dd0,
- FFFA049056907fef04905690,
- FFFA035f41907fef035f4190,
- FFFA0370f9107fef0370f910,
- FFFA04b1a4607fef04b1a460,
+ FFFAf39459607fb0f3945960,
+ FFFAf3934b807fb0f3934b80,
+ FFFAf3950f807fb0f3950f80,
+ FFFAf39602f07fb0f39602f0,
+ FFFAf3972c407fb0f3972c40,
+ FFFAf39771c07fb0f39771c0,
+ FFFAf2c8ba007fb0f2c8ba00,
+ FFFAf299eeb07fb0f299eeb0,
+ FFFAf298c0307fb0f298c030,
+ FFFAf14114a07fb0f14114a0,
+ FFFAf2d3dd907fb0f2d3dd90,
+ FFFAf39094b07fb0f39094b0,
+ FFFAf2c04d807fb0f2c04d80,
+ FFFAf3927bf07fb0f3927bf0,
+ FFFAf2c195d07fb0f2c195d0,
+ FFFAf2faef607fb0f2faef60,
+ FFFAf39379407fb0f3937940,
);
};
/* End PBXProject section */
};
- rootObject = FFF90247d5407fef0247d540 /* Project object */;
+ rootObject = FFF9f1568a407fb0f1568a40 /* 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 70931d96..f13186fd 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 */
- FFFF9e14e3807f899e14e380 /* SceneQuery in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD9e4ea8a07f899e4ea8a0 /* SceneQuery */; };
- FFFF9e14fb107f899e14fb10 /* SimulationController in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD9e518ab07f899e518ab0 /* SimulationController */; };
- FFFF9d041a387f899d041a38 /* NpActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d041a387f899d041a38 /* NpActor.cpp */; };
- FFFF9d041aa07f899d041aa0 /* NpAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d041aa07f899d041aa0 /* NpAggregate.cpp */; };
- FFFF9d041b087f899d041b08 /* NpArticulation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d041b087f899d041b08 /* NpArticulation.cpp */; };
- FFFF9d041b707f899d041b70 /* NpArticulationJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d041b707f899d041b70 /* NpArticulationJoint.cpp */; };
- FFFF9d041bd87f899d041bd8 /* NpArticulationLink.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d041bd87f899d041bd8 /* NpArticulationLink.cpp */; };
- FFFF9d041c407f899d041c40 /* NpBatchQuery.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d041c407f899d041c40 /* NpBatchQuery.cpp */; };
- FFFF9d041ca87f899d041ca8 /* NpConstraint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d041ca87f899d041ca8 /* NpConstraint.cpp */; };
- FFFF9d041d107f899d041d10 /* NpFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d041d107f899d041d10 /* NpFactory.cpp */; };
- FFFF9d041d787f899d041d78 /* NpMaterial.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d041d787f899d041d78 /* NpMaterial.cpp */; };
- FFFF9d041de07f899d041de0 /* NpMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d041de07f899d041de0 /* NpMetaData.cpp */; };
- FFFF9d041e487f899d041e48 /* NpPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d041e487f899d041e48 /* NpPhysics.cpp */; };
- FFFF9d041eb07f899d041eb0 /* NpPvdSceneQueryCollector.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d041eb07f899d041eb0 /* NpPvdSceneQueryCollector.cpp */; };
- FFFF9d041f187f899d041f18 /* NpReadCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d041f187f899d041f18 /* NpReadCheck.cpp */; };
- FFFF9d041f807f899d041f80 /* NpRigidDynamic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d041f807f899d041f80 /* NpRigidDynamic.cpp */; };
- FFFF9d041fe87f899d041fe8 /* NpRigidStatic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d041fe87f899d041fe8 /* NpRigidStatic.cpp */; };
- FFFF9d0420507f899d042050 /* NpScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0420507f899d042050 /* NpScene.cpp */; };
- FFFF9d0420b87f899d0420b8 /* NpSceneQueries.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0420b87f899d0420b8 /* NpSceneQueries.cpp */; };
- FFFF9d0421207f899d042120 /* NpSerializerAdapter.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0421207f899d042120 /* NpSerializerAdapter.cpp */; };
- FFFF9d0421887f899d042188 /* NpShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0421887f899d042188 /* NpShape.cpp */; };
- FFFF9d0421f07f899d0421f0 /* NpShapeManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0421f07f899d0421f0 /* NpShapeManager.cpp */; };
- FFFF9d0422587f899d042258 /* NpSpatialIndex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0422587f899d042258 /* NpSpatialIndex.cpp */; };
- FFFF9d0422c07f899d0422c0 /* NpVolumeCache.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0422c07f899d0422c0 /* NpVolumeCache.cpp */; };
- FFFF9d0423287f899d042328 /* NpWriteCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0423287f899d042328 /* NpWriteCheck.cpp */; };
- FFFF9d0423907f899d042390 /* PvdMetaDataPvdBinding.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0423907f899d042390 /* PvdMetaDataPvdBinding.cpp */; };
- FFFF9d0423f87f899d0423f8 /* PvdPhysicsClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0423f87f899d0423f8 /* PvdPhysicsClient.cpp */; };
- FFFF9d0426007f899d042600 /* particles/NpParticleFluid.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0426007f899d042600 /* particles/NpParticleFluid.cpp */; };
- FFFF9d0426687f899d042668 /* particles/NpParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0426687f899d042668 /* particles/NpParticleSystem.cpp */; };
- FFFF9d042e207f899d042e20 /* buffering/ScbActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d042e207f899d042e20 /* buffering/ScbActor.cpp */; };
- FFFF9d042e887f899d042e88 /* buffering/ScbAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d042e887f899d042e88 /* buffering/ScbAggregate.cpp */; };
- FFFF9d042ef07f899d042ef0 /* buffering/ScbBase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d042ef07f899d042ef0 /* buffering/ScbBase.cpp */; };
- FFFF9d042f587f899d042f58 /* buffering/ScbCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d042f587f899d042f58 /* buffering/ScbCloth.cpp */; };
- FFFF9d042fc07f899d042fc0 /* buffering/ScbMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d042fc07f899d042fc0 /* buffering/ScbMetaData.cpp */; };
- FFFF9d0430287f899d043028 /* buffering/ScbParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0430287f899d043028 /* buffering/ScbParticleSystem.cpp */; };
- FFFF9d0430907f899d043090 /* buffering/ScbScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0430907f899d043090 /* buffering/ScbScene.cpp */; };
- FFFF9d0430f87f899d0430f8 /* buffering/ScbScenePvdClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0430f87f899d0430f8 /* buffering/ScbScenePvdClient.cpp */; };
- FFFF9d0431607f899d043160 /* buffering/ScbShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0431607f899d043160 /* buffering/ScbShape.cpp */; };
- FFFF9d0433007f899d043300 /* cloth/NpCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0433007f899d043300 /* cloth/NpCloth.cpp */; };
- FFFF9d0433687f899d043368 /* cloth/NpClothFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0433687f899d043368 /* cloth/NpClothFabric.cpp */; };
- FFFF9d0433d07f899d0433d0 /* cloth/NpClothParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0433d07f899d0433d0 /* cloth/NpClothParticleData.cpp */; };
- FFFF9d0434387f899d043438 /* ../../ImmediateMode/src/NpImmediateMode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0434387f899d043438 /* ../../ImmediateMode/src/NpImmediateMode.cpp */; };
- FFFF9d03bba87f899d03bba8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD9d03bba87f899d03bba8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */; };
- FFFF9d03bc107f899d03bc10 /* core/src/PxMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD9d03bc107f899d03bc10 /* core/src/PxMetaDataObjects.cpp */; };
+ FFFF441a9ae07fba441a9ae0 /* SceneQuery in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD441d40a07fba441d40a0 /* SceneQuery */; };
+ FFFF441a9b407fba441a9b40 /* SimulationController in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD441d86207fba441d8620 /* SimulationController */; };
+ FFFF44844c387fba44844c38 /* NpActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD44844c387fba44844c38 /* NpActor.cpp */; };
+ FFFF44844ca07fba44844ca0 /* NpAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD44844ca07fba44844ca0 /* NpAggregate.cpp */; };
+ FFFF44844d087fba44844d08 /* NpArticulation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD44844d087fba44844d08 /* NpArticulation.cpp */; };
+ FFFF44844d707fba44844d70 /* NpArticulationJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD44844d707fba44844d70 /* NpArticulationJoint.cpp */; };
+ FFFF44844dd87fba44844dd8 /* NpArticulationLink.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD44844dd87fba44844dd8 /* NpArticulationLink.cpp */; };
+ FFFF44844e407fba44844e40 /* NpBatchQuery.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD44844e407fba44844e40 /* NpBatchQuery.cpp */; };
+ FFFF44844ea87fba44844ea8 /* NpConstraint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD44844ea87fba44844ea8 /* NpConstraint.cpp */; };
+ FFFF44844f107fba44844f10 /* NpFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD44844f107fba44844f10 /* NpFactory.cpp */; };
+ FFFF44844f787fba44844f78 /* NpMaterial.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD44844f787fba44844f78 /* NpMaterial.cpp */; };
+ FFFF44844fe07fba44844fe0 /* NpMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD44844fe07fba44844fe0 /* NpMetaData.cpp */; };
+ FFFF448450487fba44845048 /* NpPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448450487fba44845048 /* NpPhysics.cpp */; };
+ FFFF448450b07fba448450b0 /* NpPvdSceneQueryCollector.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448450b07fba448450b0 /* NpPvdSceneQueryCollector.cpp */; };
+ FFFF448451187fba44845118 /* NpReadCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448451187fba44845118 /* NpReadCheck.cpp */; };
+ FFFF448451807fba44845180 /* NpRigidDynamic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448451807fba44845180 /* NpRigidDynamic.cpp */; };
+ FFFF448451e87fba448451e8 /* NpRigidStatic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448451e87fba448451e8 /* NpRigidStatic.cpp */; };
+ FFFF448452507fba44845250 /* NpScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448452507fba44845250 /* NpScene.cpp */; };
+ FFFF448452b87fba448452b8 /* NpSceneQueries.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448452b87fba448452b8 /* NpSceneQueries.cpp */; };
+ FFFF448453207fba44845320 /* NpSerializerAdapter.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448453207fba44845320 /* NpSerializerAdapter.cpp */; };
+ FFFF448453887fba44845388 /* NpShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448453887fba44845388 /* NpShape.cpp */; };
+ FFFF448453f07fba448453f0 /* NpShapeManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448453f07fba448453f0 /* NpShapeManager.cpp */; };
+ FFFF448454587fba44845458 /* NpSpatialIndex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448454587fba44845458 /* NpSpatialIndex.cpp */; };
+ FFFF448454c07fba448454c0 /* NpVolumeCache.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448454c07fba448454c0 /* NpVolumeCache.cpp */; };
+ FFFF448455287fba44845528 /* NpWriteCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448455287fba44845528 /* NpWriteCheck.cpp */; };
+ FFFF448455907fba44845590 /* PvdMetaDataPvdBinding.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448455907fba44845590 /* PvdMetaDataPvdBinding.cpp */; };
+ FFFF448455f87fba448455f8 /* PvdPhysicsClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448455f87fba448455f8 /* PvdPhysicsClient.cpp */; };
+ FFFF448458007fba44845800 /* particles/NpParticleFluid.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448458007fba44845800 /* particles/NpParticleFluid.cpp */; };
+ FFFF448458687fba44845868 /* particles/NpParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448458687fba44845868 /* particles/NpParticleSystem.cpp */; };
+ FFFF448460207fba44846020 /* buffering/ScbActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448460207fba44846020 /* buffering/ScbActor.cpp */; };
+ FFFF448460887fba44846088 /* buffering/ScbAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448460887fba44846088 /* buffering/ScbAggregate.cpp */; };
+ FFFF448460f07fba448460f0 /* buffering/ScbBase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448460f07fba448460f0 /* buffering/ScbBase.cpp */; };
+ FFFF448461587fba44846158 /* buffering/ScbCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448461587fba44846158 /* buffering/ScbCloth.cpp */; };
+ FFFF448461c07fba448461c0 /* buffering/ScbMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448461c07fba448461c0 /* buffering/ScbMetaData.cpp */; };
+ FFFF448462287fba44846228 /* buffering/ScbParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448462287fba44846228 /* buffering/ScbParticleSystem.cpp */; };
+ FFFF448462907fba44846290 /* buffering/ScbScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448462907fba44846290 /* buffering/ScbScene.cpp */; };
+ FFFF448462f87fba448462f8 /* buffering/ScbScenePvdClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448462f87fba448462f8 /* buffering/ScbScenePvdClient.cpp */; };
+ FFFF448463607fba44846360 /* buffering/ScbShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448463607fba44846360 /* buffering/ScbShape.cpp */; };
+ FFFF448465007fba44846500 /* cloth/NpCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448465007fba44846500 /* cloth/NpCloth.cpp */; };
+ FFFF448465687fba44846568 /* cloth/NpClothFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448465687fba44846568 /* cloth/NpClothFabric.cpp */; };
+ FFFF448465d07fba448465d0 /* cloth/NpClothParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448465d07fba448465d0 /* cloth/NpClothParticleData.cpp */; };
+ FFFF448466387fba44846638 /* ../../ImmediateMode/src/NpImmediateMode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448466387fba44846638 /* ../../ImmediateMode/src/NpImmediateMode.cpp */; };
+ FFFF4483eda87fba4483eda8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD4483eda87fba4483eda8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */; };
+ FFFF4483ee107fba4483ee10 /* core/src/PxMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD4483ee107fba4483ee10 /* core/src/PxMetaDataObjects.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFD9e12f7c07f899e12f7c0 /* PhysX */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysX"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFD9d040c007f899d040c00 /* NpActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.h"; path = "../../PhysX/src/NpActor.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d040c687f899d040c68 /* NpActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActorTemplate.h"; path = "../../PhysX/src/NpActorTemplate.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d040cd07f899d040cd0 /* NpAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.h"; path = "../../PhysX/src/NpAggregate.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d040d387f899d040d38 /* NpArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.h"; path = "../../PhysX/src/NpArticulation.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d040da07f899d040da0 /* NpArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.h"; path = "../../PhysX/src/NpArticulationJoint.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d040e087f899d040e08 /* NpArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.h"; path = "../../PhysX/src/NpArticulationLink.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d040e707f899d040e70 /* NpBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.h"; path = "../../PhysX/src/NpBatchQuery.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d040ed87f899d040ed8 /* NpCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpCast.h"; path = "../../PhysX/src/NpCast.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d040f407f899d040f40 /* NpConnector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConnector.h"; path = "../../PhysX/src/NpConnector.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d040fa87f899d040fa8 /* NpConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.h"; path = "../../PhysX/src/NpConstraint.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0410107f899d041010 /* NpFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.h"; path = "../../PhysX/src/NpFactory.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0410787f899d041078 /* NpMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.h"; path = "../../PhysX/src/NpMaterial.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0410e07f899d0410e0 /* NpMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterialManager.h"; path = "../../PhysX/src/NpMaterialManager.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0411487f899d041148 /* NpPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.h"; path = "../../PhysX/src/NpPhysics.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0411b07f899d0411b0 /* NpPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysicsInsertionCallback.h"; path = "../../PhysX/src/NpPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0412187f899d041218 /* NpPtrTableStorageManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPtrTableStorageManager.h"; path = "../../PhysX/src/NpPtrTableStorageManager.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0412807f899d041280 /* NpPvdSceneQueryCollector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.h"; path = "../../PhysX/src/NpPvdSceneQueryCollector.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0412e87f899d0412e8 /* NpQueryShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpQueryShared.h"; path = "../../PhysX/src/NpQueryShared.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0413507f899d041350 /* NpReadCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.h"; path = "../../PhysX/src/NpReadCheck.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0413b87f899d0413b8 /* NpRigidActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplate.h"; path = "../../PhysX/src/NpRigidActorTemplate.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0414207f899d041420 /* NpRigidActorTemplateInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplateInternal.h"; path = "../../PhysX/src/NpRigidActorTemplateInternal.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0414887f899d041488 /* NpRigidBodyTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidBodyTemplate.h"; path = "../../PhysX/src/NpRigidBodyTemplate.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0414f07f899d0414f0 /* NpRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.h"; path = "../../PhysX/src/NpRigidDynamic.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0415587f899d041558 /* NpRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.h"; path = "../../PhysX/src/NpRigidStatic.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0415c07f899d0415c0 /* NpScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.h"; path = "../../PhysX/src/NpScene.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0416287f899d041628 /* NpSceneQueries.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.h"; path = "../../PhysX/src/NpSceneQueries.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0416907f899d041690 /* NpShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.h"; path = "../../PhysX/src/NpShape.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0416f87f899d0416f8 /* NpShapeManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.h"; path = "../../PhysX/src/NpShapeManager.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0417607f899d041760 /* NpSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.h"; path = "../../PhysX/src/NpSpatialIndex.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0417c87f899d0417c8 /* NpVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.h"; path = "../../PhysX/src/NpVolumeCache.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0418307f899d041830 /* NpWriteCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.h"; path = "../../PhysX/src/NpWriteCheck.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0418987f899d041898 /* PvdMetaDataBindingData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataBindingData.h"; path = "../../PhysX/src/PvdMetaDataBindingData.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0419007f899d041900 /* PvdMetaDataPvdBinding.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.h"; path = "../../PhysX/src/PvdMetaDataPvdBinding.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0419687f899d041968 /* PvdPhysicsClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.h"; path = "../../PhysX/src/PvdPhysicsClient.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0419d07f899d0419d0 /* PvdTypeNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdTypeNames.h"; path = "../../PhysX/src/PvdTypeNames.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d041a387f899d041a38 /* NpActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.cpp"; path = "../../PhysX/src/NpActor.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d041aa07f899d041aa0 /* NpAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.cpp"; path = "../../PhysX/src/NpAggregate.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d041b087f899d041b08 /* NpArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.cpp"; path = "../../PhysX/src/NpArticulation.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d041b707f899d041b70 /* NpArticulationJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.cpp"; path = "../../PhysX/src/NpArticulationJoint.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d041bd87f899d041bd8 /* NpArticulationLink.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.cpp"; path = "../../PhysX/src/NpArticulationLink.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d041c407f899d041c40 /* NpBatchQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.cpp"; path = "../../PhysX/src/NpBatchQuery.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d041ca87f899d041ca8 /* NpConstraint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.cpp"; path = "../../PhysX/src/NpConstraint.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d041d107f899d041d10 /* NpFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.cpp"; path = "../../PhysX/src/NpFactory.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d041d787f899d041d78 /* NpMaterial.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.cpp"; path = "../../PhysX/src/NpMaterial.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d041de07f899d041de0 /* NpMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMetaData.cpp"; path = "../../PhysX/src/NpMetaData.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d041e487f899d041e48 /* NpPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.cpp"; path = "../../PhysX/src/NpPhysics.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d041eb07f899d041eb0 /* NpPvdSceneQueryCollector.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.cpp"; path = "../../PhysX/src/NpPvdSceneQueryCollector.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d041f187f899d041f18 /* NpReadCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.cpp"; path = "../../PhysX/src/NpReadCheck.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d041f807f899d041f80 /* NpRigidDynamic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.cpp"; path = "../../PhysX/src/NpRigidDynamic.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d041fe87f899d041fe8 /* NpRigidStatic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.cpp"; path = "../../PhysX/src/NpRigidStatic.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0420507f899d042050 /* NpScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.cpp"; path = "../../PhysX/src/NpScene.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0420b87f899d0420b8 /* NpSceneQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.cpp"; path = "../../PhysX/src/NpSceneQueries.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0421207f899d042120 /* NpSerializerAdapter.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSerializerAdapter.cpp"; path = "../../PhysX/src/NpSerializerAdapter.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0421887f899d042188 /* NpShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.cpp"; path = "../../PhysX/src/NpShape.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0421f07f899d0421f0 /* NpShapeManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.cpp"; path = "../../PhysX/src/NpShapeManager.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0422587f899d042258 /* NpSpatialIndex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.cpp"; path = "../../PhysX/src/NpSpatialIndex.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0422c07f899d0422c0 /* NpVolumeCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.cpp"; path = "../../PhysX/src/NpVolumeCache.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0423287f899d042328 /* NpWriteCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.cpp"; path = "../../PhysX/src/NpWriteCheck.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0423907f899d042390 /* PvdMetaDataPvdBinding.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.cpp"; path = "../../PhysX/src/PvdMetaDataPvdBinding.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0423f87f899d0423f8 /* PvdPhysicsClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.cpp"; path = "../../PhysX/src/PvdPhysicsClient.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0424607f899d042460 /* particles/NpParticleBaseTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleBaseTemplate.h"; path = "../../PhysX/src/particles/NpParticleBaseTemplate.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0424c87f899d0424c8 /* particles/NpParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.h"; path = "../../PhysX/src/particles/NpParticleFluid.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0425307f899d042530 /* particles/NpParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluidReadData.h"; path = "../../PhysX/src/particles/NpParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0425987f899d042598 /* particles/NpParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.h"; path = "../../PhysX/src/particles/NpParticleSystem.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0426007f899d042600 /* particles/NpParticleFluid.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.cpp"; path = "../../PhysX/src/particles/NpParticleFluid.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0426687f899d042668 /* particles/NpParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.cpp"; path = "../../PhysX/src/particles/NpParticleSystem.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0426d07f899d0426d0 /* buffering/ScbActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.h"; path = "../../PhysX/src/buffering/ScbActor.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0427387f899d042738 /* buffering/ScbAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.h"; path = "../../PhysX/src/buffering/ScbAggregate.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0427a07f899d0427a0 /* buffering/ScbArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulation.h"; path = "../../PhysX/src/buffering/ScbArticulation.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0428087f899d042808 /* buffering/ScbArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulationJoint.h"; path = "../../PhysX/src/buffering/ScbArticulationJoint.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0428707f899d042870 /* buffering/ScbBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.h"; path = "../../PhysX/src/buffering/ScbBase.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0428d87f899d0428d8 /* buffering/ScbBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBody.h"; path = "../../PhysX/src/buffering/ScbBody.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0429407f899d042940 /* buffering/ScbCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.h"; path = "../../PhysX/src/buffering/ScbCloth.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0429a87f899d0429a8 /* buffering/ScbConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbConstraint.h"; path = "../../PhysX/src/buffering/ScbConstraint.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d042a107f899d042a10 /* buffering/ScbDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbDefs.h"; path = "../../PhysX/src/buffering/ScbDefs.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d042a787f899d042a78 /* buffering/ScbNpDeps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbNpDeps.h"; path = "../../PhysX/src/buffering/ScbNpDeps.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d042ae07f899d042ae0 /* buffering/ScbParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.h"; path = "../../PhysX/src/buffering/ScbParticleSystem.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d042b487f899d042b48 /* buffering/ScbRigidObject.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidObject.h"; path = "../../PhysX/src/buffering/ScbRigidObject.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d042bb07f899d042bb0 /* buffering/ScbRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidStatic.h"; path = "../../PhysX/src/buffering/ScbRigidStatic.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d042c187f899d042c18 /* buffering/ScbScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.h"; path = "../../PhysX/src/buffering/ScbScene.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d042c807f899d042c80 /* buffering/ScbSceneBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbSceneBuffer.h"; path = "../../PhysX/src/buffering/ScbSceneBuffer.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d042ce87f899d042ce8 /* buffering/ScbScenePvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.h"; path = "../../PhysX/src/buffering/ScbScenePvdClient.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d042d507f899d042d50 /* buffering/ScbShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.h"; path = "../../PhysX/src/buffering/ScbShape.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d042db87f899d042db8 /* buffering/ScbType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbType.h"; path = "../../PhysX/src/buffering/ScbType.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d042e207f899d042e20 /* buffering/ScbActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.cpp"; path = "../../PhysX/src/buffering/ScbActor.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d042e887f899d042e88 /* buffering/ScbAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.cpp"; path = "../../PhysX/src/buffering/ScbAggregate.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d042ef07f899d042ef0 /* buffering/ScbBase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.cpp"; path = "../../PhysX/src/buffering/ScbBase.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d042f587f899d042f58 /* buffering/ScbCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.cpp"; path = "../../PhysX/src/buffering/ScbCloth.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d042fc07f899d042fc0 /* buffering/ScbMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbMetaData.cpp"; path = "../../PhysX/src/buffering/ScbMetaData.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0430287f899d043028 /* buffering/ScbParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.cpp"; path = "../../PhysX/src/buffering/ScbParticleSystem.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0430907f899d043090 /* buffering/ScbScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.cpp"; path = "../../PhysX/src/buffering/ScbScene.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0430f87f899d0430f8 /* buffering/ScbScenePvdClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.cpp"; path = "../../PhysX/src/buffering/ScbScenePvdClient.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0431607f899d043160 /* buffering/ScbShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.cpp"; path = "../../PhysX/src/buffering/ScbShape.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0431c87f899d0431c8 /* cloth/NpCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.h"; path = "../../PhysX/src/cloth/NpCloth.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0432307f899d043230 /* cloth/NpClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.h"; path = "../../PhysX/src/cloth/NpClothFabric.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0432987f899d043298 /* cloth/NpClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.h"; path = "../../PhysX/src/cloth/NpClothParticleData.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0433007f899d043300 /* cloth/NpCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.cpp"; path = "../../PhysX/src/cloth/NpCloth.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0433687f899d043368 /* cloth/NpClothFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.cpp"; path = "../../PhysX/src/cloth/NpClothFabric.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0433d07f899d0433d0 /* cloth/NpClothParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.cpp"; path = "../../PhysX/src/cloth/NpClothParticleData.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0434387f899d043438 /* ../../ImmediateMode/src/NpImmediateMode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "../../ImmediateMode/src/NpImmediateMode.cpp"; path = "../../ImmediateMode/src/NpImmediateMode.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0436007f899d043600 /* PxActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxActor.h"; path = "../../../Include/PxActor.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0436687f899d043668 /* PxAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAggregate.h"; path = "../../../Include/PxAggregate.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0436d07f899d0436d0 /* PxArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulation.h"; path = "../../../Include/PxArticulation.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0437387f899d043738 /* PxArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationJoint.h"; path = "../../../Include/PxArticulationJoint.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0437a07f899d0437a0 /* PxArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationLink.h"; path = "../../../Include/PxArticulationLink.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0438087f899d043808 /* PxBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQuery.h"; path = "../../../Include/PxBatchQuery.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0438707f899d043870 /* PxBatchQueryDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQueryDesc.h"; path = "../../../Include/PxBatchQueryDesc.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0438d87f899d0438d8 /* PxBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhase.h"; path = "../../../Include/PxBroadPhase.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0439407f899d043940 /* PxClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClient.h"; path = "../../../Include/PxClient.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0439a87f899d0439a8 /* PxConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraint.h"; path = "../../../Include/PxConstraint.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d043a107f899d043a10 /* PxConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintDesc.h"; path = "../../../Include/PxConstraintDesc.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d043a787f899d043a78 /* PxContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContact.h"; path = "../../../Include/PxContact.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d043ae07f899d043ae0 /* PxContactModifyCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContactModifyCallback.h"; path = "../../../Include/PxContactModifyCallback.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d043b487f899d043b48 /* PxDeletionListener.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDeletionListener.h"; path = "../../../Include/PxDeletionListener.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d043bb07f899d043bb0 /* PxFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFiltering.h"; path = "../../../Include/PxFiltering.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d043c187f899d043c18 /* PxForceMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxForceMode.h"; path = "../../../Include/PxForceMode.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d043c807f899d043c80 /* PxImmediateMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxImmediateMode.h"; path = "../../../Include/PxImmediateMode.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d043ce87f899d043ce8 /* PxLockedData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxLockedData.h"; path = "../../../Include/PxLockedData.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d043d507f899d043d50 /* PxMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMaterial.h"; path = "../../../Include/PxMaterial.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d043db87f899d043db8 /* PxPhysXConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysXConfig.h"; path = "../../../Include/PxPhysXConfig.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d043e207f899d043e20 /* PxPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysics.h"; path = "../../../Include/PxPhysics.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d043e887f899d043e88 /* PxPhysicsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsAPI.h"; path = "../../../Include/PxPhysicsAPI.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d043ef07f899d043ef0 /* PxPhysicsSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsSerialization.h"; path = "../../../Include/PxPhysicsSerialization.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d043f587f899d043f58 /* PxPhysicsVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsVersion.h"; path = "../../../Include/PxPhysicsVersion.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d043fc07f899d043fc0 /* PxPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPruningStructure.h"; path = "../../../Include/PxPruningStructure.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0440287f899d044028 /* PxQueryFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryFiltering.h"; path = "../../../Include/PxQueryFiltering.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0440907f899d044090 /* PxQueryReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryReport.h"; path = "../../../Include/PxQueryReport.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0440f87f899d0440f8 /* PxRigidActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActor.h"; path = "../../../Include/PxRigidActor.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0441607f899d044160 /* PxRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBody.h"; path = "../../../Include/PxRigidBody.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0441c87f899d0441c8 /* PxRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidDynamic.h"; path = "../../../Include/PxRigidDynamic.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0442307f899d044230 /* PxRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidStatic.h"; path = "../../../Include/PxRigidStatic.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0442987f899d044298 /* PxScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxScene.h"; path = "../../../Include/PxScene.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0443007f899d044300 /* PxSceneDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneDesc.h"; path = "../../../Include/PxSceneDesc.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0443687f899d044368 /* PxSceneLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneLock.h"; path = "../../../Include/PxSceneLock.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0443d07f899d0443d0 /* PxShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShape.h"; path = "../../../Include/PxShape.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0444387f899d044438 /* PxSimulationEventCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationEventCallback.h"; path = "../../../Include/PxSimulationEventCallback.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0444a07f899d0444a0 /* PxSimulationStatistics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationStatistics.h"; path = "../../../Include/PxSimulationStatistics.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0445087f899d044508 /* PxSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSpatialIndex.h"; path = "../../../Include/PxSpatialIndex.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0445707f899d044570 /* PxVisualizationParameter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVisualizationParameter.h"; path = "../../../Include/PxVisualizationParameter.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0445d87f899d0445d8 /* PxVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVolumeCache.h"; path = "../../../Include/PxVolumeCache.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0446407f899d044640 /* particles/PxParticleBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBase.h"; path = "../../../Include/particles/PxParticleBase.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0446a87f899d0446a8 /* particles/PxParticleBaseFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBaseFlag.h"; path = "../../../Include/particles/PxParticleBaseFlag.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0447107f899d044710 /* particles/PxParticleCreationData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleCreationData.h"; path = "../../../Include/particles/PxParticleCreationData.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0447787f899d044778 /* particles/PxParticleFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFlag.h"; path = "../../../Include/particles/PxParticleFlag.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0447e07f899d0447e0 /* particles/PxParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluid.h"; path = "../../../Include/particles/PxParticleFluid.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0448487f899d044848 /* particles/PxParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluidReadData.h"; path = "../../../Include/particles/PxParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0448b07f899d0448b0 /* particles/PxParticleReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleReadData.h"; path = "../../../Include/particles/PxParticleReadData.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0449187f899d044918 /* particles/PxParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleSystem.h"; path = "../../../Include/particles/PxParticleSystem.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0449807f899d044980 /* pvd/PxPvdSceneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pvd/PxPvdSceneClient.h"; path = "../../../Include/pvd/PxPvdSceneClient.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0449e87f899d0449e8 /* cloth/PxCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxCloth.h"; path = "../../../Include/cloth/PxCloth.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d044a507f899d044a50 /* cloth/PxClothCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothCollisionData.h"; path = "../../../Include/cloth/PxClothCollisionData.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d044ab87f899d044ab8 /* cloth/PxClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothFabric.h"; path = "../../../Include/cloth/PxClothFabric.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d044b207f899d044b20 /* cloth/PxClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothParticleData.h"; path = "../../../Include/cloth/PxClothParticleData.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d044b887f899d044b88 /* cloth/PxClothTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothTypes.h"; path = "../../../Include/cloth/PxClothTypes.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d03b8007f899d03b800 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d03b8687f899d03b868 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d03b8d07f899d03b8d0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d03b9387f899d03b938 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d03b9a07f899d03b9a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d03ba087f899d03ba08 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d03ba707f899d03ba70 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d03bad87f899d03bad8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d03bb407f899d03bb40 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d03bba87f899d03bba8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "core/src/PxAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXMetaData/core/src/PxAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d03bc107f899d03bc10 /* core/src/PxMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "core/src/PxMetaDataObjects.cpp"; path = "../../PhysXMetaData/core/src/PxMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD441a7e907fba441a7e90 /* PhysX */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysX"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFD44843e007fba44843e00 /* NpActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.h"; path = "../../PhysX/src/NpActor.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44843e687fba44843e68 /* NpActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActorTemplate.h"; path = "../../PhysX/src/NpActorTemplate.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44843ed07fba44843ed0 /* NpAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.h"; path = "../../PhysX/src/NpAggregate.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44843f387fba44843f38 /* NpArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.h"; path = "../../PhysX/src/NpArticulation.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44843fa07fba44843fa0 /* NpArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.h"; path = "../../PhysX/src/NpArticulationJoint.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448440087fba44844008 /* NpArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.h"; path = "../../PhysX/src/NpArticulationLink.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448440707fba44844070 /* NpBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.h"; path = "../../PhysX/src/NpBatchQuery.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448440d87fba448440d8 /* NpCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpCast.h"; path = "../../PhysX/src/NpCast.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448441407fba44844140 /* NpConnector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConnector.h"; path = "../../PhysX/src/NpConnector.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448441a87fba448441a8 /* NpConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.h"; path = "../../PhysX/src/NpConstraint.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448442107fba44844210 /* NpFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.h"; path = "../../PhysX/src/NpFactory.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448442787fba44844278 /* NpMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.h"; path = "../../PhysX/src/NpMaterial.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448442e07fba448442e0 /* NpMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterialManager.h"; path = "../../PhysX/src/NpMaterialManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448443487fba44844348 /* NpPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.h"; path = "../../PhysX/src/NpPhysics.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448443b07fba448443b0 /* NpPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysicsInsertionCallback.h"; path = "../../PhysX/src/NpPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448444187fba44844418 /* NpPtrTableStorageManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPtrTableStorageManager.h"; path = "../../PhysX/src/NpPtrTableStorageManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448444807fba44844480 /* NpPvdSceneQueryCollector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.h"; path = "../../PhysX/src/NpPvdSceneQueryCollector.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448444e87fba448444e8 /* NpQueryShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpQueryShared.h"; path = "../../PhysX/src/NpQueryShared.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448445507fba44844550 /* NpReadCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.h"; path = "../../PhysX/src/NpReadCheck.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448445b87fba448445b8 /* NpRigidActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplate.h"; path = "../../PhysX/src/NpRigidActorTemplate.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448446207fba44844620 /* NpRigidActorTemplateInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplateInternal.h"; path = "../../PhysX/src/NpRigidActorTemplateInternal.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448446887fba44844688 /* NpRigidBodyTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidBodyTemplate.h"; path = "../../PhysX/src/NpRigidBodyTemplate.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448446f07fba448446f0 /* NpRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.h"; path = "../../PhysX/src/NpRigidDynamic.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448447587fba44844758 /* NpRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.h"; path = "../../PhysX/src/NpRigidStatic.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448447c07fba448447c0 /* NpScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.h"; path = "../../PhysX/src/NpScene.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448448287fba44844828 /* NpSceneQueries.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.h"; path = "../../PhysX/src/NpSceneQueries.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448448907fba44844890 /* NpShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.h"; path = "../../PhysX/src/NpShape.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448448f87fba448448f8 /* NpShapeManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.h"; path = "../../PhysX/src/NpShapeManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448449607fba44844960 /* NpSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.h"; path = "../../PhysX/src/NpSpatialIndex.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448449c87fba448449c8 /* NpVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.h"; path = "../../PhysX/src/NpVolumeCache.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44844a307fba44844a30 /* NpWriteCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.h"; path = "../../PhysX/src/NpWriteCheck.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44844a987fba44844a98 /* PvdMetaDataBindingData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataBindingData.h"; path = "../../PhysX/src/PvdMetaDataBindingData.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44844b007fba44844b00 /* PvdMetaDataPvdBinding.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.h"; path = "../../PhysX/src/PvdMetaDataPvdBinding.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44844b687fba44844b68 /* PvdPhysicsClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.h"; path = "../../PhysX/src/PvdPhysicsClient.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44844bd07fba44844bd0 /* PvdTypeNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdTypeNames.h"; path = "../../PhysX/src/PvdTypeNames.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44844c387fba44844c38 /* NpActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.cpp"; path = "../../PhysX/src/NpActor.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD44844ca07fba44844ca0 /* NpAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.cpp"; path = "../../PhysX/src/NpAggregate.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD44844d087fba44844d08 /* NpArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.cpp"; path = "../../PhysX/src/NpArticulation.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD44844d707fba44844d70 /* NpArticulationJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.cpp"; path = "../../PhysX/src/NpArticulationJoint.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD44844dd87fba44844dd8 /* NpArticulationLink.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.cpp"; path = "../../PhysX/src/NpArticulationLink.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD44844e407fba44844e40 /* NpBatchQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.cpp"; path = "../../PhysX/src/NpBatchQuery.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD44844ea87fba44844ea8 /* NpConstraint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.cpp"; path = "../../PhysX/src/NpConstraint.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD44844f107fba44844f10 /* NpFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.cpp"; path = "../../PhysX/src/NpFactory.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD44844f787fba44844f78 /* NpMaterial.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.cpp"; path = "../../PhysX/src/NpMaterial.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD44844fe07fba44844fe0 /* NpMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMetaData.cpp"; path = "../../PhysX/src/NpMetaData.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448450487fba44845048 /* NpPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.cpp"; path = "../../PhysX/src/NpPhysics.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448450b07fba448450b0 /* NpPvdSceneQueryCollector.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.cpp"; path = "../../PhysX/src/NpPvdSceneQueryCollector.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448451187fba44845118 /* NpReadCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.cpp"; path = "../../PhysX/src/NpReadCheck.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448451807fba44845180 /* NpRigidDynamic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.cpp"; path = "../../PhysX/src/NpRigidDynamic.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448451e87fba448451e8 /* NpRigidStatic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.cpp"; path = "../../PhysX/src/NpRigidStatic.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448452507fba44845250 /* NpScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.cpp"; path = "../../PhysX/src/NpScene.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448452b87fba448452b8 /* NpSceneQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.cpp"; path = "../../PhysX/src/NpSceneQueries.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448453207fba44845320 /* NpSerializerAdapter.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSerializerAdapter.cpp"; path = "../../PhysX/src/NpSerializerAdapter.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448453887fba44845388 /* NpShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.cpp"; path = "../../PhysX/src/NpShape.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448453f07fba448453f0 /* NpShapeManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.cpp"; path = "../../PhysX/src/NpShapeManager.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448454587fba44845458 /* NpSpatialIndex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.cpp"; path = "../../PhysX/src/NpSpatialIndex.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448454c07fba448454c0 /* NpVolumeCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.cpp"; path = "../../PhysX/src/NpVolumeCache.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448455287fba44845528 /* NpWriteCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.cpp"; path = "../../PhysX/src/NpWriteCheck.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448455907fba44845590 /* PvdMetaDataPvdBinding.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.cpp"; path = "../../PhysX/src/PvdMetaDataPvdBinding.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448455f87fba448455f8 /* PvdPhysicsClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.cpp"; path = "../../PhysX/src/PvdPhysicsClient.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448456607fba44845660 /* particles/NpParticleBaseTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleBaseTemplate.h"; path = "../../PhysX/src/particles/NpParticleBaseTemplate.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448456c87fba448456c8 /* particles/NpParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.h"; path = "../../PhysX/src/particles/NpParticleFluid.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448457307fba44845730 /* particles/NpParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluidReadData.h"; path = "../../PhysX/src/particles/NpParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448457987fba44845798 /* particles/NpParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.h"; path = "../../PhysX/src/particles/NpParticleSystem.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448458007fba44845800 /* particles/NpParticleFluid.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.cpp"; path = "../../PhysX/src/particles/NpParticleFluid.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448458687fba44845868 /* particles/NpParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.cpp"; path = "../../PhysX/src/particles/NpParticleSystem.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448458d07fba448458d0 /* buffering/ScbActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.h"; path = "../../PhysX/src/buffering/ScbActor.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448459387fba44845938 /* buffering/ScbAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.h"; path = "../../PhysX/src/buffering/ScbAggregate.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448459a07fba448459a0 /* buffering/ScbArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulation.h"; path = "../../PhysX/src/buffering/ScbArticulation.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44845a087fba44845a08 /* buffering/ScbArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulationJoint.h"; path = "../../PhysX/src/buffering/ScbArticulationJoint.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44845a707fba44845a70 /* buffering/ScbBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.h"; path = "../../PhysX/src/buffering/ScbBase.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44845ad87fba44845ad8 /* buffering/ScbBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBody.h"; path = "../../PhysX/src/buffering/ScbBody.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44845b407fba44845b40 /* buffering/ScbCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.h"; path = "../../PhysX/src/buffering/ScbCloth.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44845ba87fba44845ba8 /* buffering/ScbConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbConstraint.h"; path = "../../PhysX/src/buffering/ScbConstraint.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44845c107fba44845c10 /* buffering/ScbDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbDefs.h"; path = "../../PhysX/src/buffering/ScbDefs.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44845c787fba44845c78 /* buffering/ScbNpDeps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbNpDeps.h"; path = "../../PhysX/src/buffering/ScbNpDeps.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44845ce07fba44845ce0 /* buffering/ScbParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.h"; path = "../../PhysX/src/buffering/ScbParticleSystem.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44845d487fba44845d48 /* buffering/ScbRigidObject.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidObject.h"; path = "../../PhysX/src/buffering/ScbRigidObject.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44845db07fba44845db0 /* buffering/ScbRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidStatic.h"; path = "../../PhysX/src/buffering/ScbRigidStatic.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44845e187fba44845e18 /* buffering/ScbScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.h"; path = "../../PhysX/src/buffering/ScbScene.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44845e807fba44845e80 /* buffering/ScbSceneBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbSceneBuffer.h"; path = "../../PhysX/src/buffering/ScbSceneBuffer.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44845ee87fba44845ee8 /* buffering/ScbScenePvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.h"; path = "../../PhysX/src/buffering/ScbScenePvdClient.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44845f507fba44845f50 /* buffering/ScbShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.h"; path = "../../PhysX/src/buffering/ScbShape.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44845fb87fba44845fb8 /* buffering/ScbType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbType.h"; path = "../../PhysX/src/buffering/ScbType.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448460207fba44846020 /* buffering/ScbActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.cpp"; path = "../../PhysX/src/buffering/ScbActor.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448460887fba44846088 /* buffering/ScbAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.cpp"; path = "../../PhysX/src/buffering/ScbAggregate.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448460f07fba448460f0 /* buffering/ScbBase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.cpp"; path = "../../PhysX/src/buffering/ScbBase.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448461587fba44846158 /* buffering/ScbCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.cpp"; path = "../../PhysX/src/buffering/ScbCloth.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448461c07fba448461c0 /* buffering/ScbMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbMetaData.cpp"; path = "../../PhysX/src/buffering/ScbMetaData.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448462287fba44846228 /* buffering/ScbParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.cpp"; path = "../../PhysX/src/buffering/ScbParticleSystem.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448462907fba44846290 /* buffering/ScbScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.cpp"; path = "../../PhysX/src/buffering/ScbScene.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448462f87fba448462f8 /* buffering/ScbScenePvdClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.cpp"; path = "../../PhysX/src/buffering/ScbScenePvdClient.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448463607fba44846360 /* buffering/ScbShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.cpp"; path = "../../PhysX/src/buffering/ScbShape.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448463c87fba448463c8 /* cloth/NpCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.h"; path = "../../PhysX/src/cloth/NpCloth.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448464307fba44846430 /* cloth/NpClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.h"; path = "../../PhysX/src/cloth/NpClothFabric.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448464987fba44846498 /* cloth/NpClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.h"; path = "../../PhysX/src/cloth/NpClothParticleData.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448465007fba44846500 /* cloth/NpCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.cpp"; path = "../../PhysX/src/cloth/NpCloth.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448465687fba44846568 /* cloth/NpClothFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.cpp"; path = "../../PhysX/src/cloth/NpClothFabric.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448465d07fba448465d0 /* cloth/NpClothParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.cpp"; path = "../../PhysX/src/cloth/NpClothParticleData.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448466387fba44846638 /* ../../ImmediateMode/src/NpImmediateMode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "../../ImmediateMode/src/NpImmediateMode.cpp"; path = "../../ImmediateMode/src/NpImmediateMode.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448468007fba44846800 /* PxActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxActor.h"; path = "../../../Include/PxActor.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448468687fba44846868 /* PxAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAggregate.h"; path = "../../../Include/PxAggregate.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448468d07fba448468d0 /* PxArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulation.h"; path = "../../../Include/PxArticulation.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448469387fba44846938 /* PxArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationJoint.h"; path = "../../../Include/PxArticulationJoint.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448469a07fba448469a0 /* PxArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationLink.h"; path = "../../../Include/PxArticulationLink.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44846a087fba44846a08 /* PxBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQuery.h"; path = "../../../Include/PxBatchQuery.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44846a707fba44846a70 /* PxBatchQueryDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQueryDesc.h"; path = "../../../Include/PxBatchQueryDesc.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44846ad87fba44846ad8 /* PxBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhase.h"; path = "../../../Include/PxBroadPhase.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44846b407fba44846b40 /* PxClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClient.h"; path = "../../../Include/PxClient.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44846ba87fba44846ba8 /* PxConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraint.h"; path = "../../../Include/PxConstraint.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44846c107fba44846c10 /* PxConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintDesc.h"; path = "../../../Include/PxConstraintDesc.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44846c787fba44846c78 /* PxContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContact.h"; path = "../../../Include/PxContact.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44846ce07fba44846ce0 /* PxContactModifyCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContactModifyCallback.h"; path = "../../../Include/PxContactModifyCallback.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44846d487fba44846d48 /* PxDeletionListener.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDeletionListener.h"; path = "../../../Include/PxDeletionListener.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44846db07fba44846db0 /* PxFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFiltering.h"; path = "../../../Include/PxFiltering.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44846e187fba44846e18 /* PxForceMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxForceMode.h"; path = "../../../Include/PxForceMode.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44846e807fba44846e80 /* PxImmediateMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxImmediateMode.h"; path = "../../../Include/PxImmediateMode.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44846ee87fba44846ee8 /* PxLockedData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxLockedData.h"; path = "../../../Include/PxLockedData.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44846f507fba44846f50 /* PxMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMaterial.h"; path = "../../../Include/PxMaterial.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44846fb87fba44846fb8 /* PxPhysXConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysXConfig.h"; path = "../../../Include/PxPhysXConfig.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448470207fba44847020 /* PxPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysics.h"; path = "../../../Include/PxPhysics.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448470887fba44847088 /* PxPhysicsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsAPI.h"; path = "../../../Include/PxPhysicsAPI.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448470f07fba448470f0 /* PxPhysicsSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsSerialization.h"; path = "../../../Include/PxPhysicsSerialization.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448471587fba44847158 /* PxPhysicsVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsVersion.h"; path = "../../../Include/PxPhysicsVersion.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448471c07fba448471c0 /* PxPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPruningStructure.h"; path = "../../../Include/PxPruningStructure.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448472287fba44847228 /* PxQueryFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryFiltering.h"; path = "../../../Include/PxQueryFiltering.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448472907fba44847290 /* PxQueryReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryReport.h"; path = "../../../Include/PxQueryReport.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448472f87fba448472f8 /* PxRigidActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActor.h"; path = "../../../Include/PxRigidActor.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448473607fba44847360 /* PxRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBody.h"; path = "../../../Include/PxRigidBody.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448473c87fba448473c8 /* PxRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidDynamic.h"; path = "../../../Include/PxRigidDynamic.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448474307fba44847430 /* PxRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidStatic.h"; path = "../../../Include/PxRigidStatic.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448474987fba44847498 /* PxScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxScene.h"; path = "../../../Include/PxScene.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448475007fba44847500 /* PxSceneDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneDesc.h"; path = "../../../Include/PxSceneDesc.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448475687fba44847568 /* PxSceneLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneLock.h"; path = "../../../Include/PxSceneLock.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448475d07fba448475d0 /* PxShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShape.h"; path = "../../../Include/PxShape.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448476387fba44847638 /* PxSimulationEventCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationEventCallback.h"; path = "../../../Include/PxSimulationEventCallback.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448476a07fba448476a0 /* PxSimulationStatistics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationStatistics.h"; path = "../../../Include/PxSimulationStatistics.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448477087fba44847708 /* PxSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSpatialIndex.h"; path = "../../../Include/PxSpatialIndex.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448477707fba44847770 /* PxVisualizationParameter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVisualizationParameter.h"; path = "../../../Include/PxVisualizationParameter.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448477d87fba448477d8 /* PxVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVolumeCache.h"; path = "../../../Include/PxVolumeCache.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448478407fba44847840 /* particles/PxParticleBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBase.h"; path = "../../../Include/particles/PxParticleBase.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448478a87fba448478a8 /* particles/PxParticleBaseFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBaseFlag.h"; path = "../../../Include/particles/PxParticleBaseFlag.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448479107fba44847910 /* particles/PxParticleCreationData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleCreationData.h"; path = "../../../Include/particles/PxParticleCreationData.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448479787fba44847978 /* particles/PxParticleFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFlag.h"; path = "../../../Include/particles/PxParticleFlag.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448479e07fba448479e0 /* particles/PxParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluid.h"; path = "../../../Include/particles/PxParticleFluid.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44847a487fba44847a48 /* particles/PxParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluidReadData.h"; path = "../../../Include/particles/PxParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44847ab07fba44847ab0 /* particles/PxParticleReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleReadData.h"; path = "../../../Include/particles/PxParticleReadData.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44847b187fba44847b18 /* particles/PxParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleSystem.h"; path = "../../../Include/particles/PxParticleSystem.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44847b807fba44847b80 /* pvd/PxPvdSceneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pvd/PxPvdSceneClient.h"; path = "../../../Include/pvd/PxPvdSceneClient.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44847be87fba44847be8 /* cloth/PxCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxCloth.h"; path = "../../../Include/cloth/PxCloth.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44847c507fba44847c50 /* cloth/PxClothCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothCollisionData.h"; path = "../../../Include/cloth/PxClothCollisionData.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44847cb87fba44847cb8 /* cloth/PxClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothFabric.h"; path = "../../../Include/cloth/PxClothFabric.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44847d207fba44847d20 /* cloth/PxClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothParticleData.h"; path = "../../../Include/cloth/PxClothParticleData.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44847d887fba44847d88 /* cloth/PxClothTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothTypes.h"; path = "../../../Include/cloth/PxClothTypes.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4483ea007fba4483ea00 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4483ea687fba4483ea68 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4483ead07fba4483ead0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4483eb387fba4483eb38 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4483eba07fba4483eba0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4483ec087fba4483ec08 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4483ec707fba4483ec70 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4483ecd87fba4483ecd8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4483ed407fba4483ed40 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4483eda87fba4483eda8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "core/src/PxAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXMetaData/core/src/PxAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4483ee107fba4483ee10 /* 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 */
- FFF29e12f7c07f899e12f7c0 /* Resources */ = {
+ FFF2441a7e907fba441a7e90 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -233,7 +233,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFC9e12f7c07f899e12f7c0 /* Frameworks */ = {
+ FFFC441a7e907fba441a7e90 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -243,52 +243,52 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF89e12f7c07f899e12f7c0 /* Sources */ = {
+ FFF8441a7e907fba441a7e90 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFF9d041a387f899d041a38,
- FFFF9d041aa07f899d041aa0,
- FFFF9d041b087f899d041b08,
- FFFF9d041b707f899d041b70,
- FFFF9d041bd87f899d041bd8,
- FFFF9d041c407f899d041c40,
- FFFF9d041ca87f899d041ca8,
- FFFF9d041d107f899d041d10,
- FFFF9d041d787f899d041d78,
- FFFF9d041de07f899d041de0,
- FFFF9d041e487f899d041e48,
- FFFF9d041eb07f899d041eb0,
- FFFF9d041f187f899d041f18,
- FFFF9d041f807f899d041f80,
- FFFF9d041fe87f899d041fe8,
- FFFF9d0420507f899d042050,
- FFFF9d0420b87f899d0420b8,
- FFFF9d0421207f899d042120,
- FFFF9d0421887f899d042188,
- FFFF9d0421f07f899d0421f0,
- FFFF9d0422587f899d042258,
- FFFF9d0422c07f899d0422c0,
- FFFF9d0423287f899d042328,
- FFFF9d0423907f899d042390,
- FFFF9d0423f87f899d0423f8,
- FFFF9d0426007f899d042600,
- FFFF9d0426687f899d042668,
- FFFF9d042e207f899d042e20,
- FFFF9d042e887f899d042e88,
- FFFF9d042ef07f899d042ef0,
- FFFF9d042f587f899d042f58,
- FFFF9d042fc07f899d042fc0,
- FFFF9d0430287f899d043028,
- FFFF9d0430907f899d043090,
- FFFF9d0430f87f899d0430f8,
- FFFF9d0431607f899d043160,
- FFFF9d0433007f899d043300,
- FFFF9d0433687f899d043368,
- FFFF9d0433d07f899d0433d0,
- FFFF9d0434387f899d043438,
- FFFF9d03bba87f899d03bba8,
- FFFF9d03bc107f899d03bc10,
+ FFFF44844c387fba44844c38,
+ FFFF44844ca07fba44844ca0,
+ FFFF44844d087fba44844d08,
+ FFFF44844d707fba44844d70,
+ FFFF44844dd87fba44844dd8,
+ FFFF44844e407fba44844e40,
+ FFFF44844ea87fba44844ea8,
+ FFFF44844f107fba44844f10,
+ FFFF44844f787fba44844f78,
+ FFFF44844fe07fba44844fe0,
+ FFFF448450487fba44845048,
+ FFFF448450b07fba448450b0,
+ FFFF448451187fba44845118,
+ FFFF448451807fba44845180,
+ FFFF448451e87fba448451e8,
+ FFFF448452507fba44845250,
+ FFFF448452b87fba448452b8,
+ FFFF448453207fba44845320,
+ FFFF448453887fba44845388,
+ FFFF448453f07fba448453f0,
+ FFFF448454587fba44845458,
+ FFFF448454c07fba448454c0,
+ FFFF448455287fba44845528,
+ FFFF448455907fba44845590,
+ FFFF448455f87fba448455f8,
+ FFFF448458007fba44845800,
+ FFFF448458687fba44845868,
+ FFFF448460207fba44846020,
+ FFFF448460887fba44846088,
+ FFFF448460f07fba448460f0,
+ FFFF448461587fba44846158,
+ FFFF448461c07fba448461c0,
+ FFFF448462287fba44846228,
+ FFFF448462907fba44846290,
+ FFFF448462f87fba448462f8,
+ FFFF448463607fba44846360,
+ FFFF448465007fba44846500,
+ FFFF448465687fba44846568,
+ FFFF448465d07fba448465d0,
+ FFFF448466387fba44846638,
+ FFFF4483eda87fba4483eda8,
+ FFFF4483ee107fba4483ee10,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -297,112 +297,112 @@
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
- FFF49e14ce807f899e14ce80 /* PBXTargetDependency */ = {
+ FFF4441a3e407fba441a3e40 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFA9cdf92b07f899cdf92b0 /* LowLevel */;
- targetProxy = FFF59cdf92b07f899cdf92b0 /* PBXContainerItemProxy */;
+ target = FFFA441270b07fba441270b0 /* LowLevel */;
+ targetProxy = FFF5441270b07fba441270b0 /* PBXContainerItemProxy */;
};
- FFF49e14be807f899e14be80 /* PBXTargetDependency */ = {
+ FFF4441b57007fba441b5700 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFA9cf0adc07f899cf0adc0 /* LowLevelAABB */;
- targetProxy = FFF59cf0adc07f899cf0adc0 /* PBXContainerItemProxy */;
+ target = FFFA44154f407fba44154f40 /* LowLevelAABB */;
+ targetProxy = FFF544154f407fba44154f40 /* PBXContainerItemProxy */;
};
- FFF49e14eb807f899e14eb80 /* PBXTargetDependency */ = {
+ FFF4441a41e07fba441a41e0 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFA9e008d507f899e008d50 /* LowLevelCloth */;
- targetProxy = FFF59e008d507f899e008d50 /* PBXContainerItemProxy */;
+ target = FFFA441915407fba44191540 /* LowLevelCloth */;
+ targetProxy = FFF5441915407fba44191540 /* PBXContainerItemProxy */;
};
- FFF49e14df807f899e14df80 /* PBXTargetDependency */ = {
+ FFF4441b57607fba441b5760 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFA9cc550007f899cc55000 /* LowLevelDynamics */;
- targetProxy = FFF59cc550007f899cc55000 /* PBXContainerItemProxy */;
+ target = FFFA441701307fba44170130 /* LowLevelDynamics */;
+ targetProxy = FFF5441701307fba44170130 /* PBXContainerItemProxy */;
};
- FFF49e14e7807f899e14e780 /* PBXTargetDependency */ = {
+ FFF4441a42407fba441a4240 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFA9cc72e107f899cc72e10 /* LowLevelParticles */;
- targetProxy = FFF59cc72e107f899cc72e10 /* PBXContainerItemProxy */;
+ target = FFFA437f9a307fba437f9a30 /* LowLevelParticles */;
+ targetProxy = FFF5437f9a307fba437f9a30 /* PBXContainerItemProxy */;
};
- FFF49e14cc807f899e14cc80 /* PBXTargetDependency */ = {
+ FFF4441a40d07fba441a40d0 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFA9c88a7507f899c88a750 /* PhysXCommon */;
- targetProxy = FFF59c88a7507f899c88a750 /* PBXContainerItemProxy */;
+ target = FFFA431a02b07fba431a02b0 /* PhysXCommon */;
+ targetProxy = FFF5431a02b07fba431a02b0 /* PBXContainerItemProxy */;
};
- FFF49e1f13d07f899e1f13d0 /* PBXTargetDependency */ = {
+ FFF4441a81807fba441a8180 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFA9c8a0f907f899c8a0f90 /* PxFoundation */;
- targetProxy = FFF59c8a0f907f899c8a0f90 /* PBXContainerItemProxy */;
+ target = FFFA4318c2b07fba4318c2b0 /* PxFoundation */;
+ targetProxy = FFF54318c2b07fba4318c2b0 /* PBXContainerItemProxy */;
};
- FFF49e1f06f07f899e1f06f0 /* PBXTargetDependency */ = {
+ FFF4441a7e307fba441a7e30 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFA9cc339d07f899cc339d0 /* PxPvdSDK */;
- targetProxy = FFF59cc339d07f899cc339d0 /* PBXContainerItemProxy */;
+ target = FFFA44109f207fba44109f20 /* PxPvdSDK */;
+ targetProxy = FFF544109f207fba44109f20 /* PBXContainerItemProxy */;
};
- FFF49e14fd107f899e14fd10 /* PBXTargetDependency */ = {
+ FFF4441b57f07fba441b57f0 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFA9ccda3007f899ccda300 /* PxTask */;
- targetProxy = FFF59ccda3007f899ccda300 /* PBXContainerItemProxy */;
+ target = FFFA434ead707fba434ead70 /* PxTask */;
+ targetProxy = FFF5434ead707fba434ead70 /* PBXContainerItemProxy */;
};
- FFF49e14e3807f899e14e380 /* PBXTargetDependency */ = {
+ FFF4441a9ae07fba441a9ae0 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFA9e4ea8a07f899e4ea8a0 /* SceneQuery */;
- targetProxy = FFF59e4ea8a07f899e4ea8a0 /* PBXContainerItemProxy */;
+ target = FFFA441d40a07fba441d40a0 /* SceneQuery */;
+ targetProxy = FFF5441d40a07fba441d40a0 /* PBXContainerItemProxy */;
};
- FFF49e14fb107f899e14fb10 /* PBXTargetDependency */ = {
+ FFF4441a9b407fba441a9b40 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFA9e518ab07f899e518ab0 /* SimulationController */;
- targetProxy = FFF59e518ab07f899e518ab0 /* PBXContainerItemProxy */;
+ target = FFFA441d86207fba441d8620 /* SimulationController */;
+ targetProxy = FFF5441d86207fba441d8620 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of PhysXCharacterKinematic */
- FFFF9e153ff07f899e153ff0 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD9e138e707f899e138e70 /* PhysXExtensions */; };
- FFFF9d0450787f899d045078 /* CctBoxController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0450787f899d045078 /* CctBoxController.cpp */; };
- FFFF9d0450e07f899d0450e0 /* CctCapsuleController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0450e07f899d0450e0 /* CctCapsuleController.cpp */; };
- FFFF9d0451487f899d045148 /* CctCharacterController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0451487f899d045148 /* CctCharacterController.cpp */; };
- FFFF9d0451b07f899d0451b0 /* CctCharacterControllerCallbacks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0451b07f899d0451b0 /* CctCharacterControllerCallbacks.cpp */; };
- FFFF9d0452187f899d045218 /* CctCharacterControllerManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0452187f899d045218 /* CctCharacterControllerManager.cpp */; };
- FFFF9d0452807f899d045280 /* CctController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0452807f899d045280 /* CctController.cpp */; };
- FFFF9d0452e87f899d0452e8 /* CctObstacleContext.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0452e87f899d0452e8 /* CctObstacleContext.cpp */; };
- FFFF9d0453507f899d045350 /* CctSweptBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0453507f899d045350 /* CctSweptBox.cpp */; };
- FFFF9d0453b87f899d0453b8 /* CctSweptCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0453b87f899d0453b8 /* CctSweptCapsule.cpp */; };
- FFFF9d0454207f899d045420 /* CctSweptVolume.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0454207f899d045420 /* CctSweptVolume.cpp */; };
+ FFFF4419ccd07fba4419ccd0 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD441c17507fba441c1750 /* PhysXExtensions */; };
+ FFFF448482787fba44848278 /* CctBoxController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448482787fba44848278 /* CctBoxController.cpp */; };
+ FFFF448482e07fba448482e0 /* CctCapsuleController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448482e07fba448482e0 /* CctCapsuleController.cpp */; };
+ FFFF448483487fba44848348 /* CctCharacterController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448483487fba44848348 /* CctCharacterController.cpp */; };
+ FFFF448483b07fba448483b0 /* CctCharacterControllerCallbacks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448483b07fba448483b0 /* CctCharacterControllerCallbacks.cpp */; };
+ FFFF448484187fba44848418 /* CctCharacterControllerManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448484187fba44848418 /* CctCharacterControllerManager.cpp */; };
+ FFFF448484807fba44848480 /* CctController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448484807fba44848480 /* CctController.cpp */; };
+ FFFF448484e87fba448484e8 /* CctObstacleContext.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448484e87fba448484e8 /* CctObstacleContext.cpp */; };
+ FFFF448485507fba44848550 /* CctSweptBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448485507fba44848550 /* CctSweptBox.cpp */; };
+ FFFF448485b87fba448485b8 /* CctSweptCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448485b87fba448485b8 /* CctSweptCapsule.cpp */; };
+ FFFF448486207fba44848620 /* CctSweptVolume.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448486207fba44848620 /* CctSweptVolume.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFD9e1334507f899e133450 /* PhysXCharacterKinematic */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCharacterKinematic"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFD9e127ce07f899e127ce0 /* PxBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBoxController.h"; path = "../../../Include/characterkinematic/PxBoxController.h"; sourceTree = SOURCE_ROOT; };
- FFFD9e127d487f899e127d48 /* PxCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCapsuleController.h"; path = "../../../Include/characterkinematic/PxCapsuleController.h"; sourceTree = SOURCE_ROOT; };
- FFFD9e127db07f899e127db0 /* PxCharacter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCharacter.h"; path = "../../../Include/characterkinematic/PxCharacter.h"; sourceTree = SOURCE_ROOT; };
- FFFD9e127e187f899e127e18 /* PxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxController.h"; path = "../../../Include/characterkinematic/PxController.h"; sourceTree = SOURCE_ROOT; };
- FFFD9e127e807f899e127e80 /* PxControllerBehavior.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerBehavior.h"; path = "../../../Include/characterkinematic/PxControllerBehavior.h"; sourceTree = SOURCE_ROOT; };
- FFFD9e127ee87f899e127ee8 /* PxControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerManager.h"; path = "../../../Include/characterkinematic/PxControllerManager.h"; sourceTree = SOURCE_ROOT; };
- FFFD9e127f507f899e127f50 /* PxControllerObstacles.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerObstacles.h"; path = "../../../Include/characterkinematic/PxControllerObstacles.h"; sourceTree = SOURCE_ROOT; };
- FFFD9e127fb87f899e127fb8 /* PxExtended.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtended.h"; path = "../../../Include/characterkinematic/PxExtended.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d044c007f899d044c00 /* CctBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.h"; path = "../../PhysXCharacterKinematic/src/CctBoxController.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d044c687f899d044c68 /* CctCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.h"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d044cd07f899d044cd0 /* CctCharacterController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d044d387f899d044d38 /* CctCharacterControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d044da07f899d044da0 /* CctController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.h"; path = "../../PhysXCharacterKinematic/src/CctController.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d044e087f899d044e08 /* CctInternalStructs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctInternalStructs.h"; path = "../../PhysXCharacterKinematic/src/CctInternalStructs.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d044e707f899d044e70 /* CctObstacleContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.h"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d044ed87f899d044ed8 /* CctSweptBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.h"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d044f407f899d044f40 /* CctSweptCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.h"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d044fa87f899d044fa8 /* CctSweptVolume.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.h"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0450107f899d045010 /* CctUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctUtils.h"; path = "../../PhysXCharacterKinematic/src/CctUtils.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0450787f899d045078 /* CctBoxController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.cpp"; path = "../../PhysXCharacterKinematic/src/CctBoxController.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0450e07f899d0450e0 /* CctCapsuleController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0451487f899d045148 /* CctCharacterController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0451b07f899d0451b0 /* CctCharacterControllerCallbacks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerCallbacks.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerCallbacks.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0452187f899d045218 /* CctCharacterControllerManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0452807f899d045280 /* CctController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.cpp"; path = "../../PhysXCharacterKinematic/src/CctController.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0452e87f899d0452e8 /* CctObstacleContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.cpp"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0453507f899d045350 /* CctSweptBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0453b87f899d0453b8 /* CctSweptCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0454207f899d045420 /* CctSweptVolume.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD441b54a07fba441b54a0 /* PhysXCharacterKinematic */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCharacterKinematic"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFD4419cec07fba4419cec0 /* PxBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBoxController.h"; path = "../../../Include/characterkinematic/PxBoxController.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4419cf287fba4419cf28 /* PxCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCapsuleController.h"; path = "../../../Include/characterkinematic/PxCapsuleController.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4419cf907fba4419cf90 /* PxCharacter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCharacter.h"; path = "../../../Include/characterkinematic/PxCharacter.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4419cff87fba4419cff8 /* PxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxController.h"; path = "../../../Include/characterkinematic/PxController.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4419d0607fba4419d060 /* PxControllerBehavior.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerBehavior.h"; path = "../../../Include/characterkinematic/PxControllerBehavior.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4419d0c87fba4419d0c8 /* PxControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerManager.h"; path = "../../../Include/characterkinematic/PxControllerManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4419d1307fba4419d130 /* PxControllerObstacles.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerObstacles.h"; path = "../../../Include/characterkinematic/PxControllerObstacles.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4419d1987fba4419d198 /* PxExtended.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtended.h"; path = "../../../Include/characterkinematic/PxExtended.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44847e007fba44847e00 /* CctBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.h"; path = "../../PhysXCharacterKinematic/src/CctBoxController.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44847e687fba44847e68 /* CctCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.h"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44847ed07fba44847ed0 /* CctCharacterController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44847f387fba44847f38 /* CctCharacterControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44847fa07fba44847fa0 /* CctController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.h"; path = "../../PhysXCharacterKinematic/src/CctController.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448480087fba44848008 /* CctInternalStructs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctInternalStructs.h"; path = "../../PhysXCharacterKinematic/src/CctInternalStructs.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448480707fba44848070 /* CctObstacleContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.h"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448480d87fba448480d8 /* CctSweptBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.h"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448481407fba44848140 /* CctSweptCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.h"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448481a87fba448481a8 /* CctSweptVolume.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.h"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448482107fba44848210 /* CctUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctUtils.h"; path = "../../PhysXCharacterKinematic/src/CctUtils.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448482787fba44848278 /* CctBoxController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.cpp"; path = "../../PhysXCharacterKinematic/src/CctBoxController.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448482e07fba448482e0 /* CctCapsuleController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448483487fba44848348 /* CctCharacterController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448483b07fba448483b0 /* CctCharacterControllerCallbacks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerCallbacks.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerCallbacks.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448484187fba44848418 /* CctCharacterControllerManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448484807fba44848480 /* CctController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.cpp"; path = "../../PhysXCharacterKinematic/src/CctController.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448484e87fba448484e8 /* CctObstacleContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.cpp"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448485507fba44848550 /* CctSweptBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448485b87fba448485b8 /* CctSweptCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448486207fba44848620 /* CctSweptVolume.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.cpp"; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */
/* Begin PBXResourcesBuildPhase section */
- FFF29e1334507f899e133450 /* Resources */ = {
+ FFF2441b54a07fba441b54a0 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -412,7 +412,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFC9e1334507f899e133450 /* Frameworks */ = {
+ FFFC441b54a07fba441b54a0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -422,20 +422,20 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF89e1334507f899e133450 /* Sources */ = {
+ FFF8441b54a07fba441b54a0 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFF9d0450787f899d045078,
- FFFF9d0450e07f899d0450e0,
- FFFF9d0451487f899d045148,
- FFFF9d0451b07f899d0451b0,
- FFFF9d0452187f899d045218,
- FFFF9d0452807f899d045280,
- FFFF9d0452e87f899d0452e8,
- FFFF9d0453507f899d045350,
- FFFF9d0453b87f899d0453b8,
- FFFF9d0454207f899d045420,
+ FFFF448482787fba44848278,
+ FFFF448482e07fba448482e0,
+ FFFF448483487fba44848348,
+ FFFF448483b07fba448483b0,
+ FFFF448484187fba44848418,
+ FFFF448484807fba44848480,
+ FFFF448484e87fba448484e8,
+ FFFF448485507fba44848550,
+ FFFF448485b87fba448485b8,
+ FFFF448486207fba44848620,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -444,91 +444,91 @@
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
- FFF49e157d407f899e157d40 /* PBXTargetDependency */ = {
+ FFF4441b50207fba441b5020 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFA9c88a7507f899c88a750 /* PhysXCommon */;
- targetProxy = FFF59c88a7507f899c88a750 /* PBXContainerItemProxy */;
+ target = FFFA431a02b07fba431a02b0 /* PhysXCommon */;
+ targetProxy = FFF5431a02b07fba431a02b0 /* PBXContainerItemProxy */;
};
- FFF49e153ff07f899e153ff0 /* PBXTargetDependency */ = {
+ FFF44419ccd07fba4419ccd0 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFA9e138e707f899e138e70 /* PhysXExtensions */;
- targetProxy = FFF59e138e707f899e138e70 /* PBXContainerItemProxy */;
+ target = FFFA441c17507fba441c1750 /* PhysXExtensions */;
+ targetProxy = FFF5441c17507fba441c1750 /* PBXContainerItemProxy */;
};
- FFF49e15b5a07f899e15b5a0 /* PBXTargetDependency */ = {
+ FFF44419ceb07fba4419ceb0 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFA9c8a0f907f899c8a0f90 /* PxFoundation */;
- targetProxy = FFF59c8a0f907f899c8a0f90 /* PBXContainerItemProxy */;
+ target = FFFA4318c2b07fba4318c2b0 /* PxFoundation */;
+ targetProxy = FFF54318c2b07fba4318c2b0 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of PhysXVehicle */
- FFFF9d0492087f899d049208 /* PxVehicleComponents.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0492087f899d049208 /* PxVehicleComponents.cpp */; };
- FFFF9d0492707f899d049270 /* PxVehicleDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0492707f899d049270 /* PxVehicleDrive.cpp */; };
- FFFF9d0492d87f899d0492d8 /* PxVehicleDrive4W.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0492d87f899d0492d8 /* PxVehicleDrive4W.cpp */; };
- FFFF9d0493407f899d049340 /* PxVehicleDriveNW.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0493407f899d049340 /* PxVehicleDriveNW.cpp */; };
- FFFF9d0493a87f899d0493a8 /* PxVehicleDriveTank.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0493a87f899d0493a8 /* PxVehicleDriveTank.cpp */; };
- FFFF9d0494107f899d049410 /* PxVehicleMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0494107f899d049410 /* PxVehicleMetaData.cpp */; };
- FFFF9d0494787f899d049478 /* PxVehicleNoDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0494787f899d049478 /* PxVehicleNoDrive.cpp */; };
- FFFF9d0494e07f899d0494e0 /* PxVehicleSDK.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0494e07f899d0494e0 /* PxVehicleSDK.cpp */; };
- FFFF9d0495487f899d049548 /* PxVehicleSerialization.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0495487f899d049548 /* PxVehicleSerialization.cpp */; };
- FFFF9d0495b07f899d0495b0 /* PxVehicleSuspWheelTire4.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0495b07f899d0495b0 /* PxVehicleSuspWheelTire4.cpp */; };
- FFFF9d0496187f899d049618 /* PxVehicleTireFriction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0496187f899d049618 /* PxVehicleTireFriction.cpp */; };
- FFFF9d0496807f899d049680 /* PxVehicleUpdate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0496807f899d049680 /* PxVehicleUpdate.cpp */; };
- FFFF9d0496e87f899d0496e8 /* PxVehicleWheels.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0496e87f899d0496e8 /* PxVehicleWheels.cpp */; };
- FFFF9d0497507f899d049750 /* VehicleUtilControl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0497507f899d049750 /* VehicleUtilControl.cpp */; };
- FFFF9d0497b87f899d0497b8 /* VehicleUtilSetup.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0497b87f899d0497b8 /* VehicleUtilSetup.cpp */; };
- FFFF9d0498207f899d049820 /* VehicleUtilTelemetry.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0498207f899d049820 /* VehicleUtilTelemetry.cpp */; };
- FFFF9e127ad87f899e127ad8 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD9e127ad87f899e127ad8 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */; };
- FFFF9e127b407f899e127b40 /* src/PxVehicleMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD9e127b407f899e127b40 /* src/PxVehicleMetaDataObjects.cpp */; };
+ FFFF4484c4087fba4484c408 /* PxVehicleComponents.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4484c4087fba4484c408 /* PxVehicleComponents.cpp */; };
+ FFFF4484c4707fba4484c470 /* PxVehicleDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4484c4707fba4484c470 /* PxVehicleDrive.cpp */; };
+ FFFF4484c4d87fba4484c4d8 /* PxVehicleDrive4W.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4484c4d87fba4484c4d8 /* PxVehicleDrive4W.cpp */; };
+ FFFF4484c5407fba4484c540 /* PxVehicleDriveNW.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4484c5407fba4484c540 /* PxVehicleDriveNW.cpp */; };
+ FFFF4484c5a87fba4484c5a8 /* PxVehicleDriveTank.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4484c5a87fba4484c5a8 /* PxVehicleDriveTank.cpp */; };
+ FFFF4484c6107fba4484c610 /* PxVehicleMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4484c6107fba4484c610 /* PxVehicleMetaData.cpp */; };
+ FFFF4484c6787fba4484c678 /* PxVehicleNoDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4484c6787fba4484c678 /* PxVehicleNoDrive.cpp */; };
+ FFFF4484c6e07fba4484c6e0 /* PxVehicleSDK.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4484c6e07fba4484c6e0 /* PxVehicleSDK.cpp */; };
+ FFFF4484c7487fba4484c748 /* PxVehicleSerialization.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4484c7487fba4484c748 /* PxVehicleSerialization.cpp */; };
+ FFFF4484c7b07fba4484c7b0 /* PxVehicleSuspWheelTire4.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4484c7b07fba4484c7b0 /* PxVehicleSuspWheelTire4.cpp */; };
+ FFFF4484c8187fba4484c818 /* PxVehicleTireFriction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4484c8187fba4484c818 /* PxVehicleTireFriction.cpp */; };
+ FFFF4484c8807fba4484c880 /* PxVehicleUpdate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4484c8807fba4484c880 /* PxVehicleUpdate.cpp */; };
+ FFFF4484c8e87fba4484c8e8 /* PxVehicleWheels.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4484c8e87fba4484c8e8 /* PxVehicleWheels.cpp */; };
+ FFFF4484c9507fba4484c950 /* VehicleUtilControl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4484c9507fba4484c950 /* VehicleUtilControl.cpp */; };
+ FFFF4484c9b87fba4484c9b8 /* VehicleUtilSetup.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4484c9b87fba4484c9b8 /* VehicleUtilSetup.cpp */; };
+ FFFF4484ca207fba4484ca20 /* VehicleUtilTelemetry.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4484ca207fba4484ca20 /* VehicleUtilTelemetry.cpp */; };
+ FFFF441c36287fba441c3628 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD441c36287fba441c3628 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */; };
+ FFFF441c36907fba441c3690 /* src/PxVehicleMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD441c36907fba441c3690 /* src/PxVehicleMetaDataObjects.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFD9e1280207f899e128020 /* PhysXVehicle */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXVehicle"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFD9d0472007f899d047200 /* PxVehicleComponents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.h"; path = "../../../Include/vehicle/PxVehicleComponents.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0472687f899d047268 /* PxVehicleDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.h"; path = "../../../Include/vehicle/PxVehicleDrive.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0472d07f899d0472d0 /* PxVehicleDrive4W.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.h"; path = "../../../Include/vehicle/PxVehicleDrive4W.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0473387f899d047338 /* PxVehicleDriveNW.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.h"; path = "../../../Include/vehicle/PxVehicleDriveNW.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0473a07f899d0473a0 /* PxVehicleDriveTank.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.h"; path = "../../../Include/vehicle/PxVehicleDriveTank.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0474087f899d047408 /* PxVehicleNoDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.h"; path = "../../../Include/vehicle/PxVehicleNoDrive.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0474707f899d047470 /* PxVehicleSDK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.h"; path = "../../../Include/vehicle/PxVehicleSDK.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0474d87f899d0474d8 /* PxVehicleShaders.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleShaders.h"; path = "../../../Include/vehicle/PxVehicleShaders.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0475407f899d047540 /* PxVehicleTireFriction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.h"; path = "../../../Include/vehicle/PxVehicleTireFriction.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0475a87f899d0475a8 /* PxVehicleUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.h"; path = "../../../Include/vehicle/PxVehicleUpdate.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0476107f899d047610 /* PxVehicleUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtil.h"; path = "../../../Include/vehicle/PxVehicleUtil.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0476787f899d047678 /* PxVehicleUtilControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilControl.h"; path = "../../../Include/vehicle/PxVehicleUtilControl.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0476e07f899d0476e0 /* PxVehicleUtilSetup.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilSetup.h"; path = "../../../Include/vehicle/PxVehicleUtilSetup.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0477487f899d047748 /* PxVehicleUtilTelemetry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilTelemetry.h"; path = "../../../Include/vehicle/PxVehicleUtilTelemetry.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0477b07f899d0477b0 /* PxVehicleWheels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.h"; path = "../../../Include/vehicle/PxVehicleWheels.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0490007f899d049000 /* PxVehicleDefaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDefaults.h"; path = "../../PhysXVehicle/src/PxVehicleDefaults.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0490687f899d049068 /* PxVehicleLinearMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleLinearMath.h"; path = "../../PhysXVehicle/src/PxVehicleLinearMath.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0490d07f899d0490d0 /* PxVehicleSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.h"; path = "../../PhysXVehicle/src/PxVehicleSerialization.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0491387f899d049138 /* PxVehicleSuspLimitConstraintShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspLimitConstraintShader.h"; path = "../../PhysXVehicle/src/PxVehicleSuspLimitConstraintShader.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0491a07f899d0491a0 /* PxVehicleSuspWheelTire4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.h"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0492087f899d049208 /* PxVehicleComponents.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.cpp"; path = "../../PhysXVehicle/src/PxVehicleComponents.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0492707f899d049270 /* PxVehicleDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0492d87f899d0492d8 /* PxVehicleDrive4W.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive4W.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0493407f899d049340 /* PxVehicleDriveNW.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveNW.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0493a87f899d0493a8 /* PxVehicleDriveTank.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveTank.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0494107f899d049410 /* PxVehicleMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleMetaData.cpp"; path = "../../PhysXVehicle/src/PxVehicleMetaData.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0494787f899d049478 /* PxVehicleNoDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleNoDrive.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0494e07f899d0494e0 /* PxVehicleSDK.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.cpp"; path = "../../PhysXVehicle/src/PxVehicleSDK.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0495487f899d049548 /* PxVehicleSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.cpp"; path = "../../PhysXVehicle/src/PxVehicleSerialization.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0495b07f899d0495b0 /* PxVehicleSuspWheelTire4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.cpp"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0496187f899d049618 /* PxVehicleTireFriction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.cpp"; path = "../../PhysXVehicle/src/PxVehicleTireFriction.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0496807f899d049680 /* PxVehicleUpdate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.cpp"; path = "../../PhysXVehicle/src/PxVehicleUpdate.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0496e87f899d0496e8 /* PxVehicleWheels.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.cpp"; path = "../../PhysXVehicle/src/PxVehicleWheels.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0497507f899d049750 /* VehicleUtilControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilControl.cpp"; path = "../../PhysXVehicle/src/VehicleUtilControl.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0497b87f899d0497b8 /* VehicleUtilSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilSetup.cpp"; path = "../../PhysXVehicle/src/VehicleUtilSetup.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0498207f899d049820 /* VehicleUtilTelemetry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilTelemetry.cpp"; path = "../../PhysXVehicle/src/VehicleUtilTelemetry.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9e1279a07f899e1279a0 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; };
- FFFD9e127a087f899e127a08 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
- FFFD9e127a707f899e127a70 /* include/PxVehicleMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
- FFFD9e127ad87f899e127ad8 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXVehicle/src/PhysXMetaData/src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9e127b407f899e127b40 /* src/PxVehicleMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxVehicleMetaDataObjects.cpp"; path = "../../PhysXVehicle/src/PhysXMetaData/src/PxVehicleMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD441a23807fba441a2380 /* PhysXVehicle */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXVehicle"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFD4484a4007fba4484a400 /* PxVehicleComponents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.h"; path = "../../../Include/vehicle/PxVehicleComponents.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4484a4687fba4484a468 /* PxVehicleDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.h"; path = "../../../Include/vehicle/PxVehicleDrive.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4484a4d07fba4484a4d0 /* PxVehicleDrive4W.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.h"; path = "../../../Include/vehicle/PxVehicleDrive4W.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4484a5387fba4484a538 /* PxVehicleDriveNW.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.h"; path = "../../../Include/vehicle/PxVehicleDriveNW.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4484a5a07fba4484a5a0 /* PxVehicleDriveTank.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.h"; path = "../../../Include/vehicle/PxVehicleDriveTank.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4484a6087fba4484a608 /* PxVehicleNoDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.h"; path = "../../../Include/vehicle/PxVehicleNoDrive.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4484a6707fba4484a670 /* PxVehicleSDK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.h"; path = "../../../Include/vehicle/PxVehicleSDK.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4484a6d87fba4484a6d8 /* PxVehicleShaders.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleShaders.h"; path = "../../../Include/vehicle/PxVehicleShaders.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4484a7407fba4484a740 /* PxVehicleTireFriction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.h"; path = "../../../Include/vehicle/PxVehicleTireFriction.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4484a7a87fba4484a7a8 /* PxVehicleUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.h"; path = "../../../Include/vehicle/PxVehicleUpdate.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4484a8107fba4484a810 /* PxVehicleUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtil.h"; path = "../../../Include/vehicle/PxVehicleUtil.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4484a8787fba4484a878 /* PxVehicleUtilControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilControl.h"; path = "../../../Include/vehicle/PxVehicleUtilControl.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4484a8e07fba4484a8e0 /* PxVehicleUtilSetup.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilSetup.h"; path = "../../../Include/vehicle/PxVehicleUtilSetup.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4484a9487fba4484a948 /* PxVehicleUtilTelemetry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilTelemetry.h"; path = "../../../Include/vehicle/PxVehicleUtilTelemetry.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4484a9b07fba4484a9b0 /* PxVehicleWheels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.h"; path = "../../../Include/vehicle/PxVehicleWheels.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4484c2007fba4484c200 /* PxVehicleDefaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDefaults.h"; path = "../../PhysXVehicle/src/PxVehicleDefaults.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4484c2687fba4484c268 /* PxVehicleLinearMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleLinearMath.h"; path = "../../PhysXVehicle/src/PxVehicleLinearMath.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4484c2d07fba4484c2d0 /* PxVehicleSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.h"; path = "../../PhysXVehicle/src/PxVehicleSerialization.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4484c3387fba4484c338 /* PxVehicleSuspLimitConstraintShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspLimitConstraintShader.h"; path = "../../PhysXVehicle/src/PxVehicleSuspLimitConstraintShader.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4484c3a07fba4484c3a0 /* PxVehicleSuspWheelTire4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.h"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4484c4087fba4484c408 /* PxVehicleComponents.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.cpp"; path = "../../PhysXVehicle/src/PxVehicleComponents.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4484c4707fba4484c470 /* PxVehicleDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4484c4d87fba4484c4d8 /* PxVehicleDrive4W.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive4W.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4484c5407fba4484c540 /* PxVehicleDriveNW.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveNW.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4484c5a87fba4484c5a8 /* PxVehicleDriveTank.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveTank.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4484c6107fba4484c610 /* PxVehicleMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleMetaData.cpp"; path = "../../PhysXVehicle/src/PxVehicleMetaData.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4484c6787fba4484c678 /* PxVehicleNoDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleNoDrive.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4484c6e07fba4484c6e0 /* PxVehicleSDK.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.cpp"; path = "../../PhysXVehicle/src/PxVehicleSDK.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4484c7487fba4484c748 /* PxVehicleSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.cpp"; path = "../../PhysXVehicle/src/PxVehicleSerialization.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4484c7b07fba4484c7b0 /* PxVehicleSuspWheelTire4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.cpp"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4484c8187fba4484c818 /* PxVehicleTireFriction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.cpp"; path = "../../PhysXVehicle/src/PxVehicleTireFriction.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4484c8807fba4484c880 /* PxVehicleUpdate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.cpp"; path = "../../PhysXVehicle/src/PxVehicleUpdate.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4484c8e87fba4484c8e8 /* PxVehicleWheels.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.cpp"; path = "../../PhysXVehicle/src/PxVehicleWheels.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4484c9507fba4484c950 /* VehicleUtilControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilControl.cpp"; path = "../../PhysXVehicle/src/VehicleUtilControl.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4484c9b87fba4484c9b8 /* VehicleUtilSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilSetup.cpp"; path = "../../PhysXVehicle/src/VehicleUtilSetup.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4484ca207fba4484ca20 /* VehicleUtilTelemetry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilTelemetry.cpp"; path = "../../PhysXVehicle/src/VehicleUtilTelemetry.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD441c34f07fba441c34f0 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; };
+ FFFD441c35587fba441c3558 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
+ FFFD441c35c07fba441c35c0 /* include/PxVehicleMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
+ FFFD441c36287fba441c3628 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXVehicle/src/PhysXMetaData/src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD441c36907fba441c3690 /* 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 */
- FFF29e1280207f899e128020 /* Resources */ = {
+ FFF2441a23807fba441a2380 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -538,7 +538,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFC9e1280207f899e128020 /* Frameworks */ = {
+ FFFC441a23807fba441a2380 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -548,28 +548,28 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF89e1280207f899e128020 /* Sources */ = {
+ FFF8441a23807fba441a2380 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFF9d0492087f899d049208,
- FFFF9d0492707f899d049270,
- FFFF9d0492d87f899d0492d8,
- FFFF9d0493407f899d049340,
- FFFF9d0493a87f899d0493a8,
- FFFF9d0494107f899d049410,
- FFFF9d0494787f899d049478,
- FFFF9d0494e07f899d0494e0,
- FFFF9d0495487f899d049548,
- FFFF9d0495b07f899d0495b0,
- FFFF9d0496187f899d049618,
- FFFF9d0496807f899d049680,
- FFFF9d0496e87f899d0496e8,
- FFFF9d0497507f899d049750,
- FFFF9d0497b87f899d0497b8,
- FFFF9d0498207f899d049820,
- FFFF9e127ad87f899e127ad8,
- FFFF9e127b407f899e127b40,
+ FFFF4484c4087fba4484c408,
+ FFFF4484c4707fba4484c470,
+ FFFF4484c4d87fba4484c4d8,
+ FFFF4484c5407fba4484c540,
+ FFFF4484c5a87fba4484c5a8,
+ FFFF4484c6107fba4484c610,
+ FFFF4484c6787fba4484c678,
+ FFFF4484c6e07fba4484c6e0,
+ FFFF4484c7487fba4484c748,
+ FFFF4484c7b07fba4484c7b0,
+ FFFF4484c8187fba4484c818,
+ FFFF4484c8807fba4484c880,
+ FFFF4484c8e87fba4484c8e8,
+ FFFF4484c9507fba4484c950,
+ FFFF4484c9b87fba4484c9b8,
+ FFFF4484ca207fba4484ca20,
+ FFFF441c36287fba441c3628,
+ FFFF441c36907fba441c3690,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -581,220 +581,220 @@
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of PhysXExtensions */
- FFFF9d04b8e87f899d04b8e8 /* ExtBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d04b8e87f899d04b8e8 /* ExtBroadPhase.cpp */; };
- FFFF9d04b9507f899d04b950 /* ExtClothFabricCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d04b9507f899d04b950 /* ExtClothFabricCooker.cpp */; };
- FFFF9d04b9b87f899d04b9b8 /* ExtClothGeodesicTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d04b9b87f899d04b9b8 /* ExtClothGeodesicTetherCooker.cpp */; };
- FFFF9d04ba207f899d04ba20 /* ExtClothMeshQuadifier.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d04ba207f899d04ba20 /* ExtClothMeshQuadifier.cpp */; };
- FFFF9d04ba887f899d04ba88 /* ExtClothSimpleTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d04ba887f899d04ba88 /* ExtClothSimpleTetherCooker.cpp */; };
- FFFF9d04baf07f899d04baf0 /* ExtCollection.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d04baf07f899d04baf0 /* ExtCollection.cpp */; };
- FFFF9d04bb587f899d04bb58 /* ExtConvexMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d04bb587f899d04bb58 /* ExtConvexMeshExt.cpp */; };
- FFFF9d04bbc07f899d04bbc0 /* ExtCpuWorkerThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d04bbc07f899d04bbc0 /* ExtCpuWorkerThread.cpp */; };
- FFFF9d04bc287f899d04bc28 /* ExtD6Joint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d04bc287f899d04bc28 /* ExtD6Joint.cpp */; };
- FFFF9d04bc907f899d04bc90 /* ExtD6JointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d04bc907f899d04bc90 /* ExtD6JointSolverPrep.cpp */; };
- FFFF9d04bcf87f899d04bcf8 /* ExtDefaultCpuDispatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d04bcf87f899d04bcf8 /* ExtDefaultCpuDispatcher.cpp */; };
- FFFF9d04bd607f899d04bd60 /* ExtDefaultErrorCallback.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d04bd607f899d04bd60 /* ExtDefaultErrorCallback.cpp */; };
- FFFF9d04bdc87f899d04bdc8 /* ExtDefaultSimulationFilterShader.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d04bdc87f899d04bdc8 /* ExtDefaultSimulationFilterShader.cpp */; };
- FFFF9d04be307f899d04be30 /* ExtDefaultStreams.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d04be307f899d04be30 /* ExtDefaultStreams.cpp */; };
- FFFF9d04be987f899d04be98 /* ExtDistanceJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d04be987f899d04be98 /* ExtDistanceJoint.cpp */; };
- FFFF9d04bf007f899d04bf00 /* ExtDistanceJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d04bf007f899d04bf00 /* ExtDistanceJointSolverPrep.cpp */; };
- FFFF9d04bf687f899d04bf68 /* ExtExtensions.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d04bf687f899d04bf68 /* ExtExtensions.cpp */; };
- FFFF9d04bfd07f899d04bfd0 /* ExtFixedJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d04bfd07f899d04bfd0 /* ExtFixedJoint.cpp */; };
- FFFF9d04c0387f899d04c038 /* ExtFixedJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d04c0387f899d04c038 /* ExtFixedJointSolverPrep.cpp */; };
- FFFF9d04c0a07f899d04c0a0 /* ExtJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d04c0a07f899d04c0a0 /* ExtJoint.cpp */; };
- FFFF9d04c1087f899d04c108 /* ExtMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d04c1087f899d04c108 /* ExtMetaData.cpp */; };
- FFFF9d04c1707f899d04c170 /* ExtParticleExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d04c1707f899d04c170 /* ExtParticleExt.cpp */; };
- FFFF9d04c1d87f899d04c1d8 /* ExtPrismaticJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d04c1d87f899d04c1d8 /* ExtPrismaticJoint.cpp */; };
- FFFF9d04c2407f899d04c240 /* ExtPrismaticJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d04c2407f899d04c240 /* ExtPrismaticJointSolverPrep.cpp */; };
- FFFF9d04c2a87f899d04c2a8 /* ExtPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d04c2a87f899d04c2a8 /* ExtPvd.cpp */; };
- FFFF9d04c3107f899d04c310 /* ExtPxStringTable.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d04c3107f899d04c310 /* ExtPxStringTable.cpp */; };
- FFFF9d04c3787f899d04c378 /* ExtRaycastCCD.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d04c3787f899d04c378 /* ExtRaycastCCD.cpp */; };
- FFFF9d04c3e07f899d04c3e0 /* ExtRevoluteJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d04c3e07f899d04c3e0 /* ExtRevoluteJoint.cpp */; };
- FFFF9d04c4487f899d04c448 /* ExtRevoluteJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d04c4487f899d04c448 /* ExtRevoluteJointSolverPrep.cpp */; };
- FFFF9d04c4b07f899d04c4b0 /* ExtRigidBodyExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d04c4b07f899d04c4b0 /* ExtRigidBodyExt.cpp */; };
- FFFF9d04c5187f899d04c518 /* ExtSceneQueryExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d04c5187f899d04c518 /* ExtSceneQueryExt.cpp */; };
- FFFF9d04c5807f899d04c580 /* ExtSimpleFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d04c5807f899d04c580 /* ExtSimpleFactory.cpp */; };
- FFFF9d04c5e87f899d04c5e8 /* ExtSmoothNormals.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d04c5e87f899d04c5e8 /* ExtSmoothNormals.cpp */; };
- FFFF9d04c6507f899d04c650 /* ExtSphericalJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d04c6507f899d04c650 /* ExtSphericalJoint.cpp */; };
- FFFF9d04c6b87f899d04c6b8 /* ExtSphericalJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d04c6b87f899d04c6b8 /* ExtSphericalJointSolverPrep.cpp */; };
- FFFF9d04c7207f899d04c720 /* ExtTriangleMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d04c7207f899d04c720 /* ExtTriangleMeshExt.cpp */; };
- FFFF9d04eed07f899d04eed0 /* SnSerialUtils.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD9d04eed07f899d04eed0 /* SnSerialUtils.cpp */; };
- FFFF9d04ef387f899d04ef38 /* SnSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD9d04ef387f899d04ef38 /* SnSerialization.cpp */; };
- FFFF9d04efa07f899d04efa0 /* SnSerializationRegistry.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD9d04efa07f899d04efa0 /* SnSerializationRegistry.cpp */; };
- FFFF9d04f2e07f899d04f2e0 /* Binary/SnBinaryDeserialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD9d04f2e07f899d04f2e0 /* Binary/SnBinaryDeserialization.cpp */; };
- FFFF9d04f3487f899d04f348 /* Binary/SnBinarySerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD9d04f3487f899d04f348 /* Binary/SnBinarySerialization.cpp */; };
- FFFF9d04f3b07f899d04f3b0 /* Binary/SnConvX.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD9d04f3b07f899d04f3b0 /* Binary/SnConvX.cpp */; };
- FFFF9d04f4187f899d04f418 /* Binary/SnConvX_Align.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD9d04f4187f899d04f418 /* Binary/SnConvX_Align.cpp */; };
- FFFF9d04f4807f899d04f480 /* Binary/SnConvX_Convert.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD9d04f4807f899d04f480 /* Binary/SnConvX_Convert.cpp */; };
- FFFF9d04f4e87f899d04f4e8 /* Binary/SnConvX_Error.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD9d04f4e87f899d04f4e8 /* Binary/SnConvX_Error.cpp */; };
- FFFF9d04f5507f899d04f550 /* Binary/SnConvX_MetaData.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD9d04f5507f899d04f550 /* Binary/SnConvX_MetaData.cpp */; };
- FFFF9d04f5b87f899d04f5b8 /* Binary/SnConvX_Output.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD9d04f5b87f899d04f5b8 /* Binary/SnConvX_Output.cpp */; };
- FFFF9d04f6207f899d04f620 /* Binary/SnConvX_Union.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD9d04f6207f899d04f620 /* Binary/SnConvX_Union.cpp */; };
- FFFF9d04f6887f899d04f688 /* Binary/SnSerializationContext.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD9d04f6887f899d04f688 /* Binary/SnSerializationContext.cpp */; };
- FFFF9d04ffe07f899d04ffe0 /* Xml/SnJointRepXSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD9d04ffe07f899d04ffe0 /* Xml/SnJointRepXSerializer.cpp */; };
- FFFF9d0500487f899d050048 /* Xml/SnRepXCoreSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD9d0500487f899d050048 /* Xml/SnRepXCoreSerializer.cpp */; };
- FFFF9d0500b07f899d0500b0 /* Xml/SnRepXUpgrader.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD9d0500b07f899d0500b0 /* Xml/SnRepXUpgrader.cpp */; };
- FFFF9d0501187f899d050118 /* Xml/SnXmlSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD9d0501187f899d050118 /* Xml/SnXmlSerialization.cpp */; };
- FFFF9d04dce07f899d04dce0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD9d04dce07f899d04dce0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */; };
+ FFFF4484eae87fba4484eae8 /* ExtBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4484eae87fba4484eae8 /* ExtBroadPhase.cpp */; };
+ FFFF4484eb507fba4484eb50 /* ExtClothFabricCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4484eb507fba4484eb50 /* ExtClothFabricCooker.cpp */; };
+ FFFF4484ebb87fba4484ebb8 /* ExtClothGeodesicTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4484ebb87fba4484ebb8 /* ExtClothGeodesicTetherCooker.cpp */; };
+ FFFF4484ec207fba4484ec20 /* ExtClothMeshQuadifier.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4484ec207fba4484ec20 /* ExtClothMeshQuadifier.cpp */; };
+ FFFF4484ec887fba4484ec88 /* ExtClothSimpleTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4484ec887fba4484ec88 /* ExtClothSimpleTetherCooker.cpp */; };
+ FFFF4484ecf07fba4484ecf0 /* ExtCollection.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4484ecf07fba4484ecf0 /* ExtCollection.cpp */; };
+ FFFF4484ed587fba4484ed58 /* ExtConvexMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4484ed587fba4484ed58 /* ExtConvexMeshExt.cpp */; };
+ FFFF4484edc07fba4484edc0 /* ExtCpuWorkerThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4484edc07fba4484edc0 /* ExtCpuWorkerThread.cpp */; };
+ FFFF4484ee287fba4484ee28 /* ExtD6Joint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4484ee287fba4484ee28 /* ExtD6Joint.cpp */; };
+ FFFF4484ee907fba4484ee90 /* ExtD6JointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4484ee907fba4484ee90 /* ExtD6JointSolverPrep.cpp */; };
+ FFFF4484eef87fba4484eef8 /* ExtDefaultCpuDispatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4484eef87fba4484eef8 /* ExtDefaultCpuDispatcher.cpp */; };
+ FFFF4484ef607fba4484ef60 /* ExtDefaultErrorCallback.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4484ef607fba4484ef60 /* ExtDefaultErrorCallback.cpp */; };
+ FFFF4484efc87fba4484efc8 /* ExtDefaultSimulationFilterShader.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4484efc87fba4484efc8 /* ExtDefaultSimulationFilterShader.cpp */; };
+ FFFF4484f0307fba4484f030 /* ExtDefaultStreams.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4484f0307fba4484f030 /* ExtDefaultStreams.cpp */; };
+ FFFF4484f0987fba4484f098 /* ExtDistanceJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4484f0987fba4484f098 /* ExtDistanceJoint.cpp */; };
+ FFFF4484f1007fba4484f100 /* ExtDistanceJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4484f1007fba4484f100 /* ExtDistanceJointSolverPrep.cpp */; };
+ FFFF4484f1687fba4484f168 /* ExtExtensions.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4484f1687fba4484f168 /* ExtExtensions.cpp */; };
+ FFFF4484f1d07fba4484f1d0 /* ExtFixedJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4484f1d07fba4484f1d0 /* ExtFixedJoint.cpp */; };
+ FFFF4484f2387fba4484f238 /* ExtFixedJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4484f2387fba4484f238 /* ExtFixedJointSolverPrep.cpp */; };
+ FFFF4484f2a07fba4484f2a0 /* ExtJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4484f2a07fba4484f2a0 /* ExtJoint.cpp */; };
+ FFFF4484f3087fba4484f308 /* ExtMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4484f3087fba4484f308 /* ExtMetaData.cpp */; };
+ FFFF4484f3707fba4484f370 /* ExtParticleExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4484f3707fba4484f370 /* ExtParticleExt.cpp */; };
+ FFFF4484f3d87fba4484f3d8 /* ExtPrismaticJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4484f3d87fba4484f3d8 /* ExtPrismaticJoint.cpp */; };
+ FFFF4484f4407fba4484f440 /* ExtPrismaticJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4484f4407fba4484f440 /* ExtPrismaticJointSolverPrep.cpp */; };
+ FFFF4484f4a87fba4484f4a8 /* ExtPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4484f4a87fba4484f4a8 /* ExtPvd.cpp */; };
+ FFFF4484f5107fba4484f510 /* ExtPxStringTable.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4484f5107fba4484f510 /* ExtPxStringTable.cpp */; };
+ FFFF4484f5787fba4484f578 /* ExtRaycastCCD.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4484f5787fba4484f578 /* ExtRaycastCCD.cpp */; };
+ FFFF4484f5e07fba4484f5e0 /* ExtRevoluteJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4484f5e07fba4484f5e0 /* ExtRevoluteJoint.cpp */; };
+ FFFF4484f6487fba4484f648 /* ExtRevoluteJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4484f6487fba4484f648 /* ExtRevoluteJointSolverPrep.cpp */; };
+ FFFF4484f6b07fba4484f6b0 /* ExtRigidBodyExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4484f6b07fba4484f6b0 /* ExtRigidBodyExt.cpp */; };
+ FFFF4484f7187fba4484f718 /* ExtSceneQueryExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4484f7187fba4484f718 /* ExtSceneQueryExt.cpp */; };
+ FFFF4484f7807fba4484f780 /* ExtSimpleFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4484f7807fba4484f780 /* ExtSimpleFactory.cpp */; };
+ FFFF4484f7e87fba4484f7e8 /* ExtSmoothNormals.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4484f7e87fba4484f7e8 /* ExtSmoothNormals.cpp */; };
+ FFFF4484f8507fba4484f850 /* ExtSphericalJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4484f8507fba4484f850 /* ExtSphericalJoint.cpp */; };
+ FFFF4484f8b87fba4484f8b8 /* ExtSphericalJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4484f8b87fba4484f8b8 /* ExtSphericalJointSolverPrep.cpp */; };
+ FFFF4484f9207fba4484f920 /* ExtTriangleMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4484f9207fba4484f920 /* ExtTriangleMeshExt.cpp */; };
+ FFFF448528d07fba448528d0 /* SnSerialUtils.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD448528d07fba448528d0 /* SnSerialUtils.cpp */; };
+ FFFF448529387fba44852938 /* SnSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD448529387fba44852938 /* SnSerialization.cpp */; };
+ FFFF448529a07fba448529a0 /* SnSerializationRegistry.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD448529a07fba448529a0 /* SnSerializationRegistry.cpp */; };
+ FFFF44852ce07fba44852ce0 /* Binary/SnBinaryDeserialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD44852ce07fba44852ce0 /* Binary/SnBinaryDeserialization.cpp */; };
+ FFFF44852d487fba44852d48 /* Binary/SnBinarySerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD44852d487fba44852d48 /* Binary/SnBinarySerialization.cpp */; };
+ FFFF44852db07fba44852db0 /* Binary/SnConvX.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD44852db07fba44852db0 /* Binary/SnConvX.cpp */; };
+ FFFF44852e187fba44852e18 /* Binary/SnConvX_Align.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD44852e187fba44852e18 /* Binary/SnConvX_Align.cpp */; };
+ FFFF44852e807fba44852e80 /* Binary/SnConvX_Convert.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD44852e807fba44852e80 /* Binary/SnConvX_Convert.cpp */; };
+ FFFF44852ee87fba44852ee8 /* Binary/SnConvX_Error.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD44852ee87fba44852ee8 /* Binary/SnConvX_Error.cpp */; };
+ FFFF44852f507fba44852f50 /* Binary/SnConvX_MetaData.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD44852f507fba44852f50 /* Binary/SnConvX_MetaData.cpp */; };
+ FFFF44852fb87fba44852fb8 /* Binary/SnConvX_Output.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD44852fb87fba44852fb8 /* Binary/SnConvX_Output.cpp */; };
+ FFFF448530207fba44853020 /* Binary/SnConvX_Union.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD448530207fba44853020 /* Binary/SnConvX_Union.cpp */; };
+ FFFF448530887fba44853088 /* Binary/SnSerializationContext.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD448530887fba44853088 /* Binary/SnSerializationContext.cpp */; };
+ FFFF448539e07fba448539e0 /* Xml/SnJointRepXSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD448539e07fba448539e0 /* Xml/SnJointRepXSerializer.cpp */; };
+ FFFF44853a487fba44853a48 /* Xml/SnRepXCoreSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD44853a487fba44853a48 /* Xml/SnRepXCoreSerializer.cpp */; };
+ FFFF44853ab07fba44853ab0 /* Xml/SnRepXUpgrader.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD44853ab07fba44853ab0 /* Xml/SnRepXUpgrader.cpp */; };
+ FFFF44853b187fba44853b18 /* Xml/SnXmlSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD44853b187fba44853b18 /* Xml/SnXmlSerialization.cpp */; };
+ FFFF44850ee07fba44850ee0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD44850ee07fba44850ee0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFD9e138e707f899e138e70 /* PhysXExtensions */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXExtensions"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFD9d04c8007f899d04c800 /* PxBinaryConverter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBinaryConverter.h"; path = "../../../Include/extensions/PxBinaryConverter.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04c8687f899d04c868 /* PxBroadPhaseExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhaseExt.h"; path = "../../../Include/extensions/PxBroadPhaseExt.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04c8d07f899d04c8d0 /* PxClothFabricCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothFabricCooker.h"; path = "../../../Include/extensions/PxClothFabricCooker.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04c9387f899d04c938 /* PxClothMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshDesc.h"; path = "../../../Include/extensions/PxClothMeshDesc.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04c9a07f899d04c9a0 /* PxClothMeshQuadifier.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshQuadifier.h"; path = "../../../Include/extensions/PxClothMeshQuadifier.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04ca087f899d04ca08 /* PxClothTetherCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothTetherCooker.h"; path = "../../../Include/extensions/PxClothTetherCooker.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04ca707f899d04ca70 /* PxCollectionExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCollectionExt.h"; path = "../../../Include/extensions/PxCollectionExt.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04cad87f899d04cad8 /* PxConstraintExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintExt.h"; path = "../../../Include/extensions/PxConstraintExt.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04cb407f899d04cb40 /* PxConvexMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshExt.h"; path = "../../../Include/extensions/PxConvexMeshExt.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04cba87f899d04cba8 /* PxD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxD6Joint.h"; path = "../../../Include/extensions/PxD6Joint.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04cc107f899d04cc10 /* PxDefaultAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultAllocator.h"; path = "../../../Include/extensions/PxDefaultAllocator.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04cc787f899d04cc78 /* PxDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultCpuDispatcher.h"; path = "../../../Include/extensions/PxDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04cce07f899d04cce0 /* PxDefaultErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultErrorCallback.h"; path = "../../../Include/extensions/PxDefaultErrorCallback.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04cd487f899d04cd48 /* PxDefaultSimulationFilterShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultSimulationFilterShader.h"; path = "../../../Include/extensions/PxDefaultSimulationFilterShader.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04cdb07f899d04cdb0 /* PxDefaultStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultStreams.h"; path = "../../../Include/extensions/PxDefaultStreams.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04ce187f899d04ce18 /* PxDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDistanceJoint.h"; path = "../../../Include/extensions/PxDistanceJoint.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04ce807f899d04ce80 /* PxExtensionsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtensionsAPI.h"; path = "../../../Include/extensions/PxExtensionsAPI.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04cee87f899d04cee8 /* PxFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFixedJoint.h"; path = "../../../Include/extensions/PxFixedJoint.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04cf507f899d04cf50 /* PxJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJoint.h"; path = "../../../Include/extensions/PxJoint.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04cfb87f899d04cfb8 /* PxJointLimit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJointLimit.h"; path = "../../../Include/extensions/PxJointLimit.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04d0207f899d04d020 /* PxMassProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMassProperties.h"; path = "../../../Include/extensions/PxMassProperties.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04d0887f899d04d088 /* PxParticleExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxParticleExt.h"; path = "../../../Include/extensions/PxParticleExt.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04d0f07f899d04d0f0 /* PxPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPrismaticJoint.h"; path = "../../../Include/extensions/PxPrismaticJoint.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04d1587f899d04d158 /* PxRaycastCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRaycastCCD.h"; path = "../../../Include/extensions/PxRaycastCCD.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04d1c07f899d04d1c0 /* PxRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSerializer.h"; path = "../../../Include/extensions/PxRepXSerializer.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04d2287f899d04d228 /* PxRepXSimpleType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSimpleType.h"; path = "../../../Include/extensions/PxRepXSimpleType.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04d2907f899d04d290 /* PxRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRevoluteJoint.h"; path = "../../../Include/extensions/PxRevoluteJoint.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04d2f87f899d04d2f8 /* PxRigidActorExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActorExt.h"; path = "../../../Include/extensions/PxRigidActorExt.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04d3607f899d04d360 /* PxRigidBodyExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBodyExt.h"; path = "../../../Include/extensions/PxRigidBodyExt.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04d3c87f899d04d3c8 /* PxSceneQueryExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneQueryExt.h"; path = "../../../Include/extensions/PxSceneQueryExt.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04d4307f899d04d430 /* PxSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSerialization.h"; path = "../../../Include/extensions/PxSerialization.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04d4987f899d04d498 /* PxShapeExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShapeExt.h"; path = "../../../Include/extensions/PxShapeExt.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04d5007f899d04d500 /* PxSimpleFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleFactory.h"; path = "../../../Include/extensions/PxSimpleFactory.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04d5687f899d04d568 /* PxSmoothNormals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSmoothNormals.h"; path = "../../../Include/extensions/PxSmoothNormals.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04d5d07f899d04d5d0 /* PxSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSphericalJoint.h"; path = "../../../Include/extensions/PxSphericalJoint.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04d6387f899d04d638 /* PxStringTableExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStringTableExt.h"; path = "../../../Include/extensions/PxStringTableExt.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04d6a07f899d04d6a0 /* PxTriangleMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshExt.h"; path = "../../../Include/extensions/PxTriangleMeshExt.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04b2007f899d04b200 /* ExtConstraintHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConstraintHelper.h"; path = "../../PhysXExtensions/src/ExtConstraintHelper.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04b2687f899d04b268 /* ExtCpuWorkerThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.h"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04b2d07f899d04b2d0 /* ExtD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.h"; path = "../../PhysXExtensions/src/ExtD6Joint.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04b3387f899d04b338 /* ExtDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.h"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04b3a07f899d04b3a0 /* ExtDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.h"; path = "../../PhysXExtensions/src/ExtDistanceJoint.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04b4087f899d04b408 /* ExtFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.h"; path = "../../PhysXExtensions/src/ExtFixedJoint.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04b4707f899d04b470 /* ExtInertiaTensor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtInertiaTensor.h"; path = "../../PhysXExtensions/src/ExtInertiaTensor.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04b4d87f899d04b4d8 /* ExtJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.h"; path = "../../PhysXExtensions/src/ExtJoint.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04b5407f899d04b540 /* ExtJointMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJointMetaDataExtensions.h"; path = "../../PhysXExtensions/src/ExtJointMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04b5a87f899d04b5a8 /* ExtPlatform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPlatform.h"; path = "../../PhysXExtensions/src/ExtPlatform.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04b6107f899d04b610 /* ExtPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.h"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04b6787f899d04b678 /* ExtPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.h"; path = "../../PhysXExtensions/src/ExtPvd.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04b6e07f899d04b6e0 /* ExtRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.h"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04b7487f899d04b748 /* ExtSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSerialization.h"; path = "../../PhysXExtensions/src/ExtSerialization.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04b7b07f899d04b7b0 /* ExtSharedQueueEntryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSharedQueueEntryPool.h"; path = "../../PhysXExtensions/src/ExtSharedQueueEntryPool.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04b8187f899d04b818 /* ExtSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.h"; path = "../../PhysXExtensions/src/ExtSphericalJoint.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04b8807f899d04b880 /* ExtTaskQueueHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTaskQueueHelper.h"; path = "../../PhysXExtensions/src/ExtTaskQueueHelper.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04b8e87f899d04b8e8 /* ExtBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtBroadPhase.cpp"; path = "../../PhysXExtensions/src/ExtBroadPhase.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d04b9507f899d04b950 /* ExtClothFabricCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothFabricCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothFabricCooker.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d04b9b87f899d04b9b8 /* ExtClothGeodesicTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothGeodesicTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothGeodesicTetherCooker.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d04ba207f899d04ba20 /* ExtClothMeshQuadifier.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothMeshQuadifier.cpp"; path = "../../PhysXExtensions/src/ExtClothMeshQuadifier.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d04ba887f899d04ba88 /* ExtClothSimpleTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothSimpleTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothSimpleTetherCooker.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d04baf07f899d04baf0 /* ExtCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCollection.cpp"; path = "../../PhysXExtensions/src/ExtCollection.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d04bb587f899d04bb58 /* ExtConvexMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConvexMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtConvexMeshExt.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d04bbc07f899d04bbc0 /* ExtCpuWorkerThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.cpp"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d04bc287f899d04bc28 /* ExtD6Joint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.cpp"; path = "../../PhysXExtensions/src/ExtD6Joint.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d04bc907f899d04bc90 /* ExtD6JointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6JointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtD6JointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d04bcf87f899d04bcf8 /* ExtDefaultCpuDispatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.cpp"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d04bd607f899d04bd60 /* ExtDefaultErrorCallback.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultErrorCallback.cpp"; path = "../../PhysXExtensions/src/ExtDefaultErrorCallback.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d04bdc87f899d04bdc8 /* ExtDefaultSimulationFilterShader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultSimulationFilterShader.cpp"; path = "../../PhysXExtensions/src/ExtDefaultSimulationFilterShader.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d04be307f899d04be30 /* ExtDefaultStreams.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultStreams.cpp"; path = "../../PhysXExtensions/src/ExtDefaultStreams.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d04be987f899d04be98 /* ExtDistanceJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJoint.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d04bf007f899d04bf00 /* ExtDistanceJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d04bf687f899d04bf68 /* ExtExtensions.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtExtensions.cpp"; path = "../../PhysXExtensions/src/ExtExtensions.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d04bfd07f899d04bfd0 /* ExtFixedJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.cpp"; path = "../../PhysXExtensions/src/ExtFixedJoint.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d04c0387f899d04c038 /* ExtFixedJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtFixedJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d04c0a07f899d04c0a0 /* ExtJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.cpp"; path = "../../PhysXExtensions/src/ExtJoint.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d04c1087f899d04c108 /* ExtMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtMetaData.cpp"; path = "../../PhysXExtensions/src/ExtMetaData.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d04c1707f899d04c170 /* ExtParticleExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtParticleExt.cpp"; path = "../../PhysXExtensions/src/ExtParticleExt.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d04c1d87f899d04c1d8 /* ExtPrismaticJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d04c2407f899d04c240 /* ExtPrismaticJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d04c2a87f899d04c2a8 /* ExtPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.cpp"; path = "../../PhysXExtensions/src/ExtPvd.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d04c3107f899d04c310 /* ExtPxStringTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPxStringTable.cpp"; path = "../../PhysXExtensions/src/ExtPxStringTable.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d04c3787f899d04c378 /* ExtRaycastCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRaycastCCD.cpp"; path = "../../PhysXExtensions/src/ExtRaycastCCD.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d04c3e07f899d04c3e0 /* ExtRevoluteJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d04c4487f899d04c448 /* ExtRevoluteJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d04c4b07f899d04c4b0 /* ExtRigidBodyExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRigidBodyExt.cpp"; path = "../../PhysXExtensions/src/ExtRigidBodyExt.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d04c5187f899d04c518 /* ExtSceneQueryExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSceneQueryExt.cpp"; path = "../../PhysXExtensions/src/ExtSceneQueryExt.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d04c5807f899d04c580 /* ExtSimpleFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSimpleFactory.cpp"; path = "../../PhysXExtensions/src/ExtSimpleFactory.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d04c5e87f899d04c5e8 /* ExtSmoothNormals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSmoothNormals.cpp"; path = "../../PhysXExtensions/src/ExtSmoothNormals.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d04c6507f899d04c650 /* ExtSphericalJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJoint.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d04c6b87f899d04c6b8 /* ExtSphericalJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d04c7207f899d04c720 /* ExtTriangleMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTriangleMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtTriangleMeshExt.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d04ee007f899d04ee00 /* SnSerialUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.h"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04ee687f899d04ee68 /* SnSerializationRegistry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.h"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04eed07f899d04eed0 /* SnSerialUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d04ef387f899d04ef38 /* SnSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialization.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d04efa07f899d04efa0 /* SnSerializationRegistry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d04f0087f899d04f008 /* Binary/SnConvX.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04f0707f899d04f070 /* Binary/SnConvX_Align.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04f0d87f899d04f0d8 /* Binary/SnConvX_Common.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Common.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Common.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04f1407f899d04f140 /* Binary/SnConvX_MetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04f1a87f899d04f1a8 /* Binary/SnConvX_Output.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04f2107f899d04f210 /* Binary/SnConvX_Union.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04f2787f899d04f278 /* Binary/SnSerializationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04f2e07f899d04f2e0 /* Binary/SnBinaryDeserialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinaryDeserialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinaryDeserialization.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d04f3487f899d04f348 /* Binary/SnBinarySerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinarySerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinarySerialization.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d04f3b07f899d04f3b0 /* Binary/SnConvX.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d04f4187f899d04f418 /* Binary/SnConvX_Align.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d04f4807f899d04f480 /* Binary/SnConvX_Convert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Convert.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Convert.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d04f4e87f899d04f4e8 /* Binary/SnConvX_Error.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Error.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Error.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d04f5507f899d04f550 /* Binary/SnConvX_MetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d04f5b87f899d04f5b8 /* Binary/SnConvX_Output.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d04f6207f899d04f620 /* Binary/SnConvX_Union.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d04f6887f899d04f688 /* Binary/SnSerializationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d04f6f07f899d04f6f0 /* Xml/SnJointRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnJointRepXSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04f7587f899d04f758 /* Xml/SnPxStreamOperators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnPxStreamOperators.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnPxStreamOperators.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04f7c07f899d04f7c0 /* Xml/SnRepX1_0Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX1_0Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX1_0Defaults.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04f8287f899d04f828 /* Xml/SnRepX3_1Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_1Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_1Defaults.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04f8907f899d04f890 /* Xml/SnRepX3_2Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_2Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_2Defaults.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04f8f87f899d04f8f8 /* Xml/SnRepXCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCollection.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCollection.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04f9607f899d04f960 /* Xml/SnRepXCoreSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04f9c87f899d04f9c8 /* Xml/SnRepXSerializerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXSerializerImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXSerializerImpl.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04fa307f899d04fa30 /* Xml/SnRepXUpgrader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04fa987f899d04fa98 /* Xml/SnSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04fb007f899d04fb00 /* Xml/SnXmlDeserializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlDeserializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlDeserializer.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04fb687f899d04fb68 /* Xml/SnXmlImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlImpl.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04fbd07f899d04fbd0 /* Xml/SnXmlMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryAllocator.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryAllocator.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04fc387f899d04fc38 /* Xml/SnXmlMemoryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPool.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPool.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04fca07f899d04fca0 /* Xml/SnXmlMemoryPoolStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPoolStreams.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPoolStreams.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04fd087f899d04fd08 /* Xml/SnXmlReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlReader.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04fd707f899d04fd70 /* Xml/SnXmlSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerializer.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04fdd87f899d04fdd8 /* Xml/SnXmlSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04fe407f899d04fe40 /* Xml/SnXmlStringToType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlStringToType.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlStringToType.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04fea87f899d04fea8 /* Xml/SnXmlVisitorReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorReader.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04ff107f899d04ff10 /* Xml/SnXmlVisitorWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorWriter.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04ff787f899d04ff78 /* Xml/SnXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlWriter.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04ffe07f899d04ffe0 /* Xml/SnJointRepXSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnJointRepXSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0500487f899d050048 /* Xml/SnRepXCoreSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0500b07f899d0500b0 /* Xml/SnRepXUpgrader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0501187f899d050118 /* Xml/SnXmlSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerialization.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0501807f899d050180 /* File/SnFile.h */= { isa = PBXFileReference; fileEncoding = 4; name = "File/SnFile.h"; path = "../../PhysXExtensions/src/serialization/File/SnFile.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04d8007f899d04d800 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04d8687f899d04d868 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04d8d07f899d04d8d0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04d9387f899d04d938 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04d9a07f899d04d9a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04da087f899d04da08 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04da707f899d04da70 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04dad87f899d04dad8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04db407f899d04db40 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04dba87f899d04dba8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04dc107f899d04dc10 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04dc787f899d04dc78 /* extensions/include/PxExtensionMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d04dce07f899d04dce0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXMetaData/extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD441c17507fba441c1750 /* PhysXExtensions */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXExtensions"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFD4484fa007fba4484fa00 /* PxBinaryConverter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBinaryConverter.h"; path = "../../../Include/extensions/PxBinaryConverter.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4484fa687fba4484fa68 /* PxBroadPhaseExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhaseExt.h"; path = "../../../Include/extensions/PxBroadPhaseExt.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4484fad07fba4484fad0 /* PxClothFabricCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothFabricCooker.h"; path = "../../../Include/extensions/PxClothFabricCooker.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4484fb387fba4484fb38 /* PxClothMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshDesc.h"; path = "../../../Include/extensions/PxClothMeshDesc.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4484fba07fba4484fba0 /* PxClothMeshQuadifier.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshQuadifier.h"; path = "../../../Include/extensions/PxClothMeshQuadifier.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4484fc087fba4484fc08 /* PxClothTetherCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothTetherCooker.h"; path = "../../../Include/extensions/PxClothTetherCooker.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4484fc707fba4484fc70 /* PxCollectionExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCollectionExt.h"; path = "../../../Include/extensions/PxCollectionExt.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4484fcd87fba4484fcd8 /* PxConstraintExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintExt.h"; path = "../../../Include/extensions/PxConstraintExt.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4484fd407fba4484fd40 /* PxConvexMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshExt.h"; path = "../../../Include/extensions/PxConvexMeshExt.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4484fda87fba4484fda8 /* PxD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxD6Joint.h"; path = "../../../Include/extensions/PxD6Joint.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4484fe107fba4484fe10 /* PxDefaultAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultAllocator.h"; path = "../../../Include/extensions/PxDefaultAllocator.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4484fe787fba4484fe78 /* PxDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultCpuDispatcher.h"; path = "../../../Include/extensions/PxDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4484fee07fba4484fee0 /* PxDefaultErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultErrorCallback.h"; path = "../../../Include/extensions/PxDefaultErrorCallback.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4484ff487fba4484ff48 /* PxDefaultSimulationFilterShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultSimulationFilterShader.h"; path = "../../../Include/extensions/PxDefaultSimulationFilterShader.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4484ffb07fba4484ffb0 /* PxDefaultStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultStreams.h"; path = "../../../Include/extensions/PxDefaultStreams.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448500187fba44850018 /* PxDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDistanceJoint.h"; path = "../../../Include/extensions/PxDistanceJoint.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448500807fba44850080 /* PxExtensionsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtensionsAPI.h"; path = "../../../Include/extensions/PxExtensionsAPI.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448500e87fba448500e8 /* PxFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFixedJoint.h"; path = "../../../Include/extensions/PxFixedJoint.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448501507fba44850150 /* PxJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJoint.h"; path = "../../../Include/extensions/PxJoint.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448501b87fba448501b8 /* PxJointLimit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJointLimit.h"; path = "../../../Include/extensions/PxJointLimit.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448502207fba44850220 /* PxMassProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMassProperties.h"; path = "../../../Include/extensions/PxMassProperties.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448502887fba44850288 /* PxParticleExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxParticleExt.h"; path = "../../../Include/extensions/PxParticleExt.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448502f07fba448502f0 /* PxPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPrismaticJoint.h"; path = "../../../Include/extensions/PxPrismaticJoint.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448503587fba44850358 /* PxRaycastCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRaycastCCD.h"; path = "../../../Include/extensions/PxRaycastCCD.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448503c07fba448503c0 /* PxRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSerializer.h"; path = "../../../Include/extensions/PxRepXSerializer.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448504287fba44850428 /* PxRepXSimpleType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSimpleType.h"; path = "../../../Include/extensions/PxRepXSimpleType.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448504907fba44850490 /* PxRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRevoluteJoint.h"; path = "../../../Include/extensions/PxRevoluteJoint.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448504f87fba448504f8 /* PxRigidActorExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActorExt.h"; path = "../../../Include/extensions/PxRigidActorExt.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448505607fba44850560 /* PxRigidBodyExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBodyExt.h"; path = "../../../Include/extensions/PxRigidBodyExt.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448505c87fba448505c8 /* PxSceneQueryExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneQueryExt.h"; path = "../../../Include/extensions/PxSceneQueryExt.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448506307fba44850630 /* PxSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSerialization.h"; path = "../../../Include/extensions/PxSerialization.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448506987fba44850698 /* PxShapeExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShapeExt.h"; path = "../../../Include/extensions/PxShapeExt.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448507007fba44850700 /* PxSimpleFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleFactory.h"; path = "../../../Include/extensions/PxSimpleFactory.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448507687fba44850768 /* PxSmoothNormals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSmoothNormals.h"; path = "../../../Include/extensions/PxSmoothNormals.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448507d07fba448507d0 /* PxSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSphericalJoint.h"; path = "../../../Include/extensions/PxSphericalJoint.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448508387fba44850838 /* PxStringTableExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStringTableExt.h"; path = "../../../Include/extensions/PxStringTableExt.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448508a07fba448508a0 /* PxTriangleMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshExt.h"; path = "../../../Include/extensions/PxTriangleMeshExt.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4484e4007fba4484e400 /* ExtConstraintHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConstraintHelper.h"; path = "../../PhysXExtensions/src/ExtConstraintHelper.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4484e4687fba4484e468 /* ExtCpuWorkerThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.h"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4484e4d07fba4484e4d0 /* ExtD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.h"; path = "../../PhysXExtensions/src/ExtD6Joint.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4484e5387fba4484e538 /* ExtDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.h"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4484e5a07fba4484e5a0 /* ExtDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.h"; path = "../../PhysXExtensions/src/ExtDistanceJoint.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4484e6087fba4484e608 /* ExtFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.h"; path = "../../PhysXExtensions/src/ExtFixedJoint.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4484e6707fba4484e670 /* ExtInertiaTensor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtInertiaTensor.h"; path = "../../PhysXExtensions/src/ExtInertiaTensor.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4484e6d87fba4484e6d8 /* ExtJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.h"; path = "../../PhysXExtensions/src/ExtJoint.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4484e7407fba4484e740 /* ExtJointMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJointMetaDataExtensions.h"; path = "../../PhysXExtensions/src/ExtJointMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4484e7a87fba4484e7a8 /* ExtPlatform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPlatform.h"; path = "../../PhysXExtensions/src/ExtPlatform.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4484e8107fba4484e810 /* ExtPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.h"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4484e8787fba4484e878 /* ExtPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.h"; path = "../../PhysXExtensions/src/ExtPvd.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4484e8e07fba4484e8e0 /* ExtRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.h"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4484e9487fba4484e948 /* ExtSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSerialization.h"; path = "../../PhysXExtensions/src/ExtSerialization.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4484e9b07fba4484e9b0 /* ExtSharedQueueEntryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSharedQueueEntryPool.h"; path = "../../PhysXExtensions/src/ExtSharedQueueEntryPool.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4484ea187fba4484ea18 /* ExtSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.h"; path = "../../PhysXExtensions/src/ExtSphericalJoint.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4484ea807fba4484ea80 /* ExtTaskQueueHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTaskQueueHelper.h"; path = "../../PhysXExtensions/src/ExtTaskQueueHelper.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4484eae87fba4484eae8 /* ExtBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtBroadPhase.cpp"; path = "../../PhysXExtensions/src/ExtBroadPhase.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4484eb507fba4484eb50 /* ExtClothFabricCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothFabricCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothFabricCooker.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4484ebb87fba4484ebb8 /* ExtClothGeodesicTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothGeodesicTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothGeodesicTetherCooker.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4484ec207fba4484ec20 /* ExtClothMeshQuadifier.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothMeshQuadifier.cpp"; path = "../../PhysXExtensions/src/ExtClothMeshQuadifier.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4484ec887fba4484ec88 /* ExtClothSimpleTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothSimpleTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothSimpleTetherCooker.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4484ecf07fba4484ecf0 /* ExtCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCollection.cpp"; path = "../../PhysXExtensions/src/ExtCollection.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4484ed587fba4484ed58 /* ExtConvexMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConvexMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtConvexMeshExt.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4484edc07fba4484edc0 /* ExtCpuWorkerThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.cpp"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4484ee287fba4484ee28 /* ExtD6Joint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.cpp"; path = "../../PhysXExtensions/src/ExtD6Joint.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4484ee907fba4484ee90 /* ExtD6JointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6JointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtD6JointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4484eef87fba4484eef8 /* ExtDefaultCpuDispatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.cpp"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4484ef607fba4484ef60 /* ExtDefaultErrorCallback.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultErrorCallback.cpp"; path = "../../PhysXExtensions/src/ExtDefaultErrorCallback.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4484efc87fba4484efc8 /* ExtDefaultSimulationFilterShader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultSimulationFilterShader.cpp"; path = "../../PhysXExtensions/src/ExtDefaultSimulationFilterShader.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4484f0307fba4484f030 /* ExtDefaultStreams.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultStreams.cpp"; path = "../../PhysXExtensions/src/ExtDefaultStreams.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4484f0987fba4484f098 /* ExtDistanceJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJoint.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4484f1007fba4484f100 /* ExtDistanceJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4484f1687fba4484f168 /* ExtExtensions.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtExtensions.cpp"; path = "../../PhysXExtensions/src/ExtExtensions.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4484f1d07fba4484f1d0 /* ExtFixedJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.cpp"; path = "../../PhysXExtensions/src/ExtFixedJoint.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4484f2387fba4484f238 /* ExtFixedJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtFixedJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4484f2a07fba4484f2a0 /* ExtJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.cpp"; path = "../../PhysXExtensions/src/ExtJoint.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4484f3087fba4484f308 /* ExtMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtMetaData.cpp"; path = "../../PhysXExtensions/src/ExtMetaData.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4484f3707fba4484f370 /* ExtParticleExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtParticleExt.cpp"; path = "../../PhysXExtensions/src/ExtParticleExt.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4484f3d87fba4484f3d8 /* ExtPrismaticJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4484f4407fba4484f440 /* ExtPrismaticJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4484f4a87fba4484f4a8 /* ExtPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.cpp"; path = "../../PhysXExtensions/src/ExtPvd.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4484f5107fba4484f510 /* ExtPxStringTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPxStringTable.cpp"; path = "../../PhysXExtensions/src/ExtPxStringTable.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4484f5787fba4484f578 /* ExtRaycastCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRaycastCCD.cpp"; path = "../../PhysXExtensions/src/ExtRaycastCCD.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4484f5e07fba4484f5e0 /* ExtRevoluteJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4484f6487fba4484f648 /* ExtRevoluteJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4484f6b07fba4484f6b0 /* ExtRigidBodyExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRigidBodyExt.cpp"; path = "../../PhysXExtensions/src/ExtRigidBodyExt.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4484f7187fba4484f718 /* ExtSceneQueryExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSceneQueryExt.cpp"; path = "../../PhysXExtensions/src/ExtSceneQueryExt.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4484f7807fba4484f780 /* ExtSimpleFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSimpleFactory.cpp"; path = "../../PhysXExtensions/src/ExtSimpleFactory.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4484f7e87fba4484f7e8 /* ExtSmoothNormals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSmoothNormals.cpp"; path = "../../PhysXExtensions/src/ExtSmoothNormals.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4484f8507fba4484f850 /* ExtSphericalJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJoint.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4484f8b87fba4484f8b8 /* ExtSphericalJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4484f9207fba4484f920 /* ExtTriangleMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTriangleMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtTriangleMeshExt.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448528007fba44852800 /* SnSerialUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.h"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448528687fba44852868 /* SnSerializationRegistry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.h"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448528d07fba448528d0 /* SnSerialUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448529387fba44852938 /* SnSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialization.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448529a07fba448529a0 /* SnSerializationRegistry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD44852a087fba44852a08 /* Binary/SnConvX.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44852a707fba44852a70 /* Binary/SnConvX_Align.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44852ad87fba44852ad8 /* Binary/SnConvX_Common.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Common.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Common.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44852b407fba44852b40 /* Binary/SnConvX_MetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44852ba87fba44852ba8 /* Binary/SnConvX_Output.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44852c107fba44852c10 /* Binary/SnConvX_Union.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44852c787fba44852c78 /* Binary/SnSerializationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44852ce07fba44852ce0 /* Binary/SnBinaryDeserialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinaryDeserialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinaryDeserialization.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD44852d487fba44852d48 /* Binary/SnBinarySerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinarySerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinarySerialization.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD44852db07fba44852db0 /* Binary/SnConvX.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD44852e187fba44852e18 /* Binary/SnConvX_Align.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD44852e807fba44852e80 /* Binary/SnConvX_Convert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Convert.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Convert.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD44852ee87fba44852ee8 /* Binary/SnConvX_Error.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Error.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Error.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD44852f507fba44852f50 /* Binary/SnConvX_MetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD44852fb87fba44852fb8 /* Binary/SnConvX_Output.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448530207fba44853020 /* Binary/SnConvX_Union.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448530887fba44853088 /* Binary/SnSerializationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448530f07fba448530f0 /* Xml/SnJointRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnJointRepXSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448531587fba44853158 /* Xml/SnPxStreamOperators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnPxStreamOperators.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnPxStreamOperators.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448531c07fba448531c0 /* Xml/SnRepX1_0Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX1_0Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX1_0Defaults.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448532287fba44853228 /* Xml/SnRepX3_1Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_1Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_1Defaults.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448532907fba44853290 /* Xml/SnRepX3_2Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_2Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_2Defaults.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448532f87fba448532f8 /* Xml/SnRepXCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCollection.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCollection.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448533607fba44853360 /* Xml/SnRepXCoreSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448533c87fba448533c8 /* Xml/SnRepXSerializerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXSerializerImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXSerializerImpl.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448534307fba44853430 /* Xml/SnRepXUpgrader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448534987fba44853498 /* Xml/SnSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448535007fba44853500 /* Xml/SnXmlDeserializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlDeserializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlDeserializer.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448535687fba44853568 /* Xml/SnXmlImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlImpl.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448535d07fba448535d0 /* Xml/SnXmlMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryAllocator.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryAllocator.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448536387fba44853638 /* Xml/SnXmlMemoryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPool.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPool.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448536a07fba448536a0 /* Xml/SnXmlMemoryPoolStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPoolStreams.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPoolStreams.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448537087fba44853708 /* Xml/SnXmlReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlReader.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448537707fba44853770 /* Xml/SnXmlSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerializer.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448537d87fba448537d8 /* Xml/SnXmlSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448538407fba44853840 /* Xml/SnXmlStringToType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlStringToType.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlStringToType.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448538a87fba448538a8 /* Xml/SnXmlVisitorReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorReader.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448539107fba44853910 /* Xml/SnXmlVisitorWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorWriter.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448539787fba44853978 /* Xml/SnXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlWriter.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448539e07fba448539e0 /* Xml/SnJointRepXSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnJointRepXSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD44853a487fba44853a48 /* Xml/SnRepXCoreSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD44853ab07fba44853ab0 /* Xml/SnRepXUpgrader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD44853b187fba44853b18 /* Xml/SnXmlSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerialization.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD44853b807fba44853b80 /* File/SnFile.h */= { isa = PBXFileReference; fileEncoding = 4; name = "File/SnFile.h"; path = "../../PhysXExtensions/src/serialization/File/SnFile.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44850a007fba44850a00 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44850a687fba44850a68 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44850ad07fba44850ad0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44850b387fba44850b38 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44850ba07fba44850ba0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44850c087fba44850c08 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44850c707fba44850c70 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44850cd87fba44850cd8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44850d407fba44850d40 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44850da87fba44850da8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44850e107fba44850e10 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44850e787fba44850e78 /* extensions/include/PxExtensionMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionMetaDataObjects.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44850ee07fba44850ee0 /* 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 */
- FFF29e138e707f899e138e70 /* Resources */ = {
+ FFF2441c17507fba441c1750 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -804,7 +804,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFC9e138e707f899e138e70 /* Frameworks */ = {
+ FFFC441c17507fba441c1750 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -814,64 +814,64 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF89e138e707f899e138e70 /* Sources */ = {
+ FFF8441c17507fba441c1750 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFF9d04b8e87f899d04b8e8,
- FFFF9d04b9507f899d04b950,
- FFFF9d04b9b87f899d04b9b8,
- FFFF9d04ba207f899d04ba20,
- FFFF9d04ba887f899d04ba88,
- FFFF9d04baf07f899d04baf0,
- FFFF9d04bb587f899d04bb58,
- FFFF9d04bbc07f899d04bbc0,
- FFFF9d04bc287f899d04bc28,
- FFFF9d04bc907f899d04bc90,
- FFFF9d04bcf87f899d04bcf8,
- FFFF9d04bd607f899d04bd60,
- FFFF9d04bdc87f899d04bdc8,
- FFFF9d04be307f899d04be30,
- FFFF9d04be987f899d04be98,
- FFFF9d04bf007f899d04bf00,
- FFFF9d04bf687f899d04bf68,
- FFFF9d04bfd07f899d04bfd0,
- FFFF9d04c0387f899d04c038,
- FFFF9d04c0a07f899d04c0a0,
- FFFF9d04c1087f899d04c108,
- FFFF9d04c1707f899d04c170,
- FFFF9d04c1d87f899d04c1d8,
- FFFF9d04c2407f899d04c240,
- FFFF9d04c2a87f899d04c2a8,
- FFFF9d04c3107f899d04c310,
- FFFF9d04c3787f899d04c378,
- FFFF9d04c3e07f899d04c3e0,
- FFFF9d04c4487f899d04c448,
- FFFF9d04c4b07f899d04c4b0,
- FFFF9d04c5187f899d04c518,
- FFFF9d04c5807f899d04c580,
- FFFF9d04c5e87f899d04c5e8,
- FFFF9d04c6507f899d04c650,
- FFFF9d04c6b87f899d04c6b8,
- FFFF9d04c7207f899d04c720,
- FFFF9d04eed07f899d04eed0,
- FFFF9d04ef387f899d04ef38,
- FFFF9d04efa07f899d04efa0,
- FFFF9d04f2e07f899d04f2e0,
- FFFF9d04f3487f899d04f348,
- FFFF9d04f3b07f899d04f3b0,
- FFFF9d04f4187f899d04f418,
- FFFF9d04f4807f899d04f480,
- FFFF9d04f4e87f899d04f4e8,
- FFFF9d04f5507f899d04f550,
- FFFF9d04f5b87f899d04f5b8,
- FFFF9d04f6207f899d04f620,
- FFFF9d04f6887f899d04f688,
- FFFF9d04ffe07f899d04ffe0,
- FFFF9d0500487f899d050048,
- FFFF9d0500b07f899d0500b0,
- FFFF9d0501187f899d050118,
- FFFF9d04dce07f899d04dce0,
+ FFFF4484eae87fba4484eae8,
+ FFFF4484eb507fba4484eb50,
+ FFFF4484ebb87fba4484ebb8,
+ FFFF4484ec207fba4484ec20,
+ FFFF4484ec887fba4484ec88,
+ FFFF4484ecf07fba4484ecf0,
+ FFFF4484ed587fba4484ed58,
+ FFFF4484edc07fba4484edc0,
+ FFFF4484ee287fba4484ee28,
+ FFFF4484ee907fba4484ee90,
+ FFFF4484eef87fba4484eef8,
+ FFFF4484ef607fba4484ef60,
+ FFFF4484efc87fba4484efc8,
+ FFFF4484f0307fba4484f030,
+ FFFF4484f0987fba4484f098,
+ FFFF4484f1007fba4484f100,
+ FFFF4484f1687fba4484f168,
+ FFFF4484f1d07fba4484f1d0,
+ FFFF4484f2387fba4484f238,
+ FFFF4484f2a07fba4484f2a0,
+ FFFF4484f3087fba4484f308,
+ FFFF4484f3707fba4484f370,
+ FFFF4484f3d87fba4484f3d8,
+ FFFF4484f4407fba4484f440,
+ FFFF4484f4a87fba4484f4a8,
+ FFFF4484f5107fba4484f510,
+ FFFF4484f5787fba4484f578,
+ FFFF4484f5e07fba4484f5e0,
+ FFFF4484f6487fba4484f648,
+ FFFF4484f6b07fba4484f6b0,
+ FFFF4484f7187fba4484f718,
+ FFFF4484f7807fba4484f780,
+ FFFF4484f7e87fba4484f7e8,
+ FFFF4484f8507fba4484f850,
+ FFFF4484f8b87fba4484f8b8,
+ FFFF4484f9207fba4484f920,
+ FFFF448528d07fba448528d0,
+ FFFF448529387fba44852938,
+ FFFF448529a07fba448529a0,
+ FFFF44852ce07fba44852ce0,
+ FFFF44852d487fba44852d48,
+ FFFF44852db07fba44852db0,
+ FFFF44852e187fba44852e18,
+ FFFF44852e807fba44852e80,
+ FFFF44852ee87fba44852ee8,
+ FFFF44852f507fba44852f50,
+ FFFF44852fb87fba44852fb8,
+ FFFF448530207fba44853020,
+ FFFF448530887fba44853088,
+ FFFF448539e07fba448539e0,
+ FFFF44853a487fba44853a48,
+ FFFF44853ab07fba44853ab0,
+ FFFF44853b187fba44853b18,
+ FFFF44850ee07fba44850ee0,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -880,65 +880,65 @@
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
- FFF49e13f4b07f899e13f4b0 /* PBXTargetDependency */ = {
+ FFF4441c0e507fba441c0e50 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFA9e12da307f899e12da30 /* PsFastXml */;
- targetProxy = FFF59e12da307f899e12da30 /* PBXContainerItemProxy */;
+ target = FFFA441a12707fba441a1270 /* PsFastXml */;
+ targetProxy = FFF5441a12707fba441a1270 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of SceneQuery */
- FFFF9c21ce007f899c21ce00 /* SqAABBPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c21ce007f899c21ce00 /* SqAABBPruner.cpp */; };
- FFFF9c21ce687f899c21ce68 /* SqAABBTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c21ce687f899c21ce68 /* SqAABBTree.cpp */; };
- FFFF9c21ced07f899c21ced0 /* SqAABBTreeBuild.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c21ced07f899c21ced0 /* SqAABBTreeBuild.cpp */; };
- FFFF9c21cf387f899c21cf38 /* SqAABBTreeUpdateMap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c21cf387f899c21cf38 /* SqAABBTreeUpdateMap.cpp */; };
- FFFF9c21cfa07f899c21cfa0 /* SqBounds.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c21cfa07f899c21cfa0 /* SqBounds.cpp */; };
- FFFF9c21d0087f899c21d008 /* SqBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c21d0087f899c21d008 /* SqBucketPruner.cpp */; };
- FFFF9c21d0707f899c21d070 /* SqExtendedBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c21d0707f899c21d070 /* SqExtendedBucketPruner.cpp */; };
- FFFF9c21d0d87f899c21d0d8 /* SqIncrementalAABBPrunerCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c21d0d87f899c21d0d8 /* SqIncrementalAABBPrunerCore.cpp */; };
- FFFF9c21d1407f899c21d140 /* SqIncrementalAABBTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c21d1407f899c21d140 /* SqIncrementalAABBTree.cpp */; };
- FFFF9c21d1a87f899c21d1a8 /* SqMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c21d1a87f899c21d1a8 /* SqMetaData.cpp */; };
- FFFF9c21d2107f899c21d210 /* SqPruningPool.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c21d2107f899c21d210 /* SqPruningPool.cpp */; };
- FFFF9c21d2787f899c21d278 /* SqPruningStructure.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c21d2787f899c21d278 /* SqPruningStructure.cpp */; };
- FFFF9c21d2e07f899c21d2e0 /* SqSceneQueryManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c21d2e07f899c21d2e0 /* SqSceneQueryManager.cpp */; };
+ FFFF448570007fba44857000 /* SqAABBPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448570007fba44857000 /* SqAABBPruner.cpp */; };
+ FFFF448570687fba44857068 /* SqAABBTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448570687fba44857068 /* SqAABBTree.cpp */; };
+ FFFF448570d07fba448570d0 /* SqAABBTreeBuild.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448570d07fba448570d0 /* SqAABBTreeBuild.cpp */; };
+ FFFF448571387fba44857138 /* SqAABBTreeUpdateMap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448571387fba44857138 /* SqAABBTreeUpdateMap.cpp */; };
+ FFFF448571a07fba448571a0 /* SqBounds.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448571a07fba448571a0 /* SqBounds.cpp */; };
+ FFFF448572087fba44857208 /* SqBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448572087fba44857208 /* SqBucketPruner.cpp */; };
+ FFFF448572707fba44857270 /* SqExtendedBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448572707fba44857270 /* SqExtendedBucketPruner.cpp */; };
+ FFFF448572d87fba448572d8 /* SqIncrementalAABBPrunerCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448572d87fba448572d8 /* SqIncrementalAABBPrunerCore.cpp */; };
+ FFFF448573407fba44857340 /* SqIncrementalAABBTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448573407fba44857340 /* SqIncrementalAABBTree.cpp */; };
+ FFFF448573a87fba448573a8 /* SqMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448573a87fba448573a8 /* SqMetaData.cpp */; };
+ FFFF448574107fba44857410 /* SqPruningPool.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448574107fba44857410 /* SqPruningPool.cpp */; };
+ FFFF448574787fba44857478 /* SqPruningStructure.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448574787fba44857478 /* SqPruningStructure.cpp */; };
+ FFFF448574e07fba448574e0 /* SqSceneQueryManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448574e07fba448574e0 /* SqSceneQueryManager.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFD9e4ea8a07f899e4ea8a0 /* SceneQuery */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SceneQuery"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFD9c21ce007f899c21ce00 /* SqAABBPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.cpp"; path = "../../SceneQuery/src/SqAABBPruner.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c21ce687f899c21ce68 /* SqAABBTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.cpp"; path = "../../SceneQuery/src/SqAABBTree.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c21ced07f899c21ced0 /* SqAABBTreeBuild.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeBuild.cpp"; path = "../../SceneQuery/src/SqAABBTreeBuild.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c21cf387f899c21cf38 /* SqAABBTreeUpdateMap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.cpp"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c21cfa07f899c21cfa0 /* SqBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.cpp"; path = "../../SceneQuery/src/SqBounds.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c21d0087f899c21d008 /* SqBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.cpp"; path = "../../SceneQuery/src/SqBucketPruner.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c21d0707f899c21d070 /* SqExtendedBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.cpp"; path = "../../SceneQuery/src/SqExtendedBucketPruner.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c21d0d87f899c21d0d8 /* SqIncrementalAABBPrunerCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqIncrementalAABBPrunerCore.cpp"; path = "../../SceneQuery/src/SqIncrementalAABBPrunerCore.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c21d1407f899c21d140 /* SqIncrementalAABBTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqIncrementalAABBTree.cpp"; path = "../../SceneQuery/src/SqIncrementalAABBTree.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c21d1a87f899c21d1a8 /* SqMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqMetaData.cpp"; path = "../../SceneQuery/src/SqMetaData.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c21d2107f899c21d210 /* SqPruningPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.cpp"; path = "../../SceneQuery/src/SqPruningPool.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c21d2787f899c21d278 /* SqPruningStructure.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.cpp"; path = "../../SceneQuery/src/SqPruningStructure.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c21d2e07f899c21d2e0 /* SqSceneQueryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.cpp"; path = "../../SceneQuery/src/SqSceneQueryManager.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c21d3487f899c21d348 /* SqAABBPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.h"; path = "../../SceneQuery/src/SqAABBPruner.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c21d3b07f899c21d3b0 /* SqAABBTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.h"; path = "../../SceneQuery/src/SqAABBTree.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c21d4187f899c21d418 /* SqAABBTreeBuild.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeBuild.h"; path = "../../SceneQuery/src/SqAABBTreeBuild.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c21d4807f899c21d480 /* SqAABBTreeQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeQuery.h"; path = "../../SceneQuery/src/SqAABBTreeQuery.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c21d4e87f899c21d4e8 /* SqAABBTreeUpdateMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.h"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c21d5507f899c21d550 /* SqBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.h"; path = "../../SceneQuery/src/SqBounds.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c21d5b87f899c21d5b8 /* SqBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.h"; path = "../../SceneQuery/src/SqBucketPruner.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c21d6207f899c21d620 /* SqExtendedBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.h"; path = "../../SceneQuery/src/SqExtendedBucketPruner.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c21d6887f899c21d688 /* SqIncrementalAABBPrunerCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqIncrementalAABBPrunerCore.h"; path = "../../SceneQuery/src/SqIncrementalAABBPrunerCore.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c21d6f07f899c21d6f0 /* SqIncrementalAABBTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqIncrementalAABBTree.h"; path = "../../SceneQuery/src/SqIncrementalAABBTree.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c21d7587f899c21d758 /* SqPrunerTestsSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerTestsSIMD.h"; path = "../../SceneQuery/src/SqPrunerTestsSIMD.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c21d7c07f899c21d7c0 /* SqPruningPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.h"; path = "../../SceneQuery/src/SqPruningPool.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c21d8287f899c21d828 /* SqTypedef.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqTypedef.h"; path = "../../SceneQuery/src/SqTypedef.h"; sourceTree = SOURCE_ROOT; };
- FFFD9e5187f07f899e5187f0 /* SqPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruner.h"; path = "../../SceneQuery/include/SqPruner.h"; sourceTree = SOURCE_ROOT; };
- FFFD9e5188587f899e518858 /* SqPrunerMergeData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerMergeData.h"; path = "../../SceneQuery/include/SqPrunerMergeData.h"; sourceTree = SOURCE_ROOT; };
- FFFD9e5188c07f899e5188c0 /* SqPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.h"; path = "../../SceneQuery/include/SqPruningStructure.h"; sourceTree = SOURCE_ROOT; };
- FFFD9e5189287f899e518928 /* SqSceneQueryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.h"; path = "../../SceneQuery/include/SqSceneQueryManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFD441d40a07fba441d40a0 /* SceneQuery */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SceneQuery"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFD448570007fba44857000 /* SqAABBPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.cpp"; path = "../../SceneQuery/src/SqAABBPruner.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448570687fba44857068 /* SqAABBTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.cpp"; path = "../../SceneQuery/src/SqAABBTree.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448570d07fba448570d0 /* SqAABBTreeBuild.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeBuild.cpp"; path = "../../SceneQuery/src/SqAABBTreeBuild.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448571387fba44857138 /* SqAABBTreeUpdateMap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.cpp"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448571a07fba448571a0 /* SqBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.cpp"; path = "../../SceneQuery/src/SqBounds.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448572087fba44857208 /* SqBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.cpp"; path = "../../SceneQuery/src/SqBucketPruner.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448572707fba44857270 /* SqExtendedBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.cpp"; path = "../../SceneQuery/src/SqExtendedBucketPruner.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448572d87fba448572d8 /* SqIncrementalAABBPrunerCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqIncrementalAABBPrunerCore.cpp"; path = "../../SceneQuery/src/SqIncrementalAABBPrunerCore.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448573407fba44857340 /* SqIncrementalAABBTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqIncrementalAABBTree.cpp"; path = "../../SceneQuery/src/SqIncrementalAABBTree.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448573a87fba448573a8 /* SqMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqMetaData.cpp"; path = "../../SceneQuery/src/SqMetaData.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448574107fba44857410 /* SqPruningPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.cpp"; path = "../../SceneQuery/src/SqPruningPool.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448574787fba44857478 /* SqPruningStructure.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.cpp"; path = "../../SceneQuery/src/SqPruningStructure.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448574e07fba448574e0 /* SqSceneQueryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.cpp"; path = "../../SceneQuery/src/SqSceneQueryManager.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448575487fba44857548 /* SqAABBPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.h"; path = "../../SceneQuery/src/SqAABBPruner.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448575b07fba448575b0 /* SqAABBTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.h"; path = "../../SceneQuery/src/SqAABBTree.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448576187fba44857618 /* SqAABBTreeBuild.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeBuild.h"; path = "../../SceneQuery/src/SqAABBTreeBuild.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448576807fba44857680 /* SqAABBTreeQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeQuery.h"; path = "../../SceneQuery/src/SqAABBTreeQuery.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448576e87fba448576e8 /* SqAABBTreeUpdateMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.h"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448577507fba44857750 /* SqBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.h"; path = "../../SceneQuery/src/SqBounds.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448577b87fba448577b8 /* SqBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.h"; path = "../../SceneQuery/src/SqBucketPruner.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448578207fba44857820 /* SqExtendedBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.h"; path = "../../SceneQuery/src/SqExtendedBucketPruner.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448578887fba44857888 /* SqIncrementalAABBPrunerCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqIncrementalAABBPrunerCore.h"; path = "../../SceneQuery/src/SqIncrementalAABBPrunerCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448578f07fba448578f0 /* SqIncrementalAABBTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqIncrementalAABBTree.h"; path = "../../SceneQuery/src/SqIncrementalAABBTree.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448579587fba44857958 /* SqPrunerTestsSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerTestsSIMD.h"; path = "../../SceneQuery/src/SqPrunerTestsSIMD.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448579c07fba448579c0 /* SqPruningPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.h"; path = "../../SceneQuery/src/SqPruningPool.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44857a287fba44857a28 /* SqTypedef.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqTypedef.h"; path = "../../SceneQuery/src/SqTypedef.h"; sourceTree = SOURCE_ROOT; };
+ FFFD441d83607fba441d8360 /* SqPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruner.h"; path = "../../SceneQuery/include/SqPruner.h"; sourceTree = SOURCE_ROOT; };
+ FFFD441d83c87fba441d83c8 /* SqPrunerMergeData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerMergeData.h"; path = "../../SceneQuery/include/SqPrunerMergeData.h"; sourceTree = SOURCE_ROOT; };
+ FFFD441d84307fba441d8430 /* SqPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.h"; path = "../../SceneQuery/include/SqPruningStructure.h"; sourceTree = SOURCE_ROOT; };
+ FFFD441d84987fba441d8498 /* SqSceneQueryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.h"; path = "../../SceneQuery/include/SqSceneQueryManager.h"; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */
/* Begin PBXResourcesBuildPhase section */
- FFF29e4ea8a07f899e4ea8a0 /* Resources */ = {
+ FFF2441d40a07fba441d40a0 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -948,7 +948,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFC9e4ea8a07f899e4ea8a0 /* Frameworks */ = {
+ FFFC441d40a07fba441d40a0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -958,23 +958,23 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF89e4ea8a07f899e4ea8a0 /* Sources */ = {
+ FFF8441d40a07fba441d40a0 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFF9c21ce007f899c21ce00,
- FFFF9c21ce687f899c21ce68,
- FFFF9c21ced07f899c21ced0,
- FFFF9c21cf387f899c21cf38,
- FFFF9c21cfa07f899c21cfa0,
- FFFF9c21d0087f899c21d008,
- FFFF9c21d0707f899c21d070,
- FFFF9c21d0d87f899c21d0d8,
- FFFF9c21d1407f899c21d140,
- FFFF9c21d1a87f899c21d1a8,
- FFFF9c21d2107f899c21d210,
- FFFF9c21d2787f899c21d278,
- FFFF9c21d2e07f899c21d2e0,
+ FFFF448570007fba44857000,
+ FFFF448570687fba44857068,
+ FFFF448570d07fba448570d0,
+ FFFF448571387fba44857138,
+ FFFF448571a07fba448571a0,
+ FFFF448572087fba44857208,
+ FFFF448572707fba44857270,
+ FFFF448572d87fba448572d8,
+ FFFF448573407fba44857340,
+ FFFF448573a87fba448573a8,
+ FFFF448574107fba44857410,
+ FFFF448574787fba44857478,
+ FFFF448574e07fba448574e0,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -986,154 +986,154 @@
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of SimulationController */
- FFFF9c223bd07f899c223bd0 /* ScActorCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c223bd07f899c223bd0 /* ScActorCore.cpp */; };
- FFFF9c223c387f899c223c38 /* ScActorSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c223c387f899c223c38 /* ScActorSim.cpp */; };
- FFFF9c223ca07f899c223ca0 /* ScArticulationCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c223ca07f899c223ca0 /* ScArticulationCore.cpp */; };
- FFFF9c223d087f899c223d08 /* ScArticulationJointCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c223d087f899c223d08 /* ScArticulationJointCore.cpp */; };
- FFFF9c223d707f899c223d70 /* ScArticulationJointSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c223d707f899c223d70 /* ScArticulationJointSim.cpp */; };
- FFFF9c223dd87f899c223dd8 /* ScArticulationSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c223dd87f899c223dd8 /* ScArticulationSim.cpp */; };
- FFFF9c223e407f899c223e40 /* ScBodyCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c223e407f899c223e40 /* ScBodyCore.cpp */; };
- FFFF9c223ea87f899c223ea8 /* ScBodyCoreKinematic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c223ea87f899c223ea8 /* ScBodyCoreKinematic.cpp */; };
- FFFF9c223f107f899c223f10 /* ScBodySim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c223f107f899c223f10 /* ScBodySim.cpp */; };
- FFFF9c223f787f899c223f78 /* ScConstraintCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c223f787f899c223f78 /* ScConstraintCore.cpp */; };
- FFFF9c223fe07f899c223fe0 /* ScConstraintGroupNode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c223fe07f899c223fe0 /* ScConstraintGroupNode.cpp */; };
- FFFF9c2240487f899c224048 /* ScConstraintInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c2240487f899c224048 /* ScConstraintInteraction.cpp */; };
- FFFF9c2240b07f899c2240b0 /* ScConstraintProjectionManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c2240b07f899c2240b0 /* ScConstraintProjectionManager.cpp */; };
- FFFF9c2241187f899c224118 /* ScConstraintProjectionTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c2241187f899c224118 /* ScConstraintProjectionTree.cpp */; };
- FFFF9c2241807f899c224180 /* ScConstraintSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c2241807f899c224180 /* ScConstraintSim.cpp */; };
- FFFF9c2241e87f899c2241e8 /* ScElementInteractionMarker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c2241e87f899c2241e8 /* ScElementInteractionMarker.cpp */; };
- FFFF9c2242507f899c224250 /* ScElementSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c2242507f899c224250 /* ScElementSim.cpp */; };
- FFFF9c2242b87f899c2242b8 /* ScInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c2242b87f899c2242b8 /* ScInteraction.cpp */; };
- FFFF9c2243207f899c224320 /* ScIterators.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c2243207f899c224320 /* ScIterators.cpp */; };
- FFFF9c2243887f899c224388 /* ScMaterialCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c2243887f899c224388 /* ScMaterialCore.cpp */; };
- FFFF9c2243f07f899c2243f0 /* ScMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c2243f07f899c2243f0 /* ScMetaData.cpp */; };
- FFFF9c2244587f899c224458 /* ScNPhaseCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c2244587f899c224458 /* ScNPhaseCore.cpp */; };
- FFFF9c2244c07f899c2244c0 /* ScPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c2244c07f899c2244c0 /* ScPhysics.cpp */; };
- FFFF9c2245287f899c224528 /* ScRigidCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c2245287f899c224528 /* ScRigidCore.cpp */; };
- FFFF9c2245907f899c224590 /* ScRigidSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c2245907f899c224590 /* ScRigidSim.cpp */; };
- FFFF9c2245f87f899c2245f8 /* ScScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c2245f87f899c2245f8 /* ScScene.cpp */; };
- FFFF9c2246607f899c224660 /* ScShapeCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c2246607f899c224660 /* ScShapeCore.cpp */; };
- FFFF9c2246c87f899c2246c8 /* ScShapeInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c2246c87f899c2246c8 /* ScShapeInteraction.cpp */; };
- FFFF9c2247307f899c224730 /* ScShapeSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c2247307f899c224730 /* ScShapeSim.cpp */; };
- FFFF9c2247987f899c224798 /* ScSimStats.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c2247987f899c224798 /* ScSimStats.cpp */; };
- FFFF9c2248007f899c224800 /* ScSimulationController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c2248007f899c224800 /* ScSimulationController.cpp */; };
- FFFF9c2248687f899c224868 /* ScSqBoundsManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c2248687f899c224868 /* ScSqBoundsManager.cpp */; };
- FFFF9c2248d07f899c2248d0 /* ScStaticCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c2248d07f899c2248d0 /* ScStaticCore.cpp */; };
- FFFF9c2249387f899c224938 /* ScStaticSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c2249387f899c224938 /* ScStaticSim.cpp */; };
- FFFF9c2249a07f899c2249a0 /* ScTriggerInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c2249a07f899c2249a0 /* ScTriggerInteraction.cpp */; };
- FFFF9c224b407f899c224b40 /* particles/ScParticleBodyInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c224b407f899c224b40 /* particles/ScParticleBodyInteraction.cpp */; };
- FFFF9c224ba87f899c224ba8 /* particles/ScParticlePacketShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c224ba87f899c224ba8 /* particles/ScParticlePacketShape.cpp */; };
- FFFF9c224c107f899c224c10 /* particles/ScParticleSystemCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c224c107f899c224c10 /* particles/ScParticleSystemCore.cpp */; };
- FFFF9c224c787f899c224c78 /* particles/ScParticleSystemSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c224c787f899c224c78 /* particles/ScParticleSystemSim.cpp */; };
- FFFF9c224db07f899c224db0 /* cloth/ScClothCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c224db07f899c224db0 /* cloth/ScClothCore.cpp */; };
- FFFF9c224e187f899c224e18 /* cloth/ScClothFabricCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c224e187f899c224e18 /* cloth/ScClothFabricCore.cpp */; };
- FFFF9c224e807f899c224e80 /* cloth/ScClothShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c224e807f899c224e80 /* cloth/ScClothShape.cpp */; };
- FFFF9c224ee87f899c224ee8 /* cloth/ScClothSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c224ee87f899c224ee8 /* cloth/ScClothSim.cpp */; };
+ FFFF4485dbd07fba4485dbd0 /* ScActorCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4485dbd07fba4485dbd0 /* ScActorCore.cpp */; };
+ FFFF4485dc387fba4485dc38 /* ScActorSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4485dc387fba4485dc38 /* ScActorSim.cpp */; };
+ FFFF4485dca07fba4485dca0 /* ScArticulationCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4485dca07fba4485dca0 /* ScArticulationCore.cpp */; };
+ FFFF4485dd087fba4485dd08 /* ScArticulationJointCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4485dd087fba4485dd08 /* ScArticulationJointCore.cpp */; };
+ FFFF4485dd707fba4485dd70 /* ScArticulationJointSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4485dd707fba4485dd70 /* ScArticulationJointSim.cpp */; };
+ FFFF4485ddd87fba4485ddd8 /* ScArticulationSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4485ddd87fba4485ddd8 /* ScArticulationSim.cpp */; };
+ FFFF4485de407fba4485de40 /* ScBodyCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4485de407fba4485de40 /* ScBodyCore.cpp */; };
+ FFFF4485dea87fba4485dea8 /* ScBodyCoreKinematic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4485dea87fba4485dea8 /* ScBodyCoreKinematic.cpp */; };
+ FFFF4485df107fba4485df10 /* ScBodySim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4485df107fba4485df10 /* ScBodySim.cpp */; };
+ FFFF4485df787fba4485df78 /* ScConstraintCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4485df787fba4485df78 /* ScConstraintCore.cpp */; };
+ FFFF4485dfe07fba4485dfe0 /* ScConstraintGroupNode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4485dfe07fba4485dfe0 /* ScConstraintGroupNode.cpp */; };
+ FFFF4485e0487fba4485e048 /* ScConstraintInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4485e0487fba4485e048 /* ScConstraintInteraction.cpp */; };
+ FFFF4485e0b07fba4485e0b0 /* ScConstraintProjectionManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4485e0b07fba4485e0b0 /* ScConstraintProjectionManager.cpp */; };
+ FFFF4485e1187fba4485e118 /* ScConstraintProjectionTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4485e1187fba4485e118 /* ScConstraintProjectionTree.cpp */; };
+ FFFF4485e1807fba4485e180 /* ScConstraintSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4485e1807fba4485e180 /* ScConstraintSim.cpp */; };
+ FFFF4485e1e87fba4485e1e8 /* ScElementInteractionMarker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4485e1e87fba4485e1e8 /* ScElementInteractionMarker.cpp */; };
+ FFFF4485e2507fba4485e250 /* ScElementSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4485e2507fba4485e250 /* ScElementSim.cpp */; };
+ FFFF4485e2b87fba4485e2b8 /* ScInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4485e2b87fba4485e2b8 /* ScInteraction.cpp */; };
+ FFFF4485e3207fba4485e320 /* ScIterators.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4485e3207fba4485e320 /* ScIterators.cpp */; };
+ FFFF4485e3887fba4485e388 /* ScMaterialCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4485e3887fba4485e388 /* ScMaterialCore.cpp */; };
+ FFFF4485e3f07fba4485e3f0 /* ScMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4485e3f07fba4485e3f0 /* ScMetaData.cpp */; };
+ FFFF4485e4587fba4485e458 /* ScNPhaseCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4485e4587fba4485e458 /* ScNPhaseCore.cpp */; };
+ FFFF4485e4c07fba4485e4c0 /* ScPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4485e4c07fba4485e4c0 /* ScPhysics.cpp */; };
+ FFFF4485e5287fba4485e528 /* ScRigidCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4485e5287fba4485e528 /* ScRigidCore.cpp */; };
+ FFFF4485e5907fba4485e590 /* ScRigidSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4485e5907fba4485e590 /* ScRigidSim.cpp */; };
+ FFFF4485e5f87fba4485e5f8 /* ScScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4485e5f87fba4485e5f8 /* ScScene.cpp */; };
+ FFFF4485e6607fba4485e660 /* ScShapeCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4485e6607fba4485e660 /* ScShapeCore.cpp */; };
+ FFFF4485e6c87fba4485e6c8 /* ScShapeInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4485e6c87fba4485e6c8 /* ScShapeInteraction.cpp */; };
+ FFFF4485e7307fba4485e730 /* ScShapeSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4485e7307fba4485e730 /* ScShapeSim.cpp */; };
+ FFFF4485e7987fba4485e798 /* ScSimStats.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4485e7987fba4485e798 /* ScSimStats.cpp */; };
+ FFFF4485e8007fba4485e800 /* ScSimulationController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4485e8007fba4485e800 /* ScSimulationController.cpp */; };
+ FFFF4485e8687fba4485e868 /* ScSqBoundsManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4485e8687fba4485e868 /* ScSqBoundsManager.cpp */; };
+ FFFF4485e8d07fba4485e8d0 /* ScStaticCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4485e8d07fba4485e8d0 /* ScStaticCore.cpp */; };
+ FFFF4485e9387fba4485e938 /* ScStaticSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4485e9387fba4485e938 /* ScStaticSim.cpp */; };
+ FFFF4485e9a07fba4485e9a0 /* ScTriggerInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4485e9a07fba4485e9a0 /* ScTriggerInteraction.cpp */; };
+ FFFF4485eb407fba4485eb40 /* particles/ScParticleBodyInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4485eb407fba4485eb40 /* particles/ScParticleBodyInteraction.cpp */; };
+ FFFF4485eba87fba4485eba8 /* particles/ScParticlePacketShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4485eba87fba4485eba8 /* particles/ScParticlePacketShape.cpp */; };
+ FFFF4485ec107fba4485ec10 /* particles/ScParticleSystemCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4485ec107fba4485ec10 /* particles/ScParticleSystemCore.cpp */; };
+ FFFF4485ec787fba4485ec78 /* particles/ScParticleSystemSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4485ec787fba4485ec78 /* particles/ScParticleSystemSim.cpp */; };
+ FFFF4485edb07fba4485edb0 /* cloth/ScClothCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4485edb07fba4485edb0 /* cloth/ScClothCore.cpp */; };
+ FFFF4485ee187fba4485ee18 /* cloth/ScClothFabricCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4485ee187fba4485ee18 /* cloth/ScClothFabricCore.cpp */; };
+ FFFF4485ee807fba4485ee80 /* cloth/ScClothShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4485ee807fba4485ee80 /* cloth/ScClothShape.cpp */; };
+ FFFF4485eee87fba4485eee8 /* cloth/ScClothSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4485eee87fba4485eee8 /* cloth/ScClothSim.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFD9e518ab07f899e518ab0 /* SimulationController */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SimulationController"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFD9c21fa007f899c21fa00 /* ScActorCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.h"; path = "../../SimulationController/include/ScActorCore.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c21fa687f899c21fa68 /* ScArticulationCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.h"; path = "../../SimulationController/include/ScArticulationCore.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c21fad07f899c21fad0 /* ScArticulationJointCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.h"; path = "../../SimulationController/include/ScArticulationJointCore.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c21fb387f899c21fb38 /* ScBodyCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.h"; path = "../../SimulationController/include/ScBodyCore.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c21fba07f899c21fba0 /* ScClothCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothCore.h"; path = "../../SimulationController/include/ScClothCore.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c21fc087f899c21fc08 /* ScClothFabricCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothFabricCore.h"; path = "../../SimulationController/include/ScClothFabricCore.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c21fc707f899c21fc70 /* ScConstraintCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.h"; path = "../../SimulationController/include/ScConstraintCore.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c21fcd87f899c21fcd8 /* ScIterators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.h"; path = "../../SimulationController/include/ScIterators.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c21fd407f899c21fd40 /* ScMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.h"; path = "../../SimulationController/include/ScMaterialCore.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c21fda87f899c21fda8 /* ScParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScParticleSystemCore.h"; path = "../../SimulationController/include/ScParticleSystemCore.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c21fe107f899c21fe10 /* ScPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.h"; path = "../../SimulationController/include/ScPhysics.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c21fe787f899c21fe78 /* ScRigidCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.h"; path = "../../SimulationController/include/ScRigidCore.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c21fee07f899c21fee0 /* ScScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.h"; path = "../../SimulationController/include/ScScene.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c21ff487f899c21ff48 /* ScShapeCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.h"; path = "../../SimulationController/include/ScShapeCore.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c21ffb07f899c21ffb0 /* ScStaticCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.h"; path = "../../SimulationController/include/ScStaticCore.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c222e007f899c222e00 /* ScActorElementPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorElementPair.h"; path = "../../SimulationController/src/ScActorElementPair.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c222e687f899c222e68 /* ScActorInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorInteraction.h"; path = "../../SimulationController/src/ScActorInteraction.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c222ed07f899c222ed0 /* ScActorPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorPair.h"; path = "../../SimulationController/src/ScActorPair.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c222f387f899c222f38 /* ScActorSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.h"; path = "../../SimulationController/src/ScActorSim.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c222fa07f899c222fa0 /* ScArticulationJointSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.h"; path = "../../SimulationController/src/ScArticulationJointSim.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c2230087f899c223008 /* ScArticulationSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.h"; path = "../../SimulationController/src/ScArticulationSim.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c2230707f899c223070 /* ScBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.h"; path = "../../SimulationController/src/ScBodySim.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c2230d87f899c2230d8 /* ScClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClient.h"; path = "../../SimulationController/src/ScClient.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c2231407f899c223140 /* ScConstraintGroupNode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.h"; path = "../../SimulationController/src/ScConstraintGroupNode.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c2231a87f899c2231a8 /* ScConstraintInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.h"; path = "../../SimulationController/src/ScConstraintInteraction.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c2232107f899c223210 /* ScConstraintProjectionManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.h"; path = "../../SimulationController/src/ScConstraintProjectionManager.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c2232787f899c223278 /* ScConstraintProjectionTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.h"; path = "../../SimulationController/src/ScConstraintProjectionTree.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c2232e07f899c2232e0 /* ScConstraintSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.h"; path = "../../SimulationController/src/ScConstraintSim.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c2233487f899c223348 /* ScContactReportBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactReportBuffer.h"; path = "../../SimulationController/src/ScContactReportBuffer.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c2233b07f899c2233b0 /* ScContactStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactStream.h"; path = "../../SimulationController/src/ScContactStream.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c2234187f899c223418 /* ScElementInteractionMarker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.h"; path = "../../SimulationController/src/ScElementInteractionMarker.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c2234807f899c223480 /* ScElementSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.h"; path = "../../SimulationController/src/ScElementSim.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c2234e87f899c2234e8 /* ScElementSimInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSimInteraction.h"; path = "../../SimulationController/src/ScElementSimInteraction.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c2235507f899c223550 /* ScInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.h"; path = "../../SimulationController/src/ScInteraction.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c2235b87f899c2235b8 /* ScInteractionFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteractionFlags.h"; path = "../../SimulationController/src/ScInteractionFlags.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c2236207f899c223620 /* ScNPhaseCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.h"; path = "../../SimulationController/src/ScNPhaseCore.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c2236887f899c223688 /* ScObjectIDTracker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScObjectIDTracker.h"; path = "../../SimulationController/src/ScObjectIDTracker.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c2236f07f899c2236f0 /* ScRbElementInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRbElementInteraction.h"; path = "../../SimulationController/src/ScRbElementInteraction.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c2237587f899c223758 /* ScRigidSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.h"; path = "../../SimulationController/src/ScRigidSim.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c2237c07f899c2237c0 /* ScShapeInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.h"; path = "../../SimulationController/src/ScShapeInteraction.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c2238287f899c223828 /* ScShapeIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeIterator.h"; path = "../../SimulationController/src/ScShapeIterator.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c2238907f899c223890 /* ScShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.h"; path = "../../SimulationController/src/ScShapeSim.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c2238f87f899c2238f8 /* ScSimStateData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStateData.h"; path = "../../SimulationController/src/ScSimStateData.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c2239607f899c223960 /* ScSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.h"; path = "../../SimulationController/src/ScSimStats.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c2239c87f899c2239c8 /* ScSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.h"; path = "../../SimulationController/src/ScSimulationController.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c223a307f899c223a30 /* ScSqBoundsManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.h"; path = "../../SimulationController/src/ScSqBoundsManager.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c223a987f899c223a98 /* ScStaticSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.h"; path = "../../SimulationController/src/ScStaticSim.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c223b007f899c223b00 /* ScTriggerInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.h"; path = "../../SimulationController/src/ScTriggerInteraction.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c223b687f899c223b68 /* ScTriggerPairs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerPairs.h"; path = "../../SimulationController/src/ScTriggerPairs.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c223bd07f899c223bd0 /* ScActorCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.cpp"; path = "../../SimulationController/src/ScActorCore.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c223c387f899c223c38 /* ScActorSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.cpp"; path = "../../SimulationController/src/ScActorSim.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c223ca07f899c223ca0 /* ScArticulationCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.cpp"; path = "../../SimulationController/src/ScArticulationCore.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c223d087f899c223d08 /* ScArticulationJointCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.cpp"; path = "../../SimulationController/src/ScArticulationJointCore.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c223d707f899c223d70 /* ScArticulationJointSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.cpp"; path = "../../SimulationController/src/ScArticulationJointSim.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c223dd87f899c223dd8 /* ScArticulationSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.cpp"; path = "../../SimulationController/src/ScArticulationSim.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c223e407f899c223e40 /* ScBodyCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.cpp"; path = "../../SimulationController/src/ScBodyCore.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c223ea87f899c223ea8 /* ScBodyCoreKinematic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCoreKinematic.cpp"; path = "../../SimulationController/src/ScBodyCoreKinematic.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c223f107f899c223f10 /* ScBodySim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.cpp"; path = "../../SimulationController/src/ScBodySim.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c223f787f899c223f78 /* ScConstraintCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.cpp"; path = "../../SimulationController/src/ScConstraintCore.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c223fe07f899c223fe0 /* ScConstraintGroupNode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.cpp"; path = "../../SimulationController/src/ScConstraintGroupNode.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c2240487f899c224048 /* ScConstraintInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.cpp"; path = "../../SimulationController/src/ScConstraintInteraction.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c2240b07f899c2240b0 /* ScConstraintProjectionManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.cpp"; path = "../../SimulationController/src/ScConstraintProjectionManager.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c2241187f899c224118 /* ScConstraintProjectionTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.cpp"; path = "../../SimulationController/src/ScConstraintProjectionTree.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c2241807f899c224180 /* ScConstraintSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.cpp"; path = "../../SimulationController/src/ScConstraintSim.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c2241e87f899c2241e8 /* ScElementInteractionMarker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.cpp"; path = "../../SimulationController/src/ScElementInteractionMarker.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c2242507f899c224250 /* ScElementSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.cpp"; path = "../../SimulationController/src/ScElementSim.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c2242b87f899c2242b8 /* ScInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.cpp"; path = "../../SimulationController/src/ScInteraction.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c2243207f899c224320 /* ScIterators.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.cpp"; path = "../../SimulationController/src/ScIterators.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c2243887f899c224388 /* ScMaterialCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.cpp"; path = "../../SimulationController/src/ScMaterialCore.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c2243f07f899c2243f0 /* ScMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMetaData.cpp"; path = "../../SimulationController/src/ScMetaData.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c2244587f899c224458 /* ScNPhaseCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.cpp"; path = "../../SimulationController/src/ScNPhaseCore.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c2244c07f899c2244c0 /* ScPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.cpp"; path = "../../SimulationController/src/ScPhysics.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c2245287f899c224528 /* ScRigidCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.cpp"; path = "../../SimulationController/src/ScRigidCore.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c2245907f899c224590 /* ScRigidSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.cpp"; path = "../../SimulationController/src/ScRigidSim.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c2245f87f899c2245f8 /* ScScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.cpp"; path = "../../SimulationController/src/ScScene.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c2246607f899c224660 /* ScShapeCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.cpp"; path = "../../SimulationController/src/ScShapeCore.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c2246c87f899c2246c8 /* ScShapeInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.cpp"; path = "../../SimulationController/src/ScShapeInteraction.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c2247307f899c224730 /* ScShapeSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.cpp"; path = "../../SimulationController/src/ScShapeSim.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c2247987f899c224798 /* ScSimStats.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.cpp"; path = "../../SimulationController/src/ScSimStats.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c2248007f899c224800 /* ScSimulationController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.cpp"; path = "../../SimulationController/src/ScSimulationController.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c2248687f899c224868 /* ScSqBoundsManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.cpp"; path = "../../SimulationController/src/ScSqBoundsManager.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c2248d07f899c2248d0 /* ScStaticCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.cpp"; path = "../../SimulationController/src/ScStaticCore.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c2249387f899c224938 /* ScStaticSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.cpp"; path = "../../SimulationController/src/ScStaticSim.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c2249a07f899c2249a0 /* ScTriggerInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.cpp"; path = "../../SimulationController/src/ScTriggerInteraction.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c224a087f899c224a08 /* particles/ScParticleBodyInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.h"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c224a707f899c224a70 /* particles/ScParticlePacketShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.h"; path = "../../SimulationController/src/particles/ScParticlePacketShape.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c224ad87f899c224ad8 /* particles/ScParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.h"; path = "../../SimulationController/src/particles/ScParticleSystemSim.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c224b407f899c224b40 /* particles/ScParticleBodyInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.cpp"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c224ba87f899c224ba8 /* particles/ScParticlePacketShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.cpp"; path = "../../SimulationController/src/particles/ScParticlePacketShape.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c224c107f899c224c10 /* particles/ScParticleSystemCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemCore.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemCore.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c224c787f899c224c78 /* particles/ScParticleSystemSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemSim.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c224ce07f899c224ce0 /* cloth/ScClothShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.h"; path = "../../SimulationController/src/cloth/ScClothShape.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c224d487f899c224d48 /* cloth/ScClothSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothSim.h"; path = "../../SimulationController/src/cloth/ScClothSim.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c224db07f899c224db0 /* cloth/ScClothCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothCore.cpp"; path = "../../SimulationController/src/cloth/ScClothCore.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c224e187f899c224e18 /* cloth/ScClothFabricCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothFabricCore.cpp"; path = "../../SimulationController/src/cloth/ScClothFabricCore.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c224e807f899c224e80 /* cloth/ScClothShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.cpp"; path = "../../SimulationController/src/cloth/ScClothShape.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c224ee87f899c224ee8 /* cloth/ScClothSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothSim.cpp"; path = "../../SimulationController/src/cloth/ScClothSim.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD441d86207fba441d8620 /* SimulationController */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SimulationController"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFD44859c007fba44859c00 /* ScActorCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.h"; path = "../../SimulationController/include/ScActorCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44859c687fba44859c68 /* ScArticulationCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.h"; path = "../../SimulationController/include/ScArticulationCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44859cd07fba44859cd0 /* ScArticulationJointCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.h"; path = "../../SimulationController/include/ScArticulationJointCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44859d387fba44859d38 /* ScBodyCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.h"; path = "../../SimulationController/include/ScBodyCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44859da07fba44859da0 /* ScClothCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothCore.h"; path = "../../SimulationController/include/ScClothCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44859e087fba44859e08 /* ScClothFabricCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothFabricCore.h"; path = "../../SimulationController/include/ScClothFabricCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44859e707fba44859e70 /* ScConstraintCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.h"; path = "../../SimulationController/include/ScConstraintCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44859ed87fba44859ed8 /* ScIterators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.h"; path = "../../SimulationController/include/ScIterators.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44859f407fba44859f40 /* ScMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.h"; path = "../../SimulationController/include/ScMaterialCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44859fa87fba44859fa8 /* ScParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScParticleSystemCore.h"; path = "../../SimulationController/include/ScParticleSystemCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4485a0107fba4485a010 /* ScPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.h"; path = "../../SimulationController/include/ScPhysics.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4485a0787fba4485a078 /* ScRigidCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.h"; path = "../../SimulationController/include/ScRigidCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4485a0e07fba4485a0e0 /* ScScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.h"; path = "../../SimulationController/include/ScScene.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4485a1487fba4485a148 /* ScShapeCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.h"; path = "../../SimulationController/include/ScShapeCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4485a1b07fba4485a1b0 /* ScStaticCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.h"; path = "../../SimulationController/include/ScStaticCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4485ce007fba4485ce00 /* ScActorElementPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorElementPair.h"; path = "../../SimulationController/src/ScActorElementPair.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4485ce687fba4485ce68 /* ScActorInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorInteraction.h"; path = "../../SimulationController/src/ScActorInteraction.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4485ced07fba4485ced0 /* ScActorPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorPair.h"; path = "../../SimulationController/src/ScActorPair.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4485cf387fba4485cf38 /* ScActorSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.h"; path = "../../SimulationController/src/ScActorSim.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4485cfa07fba4485cfa0 /* ScArticulationJointSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.h"; path = "../../SimulationController/src/ScArticulationJointSim.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4485d0087fba4485d008 /* ScArticulationSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.h"; path = "../../SimulationController/src/ScArticulationSim.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4485d0707fba4485d070 /* ScBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.h"; path = "../../SimulationController/src/ScBodySim.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4485d0d87fba4485d0d8 /* ScClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClient.h"; path = "../../SimulationController/src/ScClient.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4485d1407fba4485d140 /* ScConstraintGroupNode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.h"; path = "../../SimulationController/src/ScConstraintGroupNode.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4485d1a87fba4485d1a8 /* ScConstraintInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.h"; path = "../../SimulationController/src/ScConstraintInteraction.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4485d2107fba4485d210 /* ScConstraintProjectionManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.h"; path = "../../SimulationController/src/ScConstraintProjectionManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4485d2787fba4485d278 /* ScConstraintProjectionTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.h"; path = "../../SimulationController/src/ScConstraintProjectionTree.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4485d2e07fba4485d2e0 /* ScConstraintSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.h"; path = "../../SimulationController/src/ScConstraintSim.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4485d3487fba4485d348 /* ScContactReportBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactReportBuffer.h"; path = "../../SimulationController/src/ScContactReportBuffer.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4485d3b07fba4485d3b0 /* ScContactStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactStream.h"; path = "../../SimulationController/src/ScContactStream.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4485d4187fba4485d418 /* ScElementInteractionMarker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.h"; path = "../../SimulationController/src/ScElementInteractionMarker.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4485d4807fba4485d480 /* ScElementSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.h"; path = "../../SimulationController/src/ScElementSim.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4485d4e87fba4485d4e8 /* ScElementSimInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSimInteraction.h"; path = "../../SimulationController/src/ScElementSimInteraction.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4485d5507fba4485d550 /* ScInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.h"; path = "../../SimulationController/src/ScInteraction.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4485d5b87fba4485d5b8 /* ScInteractionFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteractionFlags.h"; path = "../../SimulationController/src/ScInteractionFlags.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4485d6207fba4485d620 /* ScNPhaseCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.h"; path = "../../SimulationController/src/ScNPhaseCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4485d6887fba4485d688 /* ScObjectIDTracker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScObjectIDTracker.h"; path = "../../SimulationController/src/ScObjectIDTracker.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4485d6f07fba4485d6f0 /* ScRbElementInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRbElementInteraction.h"; path = "../../SimulationController/src/ScRbElementInteraction.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4485d7587fba4485d758 /* ScRigidSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.h"; path = "../../SimulationController/src/ScRigidSim.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4485d7c07fba4485d7c0 /* ScShapeInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.h"; path = "../../SimulationController/src/ScShapeInteraction.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4485d8287fba4485d828 /* ScShapeIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeIterator.h"; path = "../../SimulationController/src/ScShapeIterator.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4485d8907fba4485d890 /* ScShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.h"; path = "../../SimulationController/src/ScShapeSim.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4485d8f87fba4485d8f8 /* ScSimStateData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStateData.h"; path = "../../SimulationController/src/ScSimStateData.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4485d9607fba4485d960 /* ScSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.h"; path = "../../SimulationController/src/ScSimStats.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4485d9c87fba4485d9c8 /* ScSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.h"; path = "../../SimulationController/src/ScSimulationController.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4485da307fba4485da30 /* ScSqBoundsManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.h"; path = "../../SimulationController/src/ScSqBoundsManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4485da987fba4485da98 /* ScStaticSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.h"; path = "../../SimulationController/src/ScStaticSim.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4485db007fba4485db00 /* ScTriggerInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.h"; path = "../../SimulationController/src/ScTriggerInteraction.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4485db687fba4485db68 /* ScTriggerPairs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerPairs.h"; path = "../../SimulationController/src/ScTriggerPairs.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4485dbd07fba4485dbd0 /* ScActorCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.cpp"; path = "../../SimulationController/src/ScActorCore.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4485dc387fba4485dc38 /* ScActorSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.cpp"; path = "../../SimulationController/src/ScActorSim.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4485dca07fba4485dca0 /* ScArticulationCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.cpp"; path = "../../SimulationController/src/ScArticulationCore.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4485dd087fba4485dd08 /* ScArticulationJointCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.cpp"; path = "../../SimulationController/src/ScArticulationJointCore.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4485dd707fba4485dd70 /* ScArticulationJointSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.cpp"; path = "../../SimulationController/src/ScArticulationJointSim.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4485ddd87fba4485ddd8 /* ScArticulationSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.cpp"; path = "../../SimulationController/src/ScArticulationSim.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4485de407fba4485de40 /* ScBodyCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.cpp"; path = "../../SimulationController/src/ScBodyCore.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4485dea87fba4485dea8 /* ScBodyCoreKinematic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCoreKinematic.cpp"; path = "../../SimulationController/src/ScBodyCoreKinematic.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4485df107fba4485df10 /* ScBodySim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.cpp"; path = "../../SimulationController/src/ScBodySim.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4485df787fba4485df78 /* ScConstraintCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.cpp"; path = "../../SimulationController/src/ScConstraintCore.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4485dfe07fba4485dfe0 /* ScConstraintGroupNode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.cpp"; path = "../../SimulationController/src/ScConstraintGroupNode.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4485e0487fba4485e048 /* ScConstraintInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.cpp"; path = "../../SimulationController/src/ScConstraintInteraction.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4485e0b07fba4485e0b0 /* ScConstraintProjectionManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.cpp"; path = "../../SimulationController/src/ScConstraintProjectionManager.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4485e1187fba4485e118 /* ScConstraintProjectionTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.cpp"; path = "../../SimulationController/src/ScConstraintProjectionTree.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4485e1807fba4485e180 /* ScConstraintSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.cpp"; path = "../../SimulationController/src/ScConstraintSim.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4485e1e87fba4485e1e8 /* ScElementInteractionMarker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.cpp"; path = "../../SimulationController/src/ScElementInteractionMarker.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4485e2507fba4485e250 /* ScElementSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.cpp"; path = "../../SimulationController/src/ScElementSim.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4485e2b87fba4485e2b8 /* ScInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.cpp"; path = "../../SimulationController/src/ScInteraction.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4485e3207fba4485e320 /* ScIterators.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.cpp"; path = "../../SimulationController/src/ScIterators.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4485e3887fba4485e388 /* ScMaterialCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.cpp"; path = "../../SimulationController/src/ScMaterialCore.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4485e3f07fba4485e3f0 /* ScMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMetaData.cpp"; path = "../../SimulationController/src/ScMetaData.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4485e4587fba4485e458 /* ScNPhaseCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.cpp"; path = "../../SimulationController/src/ScNPhaseCore.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4485e4c07fba4485e4c0 /* ScPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.cpp"; path = "../../SimulationController/src/ScPhysics.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4485e5287fba4485e528 /* ScRigidCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.cpp"; path = "../../SimulationController/src/ScRigidCore.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4485e5907fba4485e590 /* ScRigidSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.cpp"; path = "../../SimulationController/src/ScRigidSim.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4485e5f87fba4485e5f8 /* ScScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.cpp"; path = "../../SimulationController/src/ScScene.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4485e6607fba4485e660 /* ScShapeCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.cpp"; path = "../../SimulationController/src/ScShapeCore.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4485e6c87fba4485e6c8 /* ScShapeInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.cpp"; path = "../../SimulationController/src/ScShapeInteraction.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4485e7307fba4485e730 /* ScShapeSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.cpp"; path = "../../SimulationController/src/ScShapeSim.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4485e7987fba4485e798 /* ScSimStats.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.cpp"; path = "../../SimulationController/src/ScSimStats.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4485e8007fba4485e800 /* ScSimulationController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.cpp"; path = "../../SimulationController/src/ScSimulationController.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4485e8687fba4485e868 /* ScSqBoundsManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.cpp"; path = "../../SimulationController/src/ScSqBoundsManager.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4485e8d07fba4485e8d0 /* ScStaticCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.cpp"; path = "../../SimulationController/src/ScStaticCore.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4485e9387fba4485e938 /* ScStaticSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.cpp"; path = "../../SimulationController/src/ScStaticSim.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4485e9a07fba4485e9a0 /* ScTriggerInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.cpp"; path = "../../SimulationController/src/ScTriggerInteraction.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4485ea087fba4485ea08 /* particles/ScParticleBodyInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.h"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4485ea707fba4485ea70 /* particles/ScParticlePacketShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.h"; path = "../../SimulationController/src/particles/ScParticlePacketShape.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4485ead87fba4485ead8 /* particles/ScParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.h"; path = "../../SimulationController/src/particles/ScParticleSystemSim.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4485eb407fba4485eb40 /* particles/ScParticleBodyInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.cpp"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4485eba87fba4485eba8 /* particles/ScParticlePacketShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.cpp"; path = "../../SimulationController/src/particles/ScParticlePacketShape.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4485ec107fba4485ec10 /* particles/ScParticleSystemCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemCore.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemCore.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4485ec787fba4485ec78 /* particles/ScParticleSystemSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemSim.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4485ece07fba4485ece0 /* cloth/ScClothShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.h"; path = "../../SimulationController/src/cloth/ScClothShape.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4485ed487fba4485ed48 /* cloth/ScClothSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothSim.h"; path = "../../SimulationController/src/cloth/ScClothSim.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4485edb07fba4485edb0 /* cloth/ScClothCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothCore.cpp"; path = "../../SimulationController/src/cloth/ScClothCore.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4485ee187fba4485ee18 /* cloth/ScClothFabricCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothFabricCore.cpp"; path = "../../SimulationController/src/cloth/ScClothFabricCore.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4485ee807fba4485ee80 /* cloth/ScClothShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.cpp"; path = "../../SimulationController/src/cloth/ScClothShape.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4485eee87fba4485eee8 /* 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 */
- FFF29e518ab07f899e518ab0 /* Resources */ = {
+ FFF2441d86207fba441d8620 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -1143,7 +1143,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFC9e518ab07f899e518ab0 /* Frameworks */ = {
+ FFFC441d86207fba441d8620 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -1153,53 +1153,53 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF89e518ab07f899e518ab0 /* Sources */ = {
+ FFF8441d86207fba441d8620 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFF9c223bd07f899c223bd0,
- FFFF9c223c387f899c223c38,
- FFFF9c223ca07f899c223ca0,
- FFFF9c223d087f899c223d08,
- FFFF9c223d707f899c223d70,
- FFFF9c223dd87f899c223dd8,
- FFFF9c223e407f899c223e40,
- FFFF9c223ea87f899c223ea8,
- FFFF9c223f107f899c223f10,
- FFFF9c223f787f899c223f78,
- FFFF9c223fe07f899c223fe0,
- FFFF9c2240487f899c224048,
- FFFF9c2240b07f899c2240b0,
- FFFF9c2241187f899c224118,
- FFFF9c2241807f899c224180,
- FFFF9c2241e87f899c2241e8,
- FFFF9c2242507f899c224250,
- FFFF9c2242b87f899c2242b8,
- FFFF9c2243207f899c224320,
- FFFF9c2243887f899c224388,
- FFFF9c2243f07f899c2243f0,
- FFFF9c2244587f899c224458,
- FFFF9c2244c07f899c2244c0,
- FFFF9c2245287f899c224528,
- FFFF9c2245907f899c224590,
- FFFF9c2245f87f899c2245f8,
- FFFF9c2246607f899c224660,
- FFFF9c2246c87f899c2246c8,
- FFFF9c2247307f899c224730,
- FFFF9c2247987f899c224798,
- FFFF9c2248007f899c224800,
- FFFF9c2248687f899c224868,
- FFFF9c2248d07f899c2248d0,
- FFFF9c2249387f899c224938,
- FFFF9c2249a07f899c2249a0,
- FFFF9c224b407f899c224b40,
- FFFF9c224ba87f899c224ba8,
- FFFF9c224c107f899c224c10,
- FFFF9c224c787f899c224c78,
- FFFF9c224db07f899c224db0,
- FFFF9c224e187f899c224e18,
- FFFF9c224e807f899c224e80,
- FFFF9c224ee87f899c224ee8,
+ FFFF4485dbd07fba4485dbd0,
+ FFFF4485dc387fba4485dc38,
+ FFFF4485dca07fba4485dca0,
+ FFFF4485dd087fba4485dd08,
+ FFFF4485dd707fba4485dd70,
+ FFFF4485ddd87fba4485ddd8,
+ FFFF4485de407fba4485de40,
+ FFFF4485dea87fba4485dea8,
+ FFFF4485df107fba4485df10,
+ FFFF4485df787fba4485df78,
+ FFFF4485dfe07fba4485dfe0,
+ FFFF4485e0487fba4485e048,
+ FFFF4485e0b07fba4485e0b0,
+ FFFF4485e1187fba4485e118,
+ FFFF4485e1807fba4485e180,
+ FFFF4485e1e87fba4485e1e8,
+ FFFF4485e2507fba4485e250,
+ FFFF4485e2b87fba4485e2b8,
+ FFFF4485e3207fba4485e320,
+ FFFF4485e3887fba4485e388,
+ FFFF4485e3f07fba4485e3f0,
+ FFFF4485e4587fba4485e458,
+ FFFF4485e4c07fba4485e4c0,
+ FFFF4485e5287fba4485e528,
+ FFFF4485e5907fba4485e590,
+ FFFF4485e5f87fba4485e5f8,
+ FFFF4485e6607fba4485e660,
+ FFFF4485e6c87fba4485e6c8,
+ FFFF4485e7307fba4485e730,
+ FFFF4485e7987fba4485e798,
+ FFFF4485e8007fba4485e800,
+ FFFF4485e8687fba4485e868,
+ FFFF4485e8d07fba4485e8d0,
+ FFFF4485e9387fba4485e938,
+ FFFF4485e9a07fba4485e9a0,
+ FFFF4485eb407fba4485eb40,
+ FFFF4485eba87fba4485eba8,
+ FFFF4485ec107fba4485ec10,
+ FFFF4485ec787fba4485ec78,
+ FFFF4485edb07fba4485edb0,
+ FFFF4485ee187fba4485ee18,
+ FFFF4485ee807fba4485ee80,
+ FFFF4485eee87fba4485eee8,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -1211,80 +1211,80 @@
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of PhysXCooking */
- FFFF9e5255007f899e525500 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD9e138e707f899e138e70 /* PhysXExtensions */; };
- FFFF9c2270007f899c227000 /* Adjacencies.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c2270007f899c227000 /* Adjacencies.cpp */; };
- FFFF9c2270687f899c227068 /* Cooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c2270687f899c227068 /* Cooking.cpp */; };
- FFFF9c2270d07f899c2270d0 /* CookingUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c2270d07f899c2270d0 /* CookingUtils.cpp */; };
- FFFF9c2271387f899c227138 /* EdgeList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c2271387f899c227138 /* EdgeList.cpp */; };
- FFFF9c2271a07f899c2271a0 /* MeshCleaner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c2271a07f899c2271a0 /* MeshCleaner.cpp */; };
- FFFF9c2272087f899c227208 /* Quantizer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c2272087f899c227208 /* Quantizer.cpp */; };
- FFFF9c2274e07f899c2274e0 /* mesh/GrbTriangleMeshCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c2274e07f899c2274e0 /* mesh/GrbTriangleMeshCooking.cpp */; };
- FFFF9c2275487f899c227548 /* mesh/HeightFieldCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c2275487f899c227548 /* mesh/HeightFieldCooking.cpp */; };
- FFFF9c2275b07f899c2275b0 /* mesh/RTreeCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c2275b07f899c2275b0 /* mesh/RTreeCooking.cpp */; };
- FFFF9c2276187f899c227618 /* mesh/TriangleMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c2276187f899c227618 /* mesh/TriangleMeshBuilder.cpp */; };
- FFFF9c2278887f899c227888 /* convex/BigConvexDataBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c2278887f899c227888 /* convex/BigConvexDataBuilder.cpp */; };
- FFFF9c2278f07f899c2278f0 /* convex/ConvexHullBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c2278f07f899c2278f0 /* convex/ConvexHullBuilder.cpp */; };
- FFFF9c2279587f899c227958 /* convex/ConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c2279587f899c227958 /* convex/ConvexHullLib.cpp */; };
- FFFF9c2279c07f899c2279c0 /* convex/ConvexHullUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c2279c07f899c2279c0 /* convex/ConvexHullUtils.cpp */; };
- FFFF9c227a287f899c227a28 /* convex/ConvexMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c227a287f899c227a28 /* convex/ConvexMeshBuilder.cpp */; };
- FFFF9c227a907f899c227a90 /* convex/ConvexPolygonsBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c227a907f899c227a90 /* convex/ConvexPolygonsBuilder.cpp */; };
- FFFF9c227af87f899c227af8 /* convex/InflationConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c227af87f899c227af8 /* convex/InflationConvexHullLib.cpp */; };
- FFFF9c227b607f899c227b60 /* convex/QuickHullConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c227b607f899c227b60 /* convex/QuickHullConvexHullLib.cpp */; };
- FFFF9c227bc87f899c227bc8 /* convex/VolumeIntegration.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c227bc87f899c227bc8 /* convex/VolumeIntegration.cpp */; };
+ FFFF441e70307fba441e7030 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD441c17507fba441c1750 /* PhysXExtensions */; };
+ FFFF448610007fba44861000 /* Adjacencies.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448610007fba44861000 /* Adjacencies.cpp */; };
+ FFFF448610687fba44861068 /* Cooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448610687fba44861068 /* Cooking.cpp */; };
+ FFFF448610d07fba448610d0 /* CookingUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448610d07fba448610d0 /* CookingUtils.cpp */; };
+ FFFF448611387fba44861138 /* EdgeList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448611387fba44861138 /* EdgeList.cpp */; };
+ FFFF448611a07fba448611a0 /* MeshCleaner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448611a07fba448611a0 /* MeshCleaner.cpp */; };
+ FFFF448612087fba44861208 /* Quantizer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448612087fba44861208 /* Quantizer.cpp */; };
+ FFFF448614e07fba448614e0 /* mesh/GrbTriangleMeshCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448614e07fba448614e0 /* mesh/GrbTriangleMeshCooking.cpp */; };
+ FFFF448615487fba44861548 /* mesh/HeightFieldCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448615487fba44861548 /* mesh/HeightFieldCooking.cpp */; };
+ FFFF448615b07fba448615b0 /* mesh/RTreeCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448615b07fba448615b0 /* mesh/RTreeCooking.cpp */; };
+ FFFF448616187fba44861618 /* mesh/TriangleMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448616187fba44861618 /* mesh/TriangleMeshBuilder.cpp */; };
+ FFFF448618887fba44861888 /* convex/BigConvexDataBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448618887fba44861888 /* convex/BigConvexDataBuilder.cpp */; };
+ FFFF448618f07fba448618f0 /* convex/ConvexHullBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448618f07fba448618f0 /* convex/ConvexHullBuilder.cpp */; };
+ FFFF448619587fba44861958 /* convex/ConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448619587fba44861958 /* convex/ConvexHullLib.cpp */; };
+ FFFF448619c07fba448619c0 /* convex/ConvexHullUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448619c07fba448619c0 /* convex/ConvexHullUtils.cpp */; };
+ FFFF44861a287fba44861a28 /* convex/ConvexMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD44861a287fba44861a28 /* convex/ConvexMeshBuilder.cpp */; };
+ FFFF44861a907fba44861a90 /* convex/ConvexPolygonsBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD44861a907fba44861a90 /* convex/ConvexPolygonsBuilder.cpp */; };
+ FFFF44861af87fba44861af8 /* convex/InflationConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD44861af87fba44861af8 /* convex/InflationConvexHullLib.cpp */; };
+ FFFF44861b607fba44861b60 /* convex/QuickHullConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD44861b607fba44861b60 /* convex/QuickHullConvexHullLib.cpp */; };
+ FFFF44861bc87fba44861bc8 /* convex/VolumeIntegration.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD44861bc87fba44861bc8 /* convex/VolumeIntegration.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFD9e5094807f899e509480 /* PhysXCooking */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCooking"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFD9e523f307f899e523f30 /* PxBVH33MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH33MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH33MidphaseDesc.h"; sourceTree = SOURCE_ROOT; };
- FFFD9e523f987f899e523f98 /* PxBVH34MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH34MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH34MidphaseDesc.h"; sourceTree = SOURCE_ROOT; };
- FFFD9e5240007f899e524000 /* PxConvexMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshDesc.h"; path = "../../../Include/cooking/PxConvexMeshDesc.h"; sourceTree = SOURCE_ROOT; };
- FFFD9e5240687f899e524068 /* PxCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCooking.h"; path = "../../../Include/cooking/PxCooking.h"; sourceTree = SOURCE_ROOT; };
- FFFD9e5240d07f899e5240d0 /* PxMidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMidphaseDesc.h"; path = "../../../Include/cooking/PxMidphaseDesc.h"; sourceTree = SOURCE_ROOT; };
- FFFD9e5241387f899e524138 /* PxTriangleMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshDesc.h"; path = "../../../Include/cooking/PxTriangleMeshDesc.h"; sourceTree = SOURCE_ROOT; };
- FFFD9e5241a07f899e5241a0 /* Pxc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Pxc.h"; path = "../../../Include/cooking/Pxc.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c2270007f899c227000 /* Adjacencies.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.cpp"; path = "../../PhysXCooking/src/Adjacencies.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c2270687f899c227068 /* Cooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.cpp"; path = "../../PhysXCooking/src/Cooking.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c2270d07f899c2270d0 /* CookingUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.cpp"; path = "../../PhysXCooking/src/CookingUtils.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c2271387f899c227138 /* EdgeList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.cpp"; path = "../../PhysXCooking/src/EdgeList.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c2271a07f899c2271a0 /* MeshCleaner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.cpp"; path = "../../PhysXCooking/src/MeshCleaner.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c2272087f899c227208 /* Quantizer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.cpp"; path = "../../PhysXCooking/src/Quantizer.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c2272707f899c227270 /* Adjacencies.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.h"; path = "../../PhysXCooking/src/Adjacencies.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c2272d87f899c2272d8 /* Cooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.h"; path = "../../PhysXCooking/src/Cooking.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c2273407f899c227340 /* CookingUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.h"; path = "../../PhysXCooking/src/CookingUtils.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c2273a87f899c2273a8 /* EdgeList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.h"; path = "../../PhysXCooking/src/EdgeList.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c2274107f899c227410 /* MeshCleaner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.h"; path = "../../PhysXCooking/src/MeshCleaner.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c2274787f899c227478 /* Quantizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.h"; path = "../../PhysXCooking/src/Quantizer.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c2274e07f899c2274e0 /* mesh/GrbTriangleMeshCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.cpp"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c2275487f899c227548 /* mesh/HeightFieldCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.cpp"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c2275b07f899c2275b0 /* mesh/RTreeCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.cpp"; path = "../../PhysXCooking/src/mesh/RTreeCooking.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c2276187f899c227618 /* mesh/TriangleMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.cpp"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c2276807f899c227680 /* mesh/GrbTriangleMeshCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.h"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c2276e87f899c2276e8 /* mesh/HeightFieldCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.h"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c2277507f899c227750 /* mesh/QuickSelect.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/QuickSelect.h"; path = "../../PhysXCooking/src/mesh/QuickSelect.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c2277b87f899c2277b8 /* mesh/RTreeCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.h"; path = "../../PhysXCooking/src/mesh/RTreeCooking.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c2278207f899c227820 /* mesh/TriangleMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.h"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c2278887f899c227888 /* convex/BigConvexDataBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.cpp"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c2278f07f899c2278f0 /* convex/ConvexHullBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c2279587f899c227958 /* convex/ConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c2279c07f899c2279c0 /* convex/ConvexHullUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c227a287f899c227a28 /* convex/ConvexMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c227a907f899c227a90 /* convex/ConvexPolygonsBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c227af87f899c227af8 /* convex/InflationConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c227b607f899c227b60 /* convex/QuickHullConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c227bc87f899c227bc8 /* convex/VolumeIntegration.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/VolumeIntegration.cpp"; path = "../../PhysXCooking/src/convex/VolumeIntegration.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c227c307f899c227c30 /* convex/BigConvexDataBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.h"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c227c987f899c227c98 /* convex/ConvexHullBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c227d007f899c227d00 /* convex/ConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.h"; path = "../../PhysXCooking/src/convex/ConvexHullLib.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c227d687f899c227d68 /* convex/ConvexHullUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.h"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c227dd07f899c227dd0 /* convex/ConvexMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c227e387f899c227e38 /* convex/ConvexPolygonsBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c227ea07f899c227ea0 /* convex/InflationConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.h"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c227f087f899c227f08 /* convex/QuickHullConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.h"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c227f707f899c227f70 /* convex/VolumeIntegration.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/VolumeIntegration.h"; path = "../../PhysXCooking/src/convex/VolumeIntegration.h"; sourceTree = SOURCE_ROOT; };
+ FFFD441dd8c07fba441dd8c0 /* PhysXCooking */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCooking"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFD441e79c07fba441e79c0 /* PxBVH33MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH33MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH33MidphaseDesc.h"; sourceTree = SOURCE_ROOT; };
+ FFFD441e7a287fba441e7a28 /* PxBVH34MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH34MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH34MidphaseDesc.h"; sourceTree = SOURCE_ROOT; };
+ FFFD441e7a907fba441e7a90 /* PxConvexMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshDesc.h"; path = "../../../Include/cooking/PxConvexMeshDesc.h"; sourceTree = SOURCE_ROOT; };
+ FFFD441e7af87fba441e7af8 /* PxCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCooking.h"; path = "../../../Include/cooking/PxCooking.h"; sourceTree = SOURCE_ROOT; };
+ FFFD441e7b607fba441e7b60 /* PxMidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMidphaseDesc.h"; path = "../../../Include/cooking/PxMidphaseDesc.h"; sourceTree = SOURCE_ROOT; };
+ FFFD441e7bc87fba441e7bc8 /* PxTriangleMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshDesc.h"; path = "../../../Include/cooking/PxTriangleMeshDesc.h"; sourceTree = SOURCE_ROOT; };
+ FFFD441e7c307fba441e7c30 /* Pxc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Pxc.h"; path = "../../../Include/cooking/Pxc.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448610007fba44861000 /* Adjacencies.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.cpp"; path = "../../PhysXCooking/src/Adjacencies.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448610687fba44861068 /* Cooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.cpp"; path = "../../PhysXCooking/src/Cooking.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448610d07fba448610d0 /* CookingUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.cpp"; path = "../../PhysXCooking/src/CookingUtils.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448611387fba44861138 /* EdgeList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.cpp"; path = "../../PhysXCooking/src/EdgeList.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448611a07fba448611a0 /* MeshCleaner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.cpp"; path = "../../PhysXCooking/src/MeshCleaner.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448612087fba44861208 /* Quantizer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.cpp"; path = "../../PhysXCooking/src/Quantizer.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448612707fba44861270 /* Adjacencies.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.h"; path = "../../PhysXCooking/src/Adjacencies.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448612d87fba448612d8 /* Cooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.h"; path = "../../PhysXCooking/src/Cooking.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448613407fba44861340 /* CookingUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.h"; path = "../../PhysXCooking/src/CookingUtils.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448613a87fba448613a8 /* EdgeList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.h"; path = "../../PhysXCooking/src/EdgeList.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448614107fba44861410 /* MeshCleaner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.h"; path = "../../PhysXCooking/src/MeshCleaner.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448614787fba44861478 /* Quantizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.h"; path = "../../PhysXCooking/src/Quantizer.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448614e07fba448614e0 /* mesh/GrbTriangleMeshCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.cpp"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448615487fba44861548 /* mesh/HeightFieldCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.cpp"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448615b07fba448615b0 /* mesh/RTreeCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.cpp"; path = "../../PhysXCooking/src/mesh/RTreeCooking.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448616187fba44861618 /* mesh/TriangleMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.cpp"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448616807fba44861680 /* mesh/GrbTriangleMeshCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.h"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448616e87fba448616e8 /* mesh/HeightFieldCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.h"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448617507fba44861750 /* mesh/QuickSelect.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/QuickSelect.h"; path = "../../PhysXCooking/src/mesh/QuickSelect.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448617b87fba448617b8 /* mesh/RTreeCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.h"; path = "../../PhysXCooking/src/mesh/RTreeCooking.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448618207fba44861820 /* mesh/TriangleMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.h"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448618887fba44861888 /* convex/BigConvexDataBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.cpp"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448618f07fba448618f0 /* convex/ConvexHullBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448619587fba44861958 /* convex/ConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448619c07fba448619c0 /* convex/ConvexHullUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD44861a287fba44861a28 /* convex/ConvexMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD44861a907fba44861a90 /* convex/ConvexPolygonsBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD44861af87fba44861af8 /* convex/InflationConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD44861b607fba44861b60 /* convex/QuickHullConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD44861bc87fba44861bc8 /* convex/VolumeIntegration.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/VolumeIntegration.cpp"; path = "../../PhysXCooking/src/convex/VolumeIntegration.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD44861c307fba44861c30 /* convex/BigConvexDataBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.h"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44861c987fba44861c98 /* convex/ConvexHullBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44861d007fba44861d00 /* convex/ConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.h"; path = "../../PhysXCooking/src/convex/ConvexHullLib.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44861d687fba44861d68 /* convex/ConvexHullUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.h"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44861dd07fba44861dd0 /* convex/ConvexMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44861e387fba44861e38 /* convex/ConvexPolygonsBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44861ea07fba44861ea0 /* convex/InflationConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.h"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44861f087fba44861f08 /* convex/QuickHullConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.h"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44861f707fba44861f70 /* 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 */
- FFF29e5094807f899e509480 /* Resources */ = {
+ FFF2441dd8c07fba441dd8c0 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -1294,7 +1294,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFC9e5094807f899e509480 /* Frameworks */ = {
+ FFFC441dd8c07fba441dd8c0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -1304,29 +1304,29 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF89e5094807f899e509480 /* Sources */ = {
+ FFF8441dd8c07fba441dd8c0 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFF9c2270007f899c227000,
- FFFF9c2270687f899c227068,
- FFFF9c2270d07f899c2270d0,
- FFFF9c2271387f899c227138,
- FFFF9c2271a07f899c2271a0,
- FFFF9c2272087f899c227208,
- FFFF9c2274e07f899c2274e0,
- FFFF9c2275487f899c227548,
- FFFF9c2275b07f899c2275b0,
- FFFF9c2276187f899c227618,
- FFFF9c2278887f899c227888,
- FFFF9c2278f07f899c2278f0,
- FFFF9c2279587f899c227958,
- FFFF9c2279c07f899c2279c0,
- FFFF9c227a287f899c227a28,
- FFFF9c227a907f899c227a90,
- FFFF9c227af87f899c227af8,
- FFFF9c227b607f899c227b60,
- FFFF9c227bc87f899c227bc8,
+ FFFF448610007fba44861000,
+ FFFF448610687fba44861068,
+ FFFF448610d07fba448610d0,
+ FFFF448611387fba44861138,
+ FFFF448611a07fba448611a0,
+ FFFF448612087fba44861208,
+ FFFF448614e07fba448614e0,
+ FFFF448615487fba44861548,
+ FFFF448615b07fba448615b0,
+ FFFF448616187fba44861618,
+ FFFF448618887fba44861888,
+ FFFF448618f07fba448618f0,
+ FFFF448619587fba44861958,
+ FFFF448619c07fba448619c0,
+ FFFF44861a287fba44861a28,
+ FFFF44861a907fba44861a90,
+ FFFF44861af87fba44861af8,
+ FFFF44861b607fba44861b60,
+ FFFF44861bc87fba44861bc8,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -1335,514 +1335,514 @@
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
- FFF49e51dcd07f899e51dcd0 /* PBXTargetDependency */ = {
+ FFF4441e71107fba441e7110 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFA9c88a7507f899c88a750 /* PhysXCommon */;
- targetProxy = FFF59c88a7507f899c88a750 /* PBXContainerItemProxy */;
+ target = FFFA431a02b07fba431a02b0 /* PhysXCommon */;
+ targetProxy = FFF5431a02b07fba431a02b0 /* PBXContainerItemProxy */;
};
- FFF49e5255007f899e525500 /* PBXTargetDependency */ = {
+ FFF4441e70307fba441e7030 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFA9e138e707f899e138e70 /* PhysXExtensions */;
- targetProxy = FFF59e138e707f899e138e70 /* PBXContainerItemProxy */;
+ target = FFFA441c17507fba441c1750 /* PhysXExtensions */;
+ targetProxy = FFF5441c17507fba441c1750 /* PBXContainerItemProxy */;
};
- FFF49e51ea607f899e51ea60 /* PBXTargetDependency */ = {
+ FFF4441e28407fba441e2840 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFA9c8a0f907f899c8a0f90 /* PxFoundation */;
- targetProxy = FFF59c8a0f907f899c8a0f90 /* PBXContainerItemProxy */;
+ target = FFFA4318c2b07fba4318c2b0 /* PxFoundation */;
+ targetProxy = FFF54318c2b07fba4318c2b0 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of PhysXCommon */
- FFFF9c1a66007f899c1a6600 /* src/CmBoxPruning.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD9c1a66007f899c1a6600 /* src/CmBoxPruning.cpp */; };
- FFFF9c1a66687f899c1a6668 /* src/CmCollection.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD9c1a66687f899c1a6668 /* src/CmCollection.cpp */; };
- FFFF9c1a66d07f899c1a66d0 /* src/CmMathUtils.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD9c1a66d07f899c1a66d0 /* src/CmMathUtils.cpp */; };
- FFFF9c1a67387f899c1a6738 /* src/CmPtrTable.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD9c1a67387f899c1a6738 /* src/CmPtrTable.cpp */; };
- FFFF9c1a67a07f899c1a67a0 /* src/CmRadixSort.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD9c1a67a07f899c1a67a0 /* src/CmRadixSort.cpp */; };
- FFFF9c1a68087f899c1a6808 /* src/CmRadixSortBuffered.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD9c1a68087f899c1a6808 /* src/CmRadixSortBuffered.cpp */; };
- FFFF9c1a68707f899c1a6870 /* src/CmRenderOutput.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD9c1a68707f899c1a6870 /* src/CmRenderOutput.cpp */; };
- FFFF9c1a68d87f899c1a68d8 /* src/CmVisualization.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD9c1a68d87f899c1a68d8 /* src/CmVisualization.cpp */; };
- FFFF9d0013a87f899d0013a8 /* ../../Include/GeomUtils in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0013a87f899d0013a8 /* ../../Include/GeomUtils */; };
- FFFF9d0048e07f899d0048e0 /* src/GuBounds.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0048e07f899d0048e0 /* src/GuBounds.cpp */; };
- FFFF9d0049487f899d004948 /* src/GuBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0049487f899d004948 /* src/GuBox.cpp */; };
- FFFF9d0049b07f899d0049b0 /* src/GuCCTSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0049b07f899d0049b0 /* src/GuCCTSweepTests.cpp */; };
- FFFF9d004a187f899d004a18 /* src/GuCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d004a187f899d004a18 /* src/GuCapsule.cpp */; };
- FFFF9d004a807f899d004a80 /* src/GuGeometryQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d004a807f899d004a80 /* src/GuGeometryQuery.cpp */; };
- FFFF9d004ae87f899d004ae8 /* src/GuGeometryUnion.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d004ae87f899d004ae8 /* src/GuGeometryUnion.cpp */; };
- FFFF9d004b507f899d004b50 /* src/GuInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d004b507f899d004b50 /* src/GuInternal.cpp */; };
- FFFF9d004bb87f899d004bb8 /* src/GuMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d004bb87f899d004bb8 /* src/GuMTD.cpp */; };
- FFFF9d004c207f899d004c20 /* src/GuMeshFactory.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d004c207f899d004c20 /* src/GuMeshFactory.cpp */; };
- FFFF9d004c887f899d004c88 /* src/GuMetaData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d004c887f899d004c88 /* src/GuMetaData.cpp */; };
- FFFF9d004cf07f899d004cf0 /* src/GuOverlapTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d004cf07f899d004cf0 /* src/GuOverlapTests.cpp */; };
- FFFF9d004d587f899d004d58 /* src/GuRaycastTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d004d587f899d004d58 /* src/GuRaycastTests.cpp */; };
- FFFF9d004dc07f899d004dc0 /* src/GuSerialize.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d004dc07f899d004dc0 /* src/GuSerialize.cpp */; };
- FFFF9d004e287f899d004e28 /* src/GuSweepMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d004e287f899d004e28 /* src/GuSweepMTD.cpp */; };
- FFFF9d004e907f899d004e90 /* src/GuSweepSharedTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d004e907f899d004e90 /* src/GuSweepSharedTests.cpp */; };
- FFFF9d004ef87f899d004ef8 /* src/GuSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d004ef87f899d004ef8 /* src/GuSweepTests.cpp */; };
- FFFF9d004f607f899d004f60 /* src/contact/GuContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d004f607f899d004f60 /* src/contact/GuContactBoxBox.cpp */; };
- FFFF9d004fc87f899d004fc8 /* src/contact/GuContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d004fc87f899d004fc8 /* src/contact/GuContactCapsuleBox.cpp */; };
- FFFF9d0050307f899d005030 /* src/contact/GuContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0050307f899d005030 /* src/contact/GuContactCapsuleCapsule.cpp */; };
- FFFF9d0050987f899d005098 /* src/contact/GuContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0050987f899d005098 /* src/contact/GuContactCapsuleConvex.cpp */; };
- FFFF9d0051007f899d005100 /* src/contact/GuContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0051007f899d005100 /* src/contact/GuContactCapsuleMesh.cpp */; };
- FFFF9d0051687f899d005168 /* src/contact/GuContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0051687f899d005168 /* src/contact/GuContactConvexConvex.cpp */; };
- FFFF9d0051d07f899d0051d0 /* src/contact/GuContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0051d07f899d0051d0 /* src/contact/GuContactConvexMesh.cpp */; };
- FFFF9d0052387f899d005238 /* src/contact/GuContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0052387f899d005238 /* src/contact/GuContactPlaneBox.cpp */; };
- FFFF9d0052a07f899d0052a0 /* src/contact/GuContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0052a07f899d0052a0 /* src/contact/GuContactPlaneCapsule.cpp */; };
- FFFF9d0053087f899d005308 /* src/contact/GuContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0053087f899d005308 /* src/contact/GuContactPlaneConvex.cpp */; };
- FFFF9d0053707f899d005370 /* src/contact/GuContactPolygonPolygon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0053707f899d005370 /* src/contact/GuContactPolygonPolygon.cpp */; };
- FFFF9d0053d87f899d0053d8 /* src/contact/GuContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0053d87f899d0053d8 /* src/contact/GuContactSphereBox.cpp */; };
- FFFF9d0054407f899d005440 /* src/contact/GuContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0054407f899d005440 /* src/contact/GuContactSphereCapsule.cpp */; };
- FFFF9d0054a87f899d0054a8 /* src/contact/GuContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0054a87f899d0054a8 /* src/contact/GuContactSphereMesh.cpp */; };
- FFFF9d0055107f899d005510 /* src/contact/GuContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0055107f899d005510 /* src/contact/GuContactSpherePlane.cpp */; };
- FFFF9d0055787f899d005578 /* src/contact/GuContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0055787f899d005578 /* src/contact/GuContactSphereSphere.cpp */; };
- FFFF9d0055e07f899d0055e0 /* src/contact/GuFeatureCode.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0055e07f899d0055e0 /* src/contact/GuFeatureCode.cpp */; };
- FFFF9d0056487f899d005648 /* src/contact/GuLegacyContactBoxHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0056487f899d005648 /* src/contact/GuLegacyContactBoxHeightField.cpp */; };
- FFFF9d0056b07f899d0056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0056b07f899d0056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */; };
- FFFF9d0057187f899d005718 /* src/contact/GuLegacyContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0057187f899d005718 /* src/contact/GuLegacyContactConvexHeightField.cpp */; };
- FFFF9d0057807f899d005780 /* src/contact/GuLegacyContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0057807f899d005780 /* src/contact/GuLegacyContactSphereHeightField.cpp */; };
- FFFF9d0057e87f899d0057e8 /* src/common/GuBarycentricCoordinates.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0057e87f899d0057e8 /* src/common/GuBarycentricCoordinates.cpp */; };
- FFFF9d0058507f899d005850 /* src/common/GuSeparatingAxes.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0058507f899d005850 /* src/common/GuSeparatingAxes.cpp */; };
- FFFF9d0058b87f899d0058b8 /* src/convex/GuBigConvexData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0058b87f899d0058b8 /* src/convex/GuBigConvexData.cpp */; };
- FFFF9d0059207f899d005920 /* src/convex/GuConvexHelper.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0059207f899d005920 /* src/convex/GuConvexHelper.cpp */; };
- FFFF9d0059887f899d005988 /* src/convex/GuConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0059887f899d005988 /* src/convex/GuConvexMesh.cpp */; };
- FFFF9d0059f07f899d0059f0 /* src/convex/GuConvexSupportTable.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0059f07f899d0059f0 /* src/convex/GuConvexSupportTable.cpp */; };
- FFFF9d005a587f899d005a58 /* src/convex/GuConvexUtilsInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d005a587f899d005a58 /* src/convex/GuConvexUtilsInternal.cpp */; };
- FFFF9d005ac07f899d005ac0 /* src/convex/GuHillClimbing.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d005ac07f899d005ac0 /* src/convex/GuHillClimbing.cpp */; };
- FFFF9d005b287f899d005b28 /* src/convex/GuShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d005b287f899d005b28 /* src/convex/GuShapeConvex.cpp */; };
- FFFF9d005b907f899d005b90 /* src/distance/GuDistancePointBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d005b907f899d005b90 /* src/distance/GuDistancePointBox.cpp */; };
- FFFF9d005bf87f899d005bf8 /* src/distance/GuDistancePointTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d005bf87f899d005bf8 /* src/distance/GuDistancePointTriangle.cpp */; };
- FFFF9d005c607f899d005c60 /* src/distance/GuDistanceSegmentBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d005c607f899d005c60 /* src/distance/GuDistanceSegmentBox.cpp */; };
- FFFF9d005cc87f899d005cc8 /* src/distance/GuDistanceSegmentSegment.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d005cc87f899d005cc8 /* src/distance/GuDistanceSegmentSegment.cpp */; };
- FFFF9d005d307f899d005d30 /* src/distance/GuDistanceSegmentTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d005d307f899d005d30 /* src/distance/GuDistanceSegmentTriangle.cpp */; };
- FFFF9d005d987f899d005d98 /* src/sweep/GuSweepBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d005d987f899d005d98 /* src/sweep/GuSweepBoxBox.cpp */; };
- FFFF9d005e007f899d005e00 /* src/sweep/GuSweepBoxSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d005e007f899d005e00 /* src/sweep/GuSweepBoxSphere.cpp */; };
- FFFF9d005e687f899d005e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d005e687f899d005e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */; };
- FFFF9d005ed07f899d005ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d005ed07f899d005ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */; };
- FFFF9d005f387f899d005f38 /* src/sweep/GuSweepCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d005f387f899d005f38 /* src/sweep/GuSweepCapsuleBox.cpp */; };
- FFFF9d005fa07f899d005fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d005fa07f899d005fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */; };
- FFFF9d0060087f899d006008 /* src/sweep/GuSweepCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0060087f899d006008 /* src/sweep/GuSweepCapsuleTriangle.cpp */; };
- FFFF9d0060707f899d006070 /* src/sweep/GuSweepSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0060707f899d006070 /* src/sweep/GuSweepSphereCapsule.cpp */; };
- FFFF9d0060d87f899d0060d8 /* src/sweep/GuSweepSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0060d87f899d0060d8 /* src/sweep/GuSweepSphereSphere.cpp */; };
- FFFF9d0061407f899d006140 /* src/sweep/GuSweepSphereTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0061407f899d006140 /* src/sweep/GuSweepSphereTriangle.cpp */; };
- FFFF9d0061a87f899d0061a8 /* src/sweep/GuSweepTriangleUtils.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0061a87f899d0061a8 /* src/sweep/GuSweepTriangleUtils.cpp */; };
- FFFF9d0062107f899d006210 /* src/gjk/GuEPA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0062107f899d006210 /* src/gjk/GuEPA.cpp */; };
- FFFF9d0062787f899d006278 /* src/gjk/GuGJKSimplex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0062787f899d006278 /* src/gjk/GuGJKSimplex.cpp */; };
- FFFF9d0062e07f899d0062e0 /* src/gjk/GuGJKTest.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0062e07f899d0062e0 /* src/gjk/GuGJKTest.cpp */; };
- FFFF9d0063487f899d006348 /* src/intersection/GuIntersectionBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0063487f899d006348 /* src/intersection/GuIntersectionBoxBox.cpp */; };
- FFFF9d0063b07f899d0063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0063b07f899d0063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */; };
- FFFF9d0064187f899d006418 /* src/intersection/GuIntersectionEdgeEdge.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0064187f899d006418 /* src/intersection/GuIntersectionEdgeEdge.cpp */; };
- FFFF9d0064807f899d006480 /* src/intersection/GuIntersectionRayBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0064807f899d006480 /* src/intersection/GuIntersectionRayBox.cpp */; };
- FFFF9d0064e87f899d0064e8 /* src/intersection/GuIntersectionRayCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0064e87f899d0064e8 /* src/intersection/GuIntersectionRayCapsule.cpp */; };
- FFFF9d0065507f899d006550 /* src/intersection/GuIntersectionRaySphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0065507f899d006550 /* src/intersection/GuIntersectionRaySphere.cpp */; };
- FFFF9d0065b87f899d0065b8 /* src/intersection/GuIntersectionSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0065b87f899d0065b8 /* src/intersection/GuIntersectionSphereBox.cpp */; };
- FFFF9d0066207f899d006620 /* src/intersection/GuIntersectionTriangleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0066207f899d006620 /* src/intersection/GuIntersectionTriangleBox.cpp */; };
- FFFF9d0066887f899d006688 /* src/mesh/GuBV32.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0066887f899d006688 /* src/mesh/GuBV32.cpp */; };
- FFFF9d0066f07f899d0066f0 /* src/mesh/GuBV32Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0066f07f899d0066f0 /* src/mesh/GuBV32Build.cpp */; };
- FFFF9d0067587f899d006758 /* src/mesh/GuBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0067587f899d006758 /* src/mesh/GuBV4.cpp */; };
- FFFF9d0067c07f899d0067c0 /* src/mesh/GuBV4Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0067c07f899d0067c0 /* src/mesh/GuBV4Build.cpp */; };
- FFFF9d0068287f899d006828 /* src/mesh/GuBV4_AABBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0068287f899d006828 /* src/mesh/GuBV4_AABBSweep.cpp */; };
- FFFF9d0068907f899d006890 /* src/mesh/GuBV4_BoxOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0068907f899d006890 /* src/mesh/GuBV4_BoxOverlap.cpp */; };
- FFFF9d0068f87f899d0068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0068f87f899d0068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */; };
- FFFF9d0069607f899d006960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0069607f899d006960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */; };
- FFFF9d0069c87f899d0069c8 /* src/mesh/GuBV4_OBBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0069c87f899d0069c8 /* src/mesh/GuBV4_OBBSweep.cpp */; };
- FFFF9d006a307f899d006a30 /* src/mesh/GuBV4_Raycast.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d006a307f899d006a30 /* src/mesh/GuBV4_Raycast.cpp */; };
- FFFF9d006a987f899d006a98 /* src/mesh/GuBV4_SphereOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d006a987f899d006a98 /* src/mesh/GuBV4_SphereOverlap.cpp */; };
- FFFF9d006b007f899d006b00 /* src/mesh/GuBV4_SphereSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d006b007f899d006b00 /* src/mesh/GuBV4_SphereSweep.cpp */; };
- FFFF9d006b687f899d006b68 /* src/mesh/GuMeshQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d006b687f899d006b68 /* src/mesh/GuMeshQuery.cpp */; };
- FFFF9d006bd07f899d006bd0 /* src/mesh/GuMidphaseBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d006bd07f899d006bd0 /* src/mesh/GuMidphaseBV4.cpp */; };
- FFFF9d006c387f899d006c38 /* src/mesh/GuMidphaseRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d006c387f899d006c38 /* src/mesh/GuMidphaseRTree.cpp */; };
- FFFF9d006ca07f899d006ca0 /* src/mesh/GuOverlapTestsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d006ca07f899d006ca0 /* src/mesh/GuOverlapTestsMesh.cpp */; };
- FFFF9d006d087f899d006d08 /* src/mesh/GuRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d006d087f899d006d08 /* src/mesh/GuRTree.cpp */; };
- FFFF9d006d707f899d006d70 /* src/mesh/GuRTreeQueries.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d006d707f899d006d70 /* src/mesh/GuRTreeQueries.cpp */; };
- FFFF9d006dd87f899d006dd8 /* src/mesh/GuSweepsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d006dd87f899d006dd8 /* src/mesh/GuSweepsMesh.cpp */; };
- FFFF9d006e407f899d006e40 /* src/mesh/GuTriangleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d006e407f899d006e40 /* src/mesh/GuTriangleMesh.cpp */; };
- FFFF9d006ea87f899d006ea8 /* src/mesh/GuTriangleMeshBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d006ea87f899d006ea8 /* src/mesh/GuTriangleMeshBV4.cpp */; };
- FFFF9d006f107f899d006f10 /* src/mesh/GuTriangleMeshRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d006f107f899d006f10 /* src/mesh/GuTriangleMeshRTree.cpp */; };
- FFFF9d006f787f899d006f78 /* src/hf/GuHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d006f787f899d006f78 /* src/hf/GuHeightField.cpp */; };
- FFFF9d006fe07f899d006fe0 /* src/hf/GuHeightFieldUtil.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d006fe07f899d006fe0 /* src/hf/GuHeightFieldUtil.cpp */; };
- FFFF9d0070487f899d007048 /* src/hf/GuOverlapTestsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0070487f899d007048 /* src/hf/GuOverlapTestsHF.cpp */; };
- FFFF9d0070b07f899d0070b0 /* src/hf/GuSweepsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0070b07f899d0070b0 /* src/hf/GuSweepsHF.cpp */; };
- FFFF9d0071187f899d007118 /* src/pcm/GuPCMContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0071187f899d007118 /* src/pcm/GuPCMContactBoxBox.cpp */; };
- FFFF9d0071807f899d007180 /* src/pcm/GuPCMContactBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0071807f899d007180 /* src/pcm/GuPCMContactBoxConvex.cpp */; };
- FFFF9d0071e87f899d0071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0071e87f899d0071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */; };
- FFFF9d0072507f899d007250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0072507f899d007250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */; };
- FFFF9d0072b87f899d0072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0072b87f899d0072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */; };
- FFFF9d0073207f899d007320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0073207f899d007320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */; };
- FFFF9d0073887f899d007388 /* src/pcm/GuPCMContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0073887f899d007388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */; };
- FFFF9d0073f07f899d0073f0 /* src/pcm/GuPCMContactConvexCommon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0073f07f899d0073f0 /* src/pcm/GuPCMContactConvexCommon.cpp */; };
- FFFF9d0074587f899d007458 /* src/pcm/GuPCMContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0074587f899d007458 /* src/pcm/GuPCMContactConvexConvex.cpp */; };
- FFFF9d0074c07f899d0074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0074c07f899d0074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */; };
- FFFF9d0075287f899d007528 /* src/pcm/GuPCMContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0075287f899d007528 /* src/pcm/GuPCMContactConvexMesh.cpp */; };
- FFFF9d0075907f899d007590 /* src/pcm/GuPCMContactGenBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0075907f899d007590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */; };
- FFFF9d0075f87f899d0075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0075f87f899d0075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */; };
- FFFF9d0076607f899d007660 /* src/pcm/GuPCMContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0076607f899d007660 /* src/pcm/GuPCMContactPlaneBox.cpp */; };
- FFFF9d0076c87f899d0076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0076c87f899d0076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */; };
- FFFF9d0077307f899d007730 /* src/pcm/GuPCMContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0077307f899d007730 /* src/pcm/GuPCMContactPlaneConvex.cpp */; };
- FFFF9d0077987f899d007798 /* src/pcm/GuPCMContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0077987f899d007798 /* src/pcm/GuPCMContactSphereBox.cpp */; };
- FFFF9d0078007f899d007800 /* src/pcm/GuPCMContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0078007f899d007800 /* src/pcm/GuPCMContactSphereCapsule.cpp */; };
- FFFF9d0078687f899d007868 /* src/pcm/GuPCMContactSphereConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0078687f899d007868 /* src/pcm/GuPCMContactSphereConvex.cpp */; };
- FFFF9d0078d07f899d0078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0078d07f899d0078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */; };
- FFFF9d0079387f899d007938 /* src/pcm/GuPCMContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0079387f899d007938 /* src/pcm/GuPCMContactSphereMesh.cpp */; };
- FFFF9d0079a07f899d0079a0 /* src/pcm/GuPCMContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d0079a07f899d0079a0 /* src/pcm/GuPCMContactSpherePlane.cpp */; };
- FFFF9d007a087f899d007a08 /* src/pcm/GuPCMContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d007a087f899d007a08 /* src/pcm/GuPCMContactSphereSphere.cpp */; };
- FFFF9d007a707f899d007a70 /* src/pcm/GuPCMShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d007a707f899d007a70 /* src/pcm/GuPCMShapeConvex.cpp */; };
- FFFF9d007ad87f899d007ad8 /* src/pcm/GuPCMTriangleContactGen.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d007ad87f899d007ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */; };
- FFFF9d007b407f899d007b40 /* src/pcm/GuPersistentContactManifold.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d007b407f899d007b40 /* src/pcm/GuPersistentContactManifold.cpp */; };
- FFFF9d007ba87f899d007ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d007ba87f899d007ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */; };
- FFFF9d007c107f899d007c10 /* src/ccd/GuCCDSweepPrimitives.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD9d007c107f899d007c10 /* src/ccd/GuCCDSweepPrimitives.cpp */; };
+ FFFF429a48007fba429a4800 /* src/CmBoxPruning.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD429a48007fba429a4800 /* src/CmBoxPruning.cpp */; };
+ FFFF429a48687fba429a4868 /* src/CmCollection.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD429a48687fba429a4868 /* src/CmCollection.cpp */; };
+ FFFF429a48d07fba429a48d0 /* src/CmMathUtils.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD429a48d07fba429a48d0 /* src/CmMathUtils.cpp */; };
+ FFFF429a49387fba429a4938 /* src/CmPtrTable.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD429a49387fba429a4938 /* src/CmPtrTable.cpp */; };
+ FFFF429a49a07fba429a49a0 /* src/CmRadixSort.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD429a49a07fba429a49a0 /* src/CmRadixSort.cpp */; };
+ FFFF429a4a087fba429a4a08 /* src/CmRadixSortBuffered.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD429a4a087fba429a4a08 /* src/CmRadixSortBuffered.cpp */; };
+ FFFF429a4a707fba429a4a70 /* src/CmRenderOutput.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD429a4a707fba429a4a70 /* src/CmRenderOutput.cpp */; };
+ FFFF429a4ad87fba429a4ad8 /* src/CmVisualization.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD429a4ad87fba429a4ad8 /* src/CmVisualization.cpp */; };
+ FFFF420043a87fba420043a8 /* ../../Include/GeomUtils in geomutils */= { isa = PBXBuildFile; fileRef = FFFD420043a87fba420043a8 /* ../../Include/GeomUtils */; };
+ FFFF420078e07fba420078e0 /* src/GuBounds.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD420078e07fba420078e0 /* src/GuBounds.cpp */; };
+ FFFF420079487fba42007948 /* src/GuBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD420079487fba42007948 /* src/GuBox.cpp */; };
+ FFFF420079b07fba420079b0 /* src/GuCCTSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD420079b07fba420079b0 /* src/GuCCTSweepTests.cpp */; };
+ FFFF42007a187fba42007a18 /* src/GuCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD42007a187fba42007a18 /* src/GuCapsule.cpp */; };
+ FFFF42007a807fba42007a80 /* src/GuGeometryQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD42007a807fba42007a80 /* src/GuGeometryQuery.cpp */; };
+ FFFF42007ae87fba42007ae8 /* src/GuGeometryUnion.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD42007ae87fba42007ae8 /* src/GuGeometryUnion.cpp */; };
+ FFFF42007b507fba42007b50 /* src/GuInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD42007b507fba42007b50 /* src/GuInternal.cpp */; };
+ FFFF42007bb87fba42007bb8 /* src/GuMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD42007bb87fba42007bb8 /* src/GuMTD.cpp */; };
+ FFFF42007c207fba42007c20 /* src/GuMeshFactory.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD42007c207fba42007c20 /* src/GuMeshFactory.cpp */; };
+ FFFF42007c887fba42007c88 /* src/GuMetaData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD42007c887fba42007c88 /* src/GuMetaData.cpp */; };
+ FFFF42007cf07fba42007cf0 /* src/GuOverlapTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD42007cf07fba42007cf0 /* src/GuOverlapTests.cpp */; };
+ FFFF42007d587fba42007d58 /* src/GuRaycastTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD42007d587fba42007d58 /* src/GuRaycastTests.cpp */; };
+ FFFF42007dc07fba42007dc0 /* src/GuSerialize.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD42007dc07fba42007dc0 /* src/GuSerialize.cpp */; };
+ FFFF42007e287fba42007e28 /* src/GuSweepMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD42007e287fba42007e28 /* src/GuSweepMTD.cpp */; };
+ FFFF42007e907fba42007e90 /* src/GuSweepSharedTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD42007e907fba42007e90 /* src/GuSweepSharedTests.cpp */; };
+ FFFF42007ef87fba42007ef8 /* src/GuSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD42007ef87fba42007ef8 /* src/GuSweepTests.cpp */; };
+ FFFF42007f607fba42007f60 /* src/contact/GuContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD42007f607fba42007f60 /* src/contact/GuContactBoxBox.cpp */; };
+ FFFF42007fc87fba42007fc8 /* src/contact/GuContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD42007fc87fba42007fc8 /* src/contact/GuContactCapsuleBox.cpp */; };
+ FFFF420080307fba42008030 /* src/contact/GuContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD420080307fba42008030 /* src/contact/GuContactCapsuleCapsule.cpp */; };
+ FFFF420080987fba42008098 /* src/contact/GuContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD420080987fba42008098 /* src/contact/GuContactCapsuleConvex.cpp */; };
+ FFFF420081007fba42008100 /* src/contact/GuContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD420081007fba42008100 /* src/contact/GuContactCapsuleMesh.cpp */; };
+ FFFF420081687fba42008168 /* src/contact/GuContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD420081687fba42008168 /* src/contact/GuContactConvexConvex.cpp */; };
+ FFFF420081d07fba420081d0 /* src/contact/GuContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD420081d07fba420081d0 /* src/contact/GuContactConvexMesh.cpp */; };
+ FFFF420082387fba42008238 /* src/contact/GuContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD420082387fba42008238 /* src/contact/GuContactPlaneBox.cpp */; };
+ FFFF420082a07fba420082a0 /* src/contact/GuContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD420082a07fba420082a0 /* src/contact/GuContactPlaneCapsule.cpp */; };
+ FFFF420083087fba42008308 /* src/contact/GuContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD420083087fba42008308 /* src/contact/GuContactPlaneConvex.cpp */; };
+ FFFF420083707fba42008370 /* src/contact/GuContactPolygonPolygon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD420083707fba42008370 /* src/contact/GuContactPolygonPolygon.cpp */; };
+ FFFF420083d87fba420083d8 /* src/contact/GuContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD420083d87fba420083d8 /* src/contact/GuContactSphereBox.cpp */; };
+ FFFF420084407fba42008440 /* src/contact/GuContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD420084407fba42008440 /* src/contact/GuContactSphereCapsule.cpp */; };
+ FFFF420084a87fba420084a8 /* src/contact/GuContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD420084a87fba420084a8 /* src/contact/GuContactSphereMesh.cpp */; };
+ FFFF420085107fba42008510 /* src/contact/GuContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD420085107fba42008510 /* src/contact/GuContactSpherePlane.cpp */; };
+ FFFF420085787fba42008578 /* src/contact/GuContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD420085787fba42008578 /* src/contact/GuContactSphereSphere.cpp */; };
+ FFFF420085e07fba420085e0 /* src/contact/GuFeatureCode.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD420085e07fba420085e0 /* src/contact/GuFeatureCode.cpp */; };
+ FFFF420086487fba42008648 /* src/contact/GuLegacyContactBoxHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD420086487fba42008648 /* src/contact/GuLegacyContactBoxHeightField.cpp */; };
+ FFFF420086b07fba420086b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD420086b07fba420086b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */; };
+ FFFF420087187fba42008718 /* src/contact/GuLegacyContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD420087187fba42008718 /* src/contact/GuLegacyContactConvexHeightField.cpp */; };
+ FFFF420087807fba42008780 /* src/contact/GuLegacyContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD420087807fba42008780 /* src/contact/GuLegacyContactSphereHeightField.cpp */; };
+ FFFF420087e87fba420087e8 /* src/common/GuBarycentricCoordinates.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD420087e87fba420087e8 /* src/common/GuBarycentricCoordinates.cpp */; };
+ FFFF420088507fba42008850 /* src/common/GuSeparatingAxes.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD420088507fba42008850 /* src/common/GuSeparatingAxes.cpp */; };
+ FFFF420088b87fba420088b8 /* src/convex/GuBigConvexData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD420088b87fba420088b8 /* src/convex/GuBigConvexData.cpp */; };
+ FFFF420089207fba42008920 /* src/convex/GuConvexHelper.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD420089207fba42008920 /* src/convex/GuConvexHelper.cpp */; };
+ FFFF420089887fba42008988 /* src/convex/GuConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD420089887fba42008988 /* src/convex/GuConvexMesh.cpp */; };
+ FFFF420089f07fba420089f0 /* src/convex/GuConvexSupportTable.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD420089f07fba420089f0 /* src/convex/GuConvexSupportTable.cpp */; };
+ FFFF42008a587fba42008a58 /* src/convex/GuConvexUtilsInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD42008a587fba42008a58 /* src/convex/GuConvexUtilsInternal.cpp */; };
+ FFFF42008ac07fba42008ac0 /* src/convex/GuHillClimbing.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD42008ac07fba42008ac0 /* src/convex/GuHillClimbing.cpp */; };
+ FFFF42008b287fba42008b28 /* src/convex/GuShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD42008b287fba42008b28 /* src/convex/GuShapeConvex.cpp */; };
+ FFFF42008b907fba42008b90 /* src/distance/GuDistancePointBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD42008b907fba42008b90 /* src/distance/GuDistancePointBox.cpp */; };
+ FFFF42008bf87fba42008bf8 /* src/distance/GuDistancePointTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD42008bf87fba42008bf8 /* src/distance/GuDistancePointTriangle.cpp */; };
+ FFFF42008c607fba42008c60 /* src/distance/GuDistanceSegmentBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD42008c607fba42008c60 /* src/distance/GuDistanceSegmentBox.cpp */; };
+ FFFF42008cc87fba42008cc8 /* src/distance/GuDistanceSegmentSegment.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD42008cc87fba42008cc8 /* src/distance/GuDistanceSegmentSegment.cpp */; };
+ FFFF42008d307fba42008d30 /* src/distance/GuDistanceSegmentTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD42008d307fba42008d30 /* src/distance/GuDistanceSegmentTriangle.cpp */; };
+ FFFF42008d987fba42008d98 /* src/sweep/GuSweepBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD42008d987fba42008d98 /* src/sweep/GuSweepBoxBox.cpp */; };
+ FFFF42008e007fba42008e00 /* src/sweep/GuSweepBoxSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD42008e007fba42008e00 /* src/sweep/GuSweepBoxSphere.cpp */; };
+ FFFF42008e687fba42008e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD42008e687fba42008e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */; };
+ FFFF42008ed07fba42008ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD42008ed07fba42008ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */; };
+ FFFF42008f387fba42008f38 /* src/sweep/GuSweepCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD42008f387fba42008f38 /* src/sweep/GuSweepCapsuleBox.cpp */; };
+ FFFF42008fa07fba42008fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD42008fa07fba42008fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */; };
+ FFFF420090087fba42009008 /* src/sweep/GuSweepCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD420090087fba42009008 /* src/sweep/GuSweepCapsuleTriangle.cpp */; };
+ FFFF420090707fba42009070 /* src/sweep/GuSweepSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD420090707fba42009070 /* src/sweep/GuSweepSphereCapsule.cpp */; };
+ FFFF420090d87fba420090d8 /* src/sweep/GuSweepSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD420090d87fba420090d8 /* src/sweep/GuSweepSphereSphere.cpp */; };
+ FFFF420091407fba42009140 /* src/sweep/GuSweepSphereTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD420091407fba42009140 /* src/sweep/GuSweepSphereTriangle.cpp */; };
+ FFFF420091a87fba420091a8 /* src/sweep/GuSweepTriangleUtils.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD420091a87fba420091a8 /* src/sweep/GuSweepTriangleUtils.cpp */; };
+ FFFF420092107fba42009210 /* src/gjk/GuEPA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD420092107fba42009210 /* src/gjk/GuEPA.cpp */; };
+ FFFF420092787fba42009278 /* src/gjk/GuGJKSimplex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD420092787fba42009278 /* src/gjk/GuGJKSimplex.cpp */; };
+ FFFF420092e07fba420092e0 /* src/gjk/GuGJKTest.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD420092e07fba420092e0 /* src/gjk/GuGJKTest.cpp */; };
+ FFFF420093487fba42009348 /* src/intersection/GuIntersectionBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD420093487fba42009348 /* src/intersection/GuIntersectionBoxBox.cpp */; };
+ FFFF420093b07fba420093b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD420093b07fba420093b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */; };
+ FFFF420094187fba42009418 /* src/intersection/GuIntersectionEdgeEdge.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD420094187fba42009418 /* src/intersection/GuIntersectionEdgeEdge.cpp */; };
+ FFFF420094807fba42009480 /* src/intersection/GuIntersectionRayBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD420094807fba42009480 /* src/intersection/GuIntersectionRayBox.cpp */; };
+ FFFF420094e87fba420094e8 /* src/intersection/GuIntersectionRayCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD420094e87fba420094e8 /* src/intersection/GuIntersectionRayCapsule.cpp */; };
+ FFFF420095507fba42009550 /* src/intersection/GuIntersectionRaySphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD420095507fba42009550 /* src/intersection/GuIntersectionRaySphere.cpp */; };
+ FFFF420095b87fba420095b8 /* src/intersection/GuIntersectionSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD420095b87fba420095b8 /* src/intersection/GuIntersectionSphereBox.cpp */; };
+ FFFF420096207fba42009620 /* src/intersection/GuIntersectionTriangleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD420096207fba42009620 /* src/intersection/GuIntersectionTriangleBox.cpp */; };
+ FFFF420096887fba42009688 /* src/mesh/GuBV32.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD420096887fba42009688 /* src/mesh/GuBV32.cpp */; };
+ FFFF420096f07fba420096f0 /* src/mesh/GuBV32Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD420096f07fba420096f0 /* src/mesh/GuBV32Build.cpp */; };
+ FFFF420097587fba42009758 /* src/mesh/GuBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD420097587fba42009758 /* src/mesh/GuBV4.cpp */; };
+ FFFF420097c07fba420097c0 /* src/mesh/GuBV4Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD420097c07fba420097c0 /* src/mesh/GuBV4Build.cpp */; };
+ FFFF420098287fba42009828 /* src/mesh/GuBV4_AABBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD420098287fba42009828 /* src/mesh/GuBV4_AABBSweep.cpp */; };
+ FFFF420098907fba42009890 /* src/mesh/GuBV4_BoxOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD420098907fba42009890 /* src/mesh/GuBV4_BoxOverlap.cpp */; };
+ FFFF420098f87fba420098f8 /* src/mesh/GuBV4_CapsuleSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD420098f87fba420098f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */; };
+ FFFF420099607fba42009960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD420099607fba42009960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */; };
+ FFFF420099c87fba420099c8 /* src/mesh/GuBV4_OBBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD420099c87fba420099c8 /* src/mesh/GuBV4_OBBSweep.cpp */; };
+ FFFF42009a307fba42009a30 /* src/mesh/GuBV4_Raycast.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD42009a307fba42009a30 /* src/mesh/GuBV4_Raycast.cpp */; };
+ FFFF42009a987fba42009a98 /* src/mesh/GuBV4_SphereOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD42009a987fba42009a98 /* src/mesh/GuBV4_SphereOverlap.cpp */; };
+ FFFF42009b007fba42009b00 /* src/mesh/GuBV4_SphereSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD42009b007fba42009b00 /* src/mesh/GuBV4_SphereSweep.cpp */; };
+ FFFF42009b687fba42009b68 /* src/mesh/GuMeshQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD42009b687fba42009b68 /* src/mesh/GuMeshQuery.cpp */; };
+ FFFF42009bd07fba42009bd0 /* src/mesh/GuMidphaseBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD42009bd07fba42009bd0 /* src/mesh/GuMidphaseBV4.cpp */; };
+ FFFF42009c387fba42009c38 /* src/mesh/GuMidphaseRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD42009c387fba42009c38 /* src/mesh/GuMidphaseRTree.cpp */; };
+ FFFF42009ca07fba42009ca0 /* src/mesh/GuOverlapTestsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD42009ca07fba42009ca0 /* src/mesh/GuOverlapTestsMesh.cpp */; };
+ FFFF42009d087fba42009d08 /* src/mesh/GuRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD42009d087fba42009d08 /* src/mesh/GuRTree.cpp */; };
+ FFFF42009d707fba42009d70 /* src/mesh/GuRTreeQueries.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD42009d707fba42009d70 /* src/mesh/GuRTreeQueries.cpp */; };
+ FFFF42009dd87fba42009dd8 /* src/mesh/GuSweepsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD42009dd87fba42009dd8 /* src/mesh/GuSweepsMesh.cpp */; };
+ FFFF42009e407fba42009e40 /* src/mesh/GuTriangleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD42009e407fba42009e40 /* src/mesh/GuTriangleMesh.cpp */; };
+ FFFF42009ea87fba42009ea8 /* src/mesh/GuTriangleMeshBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD42009ea87fba42009ea8 /* src/mesh/GuTriangleMeshBV4.cpp */; };
+ FFFF42009f107fba42009f10 /* src/mesh/GuTriangleMeshRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD42009f107fba42009f10 /* src/mesh/GuTriangleMeshRTree.cpp */; };
+ FFFF42009f787fba42009f78 /* src/hf/GuHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD42009f787fba42009f78 /* src/hf/GuHeightField.cpp */; };
+ FFFF42009fe07fba42009fe0 /* src/hf/GuHeightFieldUtil.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD42009fe07fba42009fe0 /* src/hf/GuHeightFieldUtil.cpp */; };
+ FFFF4200a0487fba4200a048 /* src/hf/GuOverlapTestsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD4200a0487fba4200a048 /* src/hf/GuOverlapTestsHF.cpp */; };
+ FFFF4200a0b07fba4200a0b0 /* src/hf/GuSweepsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD4200a0b07fba4200a0b0 /* src/hf/GuSweepsHF.cpp */; };
+ FFFF4200a1187fba4200a118 /* src/pcm/GuPCMContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD4200a1187fba4200a118 /* src/pcm/GuPCMContactBoxBox.cpp */; };
+ FFFF4200a1807fba4200a180 /* src/pcm/GuPCMContactBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD4200a1807fba4200a180 /* src/pcm/GuPCMContactBoxConvex.cpp */; };
+ FFFF4200a1e87fba4200a1e8 /* src/pcm/GuPCMContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD4200a1e87fba4200a1e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */; };
+ FFFF4200a2507fba4200a250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD4200a2507fba4200a250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */; };
+ FFFF4200a2b87fba4200a2b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD4200a2b87fba4200a2b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */; };
+ FFFF4200a3207fba4200a320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD4200a3207fba4200a320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */; };
+ FFFF4200a3887fba4200a388 /* src/pcm/GuPCMContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD4200a3887fba4200a388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */; };
+ FFFF4200a3f07fba4200a3f0 /* src/pcm/GuPCMContactConvexCommon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD4200a3f07fba4200a3f0 /* src/pcm/GuPCMContactConvexCommon.cpp */; };
+ FFFF4200a4587fba4200a458 /* src/pcm/GuPCMContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD4200a4587fba4200a458 /* src/pcm/GuPCMContactConvexConvex.cpp */; };
+ FFFF4200a4c07fba4200a4c0 /* src/pcm/GuPCMContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD4200a4c07fba4200a4c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */; };
+ FFFF4200a5287fba4200a528 /* src/pcm/GuPCMContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD4200a5287fba4200a528 /* src/pcm/GuPCMContactConvexMesh.cpp */; };
+ FFFF4200a5907fba4200a590 /* src/pcm/GuPCMContactGenBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD4200a5907fba4200a590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */; };
+ FFFF4200a5f87fba4200a5f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD4200a5f87fba4200a5f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */; };
+ FFFF4200a6607fba4200a660 /* src/pcm/GuPCMContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD4200a6607fba4200a660 /* src/pcm/GuPCMContactPlaneBox.cpp */; };
+ FFFF4200a6c87fba4200a6c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD4200a6c87fba4200a6c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */; };
+ FFFF4200a7307fba4200a730 /* src/pcm/GuPCMContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD4200a7307fba4200a730 /* src/pcm/GuPCMContactPlaneConvex.cpp */; };
+ FFFF4200a7987fba4200a798 /* src/pcm/GuPCMContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD4200a7987fba4200a798 /* src/pcm/GuPCMContactSphereBox.cpp */; };
+ FFFF4200a8007fba4200a800 /* src/pcm/GuPCMContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD4200a8007fba4200a800 /* src/pcm/GuPCMContactSphereCapsule.cpp */; };
+ FFFF4200a8687fba4200a868 /* src/pcm/GuPCMContactSphereConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD4200a8687fba4200a868 /* src/pcm/GuPCMContactSphereConvex.cpp */; };
+ FFFF4200a8d07fba4200a8d0 /* src/pcm/GuPCMContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD4200a8d07fba4200a8d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */; };
+ FFFF4200a9387fba4200a938 /* src/pcm/GuPCMContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD4200a9387fba4200a938 /* src/pcm/GuPCMContactSphereMesh.cpp */; };
+ FFFF4200a9a07fba4200a9a0 /* src/pcm/GuPCMContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD4200a9a07fba4200a9a0 /* src/pcm/GuPCMContactSpherePlane.cpp */; };
+ FFFF4200aa087fba4200aa08 /* src/pcm/GuPCMContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD4200aa087fba4200aa08 /* src/pcm/GuPCMContactSphereSphere.cpp */; };
+ FFFF4200aa707fba4200aa70 /* src/pcm/GuPCMShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD4200aa707fba4200aa70 /* src/pcm/GuPCMShapeConvex.cpp */; };
+ FFFF4200aad87fba4200aad8 /* src/pcm/GuPCMTriangleContactGen.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD4200aad87fba4200aad8 /* src/pcm/GuPCMTriangleContactGen.cpp */; };
+ FFFF4200ab407fba4200ab40 /* src/pcm/GuPersistentContactManifold.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD4200ab407fba4200ab40 /* src/pcm/GuPersistentContactManifold.cpp */; };
+ FFFF4200aba87fba4200aba8 /* src/ccd/GuCCDSweepConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD4200aba87fba4200aba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */; };
+ FFFF4200ac107fba4200ac10 /* src/ccd/GuCCDSweepPrimitives.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD4200ac107fba4200ac10 /* src/ccd/GuCCDSweepPrimitives.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFD9c88a7507f899c88a750 /* PhysXCommon */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCommon"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFD9d00ec007f899d00ec00 /* common/PxBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxBase.h"; path = "../../../Include/common/PxBase.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d00ec687f899d00ec68 /* common/PxCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCollection.h"; path = "../../../Include/common/PxCollection.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d00ecd07f899d00ecd0 /* common/PxCoreUtilityTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCoreUtilityTypes.h"; path = "../../../Include/common/PxCoreUtilityTypes.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d00ed387f899d00ed38 /* common/PxMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaData.h"; path = "../../../Include/common/PxMetaData.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d00eda07f899d00eda0 /* common/PxMetaDataFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaDataFlags.h"; path = "../../../Include/common/PxMetaDataFlags.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d00ee087f899d00ee08 /* common/PxPhysXCommonConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysXCommonConfig.h"; path = "../../../Include/common/PxPhysXCommonConfig.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d00ee707f899d00ee70 /* common/PxPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysicsInsertionCallback.h"; path = "../../../Include/common/PxPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d00eed87f899d00eed8 /* common/PxRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxRenderBuffer.h"; path = "../../../Include/common/PxRenderBuffer.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d00ef407f899d00ef40 /* common/PxSerialFramework.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerialFramework.h"; path = "../../../Include/common/PxSerialFramework.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d00efa87f899d00efa8 /* common/PxSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerializer.h"; path = "../../../Include/common/PxSerializer.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d00f0107f899d00f010 /* common/PxStringTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxStringTable.h"; path = "../../../Include/common/PxStringTable.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d00f0787f899d00f078 /* common/PxTolerancesScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTolerancesScale.h"; path = "../../../Include/common/PxTolerancesScale.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d00f0e07f899d00f0e0 /* common/PxTypeInfo.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTypeInfo.h"; path = "../../../Include/common/PxTypeInfo.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d00f1487f899d00f148 /* geometry/PxBoxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxBoxGeometry.h"; path = "../../../Include/geometry/PxBoxGeometry.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d00f1b07f899d00f1b0 /* geometry/PxCapsuleGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxCapsuleGeometry.h"; path = "../../../Include/geometry/PxCapsuleGeometry.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d00f2187f899d00f218 /* geometry/PxConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMesh.h"; path = "../../../Include/geometry/PxConvexMesh.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d00f2807f899d00f280 /* geometry/PxConvexMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMeshGeometry.h"; path = "../../../Include/geometry/PxConvexMeshGeometry.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d00f2e87f899d00f2e8 /* geometry/PxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometry.h"; path = "../../../Include/geometry/PxGeometry.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d00f3507f899d00f350 /* geometry/PxGeometryHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryHelpers.h"; path = "../../../Include/geometry/PxGeometryHelpers.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d00f3b87f899d00f3b8 /* geometry/PxGeometryQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryQuery.h"; path = "../../../Include/geometry/PxGeometryQuery.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d00f4207f899d00f420 /* geometry/PxHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightField.h"; path = "../../../Include/geometry/PxHeightField.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d00f4887f899d00f488 /* geometry/PxHeightFieldDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldDesc.h"; path = "../../../Include/geometry/PxHeightFieldDesc.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d00f4f07f899d00f4f0 /* geometry/PxHeightFieldFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldFlag.h"; path = "../../../Include/geometry/PxHeightFieldFlag.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d00f5587f899d00f558 /* geometry/PxHeightFieldGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldGeometry.h"; path = "../../../Include/geometry/PxHeightFieldGeometry.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d00f5c07f899d00f5c0 /* geometry/PxHeightFieldSample.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldSample.h"; path = "../../../Include/geometry/PxHeightFieldSample.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d00f6287f899d00f628 /* geometry/PxMeshQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshQuery.h"; path = "../../../Include/geometry/PxMeshQuery.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d00f6907f899d00f690 /* geometry/PxMeshScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshScale.h"; path = "../../../Include/geometry/PxMeshScale.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d00f6f87f899d00f6f8 /* geometry/PxPlaneGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxPlaneGeometry.h"; path = "../../../Include/geometry/PxPlaneGeometry.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d00f7607f899d00f760 /* geometry/PxSimpleTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSimpleTriangleMesh.h"; path = "../../../Include/geometry/PxSimpleTriangleMesh.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d00f7c87f899d00f7c8 /* geometry/PxSphereGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSphereGeometry.h"; path = "../../../Include/geometry/PxSphereGeometry.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d00f8307f899d00f830 /* geometry/PxTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangle.h"; path = "../../../Include/geometry/PxTriangle.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d00f8987f899d00f898 /* geometry/PxTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMesh.h"; path = "../../../Include/geometry/PxTriangleMesh.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d00f9007f899d00f900 /* geometry/PxTriangleMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMeshGeometry.h"; path = "../../../Include/geometry/PxTriangleMeshGeometry.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1a66007f899c1a6600 /* src/CmBoxPruning.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.cpp"; path = "../../Common/src/CmBoxPruning.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c1a66687f899c1a6668 /* src/CmCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.cpp"; path = "../../Common/src/CmCollection.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c1a66d07f899c1a66d0 /* src/CmMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMathUtils.cpp"; path = "../../Common/src/CmMathUtils.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c1a67387f899c1a6738 /* src/CmPtrTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.cpp"; path = "../../Common/src/CmPtrTable.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c1a67a07f899c1a67a0 /* src/CmRadixSort.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.cpp"; path = "../../Common/src/CmRadixSort.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c1a68087f899c1a6808 /* src/CmRadixSortBuffered.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.cpp"; path = "../../Common/src/CmRadixSortBuffered.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c1a68707f899c1a6870 /* src/CmRenderOutput.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.cpp"; path = "../../Common/src/CmRenderOutput.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c1a68d87f899c1a68d8 /* src/CmVisualization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.cpp"; path = "../../Common/src/CmVisualization.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c1a69407f899c1a6940 /* src/CmBitMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBitMap.h"; path = "../../Common/src/CmBitMap.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1a69a87f899c1a69a8 /* src/CmBoxPruning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.h"; path = "../../Common/src/CmBoxPruning.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1a6a107f899c1a6a10 /* src/CmCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.h"; path = "../../Common/src/CmCollection.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1a6a787f899c1a6a78 /* src/CmConeLimitHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmConeLimitHelper.h"; path = "../../Common/src/CmConeLimitHelper.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1a6ae07f899c1a6ae0 /* src/CmFlushPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmFlushPool.h"; path = "../../Common/src/CmFlushPool.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1a6b487f899c1a6b48 /* src/CmIDPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIDPool.h"; path = "../../Common/src/CmIDPool.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1a6bb07f899c1a6bb0 /* src/CmIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIO.h"; path = "../../Common/src/CmIO.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1a6c187f899c1a6c18 /* src/CmMatrix34.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMatrix34.h"; path = "../../Common/src/CmMatrix34.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1a6c807f899c1a6c80 /* src/CmPhysXCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPhysXCommon.h"; path = "../../Common/src/CmPhysXCommon.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1a6ce87f899c1a6ce8 /* src/CmPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPool.h"; path = "../../Common/src/CmPool.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1a6d507f899c1a6d50 /* src/CmPreallocatingPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPreallocatingPool.h"; path = "../../Common/src/CmPreallocatingPool.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1a6db87f899c1a6db8 /* src/CmPriorityQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPriorityQueue.h"; path = "../../Common/src/CmPriorityQueue.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1a6e207f899c1a6e20 /* src/CmPtrTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.h"; path = "../../Common/src/CmPtrTable.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1a6e887f899c1a6e88 /* src/CmQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmQueue.h"; path = "../../Common/src/CmQueue.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1a6ef07f899c1a6ef0 /* src/CmRadixSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.h"; path = "../../Common/src/CmRadixSort.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1a6f587f899c1a6f58 /* src/CmRadixSortBuffered.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.h"; path = "../../Common/src/CmRadixSortBuffered.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1a6fc07f899c1a6fc0 /* src/CmRefCountable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRefCountable.h"; path = "../../Common/src/CmRefCountable.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1a70287f899c1a7028 /* src/CmRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderBuffer.h"; path = "../../Common/src/CmRenderBuffer.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1a70907f899c1a7090 /* src/CmRenderOutput.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.h"; path = "../../Common/src/CmRenderOutput.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1a70f87f899c1a70f8 /* src/CmScaling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmScaling.h"; path = "../../Common/src/CmScaling.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1a71607f899c1a7160 /* src/CmSpatialVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmSpatialVector.h"; path = "../../Common/src/CmSpatialVector.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1a71c87f899c1a71c8 /* src/CmTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTask.h"; path = "../../Common/src/CmTask.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1a72307f899c1a7230 /* src/CmTaskPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTaskPool.h"; path = "../../Common/src/CmTaskPool.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1a72987f899c1a7298 /* src/CmTmpMem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTmpMem.h"; path = "../../Common/src/CmTmpMem.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1a73007f899c1a7300 /* src/CmTransformUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTransformUtils.h"; path = "../../Common/src/CmTransformUtils.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1a73687f899c1a7368 /* src/CmUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmUtils.h"; path = "../../Common/src/CmUtils.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1a73d07f899c1a73d0 /* src/CmVisualization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.h"; path = "../../Common/src/CmVisualization.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0010007f899d001000 /* headers/GuAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuAxes.h"; path = "../../GeomUtils/headers/GuAxes.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0010687f899d001068 /* headers/GuBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuBox.h"; path = "../../GeomUtils/headers/GuBox.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0010d07f899d0010d0 /* headers/GuDistanceSegmentBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentBox.h"; path = "../../GeomUtils/headers/GuDistanceSegmentBox.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0011387f899d001138 /* headers/GuDistanceSegmentSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentSegment.h"; path = "../../GeomUtils/headers/GuDistanceSegmentSegment.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0011a07f899d0011a0 /* headers/GuIntersectionBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionBoxBox.h"; path = "../../GeomUtils/headers/GuIntersectionBoxBox.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0012087f899d001208 /* headers/GuIntersectionTriangleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionTriangleBox.h"; path = "../../GeomUtils/headers/GuIntersectionTriangleBox.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0012707f899d001270 /* headers/GuRaycastTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuRaycastTests.h"; path = "../../GeomUtils/headers/GuRaycastTests.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0012d87f899d0012d8 /* headers/GuSIMDHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSIMDHelpers.h"; path = "../../GeomUtils/headers/GuSIMDHelpers.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0013407f899d001340 /* headers/GuSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSegment.h"; path = "../../GeomUtils/headers/GuSegment.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0013a87f899d0013a8 /* ../../Include/GeomUtils */= { isa = PBXFileReference; fileEncoding = 4; name = "../../Include/GeomUtils"; path = "../../../Include/GeomUtils"; sourceTree = SOURCE_ROOT; };
- FFFD9d0014107f899d001410 /* src/GuBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.h"; path = "../../GeomUtils/src/GuBounds.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0014787f899d001478 /* src/GuCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.h"; path = "../../GeomUtils/src/GuCapsule.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0014e07f899d0014e0 /* src/GuCenterExtents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCenterExtents.h"; path = "../../GeomUtils/src/GuCenterExtents.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0015487f899d001548 /* src/GuGeometryUnion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.h"; path = "../../GeomUtils/src/GuGeometryUnion.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0015b07f899d0015b0 /* src/GuInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.h"; path = "../../GeomUtils/src/GuInternal.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0016187f899d001618 /* src/GuMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.h"; path = "../../GeomUtils/src/GuMTD.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0016807f899d001680 /* src/GuMeshFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.h"; path = "../../GeomUtils/src/GuMeshFactory.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0016e87f899d0016e8 /* src/GuOverlapTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.h"; path = "../../GeomUtils/src/GuOverlapTests.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0017507f899d001750 /* src/GuSerialize.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.h"; path = "../../GeomUtils/src/GuSerialize.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0017b87f899d0017b8 /* src/GuSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSphere.h"; path = "../../GeomUtils/src/GuSphere.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0018207f899d001820 /* src/GuSweepMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.h"; path = "../../GeomUtils/src/GuSweepMTD.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0018887f899d001888 /* src/GuSweepSharedTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.h"; path = "../../GeomUtils/src/GuSweepSharedTests.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0018f07f899d0018f0 /* src/GuSweepTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.h"; path = "../../GeomUtils/src/GuSweepTests.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0019587f899d001958 /* src/contact/GuContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactMethodImpl.h"; path = "../../GeomUtils/src/contact/GuContactMethodImpl.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0019c07f899d0019c0 /* src/contact/GuContactPolygonPolygon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.h"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d001a287f899d001a28 /* src/contact/GuFeatureCode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.h"; path = "../../GeomUtils/src/contact/GuFeatureCode.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d001a907f899d001a90 /* src/contact/GuLegacyTraceLineCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyTraceLineCallback.h"; path = "../../GeomUtils/src/contact/GuLegacyTraceLineCallback.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d001af87f899d001af8 /* src/common/GuBarycentricCoordinates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.h"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d001b607f899d001b60 /* src/common/GuBoxConversion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBoxConversion.h"; path = "../../GeomUtils/src/common/GuBoxConversion.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d001bc87f899d001bc8 /* src/common/GuEdgeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeCache.h"; path = "../../GeomUtils/src/common/GuEdgeCache.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d001c307f899d001c30 /* src/common/GuEdgeListData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeListData.h"; path = "../../GeomUtils/src/common/GuEdgeListData.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d001c987f899d001c98 /* src/common/GuSeparatingAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.h"; path = "../../GeomUtils/src/common/GuSeparatingAxes.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d001d007f899d001d00 /* src/convex/GuBigConvexData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.h"; path = "../../GeomUtils/src/convex/GuBigConvexData.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d001d687f899d001d68 /* src/convex/GuBigConvexData2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData2.h"; path = "../../GeomUtils/src/convex/GuBigConvexData2.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d001dd07f899d001dd0 /* src/convex/GuConvexEdgeFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexEdgeFlags.h"; path = "../../GeomUtils/src/convex/GuConvexEdgeFlags.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d001e387f899d001e38 /* src/convex/GuConvexHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.h"; path = "../../GeomUtils/src/convex/GuConvexHelper.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d001ea07f899d001ea0 /* src/convex/GuConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.h"; path = "../../GeomUtils/src/convex/GuConvexMesh.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d001f087f899d001f08 /* src/convex/GuConvexMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMeshData.h"; path = "../../GeomUtils/src/convex/GuConvexMeshData.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d001f707f899d001f70 /* src/convex/GuConvexSupportTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.h"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d001fd87f899d001fd8 /* src/convex/GuConvexUtilsInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.h"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0020407f899d002040 /* src/convex/GuCubeIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuCubeIndex.h"; path = "../../GeomUtils/src/convex/GuCubeIndex.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0020a87f899d0020a8 /* src/convex/GuHillClimbing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.h"; path = "../../GeomUtils/src/convex/GuHillClimbing.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0021107f899d002110 /* src/convex/GuShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.h"; path = "../../GeomUtils/src/convex/GuShapeConvex.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0021787f899d002178 /* src/distance/GuDistancePointBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.h"; path = "../../GeomUtils/src/distance/GuDistancePointBox.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0021e07f899d0021e0 /* src/distance/GuDistancePointSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointSegment.h"; path = "../../GeomUtils/src/distance/GuDistancePointSegment.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0022487f899d002248 /* src/distance/GuDistancePointTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0022b07f899d0022b0 /* src/distance/GuDistancePointTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangleSIMD.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0023187f899d002318 /* src/distance/GuDistanceSegmentSegmentSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegmentSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegmentSIMD.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0023807f899d002380 /* src/distance/GuDistanceSegmentTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0023e87f899d0023e8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangleSIMD.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0024507f899d002450 /* src/sweep/GuSweepBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0024b87f899d0024b8 /* src/sweep/GuSweepBoxSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0025207f899d002520 /* 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; };
- FFFD9d0025887f899d002588 /* 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; };
- FFFD9d0025f07f899d0025f0 /* src/sweep/GuSweepCapsuleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0026587f899d002658 /* src/sweep/GuSweepCapsuleCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0026c07f899d0026c0 /* src/sweep/GuSweepCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0027287f899d002728 /* src/sweep/GuSweepSphereCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0027907f899d002790 /* src/sweep/GuSweepSphereSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0027f87f899d0027f8 /* src/sweep/GuSweepSphereTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0028607f899d002860 /* src/sweep/GuSweepTriangleUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.h"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0028c87f899d0028c8 /* src/gjk/GuEPA.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.h"; path = "../../GeomUtils/src/gjk/GuEPA.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0029307f899d002930 /* src/gjk/GuEPAFacet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPAFacet.h"; path = "../../GeomUtils/src/gjk/GuEPAFacet.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0029987f899d002998 /* src/gjk/GuGJK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJK.h"; path = "../../GeomUtils/src/gjk/GuGJK.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d002a007f899d002a00 /* src/gjk/GuGJKPenetration.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKPenetration.h"; path = "../../GeomUtils/src/gjk/GuGJKPenetration.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d002a687f899d002a68 /* src/gjk/GuGJKRaycast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKRaycast.h"; path = "../../GeomUtils/src/gjk/GuGJKRaycast.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d002ad07f899d002ad0 /* src/gjk/GuGJKSimplex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.h"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d002b387f899d002b38 /* src/gjk/GuGJKTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.h"; path = "../../GeomUtils/src/gjk/GuGJKTest.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d002ba07f899d002ba0 /* src/gjk/GuGJKType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKType.h"; path = "../../GeomUtils/src/gjk/GuGJKType.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d002c087f899d002c08 /* src/gjk/GuGJKUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKUtil.h"; path = "../../GeomUtils/src/gjk/GuGJKUtil.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d002c707f899d002c70 /* src/gjk/GuVecBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecBox.h"; path = "../../GeomUtils/src/gjk/GuVecBox.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d002cd87f899d002cd8 /* src/gjk/GuVecCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecCapsule.h"; path = "../../GeomUtils/src/gjk/GuVecCapsule.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d002d407f899d002d40 /* src/gjk/GuVecConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvex.h"; path = "../../GeomUtils/src/gjk/GuVecConvex.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d002da87f899d002da8 /* src/gjk/GuVecConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHull.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d002e107f899d002e10 /* src/gjk/GuVecConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d002e787f899d002e78 /* src/gjk/GuVecPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecPlane.h"; path = "../../GeomUtils/src/gjk/GuVecPlane.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d002ee07f899d002ee0 /* src/gjk/GuVecShrunkBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkBox.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkBox.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d002f487f899d002f48 /* src/gjk/GuVecShrunkConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHull.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d002fb07f899d002fb0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0030187f899d003018 /* src/gjk/GuVecSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecSphere.h"; path = "../../GeomUtils/src/gjk/GuVecSphere.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0030807f899d003080 /* src/gjk/GuVecTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecTriangle.h"; path = "../../GeomUtils/src/gjk/GuVecTriangle.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0030e87f899d0030e8 /* src/intersection/GuIntersectionCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0031507f899d003150 /* src/intersection/GuIntersectionEdgeEdge.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.h"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0031b87f899d0031b8 /* src/intersection/GuIntersectionRay.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRay.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRay.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0032207f899d003220 /* src/intersection/GuIntersectionRayBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0032887f899d003288 /* src/intersection/GuIntersectionRayBoxSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBoxSIMD.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBoxSIMD.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0032f07f899d0032f0 /* src/intersection/GuIntersectionRayCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0033587f899d003358 /* src/intersection/GuIntersectionRayPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayPlane.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayPlane.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0033c07f899d0033c0 /* src/intersection/GuIntersectionRaySphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0034287f899d003428 /* src/intersection/GuIntersectionRayTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayTriangle.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0034907f899d003490 /* src/intersection/GuIntersectionSphereBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0034f87f899d0034f8 /* src/mesh/GuBV32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.h"; path = "../../GeomUtils/src/mesh/GuBV32.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0035607f899d003560 /* src/mesh/GuBV32Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.h"; path = "../../GeomUtils/src/mesh/GuBV32Build.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0035c87f899d0035c8 /* src/mesh/GuBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.h"; path = "../../GeomUtils/src/mesh/GuBV4.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0036307f899d003630 /* src/mesh/GuBV4Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.h"; path = "../../GeomUtils/src/mesh/GuBV4Build.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0036987f899d003698 /* src/mesh/GuBV4Settings.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Settings.h"; path = "../../GeomUtils/src/mesh/GuBV4Settings.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0037007f899d003700 /* 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; };
- FFFD9d0037687f899d003768 /* 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; };
- FFFD9d0037d07f899d0037d0 /* 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; };
- FFFD9d0038387f899d003838 /* 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; };
- FFFD9d0038a07f899d0038a0 /* 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; };
- FFFD9d0039087f899d003908 /* 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; };
- FFFD9d0039707f899d003970 /* 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; };
- FFFD9d0039d87f899d0039d8 /* 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; };
- FFFD9d003a407f899d003a40 /* 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; };
- FFFD9d003aa87f899d003aa8 /* 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; };
- FFFD9d003b107f899d003b10 /* 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; };
- FFFD9d003b787f899d003b78 /* 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; };
- FFFD9d003be07f899d003be0 /* 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; };
- FFFD9d003c487f899d003c48 /* 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; };
- FFFD9d003cb07f899d003cb0 /* 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; };
- FFFD9d003d187f899d003d18 /* 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; };
- FFFD9d003d807f899d003d80 /* 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; };
- FFFD9d003de87f899d003de8 /* 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; };
- FFFD9d003e507f899d003e50 /* 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; };
- FFFD9d003eb87f899d003eb8 /* 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; };
- FFFD9d003f207f899d003f20 /* src/mesh/GuBVConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBVConstants.h"; path = "../../GeomUtils/src/mesh/GuBVConstants.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d003f887f899d003f88 /* src/mesh/GuMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshData.h"; path = "../../GeomUtils/src/mesh/GuMeshData.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d003ff07f899d003ff0 /* src/mesh/GuMidphaseInterface.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseInterface.h"; path = "../../GeomUtils/src/mesh/GuMidphaseInterface.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0040587f899d004058 /* src/mesh/GuRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.h"; path = "../../GeomUtils/src/mesh/GuRTree.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0040c07f899d0040c0 /* src/mesh/GuSweepConvexTri.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepConvexTri.h"; path = "../../GeomUtils/src/mesh/GuSweepConvexTri.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0041287f899d004128 /* src/mesh/GuSweepMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepMesh.h"; path = "../../GeomUtils/src/mesh/GuSweepMesh.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0041907f899d004190 /* src/mesh/GuTriangle32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangle32.h"; path = "../../GeomUtils/src/mesh/GuTriangle32.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0041f87f899d0041f8 /* src/mesh/GuTriangleCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleCache.h"; path = "../../GeomUtils/src/mesh/GuTriangleCache.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0042607f899d004260 /* src/mesh/GuTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.h"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0042c87f899d0042c8 /* src/mesh/GuTriangleMeshBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0043307f899d004330 /* src/mesh/GuTriangleMeshRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0043987f899d004398 /* src/mesh/GuTriangleVertexPointers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleVertexPointers.h"; path = "../../GeomUtils/src/mesh/GuTriangleVertexPointers.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0044007f899d004400 /* src/hf/GuEntityReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuEntityReport.h"; path = "../../GeomUtils/src/hf/GuEntityReport.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0044687f899d004468 /* src/hf/GuHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.h"; path = "../../GeomUtils/src/hf/GuHeightField.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0044d07f899d0044d0 /* src/hf/GuHeightFieldData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldData.h"; path = "../../GeomUtils/src/hf/GuHeightFieldData.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0045387f899d004538 /* src/hf/GuHeightFieldUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.h"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0045a07f899d0045a0 /* src/pcm/GuPCMContactConvexCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.h"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0046087f899d004608 /* src/pcm/GuPCMContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGen.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0046707f899d004670 /* src/pcm/GuPCMContactGenUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenUtil.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGenUtil.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0046d87f899d0046d8 /* src/pcm/GuPCMContactMeshCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactMeshCallback.h"; path = "../../GeomUtils/src/pcm/GuPCMContactMeshCallback.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0047407f899d004740 /* src/pcm/GuPCMShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.h"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0047a87f899d0047a8 /* src/pcm/GuPCMTriangleContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0048107f899d004810 /* src/pcm/GuPersistentContactManifold.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.h"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0048787f899d004878 /* src/ccd/GuCCDSweepConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.h"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0048e07f899d0048e0 /* src/GuBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.cpp"; path = "../../GeomUtils/src/GuBounds.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0049487f899d004948 /* src/GuBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBox.cpp"; path = "../../GeomUtils/src/GuBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0049b07f899d0049b0 /* src/GuCCTSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCCTSweepTests.cpp"; path = "../../GeomUtils/src/GuCCTSweepTests.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d004a187f899d004a18 /* src/GuCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.cpp"; path = "../../GeomUtils/src/GuCapsule.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d004a807f899d004a80 /* src/GuGeometryQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryQuery.cpp"; path = "../../GeomUtils/src/GuGeometryQuery.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d004ae87f899d004ae8 /* src/GuGeometryUnion.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.cpp"; path = "../../GeomUtils/src/GuGeometryUnion.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d004b507f899d004b50 /* src/GuInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.cpp"; path = "../../GeomUtils/src/GuInternal.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d004bb87f899d004bb8 /* src/GuMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.cpp"; path = "../../GeomUtils/src/GuMTD.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d004c207f899d004c20 /* src/GuMeshFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.cpp"; path = "../../GeomUtils/src/GuMeshFactory.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d004c887f899d004c88 /* src/GuMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMetaData.cpp"; path = "../../GeomUtils/src/GuMetaData.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d004cf07f899d004cf0 /* src/GuOverlapTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.cpp"; path = "../../GeomUtils/src/GuOverlapTests.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d004d587f899d004d58 /* src/GuRaycastTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuRaycastTests.cpp"; path = "../../GeomUtils/src/GuRaycastTests.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d004dc07f899d004dc0 /* src/GuSerialize.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.cpp"; path = "../../GeomUtils/src/GuSerialize.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d004e287f899d004e28 /* src/GuSweepMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.cpp"; path = "../../GeomUtils/src/GuSweepMTD.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d004e907f899d004e90 /* src/GuSweepSharedTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.cpp"; path = "../../GeomUtils/src/GuSweepSharedTests.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d004ef87f899d004ef8 /* src/GuSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.cpp"; path = "../../GeomUtils/src/GuSweepTests.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d004f607f899d004f60 /* src/contact/GuContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactBoxBox.cpp"; path = "../../GeomUtils/src/contact/GuContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d004fc87f899d004fc8 /* src/contact/GuContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleBox.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0050307f899d005030 /* src/contact/GuContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0050987f899d005098 /* src/contact/GuContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0051007f899d005100 /* src/contact/GuContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0051687f899d005168 /* src/contact/GuContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0051d07f899d0051d0 /* src/contact/GuContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0052387f899d005238 /* src/contact/GuContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneBox.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0052a07f899d0052a0 /* src/contact/GuContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0053087f899d005308 /* src/contact/GuContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0053707f899d005370 /* src/contact/GuContactPolygonPolygon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.cpp"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0053d87f899d0053d8 /* src/contact/GuContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereBox.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0054407f899d005440 /* src/contact/GuContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0054a87f899d0054a8 /* src/contact/GuContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0055107f899d005510 /* src/contact/GuContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSpherePlane.cpp"; path = "../../GeomUtils/src/contact/GuContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0055787f899d005578 /* src/contact/GuContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereSphere.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0055e07f899d0055e0 /* src/contact/GuFeatureCode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.cpp"; path = "../../GeomUtils/src/contact/GuFeatureCode.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0056487f899d005648 /* src/contact/GuLegacyContactBoxHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactBoxHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactBoxHeightField.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0056b07f899d0056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0057187f899d005718 /* src/contact/GuLegacyContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactConvexHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0057807f899d005780 /* src/contact/GuLegacyContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactSphereHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0057e87f899d0057e8 /* src/common/GuBarycentricCoordinates.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.cpp"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0058507f899d005850 /* src/common/GuSeparatingAxes.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.cpp"; path = "../../GeomUtils/src/common/GuSeparatingAxes.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0058b87f899d0058b8 /* src/convex/GuBigConvexData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.cpp"; path = "../../GeomUtils/src/convex/GuBigConvexData.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0059207f899d005920 /* src/convex/GuConvexHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.cpp"; path = "../../GeomUtils/src/convex/GuConvexHelper.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0059887f899d005988 /* src/convex/GuConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.cpp"; path = "../../GeomUtils/src/convex/GuConvexMesh.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0059f07f899d0059f0 /* src/convex/GuConvexSupportTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.cpp"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d005a587f899d005a58 /* src/convex/GuConvexUtilsInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.cpp"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d005ac07f899d005ac0 /* src/convex/GuHillClimbing.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.cpp"; path = "../../GeomUtils/src/convex/GuHillClimbing.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d005b287f899d005b28 /* src/convex/GuShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.cpp"; path = "../../GeomUtils/src/convex/GuShapeConvex.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d005b907f899d005b90 /* src/distance/GuDistancePointBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d005bf87f899d005bf8 /* src/distance/GuDistancePointTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d005c607f899d005c60 /* src/distance/GuDistanceSegmentBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentBox.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d005cc87f899d005cc8 /* src/distance/GuDistanceSegmentSegment.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegment.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegment.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d005d307f899d005d30 /* src/distance/GuDistanceSegmentTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d005d987f899d005d98 /* src/sweep/GuSweepBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d005e007f899d005e00 /* src/sweep/GuSweepBoxSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d005e687f899d005e68 /* 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; };
- FFFD9d005ed07f899d005ed0 /* 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; };
- FFFD9d005f387f899d005f38 /* src/sweep/GuSweepCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d005fa07f899d005fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0060087f899d006008 /* src/sweep/GuSweepCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0060707f899d006070 /* src/sweep/GuSweepSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0060d87f899d0060d8 /* src/sweep/GuSweepSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0061407f899d006140 /* src/sweep/GuSweepSphereTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0061a87f899d0061a8 /* src/sweep/GuSweepTriangleUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.cpp"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0062107f899d006210 /* src/gjk/GuEPA.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.cpp"; path = "../../GeomUtils/src/gjk/GuEPA.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0062787f899d006278 /* src/gjk/GuGJKSimplex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.cpp"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0062e07f899d0062e0 /* src/gjk/GuGJKTest.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.cpp"; path = "../../GeomUtils/src/gjk/GuGJKTest.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0063487f899d006348 /* src/intersection/GuIntersectionBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionBoxBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionBoxBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0063b07f899d0063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0064187f899d006418 /* src/intersection/GuIntersectionEdgeEdge.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0064807f899d006480 /* src/intersection/GuIntersectionRayBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0064e87f899d0064e8 /* src/intersection/GuIntersectionRayCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0065507f899d006550 /* src/intersection/GuIntersectionRaySphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0065b87f899d0065b8 /* src/intersection/GuIntersectionSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0066207f899d006620 /* src/intersection/GuIntersectionTriangleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionTriangleBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionTriangleBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0066887f899d006688 /* src/mesh/GuBV32.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.cpp"; path = "../../GeomUtils/src/mesh/GuBV32.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0066f07f899d0066f0 /* src/mesh/GuBV32Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV32Build.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0067587f899d006758 /* src/mesh/GuBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.cpp"; path = "../../GeomUtils/src/mesh/GuBV4.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0067c07f899d0067c0 /* src/mesh/GuBV4Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV4Build.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0068287f899d006828 /* 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; };
- FFFD9d0068907f899d006890 /* 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; };
- FFFD9d0068f87f899d0068f8 /* 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; };
- FFFD9d0069607f899d006960 /* 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; };
- FFFD9d0069c87f899d0069c8 /* 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; };
- FFFD9d006a307f899d006a30 /* 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; };
- FFFD9d006a987f899d006a98 /* 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; };
- FFFD9d006b007f899d006b00 /* 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; };
- FFFD9d006b687f899d006b68 /* src/mesh/GuMeshQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshQuery.cpp"; path = "../../GeomUtils/src/mesh/GuMeshQuery.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d006bd07f899d006bd0 /* src/mesh/GuMidphaseBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseBV4.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseBV4.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d006c387f899d006c38 /* src/mesh/GuMidphaseRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseRTree.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseRTree.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d006ca07f899d006ca0 /* src/mesh/GuOverlapTestsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuOverlapTestsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuOverlapTestsMesh.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d006d087f899d006d08 /* src/mesh/GuRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.cpp"; path = "../../GeomUtils/src/mesh/GuRTree.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d006d707f899d006d70 /* src/mesh/GuRTreeQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTreeQueries.cpp"; path = "../../GeomUtils/src/mesh/GuRTreeQueries.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d006dd87f899d006dd8 /* src/mesh/GuSweepsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuSweepsMesh.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d006e407f899d006e40 /* src/mesh/GuTriangleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d006ea87f899d006ea8 /* src/mesh/GuTriangleMeshBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d006f107f899d006f10 /* src/mesh/GuTriangleMeshRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d006f787f899d006f78 /* src/hf/GuHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.cpp"; path = "../../GeomUtils/src/hf/GuHeightField.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d006fe07f899d006fe0 /* src/hf/GuHeightFieldUtil.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.cpp"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0070487f899d007048 /* src/hf/GuOverlapTestsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuOverlapTestsHF.cpp"; path = "../../GeomUtils/src/hf/GuOverlapTestsHF.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0070b07f899d0070b0 /* src/hf/GuSweepsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuSweepsHF.cpp"; path = "../../GeomUtils/src/hf/GuSweepsHF.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0071187f899d007118 /* src/pcm/GuPCMContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0071807f899d007180 /* src/pcm/GuPCMContactBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxConvex.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0071e87f899d0071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0072507f899d007250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0072b87f899d0072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0073207f899d007320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0073887f899d007388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0073f07f899d0073f0 /* src/pcm/GuPCMContactConvexCommon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0074587f899d007458 /* src/pcm/GuPCMContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0074c07f899d0074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0075287f899d007528 /* src/pcm/GuPCMContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0075907f899d007590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenBoxConvex.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0075f87f899d0075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0076607f899d007660 /* src/pcm/GuPCMContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0076c87f899d0076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0077307f899d007730 /* src/pcm/GuPCMContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0077987f899d007798 /* src/pcm/GuPCMContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0078007f899d007800 /* src/pcm/GuPCMContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0078687f899d007868 /* src/pcm/GuPCMContactSphereConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereConvex.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0078d07f899d0078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0079387f899d007938 /* src/pcm/GuPCMContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0079a07f899d0079a0 /* src/pcm/GuPCMContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSpherePlane.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d007a087f899d007a08 /* src/pcm/GuPCMContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereSphere.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d007a707f899d007a70 /* src/pcm/GuPCMShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d007ad87f899d007ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.cpp"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d007b407f899d007b40 /* src/pcm/GuPersistentContactManifold.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.cpp"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d007ba87f899d007ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.cpp"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d007c107f899d007c10 /* src/ccd/GuCCDSweepPrimitives.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepPrimitives.cpp"; path = "../../GeomUtils/src/ccd/GuCCDSweepPrimitives.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD431a02b07fba431a02b0 /* PhysXCommon */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCommon"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFD420110007fba42011000 /* common/PxBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxBase.h"; path = "../../../Include/common/PxBase.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420110687fba42011068 /* common/PxCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCollection.h"; path = "../../../Include/common/PxCollection.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420110d07fba420110d0 /* common/PxCoreUtilityTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCoreUtilityTypes.h"; path = "../../../Include/common/PxCoreUtilityTypes.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420111387fba42011138 /* common/PxMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaData.h"; path = "../../../Include/common/PxMetaData.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420111a07fba420111a0 /* common/PxMetaDataFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaDataFlags.h"; path = "../../../Include/common/PxMetaDataFlags.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420112087fba42011208 /* common/PxPhysXCommonConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysXCommonConfig.h"; path = "../../../Include/common/PxPhysXCommonConfig.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420112707fba42011270 /* common/PxPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysicsInsertionCallback.h"; path = "../../../Include/common/PxPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420112d87fba420112d8 /* common/PxRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxRenderBuffer.h"; path = "../../../Include/common/PxRenderBuffer.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420113407fba42011340 /* common/PxSerialFramework.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerialFramework.h"; path = "../../../Include/common/PxSerialFramework.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420113a87fba420113a8 /* common/PxSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerializer.h"; path = "../../../Include/common/PxSerializer.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420114107fba42011410 /* common/PxStringTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxStringTable.h"; path = "../../../Include/common/PxStringTable.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420114787fba42011478 /* common/PxTolerancesScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTolerancesScale.h"; path = "../../../Include/common/PxTolerancesScale.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420114e07fba420114e0 /* common/PxTypeInfo.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTypeInfo.h"; path = "../../../Include/common/PxTypeInfo.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420115487fba42011548 /* geometry/PxBoxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxBoxGeometry.h"; path = "../../../Include/geometry/PxBoxGeometry.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420115b07fba420115b0 /* geometry/PxCapsuleGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxCapsuleGeometry.h"; path = "../../../Include/geometry/PxCapsuleGeometry.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420116187fba42011618 /* geometry/PxConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMesh.h"; path = "../../../Include/geometry/PxConvexMesh.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420116807fba42011680 /* geometry/PxConvexMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMeshGeometry.h"; path = "../../../Include/geometry/PxConvexMeshGeometry.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420116e87fba420116e8 /* geometry/PxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometry.h"; path = "../../../Include/geometry/PxGeometry.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420117507fba42011750 /* geometry/PxGeometryHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryHelpers.h"; path = "../../../Include/geometry/PxGeometryHelpers.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420117b87fba420117b8 /* geometry/PxGeometryQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryQuery.h"; path = "../../../Include/geometry/PxGeometryQuery.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420118207fba42011820 /* geometry/PxHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightField.h"; path = "../../../Include/geometry/PxHeightField.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420118887fba42011888 /* geometry/PxHeightFieldDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldDesc.h"; path = "../../../Include/geometry/PxHeightFieldDesc.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420118f07fba420118f0 /* geometry/PxHeightFieldFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldFlag.h"; path = "../../../Include/geometry/PxHeightFieldFlag.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420119587fba42011958 /* geometry/PxHeightFieldGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldGeometry.h"; path = "../../../Include/geometry/PxHeightFieldGeometry.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420119c07fba420119c0 /* geometry/PxHeightFieldSample.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldSample.h"; path = "../../../Include/geometry/PxHeightFieldSample.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42011a287fba42011a28 /* geometry/PxMeshQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshQuery.h"; path = "../../../Include/geometry/PxMeshQuery.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42011a907fba42011a90 /* geometry/PxMeshScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshScale.h"; path = "../../../Include/geometry/PxMeshScale.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42011af87fba42011af8 /* geometry/PxPlaneGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxPlaneGeometry.h"; path = "../../../Include/geometry/PxPlaneGeometry.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42011b607fba42011b60 /* geometry/PxSimpleTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSimpleTriangleMesh.h"; path = "../../../Include/geometry/PxSimpleTriangleMesh.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42011bc87fba42011bc8 /* geometry/PxSphereGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSphereGeometry.h"; path = "../../../Include/geometry/PxSphereGeometry.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42011c307fba42011c30 /* geometry/PxTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangle.h"; path = "../../../Include/geometry/PxTriangle.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42011c987fba42011c98 /* geometry/PxTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMesh.h"; path = "../../../Include/geometry/PxTriangleMesh.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42011d007fba42011d00 /* geometry/PxTriangleMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMeshGeometry.h"; path = "../../../Include/geometry/PxTriangleMeshGeometry.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429a48007fba429a4800 /* src/CmBoxPruning.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.cpp"; path = "../../Common/src/CmBoxPruning.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD429a48687fba429a4868 /* src/CmCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.cpp"; path = "../../Common/src/CmCollection.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD429a48d07fba429a48d0 /* src/CmMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMathUtils.cpp"; path = "../../Common/src/CmMathUtils.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD429a49387fba429a4938 /* src/CmPtrTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.cpp"; path = "../../Common/src/CmPtrTable.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD429a49a07fba429a49a0 /* src/CmRadixSort.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.cpp"; path = "../../Common/src/CmRadixSort.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD429a4a087fba429a4a08 /* src/CmRadixSortBuffered.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.cpp"; path = "../../Common/src/CmRadixSortBuffered.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD429a4a707fba429a4a70 /* src/CmRenderOutput.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.cpp"; path = "../../Common/src/CmRenderOutput.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD429a4ad87fba429a4ad8 /* src/CmVisualization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.cpp"; path = "../../Common/src/CmVisualization.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD429a4b407fba429a4b40 /* src/CmBitMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBitMap.h"; path = "../../Common/src/CmBitMap.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429a4ba87fba429a4ba8 /* src/CmBoxPruning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.h"; path = "../../Common/src/CmBoxPruning.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429a4c107fba429a4c10 /* src/CmCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.h"; path = "../../Common/src/CmCollection.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429a4c787fba429a4c78 /* src/CmConeLimitHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmConeLimitHelper.h"; path = "../../Common/src/CmConeLimitHelper.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429a4ce07fba429a4ce0 /* src/CmFlushPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmFlushPool.h"; path = "../../Common/src/CmFlushPool.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429a4d487fba429a4d48 /* src/CmIDPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIDPool.h"; path = "../../Common/src/CmIDPool.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429a4db07fba429a4db0 /* src/CmIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIO.h"; path = "../../Common/src/CmIO.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429a4e187fba429a4e18 /* src/CmMatrix34.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMatrix34.h"; path = "../../Common/src/CmMatrix34.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429a4e807fba429a4e80 /* src/CmPhysXCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPhysXCommon.h"; path = "../../Common/src/CmPhysXCommon.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429a4ee87fba429a4ee8 /* src/CmPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPool.h"; path = "../../Common/src/CmPool.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429a4f507fba429a4f50 /* src/CmPreallocatingPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPreallocatingPool.h"; path = "../../Common/src/CmPreallocatingPool.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429a4fb87fba429a4fb8 /* src/CmPriorityQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPriorityQueue.h"; path = "../../Common/src/CmPriorityQueue.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429a50207fba429a5020 /* src/CmPtrTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.h"; path = "../../Common/src/CmPtrTable.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429a50887fba429a5088 /* src/CmQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmQueue.h"; path = "../../Common/src/CmQueue.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429a50f07fba429a50f0 /* src/CmRadixSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.h"; path = "../../Common/src/CmRadixSort.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429a51587fba429a5158 /* src/CmRadixSortBuffered.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.h"; path = "../../Common/src/CmRadixSortBuffered.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429a51c07fba429a51c0 /* src/CmRefCountable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRefCountable.h"; path = "../../Common/src/CmRefCountable.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429a52287fba429a5228 /* src/CmRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderBuffer.h"; path = "../../Common/src/CmRenderBuffer.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429a52907fba429a5290 /* src/CmRenderOutput.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.h"; path = "../../Common/src/CmRenderOutput.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429a52f87fba429a52f8 /* src/CmScaling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmScaling.h"; path = "../../Common/src/CmScaling.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429a53607fba429a5360 /* src/CmSpatialVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmSpatialVector.h"; path = "../../Common/src/CmSpatialVector.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429a53c87fba429a53c8 /* src/CmTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTask.h"; path = "../../Common/src/CmTask.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429a54307fba429a5430 /* src/CmTaskPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTaskPool.h"; path = "../../Common/src/CmTaskPool.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429a54987fba429a5498 /* src/CmTmpMem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTmpMem.h"; path = "../../Common/src/CmTmpMem.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429a55007fba429a5500 /* src/CmTransformUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTransformUtils.h"; path = "../../Common/src/CmTransformUtils.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429a55687fba429a5568 /* src/CmUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmUtils.h"; path = "../../Common/src/CmUtils.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429a55d07fba429a55d0 /* src/CmVisualization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.h"; path = "../../Common/src/CmVisualization.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420040007fba42004000 /* headers/GuAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuAxes.h"; path = "../../GeomUtils/headers/GuAxes.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420040687fba42004068 /* headers/GuBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuBox.h"; path = "../../GeomUtils/headers/GuBox.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420040d07fba420040d0 /* headers/GuDistanceSegmentBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentBox.h"; path = "../../GeomUtils/headers/GuDistanceSegmentBox.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420041387fba42004138 /* headers/GuDistanceSegmentSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentSegment.h"; path = "../../GeomUtils/headers/GuDistanceSegmentSegment.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420041a07fba420041a0 /* headers/GuIntersectionBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionBoxBox.h"; path = "../../GeomUtils/headers/GuIntersectionBoxBox.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420042087fba42004208 /* headers/GuIntersectionTriangleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionTriangleBox.h"; path = "../../GeomUtils/headers/GuIntersectionTriangleBox.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420042707fba42004270 /* headers/GuRaycastTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuRaycastTests.h"; path = "../../GeomUtils/headers/GuRaycastTests.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420042d87fba420042d8 /* headers/GuSIMDHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSIMDHelpers.h"; path = "../../GeomUtils/headers/GuSIMDHelpers.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420043407fba42004340 /* headers/GuSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSegment.h"; path = "../../GeomUtils/headers/GuSegment.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420043a87fba420043a8 /* ../../Include/GeomUtils */= { isa = PBXFileReference; fileEncoding = 4; name = "../../Include/GeomUtils"; path = "../../../Include/GeomUtils"; sourceTree = SOURCE_ROOT; };
+ FFFD420044107fba42004410 /* src/GuBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.h"; path = "../../GeomUtils/src/GuBounds.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420044787fba42004478 /* src/GuCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.h"; path = "../../GeomUtils/src/GuCapsule.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420044e07fba420044e0 /* src/GuCenterExtents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCenterExtents.h"; path = "../../GeomUtils/src/GuCenterExtents.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420045487fba42004548 /* src/GuGeometryUnion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.h"; path = "../../GeomUtils/src/GuGeometryUnion.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420045b07fba420045b0 /* src/GuInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.h"; path = "../../GeomUtils/src/GuInternal.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420046187fba42004618 /* src/GuMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.h"; path = "../../GeomUtils/src/GuMTD.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420046807fba42004680 /* src/GuMeshFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.h"; path = "../../GeomUtils/src/GuMeshFactory.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420046e87fba420046e8 /* src/GuOverlapTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.h"; path = "../../GeomUtils/src/GuOverlapTests.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420047507fba42004750 /* src/GuSerialize.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.h"; path = "../../GeomUtils/src/GuSerialize.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420047b87fba420047b8 /* src/GuSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSphere.h"; path = "../../GeomUtils/src/GuSphere.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420048207fba42004820 /* src/GuSweepMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.h"; path = "../../GeomUtils/src/GuSweepMTD.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420048887fba42004888 /* src/GuSweepSharedTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.h"; path = "../../GeomUtils/src/GuSweepSharedTests.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420048f07fba420048f0 /* src/GuSweepTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.h"; path = "../../GeomUtils/src/GuSweepTests.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420049587fba42004958 /* src/contact/GuContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactMethodImpl.h"; path = "../../GeomUtils/src/contact/GuContactMethodImpl.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420049c07fba420049c0 /* src/contact/GuContactPolygonPolygon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.h"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42004a287fba42004a28 /* src/contact/GuFeatureCode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.h"; path = "../../GeomUtils/src/contact/GuFeatureCode.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42004a907fba42004a90 /* src/contact/GuLegacyTraceLineCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyTraceLineCallback.h"; path = "../../GeomUtils/src/contact/GuLegacyTraceLineCallback.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42004af87fba42004af8 /* src/common/GuBarycentricCoordinates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.h"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42004b607fba42004b60 /* src/common/GuBoxConversion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBoxConversion.h"; path = "../../GeomUtils/src/common/GuBoxConversion.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42004bc87fba42004bc8 /* src/common/GuEdgeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeCache.h"; path = "../../GeomUtils/src/common/GuEdgeCache.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42004c307fba42004c30 /* src/common/GuEdgeListData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeListData.h"; path = "../../GeomUtils/src/common/GuEdgeListData.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42004c987fba42004c98 /* src/common/GuSeparatingAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.h"; path = "../../GeomUtils/src/common/GuSeparatingAxes.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42004d007fba42004d00 /* src/convex/GuBigConvexData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.h"; path = "../../GeomUtils/src/convex/GuBigConvexData.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42004d687fba42004d68 /* src/convex/GuBigConvexData2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData2.h"; path = "../../GeomUtils/src/convex/GuBigConvexData2.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42004dd07fba42004dd0 /* src/convex/GuConvexEdgeFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexEdgeFlags.h"; path = "../../GeomUtils/src/convex/GuConvexEdgeFlags.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42004e387fba42004e38 /* src/convex/GuConvexHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.h"; path = "../../GeomUtils/src/convex/GuConvexHelper.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42004ea07fba42004ea0 /* src/convex/GuConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.h"; path = "../../GeomUtils/src/convex/GuConvexMesh.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42004f087fba42004f08 /* src/convex/GuConvexMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMeshData.h"; path = "../../GeomUtils/src/convex/GuConvexMeshData.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42004f707fba42004f70 /* src/convex/GuConvexSupportTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.h"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42004fd87fba42004fd8 /* src/convex/GuConvexUtilsInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.h"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420050407fba42005040 /* src/convex/GuCubeIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuCubeIndex.h"; path = "../../GeomUtils/src/convex/GuCubeIndex.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420050a87fba420050a8 /* src/convex/GuHillClimbing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.h"; path = "../../GeomUtils/src/convex/GuHillClimbing.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420051107fba42005110 /* src/convex/GuShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.h"; path = "../../GeomUtils/src/convex/GuShapeConvex.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420051787fba42005178 /* src/distance/GuDistancePointBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.h"; path = "../../GeomUtils/src/distance/GuDistancePointBox.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420051e07fba420051e0 /* src/distance/GuDistancePointSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointSegment.h"; path = "../../GeomUtils/src/distance/GuDistancePointSegment.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420052487fba42005248 /* src/distance/GuDistancePointTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420052b07fba420052b0 /* src/distance/GuDistancePointTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangleSIMD.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420053187fba42005318 /* src/distance/GuDistanceSegmentSegmentSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegmentSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegmentSIMD.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420053807fba42005380 /* src/distance/GuDistanceSegmentTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420053e87fba420053e8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangleSIMD.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420054507fba42005450 /* src/sweep/GuSweepBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420054b87fba420054b8 /* src/sweep/GuSweepBoxSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420055207fba42005520 /* 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; };
+ FFFD420055887fba42005588 /* 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; };
+ FFFD420055f07fba420055f0 /* src/sweep/GuSweepCapsuleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420056587fba42005658 /* src/sweep/GuSweepCapsuleCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420056c07fba420056c0 /* src/sweep/GuSweepCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420057287fba42005728 /* src/sweep/GuSweepSphereCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420057907fba42005790 /* src/sweep/GuSweepSphereSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420057f87fba420057f8 /* src/sweep/GuSweepSphereTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420058607fba42005860 /* src/sweep/GuSweepTriangleUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.h"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420058c87fba420058c8 /* src/gjk/GuEPA.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.h"; path = "../../GeomUtils/src/gjk/GuEPA.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420059307fba42005930 /* src/gjk/GuEPAFacet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPAFacet.h"; path = "../../GeomUtils/src/gjk/GuEPAFacet.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420059987fba42005998 /* src/gjk/GuGJK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJK.h"; path = "../../GeomUtils/src/gjk/GuGJK.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42005a007fba42005a00 /* src/gjk/GuGJKPenetration.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKPenetration.h"; path = "../../GeomUtils/src/gjk/GuGJKPenetration.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42005a687fba42005a68 /* src/gjk/GuGJKRaycast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKRaycast.h"; path = "../../GeomUtils/src/gjk/GuGJKRaycast.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42005ad07fba42005ad0 /* src/gjk/GuGJKSimplex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.h"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42005b387fba42005b38 /* src/gjk/GuGJKTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.h"; path = "../../GeomUtils/src/gjk/GuGJKTest.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42005ba07fba42005ba0 /* src/gjk/GuGJKType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKType.h"; path = "../../GeomUtils/src/gjk/GuGJKType.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42005c087fba42005c08 /* src/gjk/GuGJKUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKUtil.h"; path = "../../GeomUtils/src/gjk/GuGJKUtil.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42005c707fba42005c70 /* src/gjk/GuVecBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecBox.h"; path = "../../GeomUtils/src/gjk/GuVecBox.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42005cd87fba42005cd8 /* src/gjk/GuVecCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecCapsule.h"; path = "../../GeomUtils/src/gjk/GuVecCapsule.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42005d407fba42005d40 /* src/gjk/GuVecConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvex.h"; path = "../../GeomUtils/src/gjk/GuVecConvex.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42005da87fba42005da8 /* src/gjk/GuVecConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHull.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42005e107fba42005e10 /* src/gjk/GuVecConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42005e787fba42005e78 /* src/gjk/GuVecPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecPlane.h"; path = "../../GeomUtils/src/gjk/GuVecPlane.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42005ee07fba42005ee0 /* src/gjk/GuVecShrunkBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkBox.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkBox.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42005f487fba42005f48 /* src/gjk/GuVecShrunkConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHull.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42005fb07fba42005fb0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420060187fba42006018 /* src/gjk/GuVecSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecSphere.h"; path = "../../GeomUtils/src/gjk/GuVecSphere.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420060807fba42006080 /* src/gjk/GuVecTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecTriangle.h"; path = "../../GeomUtils/src/gjk/GuVecTriangle.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420060e87fba420060e8 /* src/intersection/GuIntersectionCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420061507fba42006150 /* src/intersection/GuIntersectionEdgeEdge.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.h"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420061b87fba420061b8 /* src/intersection/GuIntersectionRay.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRay.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRay.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420062207fba42006220 /* src/intersection/GuIntersectionRayBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420062887fba42006288 /* src/intersection/GuIntersectionRayBoxSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBoxSIMD.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBoxSIMD.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420062f07fba420062f0 /* src/intersection/GuIntersectionRayCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420063587fba42006358 /* src/intersection/GuIntersectionRayPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayPlane.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayPlane.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420063c07fba420063c0 /* src/intersection/GuIntersectionRaySphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420064287fba42006428 /* src/intersection/GuIntersectionRayTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayTriangle.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420064907fba42006490 /* src/intersection/GuIntersectionSphereBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420064f87fba420064f8 /* src/mesh/GuBV32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.h"; path = "../../GeomUtils/src/mesh/GuBV32.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420065607fba42006560 /* src/mesh/GuBV32Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.h"; path = "../../GeomUtils/src/mesh/GuBV32Build.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420065c87fba420065c8 /* src/mesh/GuBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.h"; path = "../../GeomUtils/src/mesh/GuBV4.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420066307fba42006630 /* src/mesh/GuBV4Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.h"; path = "../../GeomUtils/src/mesh/GuBV4Build.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420066987fba42006698 /* src/mesh/GuBV4Settings.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Settings.h"; path = "../../GeomUtils/src/mesh/GuBV4Settings.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420067007fba42006700 /* 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; };
+ FFFD420067687fba42006768 /* 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; };
+ FFFD420067d07fba420067d0 /* 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; };
+ FFFD420068387fba42006838 /* 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; };
+ FFFD420068a07fba420068a0 /* 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; };
+ FFFD420069087fba42006908 /* 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; };
+ FFFD420069707fba42006970 /* 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; };
+ FFFD420069d87fba420069d8 /* 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; };
+ FFFD42006a407fba42006a40 /* 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; };
+ FFFD42006aa87fba42006aa8 /* 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; };
+ FFFD42006b107fba42006b10 /* 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; };
+ FFFD42006b787fba42006b78 /* 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; };
+ FFFD42006be07fba42006be0 /* 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; };
+ FFFD42006c487fba42006c48 /* 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; };
+ FFFD42006cb07fba42006cb0 /* 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; };
+ FFFD42006d187fba42006d18 /* 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; };
+ FFFD42006d807fba42006d80 /* 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; };
+ FFFD42006de87fba42006de8 /* 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; };
+ FFFD42006e507fba42006e50 /* 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; };
+ FFFD42006eb87fba42006eb8 /* 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; };
+ FFFD42006f207fba42006f20 /* src/mesh/GuBVConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBVConstants.h"; path = "../../GeomUtils/src/mesh/GuBVConstants.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42006f887fba42006f88 /* src/mesh/GuMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshData.h"; path = "../../GeomUtils/src/mesh/GuMeshData.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42006ff07fba42006ff0 /* src/mesh/GuMidphaseInterface.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseInterface.h"; path = "../../GeomUtils/src/mesh/GuMidphaseInterface.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420070587fba42007058 /* src/mesh/GuRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.h"; path = "../../GeomUtils/src/mesh/GuRTree.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420070c07fba420070c0 /* src/mesh/GuSweepConvexTri.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepConvexTri.h"; path = "../../GeomUtils/src/mesh/GuSweepConvexTri.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420071287fba42007128 /* src/mesh/GuSweepMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepMesh.h"; path = "../../GeomUtils/src/mesh/GuSweepMesh.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420071907fba42007190 /* src/mesh/GuTriangle32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangle32.h"; path = "../../GeomUtils/src/mesh/GuTriangle32.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420071f87fba420071f8 /* src/mesh/GuTriangleCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleCache.h"; path = "../../GeomUtils/src/mesh/GuTriangleCache.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420072607fba42007260 /* src/mesh/GuTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.h"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420072c87fba420072c8 /* src/mesh/GuTriangleMeshBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420073307fba42007330 /* src/mesh/GuTriangleMeshRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420073987fba42007398 /* src/mesh/GuTriangleVertexPointers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleVertexPointers.h"; path = "../../GeomUtils/src/mesh/GuTriangleVertexPointers.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420074007fba42007400 /* src/hf/GuEntityReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuEntityReport.h"; path = "../../GeomUtils/src/hf/GuEntityReport.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420074687fba42007468 /* src/hf/GuHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.h"; path = "../../GeomUtils/src/hf/GuHeightField.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420074d07fba420074d0 /* src/hf/GuHeightFieldData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldData.h"; path = "../../GeomUtils/src/hf/GuHeightFieldData.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420075387fba42007538 /* src/hf/GuHeightFieldUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.h"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420075a07fba420075a0 /* src/pcm/GuPCMContactConvexCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.h"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420076087fba42007608 /* src/pcm/GuPCMContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGen.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420076707fba42007670 /* src/pcm/GuPCMContactGenUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenUtil.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGenUtil.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420076d87fba420076d8 /* src/pcm/GuPCMContactMeshCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactMeshCallback.h"; path = "../../GeomUtils/src/pcm/GuPCMContactMeshCallback.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420077407fba42007740 /* src/pcm/GuPCMShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.h"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420077a87fba420077a8 /* src/pcm/GuPCMTriangleContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420078107fba42007810 /* src/pcm/GuPersistentContactManifold.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.h"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420078787fba42007878 /* src/ccd/GuCCDSweepConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.h"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.h"; sourceTree = SOURCE_ROOT; };
+ FFFD420078e07fba420078e0 /* src/GuBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.cpp"; path = "../../GeomUtils/src/GuBounds.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD420079487fba42007948 /* src/GuBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBox.cpp"; path = "../../GeomUtils/src/GuBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD420079b07fba420079b0 /* src/GuCCTSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCCTSweepTests.cpp"; path = "../../GeomUtils/src/GuCCTSweepTests.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD42007a187fba42007a18 /* src/GuCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.cpp"; path = "../../GeomUtils/src/GuCapsule.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD42007a807fba42007a80 /* src/GuGeometryQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryQuery.cpp"; path = "../../GeomUtils/src/GuGeometryQuery.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD42007ae87fba42007ae8 /* src/GuGeometryUnion.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.cpp"; path = "../../GeomUtils/src/GuGeometryUnion.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD42007b507fba42007b50 /* src/GuInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.cpp"; path = "../../GeomUtils/src/GuInternal.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD42007bb87fba42007bb8 /* src/GuMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.cpp"; path = "../../GeomUtils/src/GuMTD.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD42007c207fba42007c20 /* src/GuMeshFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.cpp"; path = "../../GeomUtils/src/GuMeshFactory.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD42007c887fba42007c88 /* src/GuMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMetaData.cpp"; path = "../../GeomUtils/src/GuMetaData.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD42007cf07fba42007cf0 /* src/GuOverlapTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.cpp"; path = "../../GeomUtils/src/GuOverlapTests.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD42007d587fba42007d58 /* src/GuRaycastTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuRaycastTests.cpp"; path = "../../GeomUtils/src/GuRaycastTests.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD42007dc07fba42007dc0 /* src/GuSerialize.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.cpp"; path = "../../GeomUtils/src/GuSerialize.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD42007e287fba42007e28 /* src/GuSweepMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.cpp"; path = "../../GeomUtils/src/GuSweepMTD.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD42007e907fba42007e90 /* src/GuSweepSharedTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.cpp"; path = "../../GeomUtils/src/GuSweepSharedTests.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD42007ef87fba42007ef8 /* src/GuSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.cpp"; path = "../../GeomUtils/src/GuSweepTests.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD42007f607fba42007f60 /* src/contact/GuContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactBoxBox.cpp"; path = "../../GeomUtils/src/contact/GuContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD42007fc87fba42007fc8 /* src/contact/GuContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleBox.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD420080307fba42008030 /* src/contact/GuContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD420080987fba42008098 /* src/contact/GuContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD420081007fba42008100 /* src/contact/GuContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD420081687fba42008168 /* src/contact/GuContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD420081d07fba420081d0 /* src/contact/GuContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD420082387fba42008238 /* src/contact/GuContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneBox.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD420082a07fba420082a0 /* src/contact/GuContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD420083087fba42008308 /* src/contact/GuContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD420083707fba42008370 /* src/contact/GuContactPolygonPolygon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.cpp"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD420083d87fba420083d8 /* src/contact/GuContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereBox.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD420084407fba42008440 /* src/contact/GuContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD420084a87fba420084a8 /* src/contact/GuContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD420085107fba42008510 /* src/contact/GuContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSpherePlane.cpp"; path = "../../GeomUtils/src/contact/GuContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD420085787fba42008578 /* src/contact/GuContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereSphere.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD420085e07fba420085e0 /* src/contact/GuFeatureCode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.cpp"; path = "../../GeomUtils/src/contact/GuFeatureCode.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD420086487fba42008648 /* src/contact/GuLegacyContactBoxHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactBoxHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactBoxHeightField.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD420086b07fba420086b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD420087187fba42008718 /* src/contact/GuLegacyContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactConvexHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD420087807fba42008780 /* src/contact/GuLegacyContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactSphereHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD420087e87fba420087e8 /* src/common/GuBarycentricCoordinates.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.cpp"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD420088507fba42008850 /* src/common/GuSeparatingAxes.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.cpp"; path = "../../GeomUtils/src/common/GuSeparatingAxes.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD420088b87fba420088b8 /* src/convex/GuBigConvexData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.cpp"; path = "../../GeomUtils/src/convex/GuBigConvexData.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD420089207fba42008920 /* src/convex/GuConvexHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.cpp"; path = "../../GeomUtils/src/convex/GuConvexHelper.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD420089887fba42008988 /* src/convex/GuConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.cpp"; path = "../../GeomUtils/src/convex/GuConvexMesh.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD420089f07fba420089f0 /* src/convex/GuConvexSupportTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.cpp"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD42008a587fba42008a58 /* src/convex/GuConvexUtilsInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.cpp"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD42008ac07fba42008ac0 /* src/convex/GuHillClimbing.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.cpp"; path = "../../GeomUtils/src/convex/GuHillClimbing.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD42008b287fba42008b28 /* src/convex/GuShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.cpp"; path = "../../GeomUtils/src/convex/GuShapeConvex.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD42008b907fba42008b90 /* src/distance/GuDistancePointBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD42008bf87fba42008bf8 /* src/distance/GuDistancePointTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD42008c607fba42008c60 /* src/distance/GuDistanceSegmentBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentBox.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD42008cc87fba42008cc8 /* src/distance/GuDistanceSegmentSegment.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegment.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegment.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD42008d307fba42008d30 /* src/distance/GuDistanceSegmentTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD42008d987fba42008d98 /* src/sweep/GuSweepBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD42008e007fba42008e00 /* src/sweep/GuSweepBoxSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD42008e687fba42008e68 /* 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; };
+ FFFD42008ed07fba42008ed0 /* 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; };
+ FFFD42008f387fba42008f38 /* src/sweep/GuSweepCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD42008fa07fba42008fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD420090087fba42009008 /* src/sweep/GuSweepCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD420090707fba42009070 /* src/sweep/GuSweepSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD420090d87fba420090d8 /* src/sweep/GuSweepSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD420091407fba42009140 /* src/sweep/GuSweepSphereTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD420091a87fba420091a8 /* src/sweep/GuSweepTriangleUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.cpp"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD420092107fba42009210 /* src/gjk/GuEPA.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.cpp"; path = "../../GeomUtils/src/gjk/GuEPA.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD420092787fba42009278 /* src/gjk/GuGJKSimplex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.cpp"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD420092e07fba420092e0 /* src/gjk/GuGJKTest.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.cpp"; path = "../../GeomUtils/src/gjk/GuGJKTest.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD420093487fba42009348 /* src/intersection/GuIntersectionBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionBoxBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionBoxBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD420093b07fba420093b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD420094187fba42009418 /* src/intersection/GuIntersectionEdgeEdge.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD420094807fba42009480 /* src/intersection/GuIntersectionRayBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD420094e87fba420094e8 /* src/intersection/GuIntersectionRayCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD420095507fba42009550 /* src/intersection/GuIntersectionRaySphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD420095b87fba420095b8 /* src/intersection/GuIntersectionSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD420096207fba42009620 /* src/intersection/GuIntersectionTriangleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionTriangleBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionTriangleBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD420096887fba42009688 /* src/mesh/GuBV32.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.cpp"; path = "../../GeomUtils/src/mesh/GuBV32.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD420096f07fba420096f0 /* src/mesh/GuBV32Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV32Build.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD420097587fba42009758 /* src/mesh/GuBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.cpp"; path = "../../GeomUtils/src/mesh/GuBV4.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD420097c07fba420097c0 /* src/mesh/GuBV4Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV4Build.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD420098287fba42009828 /* 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; };
+ FFFD420098907fba42009890 /* 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; };
+ FFFD420098f87fba420098f8 /* 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; };
+ FFFD420099607fba42009960 /* 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; };
+ FFFD420099c87fba420099c8 /* 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; };
+ FFFD42009a307fba42009a30 /* 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; };
+ FFFD42009a987fba42009a98 /* 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; };
+ FFFD42009b007fba42009b00 /* 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; };
+ FFFD42009b687fba42009b68 /* src/mesh/GuMeshQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshQuery.cpp"; path = "../../GeomUtils/src/mesh/GuMeshQuery.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD42009bd07fba42009bd0 /* src/mesh/GuMidphaseBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseBV4.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseBV4.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD42009c387fba42009c38 /* src/mesh/GuMidphaseRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseRTree.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseRTree.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD42009ca07fba42009ca0 /* src/mesh/GuOverlapTestsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuOverlapTestsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuOverlapTestsMesh.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD42009d087fba42009d08 /* src/mesh/GuRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.cpp"; path = "../../GeomUtils/src/mesh/GuRTree.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD42009d707fba42009d70 /* src/mesh/GuRTreeQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTreeQueries.cpp"; path = "../../GeomUtils/src/mesh/GuRTreeQueries.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD42009dd87fba42009dd8 /* src/mesh/GuSweepsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuSweepsMesh.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD42009e407fba42009e40 /* src/mesh/GuTriangleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD42009ea87fba42009ea8 /* src/mesh/GuTriangleMeshBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD42009f107fba42009f10 /* src/mesh/GuTriangleMeshRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD42009f787fba42009f78 /* src/hf/GuHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.cpp"; path = "../../GeomUtils/src/hf/GuHeightField.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD42009fe07fba42009fe0 /* src/hf/GuHeightFieldUtil.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.cpp"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4200a0487fba4200a048 /* src/hf/GuOverlapTestsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuOverlapTestsHF.cpp"; path = "../../GeomUtils/src/hf/GuOverlapTestsHF.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4200a0b07fba4200a0b0 /* src/hf/GuSweepsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuSweepsHF.cpp"; path = "../../GeomUtils/src/hf/GuSweepsHF.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4200a1187fba4200a118 /* src/pcm/GuPCMContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4200a1807fba4200a180 /* src/pcm/GuPCMContactBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxConvex.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4200a1e87fba4200a1e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4200a2507fba4200a250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4200a2b87fba4200a2b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4200a3207fba4200a320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4200a3887fba4200a388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4200a3f07fba4200a3f0 /* src/pcm/GuPCMContactConvexCommon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4200a4587fba4200a458 /* src/pcm/GuPCMContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4200a4c07fba4200a4c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4200a5287fba4200a528 /* src/pcm/GuPCMContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4200a5907fba4200a590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenBoxConvex.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4200a5f87fba4200a5f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4200a6607fba4200a660 /* src/pcm/GuPCMContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4200a6c87fba4200a6c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4200a7307fba4200a730 /* src/pcm/GuPCMContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4200a7987fba4200a798 /* src/pcm/GuPCMContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4200a8007fba4200a800 /* src/pcm/GuPCMContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4200a8687fba4200a868 /* src/pcm/GuPCMContactSphereConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereConvex.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4200a8d07fba4200a8d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4200a9387fba4200a938 /* src/pcm/GuPCMContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4200a9a07fba4200a9a0 /* src/pcm/GuPCMContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSpherePlane.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4200aa087fba4200aa08 /* src/pcm/GuPCMContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereSphere.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4200aa707fba4200aa70 /* src/pcm/GuPCMShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4200aad87fba4200aad8 /* src/pcm/GuPCMTriangleContactGen.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.cpp"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4200ab407fba4200ab40 /* src/pcm/GuPersistentContactManifold.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.cpp"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4200aba87fba4200aba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.cpp"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4200ac107fba4200ac10 /* 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 */
- FFF29c88a7507f899c88a750 /* Resources */ = {
+ FFF2431a02b07fba431a02b0 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFF9d0013a87f899d0013a8,
+ FFFF420043a87fba420043a8,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFC9c88a7507f899c88a750 /* Frameworks */ = {
+ FFFC431a02b07fba431a02b0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -1852,145 +1852,145 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF89c88a7507f899c88a750 /* Sources */ = {
+ FFF8431a02b07fba431a02b0 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFF9c1a66007f899c1a6600,
- FFFF9c1a66687f899c1a6668,
- FFFF9c1a66d07f899c1a66d0,
- FFFF9c1a67387f899c1a6738,
- FFFF9c1a67a07f899c1a67a0,
- FFFF9c1a68087f899c1a6808,
- FFFF9c1a68707f899c1a6870,
- FFFF9c1a68d87f899c1a68d8,
- FFFF9d0048e07f899d0048e0,
- FFFF9d0049487f899d004948,
- FFFF9d0049b07f899d0049b0,
- FFFF9d004a187f899d004a18,
- FFFF9d004a807f899d004a80,
- FFFF9d004ae87f899d004ae8,
- FFFF9d004b507f899d004b50,
- FFFF9d004bb87f899d004bb8,
- FFFF9d004c207f899d004c20,
- FFFF9d004c887f899d004c88,
- FFFF9d004cf07f899d004cf0,
- FFFF9d004d587f899d004d58,
- FFFF9d004dc07f899d004dc0,
- FFFF9d004e287f899d004e28,
- FFFF9d004e907f899d004e90,
- FFFF9d004ef87f899d004ef8,
- FFFF9d004f607f899d004f60,
- FFFF9d004fc87f899d004fc8,
- FFFF9d0050307f899d005030,
- FFFF9d0050987f899d005098,
- FFFF9d0051007f899d005100,
- FFFF9d0051687f899d005168,
- FFFF9d0051d07f899d0051d0,
- FFFF9d0052387f899d005238,
- FFFF9d0052a07f899d0052a0,
- FFFF9d0053087f899d005308,
- FFFF9d0053707f899d005370,
- FFFF9d0053d87f899d0053d8,
- FFFF9d0054407f899d005440,
- FFFF9d0054a87f899d0054a8,
- FFFF9d0055107f899d005510,
- FFFF9d0055787f899d005578,
- FFFF9d0055e07f899d0055e0,
- FFFF9d0056487f899d005648,
- FFFF9d0056b07f899d0056b0,
- FFFF9d0057187f899d005718,
- FFFF9d0057807f899d005780,
- FFFF9d0057e87f899d0057e8,
- FFFF9d0058507f899d005850,
- FFFF9d0058b87f899d0058b8,
- FFFF9d0059207f899d005920,
- FFFF9d0059887f899d005988,
- FFFF9d0059f07f899d0059f0,
- FFFF9d005a587f899d005a58,
- FFFF9d005ac07f899d005ac0,
- FFFF9d005b287f899d005b28,
- FFFF9d005b907f899d005b90,
- FFFF9d005bf87f899d005bf8,
- FFFF9d005c607f899d005c60,
- FFFF9d005cc87f899d005cc8,
- FFFF9d005d307f899d005d30,
- FFFF9d005d987f899d005d98,
- FFFF9d005e007f899d005e00,
- FFFF9d005e687f899d005e68,
- FFFF9d005ed07f899d005ed0,
- FFFF9d005f387f899d005f38,
- FFFF9d005fa07f899d005fa0,
- FFFF9d0060087f899d006008,
- FFFF9d0060707f899d006070,
- FFFF9d0060d87f899d0060d8,
- FFFF9d0061407f899d006140,
- FFFF9d0061a87f899d0061a8,
- FFFF9d0062107f899d006210,
- FFFF9d0062787f899d006278,
- FFFF9d0062e07f899d0062e0,
- FFFF9d0063487f899d006348,
- FFFF9d0063b07f899d0063b0,
- FFFF9d0064187f899d006418,
- FFFF9d0064807f899d006480,
- FFFF9d0064e87f899d0064e8,
- FFFF9d0065507f899d006550,
- FFFF9d0065b87f899d0065b8,
- FFFF9d0066207f899d006620,
- FFFF9d0066887f899d006688,
- FFFF9d0066f07f899d0066f0,
- FFFF9d0067587f899d006758,
- FFFF9d0067c07f899d0067c0,
- FFFF9d0068287f899d006828,
- FFFF9d0068907f899d006890,
- FFFF9d0068f87f899d0068f8,
- FFFF9d0069607f899d006960,
- FFFF9d0069c87f899d0069c8,
- FFFF9d006a307f899d006a30,
- FFFF9d006a987f899d006a98,
- FFFF9d006b007f899d006b00,
- FFFF9d006b687f899d006b68,
- FFFF9d006bd07f899d006bd0,
- FFFF9d006c387f899d006c38,
- FFFF9d006ca07f899d006ca0,
- FFFF9d006d087f899d006d08,
- FFFF9d006d707f899d006d70,
- FFFF9d006dd87f899d006dd8,
- FFFF9d006e407f899d006e40,
- FFFF9d006ea87f899d006ea8,
- FFFF9d006f107f899d006f10,
- FFFF9d006f787f899d006f78,
- FFFF9d006fe07f899d006fe0,
- FFFF9d0070487f899d007048,
- FFFF9d0070b07f899d0070b0,
- FFFF9d0071187f899d007118,
- FFFF9d0071807f899d007180,
- FFFF9d0071e87f899d0071e8,
- FFFF9d0072507f899d007250,
- FFFF9d0072b87f899d0072b8,
- FFFF9d0073207f899d007320,
- FFFF9d0073887f899d007388,
- FFFF9d0073f07f899d0073f0,
- FFFF9d0074587f899d007458,
- FFFF9d0074c07f899d0074c0,
- FFFF9d0075287f899d007528,
- FFFF9d0075907f899d007590,
- FFFF9d0075f87f899d0075f8,
- FFFF9d0076607f899d007660,
- FFFF9d0076c87f899d0076c8,
- FFFF9d0077307f899d007730,
- FFFF9d0077987f899d007798,
- FFFF9d0078007f899d007800,
- FFFF9d0078687f899d007868,
- FFFF9d0078d07f899d0078d0,
- FFFF9d0079387f899d007938,
- FFFF9d0079a07f899d0079a0,
- FFFF9d007a087f899d007a08,
- FFFF9d007a707f899d007a70,
- FFFF9d007ad87f899d007ad8,
- FFFF9d007b407f899d007b40,
- FFFF9d007ba87f899d007ba8,
- FFFF9d007c107f899d007c10,
+ FFFF429a48007fba429a4800,
+ FFFF429a48687fba429a4868,
+ FFFF429a48d07fba429a48d0,
+ FFFF429a49387fba429a4938,
+ FFFF429a49a07fba429a49a0,
+ FFFF429a4a087fba429a4a08,
+ FFFF429a4a707fba429a4a70,
+ FFFF429a4ad87fba429a4ad8,
+ FFFF420078e07fba420078e0,
+ FFFF420079487fba42007948,
+ FFFF420079b07fba420079b0,
+ FFFF42007a187fba42007a18,
+ FFFF42007a807fba42007a80,
+ FFFF42007ae87fba42007ae8,
+ FFFF42007b507fba42007b50,
+ FFFF42007bb87fba42007bb8,
+ FFFF42007c207fba42007c20,
+ FFFF42007c887fba42007c88,
+ FFFF42007cf07fba42007cf0,
+ FFFF42007d587fba42007d58,
+ FFFF42007dc07fba42007dc0,
+ FFFF42007e287fba42007e28,
+ FFFF42007e907fba42007e90,
+ FFFF42007ef87fba42007ef8,
+ FFFF42007f607fba42007f60,
+ FFFF42007fc87fba42007fc8,
+ FFFF420080307fba42008030,
+ FFFF420080987fba42008098,
+ FFFF420081007fba42008100,
+ FFFF420081687fba42008168,
+ FFFF420081d07fba420081d0,
+ FFFF420082387fba42008238,
+ FFFF420082a07fba420082a0,
+ FFFF420083087fba42008308,
+ FFFF420083707fba42008370,
+ FFFF420083d87fba420083d8,
+ FFFF420084407fba42008440,
+ FFFF420084a87fba420084a8,
+ FFFF420085107fba42008510,
+ FFFF420085787fba42008578,
+ FFFF420085e07fba420085e0,
+ FFFF420086487fba42008648,
+ FFFF420086b07fba420086b0,
+ FFFF420087187fba42008718,
+ FFFF420087807fba42008780,
+ FFFF420087e87fba420087e8,
+ FFFF420088507fba42008850,
+ FFFF420088b87fba420088b8,
+ FFFF420089207fba42008920,
+ FFFF420089887fba42008988,
+ FFFF420089f07fba420089f0,
+ FFFF42008a587fba42008a58,
+ FFFF42008ac07fba42008ac0,
+ FFFF42008b287fba42008b28,
+ FFFF42008b907fba42008b90,
+ FFFF42008bf87fba42008bf8,
+ FFFF42008c607fba42008c60,
+ FFFF42008cc87fba42008cc8,
+ FFFF42008d307fba42008d30,
+ FFFF42008d987fba42008d98,
+ FFFF42008e007fba42008e00,
+ FFFF42008e687fba42008e68,
+ FFFF42008ed07fba42008ed0,
+ FFFF42008f387fba42008f38,
+ FFFF42008fa07fba42008fa0,
+ FFFF420090087fba42009008,
+ FFFF420090707fba42009070,
+ FFFF420090d87fba420090d8,
+ FFFF420091407fba42009140,
+ FFFF420091a87fba420091a8,
+ FFFF420092107fba42009210,
+ FFFF420092787fba42009278,
+ FFFF420092e07fba420092e0,
+ FFFF420093487fba42009348,
+ FFFF420093b07fba420093b0,
+ FFFF420094187fba42009418,
+ FFFF420094807fba42009480,
+ FFFF420094e87fba420094e8,
+ FFFF420095507fba42009550,
+ FFFF420095b87fba420095b8,
+ FFFF420096207fba42009620,
+ FFFF420096887fba42009688,
+ FFFF420096f07fba420096f0,
+ FFFF420097587fba42009758,
+ FFFF420097c07fba420097c0,
+ FFFF420098287fba42009828,
+ FFFF420098907fba42009890,
+ FFFF420098f87fba420098f8,
+ FFFF420099607fba42009960,
+ FFFF420099c87fba420099c8,
+ FFFF42009a307fba42009a30,
+ FFFF42009a987fba42009a98,
+ FFFF42009b007fba42009b00,
+ FFFF42009b687fba42009b68,
+ FFFF42009bd07fba42009bd0,
+ FFFF42009c387fba42009c38,
+ FFFF42009ca07fba42009ca0,
+ FFFF42009d087fba42009d08,
+ FFFF42009d707fba42009d70,
+ FFFF42009dd87fba42009dd8,
+ FFFF42009e407fba42009e40,
+ FFFF42009ea87fba42009ea8,
+ FFFF42009f107fba42009f10,
+ FFFF42009f787fba42009f78,
+ FFFF42009fe07fba42009fe0,
+ FFFF4200a0487fba4200a048,
+ FFFF4200a0b07fba4200a0b0,
+ FFFF4200a1187fba4200a118,
+ FFFF4200a1807fba4200a180,
+ FFFF4200a1e87fba4200a1e8,
+ FFFF4200a2507fba4200a250,
+ FFFF4200a2b87fba4200a2b8,
+ FFFF4200a3207fba4200a320,
+ FFFF4200a3887fba4200a388,
+ FFFF4200a3f07fba4200a3f0,
+ FFFF4200a4587fba4200a458,
+ FFFF4200a4c07fba4200a4c0,
+ FFFF4200a5287fba4200a528,
+ FFFF4200a5907fba4200a590,
+ FFFF4200a5f87fba4200a5f8,
+ FFFF4200a6607fba4200a660,
+ FFFF4200a6c87fba4200a6c8,
+ FFFF4200a7307fba4200a730,
+ FFFF4200a7987fba4200a798,
+ FFFF4200a8007fba4200a800,
+ FFFF4200a8687fba4200a868,
+ FFFF4200a8d07fba4200a8d0,
+ FFFF4200a9387fba4200a938,
+ FFFF4200a9a07fba4200a9a0,
+ FFFF4200aa087fba4200aa08,
+ FFFF4200aa707fba4200aa70,
+ FFFF4200aad87fba4200aad8,
+ FFFF4200ab407fba4200ab40,
+ FFFF4200aba87fba4200aba8,
+ FFFF4200ac107fba4200ac10,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -1999,132 +1999,132 @@
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
- FFF49c8907507f899c890750 /* PBXTargetDependency */ = {
+ FFF4433f5d107fba433f5d10 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFA9c8a0f907f899c8a0f90 /* PxFoundation */;
- targetProxy = FFF59c8a0f907f899c8a0f90 /* PBXContainerItemProxy */;
+ target = FFFA4318c2b07fba4318c2b0 /* PxFoundation */;
+ targetProxy = FFF54318c2b07fba4318c2b0 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of PxFoundation */
- FFFF9c1955187f899c195518 /* src/PsAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c1955187f899c195518 /* src/PsAllocator.cpp */; };
- FFFF9c1955807f899c195580 /* src/PsAssert.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c1955807f899c195580 /* src/PsAssert.cpp */; };
- FFFF9c1955e87f899c1955e8 /* src/PsFoundation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c1955e87f899c1955e8 /* src/PsFoundation.cpp */; };
- FFFF9c1956507f899c195650 /* src/PsMathUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c1956507f899c195650 /* src/PsMathUtils.cpp */; };
- FFFF9c1956b87f899c1956b8 /* src/PsString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c1956b87f899c1956b8 /* src/PsString.cpp */; };
- FFFF9c1957207f899c195720 /* src/PsTempAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c1957207f899c195720 /* src/PsTempAllocator.cpp */; };
- FFFF9c1957887f899c195788 /* src/PsUtilities.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c1957887f899c195788 /* src/PsUtilities.cpp */; };
- FFFF9c1957f07f899c1957f0 /* src/unix/PsUnixAtomic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c1957f07f899c1957f0 /* src/unix/PsUnixAtomic.cpp */; };
- FFFF9c1958587f899c195858 /* src/unix/PsUnixCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c1958587f899c195858 /* src/unix/PsUnixCpu.cpp */; };
- FFFF9c1958c07f899c1958c0 /* src/unix/PsUnixFPU.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c1958c07f899c1958c0 /* src/unix/PsUnixFPU.cpp */; };
- FFFF9c1959287f899c195928 /* src/unix/PsUnixMutex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c1959287f899c195928 /* src/unix/PsUnixMutex.cpp */; };
- FFFF9c1959907f899c195990 /* src/unix/PsUnixPrintString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c1959907f899c195990 /* src/unix/PsUnixPrintString.cpp */; };
- FFFF9c1959f87f899c1959f8 /* src/unix/PsUnixSList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c1959f87f899c1959f8 /* src/unix/PsUnixSList.cpp */; };
- FFFF9c195a607f899c195a60 /* src/unix/PsUnixSocket.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c195a607f899c195a60 /* src/unix/PsUnixSocket.cpp */; };
- FFFF9c195ac87f899c195ac8 /* src/unix/PsUnixSync.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c195ac87f899c195ac8 /* src/unix/PsUnixSync.cpp */; };
- FFFF9c195b307f899c195b30 /* src/unix/PsUnixThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c195b307f899c195b30 /* src/unix/PsUnixThread.cpp */; };
- FFFF9c195b987f899c195b98 /* src/unix/PsUnixTime.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9c195b987f899c195b98 /* src/unix/PsUnixTime.cpp */; };
+ FFFF429937187fba42993718 /* src/PsAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD429937187fba42993718 /* src/PsAllocator.cpp */; };
+ FFFF429937807fba42993780 /* src/PsAssert.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD429937807fba42993780 /* src/PsAssert.cpp */; };
+ FFFF429937e87fba429937e8 /* src/PsFoundation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD429937e87fba429937e8 /* src/PsFoundation.cpp */; };
+ FFFF429938507fba42993850 /* src/PsMathUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD429938507fba42993850 /* src/PsMathUtils.cpp */; };
+ FFFF429938b87fba429938b8 /* src/PsString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD429938b87fba429938b8 /* src/PsString.cpp */; };
+ FFFF429939207fba42993920 /* src/PsTempAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD429939207fba42993920 /* src/PsTempAllocator.cpp */; };
+ FFFF429939887fba42993988 /* src/PsUtilities.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD429939887fba42993988 /* src/PsUtilities.cpp */; };
+ FFFF429939f07fba429939f0 /* src/unix/PsUnixAtomic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD429939f07fba429939f0 /* src/unix/PsUnixAtomic.cpp */; };
+ FFFF42993a587fba42993a58 /* src/unix/PsUnixCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD42993a587fba42993a58 /* src/unix/PsUnixCpu.cpp */; };
+ FFFF42993ac07fba42993ac0 /* src/unix/PsUnixFPU.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD42993ac07fba42993ac0 /* src/unix/PsUnixFPU.cpp */; };
+ FFFF42993b287fba42993b28 /* src/unix/PsUnixMutex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD42993b287fba42993b28 /* src/unix/PsUnixMutex.cpp */; };
+ FFFF42993b907fba42993b90 /* src/unix/PsUnixPrintString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD42993b907fba42993b90 /* src/unix/PsUnixPrintString.cpp */; };
+ FFFF42993bf87fba42993bf8 /* src/unix/PsUnixSList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD42993bf87fba42993bf8 /* src/unix/PsUnixSList.cpp */; };
+ FFFF42993c607fba42993c60 /* src/unix/PsUnixSocket.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD42993c607fba42993c60 /* src/unix/PsUnixSocket.cpp */; };
+ FFFF42993cc87fba42993cc8 /* src/unix/PsUnixSync.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD42993cc87fba42993cc8 /* src/unix/PsUnixSync.cpp */; };
+ FFFF42993d307fba42993d30 /* src/unix/PsUnixThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD42993d307fba42993d30 /* src/unix/PsUnixThread.cpp */; };
+ FFFF42993d987fba42993d98 /* src/unix/PsUnixTime.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD42993d987fba42993d98 /* src/unix/PsUnixTime.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFD9c8a0f907f899c8a0f90 /* PxFoundation */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxFoundation"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFD9c1836007f899c183600 /* Px.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Px.h"; path = "../../../../PxShared/include/foundation/Px.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1836687f899c183668 /* PxAllocatorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAllocatorCallback.h"; path = "../../../../PxShared/include/foundation/PxAllocatorCallback.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1836d07f899c1836d0 /* PxAssert.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAssert.h"; path = "../../../../PxShared/include/foundation/PxAssert.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1837387f899c183738 /* PxBitAndData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBitAndData.h"; path = "../../../../PxShared/include/foundation/PxBitAndData.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1837a07f899c1837a0 /* PxBounds3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBounds3.h"; path = "../../../../PxShared/include/foundation/PxBounds3.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1838087f899c183808 /* PxErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrorCallback.h"; path = "../../../../PxShared/include/foundation/PxErrorCallback.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1838707f899c183870 /* PxErrors.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrors.h"; path = "../../../../PxShared/include/foundation/PxErrors.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1838d87f899c1838d8 /* PxFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFlags.h"; path = "../../../../PxShared/include/foundation/PxFlags.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1839407f899c183940 /* PxFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundation.h"; path = "../../../../PxShared/include/foundation/PxFoundation.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1839a87f899c1839a8 /* PxFoundationVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundationVersion.h"; path = "../../../../PxShared/include/foundation/PxFoundationVersion.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c183a107f899c183a10 /* PxIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIO.h"; path = "../../../../PxShared/include/foundation/PxIO.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c183a787f899c183a78 /* PxIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIntrinsics.h"; path = "../../../../PxShared/include/foundation/PxIntrinsics.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c183ae07f899c183ae0 /* PxMat33.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat33.h"; path = "../../../../PxShared/include/foundation/PxMat33.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c183b487f899c183b48 /* PxMat44.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat44.h"; path = "../../../../PxShared/include/foundation/PxMat44.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c183bb07f899c183bb0 /* PxMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMath.h"; path = "../../../../PxShared/include/foundation/PxMath.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c183c187f899c183c18 /* PxMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMathUtils.h"; path = "../../../../PxShared/include/foundation/PxMathUtils.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c183c807f899c183c80 /* PxMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMemory.h"; path = "../../../../PxShared/include/foundation/PxMemory.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c183ce87f899c183ce8 /* PxPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPlane.h"; path = "../../../../PxShared/include/foundation/PxPlane.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c183d507f899c183d50 /* PxPreprocessor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPreprocessor.h"; path = "../../../../PxShared/include/foundation/PxPreprocessor.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c183db87f899c183db8 /* PxProfiler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxProfiler.h"; path = "../../../../PxShared/include/foundation/PxProfiler.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c183e207f899c183e20 /* PxQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQuat.h"; path = "../../../../PxShared/include/foundation/PxQuat.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c183e887f899c183e88 /* PxSimpleTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleTypes.h"; path = "../../../../PxShared/include/foundation/PxSimpleTypes.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c183ef07f899c183ef0 /* PxStrideIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStrideIterator.h"; path = "../../../../PxShared/include/foundation/PxStrideIterator.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c183f587f899c183f58 /* PxTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTransform.h"; path = "../../../../PxShared/include/foundation/PxTransform.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c183fc07f899c183fc0 /* PxUnionCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxUnionCast.h"; path = "../../../../PxShared/include/foundation/PxUnionCast.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1840287f899c184028 /* PxVec2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec2.h"; path = "../../../../PxShared/include/foundation/PxVec2.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1840907f899c184090 /* PxVec3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec3.h"; path = "../../../../PxShared/include/foundation/PxVec3.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1840f87f899c1840f8 /* PxVec4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec4.h"; path = "../../../../PxShared/include/foundation/PxVec4.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1841607f899c184160 /* unix/PxUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "unix/PxUnixIntrinsics.h"; path = "../../../../PxShared/include/foundation/unix/PxUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1942007f899c194200 /* include/Ps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/Ps.h"; path = "../../../../PxShared/src/foundation/include/Ps.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1942687f899c194268 /* include/PsAlignedMalloc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlignedMalloc.h"; path = "../../../../PxShared/src/foundation/include/PsAlignedMalloc.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1942d07f899c1942d0 /* include/PsAlloca.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlloca.h"; path = "../../../../PxShared/src/foundation/include/PsAlloca.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1943387f899c194338 /* include/PsAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsAllocator.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1943a07f899c1943a0 /* include/PsAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAoS.h"; path = "../../../../PxShared/src/foundation/include/PsAoS.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1944087f899c194408 /* include/PsArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsArray.h"; path = "../../../../PxShared/src/foundation/include/PsArray.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1944707f899c194470 /* include/PsAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAtomic.h"; path = "../../../../PxShared/src/foundation/include/PsAtomic.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1944d87f899c1944d8 /* include/PsBasicTemplates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBasicTemplates.h"; path = "../../../../PxShared/src/foundation/include/PsBasicTemplates.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1945407f899c194540 /* include/PsBitUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBitUtils.h"; path = "../../../../PxShared/src/foundation/include/PsBitUtils.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1945a87f899c1945a8 /* include/PsBroadcast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBroadcast.h"; path = "../../../../PxShared/src/foundation/include/PsBroadcast.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1946107f899c194610 /* include/PsCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsCpu.h"; path = "../../../../PxShared/src/foundation/include/PsCpu.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1946787f899c194678 /* include/PsFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFPU.h"; path = "../../../../PxShared/src/foundation/include/PsFPU.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1946e07f899c1946e0 /* include/PsFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFoundation.h"; path = "../../../../PxShared/src/foundation/include/PsFoundation.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1947487f899c194748 /* include/PsHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHash.h"; path = "../../../../PxShared/src/foundation/include/PsHash.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1947b07f899c1947b0 /* include/PsHashInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashInternals.h"; path = "../../../../PxShared/src/foundation/include/PsHashInternals.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1948187f899c194818 /* include/PsHashMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashMap.h"; path = "../../../../PxShared/src/foundation/include/PsHashMap.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1948807f899c194880 /* include/PsHashSet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashSet.h"; path = "../../../../PxShared/src/foundation/include/PsHashSet.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1948e87f899c1948e8 /* include/PsInlineAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAllocator.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1949507f899c194950 /* include/PsInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAoS.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1949b87f899c1949b8 /* include/PsInlineArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineArray.h"; path = "../../../../PxShared/src/foundation/include/PsInlineArray.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c194a207f899c194a20 /* include/PsIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/PsIntrinsics.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c194a887f899c194a88 /* include/PsMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMathUtils.h"; path = "../../../../PxShared/src/foundation/include/PsMathUtils.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c194af07f899c194af0 /* include/PsMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMutex.h"; path = "../../../../PxShared/src/foundation/include/PsMutex.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c194b587f899c194b58 /* include/PsPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPool.h"; path = "../../../../PxShared/src/foundation/include/PsPool.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c194bc07f899c194bc0 /* include/PsSList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSList.h"; path = "../../../../PxShared/src/foundation/include/PsSList.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c194c287f899c194c28 /* include/PsSocket.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSocket.h"; path = "../../../../PxShared/src/foundation/include/PsSocket.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c194c907f899c194c90 /* include/PsSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSort.h"; path = "../../../../PxShared/src/foundation/include/PsSort.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c194cf87f899c194cf8 /* include/PsSortInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSortInternals.h"; path = "../../../../PxShared/src/foundation/include/PsSortInternals.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c194d607f899c194d60 /* include/PsString.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsString.h"; path = "../../../../PxShared/src/foundation/include/PsString.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c194dc87f899c194dc8 /* include/PsSync.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSync.h"; path = "../../../../PxShared/src/foundation/include/PsSync.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c194e307f899c194e30 /* include/PsTempAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTempAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsTempAllocator.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c194e987f899c194e98 /* include/PsThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsThread.h"; path = "../../../../PxShared/src/foundation/include/PsThread.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c194f007f899c194f00 /* include/PsTime.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTime.h"; path = "../../../../PxShared/src/foundation/include/PsTime.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c194f687f899c194f68 /* include/PsUserAllocated.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUserAllocated.h"; path = "../../../../PxShared/src/foundation/include/PsUserAllocated.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c194fd07f899c194fd0 /* include/PsUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsUtilities.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1950387f899c195038 /* include/PsVecMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMath.h"; path = "../../../../PxShared/src/foundation/include/PsVecMath.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1950a07f899c1950a0 /* include/PsVecMathAoSScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalar.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalar.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1951087f899c195108 /* include/PsVecMathAoSScalarInline.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalarInline.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalarInline.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1951707f899c195170 /* include/PsVecMathSSE.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathSSE.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathSSE.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1951d87f899c1951d8 /* include/PsVecMathUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathUtilities.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1952407f899c195240 /* include/PsVecQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecQuat.h"; path = "../../../../PxShared/src/foundation/include/PsVecQuat.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1952a87f899c1952a8 /* include/PsVecTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecTransform.h"; path = "../../../../PxShared/src/foundation/include/PsVecTransform.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1953107f899c195310 /* include/unix/PsUnixAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixAoS.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1953787f899c195378 /* include/unix/PsUnixFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixFPU.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixFPU.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1953e07f899c1953e0 /* include/unix/PsUnixInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixInlineAoS.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1954487f899c195448 /* include/unix/PsUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1954b07f899c1954b0 /* include/unix/PsUnixTrigConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixTrigConstants.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixTrigConstants.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1955187f899c195518 /* src/PsAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsAllocator.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c1955807f899c195580 /* src/PsAssert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAssert.cpp"; path = "../../../../PxShared/src/foundation/src/PsAssert.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c1955e87f899c1955e8 /* src/PsFoundation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsFoundation.cpp"; path = "../../../../PxShared/src/foundation/src/PsFoundation.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c1956507f899c195650 /* src/PsMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsMathUtils.cpp"; path = "../../../../PxShared/src/foundation/src/PsMathUtils.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c1956b87f899c1956b8 /* src/PsString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsString.cpp"; path = "../../../../PxShared/src/foundation/src/PsString.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c1957207f899c195720 /* src/PsTempAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsTempAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsTempAllocator.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c1957887f899c195788 /* src/PsUtilities.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsUtilities.cpp"; path = "../../../../PxShared/src/foundation/src/PsUtilities.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c1957f07f899c1957f0 /* src/unix/PsUnixAtomic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixAtomic.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixAtomic.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c1958587f899c195858 /* src/unix/PsUnixCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixCpu.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixCpu.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c1958c07f899c1958c0 /* src/unix/PsUnixFPU.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixFPU.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixFPU.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c1959287f899c195928 /* src/unix/PsUnixMutex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixMutex.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixMutex.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c1959907f899c195990 /* src/unix/PsUnixPrintString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixPrintString.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixPrintString.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c1959f87f899c1959f8 /* src/unix/PsUnixSList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSList.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSList.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c195a607f899c195a60 /* src/unix/PsUnixSocket.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSocket.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSocket.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c195ac87f899c195ac8 /* src/unix/PsUnixSync.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSync.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSync.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c195b307f899c195b30 /* src/unix/PsUnixThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixThread.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixThread.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c195b987f899c195b98 /* src/unix/PsUnixTime.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixTime.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixTime.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4318c2b07fba4318c2b0 /* PxFoundation */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxFoundation"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFD429818007fba42981800 /* Px.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Px.h"; path = "../../../../PxShared/include/foundation/Px.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429818687fba42981868 /* PxAllocatorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAllocatorCallback.h"; path = "../../../../PxShared/include/foundation/PxAllocatorCallback.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429818d07fba429818d0 /* PxAssert.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAssert.h"; path = "../../../../PxShared/include/foundation/PxAssert.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429819387fba42981938 /* PxBitAndData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBitAndData.h"; path = "../../../../PxShared/include/foundation/PxBitAndData.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429819a07fba429819a0 /* PxBounds3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBounds3.h"; path = "../../../../PxShared/include/foundation/PxBounds3.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42981a087fba42981a08 /* PxErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrorCallback.h"; path = "../../../../PxShared/include/foundation/PxErrorCallback.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42981a707fba42981a70 /* PxErrors.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrors.h"; path = "../../../../PxShared/include/foundation/PxErrors.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42981ad87fba42981ad8 /* PxFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFlags.h"; path = "../../../../PxShared/include/foundation/PxFlags.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42981b407fba42981b40 /* PxFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundation.h"; path = "../../../../PxShared/include/foundation/PxFoundation.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42981ba87fba42981ba8 /* PxFoundationVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundationVersion.h"; path = "../../../../PxShared/include/foundation/PxFoundationVersion.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42981c107fba42981c10 /* PxIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIO.h"; path = "../../../../PxShared/include/foundation/PxIO.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42981c787fba42981c78 /* PxIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIntrinsics.h"; path = "../../../../PxShared/include/foundation/PxIntrinsics.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42981ce07fba42981ce0 /* PxMat33.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat33.h"; path = "../../../../PxShared/include/foundation/PxMat33.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42981d487fba42981d48 /* PxMat44.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat44.h"; path = "../../../../PxShared/include/foundation/PxMat44.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42981db07fba42981db0 /* PxMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMath.h"; path = "../../../../PxShared/include/foundation/PxMath.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42981e187fba42981e18 /* PxMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMathUtils.h"; path = "../../../../PxShared/include/foundation/PxMathUtils.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42981e807fba42981e80 /* PxMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMemory.h"; path = "../../../../PxShared/include/foundation/PxMemory.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42981ee87fba42981ee8 /* PxPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPlane.h"; path = "../../../../PxShared/include/foundation/PxPlane.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42981f507fba42981f50 /* PxPreprocessor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPreprocessor.h"; path = "../../../../PxShared/include/foundation/PxPreprocessor.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42981fb87fba42981fb8 /* PxProfiler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxProfiler.h"; path = "../../../../PxShared/include/foundation/PxProfiler.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429820207fba42982020 /* PxQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQuat.h"; path = "../../../../PxShared/include/foundation/PxQuat.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429820887fba42982088 /* PxSimpleTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleTypes.h"; path = "../../../../PxShared/include/foundation/PxSimpleTypes.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429820f07fba429820f0 /* PxStrideIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStrideIterator.h"; path = "../../../../PxShared/include/foundation/PxStrideIterator.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429821587fba42982158 /* PxTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTransform.h"; path = "../../../../PxShared/include/foundation/PxTransform.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429821c07fba429821c0 /* PxUnionCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxUnionCast.h"; path = "../../../../PxShared/include/foundation/PxUnionCast.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429822287fba42982228 /* PxVec2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec2.h"; path = "../../../../PxShared/include/foundation/PxVec2.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429822907fba42982290 /* PxVec3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec3.h"; path = "../../../../PxShared/include/foundation/PxVec3.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429822f87fba429822f8 /* PxVec4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec4.h"; path = "../../../../PxShared/include/foundation/PxVec4.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429823607fba42982360 /* unix/PxUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "unix/PxUnixIntrinsics.h"; path = "../../../../PxShared/include/foundation/unix/PxUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429924007fba42992400 /* include/Ps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/Ps.h"; path = "../../../../PxShared/src/foundation/include/Ps.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429924687fba42992468 /* include/PsAlignedMalloc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlignedMalloc.h"; path = "../../../../PxShared/src/foundation/include/PsAlignedMalloc.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429924d07fba429924d0 /* include/PsAlloca.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlloca.h"; path = "../../../../PxShared/src/foundation/include/PsAlloca.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429925387fba42992538 /* include/PsAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsAllocator.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429925a07fba429925a0 /* include/PsAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAoS.h"; path = "../../../../PxShared/src/foundation/include/PsAoS.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429926087fba42992608 /* include/PsArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsArray.h"; path = "../../../../PxShared/src/foundation/include/PsArray.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429926707fba42992670 /* include/PsAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAtomic.h"; path = "../../../../PxShared/src/foundation/include/PsAtomic.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429926d87fba429926d8 /* include/PsBasicTemplates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBasicTemplates.h"; path = "../../../../PxShared/src/foundation/include/PsBasicTemplates.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429927407fba42992740 /* include/PsBitUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBitUtils.h"; path = "../../../../PxShared/src/foundation/include/PsBitUtils.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429927a87fba429927a8 /* include/PsBroadcast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBroadcast.h"; path = "../../../../PxShared/src/foundation/include/PsBroadcast.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429928107fba42992810 /* include/PsCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsCpu.h"; path = "../../../../PxShared/src/foundation/include/PsCpu.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429928787fba42992878 /* include/PsFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFPU.h"; path = "../../../../PxShared/src/foundation/include/PsFPU.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429928e07fba429928e0 /* include/PsFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFoundation.h"; path = "../../../../PxShared/src/foundation/include/PsFoundation.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429929487fba42992948 /* include/PsHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHash.h"; path = "../../../../PxShared/src/foundation/include/PsHash.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429929b07fba429929b0 /* include/PsHashInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashInternals.h"; path = "../../../../PxShared/src/foundation/include/PsHashInternals.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42992a187fba42992a18 /* include/PsHashMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashMap.h"; path = "../../../../PxShared/src/foundation/include/PsHashMap.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42992a807fba42992a80 /* include/PsHashSet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashSet.h"; path = "../../../../PxShared/src/foundation/include/PsHashSet.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42992ae87fba42992ae8 /* include/PsInlineAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAllocator.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42992b507fba42992b50 /* include/PsInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAoS.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42992bb87fba42992bb8 /* include/PsInlineArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineArray.h"; path = "../../../../PxShared/src/foundation/include/PsInlineArray.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42992c207fba42992c20 /* include/PsIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/PsIntrinsics.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42992c887fba42992c88 /* include/PsMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMathUtils.h"; path = "../../../../PxShared/src/foundation/include/PsMathUtils.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42992cf07fba42992cf0 /* include/PsMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMutex.h"; path = "../../../../PxShared/src/foundation/include/PsMutex.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42992d587fba42992d58 /* include/PsPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPool.h"; path = "../../../../PxShared/src/foundation/include/PsPool.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42992dc07fba42992dc0 /* include/PsSList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSList.h"; path = "../../../../PxShared/src/foundation/include/PsSList.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42992e287fba42992e28 /* include/PsSocket.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSocket.h"; path = "../../../../PxShared/src/foundation/include/PsSocket.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42992e907fba42992e90 /* include/PsSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSort.h"; path = "../../../../PxShared/src/foundation/include/PsSort.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42992ef87fba42992ef8 /* include/PsSortInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSortInternals.h"; path = "../../../../PxShared/src/foundation/include/PsSortInternals.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42992f607fba42992f60 /* include/PsString.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsString.h"; path = "../../../../PxShared/src/foundation/include/PsString.h"; sourceTree = SOURCE_ROOT; };
+ FFFD42992fc87fba42992fc8 /* include/PsSync.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSync.h"; path = "../../../../PxShared/src/foundation/include/PsSync.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429930307fba42993030 /* include/PsTempAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTempAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsTempAllocator.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429930987fba42993098 /* include/PsThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsThread.h"; path = "../../../../PxShared/src/foundation/include/PsThread.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429931007fba42993100 /* include/PsTime.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTime.h"; path = "../../../../PxShared/src/foundation/include/PsTime.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429931687fba42993168 /* include/PsUserAllocated.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUserAllocated.h"; path = "../../../../PxShared/src/foundation/include/PsUserAllocated.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429931d07fba429931d0 /* include/PsUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsUtilities.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429932387fba42993238 /* include/PsVecMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMath.h"; path = "../../../../PxShared/src/foundation/include/PsVecMath.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429932a07fba429932a0 /* include/PsVecMathAoSScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalar.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalar.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429933087fba42993308 /* include/PsVecMathAoSScalarInline.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalarInline.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalarInline.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429933707fba42993370 /* include/PsVecMathSSE.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathSSE.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathSSE.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429933d87fba429933d8 /* include/PsVecMathUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathUtilities.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429934407fba42993440 /* include/PsVecQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecQuat.h"; path = "../../../../PxShared/src/foundation/include/PsVecQuat.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429934a87fba429934a8 /* include/PsVecTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecTransform.h"; path = "../../../../PxShared/src/foundation/include/PsVecTransform.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429935107fba42993510 /* include/unix/PsUnixAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixAoS.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429935787fba42993578 /* include/unix/PsUnixFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixFPU.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixFPU.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429935e07fba429935e0 /* include/unix/PsUnixInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixInlineAoS.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429936487fba42993648 /* include/unix/PsUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429936b07fba429936b0 /* include/unix/PsUnixTrigConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixTrigConstants.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixTrigConstants.h"; sourceTree = SOURCE_ROOT; };
+ FFFD429937187fba42993718 /* src/PsAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsAllocator.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD429937807fba42993780 /* src/PsAssert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAssert.cpp"; path = "../../../../PxShared/src/foundation/src/PsAssert.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD429937e87fba429937e8 /* src/PsFoundation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsFoundation.cpp"; path = "../../../../PxShared/src/foundation/src/PsFoundation.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD429938507fba42993850 /* src/PsMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsMathUtils.cpp"; path = "../../../../PxShared/src/foundation/src/PsMathUtils.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD429938b87fba429938b8 /* src/PsString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsString.cpp"; path = "../../../../PxShared/src/foundation/src/PsString.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD429939207fba42993920 /* src/PsTempAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsTempAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsTempAllocator.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD429939887fba42993988 /* src/PsUtilities.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsUtilities.cpp"; path = "../../../../PxShared/src/foundation/src/PsUtilities.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD429939f07fba429939f0 /* src/unix/PsUnixAtomic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixAtomic.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixAtomic.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD42993a587fba42993a58 /* src/unix/PsUnixCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixCpu.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixCpu.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD42993ac07fba42993ac0 /* src/unix/PsUnixFPU.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixFPU.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixFPU.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD42993b287fba42993b28 /* src/unix/PsUnixMutex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixMutex.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixMutex.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD42993b907fba42993b90 /* src/unix/PsUnixPrintString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixPrintString.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixPrintString.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD42993bf87fba42993bf8 /* src/unix/PsUnixSList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSList.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSList.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD42993c607fba42993c60 /* src/unix/PsUnixSocket.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSocket.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSocket.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD42993cc87fba42993cc8 /* src/unix/PsUnixSync.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSync.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSync.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD42993d307fba42993d30 /* src/unix/PsUnixThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixThread.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixThread.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD42993d987fba42993d98 /* 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 */
- FFF29c8a0f907f899c8a0f90 /* Resources */ = {
+ FFF24318c2b07fba4318c2b0 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2134,7 +2134,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFC9c8a0f907f899c8a0f90 /* Frameworks */ = {
+ FFFC4318c2b07fba4318c2b0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2144,27 +2144,27 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF89c8a0f907f899c8a0f90 /* Sources */ = {
+ FFF84318c2b07fba4318c2b0 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFF9c1955187f899c195518,
- FFFF9c1955807f899c195580,
- FFFF9c1955e87f899c1955e8,
- FFFF9c1956507f899c195650,
- FFFF9c1956b87f899c1956b8,
- FFFF9c1957207f899c195720,
- FFFF9c1957887f899c195788,
- FFFF9c1957f07f899c1957f0,
- FFFF9c1958587f899c195858,
- FFFF9c1958c07f899c1958c0,
- FFFF9c1959287f899c195928,
- FFFF9c1959907f899c195990,
- FFFF9c1959f87f899c1959f8,
- FFFF9c195a607f899c195a60,
- FFFF9c195ac87f899c195ac8,
- FFFF9c195b307f899c195b30,
- FFFF9c195b987f899c195b98,
+ FFFF429937187fba42993718,
+ FFFF429937807fba42993780,
+ FFFF429937e87fba429937e8,
+ FFFF429938507fba42993850,
+ FFFF429938b87fba429938b8,
+ FFFF429939207fba42993920,
+ FFFF429939887fba42993988,
+ FFFF429939f07fba429939f0,
+ FFFF42993a587fba42993a58,
+ FFFF42993ac07fba42993ac0,
+ FFFF42993b287fba42993b28,
+ FFFF42993b907fba42993b90,
+ FFFF42993bf87fba42993bf8,
+ FFFF42993c607fba42993c60,
+ FFFF42993cc87fba42993cc8,
+ FFFF42993d307fba42993d30,
+ FFFF42993d987fba42993d98,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -2176,103 +2176,103 @@
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of PxPvdSDK */
- FFFF9d0205a87f899d0205a8 /* src/PxProfileEventImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0205a87f899d0205a8 /* src/PxProfileEventImpl.cpp */; };
- FFFF9d0206107f899d020610 /* src/PxPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0206107f899d020610 /* src/PxPvd.cpp */; };
- FFFF9d0206787f899d020678 /* src/PxPvdDataStream.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0206787f899d020678 /* src/PxPvdDataStream.cpp */; };
- FFFF9d0206e07f899d0206e0 /* src/PxPvdDefaultFileTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0206e07f899d0206e0 /* src/PxPvdDefaultFileTransport.cpp */; };
- FFFF9d0207487f899d020748 /* src/PxPvdDefaultSocketTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0207487f899d020748 /* src/PxPvdDefaultSocketTransport.cpp */; };
- FFFF9d0207b07f899d0207b0 /* src/PxPvdImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0207b07f899d0207b0 /* src/PxPvdImpl.cpp */; };
- FFFF9d0208187f899d020818 /* src/PxPvdMemClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0208187f899d020818 /* src/PxPvdMemClient.cpp */; };
- FFFF9d0208807f899d020880 /* src/PxPvdObjectModelMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0208807f899d020880 /* src/PxPvdObjectModelMetaData.cpp */; };
- FFFF9d0208e87f899d0208e8 /* src/PxPvdObjectRegistrar.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0208e87f899d0208e8 /* src/PxPvdObjectRegistrar.cpp */; };
- FFFF9d0209507f899d020950 /* src/PxPvdProfileZoneClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0209507f899d020950 /* src/PxPvdProfileZoneClient.cpp */; };
- FFFF9d0209b87f899d0209b8 /* src/PxPvdUserRenderer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0209b87f899d0209b8 /* src/PxPvdUserRenderer.cpp */; };
+ FFFF4480fda87fba4480fda8 /* src/PxProfileEventImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4480fda87fba4480fda8 /* src/PxProfileEventImpl.cpp */; };
+ FFFF4480fe107fba4480fe10 /* src/PxPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4480fe107fba4480fe10 /* src/PxPvd.cpp */; };
+ FFFF4480fe787fba4480fe78 /* src/PxPvdDataStream.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4480fe787fba4480fe78 /* src/PxPvdDataStream.cpp */; };
+ FFFF4480fee07fba4480fee0 /* src/PxPvdDefaultFileTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4480fee07fba4480fee0 /* src/PxPvdDefaultFileTransport.cpp */; };
+ FFFF4480ff487fba4480ff48 /* src/PxPvdDefaultSocketTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4480ff487fba4480ff48 /* src/PxPvdDefaultSocketTransport.cpp */; };
+ FFFF4480ffb07fba4480ffb0 /* src/PxPvdImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4480ffb07fba4480ffb0 /* src/PxPvdImpl.cpp */; };
+ FFFF448100187fba44810018 /* src/PxPvdMemClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448100187fba44810018 /* src/PxPvdMemClient.cpp */; };
+ FFFF448100807fba44810080 /* src/PxPvdObjectModelMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448100807fba44810080 /* src/PxPvdObjectModelMetaData.cpp */; };
+ FFFF448100e87fba448100e8 /* src/PxPvdObjectRegistrar.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448100e87fba448100e8 /* src/PxPvdObjectRegistrar.cpp */; };
+ FFFF448101507fba44810150 /* src/PxPvdProfileZoneClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448101507fba44810150 /* src/PxPvdProfileZoneClient.cpp */; };
+ FFFF448101b87fba448101b8 /* src/PxPvdUserRenderer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448101b87fba448101b8 /* src/PxPvdUserRenderer.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFD9cc339d07f899cc339d0 /* PxPvdSDK */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxPvdSDK"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFD9cc367007f899cc36700 /* PxPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvd.h"; path = "../../../../PxShared/include/pvd/PxPvd.h"; sourceTree = SOURCE_ROOT; };
- FFFD9cc367687f899cc36768 /* PxPvdTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvdTransport.h"; path = "../../../../PxShared/include/pvd/PxPvdTransport.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0202007f899d020200 /* include/PsPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPvd.h"; path = "../../../../PxShared/src/pvd/include/PsPvd.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0202687f899d020268 /* include/PxProfileAllocatorWrapper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxProfileAllocatorWrapper.h"; path = "../../../../PxShared/src/pvd/include/PxProfileAllocatorWrapper.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0202d07f899d0202d0 /* include/PxPvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdClient.h"; path = "../../../../PxShared/src/pvd/include/PxPvdClient.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0203387f899d020338 /* include/PxPvdDataStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStream.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStream.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0203a07f899d0203a0 /* include/PxPvdDataStreamHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStreamHelpers.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStreamHelpers.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0204087f899d020408 /* include/PxPvdErrorCodes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdErrorCodes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdErrorCodes.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0204707f899d020470 /* include/PxPvdObjectModelBaseTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdObjectModelBaseTypes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdObjectModelBaseTypes.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0204d87f899d0204d8 /* include/PxPvdRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdRenderBuffer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdRenderBuffer.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0205407f899d020540 /* include/PxPvdUserRenderer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdUserRenderer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdUserRenderer.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0205a87f899d0205a8 /* src/PxProfileEventImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxProfileEventImpl.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0206107f899d020610 /* src/PxPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvd.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvd.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0206787f899d020678 /* src/PxPvdDataStream.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDataStream.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDataStream.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0206e07f899d0206e0 /* src/PxPvdDefaultFileTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0207487f899d020748 /* src/PxPvdDefaultSocketTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0207b07f899d0207b0 /* src/PxPvdImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0208187f899d020818 /* src/PxPvdMemClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0208807f899d020880 /* src/PxPvdObjectModelMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0208e87f899d0208e8 /* src/PxPvdObjectRegistrar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0209507f899d020950 /* src/PxPvdProfileZoneClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0209b87f899d0209b8 /* src/PxPvdUserRenderer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderer.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderer.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d020a207f899d020a20 /* src/PxProfileBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileBase.h"; path = "../../../../PxShared/src/pvd/src/PxProfileBase.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d020a887f899d020a88 /* src/PxProfileCompileTimeEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileCompileTimeEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileCompileTimeEventFilter.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d020af07f899d020af0 /* src/PxProfileContextProvider.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProvider.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProvider.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d020b587f899d020b58 /* src/PxProfileContextProviderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProviderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProviderImpl.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d020bc07f899d020bc0 /* src/PxProfileDataBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataBuffer.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d020c287f899d020c28 /* src/PxProfileDataParsing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataParsing.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataParsing.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d020c907f899d020c90 /* src/PxProfileEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBuffer.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d020cf87f899d020cf8 /* src/PxProfileEventBufferAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferAtomic.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferAtomic.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d020d607f899d020d60 /* src/PxProfileEventBufferClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClient.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClient.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d020dc87f899d020dc8 /* src/PxProfileEventBufferClientManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClientManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClientManager.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d020e307f899d020e30 /* src/PxProfileEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventFilter.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d020e987f899d020e98 /* src/PxProfileEventHandler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventHandler.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventHandler.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d020f007f899d020f00 /* src/PxProfileEventId.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventId.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventId.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d020f687f899d020f68 /* src/PxProfileEventMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventMutex.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventMutex.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d020fd07f899d020fd0 /* src/PxProfileEventNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventNames.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventNames.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0210387f899d021038 /* src/PxProfileEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventParser.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0210a07f899d0210a0 /* src/PxProfileEventSender.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSender.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSender.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0211087f899d021108 /* src/PxProfileEventSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSerialization.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSerialization.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0211707f899d021170 /* src/PxProfileEventSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSystem.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSystem.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0211d87f899d0211d8 /* src/PxProfileEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEvents.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0212407f899d021240 /* src/PxProfileMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemory.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemory.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0212a87f899d0212a8 /* src/PxProfileMemoryBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryBuffer.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0213107f899d021310 /* src/PxProfileMemoryEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventBuffer.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0213787f899d021378 /* src/PxProfileMemoryEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventParser.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0213e07f899d0213e0 /* src/PxProfileMemoryEventRecorder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventRecorder.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventRecorder.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0214487f899d021448 /* src/PxProfileMemoryEventReflexiveWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventReflexiveWriter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventReflexiveWriter.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0214b07f899d0214b0 /* src/PxProfileMemoryEventSummarizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventSummarizer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventSummarizer.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0215187f899d021518 /* src/PxProfileMemoryEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventTypes.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0215807f899d021580 /* src/PxProfileMemoryEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEvents.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0215e87f899d0215e8 /* src/PxProfileScopedEvent.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedEvent.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedEvent.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0216507f899d021650 /* src/PxProfileScopedMutexLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedMutexLock.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedMutexLock.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0216b87f899d0216b8 /* src/PxProfileZone.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZone.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZone.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0217207f899d021720 /* src/PxProfileZoneImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneImpl.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0217887f899d021788 /* src/PxProfileZoneManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManager.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0217f07f899d0217f0 /* src/PxProfileZoneManagerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManagerImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManagerImpl.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0218587f899d021858 /* src/PxPvdBits.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdBits.h"; path = "../../../../PxShared/src/pvd/src/PxPvdBits.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0218c07f899d0218c0 /* src/PxPvdByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdByteStreams.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0219287f899d021928 /* src/PxPvdCommStreamEventSink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEventSink.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEventSink.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0219907f899d021990 /* src/PxPvdCommStreamEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEvents.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEvents.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0219f87f899d0219f8 /* src/PxPvdCommStreamSDKEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamSDKEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamSDKEventTypes.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d021a607f899d021a60 /* src/PxPvdCommStreamTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamTypes.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d021ac87f899d021ac8 /* src/PxPvdDefaultFileTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d021b307f899d021b30 /* src/PxPvdDefaultSocketTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d021b987f899d021b98 /* src/PxPvdFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdFoundation.h"; path = "../../../../PxShared/src/pvd/src/PxPvdFoundation.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d021c007f899d021c00 /* src/PxPvdImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d021c687f899d021c68 /* src/PxPvdInternalByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdInternalByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdInternalByteStreams.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d021cd07f899d021cd0 /* src/PxPvdMarshalling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMarshalling.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMarshalling.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d021d387f899d021d38 /* src/PxPvdMemClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d021da07f899d021da0 /* src/PxPvdObjectModel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModel.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModel.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d021e087f899d021e08 /* src/PxPvdObjectModelInternalTypeDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypeDefs.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypeDefs.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d021e707f899d021e70 /* src/PxPvdObjectModelInternalTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypes.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d021ed87f899d021ed8 /* src/PxPvdObjectModelMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d021f407f899d021f40 /* src/PxPvdObjectRegistrar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d021fa87f899d021fa8 /* src/PxPvdProfileZoneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0220107f899d022010 /* src/PxPvdUserRenderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderImpl.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0220787f899d022078 /* src/PxPvdUserRenderTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderTypes.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44109f207fba44109f20 /* PxPvdSDK */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxPvdSDK"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFD4410cca07fba4410cca0 /* PxPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvd.h"; path = "../../../../PxShared/include/pvd/PxPvd.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4410cd087fba4410cd08 /* PxPvdTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvdTransport.h"; path = "../../../../PxShared/include/pvd/PxPvdTransport.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4480fa007fba4480fa00 /* include/PsPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPvd.h"; path = "../../../../PxShared/src/pvd/include/PsPvd.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4480fa687fba4480fa68 /* include/PxProfileAllocatorWrapper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxProfileAllocatorWrapper.h"; path = "../../../../PxShared/src/pvd/include/PxProfileAllocatorWrapper.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4480fad07fba4480fad0 /* include/PxPvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdClient.h"; path = "../../../../PxShared/src/pvd/include/PxPvdClient.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4480fb387fba4480fb38 /* include/PxPvdDataStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStream.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStream.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4480fba07fba4480fba0 /* include/PxPvdDataStreamHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStreamHelpers.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStreamHelpers.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4480fc087fba4480fc08 /* include/PxPvdErrorCodes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdErrorCodes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdErrorCodes.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4480fc707fba4480fc70 /* include/PxPvdObjectModelBaseTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdObjectModelBaseTypes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdObjectModelBaseTypes.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4480fcd87fba4480fcd8 /* include/PxPvdRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdRenderBuffer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdRenderBuffer.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4480fd407fba4480fd40 /* include/PxPvdUserRenderer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdUserRenderer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdUserRenderer.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4480fda87fba4480fda8 /* src/PxProfileEventImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxProfileEventImpl.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4480fe107fba4480fe10 /* src/PxPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvd.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvd.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4480fe787fba4480fe78 /* src/PxPvdDataStream.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDataStream.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDataStream.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4480fee07fba4480fee0 /* src/PxPvdDefaultFileTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4480ff487fba4480ff48 /* src/PxPvdDefaultSocketTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4480ffb07fba4480ffb0 /* src/PxPvdImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448100187fba44810018 /* src/PxPvdMemClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448100807fba44810080 /* src/PxPvdObjectModelMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448100e87fba448100e8 /* src/PxPvdObjectRegistrar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448101507fba44810150 /* src/PxPvdProfileZoneClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448101b87fba448101b8 /* src/PxPvdUserRenderer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderer.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderer.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448102207fba44810220 /* src/PxProfileBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileBase.h"; path = "../../../../PxShared/src/pvd/src/PxProfileBase.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448102887fba44810288 /* src/PxProfileCompileTimeEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileCompileTimeEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileCompileTimeEventFilter.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448102f07fba448102f0 /* src/PxProfileContextProvider.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProvider.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProvider.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448103587fba44810358 /* src/PxProfileContextProviderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProviderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProviderImpl.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448103c07fba448103c0 /* src/PxProfileDataBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataBuffer.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448104287fba44810428 /* src/PxProfileDataParsing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataParsing.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataParsing.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448104907fba44810490 /* src/PxProfileEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBuffer.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448104f87fba448104f8 /* src/PxProfileEventBufferAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferAtomic.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferAtomic.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448105607fba44810560 /* src/PxProfileEventBufferClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClient.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClient.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448105c87fba448105c8 /* src/PxProfileEventBufferClientManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClientManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClientManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448106307fba44810630 /* src/PxProfileEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventFilter.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448106987fba44810698 /* src/PxProfileEventHandler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventHandler.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventHandler.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448107007fba44810700 /* src/PxProfileEventId.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventId.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventId.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448107687fba44810768 /* src/PxProfileEventMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventMutex.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventMutex.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448107d07fba448107d0 /* src/PxProfileEventNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventNames.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventNames.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448108387fba44810838 /* src/PxProfileEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventParser.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448108a07fba448108a0 /* src/PxProfileEventSender.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSender.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSender.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448109087fba44810908 /* src/PxProfileEventSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSerialization.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSerialization.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448109707fba44810970 /* src/PxProfileEventSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSystem.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSystem.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448109d87fba448109d8 /* src/PxProfileEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEvents.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44810a407fba44810a40 /* src/PxProfileMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemory.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemory.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44810aa87fba44810aa8 /* src/PxProfileMemoryBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryBuffer.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44810b107fba44810b10 /* src/PxProfileMemoryEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventBuffer.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44810b787fba44810b78 /* src/PxProfileMemoryEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventParser.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44810be07fba44810be0 /* src/PxProfileMemoryEventRecorder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventRecorder.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventRecorder.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44810c487fba44810c48 /* src/PxProfileMemoryEventReflexiveWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventReflexiveWriter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventReflexiveWriter.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44810cb07fba44810cb0 /* src/PxProfileMemoryEventSummarizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventSummarizer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventSummarizer.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44810d187fba44810d18 /* src/PxProfileMemoryEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventTypes.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44810d807fba44810d80 /* src/PxProfileMemoryEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEvents.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44810de87fba44810de8 /* src/PxProfileScopedEvent.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedEvent.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedEvent.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44810e507fba44810e50 /* src/PxProfileScopedMutexLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedMutexLock.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedMutexLock.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44810eb87fba44810eb8 /* src/PxProfileZone.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZone.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZone.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44810f207fba44810f20 /* src/PxProfileZoneImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneImpl.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44810f887fba44810f88 /* src/PxProfileZoneManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44810ff07fba44810ff0 /* src/PxProfileZoneManagerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManagerImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManagerImpl.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448110587fba44811058 /* src/PxPvdBits.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdBits.h"; path = "../../../../PxShared/src/pvd/src/PxPvdBits.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448110c07fba448110c0 /* src/PxPvdByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdByteStreams.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448111287fba44811128 /* src/PxPvdCommStreamEventSink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEventSink.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEventSink.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448111907fba44811190 /* src/PxPvdCommStreamEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEvents.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEvents.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448111f87fba448111f8 /* src/PxPvdCommStreamSDKEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamSDKEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamSDKEventTypes.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448112607fba44811260 /* src/PxPvdCommStreamTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamTypes.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448112c87fba448112c8 /* src/PxPvdDefaultFileTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448113307fba44811330 /* src/PxPvdDefaultSocketTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448113987fba44811398 /* src/PxPvdFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdFoundation.h"; path = "../../../../PxShared/src/pvd/src/PxPvdFoundation.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448114007fba44811400 /* src/PxPvdImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448114687fba44811468 /* src/PxPvdInternalByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdInternalByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdInternalByteStreams.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448114d07fba448114d0 /* src/PxPvdMarshalling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMarshalling.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMarshalling.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448115387fba44811538 /* src/PxPvdMemClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448115a07fba448115a0 /* src/PxPvdObjectModel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModel.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModel.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448116087fba44811608 /* src/PxPvdObjectModelInternalTypeDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypeDefs.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypeDefs.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448116707fba44811670 /* src/PxPvdObjectModelInternalTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypes.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448116d87fba448116d8 /* src/PxPvdObjectModelMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448117407fba44811740 /* src/PxPvdObjectRegistrar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448117a87fba448117a8 /* src/PxPvdProfileZoneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448118107fba44811810 /* src/PxPvdUserRenderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderImpl.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448118787fba44811878 /* 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 */
- FFF29cc339d07f899cc339d0 /* Resources */ = {
+ FFF244109f207fba44109f20 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2282,7 +2282,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFC9cc339d07f899cc339d0 /* Frameworks */ = {
+ FFFC44109f207fba44109f20 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2292,21 +2292,21 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF89cc339d07f899cc339d0 /* Sources */ = {
+ FFF844109f207fba44109f20 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFF9d0205a87f899d0205a8,
- FFFF9d0206107f899d020610,
- FFFF9d0206787f899d020678,
- FFFF9d0206e07f899d0206e0,
- FFFF9d0207487f899d020748,
- FFFF9d0207b07f899d0207b0,
- FFFF9d0208187f899d020818,
- FFFF9d0208807f899d020880,
- FFFF9d0208e87f899d0208e8,
- FFFF9d0209507f899d020950,
- FFFF9d0209b87f899d0209b8,
+ FFFF4480fda87fba4480fda8,
+ FFFF4480fe107fba4480fe10,
+ FFFF4480fe787fba4480fe78,
+ FFFF4480fee07fba4480fee0,
+ FFFF4480ff487fba4480ff48,
+ FFFF4480ffb07fba4480ffb0,
+ FFFF448100187fba44810018,
+ FFFF448100807fba44810080,
+ FFFF448100e87fba448100e8,
+ FFFF448101507fba44810150,
+ FFFF448101b87fba448101b8,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -2315,108 +2315,108 @@
/* Begin PBXShellScriptBuildPhase section */
/* End PBXShellScriptBuildPhase section */
/* Begin PBXTargetDependency section */
- FFF49cc04b407f899cc04b40 /* PBXTargetDependency */ = {
+ FFF4441081907fba44108190 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = FFFA9c8a0f907f899c8a0f90 /* PxFoundation */;
- targetProxy = FFF59c8a0f907f899c8a0f90 /* PBXContainerItemProxy */;
+ target = FFFA4318c2b07fba4318c2b0 /* PxFoundation */;
+ targetProxy = FFF54318c2b07fba4318c2b0 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of LowLevel */
- FFFF9ce0f7407f899ce0f740 /* px_globals.cpp in API Source */= { isa = PBXBuildFile; fileRef = FFFD9ce0f7407f899ce0f740 /* px_globals.cpp */; };
- FFFF9ce120c07f899ce120c0 /* PxsCCD.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD9ce120c07f899ce120c0 /* PxsCCD.cpp */; };
- FFFF9ce121287f899ce12128 /* PxsContactManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD9ce121287f899ce12128 /* PxsContactManager.cpp */; };
- FFFF9ce121907f899ce12190 /* PxsContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD9ce121907f899ce12190 /* PxsContext.cpp */; };
- FFFF9ce121f87f899ce121f8 /* PxsDefaultMemoryManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD9ce121f87f899ce121f8 /* PxsDefaultMemoryManager.cpp */; };
- FFFF9ce122607f899ce12260 /* PxsIslandSim.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD9ce122607f899ce12260 /* PxsIslandSim.cpp */; };
- FFFF9ce122c87f899ce122c8 /* PxsMaterialCombiner.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD9ce122c87f899ce122c8 /* PxsMaterialCombiner.cpp */; };
- FFFF9ce123307f899ce12330 /* PxsNphaseImplementationContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD9ce123307f899ce12330 /* PxsNphaseImplementationContext.cpp */; };
- FFFF9ce123987f899ce12398 /* PxsSimpleIslandManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD9ce123987f899ce12398 /* PxsSimpleIslandManager.cpp */; };
- FFFF9c1cf8007f899c1cf800 /* collision/PxcContact.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD9c1cf8007f899c1cf800 /* collision/PxcContact.cpp */; };
- FFFF9c1cf8687f899c1cf868 /* pipeline/PxcContactCache.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD9c1cf8687f899c1cf868 /* pipeline/PxcContactCache.cpp */; };
- FFFF9c1cf8d07f899c1cf8d0 /* pipeline/PxcContactMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD9c1cf8d07f899c1cf8d0 /* pipeline/PxcContactMethodImpl.cpp */; };
- FFFF9c1cf9387f899c1cf938 /* pipeline/PxcMaterialHeightField.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD9c1cf9387f899c1cf938 /* pipeline/PxcMaterialHeightField.cpp */; };
- FFFF9c1cf9a07f899c1cf9a0 /* pipeline/PxcMaterialMesh.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD9c1cf9a07f899c1cf9a0 /* pipeline/PxcMaterialMesh.cpp */; };
- FFFF9c1cfa087f899c1cfa08 /* pipeline/PxcMaterialMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD9c1cfa087f899c1cfa08 /* pipeline/PxcMaterialMethodImpl.cpp */; };
- FFFF9c1cfa707f899c1cfa70 /* pipeline/PxcMaterialShape.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD9c1cfa707f899c1cfa70 /* pipeline/PxcMaterialShape.cpp */; };
- FFFF9c1cfad87f899c1cfad8 /* pipeline/PxcNpBatch.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD9c1cfad87f899c1cfad8 /* pipeline/PxcNpBatch.cpp */; };
- FFFF9c1cfb407f899c1cfb40 /* pipeline/PxcNpCacheStreamPair.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD9c1cfb407f899c1cfb40 /* pipeline/PxcNpCacheStreamPair.cpp */; };
- FFFF9c1cfba87f899c1cfba8 /* pipeline/PxcNpContactPrepShared.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD9c1cfba87f899c1cfba8 /* pipeline/PxcNpContactPrepShared.cpp */; };
- FFFF9c1cfc107f899c1cfc10 /* pipeline/PxcNpMemBlockPool.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD9c1cfc107f899c1cfc10 /* pipeline/PxcNpMemBlockPool.cpp */; };
- FFFF9c1cfc787f899c1cfc78 /* pipeline/PxcNpThreadContext.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD9c1cfc787f899c1cfc78 /* pipeline/PxcNpThreadContext.cpp */; };
+ FFFF44128b307fba44128b30 /* px_globals.cpp in API Source */= { isa = PBXBuildFile; fileRef = FFFD44128b307fba44128b30 /* px_globals.cpp */; };
+ FFFF4412e1507fba4412e150 /* PxsCCD.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD4412e1507fba4412e150 /* PxsCCD.cpp */; };
+ FFFF4412e1b87fba4412e1b8 /* PxsContactManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD4412e1b87fba4412e1b8 /* PxsContactManager.cpp */; };
+ FFFF4412e2207fba4412e220 /* PxsContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD4412e2207fba4412e220 /* PxsContext.cpp */; };
+ FFFF4412e2887fba4412e288 /* PxsDefaultMemoryManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD4412e2887fba4412e288 /* PxsDefaultMemoryManager.cpp */; };
+ FFFF4412e2f07fba4412e2f0 /* PxsIslandSim.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD4412e2f07fba4412e2f0 /* PxsIslandSim.cpp */; };
+ FFFF4412e3587fba4412e358 /* PxsMaterialCombiner.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD4412e3587fba4412e358 /* PxsMaterialCombiner.cpp */; };
+ FFFF4412e3c07fba4412e3c0 /* PxsNphaseImplementationContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD4412e3c07fba4412e3c0 /* PxsNphaseImplementationContext.cpp */; };
+ FFFF4412e4287fba4412e428 /* PxsSimpleIslandManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD4412e4287fba4412e428 /* PxsSimpleIslandManager.cpp */; };
+ FFFF448174007fba44817400 /* collision/PxcContact.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD448174007fba44817400 /* collision/PxcContact.cpp */; };
+ FFFF448174687fba44817468 /* pipeline/PxcContactCache.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD448174687fba44817468 /* pipeline/PxcContactCache.cpp */; };
+ FFFF448174d07fba448174d0 /* pipeline/PxcContactMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD448174d07fba448174d0 /* pipeline/PxcContactMethodImpl.cpp */; };
+ FFFF448175387fba44817538 /* pipeline/PxcMaterialHeightField.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD448175387fba44817538 /* pipeline/PxcMaterialHeightField.cpp */; };
+ FFFF448175a07fba448175a0 /* pipeline/PxcMaterialMesh.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD448175a07fba448175a0 /* pipeline/PxcMaterialMesh.cpp */; };
+ FFFF448176087fba44817608 /* pipeline/PxcMaterialMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD448176087fba44817608 /* pipeline/PxcMaterialMethodImpl.cpp */; };
+ FFFF448176707fba44817670 /* pipeline/PxcMaterialShape.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD448176707fba44817670 /* pipeline/PxcMaterialShape.cpp */; };
+ FFFF448176d87fba448176d8 /* pipeline/PxcNpBatch.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD448176d87fba448176d8 /* pipeline/PxcNpBatch.cpp */; };
+ FFFF448177407fba44817740 /* pipeline/PxcNpCacheStreamPair.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD448177407fba44817740 /* pipeline/PxcNpCacheStreamPair.cpp */; };
+ FFFF448177a87fba448177a8 /* pipeline/PxcNpContactPrepShared.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD448177a87fba448177a8 /* pipeline/PxcNpContactPrepShared.cpp */; };
+ FFFF448178107fba44817810 /* pipeline/PxcNpMemBlockPool.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD448178107fba44817810 /* pipeline/PxcNpMemBlockPool.cpp */; };
+ FFFF448178787fba44817878 /* pipeline/PxcNpThreadContext.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD448178787fba44817878 /* pipeline/PxcNpThreadContext.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFD9cdf92b07f899cdf92b0 /* LowLevel */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevel"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFD9ce0f7407f899ce0f740 /* px_globals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "px_globals.cpp"; path = "../../LowLevel/API/src/px_globals.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9ce10f507f899ce10f50 /* PxsMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCore.h"; path = "../../LowLevel/API/include/PxsMaterialCore.h"; sourceTree = SOURCE_ROOT; };
- FFFD9ce10fb87f899ce10fb8 /* PxsMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialManager.h"; path = "../../LowLevel/API/include/PxsMaterialManager.h"; sourceTree = SOURCE_ROOT; };
- FFFD9ce110207f899ce11020 /* PxvConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvConfig.h"; path = "../../LowLevel/API/include/PxvConfig.h"; sourceTree = SOURCE_ROOT; };
- FFFD9ce110887f899ce11088 /* PxvContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvContext.h"; path = "../../LowLevel/API/include/PxvContext.h"; sourceTree = SOURCE_ROOT; };
- FFFD9ce110f07f899ce110f0 /* PxvDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvDynamics.h"; path = "../../LowLevel/API/include/PxvDynamics.h"; sourceTree = SOURCE_ROOT; };
- FFFD9ce111587f899ce11158 /* PxvGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGeometry.h"; path = "../../LowLevel/API/include/PxvGeometry.h"; sourceTree = SOURCE_ROOT; };
- FFFD9ce111c07f899ce111c0 /* PxvGlobals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGlobals.h"; path = "../../LowLevel/API/include/PxvGlobals.h"; sourceTree = SOURCE_ROOT; };
- FFFD9ce112287f899ce11228 /* PxvManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvManager.h"; path = "../../LowLevel/API/include/PxvManager.h"; sourceTree = SOURCE_ROOT; };
- FFFD9ce112907f899ce11290 /* PxvSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvSimStats.h"; path = "../../LowLevel/API/include/PxvSimStats.h"; sourceTree = SOURCE_ROOT; };
- FFFD9ce120c07f899ce120c0 /* PxsCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.cpp"; path = "../../LowLevel/software/src/PxsCCD.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9ce121287f899ce12128 /* PxsContactManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.cpp"; path = "../../LowLevel/software/src/PxsContactManager.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9ce121907f899ce12190 /* PxsContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.cpp"; path = "../../LowLevel/software/src/PxsContext.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9ce121f87f899ce121f8 /* PxsDefaultMemoryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.cpp"; path = "../../LowLevel/software/src/PxsDefaultMemoryManager.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9ce122607f899ce12260 /* PxsIslandSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.cpp"; path = "../../LowLevel/software/src/PxsIslandSim.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9ce122c87f899ce122c8 /* PxsMaterialCombiner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.cpp"; path = "../../LowLevel/software/src/PxsMaterialCombiner.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9ce123307f899ce12330 /* PxsNphaseImplementationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.cpp"; path = "../../LowLevel/software/src/PxsNphaseImplementationContext.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9ce123987f899ce12398 /* PxsSimpleIslandManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.cpp"; path = "../../LowLevel/software/src/PxsSimpleIslandManager.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c1d0e007f899c1d0e00 /* PxsBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsBodySim.h"; path = "../../LowLevel/software/include/PxsBodySim.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1d0e687f899c1d0e68 /* PxsCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.h"; path = "../../LowLevel/software/include/PxsCCD.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1d0ed07f899c1d0ed0 /* PxsContactManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.h"; path = "../../LowLevel/software/include/PxsContactManager.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1d0f387f899c1d0f38 /* PxsContactManagerState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManagerState.h"; path = "../../LowLevel/software/include/PxsContactManagerState.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1d0fa07f899c1d0fa0 /* PxsContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.h"; path = "../../LowLevel/software/include/PxsContext.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1d10087f899c1d1008 /* PxsDefaultMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.h"; path = "../../LowLevel/software/include/PxsDefaultMemoryManager.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1d10707f899c1d1070 /* PxsHeapMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsHeapMemoryAllocator.h"; path = "../../LowLevel/software/include/PxsHeapMemoryAllocator.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1d10d87f899c1d10d8 /* PxsIncrementalConstraintPartitioning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIncrementalConstraintPartitioning.h"; path = "../../LowLevel/software/include/PxsIncrementalConstraintPartitioning.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1d11407f899c1d1140 /* PxsIslandManagerTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandManagerTypes.h"; path = "../../LowLevel/software/include/PxsIslandManagerTypes.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1d11a87f899c1d11a8 /* PxsIslandSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.h"; path = "../../LowLevel/software/include/PxsIslandSim.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1d12107f899c1d1210 /* PxsKernelWrangler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsKernelWrangler.h"; path = "../../LowLevel/software/include/PxsKernelWrangler.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1d12787f899c1d1278 /* PxsMaterialCombiner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.h"; path = "../../LowLevel/software/include/PxsMaterialCombiner.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1d12e07f899c1d12e0 /* PxsMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMemoryManager.h"; path = "../../LowLevel/software/include/PxsMemoryManager.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1d13487f899c1d1348 /* PxsNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxsNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1d13b07f899c1d13b0 /* PxsRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsRigidBody.h"; path = "../../LowLevel/software/include/PxsRigidBody.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1d14187f899c1d1418 /* PxsShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsShapeSim.h"; path = "../../LowLevel/software/include/PxsShapeSim.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1d14807f899c1d1480 /* PxsSimpleIslandManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.h"; path = "../../LowLevel/software/include/PxsSimpleIslandManager.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1d14e87f899c1d14e8 /* PxsSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimulationController.h"; path = "../../LowLevel/software/include/PxsSimulationController.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1d15507f899c1d1550 /* PxsTransformCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsTransformCache.h"; path = "../../LowLevel/software/include/PxsTransformCache.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1d15b87f899c1d15b8 /* PxvNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxvNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1cf8007f899c1cf800 /* collision/PxcContact.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContact.cpp"; path = "../../LowLevel/common/src/collision/PxcContact.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c1cf8687f899c1cf868 /* pipeline/PxcContactCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactCache.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c1cf8d07f899c1cf8d0 /* pipeline/PxcContactMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactMethodImpl.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c1cf9387f899c1cf938 /* pipeline/PxcMaterialHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialHeightField.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialHeightField.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c1cf9a07f899c1cf9a0 /* pipeline/PxcMaterialMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMesh.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMesh.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c1cfa087f899c1cfa08 /* pipeline/PxcMaterialMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMethodImpl.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c1cfa707f899c1cfa70 /* pipeline/PxcMaterialShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialShape.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialShape.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c1cfad87f899c1cfad8 /* pipeline/PxcNpBatch.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpBatch.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c1cfb407f899c1cfb40 /* pipeline/PxcNpCacheStreamPair.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpCacheStreamPair.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c1cfba87f899c1cfba8 /* pipeline/PxcNpContactPrepShared.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpContactPrepShared.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c1cfc107f899c1cfc10 /* pipeline/PxcNpMemBlockPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpMemBlockPool.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c1cfc787f899c1cfc78 /* pipeline/PxcNpThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpThreadContext.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9c1d00007f899c1d0000 /* collision/PxcContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContactMethodImpl.h"; path = "../../LowLevel/common/include/collision/PxcContactMethodImpl.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1d00687f899c1d0068 /* pipeline/PxcCCDStateStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcCCDStateStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcCCDStateStreamPair.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1d00d07f899c1d00d0 /* pipeline/PxcConstraintBlockStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcConstraintBlockStream.h"; path = "../../LowLevel/common/include/pipeline/PxcConstraintBlockStream.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1d01387f899c1d0138 /* pipeline/PxcContactCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.h"; path = "../../LowLevel/common/include/pipeline/PxcContactCache.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1d01a07f899c1d01a0 /* pipeline/PxcMaterialMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.h"; path = "../../LowLevel/common/include/pipeline/PxcMaterialMethodImpl.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1d02087f899c1d0208 /* pipeline/PxcNpBatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.h"; path = "../../LowLevel/common/include/pipeline/PxcNpBatch.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1d02707f899c1d0270 /* pipeline/PxcNpCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCache.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCache.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1d02d87f899c1d02d8 /* pipeline/PxcNpCacheStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCacheStreamPair.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1d03407f899c1d0340 /* pipeline/PxcNpContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.h"; path = "../../LowLevel/common/include/pipeline/PxcNpContactPrepShared.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1d03a87f899c1d03a8 /* pipeline/PxcNpMemBlockPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.h"; path = "../../LowLevel/common/include/pipeline/PxcNpMemBlockPool.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1d04107f899c1d0410 /* pipeline/PxcNpThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.h"; path = "../../LowLevel/common/include/pipeline/PxcNpThreadContext.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1d04787f899c1d0478 /* pipeline/PxcNpWorkUnit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpWorkUnit.h"; path = "../../LowLevel/common/include/pipeline/PxcNpWorkUnit.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1d04e07f899c1d04e0 /* pipeline/PxcRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcRigidBody.h"; path = "../../LowLevel/common/include/pipeline/PxcRigidBody.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1d05487f899c1d0548 /* utils/PxcScratchAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "utils/PxcScratchAllocator.h"; path = "../../LowLevel/common/include/utils/PxcScratchAllocator.h"; sourceTree = SOURCE_ROOT; };
- FFFD9c1d05b07f899c1d05b0 /* utils/PxcThreadCoherentCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "utils/PxcThreadCoherentCache.h"; path = "../../LowLevel/common/include/utils/PxcThreadCoherentCache.h"; sourceTree = SOURCE_ROOT; };
+ FFFD441270b07fba441270b0 /* LowLevel */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevel"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFD44128b307fba44128b30 /* px_globals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "px_globals.cpp"; path = "../../LowLevel/API/src/px_globals.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4412b7a07fba4412b7a0 /* PxsMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCore.h"; path = "../../LowLevel/API/include/PxsMaterialCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4412b8087fba4412b808 /* PxsMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialManager.h"; path = "../../LowLevel/API/include/PxsMaterialManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4412b8707fba4412b870 /* PxvConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvConfig.h"; path = "../../LowLevel/API/include/PxvConfig.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4412b8d87fba4412b8d8 /* PxvContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvContext.h"; path = "../../LowLevel/API/include/PxvContext.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4412b9407fba4412b940 /* PxvDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvDynamics.h"; path = "../../LowLevel/API/include/PxvDynamics.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4412b9a87fba4412b9a8 /* PxvGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGeometry.h"; path = "../../LowLevel/API/include/PxvGeometry.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4412ba107fba4412ba10 /* PxvGlobals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGlobals.h"; path = "../../LowLevel/API/include/PxvGlobals.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4412ba787fba4412ba78 /* PxvManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvManager.h"; path = "../../LowLevel/API/include/PxvManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4412bae07fba4412bae0 /* PxvSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvSimStats.h"; path = "../../LowLevel/API/include/PxvSimStats.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4412e1507fba4412e150 /* PxsCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.cpp"; path = "../../LowLevel/software/src/PxsCCD.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4412e1b87fba4412e1b8 /* PxsContactManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.cpp"; path = "../../LowLevel/software/src/PxsContactManager.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4412e2207fba4412e220 /* PxsContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.cpp"; path = "../../LowLevel/software/src/PxsContext.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4412e2887fba4412e288 /* PxsDefaultMemoryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.cpp"; path = "../../LowLevel/software/src/PxsDefaultMemoryManager.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4412e2f07fba4412e2f0 /* PxsIslandSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.cpp"; path = "../../LowLevel/software/src/PxsIslandSim.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4412e3587fba4412e358 /* PxsMaterialCombiner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.cpp"; path = "../../LowLevel/software/src/PxsMaterialCombiner.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4412e3c07fba4412e3c0 /* PxsNphaseImplementationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.cpp"; path = "../../LowLevel/software/src/PxsNphaseImplementationContext.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4412e4287fba4412e428 /* PxsSimpleIslandManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.cpp"; path = "../../LowLevel/software/src/PxsSimpleIslandManager.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD44818a007fba44818a00 /* PxsBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsBodySim.h"; path = "../../LowLevel/software/include/PxsBodySim.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44818a687fba44818a68 /* PxsCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.h"; path = "../../LowLevel/software/include/PxsCCD.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44818ad07fba44818ad0 /* PxsContactManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.h"; path = "../../LowLevel/software/include/PxsContactManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44818b387fba44818b38 /* PxsContactManagerState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManagerState.h"; path = "../../LowLevel/software/include/PxsContactManagerState.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44818ba07fba44818ba0 /* PxsContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.h"; path = "../../LowLevel/software/include/PxsContext.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44818c087fba44818c08 /* PxsDefaultMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.h"; path = "../../LowLevel/software/include/PxsDefaultMemoryManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44818c707fba44818c70 /* PxsHeapMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsHeapMemoryAllocator.h"; path = "../../LowLevel/software/include/PxsHeapMemoryAllocator.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44818cd87fba44818cd8 /* PxsIncrementalConstraintPartitioning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIncrementalConstraintPartitioning.h"; path = "../../LowLevel/software/include/PxsIncrementalConstraintPartitioning.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44818d407fba44818d40 /* PxsIslandManagerTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandManagerTypes.h"; path = "../../LowLevel/software/include/PxsIslandManagerTypes.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44818da87fba44818da8 /* PxsIslandSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.h"; path = "../../LowLevel/software/include/PxsIslandSim.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44818e107fba44818e10 /* PxsKernelWrangler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsKernelWrangler.h"; path = "../../LowLevel/software/include/PxsKernelWrangler.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44818e787fba44818e78 /* PxsMaterialCombiner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.h"; path = "../../LowLevel/software/include/PxsMaterialCombiner.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44818ee07fba44818ee0 /* PxsMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMemoryManager.h"; path = "../../LowLevel/software/include/PxsMemoryManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44818f487fba44818f48 /* PxsNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxsNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44818fb07fba44818fb0 /* PxsRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsRigidBody.h"; path = "../../LowLevel/software/include/PxsRigidBody.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448190187fba44819018 /* PxsShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsShapeSim.h"; path = "../../LowLevel/software/include/PxsShapeSim.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448190807fba44819080 /* PxsSimpleIslandManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.h"; path = "../../LowLevel/software/include/PxsSimpleIslandManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448190e87fba448190e8 /* PxsSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimulationController.h"; path = "../../LowLevel/software/include/PxsSimulationController.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448191507fba44819150 /* PxsTransformCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsTransformCache.h"; path = "../../LowLevel/software/include/PxsTransformCache.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448191b87fba448191b8 /* PxvNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxvNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448174007fba44817400 /* collision/PxcContact.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContact.cpp"; path = "../../LowLevel/common/src/collision/PxcContact.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448174687fba44817468 /* pipeline/PxcContactCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactCache.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448174d07fba448174d0 /* pipeline/PxcContactMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactMethodImpl.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448175387fba44817538 /* pipeline/PxcMaterialHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialHeightField.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialHeightField.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448175a07fba448175a0 /* pipeline/PxcMaterialMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMesh.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMesh.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448176087fba44817608 /* pipeline/PxcMaterialMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMethodImpl.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448176707fba44817670 /* pipeline/PxcMaterialShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialShape.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialShape.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448176d87fba448176d8 /* pipeline/PxcNpBatch.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpBatch.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448177407fba44817740 /* pipeline/PxcNpCacheStreamPair.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpCacheStreamPair.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448177a87fba448177a8 /* pipeline/PxcNpContactPrepShared.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpContactPrepShared.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448178107fba44817810 /* pipeline/PxcNpMemBlockPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpMemBlockPool.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448178787fba44817878 /* pipeline/PxcNpThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpThreadContext.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD44817c007fba44817c00 /* collision/PxcContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContactMethodImpl.h"; path = "../../LowLevel/common/include/collision/PxcContactMethodImpl.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44817c687fba44817c68 /* pipeline/PxcCCDStateStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcCCDStateStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcCCDStateStreamPair.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44817cd07fba44817cd0 /* pipeline/PxcConstraintBlockStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcConstraintBlockStream.h"; path = "../../LowLevel/common/include/pipeline/PxcConstraintBlockStream.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44817d387fba44817d38 /* pipeline/PxcContactCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.h"; path = "../../LowLevel/common/include/pipeline/PxcContactCache.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44817da07fba44817da0 /* pipeline/PxcMaterialMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.h"; path = "../../LowLevel/common/include/pipeline/PxcMaterialMethodImpl.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44817e087fba44817e08 /* pipeline/PxcNpBatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.h"; path = "../../LowLevel/common/include/pipeline/PxcNpBatch.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44817e707fba44817e70 /* pipeline/PxcNpCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCache.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCache.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44817ed87fba44817ed8 /* pipeline/PxcNpCacheStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCacheStreamPair.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44817f407fba44817f40 /* pipeline/PxcNpContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.h"; path = "../../LowLevel/common/include/pipeline/PxcNpContactPrepShared.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44817fa87fba44817fa8 /* pipeline/PxcNpMemBlockPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.h"; path = "../../LowLevel/common/include/pipeline/PxcNpMemBlockPool.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448180107fba44818010 /* pipeline/PxcNpThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.h"; path = "../../LowLevel/common/include/pipeline/PxcNpThreadContext.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448180787fba44818078 /* pipeline/PxcNpWorkUnit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpWorkUnit.h"; path = "../../LowLevel/common/include/pipeline/PxcNpWorkUnit.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448180e07fba448180e0 /* pipeline/PxcRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcRigidBody.h"; path = "../../LowLevel/common/include/pipeline/PxcRigidBody.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448181487fba44818148 /* utils/PxcScratchAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "utils/PxcScratchAllocator.h"; path = "../../LowLevel/common/include/utils/PxcScratchAllocator.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448181b07fba448181b0 /* 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 */
- FFF29cdf92b07f899cdf92b0 /* Resources */ = {
+ FFF2441270b07fba441270b0 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2426,7 +2426,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFC9cdf92b07f899cdf92b0 /* Frameworks */ = {
+ FFFC441270b07fba441270b0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2436,31 +2436,31 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF89cdf92b07f899cdf92b0 /* Sources */ = {
+ FFF8441270b07fba441270b0 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFF9ce0f7407f899ce0f740,
- FFFF9ce120c07f899ce120c0,
- FFFF9ce121287f899ce12128,
- FFFF9ce121907f899ce12190,
- FFFF9ce121f87f899ce121f8,
- FFFF9ce122607f899ce12260,
- FFFF9ce122c87f899ce122c8,
- FFFF9ce123307f899ce12330,
- FFFF9ce123987f899ce12398,
- FFFF9c1cf8007f899c1cf800,
- FFFF9c1cf8687f899c1cf868,
- FFFF9c1cf8d07f899c1cf8d0,
- FFFF9c1cf9387f899c1cf938,
- FFFF9c1cf9a07f899c1cf9a0,
- FFFF9c1cfa087f899c1cfa08,
- FFFF9c1cfa707f899c1cfa70,
- FFFF9c1cfad87f899c1cfad8,
- FFFF9c1cfb407f899c1cfb40,
- FFFF9c1cfba87f899c1cfba8,
- FFFF9c1cfc107f899c1cfc10,
- FFFF9c1cfc787f899c1cfc78,
+ FFFF44128b307fba44128b30,
+ FFFF4412e1507fba4412e150,
+ FFFF4412e1b87fba4412e1b8,
+ FFFF4412e2207fba4412e220,
+ FFFF4412e2887fba4412e288,
+ FFFF4412e2f07fba4412e2f0,
+ FFFF4412e3587fba4412e358,
+ FFFF4412e3c07fba4412e3c0,
+ FFFF4412e4287fba4412e428,
+ FFFF448174007fba44817400,
+ FFFF448174687fba44817468,
+ FFFF448174d07fba448174d0,
+ FFFF448175387fba44817538,
+ FFFF448175a07fba448175a0,
+ FFFF448176087fba44817608,
+ FFFF448176707fba44817670,
+ FFFF448176d87fba448176d8,
+ FFFF448177407fba44817740,
+ FFFF448177a87fba448177a8,
+ FFFF448178107fba44817810,
+ FFFF448178787fba44817878,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -2472,38 +2472,38 @@
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of LowLevelAABB */
- FFFF9d805c707f899d805c70 /* BpBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d805c707f899d805c70 /* BpBroadPhase.cpp */; };
- FFFF9d805cd87f899d805cd8 /* BpBroadPhaseMBP.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d805cd87f899d805cd8 /* BpBroadPhaseMBP.cpp */; };
- FFFF9d805d407f899d805d40 /* BpBroadPhaseSap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d805d407f899d805d40 /* BpBroadPhaseSap.cpp */; };
- FFFF9d805da87f899d805da8 /* BpBroadPhaseSapAux.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d805da87f899d805da8 /* BpBroadPhaseSapAux.cpp */; };
- FFFF9d805e107f899d805e10 /* BpMBPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d805e107f899d805e10 /* BpMBPTasks.cpp */; };
- FFFF9d805e787f899d805e78 /* BpSAPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d805e787f899d805e78 /* BpSAPTasks.cpp */; };
- FFFF9d805ee07f899d805ee0 /* BpSimpleAABBManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d805ee07f899d805ee0 /* BpSimpleAABBManager.cpp */; };
+ FFFF448218707fba44821870 /* BpBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448218707fba44821870 /* BpBroadPhase.cpp */; };
+ FFFF448218d87fba448218d8 /* BpBroadPhaseMBP.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448218d87fba448218d8 /* BpBroadPhaseMBP.cpp */; };
+ FFFF448219407fba44821940 /* BpBroadPhaseSap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448219407fba44821940 /* BpBroadPhaseSap.cpp */; };
+ FFFF448219a87fba448219a8 /* BpBroadPhaseSapAux.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448219a87fba448219a8 /* BpBroadPhaseSapAux.cpp */; };
+ FFFF44821a107fba44821a10 /* BpMBPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD44821a107fba44821a10 /* BpMBPTasks.cpp */; };
+ FFFF44821a787fba44821a78 /* BpSAPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD44821a787fba44821a78 /* BpSAPTasks.cpp */; };
+ FFFF44821ae07fba44821ae0 /* BpSimpleAABBManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD44821ae07fba44821ae0 /* BpSimpleAABBManager.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFD9cf0adc07f899cf0adc0 /* LowLevelAABB */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelAABB"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFD9cf0d4a07f899cf0d4a0 /* BpAABBManagerTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpAABBManagerTasks.h"; path = "../../LowLevelAABB/include/BpAABBManagerTasks.h"; sourceTree = SOURCE_ROOT; };
- FFFD9cf0d5087f899cf0d508 /* BpBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.h"; path = "../../LowLevelAABB/include/BpBroadPhase.h"; sourceTree = SOURCE_ROOT; };
- FFFD9cf0d5707f899cf0d570 /* BpBroadPhaseUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseUpdate.h"; path = "../../LowLevelAABB/include/BpBroadPhaseUpdate.h"; sourceTree = SOURCE_ROOT; };
- FFFD9cf0d5d87f899cf0d5d8 /* BpSimpleAABBManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.h"; path = "../../LowLevelAABB/include/BpSimpleAABBManager.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d805a007f899d805a00 /* BpBroadPhaseMBP.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d805a687f899d805a68 /* BpBroadPhaseMBPCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBPCommon.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBPCommon.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d805ad07f899d805ad0 /* BpBroadPhaseSap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d805b387f899d805b38 /* BpBroadPhaseSapAux.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d805ba07f899d805ba0 /* BpMBPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.h"; path = "../../LowLevelAABB/src/BpMBPTasks.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d805c087f899d805c08 /* BpSAPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.h"; path = "../../LowLevelAABB/src/BpSAPTasks.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d805c707f899d805c70 /* BpBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.cpp"; path = "../../LowLevelAABB/src/BpBroadPhase.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d805cd87f899d805cd8 /* BpBroadPhaseMBP.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d805d407f899d805d40 /* BpBroadPhaseSap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d805da87f899d805da8 /* BpBroadPhaseSapAux.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d805e107f899d805e10 /* BpMBPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.cpp"; path = "../../LowLevelAABB/src/BpMBPTasks.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d805e787f899d805e78 /* BpSAPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.cpp"; path = "../../LowLevelAABB/src/BpSAPTasks.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d805ee07f899d805ee0 /* BpSimpleAABBManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.cpp"; path = "../../LowLevelAABB/src/BpSimpleAABBManager.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD44154f407fba44154f40 /* LowLevelAABB */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelAABB"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFD441522a07fba441522a0 /* BpAABBManagerTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpAABBManagerTasks.h"; path = "../../LowLevelAABB/include/BpAABBManagerTasks.h"; sourceTree = SOURCE_ROOT; };
+ FFFD441523087fba44152308 /* BpBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.h"; path = "../../LowLevelAABB/include/BpBroadPhase.h"; sourceTree = SOURCE_ROOT; };
+ FFFD441523707fba44152370 /* BpBroadPhaseUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseUpdate.h"; path = "../../LowLevelAABB/include/BpBroadPhaseUpdate.h"; sourceTree = SOURCE_ROOT; };
+ FFFD441523d87fba441523d8 /* BpSimpleAABBManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.h"; path = "../../LowLevelAABB/include/BpSimpleAABBManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448216007fba44821600 /* BpBroadPhaseMBP.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448216687fba44821668 /* BpBroadPhaseMBPCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBPCommon.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBPCommon.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448216d07fba448216d0 /* BpBroadPhaseSap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448217387fba44821738 /* BpBroadPhaseSapAux.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448217a07fba448217a0 /* BpMBPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.h"; path = "../../LowLevelAABB/src/BpMBPTasks.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448218087fba44821808 /* BpSAPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.h"; path = "../../LowLevelAABB/src/BpSAPTasks.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448218707fba44821870 /* BpBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.cpp"; path = "../../LowLevelAABB/src/BpBroadPhase.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448218d87fba448218d8 /* BpBroadPhaseMBP.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448219407fba44821940 /* BpBroadPhaseSap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448219a87fba448219a8 /* BpBroadPhaseSapAux.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD44821a107fba44821a10 /* BpMBPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.cpp"; path = "../../LowLevelAABB/src/BpMBPTasks.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD44821a787fba44821a78 /* BpSAPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.cpp"; path = "../../LowLevelAABB/src/BpSAPTasks.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD44821ae07fba44821ae0 /* BpSimpleAABBManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.cpp"; path = "../../LowLevelAABB/src/BpSimpleAABBManager.cpp"; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */
/* Begin PBXResourcesBuildPhase section */
- FFF29cf0adc07f899cf0adc0 /* Resources */ = {
+ FFF244154f407fba44154f40 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2513,7 +2513,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFC9cf0adc07f899cf0adc0 /* Frameworks */ = {
+ FFFC44154f407fba44154f40 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2523,17 +2523,17 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF89cf0adc07f899cf0adc0 /* Sources */ = {
+ FFF844154f407fba44154f40 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFF9d805c707f899d805c70,
- FFFF9d805cd87f899d805cd8,
- FFFF9d805d407f899d805d40,
- FFFF9d805da87f899d805da8,
- FFFF9d805e107f899d805e10,
- FFFF9d805e787f899d805e78,
- FFFF9d805ee07f899d805ee0,
+ FFFF448218707fba44821870,
+ FFFF448218d87fba448218d8,
+ FFFF448219407fba44821940,
+ FFFF448219a87fba448219a8,
+ FFFF44821a107fba44821a10,
+ FFFF44821a787fba44821a78,
+ FFFF44821ae07fba44821ae0,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -2545,105 +2545,105 @@
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of LowLevelDynamics */
- FFFF9d0282007f899d028200 /* DyArticulation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD9d0282007f899d028200 /* DyArticulation.cpp */; };
- FFFF9d0282687f899d028268 /* DyArticulationContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD9d0282687f899d028268 /* DyArticulationContactPrep.cpp */; };
- FFFF9d0282d07f899d0282d0 /* DyArticulationContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD9d0282d07f899d0282d0 /* DyArticulationContactPrepPF.cpp */; };
- FFFF9d0283387f899d028338 /* DyArticulationHelper.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD9d0283387f899d028338 /* DyArticulationHelper.cpp */; };
- FFFF9d0283a07f899d0283a0 /* DyArticulationSIMD.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD9d0283a07f899d0283a0 /* DyArticulationSIMD.cpp */; };
- FFFF9d0284087f899d028408 /* DyArticulationScalar.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD9d0284087f899d028408 /* DyArticulationScalar.cpp */; };
- FFFF9d0284707f899d028470 /* DyConstraintPartition.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD9d0284707f899d028470 /* DyConstraintPartition.cpp */; };
- FFFF9d0284d87f899d0284d8 /* DyConstraintSetup.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD9d0284d87f899d0284d8 /* DyConstraintSetup.cpp */; };
- FFFF9d0285407f899d028540 /* DyConstraintSetupBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD9d0285407f899d028540 /* DyConstraintSetupBlock.cpp */; };
- FFFF9d0285a87f899d0285a8 /* DyContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD9d0285a87f899d0285a8 /* DyContactPrep.cpp */; };
- FFFF9d0286107f899d028610 /* DyContactPrep4.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD9d0286107f899d028610 /* DyContactPrep4.cpp */; };
- FFFF9d0286787f899d028678 /* DyContactPrep4PF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD9d0286787f899d028678 /* DyContactPrep4PF.cpp */; };
- FFFF9d0286e07f899d0286e0 /* DyContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD9d0286e07f899d0286e0 /* DyContactPrepPF.cpp */; };
- FFFF9d0287487f899d028748 /* DyDynamics.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD9d0287487f899d028748 /* DyDynamics.cpp */; };
- FFFF9d0287b07f899d0287b0 /* DyFrictionCorrelation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD9d0287b07f899d0287b0 /* DyFrictionCorrelation.cpp */; };
- FFFF9d0288187f899d028818 /* DyRigidBodyToSolverBody.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD9d0288187f899d028818 /* DyRigidBodyToSolverBody.cpp */; };
- FFFF9d0288807f899d028880 /* DySolverConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD9d0288807f899d028880 /* DySolverConstraints.cpp */; };
- FFFF9d0288e87f899d0288e8 /* DySolverConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD9d0288e87f899d0288e8 /* DySolverConstraintsBlock.cpp */; };
- FFFF9d0289507f899d028950 /* DySolverControl.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD9d0289507f899d028950 /* DySolverControl.cpp */; };
- FFFF9d0289b87f899d0289b8 /* DySolverControlPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD9d0289b87f899d0289b8 /* DySolverControlPF.cpp */; };
- FFFF9d028a207f899d028a20 /* DySolverPFConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD9d028a207f899d028a20 /* DySolverPFConstraints.cpp */; };
- FFFF9d028a887f899d028a88 /* DySolverPFConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD9d028a887f899d028a88 /* DySolverPFConstraintsBlock.cpp */; };
- FFFF9d028af07f899d028af0 /* DyThreadContext.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD9d028af07f899d028af0 /* DyThreadContext.cpp */; };
- FFFF9d028b587f899d028b58 /* DyThresholdTable.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD9d028b587f899d028b58 /* DyThresholdTable.cpp */; };
+ FFFF4482a0007fba4482a000 /* DyArticulation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD4482a0007fba4482a000 /* DyArticulation.cpp */; };
+ FFFF4482a0687fba4482a068 /* DyArticulationContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD4482a0687fba4482a068 /* DyArticulationContactPrep.cpp */; };
+ FFFF4482a0d07fba4482a0d0 /* DyArticulationContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD4482a0d07fba4482a0d0 /* DyArticulationContactPrepPF.cpp */; };
+ FFFF4482a1387fba4482a138 /* DyArticulationHelper.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD4482a1387fba4482a138 /* DyArticulationHelper.cpp */; };
+ FFFF4482a1a07fba4482a1a0 /* DyArticulationSIMD.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD4482a1a07fba4482a1a0 /* DyArticulationSIMD.cpp */; };
+ FFFF4482a2087fba4482a208 /* DyArticulationScalar.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD4482a2087fba4482a208 /* DyArticulationScalar.cpp */; };
+ FFFF4482a2707fba4482a270 /* DyConstraintPartition.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD4482a2707fba4482a270 /* DyConstraintPartition.cpp */; };
+ FFFF4482a2d87fba4482a2d8 /* DyConstraintSetup.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD4482a2d87fba4482a2d8 /* DyConstraintSetup.cpp */; };
+ FFFF4482a3407fba4482a340 /* DyConstraintSetupBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD4482a3407fba4482a340 /* DyConstraintSetupBlock.cpp */; };
+ FFFF4482a3a87fba4482a3a8 /* DyContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD4482a3a87fba4482a3a8 /* DyContactPrep.cpp */; };
+ FFFF4482a4107fba4482a410 /* DyContactPrep4.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD4482a4107fba4482a410 /* DyContactPrep4.cpp */; };
+ FFFF4482a4787fba4482a478 /* DyContactPrep4PF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD4482a4787fba4482a478 /* DyContactPrep4PF.cpp */; };
+ FFFF4482a4e07fba4482a4e0 /* DyContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD4482a4e07fba4482a4e0 /* DyContactPrepPF.cpp */; };
+ FFFF4482a5487fba4482a548 /* DyDynamics.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD4482a5487fba4482a548 /* DyDynamics.cpp */; };
+ FFFF4482a5b07fba4482a5b0 /* DyFrictionCorrelation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD4482a5b07fba4482a5b0 /* DyFrictionCorrelation.cpp */; };
+ FFFF4482a6187fba4482a618 /* DyRigidBodyToSolverBody.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD4482a6187fba4482a618 /* DyRigidBodyToSolverBody.cpp */; };
+ FFFF4482a6807fba4482a680 /* DySolverConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD4482a6807fba4482a680 /* DySolverConstraints.cpp */; };
+ FFFF4482a6e87fba4482a6e8 /* DySolverConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD4482a6e87fba4482a6e8 /* DySolverConstraintsBlock.cpp */; };
+ FFFF4482a7507fba4482a750 /* DySolverControl.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD4482a7507fba4482a750 /* DySolverControl.cpp */; };
+ FFFF4482a7b87fba4482a7b8 /* DySolverControlPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD4482a7b87fba4482a7b8 /* DySolverControlPF.cpp */; };
+ FFFF4482a8207fba4482a820 /* DySolverPFConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD4482a8207fba4482a820 /* DySolverPFConstraints.cpp */; };
+ FFFF4482a8887fba4482a888 /* DySolverPFConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD4482a8887fba4482a888 /* DySolverPFConstraintsBlock.cpp */; };
+ FFFF4482a8f07fba4482a8f0 /* DyThreadContext.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD4482a8f07fba4482a8f0 /* DyThreadContext.cpp */; };
+ FFFF4482a9587fba4482a958 /* DyThresholdTable.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD4482a9587fba4482a958 /* DyThresholdTable.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFD9cc550007f899cc55000 /* LowLevelDynamics */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelDynamics"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFD9d0282007f899d028200 /* DyArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.cpp"; path = "../../LowLevelDynamics/src/DyArticulation.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0282687f899d028268 /* DyArticulationContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0282d07f899d0282d0 /* DyArticulationContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0283387f899d028338 /* DyArticulationHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.cpp"; path = "../../LowLevelDynamics/src/DyArticulationHelper.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0283a07f899d0283a0 /* DyArticulationSIMD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationSIMD.cpp"; path = "../../LowLevelDynamics/src/DyArticulationSIMD.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0284087f899d028408 /* DyArticulationScalar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.cpp"; path = "../../LowLevelDynamics/src/DyArticulationScalar.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0284707f899d028470 /* DyConstraintPartition.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.cpp"; path = "../../LowLevelDynamics/src/DyConstraintPartition.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0284d87f899d0284d8 /* DyConstraintSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetup.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetup.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0285407f899d028540 /* DyConstraintSetupBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetupBlock.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetupBlock.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0285a87f899d0285a8 /* DyContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0286107f899d028610 /* DyContactPrep4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0286787f899d028678 /* DyContactPrep4PF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4PF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4PF.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0286e07f899d0286e0 /* DyContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0287487f899d028748 /* DyDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.cpp"; path = "../../LowLevelDynamics/src/DyDynamics.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0287b07f899d0287b0 /* DyFrictionCorrelation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionCorrelation.cpp"; path = "../../LowLevelDynamics/src/DyFrictionCorrelation.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0288187f899d028818 /* DyRigidBodyToSolverBody.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyRigidBodyToSolverBody.cpp"; path = "../../LowLevelDynamics/src/DyRigidBodyToSolverBody.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0288807f899d028880 /* DySolverConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraints.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0288e87f899d0288e8 /* DySolverConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0289507f899d028950 /* DySolverControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.cpp"; path = "../../LowLevelDynamics/src/DySolverControl.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0289b87f899d0289b8 /* DySolverControlPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.cpp"; path = "../../LowLevelDynamics/src/DySolverControlPF.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d028a207f899d028a20 /* DySolverPFConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraints.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d028a887f899d028a88 /* DySolverPFConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d028af07f899d028af0 /* DyThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.cpp"; path = "../../LowLevelDynamics/src/DyThreadContext.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d028b587f899d028b58 /* DyThresholdTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.cpp"; path = "../../LowLevelDynamics/src/DyThresholdTable.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9cc43f507f899cc43f50 /* DyArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.h"; path = "../../LowLevelDynamics/include/DyArticulation.h"; sourceTree = SOURCE_ROOT; };
- FFFD9cc43fb87f899cc43fb8 /* DyConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraint.h"; path = "../../LowLevelDynamics/include/DyConstraint.h"; sourceTree = SOURCE_ROOT; };
- FFFD9cc440207f899cc44020 /* DyConstraintWriteBack.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintWriteBack.h"; path = "../../LowLevelDynamics/include/DyConstraintWriteBack.h"; sourceTree = SOURCE_ROOT; };
- FFFD9cc440887f899cc44088 /* DyContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContext.h"; path = "../../LowLevelDynamics/include/DyContext.h"; sourceTree = SOURCE_ROOT; };
- FFFD9cc440f07f899cc440f0 /* DySleepingConfigulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySleepingConfigulation.h"; path = "../../LowLevelDynamics/include/DySleepingConfigulation.h"; sourceTree = SOURCE_ROOT; };
- FFFD9cc441587f899cc44158 /* DyThresholdTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.h"; path = "../../LowLevelDynamics/include/DyThresholdTable.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0294007f899d029400 /* DyArticulationContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.h"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0294687f899d029468 /* DyArticulationFnsDebug.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsDebug.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsDebug.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0294d07f899d0294d0 /* DyArticulationFnsScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsScalar.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0295387f899d029538 /* DyArticulationFnsSimd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsSimd.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsSimd.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0295a07f899d0295a0 /* DyArticulationHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.h"; path = "../../LowLevelDynamics/src/DyArticulationHelper.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0296087f899d029608 /* DyArticulationPImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationPImpl.h"; path = "../../LowLevelDynamics/src/DyArticulationPImpl.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0296707f899d029670 /* DyArticulationReference.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationReference.h"; path = "../../LowLevelDynamics/src/DyArticulationReference.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0296d87f899d0296d8 /* DyArticulationScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationScalar.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0297407f899d029740 /* DyArticulationUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationUtils.h"; path = "../../LowLevelDynamics/src/DyArticulationUtils.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0297a87f899d0297a8 /* DyBodyCoreIntegrator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyBodyCoreIntegrator.h"; path = "../../LowLevelDynamics/src/DyBodyCoreIntegrator.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0298107f899d029810 /* DyConstraintPartition.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.h"; path = "../../LowLevelDynamics/src/DyConstraintPartition.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0298787f899d029878 /* DyConstraintPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPrep.h"; path = "../../LowLevelDynamics/src/DyConstraintPrep.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0298e07f899d0298e0 /* DyContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.h"; path = "../../LowLevelDynamics/src/DyContactPrep.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0299487f899d029948 /* DyContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepShared.h"; path = "../../LowLevelDynamics/src/DyContactPrepShared.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0299b07f899d0299b0 /* DyContactReduction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactReduction.h"; path = "../../LowLevelDynamics/src/DyContactReduction.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d029a187f899d029a18 /* DyCorrelationBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyCorrelationBuffer.h"; path = "../../LowLevelDynamics/src/DyCorrelationBuffer.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d029a807f899d029a80 /* DyDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.h"; path = "../../LowLevelDynamics/src/DyDynamics.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d029ae87f899d029ae8 /* DyFrictionPatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatch.h"; path = "../../LowLevelDynamics/src/DyFrictionPatch.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d029b507f899d029b50 /* DyFrictionPatchStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatchStreamPair.h"; path = "../../LowLevelDynamics/src/DyFrictionPatchStreamPair.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d029bb87f899d029bb8 /* DySolverBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverBody.h"; path = "../../LowLevelDynamics/src/DySolverBody.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d029c207f899d029c20 /* DySolverConstraint1D.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d029c887f899d029c88 /* DySolverConstraint1D4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D4.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D4.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d029cf07f899d029cf0 /* DySolverConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintDesc.h"; path = "../../LowLevelDynamics/src/DySolverConstraintDesc.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d029d587f899d029d58 /* DySolverConstraintExtShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintExtShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintExtShared.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d029dc07f899d029dc0 /* DySolverConstraintTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintTypes.h"; path = "../../LowLevelDynamics/src/DySolverConstraintTypes.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d029e287f899d029e28 /* DySolverConstraintsShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintsShared.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d029e907f899d029e90 /* DySolverContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact.h"; path = "../../LowLevelDynamics/src/DySolverContact.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d029ef87f899d029ef8 /* DySolverContact4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact4.h"; path = "../../LowLevelDynamics/src/DySolverContact4.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d029f607f899d029f60 /* DySolverContactPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF.h"; path = "../../LowLevelDynamics/src/DySolverContactPF.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d029fc87f899d029fc8 /* DySolverContactPF4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF4.h"; path = "../../LowLevelDynamics/src/DySolverContactPF4.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d02a0307f899d02a030 /* DySolverContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContext.h"; path = "../../LowLevelDynamics/src/DySolverContext.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d02a0987f899d02a098 /* DySolverControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.h"; path = "../../LowLevelDynamics/src/DySolverControl.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d02a1007f899d02a100 /* DySolverControlPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.h"; path = "../../LowLevelDynamics/src/DySolverControlPF.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d02a1687f899d02a168 /* DySolverCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverCore.h"; path = "../../LowLevelDynamics/src/DySolverCore.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d02a1d07f899d02a1d0 /* DySolverExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverExt.h"; path = "../../LowLevelDynamics/src/DySolverExt.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d02a2387f899d02a238 /* DySpatial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySpatial.h"; path = "../../LowLevelDynamics/src/DySpatial.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d02a2a07f899d02a2a0 /* DyThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.h"; path = "../../LowLevelDynamics/src/DyThreadContext.h"; sourceTree = SOURCE_ROOT; };
+ FFFD441701307fba44170130 /* LowLevelDynamics */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelDynamics"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFD4482a0007fba4482a000 /* DyArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.cpp"; path = "../../LowLevelDynamics/src/DyArticulation.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4482a0687fba4482a068 /* DyArticulationContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4482a0d07fba4482a0d0 /* DyArticulationContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4482a1387fba4482a138 /* DyArticulationHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.cpp"; path = "../../LowLevelDynamics/src/DyArticulationHelper.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4482a1a07fba4482a1a0 /* DyArticulationSIMD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationSIMD.cpp"; path = "../../LowLevelDynamics/src/DyArticulationSIMD.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4482a2087fba4482a208 /* DyArticulationScalar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.cpp"; path = "../../LowLevelDynamics/src/DyArticulationScalar.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4482a2707fba4482a270 /* DyConstraintPartition.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.cpp"; path = "../../LowLevelDynamics/src/DyConstraintPartition.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4482a2d87fba4482a2d8 /* DyConstraintSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetup.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetup.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4482a3407fba4482a340 /* DyConstraintSetupBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetupBlock.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetupBlock.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4482a3a87fba4482a3a8 /* DyContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4482a4107fba4482a410 /* DyContactPrep4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4482a4787fba4482a478 /* DyContactPrep4PF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4PF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4PF.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4482a4e07fba4482a4e0 /* DyContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4482a5487fba4482a548 /* DyDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.cpp"; path = "../../LowLevelDynamics/src/DyDynamics.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4482a5b07fba4482a5b0 /* DyFrictionCorrelation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionCorrelation.cpp"; path = "../../LowLevelDynamics/src/DyFrictionCorrelation.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4482a6187fba4482a618 /* DyRigidBodyToSolverBody.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyRigidBodyToSolverBody.cpp"; path = "../../LowLevelDynamics/src/DyRigidBodyToSolverBody.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4482a6807fba4482a680 /* DySolverConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraints.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4482a6e87fba4482a6e8 /* DySolverConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4482a7507fba4482a750 /* DySolverControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.cpp"; path = "../../LowLevelDynamics/src/DySolverControl.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4482a7b87fba4482a7b8 /* DySolverControlPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.cpp"; path = "../../LowLevelDynamics/src/DySolverControlPF.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4482a8207fba4482a820 /* DySolverPFConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraints.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4482a8887fba4482a888 /* DySolverPFConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4482a8f07fba4482a8f0 /* DyThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.cpp"; path = "../../LowLevelDynamics/src/DyThreadContext.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4482a9587fba4482a958 /* DyThresholdTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.cpp"; path = "../../LowLevelDynamics/src/DyThresholdTable.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD4416da107fba4416da10 /* DyArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.h"; path = "../../LowLevelDynamics/include/DyArticulation.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4416da787fba4416da78 /* DyConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraint.h"; path = "../../LowLevelDynamics/include/DyConstraint.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4416dae07fba4416dae0 /* DyConstraintWriteBack.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintWriteBack.h"; path = "../../LowLevelDynamics/include/DyConstraintWriteBack.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4416db487fba4416db48 /* DyContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContext.h"; path = "../../LowLevelDynamics/include/DyContext.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4416dbb07fba4416dbb0 /* DySleepingConfigulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySleepingConfigulation.h"; path = "../../LowLevelDynamics/include/DySleepingConfigulation.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4416dc187fba4416dc18 /* DyThresholdTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.h"; path = "../../LowLevelDynamics/include/DyThresholdTable.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4482b2007fba4482b200 /* DyArticulationContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.h"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4482b2687fba4482b268 /* DyArticulationFnsDebug.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsDebug.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsDebug.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4482b2d07fba4482b2d0 /* DyArticulationFnsScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsScalar.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4482b3387fba4482b338 /* DyArticulationFnsSimd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsSimd.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsSimd.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4482b3a07fba4482b3a0 /* DyArticulationHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.h"; path = "../../LowLevelDynamics/src/DyArticulationHelper.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4482b4087fba4482b408 /* DyArticulationPImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationPImpl.h"; path = "../../LowLevelDynamics/src/DyArticulationPImpl.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4482b4707fba4482b470 /* DyArticulationReference.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationReference.h"; path = "../../LowLevelDynamics/src/DyArticulationReference.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4482b4d87fba4482b4d8 /* DyArticulationScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationScalar.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4482b5407fba4482b540 /* DyArticulationUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationUtils.h"; path = "../../LowLevelDynamics/src/DyArticulationUtils.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4482b5a87fba4482b5a8 /* DyBodyCoreIntegrator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyBodyCoreIntegrator.h"; path = "../../LowLevelDynamics/src/DyBodyCoreIntegrator.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4482b6107fba4482b610 /* DyConstraintPartition.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.h"; path = "../../LowLevelDynamics/src/DyConstraintPartition.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4482b6787fba4482b678 /* DyConstraintPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPrep.h"; path = "../../LowLevelDynamics/src/DyConstraintPrep.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4482b6e07fba4482b6e0 /* DyContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.h"; path = "../../LowLevelDynamics/src/DyContactPrep.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4482b7487fba4482b748 /* DyContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepShared.h"; path = "../../LowLevelDynamics/src/DyContactPrepShared.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4482b7b07fba4482b7b0 /* DyContactReduction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactReduction.h"; path = "../../LowLevelDynamics/src/DyContactReduction.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4482b8187fba4482b818 /* DyCorrelationBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyCorrelationBuffer.h"; path = "../../LowLevelDynamics/src/DyCorrelationBuffer.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4482b8807fba4482b880 /* DyDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.h"; path = "../../LowLevelDynamics/src/DyDynamics.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4482b8e87fba4482b8e8 /* DyFrictionPatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatch.h"; path = "../../LowLevelDynamics/src/DyFrictionPatch.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4482b9507fba4482b950 /* DyFrictionPatchStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatchStreamPair.h"; path = "../../LowLevelDynamics/src/DyFrictionPatchStreamPair.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4482b9b87fba4482b9b8 /* DySolverBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverBody.h"; path = "../../LowLevelDynamics/src/DySolverBody.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4482ba207fba4482ba20 /* DySolverConstraint1D.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4482ba887fba4482ba88 /* DySolverConstraint1D4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D4.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D4.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4482baf07fba4482baf0 /* DySolverConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintDesc.h"; path = "../../LowLevelDynamics/src/DySolverConstraintDesc.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4482bb587fba4482bb58 /* DySolverConstraintExtShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintExtShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintExtShared.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4482bbc07fba4482bbc0 /* DySolverConstraintTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintTypes.h"; path = "../../LowLevelDynamics/src/DySolverConstraintTypes.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4482bc287fba4482bc28 /* DySolverConstraintsShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintsShared.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4482bc907fba4482bc90 /* DySolverContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact.h"; path = "../../LowLevelDynamics/src/DySolverContact.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4482bcf87fba4482bcf8 /* DySolverContact4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact4.h"; path = "../../LowLevelDynamics/src/DySolverContact4.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4482bd607fba4482bd60 /* DySolverContactPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF.h"; path = "../../LowLevelDynamics/src/DySolverContactPF.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4482bdc87fba4482bdc8 /* DySolverContactPF4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF4.h"; path = "../../LowLevelDynamics/src/DySolverContactPF4.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4482be307fba4482be30 /* DySolverContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContext.h"; path = "../../LowLevelDynamics/src/DySolverContext.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4482be987fba4482be98 /* DySolverControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.h"; path = "../../LowLevelDynamics/src/DySolverControl.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4482bf007fba4482bf00 /* DySolverControlPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.h"; path = "../../LowLevelDynamics/src/DySolverControlPF.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4482bf687fba4482bf68 /* DySolverCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverCore.h"; path = "../../LowLevelDynamics/src/DySolverCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4482bfd07fba4482bfd0 /* DySolverExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverExt.h"; path = "../../LowLevelDynamics/src/DySolverExt.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4482c0387fba4482c038 /* DySpatial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySpatial.h"; path = "../../LowLevelDynamics/src/DySpatial.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4482c0a07fba4482c0a0 /* DyThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.h"; path = "../../LowLevelDynamics/src/DyThreadContext.h"; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */
/* Begin PBXResourcesBuildPhase section */
- FFF29cc550007f899cc55000 /* Resources */ = {
+ FFF2441701307fba44170130 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2653,7 +2653,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFC9cc550007f899cc55000 /* Frameworks */ = {
+ FFFC441701307fba44170130 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2663,34 +2663,34 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF89cc550007f899cc55000 /* Sources */ = {
+ FFF8441701307fba44170130 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFF9d0282007f899d028200,
- FFFF9d0282687f899d028268,
- FFFF9d0282d07f899d0282d0,
- FFFF9d0283387f899d028338,
- FFFF9d0283a07f899d0283a0,
- FFFF9d0284087f899d028408,
- FFFF9d0284707f899d028470,
- FFFF9d0284d87f899d0284d8,
- FFFF9d0285407f899d028540,
- FFFF9d0285a87f899d0285a8,
- FFFF9d0286107f899d028610,
- FFFF9d0286787f899d028678,
- FFFF9d0286e07f899d0286e0,
- FFFF9d0287487f899d028748,
- FFFF9d0287b07f899d0287b0,
- FFFF9d0288187f899d028818,
- FFFF9d0288807f899d028880,
- FFFF9d0288e87f899d0288e8,
- FFFF9d0289507f899d028950,
- FFFF9d0289b87f899d0289b8,
- FFFF9d028a207f899d028a20,
- FFFF9d028a887f899d028a88,
- FFFF9d028af07f899d028af0,
- FFFF9d028b587f899d028b58,
+ FFFF4482a0007fba4482a000,
+ FFFF4482a0687fba4482a068,
+ FFFF4482a0d07fba4482a0d0,
+ FFFF4482a1387fba4482a138,
+ FFFF4482a1a07fba4482a1a0,
+ FFFF4482a2087fba4482a208,
+ FFFF4482a2707fba4482a270,
+ FFFF4482a2d87fba4482a2d8,
+ FFFF4482a3407fba4482a340,
+ FFFF4482a3a87fba4482a3a8,
+ FFFF4482a4107fba4482a410,
+ FFFF4482a4787fba4482a478,
+ FFFF4482a4e07fba4482a4e0,
+ FFFF4482a5487fba4482a548,
+ FFFF4482a5b07fba4482a5b0,
+ FFFF4482a6187fba4482a618,
+ FFFF4482a6807fba4482a680,
+ FFFF4482a6e87fba4482a6e8,
+ FFFF4482a7507fba4482a750,
+ FFFF4482a7b87fba4482a7b8,
+ FFFF4482a8207fba4482a820,
+ FFFF4482a8887fba4482a888,
+ FFFF4482a8f07fba4482a8f0,
+ FFFF4482a9587fba4482a958,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -2702,73 +2702,73 @@
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of LowLevelCloth */
- FFFF9e80a6907f899e80a690 /* Allocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9e80a6907f899e80a690 /* Allocator.cpp */; };
- FFFF9e80a6f87f899e80a6f8 /* Factory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9e80a6f87f899e80a6f8 /* Factory.cpp */; };
- FFFF9e80a7607f899e80a760 /* PhaseConfig.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9e80a7607f899e80a760 /* PhaseConfig.cpp */; };
- FFFF9e80a7c87f899e80a7c8 /* SwCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9e80a7c87f899e80a7c8 /* SwCloth.cpp */; };
- FFFF9e80a8307f899e80a830 /* SwClothData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9e80a8307f899e80a830 /* SwClothData.cpp */; };
- FFFF9e80a8987f899e80a898 /* SwCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9e80a8987f899e80a898 /* SwCollision.cpp */; };
- FFFF9e80a9007f899e80a900 /* SwFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9e80a9007f899e80a900 /* SwFabric.cpp */; };
- FFFF9e80a9687f899e80a968 /* SwFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9e80a9687f899e80a968 /* SwFactory.cpp */; };
- FFFF9e80a9d07f899e80a9d0 /* SwInterCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9e80a9d07f899e80a9d0 /* SwInterCollision.cpp */; };
- FFFF9e80aa387f899e80aa38 /* SwSelfCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9e80aa387f899e80aa38 /* SwSelfCollision.cpp */; };
- FFFF9e80aaa07f899e80aaa0 /* SwSolver.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9e80aaa07f899e80aaa0 /* SwSolver.cpp */; };
- FFFF9e80ab087f899e80ab08 /* SwSolverKernel.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9e80ab087f899e80ab08 /* SwSolverKernel.cpp */; };
- FFFF9e80ab707f899e80ab70 /* TripletScheduler.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9e80ab707f899e80ab70 /* TripletScheduler.cpp */; };
+ FFFF448356907fba44835690 /* Allocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448356907fba44835690 /* Allocator.cpp */; };
+ FFFF448356f87fba448356f8 /* Factory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448356f87fba448356f8 /* Factory.cpp */; };
+ FFFF448357607fba44835760 /* PhaseConfig.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448357607fba44835760 /* PhaseConfig.cpp */; };
+ FFFF448357c87fba448357c8 /* SwCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448357c87fba448357c8 /* SwCloth.cpp */; };
+ FFFF448358307fba44835830 /* SwClothData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448358307fba44835830 /* SwClothData.cpp */; };
+ FFFF448358987fba44835898 /* SwCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448358987fba44835898 /* SwCollision.cpp */; };
+ FFFF448359007fba44835900 /* SwFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448359007fba44835900 /* SwFabric.cpp */; };
+ FFFF448359687fba44835968 /* SwFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448359687fba44835968 /* SwFactory.cpp */; };
+ FFFF448359d07fba448359d0 /* SwInterCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD448359d07fba448359d0 /* SwInterCollision.cpp */; };
+ FFFF44835a387fba44835a38 /* SwSelfCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD44835a387fba44835a38 /* SwSelfCollision.cpp */; };
+ FFFF44835aa07fba44835aa0 /* SwSolver.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD44835aa07fba44835aa0 /* SwSolver.cpp */; };
+ FFFF44835b087fba44835b08 /* SwSolverKernel.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD44835b087fba44835b08 /* SwSolverKernel.cpp */; };
+ FFFF44835b707fba44835b70 /* TripletScheduler.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD44835b707fba44835b70 /* TripletScheduler.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFD9e008d507f899e008d50 /* LowLevelCloth */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelCloth"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFD9e00cbe07f899e00cbe0 /* Cloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cloth.h"; path = "../../LowLevelCloth/include/Cloth.h"; sourceTree = SOURCE_ROOT; };
- FFFD9e00cc487f899e00cc48 /* Fabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Fabric.h"; path = "../../LowLevelCloth/include/Fabric.h"; sourceTree = SOURCE_ROOT; };
- FFFD9e00ccb07f899e00ccb0 /* Factory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.h"; path = "../../LowLevelCloth/include/Factory.h"; sourceTree = SOURCE_ROOT; };
- FFFD9e00cd187f899e00cd18 /* PhaseConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.h"; path = "../../LowLevelCloth/include/PhaseConfig.h"; sourceTree = SOURCE_ROOT; };
- FFFD9e00cd807f899e00cd80 /* Range.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Range.h"; path = "../../LowLevelCloth/include/Range.h"; sourceTree = SOURCE_ROOT; };
- FFFD9e00cde87f899e00cde8 /* Solver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Solver.h"; path = "../../LowLevelCloth/include/Solver.h"; sourceTree = SOURCE_ROOT; };
- FFFD9e00ce507f899e00ce50 /* Types.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Types.h"; path = "../../LowLevelCloth/include/Types.h"; sourceTree = SOURCE_ROOT; };
- FFFD9e809c007f899e809c00 /* Allocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.h"; path = "../../LowLevelCloth/src/Allocator.h"; sourceTree = SOURCE_ROOT; };
- FFFD9e809c687f899e809c68 /* Array.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Array.h"; path = "../../LowLevelCloth/src/Array.h"; sourceTree = SOURCE_ROOT; };
- FFFD9e809cd07f899e809cd0 /* BoundingBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BoundingBox.h"; path = "../../LowLevelCloth/src/BoundingBox.h"; sourceTree = SOURCE_ROOT; };
- FFFD9e809d387f899e809d38 /* ClothBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothBase.h"; path = "../../LowLevelCloth/src/ClothBase.h"; sourceTree = SOURCE_ROOT; };
- FFFD9e809da07f899e809da0 /* ClothImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothImpl.h"; path = "../../LowLevelCloth/src/ClothImpl.h"; sourceTree = SOURCE_ROOT; };
- FFFD9e809e087f899e809e08 /* IndexPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IndexPair.h"; path = "../../LowLevelCloth/src/IndexPair.h"; sourceTree = SOURCE_ROOT; };
- FFFD9e809e707f899e809e70 /* IterationState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IterationState.h"; path = "../../LowLevelCloth/src/IterationState.h"; sourceTree = SOURCE_ROOT; };
- FFFD9e809ed87f899e809ed8 /* MovingAverage.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MovingAverage.h"; path = "../../LowLevelCloth/src/MovingAverage.h"; sourceTree = SOURCE_ROOT; };
- FFFD9e809f407f899e809f40 /* PointInterpolator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PointInterpolator.h"; path = "../../LowLevelCloth/src/PointInterpolator.h"; sourceTree = SOURCE_ROOT; };
- FFFD9e809fa87f899e809fa8 /* Simd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd.h"; path = "../../LowLevelCloth/src/Simd.h"; sourceTree = SOURCE_ROOT; };
- FFFD9e80a0107f899e80a010 /* Simd4f.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd4f.h"; path = "../../LowLevelCloth/src/Simd4f.h"; sourceTree = SOURCE_ROOT; };
- FFFD9e80a0787f899e80a078 /* Simd4i.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd4i.h"; path = "../../LowLevelCloth/src/Simd4i.h"; sourceTree = SOURCE_ROOT; };
- FFFD9e80a0e07f899e80a0e0 /* SimdTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SimdTypes.h"; path = "../../LowLevelCloth/src/SimdTypes.h"; sourceTree = SOURCE_ROOT; };
- FFFD9e80a1487f899e80a148 /* StackAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "StackAllocator.h"; path = "../../LowLevelCloth/src/StackAllocator.h"; sourceTree = SOURCE_ROOT; };
- FFFD9e80a1b07f899e80a1b0 /* SwCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.h"; path = "../../LowLevelCloth/src/SwCloth.h"; sourceTree = SOURCE_ROOT; };
- FFFD9e80a2187f899e80a218 /* SwClothData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.h"; path = "../../LowLevelCloth/src/SwClothData.h"; sourceTree = SOURCE_ROOT; };
- FFFD9e80a2807f899e80a280 /* SwCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.h"; path = "../../LowLevelCloth/src/SwCollision.h"; sourceTree = SOURCE_ROOT; };
- FFFD9e80a2e87f899e80a2e8 /* SwCollisionHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollisionHelpers.h"; path = "../../LowLevelCloth/src/SwCollisionHelpers.h"; sourceTree = SOURCE_ROOT; };
- FFFD9e80a3507f899e80a350 /* SwFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.h"; path = "../../LowLevelCloth/src/SwFabric.h"; sourceTree = SOURCE_ROOT; };
- FFFD9e80a3b87f899e80a3b8 /* SwFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.h"; path = "../../LowLevelCloth/src/SwFactory.h"; sourceTree = SOURCE_ROOT; };
- FFFD9e80a4207f899e80a420 /* SwInterCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.h"; path = "../../LowLevelCloth/src/SwInterCollision.h"; sourceTree = SOURCE_ROOT; };
- FFFD9e80a4887f899e80a488 /* SwSelfCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.h"; path = "../../LowLevelCloth/src/SwSelfCollision.h"; sourceTree = SOURCE_ROOT; };
- FFFD9e80a4f07f899e80a4f0 /* SwSolver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.h"; path = "../../LowLevelCloth/src/SwSolver.h"; sourceTree = SOURCE_ROOT; };
- FFFD9e80a5587f899e80a558 /* SwSolverKernel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.h"; path = "../../LowLevelCloth/src/SwSolverKernel.h"; sourceTree = SOURCE_ROOT; };
- FFFD9e80a5c07f899e80a5c0 /* TripletScheduler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.h"; path = "../../LowLevelCloth/src/TripletScheduler.h"; sourceTree = SOURCE_ROOT; };
- FFFD9e80a6287f899e80a628 /* Vec4T.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Vec4T.h"; path = "../../LowLevelCloth/src/Vec4T.h"; sourceTree = SOURCE_ROOT; };
- FFFD9e80a6907f899e80a690 /* Allocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.cpp"; path = "../../LowLevelCloth/src/Allocator.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9e80a6f87f899e80a6f8 /* Factory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.cpp"; path = "../../LowLevelCloth/src/Factory.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9e80a7607f899e80a760 /* PhaseConfig.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.cpp"; path = "../../LowLevelCloth/src/PhaseConfig.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9e80a7c87f899e80a7c8 /* SwCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.cpp"; path = "../../LowLevelCloth/src/SwCloth.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9e80a8307f899e80a830 /* SwClothData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.cpp"; path = "../../LowLevelCloth/src/SwClothData.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9e80a8987f899e80a898 /* SwCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.cpp"; path = "../../LowLevelCloth/src/SwCollision.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9e80a9007f899e80a900 /* SwFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.cpp"; path = "../../LowLevelCloth/src/SwFabric.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9e80a9687f899e80a968 /* SwFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.cpp"; path = "../../LowLevelCloth/src/SwFactory.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9e80a9d07f899e80a9d0 /* SwInterCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.cpp"; path = "../../LowLevelCloth/src/SwInterCollision.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9e80aa387f899e80aa38 /* SwSelfCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.cpp"; path = "../../LowLevelCloth/src/SwSelfCollision.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9e80aaa07f899e80aaa0 /* SwSolver.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.cpp"; path = "../../LowLevelCloth/src/SwSolver.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9e80ab087f899e80ab08 /* SwSolverKernel.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.cpp"; path = "../../LowLevelCloth/src/SwSolverKernel.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9e80ab707f899e80ab70 /* TripletScheduler.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.cpp"; path = "../../LowLevelCloth/src/TripletScheduler.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD441915407fba44191540 /* LowLevelCloth */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelCloth"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFD4418ac207fba4418ac20 /* Cloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cloth.h"; path = "../../LowLevelCloth/include/Cloth.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4418ac887fba4418ac88 /* Fabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Fabric.h"; path = "../../LowLevelCloth/include/Fabric.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4418acf07fba4418acf0 /* Factory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.h"; path = "../../LowLevelCloth/include/Factory.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4418ad587fba4418ad58 /* PhaseConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.h"; path = "../../LowLevelCloth/include/PhaseConfig.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4418adc07fba4418adc0 /* Range.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Range.h"; path = "../../LowLevelCloth/include/Range.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4418ae287fba4418ae28 /* Solver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Solver.h"; path = "../../LowLevelCloth/include/Solver.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4418ae907fba4418ae90 /* Types.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Types.h"; path = "../../LowLevelCloth/include/Types.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44834c007fba44834c00 /* Allocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.h"; path = "../../LowLevelCloth/src/Allocator.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44834c687fba44834c68 /* Array.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Array.h"; path = "../../LowLevelCloth/src/Array.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44834cd07fba44834cd0 /* BoundingBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BoundingBox.h"; path = "../../LowLevelCloth/src/BoundingBox.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44834d387fba44834d38 /* ClothBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothBase.h"; path = "../../LowLevelCloth/src/ClothBase.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44834da07fba44834da0 /* ClothImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothImpl.h"; path = "../../LowLevelCloth/src/ClothImpl.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44834e087fba44834e08 /* IndexPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IndexPair.h"; path = "../../LowLevelCloth/src/IndexPair.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44834e707fba44834e70 /* IterationState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IterationState.h"; path = "../../LowLevelCloth/src/IterationState.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44834ed87fba44834ed8 /* MovingAverage.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MovingAverage.h"; path = "../../LowLevelCloth/src/MovingAverage.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44834f407fba44834f40 /* PointInterpolator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PointInterpolator.h"; path = "../../LowLevelCloth/src/PointInterpolator.h"; sourceTree = SOURCE_ROOT; };
+ FFFD44834fa87fba44834fa8 /* Simd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd.h"; path = "../../LowLevelCloth/src/Simd.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448350107fba44835010 /* Simd4f.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd4f.h"; path = "../../LowLevelCloth/src/Simd4f.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448350787fba44835078 /* Simd4i.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd4i.h"; path = "../../LowLevelCloth/src/Simd4i.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448350e07fba448350e0 /* SimdTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SimdTypes.h"; path = "../../LowLevelCloth/src/SimdTypes.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448351487fba44835148 /* StackAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "StackAllocator.h"; path = "../../LowLevelCloth/src/StackAllocator.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448351b07fba448351b0 /* SwCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.h"; path = "../../LowLevelCloth/src/SwCloth.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448352187fba44835218 /* SwClothData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.h"; path = "../../LowLevelCloth/src/SwClothData.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448352807fba44835280 /* SwCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.h"; path = "../../LowLevelCloth/src/SwCollision.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448352e87fba448352e8 /* SwCollisionHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollisionHelpers.h"; path = "../../LowLevelCloth/src/SwCollisionHelpers.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448353507fba44835350 /* SwFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.h"; path = "../../LowLevelCloth/src/SwFabric.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448353b87fba448353b8 /* SwFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.h"; path = "../../LowLevelCloth/src/SwFactory.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448354207fba44835420 /* SwInterCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.h"; path = "../../LowLevelCloth/src/SwInterCollision.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448354887fba44835488 /* SwSelfCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.h"; path = "../../LowLevelCloth/src/SwSelfCollision.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448354f07fba448354f0 /* SwSolver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.h"; path = "../../LowLevelCloth/src/SwSolver.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448355587fba44835558 /* SwSolverKernel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.h"; path = "../../LowLevelCloth/src/SwSolverKernel.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448355c07fba448355c0 /* TripletScheduler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.h"; path = "../../LowLevelCloth/src/TripletScheduler.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448356287fba44835628 /* Vec4T.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Vec4T.h"; path = "../../LowLevelCloth/src/Vec4T.h"; sourceTree = SOURCE_ROOT; };
+ FFFD448356907fba44835690 /* Allocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.cpp"; path = "../../LowLevelCloth/src/Allocator.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448356f87fba448356f8 /* Factory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.cpp"; path = "../../LowLevelCloth/src/Factory.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448357607fba44835760 /* PhaseConfig.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.cpp"; path = "../../LowLevelCloth/src/PhaseConfig.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448357c87fba448357c8 /* SwCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.cpp"; path = "../../LowLevelCloth/src/SwCloth.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448358307fba44835830 /* SwClothData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.cpp"; path = "../../LowLevelCloth/src/SwClothData.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448358987fba44835898 /* SwCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.cpp"; path = "../../LowLevelCloth/src/SwCollision.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448359007fba44835900 /* SwFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.cpp"; path = "../../LowLevelCloth/src/SwFabric.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448359687fba44835968 /* SwFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.cpp"; path = "../../LowLevelCloth/src/SwFactory.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD448359d07fba448359d0 /* SwInterCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.cpp"; path = "../../LowLevelCloth/src/SwInterCollision.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD44835a387fba44835a38 /* SwSelfCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.cpp"; path = "../../LowLevelCloth/src/SwSelfCollision.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD44835aa07fba44835aa0 /* SwSolver.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.cpp"; path = "../../LowLevelCloth/src/SwSolver.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD44835b087fba44835b08 /* SwSolverKernel.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.cpp"; path = "../../LowLevelCloth/src/SwSolverKernel.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD44835b707fba44835b70 /* TripletScheduler.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.cpp"; path = "../../LowLevelCloth/src/TripletScheduler.cpp"; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */
/* Begin PBXResourcesBuildPhase section */
- FFF29e008d507f899e008d50 /* Resources */ = {
+ FFF2441915407fba44191540 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2778,7 +2778,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFC9e008d507f899e008d50 /* Frameworks */ = {
+ FFFC441915407fba44191540 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2788,23 +2788,23 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF89e008d507f899e008d50 /* Sources */ = {
+ FFF8441915407fba44191540 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFF9e80a6907f899e80a690,
- FFFF9e80a6f87f899e80a6f8,
- FFFF9e80a7607f899e80a760,
- FFFF9e80a7c87f899e80a7c8,
- FFFF9e80a8307f899e80a830,
- FFFF9e80a8987f899e80a898,
- FFFF9e80a9007f899e80a900,
- FFFF9e80a9687f899e80a968,
- FFFF9e80a9d07f899e80a9d0,
- FFFF9e80aa387f899e80aa38,
- FFFF9e80aaa07f899e80aaa0,
- FFFF9e80ab087f899e80ab08,
- FFFF9e80ab707f899e80ab70,
+ FFFF448356907fba44835690,
+ FFFF448356f87fba448356f8,
+ FFFF448357607fba44835760,
+ FFFF448357c87fba448357c8,
+ FFFF448358307fba44835830,
+ FFFF448358987fba44835898,
+ FFFF448359007fba44835900,
+ FFFF448359687fba44835968,
+ FFFF448359d07fba448359d0,
+ FFFF44835a387fba44835a38,
+ FFFF44835aa07fba44835aa0,
+ FFFF44835b087fba44835b08,
+ FFFF44835b707fba44835b70,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -2816,79 +2816,79 @@
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of LowLevelParticles */
- FFFF9d0331587f899d033158 /* PtBatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0331587f899d033158 /* PtBatcher.cpp */; };
- FFFF9d0331c07f899d0331c0 /* PtBodyTransformVault.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0331c07f899d0331c0 /* PtBodyTransformVault.cpp */; };
- FFFF9d0332287f899d033228 /* PtCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0332287f899d033228 /* PtCollision.cpp */; };
- FFFF9d0332907f899d033290 /* PtCollisionBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0332907f899d033290 /* PtCollisionBox.cpp */; };
- FFFF9d0332f87f899d0332f8 /* PtCollisionCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0332f87f899d0332f8 /* PtCollisionCapsule.cpp */; };
- FFFF9d0333607f899d033360 /* PtCollisionConvex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0333607f899d033360 /* PtCollisionConvex.cpp */; };
- FFFF9d0333c87f899d0333c8 /* PtCollisionMesh.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0333c87f899d0333c8 /* PtCollisionMesh.cpp */; };
- FFFF9d0334307f899d033430 /* PtCollisionPlane.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0334307f899d033430 /* PtCollisionPlane.cpp */; };
- FFFF9d0334987f899d033498 /* PtCollisionSphere.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0334987f899d033498 /* PtCollisionSphere.cpp */; };
- FFFF9d0335007f899d033500 /* PtContextCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0335007f899d033500 /* PtContextCpu.cpp */; };
- FFFF9d0335687f899d033568 /* PtDynamics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0335687f899d033568 /* PtDynamics.cpp */; };
- FFFF9d0335d07f899d0335d0 /* PtParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0335d07f899d0335d0 /* PtParticleData.cpp */; };
- FFFF9d0336387f899d033638 /* PtParticleShapeCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0336387f899d033638 /* PtParticleShapeCpu.cpp */; };
- FFFF9d0336a07f899d0336a0 /* PtParticleSystemSimCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0336a07f899d0336a0 /* PtParticleSystemSimCpu.cpp */; };
- FFFF9d0337087f899d033708 /* PtSpatialHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0337087f899d033708 /* PtSpatialHash.cpp */; };
- FFFF9d0337707f899d033770 /* PtSpatialLocalHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9d0337707f899d033770 /* PtSpatialLocalHash.cpp */; };
+ FFFF43820b587fba43820b58 /* PtBatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD43820b587fba43820b58 /* PtBatcher.cpp */; };
+ FFFF43820bc07fba43820bc0 /* PtBodyTransformVault.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD43820bc07fba43820bc0 /* PtBodyTransformVault.cpp */; };
+ FFFF43820c287fba43820c28 /* PtCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD43820c287fba43820c28 /* PtCollision.cpp */; };
+ FFFF43820c907fba43820c90 /* PtCollisionBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD43820c907fba43820c90 /* PtCollisionBox.cpp */; };
+ FFFF43820cf87fba43820cf8 /* PtCollisionCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD43820cf87fba43820cf8 /* PtCollisionCapsule.cpp */; };
+ FFFF43820d607fba43820d60 /* PtCollisionConvex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD43820d607fba43820d60 /* PtCollisionConvex.cpp */; };
+ FFFF43820dc87fba43820dc8 /* PtCollisionMesh.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD43820dc87fba43820dc8 /* PtCollisionMesh.cpp */; };
+ FFFF43820e307fba43820e30 /* PtCollisionPlane.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD43820e307fba43820e30 /* PtCollisionPlane.cpp */; };
+ FFFF43820e987fba43820e98 /* PtCollisionSphere.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD43820e987fba43820e98 /* PtCollisionSphere.cpp */; };
+ FFFF43820f007fba43820f00 /* PtContextCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD43820f007fba43820f00 /* PtContextCpu.cpp */; };
+ FFFF43820f687fba43820f68 /* PtDynamics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD43820f687fba43820f68 /* PtDynamics.cpp */; };
+ FFFF43820fd07fba43820fd0 /* PtParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD43820fd07fba43820fd0 /* PtParticleData.cpp */; };
+ FFFF438210387fba43821038 /* PtParticleShapeCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD438210387fba43821038 /* PtParticleShapeCpu.cpp */; };
+ FFFF438210a07fba438210a0 /* PtParticleSystemSimCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD438210a07fba438210a0 /* PtParticleSystemSimCpu.cpp */; };
+ FFFF438211087fba43821108 /* PtSpatialHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD438211087fba43821108 /* PtSpatialHash.cpp */; };
+ FFFF438211707fba43821170 /* PtSpatialLocalHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD438211707fba43821170 /* PtSpatialLocalHash.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFD9cc72e107f899cc72e10 /* LowLevelParticles */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelParticles"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFD9d01ca007f899d01ca00 /* PtBodyTransformVault.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.h"; path = "../../LowLevelParticles/include/PtBodyTransformVault.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d01ca687f899d01ca68 /* PtContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContext.h"; path = "../../LowLevelParticles/include/PtContext.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d01cad07f899d01cad0 /* PtGridCellVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtGridCellVector.h"; path = "../../LowLevelParticles/include/PtGridCellVector.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d01cb387f899d01cb38 /* PtParticle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticle.h"; path = "../../LowLevelParticles/include/PtParticle.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d01cba07f899d01cba0 /* PtParticleContactManagerStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleContactManagerStream.h"; path = "../../LowLevelParticles/include/PtParticleContactManagerStream.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d01cc087f899d01cc08 /* PtParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.h"; path = "../../LowLevelParticles/include/PtParticleData.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d01cc707f899d01cc70 /* PtParticleShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShape.h"; path = "../../LowLevelParticles/include/PtParticleShape.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d01ccd87f899d01ccd8 /* PtParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemCore.h"; path = "../../LowLevelParticles/include/PtParticleSystemCore.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d01cd407f899d01cd40 /* PtParticleSystemFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemFlags.h"; path = "../../LowLevelParticles/include/PtParticleSystemFlags.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d01cda87f899d01cda8 /* PtParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSim.h"; path = "../../LowLevelParticles/include/PtParticleSystemSim.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0328007f899d032800 /* PtBatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.h"; path = "../../LowLevelParticles/src/PtBatcher.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0328687f899d032868 /* PtCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.h"; path = "../../LowLevelParticles/src/PtCollision.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0328d07f899d0328d0 /* PtCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionData.h"; path = "../../LowLevelParticles/src/PtCollisionData.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0329387f899d032938 /* PtCollisionHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionHelper.h"; path = "../../LowLevelParticles/src/PtCollisionHelper.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0329a07f899d0329a0 /* PtCollisionMethods.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMethods.h"; path = "../../LowLevelParticles/src/PtCollisionMethods.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d032a087f899d032a08 /* PtCollisionParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionParameters.h"; path = "../../LowLevelParticles/src/PtCollisionParameters.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d032a707f899d032a70 /* PtConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConfig.h"; path = "../../LowLevelParticles/src/PtConfig.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d032ad87f899d032ad8 /* PtConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConstants.h"; path = "../../LowLevelParticles/src/PtConstants.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d032b407f899d032b40 /* PtContextCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.h"; path = "../../LowLevelParticles/src/PtContextCpu.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d032ba87f899d032ba8 /* PtDynamicHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicHelper.h"; path = "../../LowLevelParticles/src/PtDynamicHelper.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d032c107f899d032c10 /* PtDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.h"; path = "../../LowLevelParticles/src/PtDynamics.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d032c787f899d032c78 /* PtDynamicsKernels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsKernels.h"; path = "../../LowLevelParticles/src/PtDynamicsKernels.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d032ce07f899d032ce0 /* PtDynamicsParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsParameters.h"; path = "../../LowLevelParticles/src/PtDynamicsParameters.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d032d487f899d032d48 /* PtDynamicsTempBuffers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsTempBuffers.h"; path = "../../LowLevelParticles/src/PtDynamicsTempBuffers.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d032db07f899d032db0 /* PtHeightFieldAabbTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtHeightFieldAabbTest.h"; path = "../../LowLevelParticles/src/PtHeightFieldAabbTest.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d032e187f899d032e18 /* PtPacketSections.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtPacketSections.h"; path = "../../LowLevelParticles/src/PtPacketSections.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d032e807f899d032e80 /* PtParticleCell.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleCell.h"; path = "../../LowLevelParticles/src/PtParticleCell.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d032ee87f899d032ee8 /* PtParticleOpcodeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleOpcodeCache.h"; path = "../../LowLevelParticles/src/PtParticleOpcodeCache.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d032f507f899d032f50 /* PtParticleShapeCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.h"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d032fb87f899d032fb8 /* PtParticleSystemSimCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.h"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0330207f899d033020 /* PtSpatialHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.h"; path = "../../LowLevelParticles/src/PtSpatialHash.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0330887f899d033088 /* PtSpatialHashHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHashHelper.h"; path = "../../LowLevelParticles/src/PtSpatialHashHelper.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0330f07f899d0330f0 /* PtTwoWayData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtTwoWayData.h"; path = "../../LowLevelParticles/src/PtTwoWayData.h"; sourceTree = SOURCE_ROOT; };
- FFFD9d0331587f899d033158 /* PtBatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.cpp"; path = "../../LowLevelParticles/src/PtBatcher.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0331c07f899d0331c0 /* PtBodyTransformVault.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.cpp"; path = "../../LowLevelParticles/src/PtBodyTransformVault.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0332287f899d033228 /* PtCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.cpp"; path = "../../LowLevelParticles/src/PtCollision.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0332907f899d033290 /* PtCollisionBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionBox.cpp"; path = "../../LowLevelParticles/src/PtCollisionBox.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0332f87f899d0332f8 /* PtCollisionCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionCapsule.cpp"; path = "../../LowLevelParticles/src/PtCollisionCapsule.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0333607f899d033360 /* PtCollisionConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionConvex.cpp"; path = "../../LowLevelParticles/src/PtCollisionConvex.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0333c87f899d0333c8 /* PtCollisionMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMesh.cpp"; path = "../../LowLevelParticles/src/PtCollisionMesh.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0334307f899d033430 /* PtCollisionPlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionPlane.cpp"; path = "../../LowLevelParticles/src/PtCollisionPlane.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0334987f899d033498 /* PtCollisionSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionSphere.cpp"; path = "../../LowLevelParticles/src/PtCollisionSphere.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0335007f899d033500 /* PtContextCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.cpp"; path = "../../LowLevelParticles/src/PtContextCpu.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0335687f899d033568 /* PtDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.cpp"; path = "../../LowLevelParticles/src/PtDynamics.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0335d07f899d0335d0 /* PtParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.cpp"; path = "../../LowLevelParticles/src/PtParticleData.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0336387f899d033638 /* PtParticleShapeCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0336a07f899d0336a0 /* PtParticleSystemSimCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0337087f899d033708 /* PtSpatialHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialHash.cpp"; sourceTree = SOURCE_ROOT; };
- FFFD9d0337707f899d033770 /* PtSpatialLocalHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialLocalHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialLocalHash.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD437f9a307fba437f9a30 /* LowLevelParticles */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelParticles"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFD4382a2007fba4382a200 /* PtBodyTransformVault.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.h"; path = "../../LowLevelParticles/include/PtBodyTransformVault.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4382a2687fba4382a268 /* PtContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContext.h"; path = "../../LowLevelParticles/include/PtContext.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4382a2d07fba4382a2d0 /* PtGridCellVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtGridCellVector.h"; path = "../../LowLevelParticles/include/PtGridCellVector.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4382a3387fba4382a338 /* PtParticle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticle.h"; path = "../../LowLevelParticles/include/PtParticle.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4382a3a07fba4382a3a0 /* PtParticleContactManagerStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleContactManagerStream.h"; path = "../../LowLevelParticles/include/PtParticleContactManagerStream.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4382a4087fba4382a408 /* PtParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.h"; path = "../../LowLevelParticles/include/PtParticleData.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4382a4707fba4382a470 /* PtParticleShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShape.h"; path = "../../LowLevelParticles/include/PtParticleShape.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4382a4d87fba4382a4d8 /* PtParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemCore.h"; path = "../../LowLevelParticles/include/PtParticleSystemCore.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4382a5407fba4382a540 /* PtParticleSystemFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemFlags.h"; path = "../../LowLevelParticles/include/PtParticleSystemFlags.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4382a5a87fba4382a5a8 /* PtParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSim.h"; path = "../../LowLevelParticles/include/PtParticleSystemSim.h"; sourceTree = SOURCE_ROOT; };
+ FFFD438202007fba43820200 /* PtBatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.h"; path = "../../LowLevelParticles/src/PtBatcher.h"; sourceTree = SOURCE_ROOT; };
+ FFFD438202687fba43820268 /* PtCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.h"; path = "../../LowLevelParticles/src/PtCollision.h"; sourceTree = SOURCE_ROOT; };
+ FFFD438202d07fba438202d0 /* PtCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionData.h"; path = "../../LowLevelParticles/src/PtCollisionData.h"; sourceTree = SOURCE_ROOT; };
+ FFFD438203387fba43820338 /* PtCollisionHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionHelper.h"; path = "../../LowLevelParticles/src/PtCollisionHelper.h"; sourceTree = SOURCE_ROOT; };
+ FFFD438203a07fba438203a0 /* PtCollisionMethods.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMethods.h"; path = "../../LowLevelParticles/src/PtCollisionMethods.h"; sourceTree = SOURCE_ROOT; };
+ FFFD438204087fba43820408 /* PtCollisionParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionParameters.h"; path = "../../LowLevelParticles/src/PtCollisionParameters.h"; sourceTree = SOURCE_ROOT; };
+ FFFD438204707fba43820470 /* PtConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConfig.h"; path = "../../LowLevelParticles/src/PtConfig.h"; sourceTree = SOURCE_ROOT; };
+ FFFD438204d87fba438204d8 /* PtConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConstants.h"; path = "../../LowLevelParticles/src/PtConstants.h"; sourceTree = SOURCE_ROOT; };
+ FFFD438205407fba43820540 /* PtContextCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.h"; path = "../../LowLevelParticles/src/PtContextCpu.h"; sourceTree = SOURCE_ROOT; };
+ FFFD438205a87fba438205a8 /* PtDynamicHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicHelper.h"; path = "../../LowLevelParticles/src/PtDynamicHelper.h"; sourceTree = SOURCE_ROOT; };
+ FFFD438206107fba43820610 /* PtDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.h"; path = "../../LowLevelParticles/src/PtDynamics.h"; sourceTree = SOURCE_ROOT; };
+ FFFD438206787fba43820678 /* PtDynamicsKernels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsKernels.h"; path = "../../LowLevelParticles/src/PtDynamicsKernels.h"; sourceTree = SOURCE_ROOT; };
+ FFFD438206e07fba438206e0 /* PtDynamicsParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsParameters.h"; path = "../../LowLevelParticles/src/PtDynamicsParameters.h"; sourceTree = SOURCE_ROOT; };
+ FFFD438207487fba43820748 /* PtDynamicsTempBuffers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsTempBuffers.h"; path = "../../LowLevelParticles/src/PtDynamicsTempBuffers.h"; sourceTree = SOURCE_ROOT; };
+ FFFD438207b07fba438207b0 /* PtHeightFieldAabbTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtHeightFieldAabbTest.h"; path = "../../LowLevelParticles/src/PtHeightFieldAabbTest.h"; sourceTree = SOURCE_ROOT; };
+ FFFD438208187fba43820818 /* PtPacketSections.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtPacketSections.h"; path = "../../LowLevelParticles/src/PtPacketSections.h"; sourceTree = SOURCE_ROOT; };
+ FFFD438208807fba43820880 /* PtParticleCell.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleCell.h"; path = "../../LowLevelParticles/src/PtParticleCell.h"; sourceTree = SOURCE_ROOT; };
+ FFFD438208e87fba438208e8 /* PtParticleOpcodeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleOpcodeCache.h"; path = "../../LowLevelParticles/src/PtParticleOpcodeCache.h"; sourceTree = SOURCE_ROOT; };
+ FFFD438209507fba43820950 /* PtParticleShapeCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.h"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.h"; sourceTree = SOURCE_ROOT; };
+ FFFD438209b87fba438209b8 /* PtParticleSystemSimCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.h"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.h"; sourceTree = SOURCE_ROOT; };
+ FFFD43820a207fba43820a20 /* PtSpatialHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.h"; path = "../../LowLevelParticles/src/PtSpatialHash.h"; sourceTree = SOURCE_ROOT; };
+ FFFD43820a887fba43820a88 /* PtSpatialHashHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHashHelper.h"; path = "../../LowLevelParticles/src/PtSpatialHashHelper.h"; sourceTree = SOURCE_ROOT; };
+ FFFD43820af07fba43820af0 /* PtTwoWayData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtTwoWayData.h"; path = "../../LowLevelParticles/src/PtTwoWayData.h"; sourceTree = SOURCE_ROOT; };
+ FFFD43820b587fba43820b58 /* PtBatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.cpp"; path = "../../LowLevelParticles/src/PtBatcher.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD43820bc07fba43820bc0 /* PtBodyTransformVault.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.cpp"; path = "../../LowLevelParticles/src/PtBodyTransformVault.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD43820c287fba43820c28 /* PtCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.cpp"; path = "../../LowLevelParticles/src/PtCollision.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD43820c907fba43820c90 /* PtCollisionBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionBox.cpp"; path = "../../LowLevelParticles/src/PtCollisionBox.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD43820cf87fba43820cf8 /* PtCollisionCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionCapsule.cpp"; path = "../../LowLevelParticles/src/PtCollisionCapsule.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD43820d607fba43820d60 /* PtCollisionConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionConvex.cpp"; path = "../../LowLevelParticles/src/PtCollisionConvex.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD43820dc87fba43820dc8 /* PtCollisionMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMesh.cpp"; path = "../../LowLevelParticles/src/PtCollisionMesh.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD43820e307fba43820e30 /* PtCollisionPlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionPlane.cpp"; path = "../../LowLevelParticles/src/PtCollisionPlane.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD43820e987fba43820e98 /* PtCollisionSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionSphere.cpp"; path = "../../LowLevelParticles/src/PtCollisionSphere.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD43820f007fba43820f00 /* PtContextCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.cpp"; path = "../../LowLevelParticles/src/PtContextCpu.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD43820f687fba43820f68 /* PtDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.cpp"; path = "../../LowLevelParticles/src/PtDynamics.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD43820fd07fba43820fd0 /* PtParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.cpp"; path = "../../LowLevelParticles/src/PtParticleData.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD438210387fba43821038 /* PtParticleShapeCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD438210a07fba438210a0 /* PtParticleSystemSimCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD438211087fba43821108 /* PtSpatialHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialHash.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD438211707fba43821170 /* PtSpatialLocalHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialLocalHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialLocalHash.cpp"; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */
/* Begin PBXResourcesBuildPhase section */
- FFF29cc72e107f899cc72e10 /* Resources */ = {
+ FFF2437f9a307fba437f9a30 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2898,7 +2898,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFC9cc72e107f899cc72e10 /* Frameworks */ = {
+ FFFC437f9a307fba437f9a30 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2908,26 +2908,26 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF89cc72e107f899cc72e10 /* Sources */ = {
+ FFF8437f9a307fba437f9a30 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFF9d0331587f899d033158,
- FFFF9d0331c07f899d0331c0,
- FFFF9d0332287f899d033228,
- FFFF9d0332907f899d033290,
- FFFF9d0332f87f899d0332f8,
- FFFF9d0333607f899d033360,
- FFFF9d0333c87f899d0333c8,
- FFFF9d0334307f899d033430,
- FFFF9d0334987f899d033498,
- FFFF9d0335007f899d033500,
- FFFF9d0335687f899d033568,
- FFFF9d0335d07f899d0335d0,
- FFFF9d0336387f899d033638,
- FFFF9d0336a07f899d0336a0,
- FFFF9d0337087f899d033708,
- FFFF9d0337707f899d033770,
+ FFFF43820b587fba43820b58,
+ FFFF43820bc07fba43820bc0,
+ FFFF43820c287fba43820c28,
+ FFFF43820c907fba43820c90,
+ FFFF43820cf87fba43820cf8,
+ FFFF43820d607fba43820d60,
+ FFFF43820dc87fba43820dc8,
+ FFFF43820e307fba43820e30,
+ FFFF43820e987fba43820e98,
+ FFFF43820f007fba43820f00,
+ FFFF43820f687fba43820f68,
+ FFFF43820fd07fba43820fd0,
+ FFFF438210387fba43821038,
+ FFFF438210a07fba438210a0,
+ FFFF438211087fba43821108,
+ FFFF438211707fba43821170,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -2939,22 +2939,22 @@
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of PxTask */
- FFFF9ccbaff07f899ccbaff0 /* src/TaskManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9ccbaff07f899ccbaff0 /* src/TaskManager.cpp */; };
+ FFFF434cb6607fba434cb660 /* src/TaskManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD434cb6607fba434cb660 /* src/TaskManager.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFD9ccda3007f899ccda300 /* PxTask */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxTask"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFD9ccbac607f899ccbac60 /* PxCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCpuDispatcher.h"; path = "../../../../PxShared/include/task/PxCpuDispatcher.h"; sourceTree = SOURCE_ROOT; };
- FFFD9ccbacc87f899ccbacc8 /* PxGpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuDispatcher.h"; path = "../../../../PxShared/include/task/PxGpuDispatcher.h"; sourceTree = SOURCE_ROOT; };
- FFFD9ccbad307f899ccbad30 /* PxGpuTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuTask.h"; path = "../../../../PxShared/include/task/PxGpuTask.h"; sourceTree = SOURCE_ROOT; };
- FFFD9ccbad987f899ccbad98 /* PxTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTask.h"; path = "../../../../PxShared/include/task/PxTask.h"; sourceTree = SOURCE_ROOT; };
- FFFD9ccbae007f899ccbae00 /* PxTaskDefine.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskDefine.h"; path = "../../../../PxShared/include/task/PxTaskDefine.h"; sourceTree = SOURCE_ROOT; };
- FFFD9ccbae687f899ccbae68 /* PxTaskManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskManager.h"; path = "../../../../PxShared/include/task/PxTaskManager.h"; sourceTree = SOURCE_ROOT; };
- FFFD9ccbaff07f899ccbaff0 /* src/TaskManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/TaskManager.cpp"; path = "../../../../PxShared/src/task/src/TaskManager.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD434ead707fba434ead70 /* PxTask */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxTask"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFD434cb3f07fba434cb3f0 /* PxCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCpuDispatcher.h"; path = "../../../../PxShared/include/task/PxCpuDispatcher.h"; sourceTree = SOURCE_ROOT; };
+ FFFD434cb4587fba434cb458 /* PxGpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuDispatcher.h"; path = "../../../../PxShared/include/task/PxGpuDispatcher.h"; sourceTree = SOURCE_ROOT; };
+ FFFD434cb4c07fba434cb4c0 /* PxGpuTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuTask.h"; path = "../../../../PxShared/include/task/PxGpuTask.h"; sourceTree = SOURCE_ROOT; };
+ FFFD434cb5287fba434cb528 /* PxTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTask.h"; path = "../../../../PxShared/include/task/PxTask.h"; sourceTree = SOURCE_ROOT; };
+ FFFD434cb5907fba434cb590 /* PxTaskDefine.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskDefine.h"; path = "../../../../PxShared/include/task/PxTaskDefine.h"; sourceTree = SOURCE_ROOT; };
+ FFFD434cb5f87fba434cb5f8 /* PxTaskManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskManager.h"; path = "../../../../PxShared/include/task/PxTaskManager.h"; sourceTree = SOURCE_ROOT; };
+ FFFD434cb6607fba434cb660 /* 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 */
- FFF29ccda3007f899ccda300 /* Resources */ = {
+ FFF2434ead707fba434ead70 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2964,7 +2964,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFC9ccda3007f899ccda300 /* Frameworks */ = {
+ FFFC434ead707fba434ead70 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -2974,11 +2974,11 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF89ccda3007f899ccda300 /* Sources */ = {
+ FFF8434ead707fba434ead70 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFF9ccbaff07f899ccbaff0,
+ FFFF434cb6607fba434cb660,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -2990,17 +2990,17 @@
/* End PBXTargetDependency section */
/* Begin PBXBuildFile section of PsFastXml */
- FFFF9e205c507f899e205c50 /* PsFastXml.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD9e205c507f899e205c50 /* PsFastXml.cpp */; };
+ FFFF4417f4607fba4417f460 /* PsFastXml.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD4417f4607fba4417f460 /* PsFastXml.cpp */; };
/* End PBXFileReference section */
/* Begin PBXFileReference section */
- FFFD9e12da307f899e12da30 /* PsFastXml */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PsFastXml"; sourceTree = BUILT_PRODUCTS_DIR; };
- FFFD9e2086c07f899e2086c0 /* PsFastXml.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PsFastXml.h"; path = "../../../../PxShared/src/fastxml/include/PsFastXml.h"; sourceTree = SOURCE_ROOT; };
- FFFD9e205c507f899e205c50 /* PsFastXml.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PsFastXml.cpp"; path = "../../../../PxShared/src/fastxml/src/PsFastXml.cpp"; sourceTree = SOURCE_ROOT; };
+ FFFD441a12707fba441a1270 /* PsFastXml */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PsFastXml"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FFFD4417f3607fba4417f360 /* PsFastXml.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PsFastXml.h"; path = "../../../../PxShared/src/fastxml/include/PsFastXml.h"; sourceTree = SOURCE_ROOT; };
+ FFFD4417f4607fba4417f460 /* 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 */
- FFF29e12da307f899e12da30 /* Resources */ = {
+ FFF2441a12707fba441a1270 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -3010,7 +3010,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXFrameworksBuildPhase section */
- FFFC9e12da307f899e12da30 /* Frameworks */ = {
+ FFFC441a12707fba441a1270 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -3020,11 +3020,11 @@
/* End PBXFrameworksBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- FFF89e12da307f899e12da30 /* Sources */ = {
+ FFF8441a12707fba441a1270 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FFFF9e205c507f899e205c50,
+ FFFF4417f4607fba4417f460,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -3036,1974 +3036,1974 @@
/* End PBXTargetDependency section */
/* Begin PBXContainerItemProxy section */
- FFF59e12f7c07f899e12f7c0 /* PBXContainerItemProxy */ = {
- containerPortal = FFF99bc7cc307f899bc7cc30 /* Project object */;
+ FFF5441a7e907fba441a7e90 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF941d633e07fba41d633e0 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFA9e12f7c07f899e12f7c0 /* PhysX */;
+ remoteGlobalIDString = FFFA441a7e907fba441a7e90 /* PhysX */;
remoteInfo = "PhysX";
};
- FFF59e1334507f899e133450 /* PBXContainerItemProxy */ = {
- containerPortal = FFF99bc7cc307f899bc7cc30 /* Project object */;
+ FFF5441b54a07fba441b54a0 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF941d633e07fba41d633e0 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFA9e1334507f899e133450 /* PhysXCharacterKinematic */;
+ remoteGlobalIDString = FFFA441b54a07fba441b54a0 /* PhysXCharacterKinematic */;
remoteInfo = "PhysXCharacterKinematic";
};
- FFF59e1280207f899e128020 /* PBXContainerItemProxy */ = {
- containerPortal = FFF99bc7cc307f899bc7cc30 /* Project object */;
+ FFF5441a23807fba441a2380 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF941d633e07fba41d633e0 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFA9e1280207f899e128020 /* PhysXVehicle */;
+ remoteGlobalIDString = FFFA441a23807fba441a2380 /* PhysXVehicle */;
remoteInfo = "PhysXVehicle";
};
- FFF59e138e707f899e138e70 /* PBXContainerItemProxy */ = {
- containerPortal = FFF99bc7cc307f899bc7cc30 /* Project object */;
+ FFF5441c17507fba441c1750 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF941d633e07fba41d633e0 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFA9e138e707f899e138e70 /* PhysXExtensions */;
+ remoteGlobalIDString = FFFA441c17507fba441c1750 /* PhysXExtensions */;
remoteInfo = "PhysXExtensions";
};
- FFF59e4ea8a07f899e4ea8a0 /* PBXContainerItemProxy */ = {
- containerPortal = FFF99bc7cc307f899bc7cc30 /* Project object */;
+ FFF5441d40a07fba441d40a0 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF941d633e07fba41d633e0 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFA9e4ea8a07f899e4ea8a0 /* SceneQuery */;
+ remoteGlobalIDString = FFFA441d40a07fba441d40a0 /* SceneQuery */;
remoteInfo = "SceneQuery";
};
- FFF59e518ab07f899e518ab0 /* PBXContainerItemProxy */ = {
- containerPortal = FFF99bc7cc307f899bc7cc30 /* Project object */;
+ FFF5441d86207fba441d8620 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF941d633e07fba41d633e0 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFA9e518ab07f899e518ab0 /* SimulationController */;
+ remoteGlobalIDString = FFFA441d86207fba441d8620 /* SimulationController */;
remoteInfo = "SimulationController";
};
- FFF59e5094807f899e509480 /* PBXContainerItemProxy */ = {
- containerPortal = FFF99bc7cc307f899bc7cc30 /* Project object */;
+ FFF5441dd8c07fba441dd8c0 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF941d633e07fba41d633e0 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFA9e5094807f899e509480 /* PhysXCooking */;
+ remoteGlobalIDString = FFFA441dd8c07fba441dd8c0 /* PhysXCooking */;
remoteInfo = "PhysXCooking";
};
- FFF59c88a7507f899c88a750 /* PBXContainerItemProxy */ = {
- containerPortal = FFF99bc7cc307f899bc7cc30 /* Project object */;
+ FFF5431a02b07fba431a02b0 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF941d633e07fba41d633e0 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFA9c88a7507f899c88a750 /* PhysXCommon */;
+ remoteGlobalIDString = FFFA431a02b07fba431a02b0 /* PhysXCommon */;
remoteInfo = "PhysXCommon";
};
- FFF59c8a0f907f899c8a0f90 /* PBXContainerItemProxy */ = {
- containerPortal = FFF99bc7cc307f899bc7cc30 /* Project object */;
+ FFF54318c2b07fba4318c2b0 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF941d633e07fba41d633e0 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFA9c8a0f907f899c8a0f90 /* PxFoundation */;
+ remoteGlobalIDString = FFFA4318c2b07fba4318c2b0 /* PxFoundation */;
remoteInfo = "PxFoundation";
};
- FFF59cc339d07f899cc339d0 /* PBXContainerItemProxy */ = {
- containerPortal = FFF99bc7cc307f899bc7cc30 /* Project object */;
+ FFF544109f207fba44109f20 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF941d633e07fba41d633e0 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFA9cc339d07f899cc339d0 /* PxPvdSDK */;
+ remoteGlobalIDString = FFFA44109f207fba44109f20 /* PxPvdSDK */;
remoteInfo = "PxPvdSDK";
};
- FFF59cdf92b07f899cdf92b0 /* PBXContainerItemProxy */ = {
- containerPortal = FFF99bc7cc307f899bc7cc30 /* Project object */;
+ FFF5441270b07fba441270b0 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF941d633e07fba41d633e0 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFA9cdf92b07f899cdf92b0 /* LowLevel */;
+ remoteGlobalIDString = FFFA441270b07fba441270b0 /* LowLevel */;
remoteInfo = "LowLevel";
};
- FFF59cf0adc07f899cf0adc0 /* PBXContainerItemProxy */ = {
- containerPortal = FFF99bc7cc307f899bc7cc30 /* Project object */;
+ FFF544154f407fba44154f40 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF941d633e07fba41d633e0 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFA9cf0adc07f899cf0adc0 /* LowLevelAABB */;
+ remoteGlobalIDString = FFFA44154f407fba44154f40 /* LowLevelAABB */;
remoteInfo = "LowLevelAABB";
};
- FFF59cc550007f899cc55000 /* PBXContainerItemProxy */ = {
- containerPortal = FFF99bc7cc307f899bc7cc30 /* Project object */;
+ FFF5441701307fba44170130 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF941d633e07fba41d633e0 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFA9cc550007f899cc55000 /* LowLevelDynamics */;
+ remoteGlobalIDString = FFFA441701307fba44170130 /* LowLevelDynamics */;
remoteInfo = "LowLevelDynamics";
};
- FFF59e008d507f899e008d50 /* PBXContainerItemProxy */ = {
- containerPortal = FFF99bc7cc307f899bc7cc30 /* Project object */;
+ FFF5441915407fba44191540 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF941d633e07fba41d633e0 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFA9e008d507f899e008d50 /* LowLevelCloth */;
+ remoteGlobalIDString = FFFA441915407fba44191540 /* LowLevelCloth */;
remoteInfo = "LowLevelCloth";
};
- FFF59cc72e107f899cc72e10 /* PBXContainerItemProxy */ = {
- containerPortal = FFF99bc7cc307f899bc7cc30 /* Project object */;
+ FFF5437f9a307fba437f9a30 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF941d633e07fba41d633e0 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFA9cc72e107f899cc72e10 /* LowLevelParticles */;
+ remoteGlobalIDString = FFFA437f9a307fba437f9a30 /* LowLevelParticles */;
remoteInfo = "LowLevelParticles";
};
- FFF59ccda3007f899ccda300 /* PBXContainerItemProxy */ = {
- containerPortal = FFF99bc7cc307f899bc7cc30 /* Project object */;
+ FFF5434ead707fba434ead70 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF941d633e07fba41d633e0 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFA9ccda3007f899ccda300 /* PxTask */;
+ remoteGlobalIDString = FFFA434ead707fba434ead70 /* PxTask */;
remoteInfo = "PxTask";
};
- FFF59e12da307f899e12da30 /* PBXContainerItemProxy */ = {
- containerPortal = FFF99bc7cc307f899bc7cc30 /* Project object */;
+ FFF5441a12707fba441a1270 /* PBXContainerItemProxy */ = {
+ containerPortal = FFF941d633e07fba41d633e0 /* Project object */;
isa = PBXContainerItemProxy;
proxyType = 1;
- remoteGlobalIDString = FFFA9e12da307f899e12da30 /* PsFastXml */;
+ remoteGlobalIDString = FFFA441a12707fba441a1270 /* PsFastXml */;
remoteInfo = "PsFastXml";
};
/* End PBXContainerItemProxy section */
/* Begin PBXGroup section */
- FFFB9bc7cc987f899bc7cc98 /* PhysX */ = {
+ FFFB41d634487fba41d63448 /* PhysX */ = {
isa = PBXGroup;
children = (
- FFF09bc7cc307f899bc7cc30 /* Source */,
- FFEE9bc7cc307f899bc7cc30 /* Products */,
+ FFF041d633e07fba41d633e0 /* Source */,
+ FFEE41d633e07fba41d633e0 /* Products */,
);
name = "PhysX";
sourceTree = "<group>";
};
- FFF09bc7cc307f899bc7cc30 /* Source */ = {
+ FFF041d633e07fba41d633e0 /* Source */ = {
isa = PBXGroup;
children = (
- FFFB9e12f7c07f899e12f7c0,
- FFFB9e1334507f899e133450,
- FFFB9e1280207f899e128020,
- FFFB9e138e707f899e138e70,
- FFFB9e4ea8a07f899e4ea8a0,
- FFFB9e518ab07f899e518ab0,
- FFFB9e5094807f899e509480,
- FFFB9c88a7507f899c88a750,
- FFFB9c8a0f907f899c8a0f90,
- FFFB9cc339d07f899cc339d0,
- FFFB9cdf92b07f899cdf92b0,
- FFFB9cf0adc07f899cf0adc0,
- FFFB9cc550007f899cc55000,
- FFFB9e008d507f899e008d50,
- FFFB9cc72e107f899cc72e10,
- FFFB9ccda3007f899ccda300,
- FFFB9e12da307f899e12da30,
+ FFFB441a7e907fba441a7e90,
+ FFFB441b54a07fba441b54a0,
+ FFFB441a23807fba441a2380,
+ FFFB441c17507fba441c1750,
+ FFFB441d40a07fba441d40a0,
+ FFFB441d86207fba441d8620,
+ FFFB441dd8c07fba441dd8c0,
+ FFFB431a02b07fba431a02b0,
+ FFFB4318c2b07fba4318c2b0,
+ FFFB44109f207fba44109f20,
+ FFFB441270b07fba441270b0,
+ FFFB44154f407fba44154f40,
+ FFFB441701307fba44170130,
+ FFFB441915407fba44191540,
+ FFFB437f9a307fba437f9a30,
+ FFFB434ead707fba434ead70,
+ FFFB441a12707fba441a1270,
);
name = Source;
sourceTree = "<group>";
};
- FFEE9bc7cc307f899bc7cc30 /* Products */ = {
+ FFEE41d633e07fba41d633e0 /* Products */ = {
isa = PBXGroup;
children = (
- FFFD9e12f7c07f899e12f7c0,
- FFFD9e1334507f899e133450,
- FFFD9e1280207f899e128020,
- FFFD9e138e707f899e138e70,
- FFFD9e4ea8a07f899e4ea8a0,
- FFFD9e518ab07f899e518ab0,
- FFFD9e5094807f899e509480,
- FFFD9c88a7507f899c88a750,
- FFFD9c8a0f907f899c8a0f90,
- FFFD9cc339d07f899cc339d0,
- FFFD9cdf92b07f899cdf92b0,
- FFFD9cf0adc07f899cf0adc0,
- FFFD9cc550007f899cc55000,
- FFFD9e008d507f899e008d50,
- FFFD9cc72e107f899cc72e10,
- FFFD9ccda3007f899ccda300,
- FFFD9e12da307f899e12da30,
+ FFFD441a7e907fba441a7e90,
+ FFFD441b54a07fba441b54a0,
+ FFFD441a23807fba441a2380,
+ FFFD441c17507fba441c1750,
+ FFFD441d40a07fba441d40a0,
+ FFFD441d86207fba441d8620,
+ FFFD441dd8c07fba441dd8c0,
+ FFFD431a02b07fba431a02b0,
+ FFFD4318c2b07fba4318c2b0,
+ FFFD44109f207fba44109f20,
+ FFFD441270b07fba441270b0,
+ FFFD44154f407fba44154f40,
+ FFFD441701307fba44170130,
+ FFFD441915407fba44191540,
+ FFFD437f9a307fba437f9a30,
+ FFFD434ead707fba434ead70,
+ FFFD441a12707fba441a1270,
);
name = Products;
sourceTree = "<group>";
};
- FFFB9e12f7c07f899e12f7c0 /* PhysX */ = {
+ FFFB441a7e907fba441a7e90 /* PhysX */ = {
isa = PBXGroup;
children = (
- FFFB9e1542507f899e154250 /* src */,
- FFFB9e1542787f899e154278 /* include */,
- FFFB9e1542a07f899e1542a0 /* metadata */,
+ FFFB441b84007fba441b8400 /* src */,
+ FFFB441b84287fba441b8428 /* include */,
+ FFFB441b84507fba441b8450 /* metadata */,
);
name = "PhysX";
sourceTree = "<group>";
};
- FFFB9e1542507f899e154250 /* src */ = {
+ FFFB441b84007fba441b8400 /* src */ = {
isa = PBXGroup;
children = (
- FFFD9d040c007f899d040c00 /* NpActor.h */,
- FFFD9d040c687f899d040c68 /* NpActorTemplate.h */,
- FFFD9d040cd07f899d040cd0 /* NpAggregate.h */,
- FFFD9d040d387f899d040d38 /* NpArticulation.h */,
- FFFD9d040da07f899d040da0 /* NpArticulationJoint.h */,
- FFFD9d040e087f899d040e08 /* NpArticulationLink.h */,
- FFFD9d040e707f899d040e70 /* NpBatchQuery.h */,
- FFFD9d040ed87f899d040ed8 /* NpCast.h */,
- FFFD9d040f407f899d040f40 /* NpConnector.h */,
- FFFD9d040fa87f899d040fa8 /* NpConstraint.h */,
- FFFD9d0410107f899d041010 /* NpFactory.h */,
- FFFD9d0410787f899d041078 /* NpMaterial.h */,
- FFFD9d0410e07f899d0410e0 /* NpMaterialManager.h */,
- FFFD9d0411487f899d041148 /* NpPhysics.h */,
- FFFD9d0411b07f899d0411b0 /* NpPhysicsInsertionCallback.h */,
- FFFD9d0412187f899d041218 /* NpPtrTableStorageManager.h */,
- FFFD9d0412807f899d041280 /* NpPvdSceneQueryCollector.h */,
- FFFD9d0412e87f899d0412e8 /* NpQueryShared.h */,
- FFFD9d0413507f899d041350 /* NpReadCheck.h */,
- FFFD9d0413b87f899d0413b8 /* NpRigidActorTemplate.h */,
- FFFD9d0414207f899d041420 /* NpRigidActorTemplateInternal.h */,
- FFFD9d0414887f899d041488 /* NpRigidBodyTemplate.h */,
- FFFD9d0414f07f899d0414f0 /* NpRigidDynamic.h */,
- FFFD9d0415587f899d041558 /* NpRigidStatic.h */,
- FFFD9d0415c07f899d0415c0 /* NpScene.h */,
- FFFD9d0416287f899d041628 /* NpSceneQueries.h */,
- FFFD9d0416907f899d041690 /* NpShape.h */,
- FFFD9d0416f87f899d0416f8 /* NpShapeManager.h */,
- FFFD9d0417607f899d041760 /* NpSpatialIndex.h */,
- FFFD9d0417c87f899d0417c8 /* NpVolumeCache.h */,
- FFFD9d0418307f899d041830 /* NpWriteCheck.h */,
- FFFD9d0418987f899d041898 /* PvdMetaDataBindingData.h */,
- FFFD9d0419007f899d041900 /* PvdMetaDataPvdBinding.h */,
- FFFD9d0419687f899d041968 /* PvdPhysicsClient.h */,
- FFFD9d0419d07f899d0419d0 /* PvdTypeNames.h */,
- FFFD9d041a387f899d041a38 /* NpActor.cpp */,
- FFFD9d041aa07f899d041aa0 /* NpAggregate.cpp */,
- FFFD9d041b087f899d041b08 /* NpArticulation.cpp */,
- FFFD9d041b707f899d041b70 /* NpArticulationJoint.cpp */,
- FFFD9d041bd87f899d041bd8 /* NpArticulationLink.cpp */,
- FFFD9d041c407f899d041c40 /* NpBatchQuery.cpp */,
- FFFD9d041ca87f899d041ca8 /* NpConstraint.cpp */,
- FFFD9d041d107f899d041d10 /* NpFactory.cpp */,
- FFFD9d041d787f899d041d78 /* NpMaterial.cpp */,
- FFFD9d041de07f899d041de0 /* NpMetaData.cpp */,
- FFFD9d041e487f899d041e48 /* NpPhysics.cpp */,
- FFFD9d041eb07f899d041eb0 /* NpPvdSceneQueryCollector.cpp */,
- FFFD9d041f187f899d041f18 /* NpReadCheck.cpp */,
- FFFD9d041f807f899d041f80 /* NpRigidDynamic.cpp */,
- FFFD9d041fe87f899d041fe8 /* NpRigidStatic.cpp */,
- FFFD9d0420507f899d042050 /* NpScene.cpp */,
- FFFD9d0420b87f899d0420b8 /* NpSceneQueries.cpp */,
- FFFD9d0421207f899d042120 /* NpSerializerAdapter.cpp */,
- FFFD9d0421887f899d042188 /* NpShape.cpp */,
- FFFD9d0421f07f899d0421f0 /* NpShapeManager.cpp */,
- FFFD9d0422587f899d042258 /* NpSpatialIndex.cpp */,
- FFFD9d0422c07f899d0422c0 /* NpVolumeCache.cpp */,
- FFFD9d0423287f899d042328 /* NpWriteCheck.cpp */,
- FFFD9d0423907f899d042390 /* PvdMetaDataPvdBinding.cpp */,
- FFFD9d0423f87f899d0423f8 /* PvdPhysicsClient.cpp */,
- FFFD9d0424607f899d042460 /* particles/NpParticleBaseTemplate.h */,
- FFFD9d0424c87f899d0424c8 /* particles/NpParticleFluid.h */,
- FFFD9d0425307f899d042530 /* particles/NpParticleFluidReadData.h */,
- FFFD9d0425987f899d042598 /* particles/NpParticleSystem.h */,
- FFFD9d0426007f899d042600 /* particles/NpParticleFluid.cpp */,
- FFFD9d0426687f899d042668 /* particles/NpParticleSystem.cpp */,
- FFFD9d0426d07f899d0426d0 /* buffering/ScbActor.h */,
- FFFD9d0427387f899d042738 /* buffering/ScbAggregate.h */,
- FFFD9d0427a07f899d0427a0 /* buffering/ScbArticulation.h */,
- FFFD9d0428087f899d042808 /* buffering/ScbArticulationJoint.h */,
- FFFD9d0428707f899d042870 /* buffering/ScbBase.h */,
- FFFD9d0428d87f899d0428d8 /* buffering/ScbBody.h */,
- FFFD9d0429407f899d042940 /* buffering/ScbCloth.h */,
- FFFD9d0429a87f899d0429a8 /* buffering/ScbConstraint.h */,
- FFFD9d042a107f899d042a10 /* buffering/ScbDefs.h */,
- FFFD9d042a787f899d042a78 /* buffering/ScbNpDeps.h */,
- FFFD9d042ae07f899d042ae0 /* buffering/ScbParticleSystem.h */,
- FFFD9d042b487f899d042b48 /* buffering/ScbRigidObject.h */,
- FFFD9d042bb07f899d042bb0 /* buffering/ScbRigidStatic.h */,
- FFFD9d042c187f899d042c18 /* buffering/ScbScene.h */,
- FFFD9d042c807f899d042c80 /* buffering/ScbSceneBuffer.h */,
- FFFD9d042ce87f899d042ce8 /* buffering/ScbScenePvdClient.h */,
- FFFD9d042d507f899d042d50 /* buffering/ScbShape.h */,
- FFFD9d042db87f899d042db8 /* buffering/ScbType.h */,
- FFFD9d042e207f899d042e20 /* buffering/ScbActor.cpp */,
- FFFD9d042e887f899d042e88 /* buffering/ScbAggregate.cpp */,
- FFFD9d042ef07f899d042ef0 /* buffering/ScbBase.cpp */,
- FFFD9d042f587f899d042f58 /* buffering/ScbCloth.cpp */,
- FFFD9d042fc07f899d042fc0 /* buffering/ScbMetaData.cpp */,
- FFFD9d0430287f899d043028 /* buffering/ScbParticleSystem.cpp */,
- FFFD9d0430907f899d043090 /* buffering/ScbScene.cpp */,
- FFFD9d0430f87f899d0430f8 /* buffering/ScbScenePvdClient.cpp */,
- FFFD9d0431607f899d043160 /* buffering/ScbShape.cpp */,
- FFFD9d0431c87f899d0431c8 /* cloth/NpCloth.h */,
- FFFD9d0432307f899d043230 /* cloth/NpClothFabric.h */,
- FFFD9d0432987f899d043298 /* cloth/NpClothParticleData.h */,
- FFFD9d0433007f899d043300 /* cloth/NpCloth.cpp */,
- FFFD9d0433687f899d043368 /* cloth/NpClothFabric.cpp */,
- FFFD9d0433d07f899d0433d0 /* cloth/NpClothParticleData.cpp */,
- FFFD9d0434387f899d043438 /* ../../ImmediateMode/src/NpImmediateMode.cpp */,
+ FFFD44843e007fba44843e00 /* NpActor.h */,
+ FFFD44843e687fba44843e68 /* NpActorTemplate.h */,
+ FFFD44843ed07fba44843ed0 /* NpAggregate.h */,
+ FFFD44843f387fba44843f38 /* NpArticulation.h */,
+ FFFD44843fa07fba44843fa0 /* NpArticulationJoint.h */,
+ FFFD448440087fba44844008 /* NpArticulationLink.h */,
+ FFFD448440707fba44844070 /* NpBatchQuery.h */,
+ FFFD448440d87fba448440d8 /* NpCast.h */,
+ FFFD448441407fba44844140 /* NpConnector.h */,
+ FFFD448441a87fba448441a8 /* NpConstraint.h */,
+ FFFD448442107fba44844210 /* NpFactory.h */,
+ FFFD448442787fba44844278 /* NpMaterial.h */,
+ FFFD448442e07fba448442e0 /* NpMaterialManager.h */,
+ FFFD448443487fba44844348 /* NpPhysics.h */,
+ FFFD448443b07fba448443b0 /* NpPhysicsInsertionCallback.h */,
+ FFFD448444187fba44844418 /* NpPtrTableStorageManager.h */,
+ FFFD448444807fba44844480 /* NpPvdSceneQueryCollector.h */,
+ FFFD448444e87fba448444e8 /* NpQueryShared.h */,
+ FFFD448445507fba44844550 /* NpReadCheck.h */,
+ FFFD448445b87fba448445b8 /* NpRigidActorTemplate.h */,
+ FFFD448446207fba44844620 /* NpRigidActorTemplateInternal.h */,
+ FFFD448446887fba44844688 /* NpRigidBodyTemplate.h */,
+ FFFD448446f07fba448446f0 /* NpRigidDynamic.h */,
+ FFFD448447587fba44844758 /* NpRigidStatic.h */,
+ FFFD448447c07fba448447c0 /* NpScene.h */,
+ FFFD448448287fba44844828 /* NpSceneQueries.h */,
+ FFFD448448907fba44844890 /* NpShape.h */,
+ FFFD448448f87fba448448f8 /* NpShapeManager.h */,
+ FFFD448449607fba44844960 /* NpSpatialIndex.h */,
+ FFFD448449c87fba448449c8 /* NpVolumeCache.h */,
+ FFFD44844a307fba44844a30 /* NpWriteCheck.h */,
+ FFFD44844a987fba44844a98 /* PvdMetaDataBindingData.h */,
+ FFFD44844b007fba44844b00 /* PvdMetaDataPvdBinding.h */,
+ FFFD44844b687fba44844b68 /* PvdPhysicsClient.h */,
+ FFFD44844bd07fba44844bd0 /* PvdTypeNames.h */,
+ FFFD44844c387fba44844c38 /* NpActor.cpp */,
+ FFFD44844ca07fba44844ca0 /* NpAggregate.cpp */,
+ FFFD44844d087fba44844d08 /* NpArticulation.cpp */,
+ FFFD44844d707fba44844d70 /* NpArticulationJoint.cpp */,
+ FFFD44844dd87fba44844dd8 /* NpArticulationLink.cpp */,
+ FFFD44844e407fba44844e40 /* NpBatchQuery.cpp */,
+ FFFD44844ea87fba44844ea8 /* NpConstraint.cpp */,
+ FFFD44844f107fba44844f10 /* NpFactory.cpp */,
+ FFFD44844f787fba44844f78 /* NpMaterial.cpp */,
+ FFFD44844fe07fba44844fe0 /* NpMetaData.cpp */,
+ FFFD448450487fba44845048 /* NpPhysics.cpp */,
+ FFFD448450b07fba448450b0 /* NpPvdSceneQueryCollector.cpp */,
+ FFFD448451187fba44845118 /* NpReadCheck.cpp */,
+ FFFD448451807fba44845180 /* NpRigidDynamic.cpp */,
+ FFFD448451e87fba448451e8 /* NpRigidStatic.cpp */,
+ FFFD448452507fba44845250 /* NpScene.cpp */,
+ FFFD448452b87fba448452b8 /* NpSceneQueries.cpp */,
+ FFFD448453207fba44845320 /* NpSerializerAdapter.cpp */,
+ FFFD448453887fba44845388 /* NpShape.cpp */,
+ FFFD448453f07fba448453f0 /* NpShapeManager.cpp */,
+ FFFD448454587fba44845458 /* NpSpatialIndex.cpp */,
+ FFFD448454c07fba448454c0 /* NpVolumeCache.cpp */,
+ FFFD448455287fba44845528 /* NpWriteCheck.cpp */,
+ FFFD448455907fba44845590 /* PvdMetaDataPvdBinding.cpp */,
+ FFFD448455f87fba448455f8 /* PvdPhysicsClient.cpp */,
+ FFFD448456607fba44845660 /* particles/NpParticleBaseTemplate.h */,
+ FFFD448456c87fba448456c8 /* particles/NpParticleFluid.h */,
+ FFFD448457307fba44845730 /* particles/NpParticleFluidReadData.h */,
+ FFFD448457987fba44845798 /* particles/NpParticleSystem.h */,
+ FFFD448458007fba44845800 /* particles/NpParticleFluid.cpp */,
+ FFFD448458687fba44845868 /* particles/NpParticleSystem.cpp */,
+ FFFD448458d07fba448458d0 /* buffering/ScbActor.h */,
+ FFFD448459387fba44845938 /* buffering/ScbAggregate.h */,
+ FFFD448459a07fba448459a0 /* buffering/ScbArticulation.h */,
+ FFFD44845a087fba44845a08 /* buffering/ScbArticulationJoint.h */,
+ FFFD44845a707fba44845a70 /* buffering/ScbBase.h */,
+ FFFD44845ad87fba44845ad8 /* buffering/ScbBody.h */,
+ FFFD44845b407fba44845b40 /* buffering/ScbCloth.h */,
+ FFFD44845ba87fba44845ba8 /* buffering/ScbConstraint.h */,
+ FFFD44845c107fba44845c10 /* buffering/ScbDefs.h */,
+ FFFD44845c787fba44845c78 /* buffering/ScbNpDeps.h */,
+ FFFD44845ce07fba44845ce0 /* buffering/ScbParticleSystem.h */,
+ FFFD44845d487fba44845d48 /* buffering/ScbRigidObject.h */,
+ FFFD44845db07fba44845db0 /* buffering/ScbRigidStatic.h */,
+ FFFD44845e187fba44845e18 /* buffering/ScbScene.h */,
+ FFFD44845e807fba44845e80 /* buffering/ScbSceneBuffer.h */,
+ FFFD44845ee87fba44845ee8 /* buffering/ScbScenePvdClient.h */,
+ FFFD44845f507fba44845f50 /* buffering/ScbShape.h */,
+ FFFD44845fb87fba44845fb8 /* buffering/ScbType.h */,
+ FFFD448460207fba44846020 /* buffering/ScbActor.cpp */,
+ FFFD448460887fba44846088 /* buffering/ScbAggregate.cpp */,
+ FFFD448460f07fba448460f0 /* buffering/ScbBase.cpp */,
+ FFFD448461587fba44846158 /* buffering/ScbCloth.cpp */,
+ FFFD448461c07fba448461c0 /* buffering/ScbMetaData.cpp */,
+ FFFD448462287fba44846228 /* buffering/ScbParticleSystem.cpp */,
+ FFFD448462907fba44846290 /* buffering/ScbScene.cpp */,
+ FFFD448462f87fba448462f8 /* buffering/ScbScenePvdClient.cpp */,
+ FFFD448463607fba44846360 /* buffering/ScbShape.cpp */,
+ FFFD448463c87fba448463c8 /* cloth/NpCloth.h */,
+ FFFD448464307fba44846430 /* cloth/NpClothFabric.h */,
+ FFFD448464987fba44846498 /* cloth/NpClothParticleData.h */,
+ FFFD448465007fba44846500 /* cloth/NpCloth.cpp */,
+ FFFD448465687fba44846568 /* cloth/NpClothFabric.cpp */,
+ FFFD448465d07fba448465d0 /* cloth/NpClothParticleData.cpp */,
+ FFFD448466387fba44846638 /* ../../ImmediateMode/src/NpImmediateMode.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
- FFFB9e1542787f899e154278 /* include */ = {
+ FFFB441b84287fba441b8428 /* include */ = {
isa = PBXGroup;
children = (
- FFFD9d0436007f899d043600 /* PxActor.h */,
- FFFD9d0436687f899d043668 /* PxAggregate.h */,
- FFFD9d0436d07f899d0436d0 /* PxArticulation.h */,
- FFFD9d0437387f899d043738 /* PxArticulationJoint.h */,
- FFFD9d0437a07f899d0437a0 /* PxArticulationLink.h */,
- FFFD9d0438087f899d043808 /* PxBatchQuery.h */,
- FFFD9d0438707f899d043870 /* PxBatchQueryDesc.h */,
- FFFD9d0438d87f899d0438d8 /* PxBroadPhase.h */,
- FFFD9d0439407f899d043940 /* PxClient.h */,
- FFFD9d0439a87f899d0439a8 /* PxConstraint.h */,
- FFFD9d043a107f899d043a10 /* PxConstraintDesc.h */,
- FFFD9d043a787f899d043a78 /* PxContact.h */,
- FFFD9d043ae07f899d043ae0 /* PxContactModifyCallback.h */,
- FFFD9d043b487f899d043b48 /* PxDeletionListener.h */,
- FFFD9d043bb07f899d043bb0 /* PxFiltering.h */,
- FFFD9d043c187f899d043c18 /* PxForceMode.h */,
- FFFD9d043c807f899d043c80 /* PxImmediateMode.h */,
- FFFD9d043ce87f899d043ce8 /* PxLockedData.h */,
- FFFD9d043d507f899d043d50 /* PxMaterial.h */,
- FFFD9d043db87f899d043db8 /* PxPhysXConfig.h */,
- FFFD9d043e207f899d043e20 /* PxPhysics.h */,
- FFFD9d043e887f899d043e88 /* PxPhysicsAPI.h */,
- FFFD9d043ef07f899d043ef0 /* PxPhysicsSerialization.h */,
- FFFD9d043f587f899d043f58 /* PxPhysicsVersion.h */,
- FFFD9d043fc07f899d043fc0 /* PxPruningStructure.h */,
- FFFD9d0440287f899d044028 /* PxQueryFiltering.h */,
- FFFD9d0440907f899d044090 /* PxQueryReport.h */,
- FFFD9d0440f87f899d0440f8 /* PxRigidActor.h */,
- FFFD9d0441607f899d044160 /* PxRigidBody.h */,
- FFFD9d0441c87f899d0441c8 /* PxRigidDynamic.h */,
- FFFD9d0442307f899d044230 /* PxRigidStatic.h */,
- FFFD9d0442987f899d044298 /* PxScene.h */,
- FFFD9d0443007f899d044300 /* PxSceneDesc.h */,
- FFFD9d0443687f899d044368 /* PxSceneLock.h */,
- FFFD9d0443d07f899d0443d0 /* PxShape.h */,
- FFFD9d0444387f899d044438 /* PxSimulationEventCallback.h */,
- FFFD9d0444a07f899d0444a0 /* PxSimulationStatistics.h */,
- FFFD9d0445087f899d044508 /* PxSpatialIndex.h */,
- FFFD9d0445707f899d044570 /* PxVisualizationParameter.h */,
- FFFD9d0445d87f899d0445d8 /* PxVolumeCache.h */,
- FFFD9d0446407f899d044640 /* particles/PxParticleBase.h */,
- FFFD9d0446a87f899d0446a8 /* particles/PxParticleBaseFlag.h */,
- FFFD9d0447107f899d044710 /* particles/PxParticleCreationData.h */,
- FFFD9d0447787f899d044778 /* particles/PxParticleFlag.h */,
- FFFD9d0447e07f899d0447e0 /* particles/PxParticleFluid.h */,
- FFFD9d0448487f899d044848 /* particles/PxParticleFluidReadData.h */,
- FFFD9d0448b07f899d0448b0 /* particles/PxParticleReadData.h */,
- FFFD9d0449187f899d044918 /* particles/PxParticleSystem.h */,
- FFFD9d0449807f899d044980 /* pvd/PxPvdSceneClient.h */,
- FFFD9d0449e87f899d0449e8 /* cloth/PxCloth.h */,
- FFFD9d044a507f899d044a50 /* cloth/PxClothCollisionData.h */,
- FFFD9d044ab87f899d044ab8 /* cloth/PxClothFabric.h */,
- FFFD9d044b207f899d044b20 /* cloth/PxClothParticleData.h */,
- FFFD9d044b887f899d044b88 /* cloth/PxClothTypes.h */,
+ FFFD448468007fba44846800 /* PxActor.h */,
+ FFFD448468687fba44846868 /* PxAggregate.h */,
+ FFFD448468d07fba448468d0 /* PxArticulation.h */,
+ FFFD448469387fba44846938 /* PxArticulationJoint.h */,
+ FFFD448469a07fba448469a0 /* PxArticulationLink.h */,
+ FFFD44846a087fba44846a08 /* PxBatchQuery.h */,
+ FFFD44846a707fba44846a70 /* PxBatchQueryDesc.h */,
+ FFFD44846ad87fba44846ad8 /* PxBroadPhase.h */,
+ FFFD44846b407fba44846b40 /* PxClient.h */,
+ FFFD44846ba87fba44846ba8 /* PxConstraint.h */,
+ FFFD44846c107fba44846c10 /* PxConstraintDesc.h */,
+ FFFD44846c787fba44846c78 /* PxContact.h */,
+ FFFD44846ce07fba44846ce0 /* PxContactModifyCallback.h */,
+ FFFD44846d487fba44846d48 /* PxDeletionListener.h */,
+ FFFD44846db07fba44846db0 /* PxFiltering.h */,
+ FFFD44846e187fba44846e18 /* PxForceMode.h */,
+ FFFD44846e807fba44846e80 /* PxImmediateMode.h */,
+ FFFD44846ee87fba44846ee8 /* PxLockedData.h */,
+ FFFD44846f507fba44846f50 /* PxMaterial.h */,
+ FFFD44846fb87fba44846fb8 /* PxPhysXConfig.h */,
+ FFFD448470207fba44847020 /* PxPhysics.h */,
+ FFFD448470887fba44847088 /* PxPhysicsAPI.h */,
+ FFFD448470f07fba448470f0 /* PxPhysicsSerialization.h */,
+ FFFD448471587fba44847158 /* PxPhysicsVersion.h */,
+ FFFD448471c07fba448471c0 /* PxPruningStructure.h */,
+ FFFD448472287fba44847228 /* PxQueryFiltering.h */,
+ FFFD448472907fba44847290 /* PxQueryReport.h */,
+ FFFD448472f87fba448472f8 /* PxRigidActor.h */,
+ FFFD448473607fba44847360 /* PxRigidBody.h */,
+ FFFD448473c87fba448473c8 /* PxRigidDynamic.h */,
+ FFFD448474307fba44847430 /* PxRigidStatic.h */,
+ FFFD448474987fba44847498 /* PxScene.h */,
+ FFFD448475007fba44847500 /* PxSceneDesc.h */,
+ FFFD448475687fba44847568 /* PxSceneLock.h */,
+ FFFD448475d07fba448475d0 /* PxShape.h */,
+ FFFD448476387fba44847638 /* PxSimulationEventCallback.h */,
+ FFFD448476a07fba448476a0 /* PxSimulationStatistics.h */,
+ FFFD448477087fba44847708 /* PxSpatialIndex.h */,
+ FFFD448477707fba44847770 /* PxVisualizationParameter.h */,
+ FFFD448477d87fba448477d8 /* PxVolumeCache.h */,
+ FFFD448478407fba44847840 /* particles/PxParticleBase.h */,
+ FFFD448478a87fba448478a8 /* particles/PxParticleBaseFlag.h */,
+ FFFD448479107fba44847910 /* particles/PxParticleCreationData.h */,
+ FFFD448479787fba44847978 /* particles/PxParticleFlag.h */,
+ FFFD448479e07fba448479e0 /* particles/PxParticleFluid.h */,
+ FFFD44847a487fba44847a48 /* particles/PxParticleFluidReadData.h */,
+ FFFD44847ab07fba44847ab0 /* particles/PxParticleReadData.h */,
+ FFFD44847b187fba44847b18 /* particles/PxParticleSystem.h */,
+ FFFD44847b807fba44847b80 /* pvd/PxPvdSceneClient.h */,
+ FFFD44847be87fba44847be8 /* cloth/PxCloth.h */,
+ FFFD44847c507fba44847c50 /* cloth/PxClothCollisionData.h */,
+ FFFD44847cb87fba44847cb8 /* cloth/PxClothFabric.h */,
+ FFFD44847d207fba44847d20 /* cloth/PxClothParticleData.h */,
+ FFFD44847d887fba44847d88 /* cloth/PxClothTypes.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
- FFFB9e1542a07f899e1542a0 /* metadata */ = {
+ FFFB441b84507fba441b8450 /* metadata */ = {
isa = PBXGroup;
children = (
- FFFD9d03b8007f899d03b800 /* core/include/PvdMetaDataDefineProperties.h */,
- FFFD9d03b8687f899d03b868 /* core/include/PvdMetaDataExtensions.h */,
- FFFD9d03b8d07f899d03b8d0 /* core/include/PvdMetaDataPropertyVisitor.h */,
- FFFD9d03b9387f899d03b938 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */,
- FFFD9d03b9a07f899d03b9a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */,
- FFFD9d03ba087f899d03ba08 /* core/include/PxMetaDataCompare.h */,
- FFFD9d03ba707f899d03ba70 /* core/include/PxMetaDataCppPrefix.h */,
- FFFD9d03bad87f899d03bad8 /* core/include/PxMetaDataObjects.h */,
- FFFD9d03bb407f899d03bb40 /* core/include/RepXMetaDataPropertyVisitor.h */,
- FFFD9d03bba87f899d03bba8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */,
- FFFD9d03bc107f899d03bc10 /* core/src/PxMetaDataObjects.cpp */,
+ FFFD4483ea007fba4483ea00 /* core/include/PvdMetaDataDefineProperties.h */,
+ FFFD4483ea687fba4483ea68 /* core/include/PvdMetaDataExtensions.h */,
+ FFFD4483ead07fba4483ead0 /* core/include/PvdMetaDataPropertyVisitor.h */,
+ FFFD4483eb387fba4483eb38 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */,
+ FFFD4483eba07fba4483eba0 /* core/include/PxAutoGeneratedMetaDataObjects.h */,
+ FFFD4483ec087fba4483ec08 /* core/include/PxMetaDataCompare.h */,
+ FFFD4483ec707fba4483ec70 /* core/include/PxMetaDataCppPrefix.h */,
+ FFFD4483ecd87fba4483ecd8 /* core/include/PxMetaDataObjects.h */,
+ FFFD4483ed407fba4483ed40 /* core/include/RepXMetaDataPropertyVisitor.h */,
+ FFFD4483eda87fba4483eda8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */,
+ FFFD4483ee107fba4483ee10 /* core/src/PxMetaDataObjects.cpp */,
);
name = "metadata";
sourceTree = SOURCE_ROOT;
};
- FFFB9e1334507f899e133450 /* PhysXCharacterKinematic */ = {
+ FFFB441b54a07fba441b54a0 /* PhysXCharacterKinematic */ = {
isa = PBXGroup;
children = (
- FFFB9e1560a07f899e1560a0 /* include */,
- FFFB9e1560c87f899e1560c8 /* src */,
+ FFFB441b7db07fba441b7db0 /* include */,
+ FFFB441b7dd87fba441b7dd8 /* src */,
);
name = "PhysXCharacterKinematic";
sourceTree = "<group>";
};
- FFFB9e1560a07f899e1560a0 /* include */ = {
+ FFFB441b7db07fba441b7db0 /* include */ = {
isa = PBXGroup;
children = (
- FFFD9e127ce07f899e127ce0 /* PxBoxController.h */,
- FFFD9e127d487f899e127d48 /* PxCapsuleController.h */,
- FFFD9e127db07f899e127db0 /* PxCharacter.h */,
- FFFD9e127e187f899e127e18 /* PxController.h */,
- FFFD9e127e807f899e127e80 /* PxControllerBehavior.h */,
- FFFD9e127ee87f899e127ee8 /* PxControllerManager.h */,
- FFFD9e127f507f899e127f50 /* PxControllerObstacles.h */,
- FFFD9e127fb87f899e127fb8 /* PxExtended.h */,
+ FFFD4419cec07fba4419cec0 /* PxBoxController.h */,
+ FFFD4419cf287fba4419cf28 /* PxCapsuleController.h */,
+ FFFD4419cf907fba4419cf90 /* PxCharacter.h */,
+ FFFD4419cff87fba4419cff8 /* PxController.h */,
+ FFFD4419d0607fba4419d060 /* PxControllerBehavior.h */,
+ FFFD4419d0c87fba4419d0c8 /* PxControllerManager.h */,
+ FFFD4419d1307fba4419d130 /* PxControllerObstacles.h */,
+ FFFD4419d1987fba4419d198 /* PxExtended.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
- FFFB9e1560c87f899e1560c8 /* src */ = {
+ FFFB441b7dd87fba441b7dd8 /* src */ = {
isa = PBXGroup;
children = (
- FFFD9d044c007f899d044c00 /* CctBoxController.h */,
- FFFD9d044c687f899d044c68 /* CctCapsuleController.h */,
- FFFD9d044cd07f899d044cd0 /* CctCharacterController.h */,
- FFFD9d044d387f899d044d38 /* CctCharacterControllerManager.h */,
- FFFD9d044da07f899d044da0 /* CctController.h */,
- FFFD9d044e087f899d044e08 /* CctInternalStructs.h */,
- FFFD9d044e707f899d044e70 /* CctObstacleContext.h */,
- FFFD9d044ed87f899d044ed8 /* CctSweptBox.h */,
- FFFD9d044f407f899d044f40 /* CctSweptCapsule.h */,
- FFFD9d044fa87f899d044fa8 /* CctSweptVolume.h */,
- FFFD9d0450107f899d045010 /* CctUtils.h */,
- FFFD9d0450787f899d045078 /* CctBoxController.cpp */,
- FFFD9d0450e07f899d0450e0 /* CctCapsuleController.cpp */,
- FFFD9d0451487f899d045148 /* CctCharacterController.cpp */,
- FFFD9d0451b07f899d0451b0 /* CctCharacterControllerCallbacks.cpp */,
- FFFD9d0452187f899d045218 /* CctCharacterControllerManager.cpp */,
- FFFD9d0452807f899d045280 /* CctController.cpp */,
- FFFD9d0452e87f899d0452e8 /* CctObstacleContext.cpp */,
- FFFD9d0453507f899d045350 /* CctSweptBox.cpp */,
- FFFD9d0453b87f899d0453b8 /* CctSweptCapsule.cpp */,
- FFFD9d0454207f899d045420 /* CctSweptVolume.cpp */,
+ FFFD44847e007fba44847e00 /* CctBoxController.h */,
+ FFFD44847e687fba44847e68 /* CctCapsuleController.h */,
+ FFFD44847ed07fba44847ed0 /* CctCharacterController.h */,
+ FFFD44847f387fba44847f38 /* CctCharacterControllerManager.h */,
+ FFFD44847fa07fba44847fa0 /* CctController.h */,
+ FFFD448480087fba44848008 /* CctInternalStructs.h */,
+ FFFD448480707fba44848070 /* CctObstacleContext.h */,
+ FFFD448480d87fba448480d8 /* CctSweptBox.h */,
+ FFFD448481407fba44848140 /* CctSweptCapsule.h */,
+ FFFD448481a87fba448481a8 /* CctSweptVolume.h */,
+ FFFD448482107fba44848210 /* CctUtils.h */,
+ FFFD448482787fba44848278 /* CctBoxController.cpp */,
+ FFFD448482e07fba448482e0 /* CctCapsuleController.cpp */,
+ FFFD448483487fba44848348 /* CctCharacterController.cpp */,
+ FFFD448483b07fba448483b0 /* CctCharacterControllerCallbacks.cpp */,
+ FFFD448484187fba44848418 /* CctCharacterControllerManager.cpp */,
+ FFFD448484807fba44848480 /* CctController.cpp */,
+ FFFD448484e87fba448484e8 /* CctObstacleContext.cpp */,
+ FFFD448485507fba44848550 /* CctSweptBox.cpp */,
+ FFFD448485b87fba448485b8 /* CctSweptCapsule.cpp */,
+ FFFD448486207fba44848620 /* CctSweptVolume.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
- FFFB9e1280207f899e128020 /* PhysXVehicle */ = {
+ FFFB441a23807fba441a2380 /* PhysXVehicle */ = {
isa = PBXGroup;
children = (
- FFFB9e140f807f899e140f80 /* include */,
- FFFB9e140fa87f899e140fa8 /* src */,
- FFFB9e140fd07f899e140fd0 /* metadata */,
+ FFFB441c27a07fba441c27a0 /* include */,
+ FFFB441c27c87fba441c27c8 /* src */,
+ FFFB441c27f07fba441c27f0 /* metadata */,
);
name = "PhysXVehicle";
sourceTree = "<group>";
};
- FFFB9e140f807f899e140f80 /* include */ = {
+ FFFB441c27a07fba441c27a0 /* include */ = {
isa = PBXGroup;
children = (
- FFFD9d0472007f899d047200 /* PxVehicleComponents.h */,
- FFFD9d0472687f899d047268 /* PxVehicleDrive.h */,
- FFFD9d0472d07f899d0472d0 /* PxVehicleDrive4W.h */,
- FFFD9d0473387f899d047338 /* PxVehicleDriveNW.h */,
- FFFD9d0473a07f899d0473a0 /* PxVehicleDriveTank.h */,
- FFFD9d0474087f899d047408 /* PxVehicleNoDrive.h */,
- FFFD9d0474707f899d047470 /* PxVehicleSDK.h */,
- FFFD9d0474d87f899d0474d8 /* PxVehicleShaders.h */,
- FFFD9d0475407f899d047540 /* PxVehicleTireFriction.h */,
- FFFD9d0475a87f899d0475a8 /* PxVehicleUpdate.h */,
- FFFD9d0476107f899d047610 /* PxVehicleUtil.h */,
- FFFD9d0476787f899d047678 /* PxVehicleUtilControl.h */,
- FFFD9d0476e07f899d0476e0 /* PxVehicleUtilSetup.h */,
- FFFD9d0477487f899d047748 /* PxVehicleUtilTelemetry.h */,
- FFFD9d0477b07f899d0477b0 /* PxVehicleWheels.h */,
+ FFFD4484a4007fba4484a400 /* PxVehicleComponents.h */,
+ FFFD4484a4687fba4484a468 /* PxVehicleDrive.h */,
+ FFFD4484a4d07fba4484a4d0 /* PxVehicleDrive4W.h */,
+ FFFD4484a5387fba4484a538 /* PxVehicleDriveNW.h */,
+ FFFD4484a5a07fba4484a5a0 /* PxVehicleDriveTank.h */,
+ FFFD4484a6087fba4484a608 /* PxVehicleNoDrive.h */,
+ FFFD4484a6707fba4484a670 /* PxVehicleSDK.h */,
+ FFFD4484a6d87fba4484a6d8 /* PxVehicleShaders.h */,
+ FFFD4484a7407fba4484a740 /* PxVehicleTireFriction.h */,
+ FFFD4484a7a87fba4484a7a8 /* PxVehicleUpdate.h */,
+ FFFD4484a8107fba4484a810 /* PxVehicleUtil.h */,
+ FFFD4484a8787fba4484a878 /* PxVehicleUtilControl.h */,
+ FFFD4484a8e07fba4484a8e0 /* PxVehicleUtilSetup.h */,
+ FFFD4484a9487fba4484a948 /* PxVehicleUtilTelemetry.h */,
+ FFFD4484a9b07fba4484a9b0 /* PxVehicleWheels.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
- FFFB9e140fa87f899e140fa8 /* src */ = {
+ FFFB441c27c87fba441c27c8 /* src */ = {
isa = PBXGroup;
children = (
- FFFD9d0490007f899d049000 /* PxVehicleDefaults.h */,
- FFFD9d0490687f899d049068 /* PxVehicleLinearMath.h */,
- FFFD9d0490d07f899d0490d0 /* PxVehicleSerialization.h */,
- FFFD9d0491387f899d049138 /* PxVehicleSuspLimitConstraintShader.h */,
- FFFD9d0491a07f899d0491a0 /* PxVehicleSuspWheelTire4.h */,
- FFFD9d0492087f899d049208 /* PxVehicleComponents.cpp */,
- FFFD9d0492707f899d049270 /* PxVehicleDrive.cpp */,
- FFFD9d0492d87f899d0492d8 /* PxVehicleDrive4W.cpp */,
- FFFD9d0493407f899d049340 /* PxVehicleDriveNW.cpp */,
- FFFD9d0493a87f899d0493a8 /* PxVehicleDriveTank.cpp */,
- FFFD9d0494107f899d049410 /* PxVehicleMetaData.cpp */,
- FFFD9d0494787f899d049478 /* PxVehicleNoDrive.cpp */,
- FFFD9d0494e07f899d0494e0 /* PxVehicleSDK.cpp */,
- FFFD9d0495487f899d049548 /* PxVehicleSerialization.cpp */,
- FFFD9d0495b07f899d0495b0 /* PxVehicleSuspWheelTire4.cpp */,
- FFFD9d0496187f899d049618 /* PxVehicleTireFriction.cpp */,
- FFFD9d0496807f899d049680 /* PxVehicleUpdate.cpp */,
- FFFD9d0496e87f899d0496e8 /* PxVehicleWheels.cpp */,
- FFFD9d0497507f899d049750 /* VehicleUtilControl.cpp */,
- FFFD9d0497b87f899d0497b8 /* VehicleUtilSetup.cpp */,
- FFFD9d0498207f899d049820 /* VehicleUtilTelemetry.cpp */,
+ FFFD4484c2007fba4484c200 /* PxVehicleDefaults.h */,
+ FFFD4484c2687fba4484c268 /* PxVehicleLinearMath.h */,
+ FFFD4484c2d07fba4484c2d0 /* PxVehicleSerialization.h */,
+ FFFD4484c3387fba4484c338 /* PxVehicleSuspLimitConstraintShader.h */,
+ FFFD4484c3a07fba4484c3a0 /* PxVehicleSuspWheelTire4.h */,
+ FFFD4484c4087fba4484c408 /* PxVehicleComponents.cpp */,
+ FFFD4484c4707fba4484c470 /* PxVehicleDrive.cpp */,
+ FFFD4484c4d87fba4484c4d8 /* PxVehicleDrive4W.cpp */,
+ FFFD4484c5407fba4484c540 /* PxVehicleDriveNW.cpp */,
+ FFFD4484c5a87fba4484c5a8 /* PxVehicleDriveTank.cpp */,
+ FFFD4484c6107fba4484c610 /* PxVehicleMetaData.cpp */,
+ FFFD4484c6787fba4484c678 /* PxVehicleNoDrive.cpp */,
+ FFFD4484c6e07fba4484c6e0 /* PxVehicleSDK.cpp */,
+ FFFD4484c7487fba4484c748 /* PxVehicleSerialization.cpp */,
+ FFFD4484c7b07fba4484c7b0 /* PxVehicleSuspWheelTire4.cpp */,
+ FFFD4484c8187fba4484c818 /* PxVehicleTireFriction.cpp */,
+ FFFD4484c8807fba4484c880 /* PxVehicleUpdate.cpp */,
+ FFFD4484c8e87fba4484c8e8 /* PxVehicleWheels.cpp */,
+ FFFD4484c9507fba4484c950 /* VehicleUtilControl.cpp */,
+ FFFD4484c9b87fba4484c9b8 /* VehicleUtilSetup.cpp */,
+ FFFD4484ca207fba4484ca20 /* VehicleUtilTelemetry.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
- FFFB9e140fd07f899e140fd0 /* metadata */ = {
+ FFFB441c27f07fba441c27f0 /* metadata */ = {
isa = PBXGroup;
children = (
- FFFD9e1279a07f899e1279a0 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */,
- FFFD9e127a087f899e127a08 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */,
- FFFD9e127a707f899e127a70 /* include/PxVehicleMetaDataObjects.h */,
- FFFD9e127ad87f899e127ad8 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */,
- FFFD9e127b407f899e127b40 /* src/PxVehicleMetaDataObjects.cpp */,
+ FFFD441c34f07fba441c34f0 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */,
+ FFFD441c35587fba441c3558 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */,
+ FFFD441c35c07fba441c35c0 /* include/PxVehicleMetaDataObjects.h */,
+ FFFD441c36287fba441c3628 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */,
+ FFFD441c36907fba441c3690 /* src/PxVehicleMetaDataObjects.cpp */,
);
name = "metadata";
sourceTree = SOURCE_ROOT;
};
- FFFB9e138e707f899e138e70 /* PhysXExtensions */ = {
+ FFFB441c17507fba441c1750 /* PhysXExtensions */ = {
isa = PBXGroup;
children = (
- FFFB9e1341207f899e134120 /* include */,
- FFFB9e1341487f899e134148 /* src */,
- FFFB9e1341707f899e134170 /* serialization */,
- FFFB9e1341987f899e134198 /* metadata */,
+ FFFB441ca7c07fba441ca7c0 /* include */,
+ FFFB441ca7e87fba441ca7e8 /* src */,
+ FFFB441ca8107fba441ca810 /* serialization */,
+ FFFB441ca8387fba441ca838 /* metadata */,
);
name = "PhysXExtensions";
sourceTree = "<group>";
};
- FFFB9e1341207f899e134120 /* include */ = {
+ FFFB441ca7c07fba441ca7c0 /* include */ = {
isa = PBXGroup;
children = (
- FFFD9d04c8007f899d04c800 /* PxBinaryConverter.h */,
- FFFD9d04c8687f899d04c868 /* PxBroadPhaseExt.h */,
- FFFD9d04c8d07f899d04c8d0 /* PxClothFabricCooker.h */,
- FFFD9d04c9387f899d04c938 /* PxClothMeshDesc.h */,
- FFFD9d04c9a07f899d04c9a0 /* PxClothMeshQuadifier.h */,
- FFFD9d04ca087f899d04ca08 /* PxClothTetherCooker.h */,
- FFFD9d04ca707f899d04ca70 /* PxCollectionExt.h */,
- FFFD9d04cad87f899d04cad8 /* PxConstraintExt.h */,
- FFFD9d04cb407f899d04cb40 /* PxConvexMeshExt.h */,
- FFFD9d04cba87f899d04cba8 /* PxD6Joint.h */,
- FFFD9d04cc107f899d04cc10 /* PxDefaultAllocator.h */,
- FFFD9d04cc787f899d04cc78 /* PxDefaultCpuDispatcher.h */,
- FFFD9d04cce07f899d04cce0 /* PxDefaultErrorCallback.h */,
- FFFD9d04cd487f899d04cd48 /* PxDefaultSimulationFilterShader.h */,
- FFFD9d04cdb07f899d04cdb0 /* PxDefaultStreams.h */,
- FFFD9d04ce187f899d04ce18 /* PxDistanceJoint.h */,
- FFFD9d04ce807f899d04ce80 /* PxExtensionsAPI.h */,
- FFFD9d04cee87f899d04cee8 /* PxFixedJoint.h */,
- FFFD9d04cf507f899d04cf50 /* PxJoint.h */,
- FFFD9d04cfb87f899d04cfb8 /* PxJointLimit.h */,
- FFFD9d04d0207f899d04d020 /* PxMassProperties.h */,
- FFFD9d04d0887f899d04d088 /* PxParticleExt.h */,
- FFFD9d04d0f07f899d04d0f0 /* PxPrismaticJoint.h */,
- FFFD9d04d1587f899d04d158 /* PxRaycastCCD.h */,
- FFFD9d04d1c07f899d04d1c0 /* PxRepXSerializer.h */,
- FFFD9d04d2287f899d04d228 /* PxRepXSimpleType.h */,
- FFFD9d04d2907f899d04d290 /* PxRevoluteJoint.h */,
- FFFD9d04d2f87f899d04d2f8 /* PxRigidActorExt.h */,
- FFFD9d04d3607f899d04d360 /* PxRigidBodyExt.h */,
- FFFD9d04d3c87f899d04d3c8 /* PxSceneQueryExt.h */,
- FFFD9d04d4307f899d04d430 /* PxSerialization.h */,
- FFFD9d04d4987f899d04d498 /* PxShapeExt.h */,
- FFFD9d04d5007f899d04d500 /* PxSimpleFactory.h */,
- FFFD9d04d5687f899d04d568 /* PxSmoothNormals.h */,
- FFFD9d04d5d07f899d04d5d0 /* PxSphericalJoint.h */,
- FFFD9d04d6387f899d04d638 /* PxStringTableExt.h */,
- FFFD9d04d6a07f899d04d6a0 /* PxTriangleMeshExt.h */,
+ FFFD4484fa007fba4484fa00 /* PxBinaryConverter.h */,
+ FFFD4484fa687fba4484fa68 /* PxBroadPhaseExt.h */,
+ FFFD4484fad07fba4484fad0 /* PxClothFabricCooker.h */,
+ FFFD4484fb387fba4484fb38 /* PxClothMeshDesc.h */,
+ FFFD4484fba07fba4484fba0 /* PxClothMeshQuadifier.h */,
+ FFFD4484fc087fba4484fc08 /* PxClothTetherCooker.h */,
+ FFFD4484fc707fba4484fc70 /* PxCollectionExt.h */,
+ FFFD4484fcd87fba4484fcd8 /* PxConstraintExt.h */,
+ FFFD4484fd407fba4484fd40 /* PxConvexMeshExt.h */,
+ FFFD4484fda87fba4484fda8 /* PxD6Joint.h */,
+ FFFD4484fe107fba4484fe10 /* PxDefaultAllocator.h */,
+ FFFD4484fe787fba4484fe78 /* PxDefaultCpuDispatcher.h */,
+ FFFD4484fee07fba4484fee0 /* PxDefaultErrorCallback.h */,
+ FFFD4484ff487fba4484ff48 /* PxDefaultSimulationFilterShader.h */,
+ FFFD4484ffb07fba4484ffb0 /* PxDefaultStreams.h */,
+ FFFD448500187fba44850018 /* PxDistanceJoint.h */,
+ FFFD448500807fba44850080 /* PxExtensionsAPI.h */,
+ FFFD448500e87fba448500e8 /* PxFixedJoint.h */,
+ FFFD448501507fba44850150 /* PxJoint.h */,
+ FFFD448501b87fba448501b8 /* PxJointLimit.h */,
+ FFFD448502207fba44850220 /* PxMassProperties.h */,
+ FFFD448502887fba44850288 /* PxParticleExt.h */,
+ FFFD448502f07fba448502f0 /* PxPrismaticJoint.h */,
+ FFFD448503587fba44850358 /* PxRaycastCCD.h */,
+ FFFD448503c07fba448503c0 /* PxRepXSerializer.h */,
+ FFFD448504287fba44850428 /* PxRepXSimpleType.h */,
+ FFFD448504907fba44850490 /* PxRevoluteJoint.h */,
+ FFFD448504f87fba448504f8 /* PxRigidActorExt.h */,
+ FFFD448505607fba44850560 /* PxRigidBodyExt.h */,
+ FFFD448505c87fba448505c8 /* PxSceneQueryExt.h */,
+ FFFD448506307fba44850630 /* PxSerialization.h */,
+ FFFD448506987fba44850698 /* PxShapeExt.h */,
+ FFFD448507007fba44850700 /* PxSimpleFactory.h */,
+ FFFD448507687fba44850768 /* PxSmoothNormals.h */,
+ FFFD448507d07fba448507d0 /* PxSphericalJoint.h */,
+ FFFD448508387fba44850838 /* PxStringTableExt.h */,
+ FFFD448508a07fba448508a0 /* PxTriangleMeshExt.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
- FFFB9e1341487f899e134148 /* src */ = {
+ FFFB441ca7e87fba441ca7e8 /* src */ = {
isa = PBXGroup;
children = (
- FFFD9d04b2007f899d04b200 /* ExtConstraintHelper.h */,
- FFFD9d04b2687f899d04b268 /* ExtCpuWorkerThread.h */,
- FFFD9d04b2d07f899d04b2d0 /* ExtD6Joint.h */,
- FFFD9d04b3387f899d04b338 /* ExtDefaultCpuDispatcher.h */,
- FFFD9d04b3a07f899d04b3a0 /* ExtDistanceJoint.h */,
- FFFD9d04b4087f899d04b408 /* ExtFixedJoint.h */,
- FFFD9d04b4707f899d04b470 /* ExtInertiaTensor.h */,
- FFFD9d04b4d87f899d04b4d8 /* ExtJoint.h */,
- FFFD9d04b5407f899d04b540 /* ExtJointMetaDataExtensions.h */,
- FFFD9d04b5a87f899d04b5a8 /* ExtPlatform.h */,
- FFFD9d04b6107f899d04b610 /* ExtPrismaticJoint.h */,
- FFFD9d04b6787f899d04b678 /* ExtPvd.h */,
- FFFD9d04b6e07f899d04b6e0 /* ExtRevoluteJoint.h */,
- FFFD9d04b7487f899d04b748 /* ExtSerialization.h */,
- FFFD9d04b7b07f899d04b7b0 /* ExtSharedQueueEntryPool.h */,
- FFFD9d04b8187f899d04b818 /* ExtSphericalJoint.h */,
- FFFD9d04b8807f899d04b880 /* ExtTaskQueueHelper.h */,
- FFFD9d04b8e87f899d04b8e8 /* ExtBroadPhase.cpp */,
- FFFD9d04b9507f899d04b950 /* ExtClothFabricCooker.cpp */,
- FFFD9d04b9b87f899d04b9b8 /* ExtClothGeodesicTetherCooker.cpp */,
- FFFD9d04ba207f899d04ba20 /* ExtClothMeshQuadifier.cpp */,
- FFFD9d04ba887f899d04ba88 /* ExtClothSimpleTetherCooker.cpp */,
- FFFD9d04baf07f899d04baf0 /* ExtCollection.cpp */,
- FFFD9d04bb587f899d04bb58 /* ExtConvexMeshExt.cpp */,
- FFFD9d04bbc07f899d04bbc0 /* ExtCpuWorkerThread.cpp */,
- FFFD9d04bc287f899d04bc28 /* ExtD6Joint.cpp */,
- FFFD9d04bc907f899d04bc90 /* ExtD6JointSolverPrep.cpp */,
- FFFD9d04bcf87f899d04bcf8 /* ExtDefaultCpuDispatcher.cpp */,
- FFFD9d04bd607f899d04bd60 /* ExtDefaultErrorCallback.cpp */,
- FFFD9d04bdc87f899d04bdc8 /* ExtDefaultSimulationFilterShader.cpp */,
- FFFD9d04be307f899d04be30 /* ExtDefaultStreams.cpp */,
- FFFD9d04be987f899d04be98 /* ExtDistanceJoint.cpp */,
- FFFD9d04bf007f899d04bf00 /* ExtDistanceJointSolverPrep.cpp */,
- FFFD9d04bf687f899d04bf68 /* ExtExtensions.cpp */,
- FFFD9d04bfd07f899d04bfd0 /* ExtFixedJoint.cpp */,
- FFFD9d04c0387f899d04c038 /* ExtFixedJointSolverPrep.cpp */,
- FFFD9d04c0a07f899d04c0a0 /* ExtJoint.cpp */,
- FFFD9d04c1087f899d04c108 /* ExtMetaData.cpp */,
- FFFD9d04c1707f899d04c170 /* ExtParticleExt.cpp */,
- FFFD9d04c1d87f899d04c1d8 /* ExtPrismaticJoint.cpp */,
- FFFD9d04c2407f899d04c240 /* ExtPrismaticJointSolverPrep.cpp */,
- FFFD9d04c2a87f899d04c2a8 /* ExtPvd.cpp */,
- FFFD9d04c3107f899d04c310 /* ExtPxStringTable.cpp */,
- FFFD9d04c3787f899d04c378 /* ExtRaycastCCD.cpp */,
- FFFD9d04c3e07f899d04c3e0 /* ExtRevoluteJoint.cpp */,
- FFFD9d04c4487f899d04c448 /* ExtRevoluteJointSolverPrep.cpp */,
- FFFD9d04c4b07f899d04c4b0 /* ExtRigidBodyExt.cpp */,
- FFFD9d04c5187f899d04c518 /* ExtSceneQueryExt.cpp */,
- FFFD9d04c5807f899d04c580 /* ExtSimpleFactory.cpp */,
- FFFD9d04c5e87f899d04c5e8 /* ExtSmoothNormals.cpp */,
- FFFD9d04c6507f899d04c650 /* ExtSphericalJoint.cpp */,
- FFFD9d04c6b87f899d04c6b8 /* ExtSphericalJointSolverPrep.cpp */,
- FFFD9d04c7207f899d04c720 /* ExtTriangleMeshExt.cpp */,
+ FFFD4484e4007fba4484e400 /* ExtConstraintHelper.h */,
+ FFFD4484e4687fba4484e468 /* ExtCpuWorkerThread.h */,
+ FFFD4484e4d07fba4484e4d0 /* ExtD6Joint.h */,
+ FFFD4484e5387fba4484e538 /* ExtDefaultCpuDispatcher.h */,
+ FFFD4484e5a07fba4484e5a0 /* ExtDistanceJoint.h */,
+ FFFD4484e6087fba4484e608 /* ExtFixedJoint.h */,
+ FFFD4484e6707fba4484e670 /* ExtInertiaTensor.h */,
+ FFFD4484e6d87fba4484e6d8 /* ExtJoint.h */,
+ FFFD4484e7407fba4484e740 /* ExtJointMetaDataExtensions.h */,
+ FFFD4484e7a87fba4484e7a8 /* ExtPlatform.h */,
+ FFFD4484e8107fba4484e810 /* ExtPrismaticJoint.h */,
+ FFFD4484e8787fba4484e878 /* ExtPvd.h */,
+ FFFD4484e8e07fba4484e8e0 /* ExtRevoluteJoint.h */,
+ FFFD4484e9487fba4484e948 /* ExtSerialization.h */,
+ FFFD4484e9b07fba4484e9b0 /* ExtSharedQueueEntryPool.h */,
+ FFFD4484ea187fba4484ea18 /* ExtSphericalJoint.h */,
+ FFFD4484ea807fba4484ea80 /* ExtTaskQueueHelper.h */,
+ FFFD4484eae87fba4484eae8 /* ExtBroadPhase.cpp */,
+ FFFD4484eb507fba4484eb50 /* ExtClothFabricCooker.cpp */,
+ FFFD4484ebb87fba4484ebb8 /* ExtClothGeodesicTetherCooker.cpp */,
+ FFFD4484ec207fba4484ec20 /* ExtClothMeshQuadifier.cpp */,
+ FFFD4484ec887fba4484ec88 /* ExtClothSimpleTetherCooker.cpp */,
+ FFFD4484ecf07fba4484ecf0 /* ExtCollection.cpp */,
+ FFFD4484ed587fba4484ed58 /* ExtConvexMeshExt.cpp */,
+ FFFD4484edc07fba4484edc0 /* ExtCpuWorkerThread.cpp */,
+ FFFD4484ee287fba4484ee28 /* ExtD6Joint.cpp */,
+ FFFD4484ee907fba4484ee90 /* ExtD6JointSolverPrep.cpp */,
+ FFFD4484eef87fba4484eef8 /* ExtDefaultCpuDispatcher.cpp */,
+ FFFD4484ef607fba4484ef60 /* ExtDefaultErrorCallback.cpp */,
+ FFFD4484efc87fba4484efc8 /* ExtDefaultSimulationFilterShader.cpp */,
+ FFFD4484f0307fba4484f030 /* ExtDefaultStreams.cpp */,
+ FFFD4484f0987fba4484f098 /* ExtDistanceJoint.cpp */,
+ FFFD4484f1007fba4484f100 /* ExtDistanceJointSolverPrep.cpp */,
+ FFFD4484f1687fba4484f168 /* ExtExtensions.cpp */,
+ FFFD4484f1d07fba4484f1d0 /* ExtFixedJoint.cpp */,
+ FFFD4484f2387fba4484f238 /* ExtFixedJointSolverPrep.cpp */,
+ FFFD4484f2a07fba4484f2a0 /* ExtJoint.cpp */,
+ FFFD4484f3087fba4484f308 /* ExtMetaData.cpp */,
+ FFFD4484f3707fba4484f370 /* ExtParticleExt.cpp */,
+ FFFD4484f3d87fba4484f3d8 /* ExtPrismaticJoint.cpp */,
+ FFFD4484f4407fba4484f440 /* ExtPrismaticJointSolverPrep.cpp */,
+ FFFD4484f4a87fba4484f4a8 /* ExtPvd.cpp */,
+ FFFD4484f5107fba4484f510 /* ExtPxStringTable.cpp */,
+ FFFD4484f5787fba4484f578 /* ExtRaycastCCD.cpp */,
+ FFFD4484f5e07fba4484f5e0 /* ExtRevoluteJoint.cpp */,
+ FFFD4484f6487fba4484f648 /* ExtRevoluteJointSolverPrep.cpp */,
+ FFFD4484f6b07fba4484f6b0 /* ExtRigidBodyExt.cpp */,
+ FFFD4484f7187fba4484f718 /* ExtSceneQueryExt.cpp */,
+ FFFD4484f7807fba4484f780 /* ExtSimpleFactory.cpp */,
+ FFFD4484f7e87fba4484f7e8 /* ExtSmoothNormals.cpp */,
+ FFFD4484f8507fba4484f850 /* ExtSphericalJoint.cpp */,
+ FFFD4484f8b87fba4484f8b8 /* ExtSphericalJointSolverPrep.cpp */,
+ FFFD4484f9207fba4484f920 /* ExtTriangleMeshExt.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
- FFFB9e1341707f899e134170 /* serialization */ = {
+ FFFB441ca8107fba441ca810 /* serialization */ = {
isa = PBXGroup;
children = (
- FFFD9d04ee007f899d04ee00 /* SnSerialUtils.h */,
- FFFD9d04ee687f899d04ee68 /* SnSerializationRegistry.h */,
- FFFD9d04eed07f899d04eed0 /* SnSerialUtils.cpp */,
- FFFD9d04ef387f899d04ef38 /* SnSerialization.cpp */,
- FFFD9d04efa07f899d04efa0 /* SnSerializationRegistry.cpp */,
- FFFD9d04f0087f899d04f008 /* Binary/SnConvX.h */,
- FFFD9d04f0707f899d04f070 /* Binary/SnConvX_Align.h */,
- FFFD9d04f0d87f899d04f0d8 /* Binary/SnConvX_Common.h */,
- FFFD9d04f1407f899d04f140 /* Binary/SnConvX_MetaData.h */,
- FFFD9d04f1a87f899d04f1a8 /* Binary/SnConvX_Output.h */,
- FFFD9d04f2107f899d04f210 /* Binary/SnConvX_Union.h */,
- FFFD9d04f2787f899d04f278 /* Binary/SnSerializationContext.h */,
- FFFD9d04f2e07f899d04f2e0 /* Binary/SnBinaryDeserialization.cpp */,
- FFFD9d04f3487f899d04f348 /* Binary/SnBinarySerialization.cpp */,
- FFFD9d04f3b07f899d04f3b0 /* Binary/SnConvX.cpp */,
- FFFD9d04f4187f899d04f418 /* Binary/SnConvX_Align.cpp */,
- FFFD9d04f4807f899d04f480 /* Binary/SnConvX_Convert.cpp */,
- FFFD9d04f4e87f899d04f4e8 /* Binary/SnConvX_Error.cpp */,
- FFFD9d04f5507f899d04f550 /* Binary/SnConvX_MetaData.cpp */,
- FFFD9d04f5b87f899d04f5b8 /* Binary/SnConvX_Output.cpp */,
- FFFD9d04f6207f899d04f620 /* Binary/SnConvX_Union.cpp */,
- FFFD9d04f6887f899d04f688 /* Binary/SnSerializationContext.cpp */,
- FFFD9d04f6f07f899d04f6f0 /* Xml/SnJointRepXSerializer.h */,
- FFFD9d04f7587f899d04f758 /* Xml/SnPxStreamOperators.h */,
- FFFD9d04f7c07f899d04f7c0 /* Xml/SnRepX1_0Defaults.h */,
- FFFD9d04f8287f899d04f828 /* Xml/SnRepX3_1Defaults.h */,
- FFFD9d04f8907f899d04f890 /* Xml/SnRepX3_2Defaults.h */,
- FFFD9d04f8f87f899d04f8f8 /* Xml/SnRepXCollection.h */,
- FFFD9d04f9607f899d04f960 /* Xml/SnRepXCoreSerializer.h */,
- FFFD9d04f9c87f899d04f9c8 /* Xml/SnRepXSerializerImpl.h */,
- FFFD9d04fa307f899d04fa30 /* Xml/SnRepXUpgrader.h */,
- FFFD9d04fa987f899d04fa98 /* Xml/SnSimpleXmlWriter.h */,
- FFFD9d04fb007f899d04fb00 /* Xml/SnXmlDeserializer.h */,
- FFFD9d04fb687f899d04fb68 /* Xml/SnXmlImpl.h */,
- FFFD9d04fbd07f899d04fbd0 /* Xml/SnXmlMemoryAllocator.h */,
- FFFD9d04fc387f899d04fc38 /* Xml/SnXmlMemoryPool.h */,
- FFFD9d04fca07f899d04fca0 /* Xml/SnXmlMemoryPoolStreams.h */,
- FFFD9d04fd087f899d04fd08 /* Xml/SnXmlReader.h */,
- FFFD9d04fd707f899d04fd70 /* Xml/SnXmlSerializer.h */,
- FFFD9d04fdd87f899d04fdd8 /* Xml/SnXmlSimpleXmlWriter.h */,
- FFFD9d04fe407f899d04fe40 /* Xml/SnXmlStringToType.h */,
- FFFD9d04fea87f899d04fea8 /* Xml/SnXmlVisitorReader.h */,
- FFFD9d04ff107f899d04ff10 /* Xml/SnXmlVisitorWriter.h */,
- FFFD9d04ff787f899d04ff78 /* Xml/SnXmlWriter.h */,
- FFFD9d04ffe07f899d04ffe0 /* Xml/SnJointRepXSerializer.cpp */,
- FFFD9d0500487f899d050048 /* Xml/SnRepXCoreSerializer.cpp */,
- FFFD9d0500b07f899d0500b0 /* Xml/SnRepXUpgrader.cpp */,
- FFFD9d0501187f899d050118 /* Xml/SnXmlSerialization.cpp */,
- FFFD9d0501807f899d050180 /* File/SnFile.h */,
+ FFFD448528007fba44852800 /* SnSerialUtils.h */,
+ FFFD448528687fba44852868 /* SnSerializationRegistry.h */,
+ FFFD448528d07fba448528d0 /* SnSerialUtils.cpp */,
+ FFFD448529387fba44852938 /* SnSerialization.cpp */,
+ FFFD448529a07fba448529a0 /* SnSerializationRegistry.cpp */,
+ FFFD44852a087fba44852a08 /* Binary/SnConvX.h */,
+ FFFD44852a707fba44852a70 /* Binary/SnConvX_Align.h */,
+ FFFD44852ad87fba44852ad8 /* Binary/SnConvX_Common.h */,
+ FFFD44852b407fba44852b40 /* Binary/SnConvX_MetaData.h */,
+ FFFD44852ba87fba44852ba8 /* Binary/SnConvX_Output.h */,
+ FFFD44852c107fba44852c10 /* Binary/SnConvX_Union.h */,
+ FFFD44852c787fba44852c78 /* Binary/SnSerializationContext.h */,
+ FFFD44852ce07fba44852ce0 /* Binary/SnBinaryDeserialization.cpp */,
+ FFFD44852d487fba44852d48 /* Binary/SnBinarySerialization.cpp */,
+ FFFD44852db07fba44852db0 /* Binary/SnConvX.cpp */,
+ FFFD44852e187fba44852e18 /* Binary/SnConvX_Align.cpp */,
+ FFFD44852e807fba44852e80 /* Binary/SnConvX_Convert.cpp */,
+ FFFD44852ee87fba44852ee8 /* Binary/SnConvX_Error.cpp */,
+ FFFD44852f507fba44852f50 /* Binary/SnConvX_MetaData.cpp */,
+ FFFD44852fb87fba44852fb8 /* Binary/SnConvX_Output.cpp */,
+ FFFD448530207fba44853020 /* Binary/SnConvX_Union.cpp */,
+ FFFD448530887fba44853088 /* Binary/SnSerializationContext.cpp */,
+ FFFD448530f07fba448530f0 /* Xml/SnJointRepXSerializer.h */,
+ FFFD448531587fba44853158 /* Xml/SnPxStreamOperators.h */,
+ FFFD448531c07fba448531c0 /* Xml/SnRepX1_0Defaults.h */,
+ FFFD448532287fba44853228 /* Xml/SnRepX3_1Defaults.h */,
+ FFFD448532907fba44853290 /* Xml/SnRepX3_2Defaults.h */,
+ FFFD448532f87fba448532f8 /* Xml/SnRepXCollection.h */,
+ FFFD448533607fba44853360 /* Xml/SnRepXCoreSerializer.h */,
+ FFFD448533c87fba448533c8 /* Xml/SnRepXSerializerImpl.h */,
+ FFFD448534307fba44853430 /* Xml/SnRepXUpgrader.h */,
+ FFFD448534987fba44853498 /* Xml/SnSimpleXmlWriter.h */,
+ FFFD448535007fba44853500 /* Xml/SnXmlDeserializer.h */,
+ FFFD448535687fba44853568 /* Xml/SnXmlImpl.h */,
+ FFFD448535d07fba448535d0 /* Xml/SnXmlMemoryAllocator.h */,
+ FFFD448536387fba44853638 /* Xml/SnXmlMemoryPool.h */,
+ FFFD448536a07fba448536a0 /* Xml/SnXmlMemoryPoolStreams.h */,
+ FFFD448537087fba44853708 /* Xml/SnXmlReader.h */,
+ FFFD448537707fba44853770 /* Xml/SnXmlSerializer.h */,
+ FFFD448537d87fba448537d8 /* Xml/SnXmlSimpleXmlWriter.h */,
+ FFFD448538407fba44853840 /* Xml/SnXmlStringToType.h */,
+ FFFD448538a87fba448538a8 /* Xml/SnXmlVisitorReader.h */,
+ FFFD448539107fba44853910 /* Xml/SnXmlVisitorWriter.h */,
+ FFFD448539787fba44853978 /* Xml/SnXmlWriter.h */,
+ FFFD448539e07fba448539e0 /* Xml/SnJointRepXSerializer.cpp */,
+ FFFD44853a487fba44853a48 /* Xml/SnRepXCoreSerializer.cpp */,
+ FFFD44853ab07fba44853ab0 /* Xml/SnRepXUpgrader.cpp */,
+ FFFD44853b187fba44853b18 /* Xml/SnXmlSerialization.cpp */,
+ FFFD44853b807fba44853b80 /* File/SnFile.h */,
);
name = "serialization";
sourceTree = SOURCE_ROOT;
};
- FFFB9e1341987f899e134198 /* metadata */ = {
+ FFFB441ca8387fba441ca838 /* metadata */ = {
isa = PBXGroup;
children = (
- FFFD9d04d8007f899d04d800 /* core/include/PvdMetaDataDefineProperties.h */,
- FFFD9d04d8687f899d04d868 /* core/include/PvdMetaDataExtensions.h */,
- FFFD9d04d8d07f899d04d8d0 /* core/include/PvdMetaDataPropertyVisitor.h */,
- FFFD9d04d9387f899d04d938 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */,
- FFFD9d04d9a07f899d04d9a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */,
- FFFD9d04da087f899d04da08 /* core/include/PxMetaDataCompare.h */,
- FFFD9d04da707f899d04da70 /* core/include/PxMetaDataCppPrefix.h */,
- FFFD9d04dad87f899d04dad8 /* core/include/PxMetaDataObjects.h */,
- FFFD9d04db407f899d04db40 /* core/include/RepXMetaDataPropertyVisitor.h */,
- FFFD9d04dba87f899d04dba8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */,
- FFFD9d04dc107f899d04dc10 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */,
- FFFD9d04dc787f899d04dc78 /* extensions/include/PxExtensionMetaDataObjects.h */,
- FFFD9d04dce07f899d04dce0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */,
+ FFFD44850a007fba44850a00 /* core/include/PvdMetaDataDefineProperties.h */,
+ FFFD44850a687fba44850a68 /* core/include/PvdMetaDataExtensions.h */,
+ FFFD44850ad07fba44850ad0 /* core/include/PvdMetaDataPropertyVisitor.h */,
+ FFFD44850b387fba44850b38 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */,
+ FFFD44850ba07fba44850ba0 /* core/include/PxAutoGeneratedMetaDataObjects.h */,
+ FFFD44850c087fba44850c08 /* core/include/PxMetaDataCompare.h */,
+ FFFD44850c707fba44850c70 /* core/include/PxMetaDataCppPrefix.h */,
+ FFFD44850cd87fba44850cd8 /* core/include/PxMetaDataObjects.h */,
+ FFFD44850d407fba44850d40 /* core/include/RepXMetaDataPropertyVisitor.h */,
+ FFFD44850da87fba44850da8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */,
+ FFFD44850e107fba44850e10 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */,
+ FFFD44850e787fba44850e78 /* extensions/include/PxExtensionMetaDataObjects.h */,
+ FFFD44850ee07fba44850ee0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */,
);
name = "metadata";
sourceTree = SOURCE_ROOT;
};
- FFFB9e4ea8a07f899e4ea8a0 /* SceneQuery */ = {
+ FFFB441d40a07fba441d40a0 /* SceneQuery */ = {
isa = PBXGroup;
children = (
- FFFB9e4f06e07f899e4f06e0 /* src */,
- FFFB9e4f07087f899e4f0708 /* include */,
+ FFFB441d5b507fba441d5b50 /* src */,
+ FFFB441d5b787fba441d5b78 /* include */,
);
name = "SceneQuery";
sourceTree = "<group>";
};
- FFFB9e4f06e07f899e4f06e0 /* src */ = {
+ FFFB441d5b507fba441d5b50 /* src */ = {
isa = PBXGroup;
children = (
- FFFD9c21ce007f899c21ce00 /* SqAABBPruner.cpp */,
- FFFD9c21ce687f899c21ce68 /* SqAABBTree.cpp */,
- FFFD9c21ced07f899c21ced0 /* SqAABBTreeBuild.cpp */,
- FFFD9c21cf387f899c21cf38 /* SqAABBTreeUpdateMap.cpp */,
- FFFD9c21cfa07f899c21cfa0 /* SqBounds.cpp */,
- FFFD9c21d0087f899c21d008 /* SqBucketPruner.cpp */,
- FFFD9c21d0707f899c21d070 /* SqExtendedBucketPruner.cpp */,
- FFFD9c21d0d87f899c21d0d8 /* SqIncrementalAABBPrunerCore.cpp */,
- FFFD9c21d1407f899c21d140 /* SqIncrementalAABBTree.cpp */,
- FFFD9c21d1a87f899c21d1a8 /* SqMetaData.cpp */,
- FFFD9c21d2107f899c21d210 /* SqPruningPool.cpp */,
- FFFD9c21d2787f899c21d278 /* SqPruningStructure.cpp */,
- FFFD9c21d2e07f899c21d2e0 /* SqSceneQueryManager.cpp */,
- FFFD9c21d3487f899c21d348 /* SqAABBPruner.h */,
- FFFD9c21d3b07f899c21d3b0 /* SqAABBTree.h */,
- FFFD9c21d4187f899c21d418 /* SqAABBTreeBuild.h */,
- FFFD9c21d4807f899c21d480 /* SqAABBTreeQuery.h */,
- FFFD9c21d4e87f899c21d4e8 /* SqAABBTreeUpdateMap.h */,
- FFFD9c21d5507f899c21d550 /* SqBounds.h */,
- FFFD9c21d5b87f899c21d5b8 /* SqBucketPruner.h */,
- FFFD9c21d6207f899c21d620 /* SqExtendedBucketPruner.h */,
- FFFD9c21d6887f899c21d688 /* SqIncrementalAABBPrunerCore.h */,
- FFFD9c21d6f07f899c21d6f0 /* SqIncrementalAABBTree.h */,
- FFFD9c21d7587f899c21d758 /* SqPrunerTestsSIMD.h */,
- FFFD9c21d7c07f899c21d7c0 /* SqPruningPool.h */,
- FFFD9c21d8287f899c21d828 /* SqTypedef.h */,
+ FFFD448570007fba44857000 /* SqAABBPruner.cpp */,
+ FFFD448570687fba44857068 /* SqAABBTree.cpp */,
+ FFFD448570d07fba448570d0 /* SqAABBTreeBuild.cpp */,
+ FFFD448571387fba44857138 /* SqAABBTreeUpdateMap.cpp */,
+ FFFD448571a07fba448571a0 /* SqBounds.cpp */,
+ FFFD448572087fba44857208 /* SqBucketPruner.cpp */,
+ FFFD448572707fba44857270 /* SqExtendedBucketPruner.cpp */,
+ FFFD448572d87fba448572d8 /* SqIncrementalAABBPrunerCore.cpp */,
+ FFFD448573407fba44857340 /* SqIncrementalAABBTree.cpp */,
+ FFFD448573a87fba448573a8 /* SqMetaData.cpp */,
+ FFFD448574107fba44857410 /* SqPruningPool.cpp */,
+ FFFD448574787fba44857478 /* SqPruningStructure.cpp */,
+ FFFD448574e07fba448574e0 /* SqSceneQueryManager.cpp */,
+ FFFD448575487fba44857548 /* SqAABBPruner.h */,
+ FFFD448575b07fba448575b0 /* SqAABBTree.h */,
+ FFFD448576187fba44857618 /* SqAABBTreeBuild.h */,
+ FFFD448576807fba44857680 /* SqAABBTreeQuery.h */,
+ FFFD448576e87fba448576e8 /* SqAABBTreeUpdateMap.h */,
+ FFFD448577507fba44857750 /* SqBounds.h */,
+ FFFD448577b87fba448577b8 /* SqBucketPruner.h */,
+ FFFD448578207fba44857820 /* SqExtendedBucketPruner.h */,
+ FFFD448578887fba44857888 /* SqIncrementalAABBPrunerCore.h */,
+ FFFD448578f07fba448578f0 /* SqIncrementalAABBTree.h */,
+ FFFD448579587fba44857958 /* SqPrunerTestsSIMD.h */,
+ FFFD448579c07fba448579c0 /* SqPruningPool.h */,
+ FFFD44857a287fba44857a28 /* SqTypedef.h */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
- FFFB9e4f07087f899e4f0708 /* include */ = {
+ FFFB441d5b787fba441d5b78 /* include */ = {
isa = PBXGroup;
children = (
- FFFD9e5187f07f899e5187f0 /* SqPruner.h */,
- FFFD9e5188587f899e518858 /* SqPrunerMergeData.h */,
- FFFD9e5188c07f899e5188c0 /* SqPruningStructure.h */,
- FFFD9e5189287f899e518928 /* SqSceneQueryManager.h */,
+ FFFD441d83607fba441d8360 /* SqPruner.h */,
+ FFFD441d83c87fba441d83c8 /* SqPrunerMergeData.h */,
+ FFFD441d84307fba441d8430 /* SqPruningStructure.h */,
+ FFFD441d84987fba441d8498 /* SqSceneQueryManager.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
- FFFB9e518ab07f899e518ab0 /* SimulationController */ = {
+ FFFB441d86207fba441d8620 /* SimulationController */ = {
isa = PBXGroup;
children = (
- FFFB9e5094307f899e509430 /* include */,
- FFFB9e5094587f899e509458 /* src */,
+ FFFB441db0507fba441db050 /* include */,
+ FFFB441db0787fba441db078 /* src */,
);
name = "SimulationController";
sourceTree = "<group>";
};
- FFFB9e5094307f899e509430 /* include */ = {
+ FFFB441db0507fba441db050 /* include */ = {
isa = PBXGroup;
children = (
- FFFD9c21fa007f899c21fa00 /* ScActorCore.h */,
- FFFD9c21fa687f899c21fa68 /* ScArticulationCore.h */,
- FFFD9c21fad07f899c21fad0 /* ScArticulationJointCore.h */,
- FFFD9c21fb387f899c21fb38 /* ScBodyCore.h */,
- FFFD9c21fba07f899c21fba0 /* ScClothCore.h */,
- FFFD9c21fc087f899c21fc08 /* ScClothFabricCore.h */,
- FFFD9c21fc707f899c21fc70 /* ScConstraintCore.h */,
- FFFD9c21fcd87f899c21fcd8 /* ScIterators.h */,
- FFFD9c21fd407f899c21fd40 /* ScMaterialCore.h */,
- FFFD9c21fda87f899c21fda8 /* ScParticleSystemCore.h */,
- FFFD9c21fe107f899c21fe10 /* ScPhysics.h */,
- FFFD9c21fe787f899c21fe78 /* ScRigidCore.h */,
- FFFD9c21fee07f899c21fee0 /* ScScene.h */,
- FFFD9c21ff487f899c21ff48 /* ScShapeCore.h */,
- FFFD9c21ffb07f899c21ffb0 /* ScStaticCore.h */,
+ FFFD44859c007fba44859c00 /* ScActorCore.h */,
+ FFFD44859c687fba44859c68 /* ScArticulationCore.h */,
+ FFFD44859cd07fba44859cd0 /* ScArticulationJointCore.h */,
+ FFFD44859d387fba44859d38 /* ScBodyCore.h */,
+ FFFD44859da07fba44859da0 /* ScClothCore.h */,
+ FFFD44859e087fba44859e08 /* ScClothFabricCore.h */,
+ FFFD44859e707fba44859e70 /* ScConstraintCore.h */,
+ FFFD44859ed87fba44859ed8 /* ScIterators.h */,
+ FFFD44859f407fba44859f40 /* ScMaterialCore.h */,
+ FFFD44859fa87fba44859fa8 /* ScParticleSystemCore.h */,
+ FFFD4485a0107fba4485a010 /* ScPhysics.h */,
+ FFFD4485a0787fba4485a078 /* ScRigidCore.h */,
+ FFFD4485a0e07fba4485a0e0 /* ScScene.h */,
+ FFFD4485a1487fba4485a148 /* ScShapeCore.h */,
+ FFFD4485a1b07fba4485a1b0 /* ScStaticCore.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
- FFFB9e5094587f899e509458 /* src */ = {
+ FFFB441db0787fba441db078 /* src */ = {
isa = PBXGroup;
children = (
- FFFD9c222e007f899c222e00 /* ScActorElementPair.h */,
- FFFD9c222e687f899c222e68 /* ScActorInteraction.h */,
- FFFD9c222ed07f899c222ed0 /* ScActorPair.h */,
- FFFD9c222f387f899c222f38 /* ScActorSim.h */,
- FFFD9c222fa07f899c222fa0 /* ScArticulationJointSim.h */,
- FFFD9c2230087f899c223008 /* ScArticulationSim.h */,
- FFFD9c2230707f899c223070 /* ScBodySim.h */,
- FFFD9c2230d87f899c2230d8 /* ScClient.h */,
- FFFD9c2231407f899c223140 /* ScConstraintGroupNode.h */,
- FFFD9c2231a87f899c2231a8 /* ScConstraintInteraction.h */,
- FFFD9c2232107f899c223210 /* ScConstraintProjectionManager.h */,
- FFFD9c2232787f899c223278 /* ScConstraintProjectionTree.h */,
- FFFD9c2232e07f899c2232e0 /* ScConstraintSim.h */,
- FFFD9c2233487f899c223348 /* ScContactReportBuffer.h */,
- FFFD9c2233b07f899c2233b0 /* ScContactStream.h */,
- FFFD9c2234187f899c223418 /* ScElementInteractionMarker.h */,
- FFFD9c2234807f899c223480 /* ScElementSim.h */,
- FFFD9c2234e87f899c2234e8 /* ScElementSimInteraction.h */,
- FFFD9c2235507f899c223550 /* ScInteraction.h */,
- FFFD9c2235b87f899c2235b8 /* ScInteractionFlags.h */,
- FFFD9c2236207f899c223620 /* ScNPhaseCore.h */,
- FFFD9c2236887f899c223688 /* ScObjectIDTracker.h */,
- FFFD9c2236f07f899c2236f0 /* ScRbElementInteraction.h */,
- FFFD9c2237587f899c223758 /* ScRigidSim.h */,
- FFFD9c2237c07f899c2237c0 /* ScShapeInteraction.h */,
- FFFD9c2238287f899c223828 /* ScShapeIterator.h */,
- FFFD9c2238907f899c223890 /* ScShapeSim.h */,
- FFFD9c2238f87f899c2238f8 /* ScSimStateData.h */,
- FFFD9c2239607f899c223960 /* ScSimStats.h */,
- FFFD9c2239c87f899c2239c8 /* ScSimulationController.h */,
- FFFD9c223a307f899c223a30 /* ScSqBoundsManager.h */,
- FFFD9c223a987f899c223a98 /* ScStaticSim.h */,
- FFFD9c223b007f899c223b00 /* ScTriggerInteraction.h */,
- FFFD9c223b687f899c223b68 /* ScTriggerPairs.h */,
- FFFD9c223bd07f899c223bd0 /* ScActorCore.cpp */,
- FFFD9c223c387f899c223c38 /* ScActorSim.cpp */,
- FFFD9c223ca07f899c223ca0 /* ScArticulationCore.cpp */,
- FFFD9c223d087f899c223d08 /* ScArticulationJointCore.cpp */,
- FFFD9c223d707f899c223d70 /* ScArticulationJointSim.cpp */,
- FFFD9c223dd87f899c223dd8 /* ScArticulationSim.cpp */,
- FFFD9c223e407f899c223e40 /* ScBodyCore.cpp */,
- FFFD9c223ea87f899c223ea8 /* ScBodyCoreKinematic.cpp */,
- FFFD9c223f107f899c223f10 /* ScBodySim.cpp */,
- FFFD9c223f787f899c223f78 /* ScConstraintCore.cpp */,
- FFFD9c223fe07f899c223fe0 /* ScConstraintGroupNode.cpp */,
- FFFD9c2240487f899c224048 /* ScConstraintInteraction.cpp */,
- FFFD9c2240b07f899c2240b0 /* ScConstraintProjectionManager.cpp */,
- FFFD9c2241187f899c224118 /* ScConstraintProjectionTree.cpp */,
- FFFD9c2241807f899c224180 /* ScConstraintSim.cpp */,
- FFFD9c2241e87f899c2241e8 /* ScElementInteractionMarker.cpp */,
- FFFD9c2242507f899c224250 /* ScElementSim.cpp */,
- FFFD9c2242b87f899c2242b8 /* ScInteraction.cpp */,
- FFFD9c2243207f899c224320 /* ScIterators.cpp */,
- FFFD9c2243887f899c224388 /* ScMaterialCore.cpp */,
- FFFD9c2243f07f899c2243f0 /* ScMetaData.cpp */,
- FFFD9c2244587f899c224458 /* ScNPhaseCore.cpp */,
- FFFD9c2244c07f899c2244c0 /* ScPhysics.cpp */,
- FFFD9c2245287f899c224528 /* ScRigidCore.cpp */,
- FFFD9c2245907f899c224590 /* ScRigidSim.cpp */,
- FFFD9c2245f87f899c2245f8 /* ScScene.cpp */,
- FFFD9c2246607f899c224660 /* ScShapeCore.cpp */,
- FFFD9c2246c87f899c2246c8 /* ScShapeInteraction.cpp */,
- FFFD9c2247307f899c224730 /* ScShapeSim.cpp */,
- FFFD9c2247987f899c224798 /* ScSimStats.cpp */,
- FFFD9c2248007f899c224800 /* ScSimulationController.cpp */,
- FFFD9c2248687f899c224868 /* ScSqBoundsManager.cpp */,
- FFFD9c2248d07f899c2248d0 /* ScStaticCore.cpp */,
- FFFD9c2249387f899c224938 /* ScStaticSim.cpp */,
- FFFD9c2249a07f899c2249a0 /* ScTriggerInteraction.cpp */,
- FFFD9c224a087f899c224a08 /* particles/ScParticleBodyInteraction.h */,
- FFFD9c224a707f899c224a70 /* particles/ScParticlePacketShape.h */,
- FFFD9c224ad87f899c224ad8 /* particles/ScParticleSystemSim.h */,
- FFFD9c224b407f899c224b40 /* particles/ScParticleBodyInteraction.cpp */,
- FFFD9c224ba87f899c224ba8 /* particles/ScParticlePacketShape.cpp */,
- FFFD9c224c107f899c224c10 /* particles/ScParticleSystemCore.cpp */,
- FFFD9c224c787f899c224c78 /* particles/ScParticleSystemSim.cpp */,
- FFFD9c224ce07f899c224ce0 /* cloth/ScClothShape.h */,
- FFFD9c224d487f899c224d48 /* cloth/ScClothSim.h */,
- FFFD9c224db07f899c224db0 /* cloth/ScClothCore.cpp */,
- FFFD9c224e187f899c224e18 /* cloth/ScClothFabricCore.cpp */,
- FFFD9c224e807f899c224e80 /* cloth/ScClothShape.cpp */,
- FFFD9c224ee87f899c224ee8 /* cloth/ScClothSim.cpp */,
+ FFFD4485ce007fba4485ce00 /* ScActorElementPair.h */,
+ FFFD4485ce687fba4485ce68 /* ScActorInteraction.h */,
+ FFFD4485ced07fba4485ced0 /* ScActorPair.h */,
+ FFFD4485cf387fba4485cf38 /* ScActorSim.h */,
+ FFFD4485cfa07fba4485cfa0 /* ScArticulationJointSim.h */,
+ FFFD4485d0087fba4485d008 /* ScArticulationSim.h */,
+ FFFD4485d0707fba4485d070 /* ScBodySim.h */,
+ FFFD4485d0d87fba4485d0d8 /* ScClient.h */,
+ FFFD4485d1407fba4485d140 /* ScConstraintGroupNode.h */,
+ FFFD4485d1a87fba4485d1a8 /* ScConstraintInteraction.h */,
+ FFFD4485d2107fba4485d210 /* ScConstraintProjectionManager.h */,
+ FFFD4485d2787fba4485d278 /* ScConstraintProjectionTree.h */,
+ FFFD4485d2e07fba4485d2e0 /* ScConstraintSim.h */,
+ FFFD4485d3487fba4485d348 /* ScContactReportBuffer.h */,
+ FFFD4485d3b07fba4485d3b0 /* ScContactStream.h */,
+ FFFD4485d4187fba4485d418 /* ScElementInteractionMarker.h */,
+ FFFD4485d4807fba4485d480 /* ScElementSim.h */,
+ FFFD4485d4e87fba4485d4e8 /* ScElementSimInteraction.h */,
+ FFFD4485d5507fba4485d550 /* ScInteraction.h */,
+ FFFD4485d5b87fba4485d5b8 /* ScInteractionFlags.h */,
+ FFFD4485d6207fba4485d620 /* ScNPhaseCore.h */,
+ FFFD4485d6887fba4485d688 /* ScObjectIDTracker.h */,
+ FFFD4485d6f07fba4485d6f0 /* ScRbElementInteraction.h */,
+ FFFD4485d7587fba4485d758 /* ScRigidSim.h */,
+ FFFD4485d7c07fba4485d7c0 /* ScShapeInteraction.h */,
+ FFFD4485d8287fba4485d828 /* ScShapeIterator.h */,
+ FFFD4485d8907fba4485d890 /* ScShapeSim.h */,
+ FFFD4485d8f87fba4485d8f8 /* ScSimStateData.h */,
+ FFFD4485d9607fba4485d960 /* ScSimStats.h */,
+ FFFD4485d9c87fba4485d9c8 /* ScSimulationController.h */,
+ FFFD4485da307fba4485da30 /* ScSqBoundsManager.h */,
+ FFFD4485da987fba4485da98 /* ScStaticSim.h */,
+ FFFD4485db007fba4485db00 /* ScTriggerInteraction.h */,
+ FFFD4485db687fba4485db68 /* ScTriggerPairs.h */,
+ FFFD4485dbd07fba4485dbd0 /* ScActorCore.cpp */,
+ FFFD4485dc387fba4485dc38 /* ScActorSim.cpp */,
+ FFFD4485dca07fba4485dca0 /* ScArticulationCore.cpp */,
+ FFFD4485dd087fba4485dd08 /* ScArticulationJointCore.cpp */,
+ FFFD4485dd707fba4485dd70 /* ScArticulationJointSim.cpp */,
+ FFFD4485ddd87fba4485ddd8 /* ScArticulationSim.cpp */,
+ FFFD4485de407fba4485de40 /* ScBodyCore.cpp */,
+ FFFD4485dea87fba4485dea8 /* ScBodyCoreKinematic.cpp */,
+ FFFD4485df107fba4485df10 /* ScBodySim.cpp */,
+ FFFD4485df787fba4485df78 /* ScConstraintCore.cpp */,
+ FFFD4485dfe07fba4485dfe0 /* ScConstraintGroupNode.cpp */,
+ FFFD4485e0487fba4485e048 /* ScConstraintInteraction.cpp */,
+ FFFD4485e0b07fba4485e0b0 /* ScConstraintProjectionManager.cpp */,
+ FFFD4485e1187fba4485e118 /* ScConstraintProjectionTree.cpp */,
+ FFFD4485e1807fba4485e180 /* ScConstraintSim.cpp */,
+ FFFD4485e1e87fba4485e1e8 /* ScElementInteractionMarker.cpp */,
+ FFFD4485e2507fba4485e250 /* ScElementSim.cpp */,
+ FFFD4485e2b87fba4485e2b8 /* ScInteraction.cpp */,
+ FFFD4485e3207fba4485e320 /* ScIterators.cpp */,
+ FFFD4485e3887fba4485e388 /* ScMaterialCore.cpp */,
+ FFFD4485e3f07fba4485e3f0 /* ScMetaData.cpp */,
+ FFFD4485e4587fba4485e458 /* ScNPhaseCore.cpp */,
+ FFFD4485e4c07fba4485e4c0 /* ScPhysics.cpp */,
+ FFFD4485e5287fba4485e528 /* ScRigidCore.cpp */,
+ FFFD4485e5907fba4485e590 /* ScRigidSim.cpp */,
+ FFFD4485e5f87fba4485e5f8 /* ScScene.cpp */,
+ FFFD4485e6607fba4485e660 /* ScShapeCore.cpp */,
+ FFFD4485e6c87fba4485e6c8 /* ScShapeInteraction.cpp */,
+ FFFD4485e7307fba4485e730 /* ScShapeSim.cpp */,
+ FFFD4485e7987fba4485e798 /* ScSimStats.cpp */,
+ FFFD4485e8007fba4485e800 /* ScSimulationController.cpp */,
+ FFFD4485e8687fba4485e868 /* ScSqBoundsManager.cpp */,
+ FFFD4485e8d07fba4485e8d0 /* ScStaticCore.cpp */,
+ FFFD4485e9387fba4485e938 /* ScStaticSim.cpp */,
+ FFFD4485e9a07fba4485e9a0 /* ScTriggerInteraction.cpp */,
+ FFFD4485ea087fba4485ea08 /* particles/ScParticleBodyInteraction.h */,
+ FFFD4485ea707fba4485ea70 /* particles/ScParticlePacketShape.h */,
+ FFFD4485ead87fba4485ead8 /* particles/ScParticleSystemSim.h */,
+ FFFD4485eb407fba4485eb40 /* particles/ScParticleBodyInteraction.cpp */,
+ FFFD4485eba87fba4485eba8 /* particles/ScParticlePacketShape.cpp */,
+ FFFD4485ec107fba4485ec10 /* particles/ScParticleSystemCore.cpp */,
+ FFFD4485ec787fba4485ec78 /* particles/ScParticleSystemSim.cpp */,
+ FFFD4485ece07fba4485ece0 /* cloth/ScClothShape.h */,
+ FFFD4485ed487fba4485ed48 /* cloth/ScClothSim.h */,
+ FFFD4485edb07fba4485edb0 /* cloth/ScClothCore.cpp */,
+ FFFD4485ee187fba4485ee18 /* cloth/ScClothFabricCore.cpp */,
+ FFFD4485ee807fba4485ee80 /* cloth/ScClothShape.cpp */,
+ FFFD4485eee87fba4485eee8 /* cloth/ScClothSim.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
- FFFB9e5094807f899e509480 /* PhysXCooking */ = {
+ FFFB441dd8c07fba441dd8c0 /* PhysXCooking */ = {
isa = PBXGroup;
children = (
- FFFB9e51d8f07f899e51d8f0 /* include */,
- FFFB9e51d9187f899e51d918 /* src */,
+ FFFB441e1b507fba441e1b50 /* include */,
+ FFFB441e1b787fba441e1b78 /* src */,
);
name = "PhysXCooking";
sourceTree = "<group>";
};
- FFFB9e51d8f07f899e51d8f0 /* include */ = {
+ FFFB441e1b507fba441e1b50 /* include */ = {
isa = PBXGroup;
children = (
- FFFD9e523f307f899e523f30 /* PxBVH33MidphaseDesc.h */,
- FFFD9e523f987f899e523f98 /* PxBVH34MidphaseDesc.h */,
- FFFD9e5240007f899e524000 /* PxConvexMeshDesc.h */,
- FFFD9e5240687f899e524068 /* PxCooking.h */,
- FFFD9e5240d07f899e5240d0 /* PxMidphaseDesc.h */,
- FFFD9e5241387f899e524138 /* PxTriangleMeshDesc.h */,
- FFFD9e5241a07f899e5241a0 /* Pxc.h */,
+ FFFD441e79c07fba441e79c0 /* PxBVH33MidphaseDesc.h */,
+ FFFD441e7a287fba441e7a28 /* PxBVH34MidphaseDesc.h */,
+ FFFD441e7a907fba441e7a90 /* PxConvexMeshDesc.h */,
+ FFFD441e7af87fba441e7af8 /* PxCooking.h */,
+ FFFD441e7b607fba441e7b60 /* PxMidphaseDesc.h */,
+ FFFD441e7bc87fba441e7bc8 /* PxTriangleMeshDesc.h */,
+ FFFD441e7c307fba441e7c30 /* Pxc.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
- FFFB9e51d9187f899e51d918 /* src */ = {
+ FFFB441e1b787fba441e1b78 /* src */ = {
isa = PBXGroup;
children = (
- FFFD9c2270007f899c227000 /* Adjacencies.cpp */,
- FFFD9c2270687f899c227068 /* Cooking.cpp */,
- FFFD9c2270d07f899c2270d0 /* CookingUtils.cpp */,
- FFFD9c2271387f899c227138 /* EdgeList.cpp */,
- FFFD9c2271a07f899c2271a0 /* MeshCleaner.cpp */,
- FFFD9c2272087f899c227208 /* Quantizer.cpp */,
- FFFD9c2272707f899c227270 /* Adjacencies.h */,
- FFFD9c2272d87f899c2272d8 /* Cooking.h */,
- FFFD9c2273407f899c227340 /* CookingUtils.h */,
- FFFD9c2273a87f899c2273a8 /* EdgeList.h */,
- FFFD9c2274107f899c227410 /* MeshCleaner.h */,
- FFFD9c2274787f899c227478 /* Quantizer.h */,
- FFFD9c2274e07f899c2274e0 /* mesh/GrbTriangleMeshCooking.cpp */,
- FFFD9c2275487f899c227548 /* mesh/HeightFieldCooking.cpp */,
- FFFD9c2275b07f899c2275b0 /* mesh/RTreeCooking.cpp */,
- FFFD9c2276187f899c227618 /* mesh/TriangleMeshBuilder.cpp */,
- FFFD9c2276807f899c227680 /* mesh/GrbTriangleMeshCooking.h */,
- FFFD9c2276e87f899c2276e8 /* mesh/HeightFieldCooking.h */,
- FFFD9c2277507f899c227750 /* mesh/QuickSelect.h */,
- FFFD9c2277b87f899c2277b8 /* mesh/RTreeCooking.h */,
- FFFD9c2278207f899c227820 /* mesh/TriangleMeshBuilder.h */,
- FFFD9c2278887f899c227888 /* convex/BigConvexDataBuilder.cpp */,
- FFFD9c2278f07f899c2278f0 /* convex/ConvexHullBuilder.cpp */,
- FFFD9c2279587f899c227958 /* convex/ConvexHullLib.cpp */,
- FFFD9c2279c07f899c2279c0 /* convex/ConvexHullUtils.cpp */,
- FFFD9c227a287f899c227a28 /* convex/ConvexMeshBuilder.cpp */,
- FFFD9c227a907f899c227a90 /* convex/ConvexPolygonsBuilder.cpp */,
- FFFD9c227af87f899c227af8 /* convex/InflationConvexHullLib.cpp */,
- FFFD9c227b607f899c227b60 /* convex/QuickHullConvexHullLib.cpp */,
- FFFD9c227bc87f899c227bc8 /* convex/VolumeIntegration.cpp */,
- FFFD9c227c307f899c227c30 /* convex/BigConvexDataBuilder.h */,
- FFFD9c227c987f899c227c98 /* convex/ConvexHullBuilder.h */,
- FFFD9c227d007f899c227d00 /* convex/ConvexHullLib.h */,
- FFFD9c227d687f899c227d68 /* convex/ConvexHullUtils.h */,
- FFFD9c227dd07f899c227dd0 /* convex/ConvexMeshBuilder.h */,
- FFFD9c227e387f899c227e38 /* convex/ConvexPolygonsBuilder.h */,
- FFFD9c227ea07f899c227ea0 /* convex/InflationConvexHullLib.h */,
- FFFD9c227f087f899c227f08 /* convex/QuickHullConvexHullLib.h */,
- FFFD9c227f707f899c227f70 /* convex/VolumeIntegration.h */,
+ FFFD448610007fba44861000 /* Adjacencies.cpp */,
+ FFFD448610687fba44861068 /* Cooking.cpp */,
+ FFFD448610d07fba448610d0 /* CookingUtils.cpp */,
+ FFFD448611387fba44861138 /* EdgeList.cpp */,
+ FFFD448611a07fba448611a0 /* MeshCleaner.cpp */,
+ FFFD448612087fba44861208 /* Quantizer.cpp */,
+ FFFD448612707fba44861270 /* Adjacencies.h */,
+ FFFD448612d87fba448612d8 /* Cooking.h */,
+ FFFD448613407fba44861340 /* CookingUtils.h */,
+ FFFD448613a87fba448613a8 /* EdgeList.h */,
+ FFFD448614107fba44861410 /* MeshCleaner.h */,
+ FFFD448614787fba44861478 /* Quantizer.h */,
+ FFFD448614e07fba448614e0 /* mesh/GrbTriangleMeshCooking.cpp */,
+ FFFD448615487fba44861548 /* mesh/HeightFieldCooking.cpp */,
+ FFFD448615b07fba448615b0 /* mesh/RTreeCooking.cpp */,
+ FFFD448616187fba44861618 /* mesh/TriangleMeshBuilder.cpp */,
+ FFFD448616807fba44861680 /* mesh/GrbTriangleMeshCooking.h */,
+ FFFD448616e87fba448616e8 /* mesh/HeightFieldCooking.h */,
+ FFFD448617507fba44861750 /* mesh/QuickSelect.h */,
+ FFFD448617b87fba448617b8 /* mesh/RTreeCooking.h */,
+ FFFD448618207fba44861820 /* mesh/TriangleMeshBuilder.h */,
+ FFFD448618887fba44861888 /* convex/BigConvexDataBuilder.cpp */,
+ FFFD448618f07fba448618f0 /* convex/ConvexHullBuilder.cpp */,
+ FFFD448619587fba44861958 /* convex/ConvexHullLib.cpp */,
+ FFFD448619c07fba448619c0 /* convex/ConvexHullUtils.cpp */,
+ FFFD44861a287fba44861a28 /* convex/ConvexMeshBuilder.cpp */,
+ FFFD44861a907fba44861a90 /* convex/ConvexPolygonsBuilder.cpp */,
+ FFFD44861af87fba44861af8 /* convex/InflationConvexHullLib.cpp */,
+ FFFD44861b607fba44861b60 /* convex/QuickHullConvexHullLib.cpp */,
+ FFFD44861bc87fba44861bc8 /* convex/VolumeIntegration.cpp */,
+ FFFD44861c307fba44861c30 /* convex/BigConvexDataBuilder.h */,
+ FFFD44861c987fba44861c98 /* convex/ConvexHullBuilder.h */,
+ FFFD44861d007fba44861d00 /* convex/ConvexHullLib.h */,
+ FFFD44861d687fba44861d68 /* convex/ConvexHullUtils.h */,
+ FFFD44861dd07fba44861dd0 /* convex/ConvexMeshBuilder.h */,
+ FFFD44861e387fba44861e38 /* convex/ConvexPolygonsBuilder.h */,
+ FFFD44861ea07fba44861ea0 /* convex/InflationConvexHullLib.h */,
+ FFFD44861f087fba44861f08 /* convex/QuickHullConvexHullLib.h */,
+ FFFD44861f707fba44861f70 /* convex/VolumeIntegration.h */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
- FFFB9c88a7507f899c88a750 /* PhysXCommon */ = {
+ FFFB431a02b07fba431a02b0 /* PhysXCommon */ = {
isa = PBXGroup;
children = (
- FFFB9cb079907f899cb07990 /* include */,
- FFFB9cb079b87f899cb079b8 /* common */,
- FFFB9cb079e07f899cb079e0 /* geomutils */,
+ FFFB431850a07fba431850a0 /* include */,
+ FFFB431850c87fba431850c8 /* common */,
+ FFFB431850f07fba431850f0 /* geomutils */,
);
name = "PhysXCommon";
sourceTree = "<group>";
};
- FFFB9cb079907f899cb07990 /* include */ = {
+ FFFB431850a07fba431850a0 /* include */ = {
isa = PBXGroup;
children = (
- FFFD9d00ec007f899d00ec00 /* common/PxBase.h */,
- FFFD9d00ec687f899d00ec68 /* common/PxCollection.h */,
- FFFD9d00ecd07f899d00ecd0 /* common/PxCoreUtilityTypes.h */,
- FFFD9d00ed387f899d00ed38 /* common/PxMetaData.h */,
- FFFD9d00eda07f899d00eda0 /* common/PxMetaDataFlags.h */,
- FFFD9d00ee087f899d00ee08 /* common/PxPhysXCommonConfig.h */,
- FFFD9d00ee707f899d00ee70 /* common/PxPhysicsInsertionCallback.h */,
- FFFD9d00eed87f899d00eed8 /* common/PxRenderBuffer.h */,
- FFFD9d00ef407f899d00ef40 /* common/PxSerialFramework.h */,
- FFFD9d00efa87f899d00efa8 /* common/PxSerializer.h */,
- FFFD9d00f0107f899d00f010 /* common/PxStringTable.h */,
- FFFD9d00f0787f899d00f078 /* common/PxTolerancesScale.h */,
- FFFD9d00f0e07f899d00f0e0 /* common/PxTypeInfo.h */,
- FFFD9d00f1487f899d00f148 /* geometry/PxBoxGeometry.h */,
- FFFD9d00f1b07f899d00f1b0 /* geometry/PxCapsuleGeometry.h */,
- FFFD9d00f2187f899d00f218 /* geometry/PxConvexMesh.h */,
- FFFD9d00f2807f899d00f280 /* geometry/PxConvexMeshGeometry.h */,
- FFFD9d00f2e87f899d00f2e8 /* geometry/PxGeometry.h */,
- FFFD9d00f3507f899d00f350 /* geometry/PxGeometryHelpers.h */,
- FFFD9d00f3b87f899d00f3b8 /* geometry/PxGeometryQuery.h */,
- FFFD9d00f4207f899d00f420 /* geometry/PxHeightField.h */,
- FFFD9d00f4887f899d00f488 /* geometry/PxHeightFieldDesc.h */,
- FFFD9d00f4f07f899d00f4f0 /* geometry/PxHeightFieldFlag.h */,
- FFFD9d00f5587f899d00f558 /* geometry/PxHeightFieldGeometry.h */,
- FFFD9d00f5c07f899d00f5c0 /* geometry/PxHeightFieldSample.h */,
- FFFD9d00f6287f899d00f628 /* geometry/PxMeshQuery.h */,
- FFFD9d00f6907f899d00f690 /* geometry/PxMeshScale.h */,
- FFFD9d00f6f87f899d00f6f8 /* geometry/PxPlaneGeometry.h */,
- FFFD9d00f7607f899d00f760 /* geometry/PxSimpleTriangleMesh.h */,
- FFFD9d00f7c87f899d00f7c8 /* geometry/PxSphereGeometry.h */,
- FFFD9d00f8307f899d00f830 /* geometry/PxTriangle.h */,
- FFFD9d00f8987f899d00f898 /* geometry/PxTriangleMesh.h */,
- FFFD9d00f9007f899d00f900 /* geometry/PxTriangleMeshGeometry.h */,
+ FFFD420110007fba42011000 /* common/PxBase.h */,
+ FFFD420110687fba42011068 /* common/PxCollection.h */,
+ FFFD420110d07fba420110d0 /* common/PxCoreUtilityTypes.h */,
+ FFFD420111387fba42011138 /* common/PxMetaData.h */,
+ FFFD420111a07fba420111a0 /* common/PxMetaDataFlags.h */,
+ FFFD420112087fba42011208 /* common/PxPhysXCommonConfig.h */,
+ FFFD420112707fba42011270 /* common/PxPhysicsInsertionCallback.h */,
+ FFFD420112d87fba420112d8 /* common/PxRenderBuffer.h */,
+ FFFD420113407fba42011340 /* common/PxSerialFramework.h */,
+ FFFD420113a87fba420113a8 /* common/PxSerializer.h */,
+ FFFD420114107fba42011410 /* common/PxStringTable.h */,
+ FFFD420114787fba42011478 /* common/PxTolerancesScale.h */,
+ FFFD420114e07fba420114e0 /* common/PxTypeInfo.h */,
+ FFFD420115487fba42011548 /* geometry/PxBoxGeometry.h */,
+ FFFD420115b07fba420115b0 /* geometry/PxCapsuleGeometry.h */,
+ FFFD420116187fba42011618 /* geometry/PxConvexMesh.h */,
+ FFFD420116807fba42011680 /* geometry/PxConvexMeshGeometry.h */,
+ FFFD420116e87fba420116e8 /* geometry/PxGeometry.h */,
+ FFFD420117507fba42011750 /* geometry/PxGeometryHelpers.h */,
+ FFFD420117b87fba420117b8 /* geometry/PxGeometryQuery.h */,
+ FFFD420118207fba42011820 /* geometry/PxHeightField.h */,
+ FFFD420118887fba42011888 /* geometry/PxHeightFieldDesc.h */,
+ FFFD420118f07fba420118f0 /* geometry/PxHeightFieldFlag.h */,
+ FFFD420119587fba42011958 /* geometry/PxHeightFieldGeometry.h */,
+ FFFD420119c07fba420119c0 /* geometry/PxHeightFieldSample.h */,
+ FFFD42011a287fba42011a28 /* geometry/PxMeshQuery.h */,
+ FFFD42011a907fba42011a90 /* geometry/PxMeshScale.h */,
+ FFFD42011af87fba42011af8 /* geometry/PxPlaneGeometry.h */,
+ FFFD42011b607fba42011b60 /* geometry/PxSimpleTriangleMesh.h */,
+ FFFD42011bc87fba42011bc8 /* geometry/PxSphereGeometry.h */,
+ FFFD42011c307fba42011c30 /* geometry/PxTriangle.h */,
+ FFFD42011c987fba42011c98 /* geometry/PxTriangleMesh.h */,
+ FFFD42011d007fba42011d00 /* geometry/PxTriangleMeshGeometry.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
- FFFB9cb079b87f899cb079b8 /* common */ = {
+ FFFB431850c87fba431850c8 /* common */ = {
isa = PBXGroup;
children = (
- FFFD9c1a66007f899c1a6600 /* src/CmBoxPruning.cpp */,
- FFFD9c1a66687f899c1a6668 /* src/CmCollection.cpp */,
- FFFD9c1a66d07f899c1a66d0 /* src/CmMathUtils.cpp */,
- FFFD9c1a67387f899c1a6738 /* src/CmPtrTable.cpp */,
- FFFD9c1a67a07f899c1a67a0 /* src/CmRadixSort.cpp */,
- FFFD9c1a68087f899c1a6808 /* src/CmRadixSortBuffered.cpp */,
- FFFD9c1a68707f899c1a6870 /* src/CmRenderOutput.cpp */,
- FFFD9c1a68d87f899c1a68d8 /* src/CmVisualization.cpp */,
- FFFD9c1a69407f899c1a6940 /* src/CmBitMap.h */,
- FFFD9c1a69a87f899c1a69a8 /* src/CmBoxPruning.h */,
- FFFD9c1a6a107f899c1a6a10 /* src/CmCollection.h */,
- FFFD9c1a6a787f899c1a6a78 /* src/CmConeLimitHelper.h */,
- FFFD9c1a6ae07f899c1a6ae0 /* src/CmFlushPool.h */,
- FFFD9c1a6b487f899c1a6b48 /* src/CmIDPool.h */,
- FFFD9c1a6bb07f899c1a6bb0 /* src/CmIO.h */,
- FFFD9c1a6c187f899c1a6c18 /* src/CmMatrix34.h */,
- FFFD9c1a6c807f899c1a6c80 /* src/CmPhysXCommon.h */,
- FFFD9c1a6ce87f899c1a6ce8 /* src/CmPool.h */,
- FFFD9c1a6d507f899c1a6d50 /* src/CmPreallocatingPool.h */,
- FFFD9c1a6db87f899c1a6db8 /* src/CmPriorityQueue.h */,
- FFFD9c1a6e207f899c1a6e20 /* src/CmPtrTable.h */,
- FFFD9c1a6e887f899c1a6e88 /* src/CmQueue.h */,
- FFFD9c1a6ef07f899c1a6ef0 /* src/CmRadixSort.h */,
- FFFD9c1a6f587f899c1a6f58 /* src/CmRadixSortBuffered.h */,
- FFFD9c1a6fc07f899c1a6fc0 /* src/CmRefCountable.h */,
- FFFD9c1a70287f899c1a7028 /* src/CmRenderBuffer.h */,
- FFFD9c1a70907f899c1a7090 /* src/CmRenderOutput.h */,
- FFFD9c1a70f87f899c1a70f8 /* src/CmScaling.h */,
- FFFD9c1a71607f899c1a7160 /* src/CmSpatialVector.h */,
- FFFD9c1a71c87f899c1a71c8 /* src/CmTask.h */,
- FFFD9c1a72307f899c1a7230 /* src/CmTaskPool.h */,
- FFFD9c1a72987f899c1a7298 /* src/CmTmpMem.h */,
- FFFD9c1a73007f899c1a7300 /* src/CmTransformUtils.h */,
- FFFD9c1a73687f899c1a7368 /* src/CmUtils.h */,
- FFFD9c1a73d07f899c1a73d0 /* src/CmVisualization.h */,
+ FFFD429a48007fba429a4800 /* src/CmBoxPruning.cpp */,
+ FFFD429a48687fba429a4868 /* src/CmCollection.cpp */,
+ FFFD429a48d07fba429a48d0 /* src/CmMathUtils.cpp */,
+ FFFD429a49387fba429a4938 /* src/CmPtrTable.cpp */,
+ FFFD429a49a07fba429a49a0 /* src/CmRadixSort.cpp */,
+ FFFD429a4a087fba429a4a08 /* src/CmRadixSortBuffered.cpp */,
+ FFFD429a4a707fba429a4a70 /* src/CmRenderOutput.cpp */,
+ FFFD429a4ad87fba429a4ad8 /* src/CmVisualization.cpp */,
+ FFFD429a4b407fba429a4b40 /* src/CmBitMap.h */,
+ FFFD429a4ba87fba429a4ba8 /* src/CmBoxPruning.h */,
+ FFFD429a4c107fba429a4c10 /* src/CmCollection.h */,
+ FFFD429a4c787fba429a4c78 /* src/CmConeLimitHelper.h */,
+ FFFD429a4ce07fba429a4ce0 /* src/CmFlushPool.h */,
+ FFFD429a4d487fba429a4d48 /* src/CmIDPool.h */,
+ FFFD429a4db07fba429a4db0 /* src/CmIO.h */,
+ FFFD429a4e187fba429a4e18 /* src/CmMatrix34.h */,
+ FFFD429a4e807fba429a4e80 /* src/CmPhysXCommon.h */,
+ FFFD429a4ee87fba429a4ee8 /* src/CmPool.h */,
+ FFFD429a4f507fba429a4f50 /* src/CmPreallocatingPool.h */,
+ FFFD429a4fb87fba429a4fb8 /* src/CmPriorityQueue.h */,
+ FFFD429a50207fba429a5020 /* src/CmPtrTable.h */,
+ FFFD429a50887fba429a5088 /* src/CmQueue.h */,
+ FFFD429a50f07fba429a50f0 /* src/CmRadixSort.h */,
+ FFFD429a51587fba429a5158 /* src/CmRadixSortBuffered.h */,
+ FFFD429a51c07fba429a51c0 /* src/CmRefCountable.h */,
+ FFFD429a52287fba429a5228 /* src/CmRenderBuffer.h */,
+ FFFD429a52907fba429a5290 /* src/CmRenderOutput.h */,
+ FFFD429a52f87fba429a52f8 /* src/CmScaling.h */,
+ FFFD429a53607fba429a5360 /* src/CmSpatialVector.h */,
+ FFFD429a53c87fba429a53c8 /* src/CmTask.h */,
+ FFFD429a54307fba429a5430 /* src/CmTaskPool.h */,
+ FFFD429a54987fba429a5498 /* src/CmTmpMem.h */,
+ FFFD429a55007fba429a5500 /* src/CmTransformUtils.h */,
+ FFFD429a55687fba429a5568 /* src/CmUtils.h */,
+ FFFD429a55d07fba429a55d0 /* src/CmVisualization.h */,
);
name = "common";
sourceTree = SOURCE_ROOT;
};
- FFFB9cb079e07f899cb079e0 /* geomutils */ = {
+ FFFB431850f07fba431850f0 /* geomutils */ = {
isa = PBXGroup;
children = (
- FFFD9d0010007f899d001000 /* headers/GuAxes.h */,
- FFFD9d0010687f899d001068 /* headers/GuBox.h */,
- FFFD9d0010d07f899d0010d0 /* headers/GuDistanceSegmentBox.h */,
- FFFD9d0011387f899d001138 /* headers/GuDistanceSegmentSegment.h */,
- FFFD9d0011a07f899d0011a0 /* headers/GuIntersectionBoxBox.h */,
- FFFD9d0012087f899d001208 /* headers/GuIntersectionTriangleBox.h */,
- FFFD9d0012707f899d001270 /* headers/GuRaycastTests.h */,
- FFFD9d0012d87f899d0012d8 /* headers/GuSIMDHelpers.h */,
- FFFD9d0013407f899d001340 /* headers/GuSegment.h */,
- FFFD9d0013a87f899d0013a8 /* ../../Include/GeomUtils */,
- FFFD9d0014107f899d001410 /* src/GuBounds.h */,
- FFFD9d0014787f899d001478 /* src/GuCapsule.h */,
- FFFD9d0014e07f899d0014e0 /* src/GuCenterExtents.h */,
- FFFD9d0015487f899d001548 /* src/GuGeometryUnion.h */,
- FFFD9d0015b07f899d0015b0 /* src/GuInternal.h */,
- FFFD9d0016187f899d001618 /* src/GuMTD.h */,
- FFFD9d0016807f899d001680 /* src/GuMeshFactory.h */,
- FFFD9d0016e87f899d0016e8 /* src/GuOverlapTests.h */,
- FFFD9d0017507f899d001750 /* src/GuSerialize.h */,
- FFFD9d0017b87f899d0017b8 /* src/GuSphere.h */,
- FFFD9d0018207f899d001820 /* src/GuSweepMTD.h */,
- FFFD9d0018887f899d001888 /* src/GuSweepSharedTests.h */,
- FFFD9d0018f07f899d0018f0 /* src/GuSweepTests.h */,
- FFFD9d0019587f899d001958 /* src/contact/GuContactMethodImpl.h */,
- FFFD9d0019c07f899d0019c0 /* src/contact/GuContactPolygonPolygon.h */,
- FFFD9d001a287f899d001a28 /* src/contact/GuFeatureCode.h */,
- FFFD9d001a907f899d001a90 /* src/contact/GuLegacyTraceLineCallback.h */,
- FFFD9d001af87f899d001af8 /* src/common/GuBarycentricCoordinates.h */,
- FFFD9d001b607f899d001b60 /* src/common/GuBoxConversion.h */,
- FFFD9d001bc87f899d001bc8 /* src/common/GuEdgeCache.h */,
- FFFD9d001c307f899d001c30 /* src/common/GuEdgeListData.h */,
- FFFD9d001c987f899d001c98 /* src/common/GuSeparatingAxes.h */,
- FFFD9d001d007f899d001d00 /* src/convex/GuBigConvexData.h */,
- FFFD9d001d687f899d001d68 /* src/convex/GuBigConvexData2.h */,
- FFFD9d001dd07f899d001dd0 /* src/convex/GuConvexEdgeFlags.h */,
- FFFD9d001e387f899d001e38 /* src/convex/GuConvexHelper.h */,
- FFFD9d001ea07f899d001ea0 /* src/convex/GuConvexMesh.h */,
- FFFD9d001f087f899d001f08 /* src/convex/GuConvexMeshData.h */,
- FFFD9d001f707f899d001f70 /* src/convex/GuConvexSupportTable.h */,
- FFFD9d001fd87f899d001fd8 /* src/convex/GuConvexUtilsInternal.h */,
- FFFD9d0020407f899d002040 /* src/convex/GuCubeIndex.h */,
- FFFD9d0020a87f899d0020a8 /* src/convex/GuHillClimbing.h */,
- FFFD9d0021107f899d002110 /* src/convex/GuShapeConvex.h */,
- FFFD9d0021787f899d002178 /* src/distance/GuDistancePointBox.h */,
- FFFD9d0021e07f899d0021e0 /* src/distance/GuDistancePointSegment.h */,
- FFFD9d0022487f899d002248 /* src/distance/GuDistancePointTriangle.h */,
- FFFD9d0022b07f899d0022b0 /* src/distance/GuDistancePointTriangleSIMD.h */,
- FFFD9d0023187f899d002318 /* src/distance/GuDistanceSegmentSegmentSIMD.h */,
- FFFD9d0023807f899d002380 /* src/distance/GuDistanceSegmentTriangle.h */,
- FFFD9d0023e87f899d0023e8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */,
- FFFD9d0024507f899d002450 /* src/sweep/GuSweepBoxBox.h */,
- FFFD9d0024b87f899d0024b8 /* src/sweep/GuSweepBoxSphere.h */,
- FFFD9d0025207f899d002520 /* src/sweep/GuSweepBoxTriangle_FeatureBased.h */,
- FFFD9d0025887f899d002588 /* src/sweep/GuSweepBoxTriangle_SAT.h */,
- FFFD9d0025f07f899d0025f0 /* src/sweep/GuSweepCapsuleBox.h */,
- FFFD9d0026587f899d002658 /* src/sweep/GuSweepCapsuleCapsule.h */,
- FFFD9d0026c07f899d0026c0 /* src/sweep/GuSweepCapsuleTriangle.h */,
- FFFD9d0027287f899d002728 /* src/sweep/GuSweepSphereCapsule.h */,
- FFFD9d0027907f899d002790 /* src/sweep/GuSweepSphereSphere.h */,
- FFFD9d0027f87f899d0027f8 /* src/sweep/GuSweepSphereTriangle.h */,
- FFFD9d0028607f899d002860 /* src/sweep/GuSweepTriangleUtils.h */,
- FFFD9d0028c87f899d0028c8 /* src/gjk/GuEPA.h */,
- FFFD9d0029307f899d002930 /* src/gjk/GuEPAFacet.h */,
- FFFD9d0029987f899d002998 /* src/gjk/GuGJK.h */,
- FFFD9d002a007f899d002a00 /* src/gjk/GuGJKPenetration.h */,
- FFFD9d002a687f899d002a68 /* src/gjk/GuGJKRaycast.h */,
- FFFD9d002ad07f899d002ad0 /* src/gjk/GuGJKSimplex.h */,
- FFFD9d002b387f899d002b38 /* src/gjk/GuGJKTest.h */,
- FFFD9d002ba07f899d002ba0 /* src/gjk/GuGJKType.h */,
- FFFD9d002c087f899d002c08 /* src/gjk/GuGJKUtil.h */,
- FFFD9d002c707f899d002c70 /* src/gjk/GuVecBox.h */,
- FFFD9d002cd87f899d002cd8 /* src/gjk/GuVecCapsule.h */,
- FFFD9d002d407f899d002d40 /* src/gjk/GuVecConvex.h */,
- FFFD9d002da87f899d002da8 /* src/gjk/GuVecConvexHull.h */,
- FFFD9d002e107f899d002e10 /* src/gjk/GuVecConvexHullNoScale.h */,
- FFFD9d002e787f899d002e78 /* src/gjk/GuVecPlane.h */,
- FFFD9d002ee07f899d002ee0 /* src/gjk/GuVecShrunkBox.h */,
- FFFD9d002f487f899d002f48 /* src/gjk/GuVecShrunkConvexHull.h */,
- FFFD9d002fb07f899d002fb0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */,
- FFFD9d0030187f899d003018 /* src/gjk/GuVecSphere.h */,
- FFFD9d0030807f899d003080 /* src/gjk/GuVecTriangle.h */,
- FFFD9d0030e87f899d0030e8 /* src/intersection/GuIntersectionCapsuleTriangle.h */,
- FFFD9d0031507f899d003150 /* src/intersection/GuIntersectionEdgeEdge.h */,
- FFFD9d0031b87f899d0031b8 /* src/intersection/GuIntersectionRay.h */,
- FFFD9d0032207f899d003220 /* src/intersection/GuIntersectionRayBox.h */,
- FFFD9d0032887f899d003288 /* src/intersection/GuIntersectionRayBoxSIMD.h */,
- FFFD9d0032f07f899d0032f0 /* src/intersection/GuIntersectionRayCapsule.h */,
- FFFD9d0033587f899d003358 /* src/intersection/GuIntersectionRayPlane.h */,
- FFFD9d0033c07f899d0033c0 /* src/intersection/GuIntersectionRaySphere.h */,
- FFFD9d0034287f899d003428 /* src/intersection/GuIntersectionRayTriangle.h */,
- FFFD9d0034907f899d003490 /* src/intersection/GuIntersectionSphereBox.h */,
- FFFD9d0034f87f899d0034f8 /* src/mesh/GuBV32.h */,
- FFFD9d0035607f899d003560 /* src/mesh/GuBV32Build.h */,
- FFFD9d0035c87f899d0035c8 /* src/mesh/GuBV4.h */,
- FFFD9d0036307f899d003630 /* src/mesh/GuBV4Build.h */,
- FFFD9d0036987f899d003698 /* src/mesh/GuBV4Settings.h */,
- FFFD9d0037007f899d003700 /* src/mesh/GuBV4_AABBAABBSweepTest.h */,
- FFFD9d0037687f899d003768 /* src/mesh/GuBV4_BoxBoxOverlapTest.h */,
- FFFD9d0037d07f899d0037d0 /* src/mesh/GuBV4_BoxOverlap_Internal.h */,
- FFFD9d0038387f899d003838 /* src/mesh/GuBV4_BoxSweep_Internal.h */,
- FFFD9d0038a07f899d0038a0 /* src/mesh/GuBV4_BoxSweep_Params.h */,
- FFFD9d0039087f899d003908 /* src/mesh/GuBV4_CapsuleSweep_Internal.h */,
- FFFD9d0039707f899d003970 /* src/mesh/GuBV4_Common.h */,
- FFFD9d0039d87f899d0039d8 /* src/mesh/GuBV4_Internal.h */,
- FFFD9d003a407f899d003a40 /* src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h */,
- FFFD9d003aa87f899d003aa8 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h */,
- FFFD9d003b107f899d003b10 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h */,
- FFFD9d003b787f899d003b78 /* src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h */,
- FFFD9d003be07f899d003be0 /* src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h */,
- FFFD9d003c487f899d003c48 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h */,
- FFFD9d003cb07f899d003cb0 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h */,
- FFFD9d003d187f899d003d18 /* src/mesh/GuBV4_Slabs.h */,
- FFFD9d003d807f899d003d80 /* src/mesh/GuBV4_Slabs_KajiyaNoOrder.h */,
- FFFD9d003de87f899d003de8 /* src/mesh/GuBV4_Slabs_KajiyaOrdered.h */,
- FFFD9d003e507f899d003e50 /* src/mesh/GuBV4_Slabs_SwizzledNoOrder.h */,
- FFFD9d003eb87f899d003eb8 /* src/mesh/GuBV4_Slabs_SwizzledOrdered.h */,
- FFFD9d003f207f899d003f20 /* src/mesh/GuBVConstants.h */,
- FFFD9d003f887f899d003f88 /* src/mesh/GuMeshData.h */,
- FFFD9d003ff07f899d003ff0 /* src/mesh/GuMidphaseInterface.h */,
- FFFD9d0040587f899d004058 /* src/mesh/GuRTree.h */,
- FFFD9d0040c07f899d0040c0 /* src/mesh/GuSweepConvexTri.h */,
- FFFD9d0041287f899d004128 /* src/mesh/GuSweepMesh.h */,
- FFFD9d0041907f899d004190 /* src/mesh/GuTriangle32.h */,
- FFFD9d0041f87f899d0041f8 /* src/mesh/GuTriangleCache.h */,
- FFFD9d0042607f899d004260 /* src/mesh/GuTriangleMesh.h */,
- FFFD9d0042c87f899d0042c8 /* src/mesh/GuTriangleMeshBV4.h */,
- FFFD9d0043307f899d004330 /* src/mesh/GuTriangleMeshRTree.h */,
- FFFD9d0043987f899d004398 /* src/mesh/GuTriangleVertexPointers.h */,
- FFFD9d0044007f899d004400 /* src/hf/GuEntityReport.h */,
- FFFD9d0044687f899d004468 /* src/hf/GuHeightField.h */,
- FFFD9d0044d07f899d0044d0 /* src/hf/GuHeightFieldData.h */,
- FFFD9d0045387f899d004538 /* src/hf/GuHeightFieldUtil.h */,
- FFFD9d0045a07f899d0045a0 /* src/pcm/GuPCMContactConvexCommon.h */,
- FFFD9d0046087f899d004608 /* src/pcm/GuPCMContactGen.h */,
- FFFD9d0046707f899d004670 /* src/pcm/GuPCMContactGenUtil.h */,
- FFFD9d0046d87f899d0046d8 /* src/pcm/GuPCMContactMeshCallback.h */,
- FFFD9d0047407f899d004740 /* src/pcm/GuPCMShapeConvex.h */,
- FFFD9d0047a87f899d0047a8 /* src/pcm/GuPCMTriangleContactGen.h */,
- FFFD9d0048107f899d004810 /* src/pcm/GuPersistentContactManifold.h */,
- FFFD9d0048787f899d004878 /* src/ccd/GuCCDSweepConvexMesh.h */,
- FFFD9d0048e07f899d0048e0 /* src/GuBounds.cpp */,
- FFFD9d0049487f899d004948 /* src/GuBox.cpp */,
- FFFD9d0049b07f899d0049b0 /* src/GuCCTSweepTests.cpp */,
- FFFD9d004a187f899d004a18 /* src/GuCapsule.cpp */,
- FFFD9d004a807f899d004a80 /* src/GuGeometryQuery.cpp */,
- FFFD9d004ae87f899d004ae8 /* src/GuGeometryUnion.cpp */,
- FFFD9d004b507f899d004b50 /* src/GuInternal.cpp */,
- FFFD9d004bb87f899d004bb8 /* src/GuMTD.cpp */,
- FFFD9d004c207f899d004c20 /* src/GuMeshFactory.cpp */,
- FFFD9d004c887f899d004c88 /* src/GuMetaData.cpp */,
- FFFD9d004cf07f899d004cf0 /* src/GuOverlapTests.cpp */,
- FFFD9d004d587f899d004d58 /* src/GuRaycastTests.cpp */,
- FFFD9d004dc07f899d004dc0 /* src/GuSerialize.cpp */,
- FFFD9d004e287f899d004e28 /* src/GuSweepMTD.cpp */,
- FFFD9d004e907f899d004e90 /* src/GuSweepSharedTests.cpp */,
- FFFD9d004ef87f899d004ef8 /* src/GuSweepTests.cpp */,
- FFFD9d004f607f899d004f60 /* src/contact/GuContactBoxBox.cpp */,
- FFFD9d004fc87f899d004fc8 /* src/contact/GuContactCapsuleBox.cpp */,
- FFFD9d0050307f899d005030 /* src/contact/GuContactCapsuleCapsule.cpp */,
- FFFD9d0050987f899d005098 /* src/contact/GuContactCapsuleConvex.cpp */,
- FFFD9d0051007f899d005100 /* src/contact/GuContactCapsuleMesh.cpp */,
- FFFD9d0051687f899d005168 /* src/contact/GuContactConvexConvex.cpp */,
- FFFD9d0051d07f899d0051d0 /* src/contact/GuContactConvexMesh.cpp */,
- FFFD9d0052387f899d005238 /* src/contact/GuContactPlaneBox.cpp */,
- FFFD9d0052a07f899d0052a0 /* src/contact/GuContactPlaneCapsule.cpp */,
- FFFD9d0053087f899d005308 /* src/contact/GuContactPlaneConvex.cpp */,
- FFFD9d0053707f899d005370 /* src/contact/GuContactPolygonPolygon.cpp */,
- FFFD9d0053d87f899d0053d8 /* src/contact/GuContactSphereBox.cpp */,
- FFFD9d0054407f899d005440 /* src/contact/GuContactSphereCapsule.cpp */,
- FFFD9d0054a87f899d0054a8 /* src/contact/GuContactSphereMesh.cpp */,
- FFFD9d0055107f899d005510 /* src/contact/GuContactSpherePlane.cpp */,
- FFFD9d0055787f899d005578 /* src/contact/GuContactSphereSphere.cpp */,
- FFFD9d0055e07f899d0055e0 /* src/contact/GuFeatureCode.cpp */,
- FFFD9d0056487f899d005648 /* src/contact/GuLegacyContactBoxHeightField.cpp */,
- FFFD9d0056b07f899d0056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */,
- FFFD9d0057187f899d005718 /* src/contact/GuLegacyContactConvexHeightField.cpp */,
- FFFD9d0057807f899d005780 /* src/contact/GuLegacyContactSphereHeightField.cpp */,
- FFFD9d0057e87f899d0057e8 /* src/common/GuBarycentricCoordinates.cpp */,
- FFFD9d0058507f899d005850 /* src/common/GuSeparatingAxes.cpp */,
- FFFD9d0058b87f899d0058b8 /* src/convex/GuBigConvexData.cpp */,
- FFFD9d0059207f899d005920 /* src/convex/GuConvexHelper.cpp */,
- FFFD9d0059887f899d005988 /* src/convex/GuConvexMesh.cpp */,
- FFFD9d0059f07f899d0059f0 /* src/convex/GuConvexSupportTable.cpp */,
- FFFD9d005a587f899d005a58 /* src/convex/GuConvexUtilsInternal.cpp */,
- FFFD9d005ac07f899d005ac0 /* src/convex/GuHillClimbing.cpp */,
- FFFD9d005b287f899d005b28 /* src/convex/GuShapeConvex.cpp */,
- FFFD9d005b907f899d005b90 /* src/distance/GuDistancePointBox.cpp */,
- FFFD9d005bf87f899d005bf8 /* src/distance/GuDistancePointTriangle.cpp */,
- FFFD9d005c607f899d005c60 /* src/distance/GuDistanceSegmentBox.cpp */,
- FFFD9d005cc87f899d005cc8 /* src/distance/GuDistanceSegmentSegment.cpp */,
- FFFD9d005d307f899d005d30 /* src/distance/GuDistanceSegmentTriangle.cpp */,
- FFFD9d005d987f899d005d98 /* src/sweep/GuSweepBoxBox.cpp */,
- FFFD9d005e007f899d005e00 /* src/sweep/GuSweepBoxSphere.cpp */,
- FFFD9d005e687f899d005e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */,
- FFFD9d005ed07f899d005ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */,
- FFFD9d005f387f899d005f38 /* src/sweep/GuSweepCapsuleBox.cpp */,
- FFFD9d005fa07f899d005fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */,
- FFFD9d0060087f899d006008 /* src/sweep/GuSweepCapsuleTriangle.cpp */,
- FFFD9d0060707f899d006070 /* src/sweep/GuSweepSphereCapsule.cpp */,
- FFFD9d0060d87f899d0060d8 /* src/sweep/GuSweepSphereSphere.cpp */,
- FFFD9d0061407f899d006140 /* src/sweep/GuSweepSphereTriangle.cpp */,
- FFFD9d0061a87f899d0061a8 /* src/sweep/GuSweepTriangleUtils.cpp */,
- FFFD9d0062107f899d006210 /* src/gjk/GuEPA.cpp */,
- FFFD9d0062787f899d006278 /* src/gjk/GuGJKSimplex.cpp */,
- FFFD9d0062e07f899d0062e0 /* src/gjk/GuGJKTest.cpp */,
- FFFD9d0063487f899d006348 /* src/intersection/GuIntersectionBoxBox.cpp */,
- FFFD9d0063b07f899d0063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */,
- FFFD9d0064187f899d006418 /* src/intersection/GuIntersectionEdgeEdge.cpp */,
- FFFD9d0064807f899d006480 /* src/intersection/GuIntersectionRayBox.cpp */,
- FFFD9d0064e87f899d0064e8 /* src/intersection/GuIntersectionRayCapsule.cpp */,
- FFFD9d0065507f899d006550 /* src/intersection/GuIntersectionRaySphere.cpp */,
- FFFD9d0065b87f899d0065b8 /* src/intersection/GuIntersectionSphereBox.cpp */,
- FFFD9d0066207f899d006620 /* src/intersection/GuIntersectionTriangleBox.cpp */,
- FFFD9d0066887f899d006688 /* src/mesh/GuBV32.cpp */,
- FFFD9d0066f07f899d0066f0 /* src/mesh/GuBV32Build.cpp */,
- FFFD9d0067587f899d006758 /* src/mesh/GuBV4.cpp */,
- FFFD9d0067c07f899d0067c0 /* src/mesh/GuBV4Build.cpp */,
- FFFD9d0068287f899d006828 /* src/mesh/GuBV4_AABBSweep.cpp */,
- FFFD9d0068907f899d006890 /* src/mesh/GuBV4_BoxOverlap.cpp */,
- FFFD9d0068f87f899d0068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */,
- FFFD9d0069607f899d006960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */,
- FFFD9d0069c87f899d0069c8 /* src/mesh/GuBV4_OBBSweep.cpp */,
- FFFD9d006a307f899d006a30 /* src/mesh/GuBV4_Raycast.cpp */,
- FFFD9d006a987f899d006a98 /* src/mesh/GuBV4_SphereOverlap.cpp */,
- FFFD9d006b007f899d006b00 /* src/mesh/GuBV4_SphereSweep.cpp */,
- FFFD9d006b687f899d006b68 /* src/mesh/GuMeshQuery.cpp */,
- FFFD9d006bd07f899d006bd0 /* src/mesh/GuMidphaseBV4.cpp */,
- FFFD9d006c387f899d006c38 /* src/mesh/GuMidphaseRTree.cpp */,
- FFFD9d006ca07f899d006ca0 /* src/mesh/GuOverlapTestsMesh.cpp */,
- FFFD9d006d087f899d006d08 /* src/mesh/GuRTree.cpp */,
- FFFD9d006d707f899d006d70 /* src/mesh/GuRTreeQueries.cpp */,
- FFFD9d006dd87f899d006dd8 /* src/mesh/GuSweepsMesh.cpp */,
- FFFD9d006e407f899d006e40 /* src/mesh/GuTriangleMesh.cpp */,
- FFFD9d006ea87f899d006ea8 /* src/mesh/GuTriangleMeshBV4.cpp */,
- FFFD9d006f107f899d006f10 /* src/mesh/GuTriangleMeshRTree.cpp */,
- FFFD9d006f787f899d006f78 /* src/hf/GuHeightField.cpp */,
- FFFD9d006fe07f899d006fe0 /* src/hf/GuHeightFieldUtil.cpp */,
- FFFD9d0070487f899d007048 /* src/hf/GuOverlapTestsHF.cpp */,
- FFFD9d0070b07f899d0070b0 /* src/hf/GuSweepsHF.cpp */,
- FFFD9d0071187f899d007118 /* src/pcm/GuPCMContactBoxBox.cpp */,
- FFFD9d0071807f899d007180 /* src/pcm/GuPCMContactBoxConvex.cpp */,
- FFFD9d0071e87f899d0071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */,
- FFFD9d0072507f899d007250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */,
- FFFD9d0072b87f899d0072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */,
- FFFD9d0073207f899d007320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */,
- FFFD9d0073887f899d007388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */,
- FFFD9d0073f07f899d0073f0 /* src/pcm/GuPCMContactConvexCommon.cpp */,
- FFFD9d0074587f899d007458 /* src/pcm/GuPCMContactConvexConvex.cpp */,
- FFFD9d0074c07f899d0074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */,
- FFFD9d0075287f899d007528 /* src/pcm/GuPCMContactConvexMesh.cpp */,
- FFFD9d0075907f899d007590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */,
- FFFD9d0075f87f899d0075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */,
- FFFD9d0076607f899d007660 /* src/pcm/GuPCMContactPlaneBox.cpp */,
- FFFD9d0076c87f899d0076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */,
- FFFD9d0077307f899d007730 /* src/pcm/GuPCMContactPlaneConvex.cpp */,
- FFFD9d0077987f899d007798 /* src/pcm/GuPCMContactSphereBox.cpp */,
- FFFD9d0078007f899d007800 /* src/pcm/GuPCMContactSphereCapsule.cpp */,
- FFFD9d0078687f899d007868 /* src/pcm/GuPCMContactSphereConvex.cpp */,
- FFFD9d0078d07f899d0078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */,
- FFFD9d0079387f899d007938 /* src/pcm/GuPCMContactSphereMesh.cpp */,
- FFFD9d0079a07f899d0079a0 /* src/pcm/GuPCMContactSpherePlane.cpp */,
- FFFD9d007a087f899d007a08 /* src/pcm/GuPCMContactSphereSphere.cpp */,
- FFFD9d007a707f899d007a70 /* src/pcm/GuPCMShapeConvex.cpp */,
- FFFD9d007ad87f899d007ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */,
- FFFD9d007b407f899d007b40 /* src/pcm/GuPersistentContactManifold.cpp */,
- FFFD9d007ba87f899d007ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */,
- FFFD9d007c107f899d007c10 /* src/ccd/GuCCDSweepPrimitives.cpp */,
+ FFFD420040007fba42004000 /* headers/GuAxes.h */,
+ FFFD420040687fba42004068 /* headers/GuBox.h */,
+ FFFD420040d07fba420040d0 /* headers/GuDistanceSegmentBox.h */,
+ FFFD420041387fba42004138 /* headers/GuDistanceSegmentSegment.h */,
+ FFFD420041a07fba420041a0 /* headers/GuIntersectionBoxBox.h */,
+ FFFD420042087fba42004208 /* headers/GuIntersectionTriangleBox.h */,
+ FFFD420042707fba42004270 /* headers/GuRaycastTests.h */,
+ FFFD420042d87fba420042d8 /* headers/GuSIMDHelpers.h */,
+ FFFD420043407fba42004340 /* headers/GuSegment.h */,
+ FFFD420043a87fba420043a8 /* ../../Include/GeomUtils */,
+ FFFD420044107fba42004410 /* src/GuBounds.h */,
+ FFFD420044787fba42004478 /* src/GuCapsule.h */,
+ FFFD420044e07fba420044e0 /* src/GuCenterExtents.h */,
+ FFFD420045487fba42004548 /* src/GuGeometryUnion.h */,
+ FFFD420045b07fba420045b0 /* src/GuInternal.h */,
+ FFFD420046187fba42004618 /* src/GuMTD.h */,
+ FFFD420046807fba42004680 /* src/GuMeshFactory.h */,
+ FFFD420046e87fba420046e8 /* src/GuOverlapTests.h */,
+ FFFD420047507fba42004750 /* src/GuSerialize.h */,
+ FFFD420047b87fba420047b8 /* src/GuSphere.h */,
+ FFFD420048207fba42004820 /* src/GuSweepMTD.h */,
+ FFFD420048887fba42004888 /* src/GuSweepSharedTests.h */,
+ FFFD420048f07fba420048f0 /* src/GuSweepTests.h */,
+ FFFD420049587fba42004958 /* src/contact/GuContactMethodImpl.h */,
+ FFFD420049c07fba420049c0 /* src/contact/GuContactPolygonPolygon.h */,
+ FFFD42004a287fba42004a28 /* src/contact/GuFeatureCode.h */,
+ FFFD42004a907fba42004a90 /* src/contact/GuLegacyTraceLineCallback.h */,
+ FFFD42004af87fba42004af8 /* src/common/GuBarycentricCoordinates.h */,
+ FFFD42004b607fba42004b60 /* src/common/GuBoxConversion.h */,
+ FFFD42004bc87fba42004bc8 /* src/common/GuEdgeCache.h */,
+ FFFD42004c307fba42004c30 /* src/common/GuEdgeListData.h */,
+ FFFD42004c987fba42004c98 /* src/common/GuSeparatingAxes.h */,
+ FFFD42004d007fba42004d00 /* src/convex/GuBigConvexData.h */,
+ FFFD42004d687fba42004d68 /* src/convex/GuBigConvexData2.h */,
+ FFFD42004dd07fba42004dd0 /* src/convex/GuConvexEdgeFlags.h */,
+ FFFD42004e387fba42004e38 /* src/convex/GuConvexHelper.h */,
+ FFFD42004ea07fba42004ea0 /* src/convex/GuConvexMesh.h */,
+ FFFD42004f087fba42004f08 /* src/convex/GuConvexMeshData.h */,
+ FFFD42004f707fba42004f70 /* src/convex/GuConvexSupportTable.h */,
+ FFFD42004fd87fba42004fd8 /* src/convex/GuConvexUtilsInternal.h */,
+ FFFD420050407fba42005040 /* src/convex/GuCubeIndex.h */,
+ FFFD420050a87fba420050a8 /* src/convex/GuHillClimbing.h */,
+ FFFD420051107fba42005110 /* src/convex/GuShapeConvex.h */,
+ FFFD420051787fba42005178 /* src/distance/GuDistancePointBox.h */,
+ FFFD420051e07fba420051e0 /* src/distance/GuDistancePointSegment.h */,
+ FFFD420052487fba42005248 /* src/distance/GuDistancePointTriangle.h */,
+ FFFD420052b07fba420052b0 /* src/distance/GuDistancePointTriangleSIMD.h */,
+ FFFD420053187fba42005318 /* src/distance/GuDistanceSegmentSegmentSIMD.h */,
+ FFFD420053807fba42005380 /* src/distance/GuDistanceSegmentTriangle.h */,
+ FFFD420053e87fba420053e8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */,
+ FFFD420054507fba42005450 /* src/sweep/GuSweepBoxBox.h */,
+ FFFD420054b87fba420054b8 /* src/sweep/GuSweepBoxSphere.h */,
+ FFFD420055207fba42005520 /* src/sweep/GuSweepBoxTriangle_FeatureBased.h */,
+ FFFD420055887fba42005588 /* src/sweep/GuSweepBoxTriangle_SAT.h */,
+ FFFD420055f07fba420055f0 /* src/sweep/GuSweepCapsuleBox.h */,
+ FFFD420056587fba42005658 /* src/sweep/GuSweepCapsuleCapsule.h */,
+ FFFD420056c07fba420056c0 /* src/sweep/GuSweepCapsuleTriangle.h */,
+ FFFD420057287fba42005728 /* src/sweep/GuSweepSphereCapsule.h */,
+ FFFD420057907fba42005790 /* src/sweep/GuSweepSphereSphere.h */,
+ FFFD420057f87fba420057f8 /* src/sweep/GuSweepSphereTriangle.h */,
+ FFFD420058607fba42005860 /* src/sweep/GuSweepTriangleUtils.h */,
+ FFFD420058c87fba420058c8 /* src/gjk/GuEPA.h */,
+ FFFD420059307fba42005930 /* src/gjk/GuEPAFacet.h */,
+ FFFD420059987fba42005998 /* src/gjk/GuGJK.h */,
+ FFFD42005a007fba42005a00 /* src/gjk/GuGJKPenetration.h */,
+ FFFD42005a687fba42005a68 /* src/gjk/GuGJKRaycast.h */,
+ FFFD42005ad07fba42005ad0 /* src/gjk/GuGJKSimplex.h */,
+ FFFD42005b387fba42005b38 /* src/gjk/GuGJKTest.h */,
+ FFFD42005ba07fba42005ba0 /* src/gjk/GuGJKType.h */,
+ FFFD42005c087fba42005c08 /* src/gjk/GuGJKUtil.h */,
+ FFFD42005c707fba42005c70 /* src/gjk/GuVecBox.h */,
+ FFFD42005cd87fba42005cd8 /* src/gjk/GuVecCapsule.h */,
+ FFFD42005d407fba42005d40 /* src/gjk/GuVecConvex.h */,
+ FFFD42005da87fba42005da8 /* src/gjk/GuVecConvexHull.h */,
+ FFFD42005e107fba42005e10 /* src/gjk/GuVecConvexHullNoScale.h */,
+ FFFD42005e787fba42005e78 /* src/gjk/GuVecPlane.h */,
+ FFFD42005ee07fba42005ee0 /* src/gjk/GuVecShrunkBox.h */,
+ FFFD42005f487fba42005f48 /* src/gjk/GuVecShrunkConvexHull.h */,
+ FFFD42005fb07fba42005fb0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */,
+ FFFD420060187fba42006018 /* src/gjk/GuVecSphere.h */,
+ FFFD420060807fba42006080 /* src/gjk/GuVecTriangle.h */,
+ FFFD420060e87fba420060e8 /* src/intersection/GuIntersectionCapsuleTriangle.h */,
+ FFFD420061507fba42006150 /* src/intersection/GuIntersectionEdgeEdge.h */,
+ FFFD420061b87fba420061b8 /* src/intersection/GuIntersectionRay.h */,
+ FFFD420062207fba42006220 /* src/intersection/GuIntersectionRayBox.h */,
+ FFFD420062887fba42006288 /* src/intersection/GuIntersectionRayBoxSIMD.h */,
+ FFFD420062f07fba420062f0 /* src/intersection/GuIntersectionRayCapsule.h */,
+ FFFD420063587fba42006358 /* src/intersection/GuIntersectionRayPlane.h */,
+ FFFD420063c07fba420063c0 /* src/intersection/GuIntersectionRaySphere.h */,
+ FFFD420064287fba42006428 /* src/intersection/GuIntersectionRayTriangle.h */,
+ FFFD420064907fba42006490 /* src/intersection/GuIntersectionSphereBox.h */,
+ FFFD420064f87fba420064f8 /* src/mesh/GuBV32.h */,
+ FFFD420065607fba42006560 /* src/mesh/GuBV32Build.h */,
+ FFFD420065c87fba420065c8 /* src/mesh/GuBV4.h */,
+ FFFD420066307fba42006630 /* src/mesh/GuBV4Build.h */,
+ FFFD420066987fba42006698 /* src/mesh/GuBV4Settings.h */,
+ FFFD420067007fba42006700 /* src/mesh/GuBV4_AABBAABBSweepTest.h */,
+ FFFD420067687fba42006768 /* src/mesh/GuBV4_BoxBoxOverlapTest.h */,
+ FFFD420067d07fba420067d0 /* src/mesh/GuBV4_BoxOverlap_Internal.h */,
+ FFFD420068387fba42006838 /* src/mesh/GuBV4_BoxSweep_Internal.h */,
+ FFFD420068a07fba420068a0 /* src/mesh/GuBV4_BoxSweep_Params.h */,
+ FFFD420069087fba42006908 /* src/mesh/GuBV4_CapsuleSweep_Internal.h */,
+ FFFD420069707fba42006970 /* src/mesh/GuBV4_Common.h */,
+ FFFD420069d87fba420069d8 /* src/mesh/GuBV4_Internal.h */,
+ FFFD42006a407fba42006a40 /* src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h */,
+ FFFD42006aa87fba42006aa8 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h */,
+ FFFD42006b107fba42006b10 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h */,
+ FFFD42006b787fba42006b78 /* src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h */,
+ FFFD42006be07fba42006be0 /* src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h */,
+ FFFD42006c487fba42006c48 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h */,
+ FFFD42006cb07fba42006cb0 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h */,
+ FFFD42006d187fba42006d18 /* src/mesh/GuBV4_Slabs.h */,
+ FFFD42006d807fba42006d80 /* src/mesh/GuBV4_Slabs_KajiyaNoOrder.h */,
+ FFFD42006de87fba42006de8 /* src/mesh/GuBV4_Slabs_KajiyaOrdered.h */,
+ FFFD42006e507fba42006e50 /* src/mesh/GuBV4_Slabs_SwizzledNoOrder.h */,
+ FFFD42006eb87fba42006eb8 /* src/mesh/GuBV4_Slabs_SwizzledOrdered.h */,
+ FFFD42006f207fba42006f20 /* src/mesh/GuBVConstants.h */,
+ FFFD42006f887fba42006f88 /* src/mesh/GuMeshData.h */,
+ FFFD42006ff07fba42006ff0 /* src/mesh/GuMidphaseInterface.h */,
+ FFFD420070587fba42007058 /* src/mesh/GuRTree.h */,
+ FFFD420070c07fba420070c0 /* src/mesh/GuSweepConvexTri.h */,
+ FFFD420071287fba42007128 /* src/mesh/GuSweepMesh.h */,
+ FFFD420071907fba42007190 /* src/mesh/GuTriangle32.h */,
+ FFFD420071f87fba420071f8 /* src/mesh/GuTriangleCache.h */,
+ FFFD420072607fba42007260 /* src/mesh/GuTriangleMesh.h */,
+ FFFD420072c87fba420072c8 /* src/mesh/GuTriangleMeshBV4.h */,
+ FFFD420073307fba42007330 /* src/mesh/GuTriangleMeshRTree.h */,
+ FFFD420073987fba42007398 /* src/mesh/GuTriangleVertexPointers.h */,
+ FFFD420074007fba42007400 /* src/hf/GuEntityReport.h */,
+ FFFD420074687fba42007468 /* src/hf/GuHeightField.h */,
+ FFFD420074d07fba420074d0 /* src/hf/GuHeightFieldData.h */,
+ FFFD420075387fba42007538 /* src/hf/GuHeightFieldUtil.h */,
+ FFFD420075a07fba420075a0 /* src/pcm/GuPCMContactConvexCommon.h */,
+ FFFD420076087fba42007608 /* src/pcm/GuPCMContactGen.h */,
+ FFFD420076707fba42007670 /* src/pcm/GuPCMContactGenUtil.h */,
+ FFFD420076d87fba420076d8 /* src/pcm/GuPCMContactMeshCallback.h */,
+ FFFD420077407fba42007740 /* src/pcm/GuPCMShapeConvex.h */,
+ FFFD420077a87fba420077a8 /* src/pcm/GuPCMTriangleContactGen.h */,
+ FFFD420078107fba42007810 /* src/pcm/GuPersistentContactManifold.h */,
+ FFFD420078787fba42007878 /* src/ccd/GuCCDSweepConvexMesh.h */,
+ FFFD420078e07fba420078e0 /* src/GuBounds.cpp */,
+ FFFD420079487fba42007948 /* src/GuBox.cpp */,
+ FFFD420079b07fba420079b0 /* src/GuCCTSweepTests.cpp */,
+ FFFD42007a187fba42007a18 /* src/GuCapsule.cpp */,
+ FFFD42007a807fba42007a80 /* src/GuGeometryQuery.cpp */,
+ FFFD42007ae87fba42007ae8 /* src/GuGeometryUnion.cpp */,
+ FFFD42007b507fba42007b50 /* src/GuInternal.cpp */,
+ FFFD42007bb87fba42007bb8 /* src/GuMTD.cpp */,
+ FFFD42007c207fba42007c20 /* src/GuMeshFactory.cpp */,
+ FFFD42007c887fba42007c88 /* src/GuMetaData.cpp */,
+ FFFD42007cf07fba42007cf0 /* src/GuOverlapTests.cpp */,
+ FFFD42007d587fba42007d58 /* src/GuRaycastTests.cpp */,
+ FFFD42007dc07fba42007dc0 /* src/GuSerialize.cpp */,
+ FFFD42007e287fba42007e28 /* src/GuSweepMTD.cpp */,
+ FFFD42007e907fba42007e90 /* src/GuSweepSharedTests.cpp */,
+ FFFD42007ef87fba42007ef8 /* src/GuSweepTests.cpp */,
+ FFFD42007f607fba42007f60 /* src/contact/GuContactBoxBox.cpp */,
+ FFFD42007fc87fba42007fc8 /* src/contact/GuContactCapsuleBox.cpp */,
+ FFFD420080307fba42008030 /* src/contact/GuContactCapsuleCapsule.cpp */,
+ FFFD420080987fba42008098 /* src/contact/GuContactCapsuleConvex.cpp */,
+ FFFD420081007fba42008100 /* src/contact/GuContactCapsuleMesh.cpp */,
+ FFFD420081687fba42008168 /* src/contact/GuContactConvexConvex.cpp */,
+ FFFD420081d07fba420081d0 /* src/contact/GuContactConvexMesh.cpp */,
+ FFFD420082387fba42008238 /* src/contact/GuContactPlaneBox.cpp */,
+ FFFD420082a07fba420082a0 /* src/contact/GuContactPlaneCapsule.cpp */,
+ FFFD420083087fba42008308 /* src/contact/GuContactPlaneConvex.cpp */,
+ FFFD420083707fba42008370 /* src/contact/GuContactPolygonPolygon.cpp */,
+ FFFD420083d87fba420083d8 /* src/contact/GuContactSphereBox.cpp */,
+ FFFD420084407fba42008440 /* src/contact/GuContactSphereCapsule.cpp */,
+ FFFD420084a87fba420084a8 /* src/contact/GuContactSphereMesh.cpp */,
+ FFFD420085107fba42008510 /* src/contact/GuContactSpherePlane.cpp */,
+ FFFD420085787fba42008578 /* src/contact/GuContactSphereSphere.cpp */,
+ FFFD420085e07fba420085e0 /* src/contact/GuFeatureCode.cpp */,
+ FFFD420086487fba42008648 /* src/contact/GuLegacyContactBoxHeightField.cpp */,
+ FFFD420086b07fba420086b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */,
+ FFFD420087187fba42008718 /* src/contact/GuLegacyContactConvexHeightField.cpp */,
+ FFFD420087807fba42008780 /* src/contact/GuLegacyContactSphereHeightField.cpp */,
+ FFFD420087e87fba420087e8 /* src/common/GuBarycentricCoordinates.cpp */,
+ FFFD420088507fba42008850 /* src/common/GuSeparatingAxes.cpp */,
+ FFFD420088b87fba420088b8 /* src/convex/GuBigConvexData.cpp */,
+ FFFD420089207fba42008920 /* src/convex/GuConvexHelper.cpp */,
+ FFFD420089887fba42008988 /* src/convex/GuConvexMesh.cpp */,
+ FFFD420089f07fba420089f0 /* src/convex/GuConvexSupportTable.cpp */,
+ FFFD42008a587fba42008a58 /* src/convex/GuConvexUtilsInternal.cpp */,
+ FFFD42008ac07fba42008ac0 /* src/convex/GuHillClimbing.cpp */,
+ FFFD42008b287fba42008b28 /* src/convex/GuShapeConvex.cpp */,
+ FFFD42008b907fba42008b90 /* src/distance/GuDistancePointBox.cpp */,
+ FFFD42008bf87fba42008bf8 /* src/distance/GuDistancePointTriangle.cpp */,
+ FFFD42008c607fba42008c60 /* src/distance/GuDistanceSegmentBox.cpp */,
+ FFFD42008cc87fba42008cc8 /* src/distance/GuDistanceSegmentSegment.cpp */,
+ FFFD42008d307fba42008d30 /* src/distance/GuDistanceSegmentTriangle.cpp */,
+ FFFD42008d987fba42008d98 /* src/sweep/GuSweepBoxBox.cpp */,
+ FFFD42008e007fba42008e00 /* src/sweep/GuSweepBoxSphere.cpp */,
+ FFFD42008e687fba42008e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */,
+ FFFD42008ed07fba42008ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */,
+ FFFD42008f387fba42008f38 /* src/sweep/GuSweepCapsuleBox.cpp */,
+ FFFD42008fa07fba42008fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */,
+ FFFD420090087fba42009008 /* src/sweep/GuSweepCapsuleTriangle.cpp */,
+ FFFD420090707fba42009070 /* src/sweep/GuSweepSphereCapsule.cpp */,
+ FFFD420090d87fba420090d8 /* src/sweep/GuSweepSphereSphere.cpp */,
+ FFFD420091407fba42009140 /* src/sweep/GuSweepSphereTriangle.cpp */,
+ FFFD420091a87fba420091a8 /* src/sweep/GuSweepTriangleUtils.cpp */,
+ FFFD420092107fba42009210 /* src/gjk/GuEPA.cpp */,
+ FFFD420092787fba42009278 /* src/gjk/GuGJKSimplex.cpp */,
+ FFFD420092e07fba420092e0 /* src/gjk/GuGJKTest.cpp */,
+ FFFD420093487fba42009348 /* src/intersection/GuIntersectionBoxBox.cpp */,
+ FFFD420093b07fba420093b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */,
+ FFFD420094187fba42009418 /* src/intersection/GuIntersectionEdgeEdge.cpp */,
+ FFFD420094807fba42009480 /* src/intersection/GuIntersectionRayBox.cpp */,
+ FFFD420094e87fba420094e8 /* src/intersection/GuIntersectionRayCapsule.cpp */,
+ FFFD420095507fba42009550 /* src/intersection/GuIntersectionRaySphere.cpp */,
+ FFFD420095b87fba420095b8 /* src/intersection/GuIntersectionSphereBox.cpp */,
+ FFFD420096207fba42009620 /* src/intersection/GuIntersectionTriangleBox.cpp */,
+ FFFD420096887fba42009688 /* src/mesh/GuBV32.cpp */,
+ FFFD420096f07fba420096f0 /* src/mesh/GuBV32Build.cpp */,
+ FFFD420097587fba42009758 /* src/mesh/GuBV4.cpp */,
+ FFFD420097c07fba420097c0 /* src/mesh/GuBV4Build.cpp */,
+ FFFD420098287fba42009828 /* src/mesh/GuBV4_AABBSweep.cpp */,
+ FFFD420098907fba42009890 /* src/mesh/GuBV4_BoxOverlap.cpp */,
+ FFFD420098f87fba420098f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */,
+ FFFD420099607fba42009960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */,
+ FFFD420099c87fba420099c8 /* src/mesh/GuBV4_OBBSweep.cpp */,
+ FFFD42009a307fba42009a30 /* src/mesh/GuBV4_Raycast.cpp */,
+ FFFD42009a987fba42009a98 /* src/mesh/GuBV4_SphereOverlap.cpp */,
+ FFFD42009b007fba42009b00 /* src/mesh/GuBV4_SphereSweep.cpp */,
+ FFFD42009b687fba42009b68 /* src/mesh/GuMeshQuery.cpp */,
+ FFFD42009bd07fba42009bd0 /* src/mesh/GuMidphaseBV4.cpp */,
+ FFFD42009c387fba42009c38 /* src/mesh/GuMidphaseRTree.cpp */,
+ FFFD42009ca07fba42009ca0 /* src/mesh/GuOverlapTestsMesh.cpp */,
+ FFFD42009d087fba42009d08 /* src/mesh/GuRTree.cpp */,
+ FFFD42009d707fba42009d70 /* src/mesh/GuRTreeQueries.cpp */,
+ FFFD42009dd87fba42009dd8 /* src/mesh/GuSweepsMesh.cpp */,
+ FFFD42009e407fba42009e40 /* src/mesh/GuTriangleMesh.cpp */,
+ FFFD42009ea87fba42009ea8 /* src/mesh/GuTriangleMeshBV4.cpp */,
+ FFFD42009f107fba42009f10 /* src/mesh/GuTriangleMeshRTree.cpp */,
+ FFFD42009f787fba42009f78 /* src/hf/GuHeightField.cpp */,
+ FFFD42009fe07fba42009fe0 /* src/hf/GuHeightFieldUtil.cpp */,
+ FFFD4200a0487fba4200a048 /* src/hf/GuOverlapTestsHF.cpp */,
+ FFFD4200a0b07fba4200a0b0 /* src/hf/GuSweepsHF.cpp */,
+ FFFD4200a1187fba4200a118 /* src/pcm/GuPCMContactBoxBox.cpp */,
+ FFFD4200a1807fba4200a180 /* src/pcm/GuPCMContactBoxConvex.cpp */,
+ FFFD4200a1e87fba4200a1e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */,
+ FFFD4200a2507fba4200a250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */,
+ FFFD4200a2b87fba4200a2b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */,
+ FFFD4200a3207fba4200a320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */,
+ FFFD4200a3887fba4200a388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */,
+ FFFD4200a3f07fba4200a3f0 /* src/pcm/GuPCMContactConvexCommon.cpp */,
+ FFFD4200a4587fba4200a458 /* src/pcm/GuPCMContactConvexConvex.cpp */,
+ FFFD4200a4c07fba4200a4c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */,
+ FFFD4200a5287fba4200a528 /* src/pcm/GuPCMContactConvexMesh.cpp */,
+ FFFD4200a5907fba4200a590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */,
+ FFFD4200a5f87fba4200a5f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */,
+ FFFD4200a6607fba4200a660 /* src/pcm/GuPCMContactPlaneBox.cpp */,
+ FFFD4200a6c87fba4200a6c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */,
+ FFFD4200a7307fba4200a730 /* src/pcm/GuPCMContactPlaneConvex.cpp */,
+ FFFD4200a7987fba4200a798 /* src/pcm/GuPCMContactSphereBox.cpp */,
+ FFFD4200a8007fba4200a800 /* src/pcm/GuPCMContactSphereCapsule.cpp */,
+ FFFD4200a8687fba4200a868 /* src/pcm/GuPCMContactSphereConvex.cpp */,
+ FFFD4200a8d07fba4200a8d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */,
+ FFFD4200a9387fba4200a938 /* src/pcm/GuPCMContactSphereMesh.cpp */,
+ FFFD4200a9a07fba4200a9a0 /* src/pcm/GuPCMContactSpherePlane.cpp */,
+ FFFD4200aa087fba4200aa08 /* src/pcm/GuPCMContactSphereSphere.cpp */,
+ FFFD4200aa707fba4200aa70 /* src/pcm/GuPCMShapeConvex.cpp */,
+ FFFD4200aad87fba4200aad8 /* src/pcm/GuPCMTriangleContactGen.cpp */,
+ FFFD4200ab407fba4200ab40 /* src/pcm/GuPersistentContactManifold.cpp */,
+ FFFD4200aba87fba4200aba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */,
+ FFFD4200ac107fba4200ac10 /* src/ccd/GuCCDSweepPrimitives.cpp */,
);
name = "geomutils";
sourceTree = SOURCE_ROOT;
};
- FFFB9c8a0f907f899c8a0f90 /* PxFoundation */ = {
+ FFFB4318c2b07fba4318c2b0 /* PxFoundation */ = {
isa = PBXGroup;
children = (
- FFFB9c8a16807f899c8a1680 /* include */,
- FFFB9c8a16a87f899c8a16a8 /* src */,
+ FFFB4318d0507fba4318d050 /* include */,
+ FFFB4318d0787fba4318d078 /* src */,
);
name = "PxFoundation";
sourceTree = "<group>";
};
- FFFB9c8a16807f899c8a1680 /* include */ = {
+ FFFB4318d0507fba4318d050 /* include */ = {
isa = PBXGroup;
children = (
- FFFD9c1836007f899c183600 /* Px.h */,
- FFFD9c1836687f899c183668 /* PxAllocatorCallback.h */,
- FFFD9c1836d07f899c1836d0 /* PxAssert.h */,
- FFFD9c1837387f899c183738 /* PxBitAndData.h */,
- FFFD9c1837a07f899c1837a0 /* PxBounds3.h */,
- FFFD9c1838087f899c183808 /* PxErrorCallback.h */,
- FFFD9c1838707f899c183870 /* PxErrors.h */,
- FFFD9c1838d87f899c1838d8 /* PxFlags.h */,
- FFFD9c1839407f899c183940 /* PxFoundation.h */,
- FFFD9c1839a87f899c1839a8 /* PxFoundationVersion.h */,
- FFFD9c183a107f899c183a10 /* PxIO.h */,
- FFFD9c183a787f899c183a78 /* PxIntrinsics.h */,
- FFFD9c183ae07f899c183ae0 /* PxMat33.h */,
- FFFD9c183b487f899c183b48 /* PxMat44.h */,
- FFFD9c183bb07f899c183bb0 /* PxMath.h */,
- FFFD9c183c187f899c183c18 /* PxMathUtils.h */,
- FFFD9c183c807f899c183c80 /* PxMemory.h */,
- FFFD9c183ce87f899c183ce8 /* PxPlane.h */,
- FFFD9c183d507f899c183d50 /* PxPreprocessor.h */,
- FFFD9c183db87f899c183db8 /* PxProfiler.h */,
- FFFD9c183e207f899c183e20 /* PxQuat.h */,
- FFFD9c183e887f899c183e88 /* PxSimpleTypes.h */,
- FFFD9c183ef07f899c183ef0 /* PxStrideIterator.h */,
- FFFD9c183f587f899c183f58 /* PxTransform.h */,
- FFFD9c183fc07f899c183fc0 /* PxUnionCast.h */,
- FFFD9c1840287f899c184028 /* PxVec2.h */,
- FFFD9c1840907f899c184090 /* PxVec3.h */,
- FFFD9c1840f87f899c1840f8 /* PxVec4.h */,
- FFFD9c1841607f899c184160 /* unix/PxUnixIntrinsics.h */,
+ FFFD429818007fba42981800 /* Px.h */,
+ FFFD429818687fba42981868 /* PxAllocatorCallback.h */,
+ FFFD429818d07fba429818d0 /* PxAssert.h */,
+ FFFD429819387fba42981938 /* PxBitAndData.h */,
+ FFFD429819a07fba429819a0 /* PxBounds3.h */,
+ FFFD42981a087fba42981a08 /* PxErrorCallback.h */,
+ FFFD42981a707fba42981a70 /* PxErrors.h */,
+ FFFD42981ad87fba42981ad8 /* PxFlags.h */,
+ FFFD42981b407fba42981b40 /* PxFoundation.h */,
+ FFFD42981ba87fba42981ba8 /* PxFoundationVersion.h */,
+ FFFD42981c107fba42981c10 /* PxIO.h */,
+ FFFD42981c787fba42981c78 /* PxIntrinsics.h */,
+ FFFD42981ce07fba42981ce0 /* PxMat33.h */,
+ FFFD42981d487fba42981d48 /* PxMat44.h */,
+ FFFD42981db07fba42981db0 /* PxMath.h */,
+ FFFD42981e187fba42981e18 /* PxMathUtils.h */,
+ FFFD42981e807fba42981e80 /* PxMemory.h */,
+ FFFD42981ee87fba42981ee8 /* PxPlane.h */,
+ FFFD42981f507fba42981f50 /* PxPreprocessor.h */,
+ FFFD42981fb87fba42981fb8 /* PxProfiler.h */,
+ FFFD429820207fba42982020 /* PxQuat.h */,
+ FFFD429820887fba42982088 /* PxSimpleTypes.h */,
+ FFFD429820f07fba429820f0 /* PxStrideIterator.h */,
+ FFFD429821587fba42982158 /* PxTransform.h */,
+ FFFD429821c07fba429821c0 /* PxUnionCast.h */,
+ FFFD429822287fba42982228 /* PxVec2.h */,
+ FFFD429822907fba42982290 /* PxVec3.h */,
+ FFFD429822f87fba429822f8 /* PxVec4.h */,
+ FFFD429823607fba42982360 /* unix/PxUnixIntrinsics.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
- FFFB9c8a16a87f899c8a16a8 /* src */ = {
+ FFFB4318d0787fba4318d078 /* src */ = {
isa = PBXGroup;
children = (
- FFFD9c1942007f899c194200 /* include/Ps.h */,
- FFFD9c1942687f899c194268 /* include/PsAlignedMalloc.h */,
- FFFD9c1942d07f899c1942d0 /* include/PsAlloca.h */,
- FFFD9c1943387f899c194338 /* include/PsAllocator.h */,
- FFFD9c1943a07f899c1943a0 /* include/PsAoS.h */,
- FFFD9c1944087f899c194408 /* include/PsArray.h */,
- FFFD9c1944707f899c194470 /* include/PsAtomic.h */,
- FFFD9c1944d87f899c1944d8 /* include/PsBasicTemplates.h */,
- FFFD9c1945407f899c194540 /* include/PsBitUtils.h */,
- FFFD9c1945a87f899c1945a8 /* include/PsBroadcast.h */,
- FFFD9c1946107f899c194610 /* include/PsCpu.h */,
- FFFD9c1946787f899c194678 /* include/PsFPU.h */,
- FFFD9c1946e07f899c1946e0 /* include/PsFoundation.h */,
- FFFD9c1947487f899c194748 /* include/PsHash.h */,
- FFFD9c1947b07f899c1947b0 /* include/PsHashInternals.h */,
- FFFD9c1948187f899c194818 /* include/PsHashMap.h */,
- FFFD9c1948807f899c194880 /* include/PsHashSet.h */,
- FFFD9c1948e87f899c1948e8 /* include/PsInlineAllocator.h */,
- FFFD9c1949507f899c194950 /* include/PsInlineAoS.h */,
- FFFD9c1949b87f899c1949b8 /* include/PsInlineArray.h */,
- FFFD9c194a207f899c194a20 /* include/PsIntrinsics.h */,
- FFFD9c194a887f899c194a88 /* include/PsMathUtils.h */,
- FFFD9c194af07f899c194af0 /* include/PsMutex.h */,
- FFFD9c194b587f899c194b58 /* include/PsPool.h */,
- FFFD9c194bc07f899c194bc0 /* include/PsSList.h */,
- FFFD9c194c287f899c194c28 /* include/PsSocket.h */,
- FFFD9c194c907f899c194c90 /* include/PsSort.h */,
- FFFD9c194cf87f899c194cf8 /* include/PsSortInternals.h */,
- FFFD9c194d607f899c194d60 /* include/PsString.h */,
- FFFD9c194dc87f899c194dc8 /* include/PsSync.h */,
- FFFD9c194e307f899c194e30 /* include/PsTempAllocator.h */,
- FFFD9c194e987f899c194e98 /* include/PsThread.h */,
- FFFD9c194f007f899c194f00 /* include/PsTime.h */,
- FFFD9c194f687f899c194f68 /* include/PsUserAllocated.h */,
- FFFD9c194fd07f899c194fd0 /* include/PsUtilities.h */,
- FFFD9c1950387f899c195038 /* include/PsVecMath.h */,
- FFFD9c1950a07f899c1950a0 /* include/PsVecMathAoSScalar.h */,
- FFFD9c1951087f899c195108 /* include/PsVecMathAoSScalarInline.h */,
- FFFD9c1951707f899c195170 /* include/PsVecMathSSE.h */,
- FFFD9c1951d87f899c1951d8 /* include/PsVecMathUtilities.h */,
- FFFD9c1952407f899c195240 /* include/PsVecQuat.h */,
- FFFD9c1952a87f899c1952a8 /* include/PsVecTransform.h */,
- FFFD9c1953107f899c195310 /* include/unix/PsUnixAoS.h */,
- FFFD9c1953787f899c195378 /* include/unix/PsUnixFPU.h */,
- FFFD9c1953e07f899c1953e0 /* include/unix/PsUnixInlineAoS.h */,
- FFFD9c1954487f899c195448 /* include/unix/PsUnixIntrinsics.h */,
- FFFD9c1954b07f899c1954b0 /* include/unix/PsUnixTrigConstants.h */,
- FFFD9c1955187f899c195518 /* src/PsAllocator.cpp */,
- FFFD9c1955807f899c195580 /* src/PsAssert.cpp */,
- FFFD9c1955e87f899c1955e8 /* src/PsFoundation.cpp */,
- FFFD9c1956507f899c195650 /* src/PsMathUtils.cpp */,
- FFFD9c1956b87f899c1956b8 /* src/PsString.cpp */,
- FFFD9c1957207f899c195720 /* src/PsTempAllocator.cpp */,
- FFFD9c1957887f899c195788 /* src/PsUtilities.cpp */,
- FFFD9c1957f07f899c1957f0 /* src/unix/PsUnixAtomic.cpp */,
- FFFD9c1958587f899c195858 /* src/unix/PsUnixCpu.cpp */,
- FFFD9c1958c07f899c1958c0 /* src/unix/PsUnixFPU.cpp */,
- FFFD9c1959287f899c195928 /* src/unix/PsUnixMutex.cpp */,
- FFFD9c1959907f899c195990 /* src/unix/PsUnixPrintString.cpp */,
- FFFD9c1959f87f899c1959f8 /* src/unix/PsUnixSList.cpp */,
- FFFD9c195a607f899c195a60 /* src/unix/PsUnixSocket.cpp */,
- FFFD9c195ac87f899c195ac8 /* src/unix/PsUnixSync.cpp */,
- FFFD9c195b307f899c195b30 /* src/unix/PsUnixThread.cpp */,
- FFFD9c195b987f899c195b98 /* src/unix/PsUnixTime.cpp */,
+ FFFD429924007fba42992400 /* include/Ps.h */,
+ FFFD429924687fba42992468 /* include/PsAlignedMalloc.h */,
+ FFFD429924d07fba429924d0 /* include/PsAlloca.h */,
+ FFFD429925387fba42992538 /* include/PsAllocator.h */,
+ FFFD429925a07fba429925a0 /* include/PsAoS.h */,
+ FFFD429926087fba42992608 /* include/PsArray.h */,
+ FFFD429926707fba42992670 /* include/PsAtomic.h */,
+ FFFD429926d87fba429926d8 /* include/PsBasicTemplates.h */,
+ FFFD429927407fba42992740 /* include/PsBitUtils.h */,
+ FFFD429927a87fba429927a8 /* include/PsBroadcast.h */,
+ FFFD429928107fba42992810 /* include/PsCpu.h */,
+ FFFD429928787fba42992878 /* include/PsFPU.h */,
+ FFFD429928e07fba429928e0 /* include/PsFoundation.h */,
+ FFFD429929487fba42992948 /* include/PsHash.h */,
+ FFFD429929b07fba429929b0 /* include/PsHashInternals.h */,
+ FFFD42992a187fba42992a18 /* include/PsHashMap.h */,
+ FFFD42992a807fba42992a80 /* include/PsHashSet.h */,
+ FFFD42992ae87fba42992ae8 /* include/PsInlineAllocator.h */,
+ FFFD42992b507fba42992b50 /* include/PsInlineAoS.h */,
+ FFFD42992bb87fba42992bb8 /* include/PsInlineArray.h */,
+ FFFD42992c207fba42992c20 /* include/PsIntrinsics.h */,
+ FFFD42992c887fba42992c88 /* include/PsMathUtils.h */,
+ FFFD42992cf07fba42992cf0 /* include/PsMutex.h */,
+ FFFD42992d587fba42992d58 /* include/PsPool.h */,
+ FFFD42992dc07fba42992dc0 /* include/PsSList.h */,
+ FFFD42992e287fba42992e28 /* include/PsSocket.h */,
+ FFFD42992e907fba42992e90 /* include/PsSort.h */,
+ FFFD42992ef87fba42992ef8 /* include/PsSortInternals.h */,
+ FFFD42992f607fba42992f60 /* include/PsString.h */,
+ FFFD42992fc87fba42992fc8 /* include/PsSync.h */,
+ FFFD429930307fba42993030 /* include/PsTempAllocator.h */,
+ FFFD429930987fba42993098 /* include/PsThread.h */,
+ FFFD429931007fba42993100 /* include/PsTime.h */,
+ FFFD429931687fba42993168 /* include/PsUserAllocated.h */,
+ FFFD429931d07fba429931d0 /* include/PsUtilities.h */,
+ FFFD429932387fba42993238 /* include/PsVecMath.h */,
+ FFFD429932a07fba429932a0 /* include/PsVecMathAoSScalar.h */,
+ FFFD429933087fba42993308 /* include/PsVecMathAoSScalarInline.h */,
+ FFFD429933707fba42993370 /* include/PsVecMathSSE.h */,
+ FFFD429933d87fba429933d8 /* include/PsVecMathUtilities.h */,
+ FFFD429934407fba42993440 /* include/PsVecQuat.h */,
+ FFFD429934a87fba429934a8 /* include/PsVecTransform.h */,
+ FFFD429935107fba42993510 /* include/unix/PsUnixAoS.h */,
+ FFFD429935787fba42993578 /* include/unix/PsUnixFPU.h */,
+ FFFD429935e07fba429935e0 /* include/unix/PsUnixInlineAoS.h */,
+ FFFD429936487fba42993648 /* include/unix/PsUnixIntrinsics.h */,
+ FFFD429936b07fba429936b0 /* include/unix/PsUnixTrigConstants.h */,
+ FFFD429937187fba42993718 /* src/PsAllocator.cpp */,
+ FFFD429937807fba42993780 /* src/PsAssert.cpp */,
+ FFFD429937e87fba429937e8 /* src/PsFoundation.cpp */,
+ FFFD429938507fba42993850 /* src/PsMathUtils.cpp */,
+ FFFD429938b87fba429938b8 /* src/PsString.cpp */,
+ FFFD429939207fba42993920 /* src/PsTempAllocator.cpp */,
+ FFFD429939887fba42993988 /* src/PsUtilities.cpp */,
+ FFFD429939f07fba429939f0 /* src/unix/PsUnixAtomic.cpp */,
+ FFFD42993a587fba42993a58 /* src/unix/PsUnixCpu.cpp */,
+ FFFD42993ac07fba42993ac0 /* src/unix/PsUnixFPU.cpp */,
+ FFFD42993b287fba42993b28 /* src/unix/PsUnixMutex.cpp */,
+ FFFD42993b907fba42993b90 /* src/unix/PsUnixPrintString.cpp */,
+ FFFD42993bf87fba42993bf8 /* src/unix/PsUnixSList.cpp */,
+ FFFD42993c607fba42993c60 /* src/unix/PsUnixSocket.cpp */,
+ FFFD42993cc87fba42993cc8 /* src/unix/PsUnixSync.cpp */,
+ FFFD42993d307fba42993d30 /* src/unix/PsUnixThread.cpp */,
+ FFFD42993d987fba42993d98 /* src/unix/PsUnixTime.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
- FFFB9cc339d07f899cc339d0 /* PxPvdSDK */ = {
+ FFFB44109f207fba44109f20 /* PxPvdSDK */ = {
isa = PBXGroup;
children = (
- FFFB9cc360007f899cc36000 /* include */,
- FFFB9cc360287f899cc36028 /* src */,
+ FFFB4410c5d07fba4410c5d0 /* include */,
+ FFFB4410c5f87fba4410c5f8 /* src */,
);
name = "PxPvdSDK";
sourceTree = "<group>";
};
- FFFB9cc360007f899cc36000 /* include */ = {
+ FFFB4410c5d07fba4410c5d0 /* include */ = {
isa = PBXGroup;
children = (
- FFFD9cc367007f899cc36700 /* PxPvd.h */,
- FFFD9cc367687f899cc36768 /* PxPvdTransport.h */,
+ FFFD4410cca07fba4410cca0 /* PxPvd.h */,
+ FFFD4410cd087fba4410cd08 /* PxPvdTransport.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
- FFFB9cc360287f899cc36028 /* src */ = {
+ FFFB4410c5f87fba4410c5f8 /* src */ = {
isa = PBXGroup;
children = (
- FFFD9d0202007f899d020200 /* include/PsPvd.h */,
- FFFD9d0202687f899d020268 /* include/PxProfileAllocatorWrapper.h */,
- FFFD9d0202d07f899d0202d0 /* include/PxPvdClient.h */,
- FFFD9d0203387f899d020338 /* include/PxPvdDataStream.h */,
- FFFD9d0203a07f899d0203a0 /* include/PxPvdDataStreamHelpers.h */,
- FFFD9d0204087f899d020408 /* include/PxPvdErrorCodes.h */,
- FFFD9d0204707f899d020470 /* include/PxPvdObjectModelBaseTypes.h */,
- FFFD9d0204d87f899d0204d8 /* include/PxPvdRenderBuffer.h */,
- FFFD9d0205407f899d020540 /* include/PxPvdUserRenderer.h */,
- FFFD9d0205a87f899d0205a8 /* src/PxProfileEventImpl.cpp */,
- FFFD9d0206107f899d020610 /* src/PxPvd.cpp */,
- FFFD9d0206787f899d020678 /* src/PxPvdDataStream.cpp */,
- FFFD9d0206e07f899d0206e0 /* src/PxPvdDefaultFileTransport.cpp */,
- FFFD9d0207487f899d020748 /* src/PxPvdDefaultSocketTransport.cpp */,
- FFFD9d0207b07f899d0207b0 /* src/PxPvdImpl.cpp */,
- FFFD9d0208187f899d020818 /* src/PxPvdMemClient.cpp */,
- FFFD9d0208807f899d020880 /* src/PxPvdObjectModelMetaData.cpp */,
- FFFD9d0208e87f899d0208e8 /* src/PxPvdObjectRegistrar.cpp */,
- FFFD9d0209507f899d020950 /* src/PxPvdProfileZoneClient.cpp */,
- FFFD9d0209b87f899d0209b8 /* src/PxPvdUserRenderer.cpp */,
- FFFD9d020a207f899d020a20 /* src/PxProfileBase.h */,
- FFFD9d020a887f899d020a88 /* src/PxProfileCompileTimeEventFilter.h */,
- FFFD9d020af07f899d020af0 /* src/PxProfileContextProvider.h */,
- FFFD9d020b587f899d020b58 /* src/PxProfileContextProviderImpl.h */,
- FFFD9d020bc07f899d020bc0 /* src/PxProfileDataBuffer.h */,
- FFFD9d020c287f899d020c28 /* src/PxProfileDataParsing.h */,
- FFFD9d020c907f899d020c90 /* src/PxProfileEventBuffer.h */,
- FFFD9d020cf87f899d020cf8 /* src/PxProfileEventBufferAtomic.h */,
- FFFD9d020d607f899d020d60 /* src/PxProfileEventBufferClient.h */,
- FFFD9d020dc87f899d020dc8 /* src/PxProfileEventBufferClientManager.h */,
- FFFD9d020e307f899d020e30 /* src/PxProfileEventFilter.h */,
- FFFD9d020e987f899d020e98 /* src/PxProfileEventHandler.h */,
- FFFD9d020f007f899d020f00 /* src/PxProfileEventId.h */,
- FFFD9d020f687f899d020f68 /* src/PxProfileEventMutex.h */,
- FFFD9d020fd07f899d020fd0 /* src/PxProfileEventNames.h */,
- FFFD9d0210387f899d021038 /* src/PxProfileEventParser.h */,
- FFFD9d0210a07f899d0210a0 /* src/PxProfileEventSender.h */,
- FFFD9d0211087f899d021108 /* src/PxProfileEventSerialization.h */,
- FFFD9d0211707f899d021170 /* src/PxProfileEventSystem.h */,
- FFFD9d0211d87f899d0211d8 /* src/PxProfileEvents.h */,
- FFFD9d0212407f899d021240 /* src/PxProfileMemory.h */,
- FFFD9d0212a87f899d0212a8 /* src/PxProfileMemoryBuffer.h */,
- FFFD9d0213107f899d021310 /* src/PxProfileMemoryEventBuffer.h */,
- FFFD9d0213787f899d021378 /* src/PxProfileMemoryEventParser.h */,
- FFFD9d0213e07f899d0213e0 /* src/PxProfileMemoryEventRecorder.h */,
- FFFD9d0214487f899d021448 /* src/PxProfileMemoryEventReflexiveWriter.h */,
- FFFD9d0214b07f899d0214b0 /* src/PxProfileMemoryEventSummarizer.h */,
- FFFD9d0215187f899d021518 /* src/PxProfileMemoryEventTypes.h */,
- FFFD9d0215807f899d021580 /* src/PxProfileMemoryEvents.h */,
- FFFD9d0215e87f899d0215e8 /* src/PxProfileScopedEvent.h */,
- FFFD9d0216507f899d021650 /* src/PxProfileScopedMutexLock.h */,
- FFFD9d0216b87f899d0216b8 /* src/PxProfileZone.h */,
- FFFD9d0217207f899d021720 /* src/PxProfileZoneImpl.h */,
- FFFD9d0217887f899d021788 /* src/PxProfileZoneManager.h */,
- FFFD9d0217f07f899d0217f0 /* src/PxProfileZoneManagerImpl.h */,
- FFFD9d0218587f899d021858 /* src/PxPvdBits.h */,
- FFFD9d0218c07f899d0218c0 /* src/PxPvdByteStreams.h */,
- FFFD9d0219287f899d021928 /* src/PxPvdCommStreamEventSink.h */,
- FFFD9d0219907f899d021990 /* src/PxPvdCommStreamEvents.h */,
- FFFD9d0219f87f899d0219f8 /* src/PxPvdCommStreamSDKEventTypes.h */,
- FFFD9d021a607f899d021a60 /* src/PxPvdCommStreamTypes.h */,
- FFFD9d021ac87f899d021ac8 /* src/PxPvdDefaultFileTransport.h */,
- FFFD9d021b307f899d021b30 /* src/PxPvdDefaultSocketTransport.h */,
- FFFD9d021b987f899d021b98 /* src/PxPvdFoundation.h */,
- FFFD9d021c007f899d021c00 /* src/PxPvdImpl.h */,
- FFFD9d021c687f899d021c68 /* src/PxPvdInternalByteStreams.h */,
- FFFD9d021cd07f899d021cd0 /* src/PxPvdMarshalling.h */,
- FFFD9d021d387f899d021d38 /* src/PxPvdMemClient.h */,
- FFFD9d021da07f899d021da0 /* src/PxPvdObjectModel.h */,
- FFFD9d021e087f899d021e08 /* src/PxPvdObjectModelInternalTypeDefs.h */,
- FFFD9d021e707f899d021e70 /* src/PxPvdObjectModelInternalTypes.h */,
- FFFD9d021ed87f899d021ed8 /* src/PxPvdObjectModelMetaData.h */,
- FFFD9d021f407f899d021f40 /* src/PxPvdObjectRegistrar.h */,
- FFFD9d021fa87f899d021fa8 /* src/PxPvdProfileZoneClient.h */,
- FFFD9d0220107f899d022010 /* src/PxPvdUserRenderImpl.h */,
- FFFD9d0220787f899d022078 /* src/PxPvdUserRenderTypes.h */,
+ FFFD4480fa007fba4480fa00 /* include/PsPvd.h */,
+ FFFD4480fa687fba4480fa68 /* include/PxProfileAllocatorWrapper.h */,
+ FFFD4480fad07fba4480fad0 /* include/PxPvdClient.h */,
+ FFFD4480fb387fba4480fb38 /* include/PxPvdDataStream.h */,
+ FFFD4480fba07fba4480fba0 /* include/PxPvdDataStreamHelpers.h */,
+ FFFD4480fc087fba4480fc08 /* include/PxPvdErrorCodes.h */,
+ FFFD4480fc707fba4480fc70 /* include/PxPvdObjectModelBaseTypes.h */,
+ FFFD4480fcd87fba4480fcd8 /* include/PxPvdRenderBuffer.h */,
+ FFFD4480fd407fba4480fd40 /* include/PxPvdUserRenderer.h */,
+ FFFD4480fda87fba4480fda8 /* src/PxProfileEventImpl.cpp */,
+ FFFD4480fe107fba4480fe10 /* src/PxPvd.cpp */,
+ FFFD4480fe787fba4480fe78 /* src/PxPvdDataStream.cpp */,
+ FFFD4480fee07fba4480fee0 /* src/PxPvdDefaultFileTransport.cpp */,
+ FFFD4480ff487fba4480ff48 /* src/PxPvdDefaultSocketTransport.cpp */,
+ FFFD4480ffb07fba4480ffb0 /* src/PxPvdImpl.cpp */,
+ FFFD448100187fba44810018 /* src/PxPvdMemClient.cpp */,
+ FFFD448100807fba44810080 /* src/PxPvdObjectModelMetaData.cpp */,
+ FFFD448100e87fba448100e8 /* src/PxPvdObjectRegistrar.cpp */,
+ FFFD448101507fba44810150 /* src/PxPvdProfileZoneClient.cpp */,
+ FFFD448101b87fba448101b8 /* src/PxPvdUserRenderer.cpp */,
+ FFFD448102207fba44810220 /* src/PxProfileBase.h */,
+ FFFD448102887fba44810288 /* src/PxProfileCompileTimeEventFilter.h */,
+ FFFD448102f07fba448102f0 /* src/PxProfileContextProvider.h */,
+ FFFD448103587fba44810358 /* src/PxProfileContextProviderImpl.h */,
+ FFFD448103c07fba448103c0 /* src/PxProfileDataBuffer.h */,
+ FFFD448104287fba44810428 /* src/PxProfileDataParsing.h */,
+ FFFD448104907fba44810490 /* src/PxProfileEventBuffer.h */,
+ FFFD448104f87fba448104f8 /* src/PxProfileEventBufferAtomic.h */,
+ FFFD448105607fba44810560 /* src/PxProfileEventBufferClient.h */,
+ FFFD448105c87fba448105c8 /* src/PxProfileEventBufferClientManager.h */,
+ FFFD448106307fba44810630 /* src/PxProfileEventFilter.h */,
+ FFFD448106987fba44810698 /* src/PxProfileEventHandler.h */,
+ FFFD448107007fba44810700 /* src/PxProfileEventId.h */,
+ FFFD448107687fba44810768 /* src/PxProfileEventMutex.h */,
+ FFFD448107d07fba448107d0 /* src/PxProfileEventNames.h */,
+ FFFD448108387fba44810838 /* src/PxProfileEventParser.h */,
+ FFFD448108a07fba448108a0 /* src/PxProfileEventSender.h */,
+ FFFD448109087fba44810908 /* src/PxProfileEventSerialization.h */,
+ FFFD448109707fba44810970 /* src/PxProfileEventSystem.h */,
+ FFFD448109d87fba448109d8 /* src/PxProfileEvents.h */,
+ FFFD44810a407fba44810a40 /* src/PxProfileMemory.h */,
+ FFFD44810aa87fba44810aa8 /* src/PxProfileMemoryBuffer.h */,
+ FFFD44810b107fba44810b10 /* src/PxProfileMemoryEventBuffer.h */,
+ FFFD44810b787fba44810b78 /* src/PxProfileMemoryEventParser.h */,
+ FFFD44810be07fba44810be0 /* src/PxProfileMemoryEventRecorder.h */,
+ FFFD44810c487fba44810c48 /* src/PxProfileMemoryEventReflexiveWriter.h */,
+ FFFD44810cb07fba44810cb0 /* src/PxProfileMemoryEventSummarizer.h */,
+ FFFD44810d187fba44810d18 /* src/PxProfileMemoryEventTypes.h */,
+ FFFD44810d807fba44810d80 /* src/PxProfileMemoryEvents.h */,
+ FFFD44810de87fba44810de8 /* src/PxProfileScopedEvent.h */,
+ FFFD44810e507fba44810e50 /* src/PxProfileScopedMutexLock.h */,
+ FFFD44810eb87fba44810eb8 /* src/PxProfileZone.h */,
+ FFFD44810f207fba44810f20 /* src/PxProfileZoneImpl.h */,
+ FFFD44810f887fba44810f88 /* src/PxProfileZoneManager.h */,
+ FFFD44810ff07fba44810ff0 /* src/PxProfileZoneManagerImpl.h */,
+ FFFD448110587fba44811058 /* src/PxPvdBits.h */,
+ FFFD448110c07fba448110c0 /* src/PxPvdByteStreams.h */,
+ FFFD448111287fba44811128 /* src/PxPvdCommStreamEventSink.h */,
+ FFFD448111907fba44811190 /* src/PxPvdCommStreamEvents.h */,
+ FFFD448111f87fba448111f8 /* src/PxPvdCommStreamSDKEventTypes.h */,
+ FFFD448112607fba44811260 /* src/PxPvdCommStreamTypes.h */,
+ FFFD448112c87fba448112c8 /* src/PxPvdDefaultFileTransport.h */,
+ FFFD448113307fba44811330 /* src/PxPvdDefaultSocketTransport.h */,
+ FFFD448113987fba44811398 /* src/PxPvdFoundation.h */,
+ FFFD448114007fba44811400 /* src/PxPvdImpl.h */,
+ FFFD448114687fba44811468 /* src/PxPvdInternalByteStreams.h */,
+ FFFD448114d07fba448114d0 /* src/PxPvdMarshalling.h */,
+ FFFD448115387fba44811538 /* src/PxPvdMemClient.h */,
+ FFFD448115a07fba448115a0 /* src/PxPvdObjectModel.h */,
+ FFFD448116087fba44811608 /* src/PxPvdObjectModelInternalTypeDefs.h */,
+ FFFD448116707fba44811670 /* src/PxPvdObjectModelInternalTypes.h */,
+ FFFD448116d87fba448116d8 /* src/PxPvdObjectModelMetaData.h */,
+ FFFD448117407fba44811740 /* src/PxPvdObjectRegistrar.h */,
+ FFFD448117a87fba448117a8 /* src/PxPvdProfileZoneClient.h */,
+ FFFD448118107fba44811810 /* src/PxPvdUserRenderImpl.h */,
+ FFFD448118787fba44811878 /* src/PxPvdUserRenderTypes.h */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
- FFFB9cdf92b07f899cdf92b0 /* LowLevel */ = {
+ FFFB441270b07fba441270b0 /* LowLevel */ = {
isa = PBXGroup;
children = (
- FFFB9ce0f7f07f899ce0f7f0 /* API Source */,
- FFFB9ce0f8187f899ce0f818 /* API Includes */,
- FFFB9ce0f8407f899ce0f840 /* Software Source */,
- FFFB9ce0f8687f899ce0f868 /* Software Includes */,
- FFFB9ce0f8907f899ce0f890 /* Common Source */,
- FFFB9ce0f8b87f899ce0f8b8 /* Common Includes */,
+ FFFB4412bd207fba4412bd20 /* API Source */,
+ FFFB4412bd487fba4412bd48 /* API Includes */,
+ FFFB4412bd707fba4412bd70 /* Software Source */,
+ FFFB4412bd987fba4412bd98 /* Software Includes */,
+ FFFB4412bdc07fba4412bdc0 /* Common Source */,
+ FFFB4412bde87fba4412bde8 /* Common Includes */,
);
name = "LowLevel";
sourceTree = "<group>";
};
- FFFB9ce0f7f07f899ce0f7f0 /* API Source */ = {
+ FFFB4412bd207fba4412bd20 /* API Source */ = {
isa = PBXGroup;
children = (
- FFFD9ce0f7407f899ce0f740 /* px_globals.cpp */,
+ FFFD44128b307fba44128b30 /* px_globals.cpp */,
);
name = "API Source";
sourceTree = SOURCE_ROOT;
};
- FFFB9ce0f8187f899ce0f818 /* API Includes */ = {
+ FFFB4412bd487fba4412bd48 /* API Includes */ = {
isa = PBXGroup;
children = (
- FFFD9ce10f507f899ce10f50 /* PxsMaterialCore.h */,
- FFFD9ce10fb87f899ce10fb8 /* PxsMaterialManager.h */,
- FFFD9ce110207f899ce11020 /* PxvConfig.h */,
- FFFD9ce110887f899ce11088 /* PxvContext.h */,
- FFFD9ce110f07f899ce110f0 /* PxvDynamics.h */,
- FFFD9ce111587f899ce11158 /* PxvGeometry.h */,
- FFFD9ce111c07f899ce111c0 /* PxvGlobals.h */,
- FFFD9ce112287f899ce11228 /* PxvManager.h */,
- FFFD9ce112907f899ce11290 /* PxvSimStats.h */,
+ FFFD4412b7a07fba4412b7a0 /* PxsMaterialCore.h */,
+ FFFD4412b8087fba4412b808 /* PxsMaterialManager.h */,
+ FFFD4412b8707fba4412b870 /* PxvConfig.h */,
+ FFFD4412b8d87fba4412b8d8 /* PxvContext.h */,
+ FFFD4412b9407fba4412b940 /* PxvDynamics.h */,
+ FFFD4412b9a87fba4412b9a8 /* PxvGeometry.h */,
+ FFFD4412ba107fba4412ba10 /* PxvGlobals.h */,
+ FFFD4412ba787fba4412ba78 /* PxvManager.h */,
+ FFFD4412bae07fba4412bae0 /* PxvSimStats.h */,
);
name = "API Includes";
sourceTree = SOURCE_ROOT;
};
- FFFB9ce0f8407f899ce0f840 /* Software Source */ = {
+ FFFB4412bd707fba4412bd70 /* Software Source */ = {
isa = PBXGroup;
children = (
- FFFD9ce120c07f899ce120c0 /* PxsCCD.cpp */,
- FFFD9ce121287f899ce12128 /* PxsContactManager.cpp */,
- FFFD9ce121907f899ce12190 /* PxsContext.cpp */,
- FFFD9ce121f87f899ce121f8 /* PxsDefaultMemoryManager.cpp */,
- FFFD9ce122607f899ce12260 /* PxsIslandSim.cpp */,
- FFFD9ce122c87f899ce122c8 /* PxsMaterialCombiner.cpp */,
- FFFD9ce123307f899ce12330 /* PxsNphaseImplementationContext.cpp */,
- FFFD9ce123987f899ce12398 /* PxsSimpleIslandManager.cpp */,
+ FFFD4412e1507fba4412e150 /* PxsCCD.cpp */,
+ FFFD4412e1b87fba4412e1b8 /* PxsContactManager.cpp */,
+ FFFD4412e2207fba4412e220 /* PxsContext.cpp */,
+ FFFD4412e2887fba4412e288 /* PxsDefaultMemoryManager.cpp */,
+ FFFD4412e2f07fba4412e2f0 /* PxsIslandSim.cpp */,
+ FFFD4412e3587fba4412e358 /* PxsMaterialCombiner.cpp */,
+ FFFD4412e3c07fba4412e3c0 /* PxsNphaseImplementationContext.cpp */,
+ FFFD4412e4287fba4412e428 /* PxsSimpleIslandManager.cpp */,
);
name = "Software Source";
sourceTree = SOURCE_ROOT;
};
- FFFB9ce0f8687f899ce0f868 /* Software Includes */ = {
+ FFFB4412bd987fba4412bd98 /* Software Includes */ = {
isa = PBXGroup;
children = (
- FFFD9c1d0e007f899c1d0e00 /* PxsBodySim.h */,
- FFFD9c1d0e687f899c1d0e68 /* PxsCCD.h */,
- FFFD9c1d0ed07f899c1d0ed0 /* PxsContactManager.h */,
- FFFD9c1d0f387f899c1d0f38 /* PxsContactManagerState.h */,
- FFFD9c1d0fa07f899c1d0fa0 /* PxsContext.h */,
- FFFD9c1d10087f899c1d1008 /* PxsDefaultMemoryManager.h */,
- FFFD9c1d10707f899c1d1070 /* PxsHeapMemoryAllocator.h */,
- FFFD9c1d10d87f899c1d10d8 /* PxsIncrementalConstraintPartitioning.h */,
- FFFD9c1d11407f899c1d1140 /* PxsIslandManagerTypes.h */,
- FFFD9c1d11a87f899c1d11a8 /* PxsIslandSim.h */,
- FFFD9c1d12107f899c1d1210 /* PxsKernelWrangler.h */,
- FFFD9c1d12787f899c1d1278 /* PxsMaterialCombiner.h */,
- FFFD9c1d12e07f899c1d12e0 /* PxsMemoryManager.h */,
- FFFD9c1d13487f899c1d1348 /* PxsNphaseImplementationContext.h */,
- FFFD9c1d13b07f899c1d13b0 /* PxsRigidBody.h */,
- FFFD9c1d14187f899c1d1418 /* PxsShapeSim.h */,
- FFFD9c1d14807f899c1d1480 /* PxsSimpleIslandManager.h */,
- FFFD9c1d14e87f899c1d14e8 /* PxsSimulationController.h */,
- FFFD9c1d15507f899c1d1550 /* PxsTransformCache.h */,
- FFFD9c1d15b87f899c1d15b8 /* PxvNphaseImplementationContext.h */,
+ FFFD44818a007fba44818a00 /* PxsBodySim.h */,
+ FFFD44818a687fba44818a68 /* PxsCCD.h */,
+ FFFD44818ad07fba44818ad0 /* PxsContactManager.h */,
+ FFFD44818b387fba44818b38 /* PxsContactManagerState.h */,
+ FFFD44818ba07fba44818ba0 /* PxsContext.h */,
+ FFFD44818c087fba44818c08 /* PxsDefaultMemoryManager.h */,
+ FFFD44818c707fba44818c70 /* PxsHeapMemoryAllocator.h */,
+ FFFD44818cd87fba44818cd8 /* PxsIncrementalConstraintPartitioning.h */,
+ FFFD44818d407fba44818d40 /* PxsIslandManagerTypes.h */,
+ FFFD44818da87fba44818da8 /* PxsIslandSim.h */,
+ FFFD44818e107fba44818e10 /* PxsKernelWrangler.h */,
+ FFFD44818e787fba44818e78 /* PxsMaterialCombiner.h */,
+ FFFD44818ee07fba44818ee0 /* PxsMemoryManager.h */,
+ FFFD44818f487fba44818f48 /* PxsNphaseImplementationContext.h */,
+ FFFD44818fb07fba44818fb0 /* PxsRigidBody.h */,
+ FFFD448190187fba44819018 /* PxsShapeSim.h */,
+ FFFD448190807fba44819080 /* PxsSimpleIslandManager.h */,
+ FFFD448190e87fba448190e8 /* PxsSimulationController.h */,
+ FFFD448191507fba44819150 /* PxsTransformCache.h */,
+ FFFD448191b87fba448191b8 /* PxvNphaseImplementationContext.h */,
);
name = "Software Includes";
sourceTree = SOURCE_ROOT;
};
- FFFB9ce0f8907f899ce0f890 /* Common Source */ = {
+ FFFB4412bdc07fba4412bdc0 /* Common Source */ = {
isa = PBXGroup;
children = (
- FFFD9c1cf8007f899c1cf800 /* collision/PxcContact.cpp */,
- FFFD9c1cf8687f899c1cf868 /* pipeline/PxcContactCache.cpp */,
- FFFD9c1cf8d07f899c1cf8d0 /* pipeline/PxcContactMethodImpl.cpp */,
- FFFD9c1cf9387f899c1cf938 /* pipeline/PxcMaterialHeightField.cpp */,
- FFFD9c1cf9a07f899c1cf9a0 /* pipeline/PxcMaterialMesh.cpp */,
- FFFD9c1cfa087f899c1cfa08 /* pipeline/PxcMaterialMethodImpl.cpp */,
- FFFD9c1cfa707f899c1cfa70 /* pipeline/PxcMaterialShape.cpp */,
- FFFD9c1cfad87f899c1cfad8 /* pipeline/PxcNpBatch.cpp */,
- FFFD9c1cfb407f899c1cfb40 /* pipeline/PxcNpCacheStreamPair.cpp */,
- FFFD9c1cfba87f899c1cfba8 /* pipeline/PxcNpContactPrepShared.cpp */,
- FFFD9c1cfc107f899c1cfc10 /* pipeline/PxcNpMemBlockPool.cpp */,
- FFFD9c1cfc787f899c1cfc78 /* pipeline/PxcNpThreadContext.cpp */,
+ FFFD448174007fba44817400 /* collision/PxcContact.cpp */,
+ FFFD448174687fba44817468 /* pipeline/PxcContactCache.cpp */,
+ FFFD448174d07fba448174d0 /* pipeline/PxcContactMethodImpl.cpp */,
+ FFFD448175387fba44817538 /* pipeline/PxcMaterialHeightField.cpp */,
+ FFFD448175a07fba448175a0 /* pipeline/PxcMaterialMesh.cpp */,
+ FFFD448176087fba44817608 /* pipeline/PxcMaterialMethodImpl.cpp */,
+ FFFD448176707fba44817670 /* pipeline/PxcMaterialShape.cpp */,
+ FFFD448176d87fba448176d8 /* pipeline/PxcNpBatch.cpp */,
+ FFFD448177407fba44817740 /* pipeline/PxcNpCacheStreamPair.cpp */,
+ FFFD448177a87fba448177a8 /* pipeline/PxcNpContactPrepShared.cpp */,
+ FFFD448178107fba44817810 /* pipeline/PxcNpMemBlockPool.cpp */,
+ FFFD448178787fba44817878 /* pipeline/PxcNpThreadContext.cpp */,
);
name = "Common Source";
sourceTree = SOURCE_ROOT;
};
- FFFB9ce0f8b87f899ce0f8b8 /* Common Includes */ = {
+ FFFB4412bde87fba4412bde8 /* Common Includes */ = {
isa = PBXGroup;
children = (
- FFFD9c1d00007f899c1d0000 /* collision/PxcContactMethodImpl.h */,
- FFFD9c1d00687f899c1d0068 /* pipeline/PxcCCDStateStreamPair.h */,
- FFFD9c1d00d07f899c1d00d0 /* pipeline/PxcConstraintBlockStream.h */,
- FFFD9c1d01387f899c1d0138 /* pipeline/PxcContactCache.h */,
- FFFD9c1d01a07f899c1d01a0 /* pipeline/PxcMaterialMethodImpl.h */,
- FFFD9c1d02087f899c1d0208 /* pipeline/PxcNpBatch.h */,
- FFFD9c1d02707f899c1d0270 /* pipeline/PxcNpCache.h */,
- FFFD9c1d02d87f899c1d02d8 /* pipeline/PxcNpCacheStreamPair.h */,
- FFFD9c1d03407f899c1d0340 /* pipeline/PxcNpContactPrepShared.h */,
- FFFD9c1d03a87f899c1d03a8 /* pipeline/PxcNpMemBlockPool.h */,
- FFFD9c1d04107f899c1d0410 /* pipeline/PxcNpThreadContext.h */,
- FFFD9c1d04787f899c1d0478 /* pipeline/PxcNpWorkUnit.h */,
- FFFD9c1d04e07f899c1d04e0 /* pipeline/PxcRigidBody.h */,
- FFFD9c1d05487f899c1d0548 /* utils/PxcScratchAllocator.h */,
- FFFD9c1d05b07f899c1d05b0 /* utils/PxcThreadCoherentCache.h */,
+ FFFD44817c007fba44817c00 /* collision/PxcContactMethodImpl.h */,
+ FFFD44817c687fba44817c68 /* pipeline/PxcCCDStateStreamPair.h */,
+ FFFD44817cd07fba44817cd0 /* pipeline/PxcConstraintBlockStream.h */,
+ FFFD44817d387fba44817d38 /* pipeline/PxcContactCache.h */,
+ FFFD44817da07fba44817da0 /* pipeline/PxcMaterialMethodImpl.h */,
+ FFFD44817e087fba44817e08 /* pipeline/PxcNpBatch.h */,
+ FFFD44817e707fba44817e70 /* pipeline/PxcNpCache.h */,
+ FFFD44817ed87fba44817ed8 /* pipeline/PxcNpCacheStreamPair.h */,
+ FFFD44817f407fba44817f40 /* pipeline/PxcNpContactPrepShared.h */,
+ FFFD44817fa87fba44817fa8 /* pipeline/PxcNpMemBlockPool.h */,
+ FFFD448180107fba44818010 /* pipeline/PxcNpThreadContext.h */,
+ FFFD448180787fba44818078 /* pipeline/PxcNpWorkUnit.h */,
+ FFFD448180e07fba448180e0 /* pipeline/PxcRigidBody.h */,
+ FFFD448181487fba44818148 /* utils/PxcScratchAllocator.h */,
+ FFFD448181b07fba448181b0 /* utils/PxcThreadCoherentCache.h */,
);
name = "Common Includes";
sourceTree = SOURCE_ROOT;
};
- FFFB9cf0adc07f899cf0adc0 /* LowLevelAABB */ = {
+ FFFB44154f407fba44154f40 /* LowLevelAABB */ = {
isa = PBXGroup;
children = (
- FFFB9cf0cf807f899cf0cf80 /* include */,
- FFFB9cf0cfa87f899cf0cfa8 /* src */,
+ FFFB44151d807fba44151d80 /* include */,
+ FFFB44151da87fba44151da8 /* src */,
);
name = "LowLevelAABB";
sourceTree = "<group>";
};
- FFFB9cf0cf807f899cf0cf80 /* include */ = {
+ FFFB44151d807fba44151d80 /* include */ = {
isa = PBXGroup;
children = (
- FFFD9cf0d4a07f899cf0d4a0 /* BpAABBManagerTasks.h */,
- FFFD9cf0d5087f899cf0d508 /* BpBroadPhase.h */,
- FFFD9cf0d5707f899cf0d570 /* BpBroadPhaseUpdate.h */,
- FFFD9cf0d5d87f899cf0d5d8 /* BpSimpleAABBManager.h */,
+ FFFD441522a07fba441522a0 /* BpAABBManagerTasks.h */,
+ FFFD441523087fba44152308 /* BpBroadPhase.h */,
+ FFFD441523707fba44152370 /* BpBroadPhaseUpdate.h */,
+ FFFD441523d87fba441523d8 /* BpSimpleAABBManager.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
- FFFB9cf0cfa87f899cf0cfa8 /* src */ = {
+ FFFB44151da87fba44151da8 /* src */ = {
isa = PBXGroup;
children = (
- FFFD9d805a007f899d805a00 /* BpBroadPhaseMBP.h */,
- FFFD9d805a687f899d805a68 /* BpBroadPhaseMBPCommon.h */,
- FFFD9d805ad07f899d805ad0 /* BpBroadPhaseSap.h */,
- FFFD9d805b387f899d805b38 /* BpBroadPhaseSapAux.h */,
- FFFD9d805ba07f899d805ba0 /* BpMBPTasks.h */,
- FFFD9d805c087f899d805c08 /* BpSAPTasks.h */,
- FFFD9d805c707f899d805c70 /* BpBroadPhase.cpp */,
- FFFD9d805cd87f899d805cd8 /* BpBroadPhaseMBP.cpp */,
- FFFD9d805d407f899d805d40 /* BpBroadPhaseSap.cpp */,
- FFFD9d805da87f899d805da8 /* BpBroadPhaseSapAux.cpp */,
- FFFD9d805e107f899d805e10 /* BpMBPTasks.cpp */,
- FFFD9d805e787f899d805e78 /* BpSAPTasks.cpp */,
- FFFD9d805ee07f899d805ee0 /* BpSimpleAABBManager.cpp */,
+ FFFD448216007fba44821600 /* BpBroadPhaseMBP.h */,
+ FFFD448216687fba44821668 /* BpBroadPhaseMBPCommon.h */,
+ FFFD448216d07fba448216d0 /* BpBroadPhaseSap.h */,
+ FFFD448217387fba44821738 /* BpBroadPhaseSapAux.h */,
+ FFFD448217a07fba448217a0 /* BpMBPTasks.h */,
+ FFFD448218087fba44821808 /* BpSAPTasks.h */,
+ FFFD448218707fba44821870 /* BpBroadPhase.cpp */,
+ FFFD448218d87fba448218d8 /* BpBroadPhaseMBP.cpp */,
+ FFFD448219407fba44821940 /* BpBroadPhaseSap.cpp */,
+ FFFD448219a87fba448219a8 /* BpBroadPhaseSapAux.cpp */,
+ FFFD44821a107fba44821a10 /* BpMBPTasks.cpp */,
+ FFFD44821a787fba44821a78 /* BpSAPTasks.cpp */,
+ FFFD44821ae07fba44821ae0 /* BpSimpleAABBManager.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
- FFFB9cc550007f899cc55000 /* LowLevelDynamics */ = {
+ FFFB441701307fba44170130 /* LowLevelDynamics */ = {
isa = PBXGroup;
children = (
- FFFB9cc611c07f899cc611c0 /* Dynamics Source */,
- FFFB9cc611e87f899cc611e8 /* Dynamics Includes */,
- FFFB9cc612107f899cc61210 /* Dynamics Internal Includes */,
+ FFFB4416c3907fba4416c390 /* Dynamics Source */,
+ FFFB4416c3b87fba4416c3b8 /* Dynamics Includes */,
+ FFFB4416c3e07fba4416c3e0 /* Dynamics Internal Includes */,
);
name = "LowLevelDynamics";
sourceTree = "<group>";
};
- FFFB9cc611c07f899cc611c0 /* Dynamics Source */ = {
+ FFFB4416c3907fba4416c390 /* Dynamics Source */ = {
isa = PBXGroup;
children = (
- FFFD9d0282007f899d028200 /* DyArticulation.cpp */,
- FFFD9d0282687f899d028268 /* DyArticulationContactPrep.cpp */,
- FFFD9d0282d07f899d0282d0 /* DyArticulationContactPrepPF.cpp */,
- FFFD9d0283387f899d028338 /* DyArticulationHelper.cpp */,
- FFFD9d0283a07f899d0283a0 /* DyArticulationSIMD.cpp */,
- FFFD9d0284087f899d028408 /* DyArticulationScalar.cpp */,
- FFFD9d0284707f899d028470 /* DyConstraintPartition.cpp */,
- FFFD9d0284d87f899d0284d8 /* DyConstraintSetup.cpp */,
- FFFD9d0285407f899d028540 /* DyConstraintSetupBlock.cpp */,
- FFFD9d0285a87f899d0285a8 /* DyContactPrep.cpp */,
- FFFD9d0286107f899d028610 /* DyContactPrep4.cpp */,
- FFFD9d0286787f899d028678 /* DyContactPrep4PF.cpp */,
- FFFD9d0286e07f899d0286e0 /* DyContactPrepPF.cpp */,
- FFFD9d0287487f899d028748 /* DyDynamics.cpp */,
- FFFD9d0287b07f899d0287b0 /* DyFrictionCorrelation.cpp */,
- FFFD9d0288187f899d028818 /* DyRigidBodyToSolverBody.cpp */,
- FFFD9d0288807f899d028880 /* DySolverConstraints.cpp */,
- FFFD9d0288e87f899d0288e8 /* DySolverConstraintsBlock.cpp */,
- FFFD9d0289507f899d028950 /* DySolverControl.cpp */,
- FFFD9d0289b87f899d0289b8 /* DySolverControlPF.cpp */,
- FFFD9d028a207f899d028a20 /* DySolverPFConstraints.cpp */,
- FFFD9d028a887f899d028a88 /* DySolverPFConstraintsBlock.cpp */,
- FFFD9d028af07f899d028af0 /* DyThreadContext.cpp */,
- FFFD9d028b587f899d028b58 /* DyThresholdTable.cpp */,
+ FFFD4482a0007fba4482a000 /* DyArticulation.cpp */,
+ FFFD4482a0687fba4482a068 /* DyArticulationContactPrep.cpp */,
+ FFFD4482a0d07fba4482a0d0 /* DyArticulationContactPrepPF.cpp */,
+ FFFD4482a1387fba4482a138 /* DyArticulationHelper.cpp */,
+ FFFD4482a1a07fba4482a1a0 /* DyArticulationSIMD.cpp */,
+ FFFD4482a2087fba4482a208 /* DyArticulationScalar.cpp */,
+ FFFD4482a2707fba4482a270 /* DyConstraintPartition.cpp */,
+ FFFD4482a2d87fba4482a2d8 /* DyConstraintSetup.cpp */,
+ FFFD4482a3407fba4482a340 /* DyConstraintSetupBlock.cpp */,
+ FFFD4482a3a87fba4482a3a8 /* DyContactPrep.cpp */,
+ FFFD4482a4107fba4482a410 /* DyContactPrep4.cpp */,
+ FFFD4482a4787fba4482a478 /* DyContactPrep4PF.cpp */,
+ FFFD4482a4e07fba4482a4e0 /* DyContactPrepPF.cpp */,
+ FFFD4482a5487fba4482a548 /* DyDynamics.cpp */,
+ FFFD4482a5b07fba4482a5b0 /* DyFrictionCorrelation.cpp */,
+ FFFD4482a6187fba4482a618 /* DyRigidBodyToSolverBody.cpp */,
+ FFFD4482a6807fba4482a680 /* DySolverConstraints.cpp */,
+ FFFD4482a6e87fba4482a6e8 /* DySolverConstraintsBlock.cpp */,
+ FFFD4482a7507fba4482a750 /* DySolverControl.cpp */,
+ FFFD4482a7b87fba4482a7b8 /* DySolverControlPF.cpp */,
+ FFFD4482a8207fba4482a820 /* DySolverPFConstraints.cpp */,
+ FFFD4482a8887fba4482a888 /* DySolverPFConstraintsBlock.cpp */,
+ FFFD4482a8f07fba4482a8f0 /* DyThreadContext.cpp */,
+ FFFD4482a9587fba4482a958 /* DyThresholdTable.cpp */,
);
name = "Dynamics Source";
sourceTree = SOURCE_ROOT;
};
- FFFB9cc611e87f899cc611e8 /* Dynamics Includes */ = {
+ FFFB4416c3b87fba4416c3b8 /* Dynamics Includes */ = {
isa = PBXGroup;
children = (
- FFFD9cc43f507f899cc43f50 /* DyArticulation.h */,
- FFFD9cc43fb87f899cc43fb8 /* DyConstraint.h */,
- FFFD9cc440207f899cc44020 /* DyConstraintWriteBack.h */,
- FFFD9cc440887f899cc44088 /* DyContext.h */,
- FFFD9cc440f07f899cc440f0 /* DySleepingConfigulation.h */,
- FFFD9cc441587f899cc44158 /* DyThresholdTable.h */,
+ FFFD4416da107fba4416da10 /* DyArticulation.h */,
+ FFFD4416da787fba4416da78 /* DyConstraint.h */,
+ FFFD4416dae07fba4416dae0 /* DyConstraintWriteBack.h */,
+ FFFD4416db487fba4416db48 /* DyContext.h */,
+ FFFD4416dbb07fba4416dbb0 /* DySleepingConfigulation.h */,
+ FFFD4416dc187fba4416dc18 /* DyThresholdTable.h */,
);
name = "Dynamics Includes";
sourceTree = SOURCE_ROOT;
};
- FFFB9cc612107f899cc61210 /* Dynamics Internal Includes */ = {
+ FFFB4416c3e07fba4416c3e0 /* Dynamics Internal Includes */ = {
isa = PBXGroup;
children = (
- FFFD9d0294007f899d029400 /* DyArticulationContactPrep.h */,
- FFFD9d0294687f899d029468 /* DyArticulationFnsDebug.h */,
- FFFD9d0294d07f899d0294d0 /* DyArticulationFnsScalar.h */,
- FFFD9d0295387f899d029538 /* DyArticulationFnsSimd.h */,
- FFFD9d0295a07f899d0295a0 /* DyArticulationHelper.h */,
- FFFD9d0296087f899d029608 /* DyArticulationPImpl.h */,
- FFFD9d0296707f899d029670 /* DyArticulationReference.h */,
- FFFD9d0296d87f899d0296d8 /* DyArticulationScalar.h */,
- FFFD9d0297407f899d029740 /* DyArticulationUtils.h */,
- FFFD9d0297a87f899d0297a8 /* DyBodyCoreIntegrator.h */,
- FFFD9d0298107f899d029810 /* DyConstraintPartition.h */,
- FFFD9d0298787f899d029878 /* DyConstraintPrep.h */,
- FFFD9d0298e07f899d0298e0 /* DyContactPrep.h */,
- FFFD9d0299487f899d029948 /* DyContactPrepShared.h */,
- FFFD9d0299b07f899d0299b0 /* DyContactReduction.h */,
- FFFD9d029a187f899d029a18 /* DyCorrelationBuffer.h */,
- FFFD9d029a807f899d029a80 /* DyDynamics.h */,
- FFFD9d029ae87f899d029ae8 /* DyFrictionPatch.h */,
- FFFD9d029b507f899d029b50 /* DyFrictionPatchStreamPair.h */,
- FFFD9d029bb87f899d029bb8 /* DySolverBody.h */,
- FFFD9d029c207f899d029c20 /* DySolverConstraint1D.h */,
- FFFD9d029c887f899d029c88 /* DySolverConstraint1D4.h */,
- FFFD9d029cf07f899d029cf0 /* DySolverConstraintDesc.h */,
- FFFD9d029d587f899d029d58 /* DySolverConstraintExtShared.h */,
- FFFD9d029dc07f899d029dc0 /* DySolverConstraintTypes.h */,
- FFFD9d029e287f899d029e28 /* DySolverConstraintsShared.h */,
- FFFD9d029e907f899d029e90 /* DySolverContact.h */,
- FFFD9d029ef87f899d029ef8 /* DySolverContact4.h */,
- FFFD9d029f607f899d029f60 /* DySolverContactPF.h */,
- FFFD9d029fc87f899d029fc8 /* DySolverContactPF4.h */,
- FFFD9d02a0307f899d02a030 /* DySolverContext.h */,
- FFFD9d02a0987f899d02a098 /* DySolverControl.h */,
- FFFD9d02a1007f899d02a100 /* DySolverControlPF.h */,
- FFFD9d02a1687f899d02a168 /* DySolverCore.h */,
- FFFD9d02a1d07f899d02a1d0 /* DySolverExt.h */,
- FFFD9d02a2387f899d02a238 /* DySpatial.h */,
- FFFD9d02a2a07f899d02a2a0 /* DyThreadContext.h */,
+ FFFD4482b2007fba4482b200 /* DyArticulationContactPrep.h */,
+ FFFD4482b2687fba4482b268 /* DyArticulationFnsDebug.h */,
+ FFFD4482b2d07fba4482b2d0 /* DyArticulationFnsScalar.h */,
+ FFFD4482b3387fba4482b338 /* DyArticulationFnsSimd.h */,
+ FFFD4482b3a07fba4482b3a0 /* DyArticulationHelper.h */,
+ FFFD4482b4087fba4482b408 /* DyArticulationPImpl.h */,
+ FFFD4482b4707fba4482b470 /* DyArticulationReference.h */,
+ FFFD4482b4d87fba4482b4d8 /* DyArticulationScalar.h */,
+ FFFD4482b5407fba4482b540 /* DyArticulationUtils.h */,
+ FFFD4482b5a87fba4482b5a8 /* DyBodyCoreIntegrator.h */,
+ FFFD4482b6107fba4482b610 /* DyConstraintPartition.h */,
+ FFFD4482b6787fba4482b678 /* DyConstraintPrep.h */,
+ FFFD4482b6e07fba4482b6e0 /* DyContactPrep.h */,
+ FFFD4482b7487fba4482b748 /* DyContactPrepShared.h */,
+ FFFD4482b7b07fba4482b7b0 /* DyContactReduction.h */,
+ FFFD4482b8187fba4482b818 /* DyCorrelationBuffer.h */,
+ FFFD4482b8807fba4482b880 /* DyDynamics.h */,
+ FFFD4482b8e87fba4482b8e8 /* DyFrictionPatch.h */,
+ FFFD4482b9507fba4482b950 /* DyFrictionPatchStreamPair.h */,
+ FFFD4482b9b87fba4482b9b8 /* DySolverBody.h */,
+ FFFD4482ba207fba4482ba20 /* DySolverConstraint1D.h */,
+ FFFD4482ba887fba4482ba88 /* DySolverConstraint1D4.h */,
+ FFFD4482baf07fba4482baf0 /* DySolverConstraintDesc.h */,
+ FFFD4482bb587fba4482bb58 /* DySolverConstraintExtShared.h */,
+ FFFD4482bbc07fba4482bbc0 /* DySolverConstraintTypes.h */,
+ FFFD4482bc287fba4482bc28 /* DySolverConstraintsShared.h */,
+ FFFD4482bc907fba4482bc90 /* DySolverContact.h */,
+ FFFD4482bcf87fba4482bcf8 /* DySolverContact4.h */,
+ FFFD4482bd607fba4482bd60 /* DySolverContactPF.h */,
+ FFFD4482bdc87fba4482bdc8 /* DySolverContactPF4.h */,
+ FFFD4482be307fba4482be30 /* DySolverContext.h */,
+ FFFD4482be987fba4482be98 /* DySolverControl.h */,
+ FFFD4482bf007fba4482bf00 /* DySolverControlPF.h */,
+ FFFD4482bf687fba4482bf68 /* DySolverCore.h */,
+ FFFD4482bfd07fba4482bfd0 /* DySolverExt.h */,
+ FFFD4482c0387fba4482c038 /* DySpatial.h */,
+ FFFD4482c0a07fba4482c0a0 /* DyThreadContext.h */,
);
name = "Dynamics Internal Includes";
sourceTree = SOURCE_ROOT;
};
- FFFB9e008d507f899e008d50 /* LowLevelCloth */ = {
+ FFFB441915407fba44191540 /* LowLevelCloth */ = {
isa = PBXGroup;
children = (
- FFFB9e007a507f899e007a50 /* include */,
- FFFB9e007a787f899e007a78 /* src */,
+ FFFB44189b107fba44189b10 /* include */,
+ FFFB44189b387fba44189b38 /* src */,
);
name = "LowLevelCloth";
sourceTree = "<group>";
};
- FFFB9e007a507f899e007a50 /* include */ = {
+ FFFB44189b107fba44189b10 /* include */ = {
isa = PBXGroup;
children = (
- FFFD9e00cbe07f899e00cbe0 /* Cloth.h */,
- FFFD9e00cc487f899e00cc48 /* Fabric.h */,
- FFFD9e00ccb07f899e00ccb0 /* Factory.h */,
- FFFD9e00cd187f899e00cd18 /* PhaseConfig.h */,
- FFFD9e00cd807f899e00cd80 /* Range.h */,
- FFFD9e00cde87f899e00cde8 /* Solver.h */,
- FFFD9e00ce507f899e00ce50 /* Types.h */,
+ FFFD4418ac207fba4418ac20 /* Cloth.h */,
+ FFFD4418ac887fba4418ac88 /* Fabric.h */,
+ FFFD4418acf07fba4418acf0 /* Factory.h */,
+ FFFD4418ad587fba4418ad58 /* PhaseConfig.h */,
+ FFFD4418adc07fba4418adc0 /* Range.h */,
+ FFFD4418ae287fba4418ae28 /* Solver.h */,
+ FFFD4418ae907fba4418ae90 /* Types.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
- FFFB9e007a787f899e007a78 /* src */ = {
+ FFFB44189b387fba44189b38 /* src */ = {
isa = PBXGroup;
children = (
- FFFD9e809c007f899e809c00 /* Allocator.h */,
- FFFD9e809c687f899e809c68 /* Array.h */,
- FFFD9e809cd07f899e809cd0 /* BoundingBox.h */,
- FFFD9e809d387f899e809d38 /* ClothBase.h */,
- FFFD9e809da07f899e809da0 /* ClothImpl.h */,
- FFFD9e809e087f899e809e08 /* IndexPair.h */,
- FFFD9e809e707f899e809e70 /* IterationState.h */,
- FFFD9e809ed87f899e809ed8 /* MovingAverage.h */,
- FFFD9e809f407f899e809f40 /* PointInterpolator.h */,
- FFFD9e809fa87f899e809fa8 /* Simd.h */,
- FFFD9e80a0107f899e80a010 /* Simd4f.h */,
- FFFD9e80a0787f899e80a078 /* Simd4i.h */,
- FFFD9e80a0e07f899e80a0e0 /* SimdTypes.h */,
- FFFD9e80a1487f899e80a148 /* StackAllocator.h */,
- FFFD9e80a1b07f899e80a1b0 /* SwCloth.h */,
- FFFD9e80a2187f899e80a218 /* SwClothData.h */,
- FFFD9e80a2807f899e80a280 /* SwCollision.h */,
- FFFD9e80a2e87f899e80a2e8 /* SwCollisionHelpers.h */,
- FFFD9e80a3507f899e80a350 /* SwFabric.h */,
- FFFD9e80a3b87f899e80a3b8 /* SwFactory.h */,
- FFFD9e80a4207f899e80a420 /* SwInterCollision.h */,
- FFFD9e80a4887f899e80a488 /* SwSelfCollision.h */,
- FFFD9e80a4f07f899e80a4f0 /* SwSolver.h */,
- FFFD9e80a5587f899e80a558 /* SwSolverKernel.h */,
- FFFD9e80a5c07f899e80a5c0 /* TripletScheduler.h */,
- FFFD9e80a6287f899e80a628 /* Vec4T.h */,
- FFFD9e80a6907f899e80a690 /* Allocator.cpp */,
- FFFD9e80a6f87f899e80a6f8 /* Factory.cpp */,
- FFFD9e80a7607f899e80a760 /* PhaseConfig.cpp */,
- FFFD9e80a7c87f899e80a7c8 /* SwCloth.cpp */,
- FFFD9e80a8307f899e80a830 /* SwClothData.cpp */,
- FFFD9e80a8987f899e80a898 /* SwCollision.cpp */,
- FFFD9e80a9007f899e80a900 /* SwFabric.cpp */,
- FFFD9e80a9687f899e80a968 /* SwFactory.cpp */,
- FFFD9e80a9d07f899e80a9d0 /* SwInterCollision.cpp */,
- FFFD9e80aa387f899e80aa38 /* SwSelfCollision.cpp */,
- FFFD9e80aaa07f899e80aaa0 /* SwSolver.cpp */,
- FFFD9e80ab087f899e80ab08 /* SwSolverKernel.cpp */,
- FFFD9e80ab707f899e80ab70 /* TripletScheduler.cpp */,
+ FFFD44834c007fba44834c00 /* Allocator.h */,
+ FFFD44834c687fba44834c68 /* Array.h */,
+ FFFD44834cd07fba44834cd0 /* BoundingBox.h */,
+ FFFD44834d387fba44834d38 /* ClothBase.h */,
+ FFFD44834da07fba44834da0 /* ClothImpl.h */,
+ FFFD44834e087fba44834e08 /* IndexPair.h */,
+ FFFD44834e707fba44834e70 /* IterationState.h */,
+ FFFD44834ed87fba44834ed8 /* MovingAverage.h */,
+ FFFD44834f407fba44834f40 /* PointInterpolator.h */,
+ FFFD44834fa87fba44834fa8 /* Simd.h */,
+ FFFD448350107fba44835010 /* Simd4f.h */,
+ FFFD448350787fba44835078 /* Simd4i.h */,
+ FFFD448350e07fba448350e0 /* SimdTypes.h */,
+ FFFD448351487fba44835148 /* StackAllocator.h */,
+ FFFD448351b07fba448351b0 /* SwCloth.h */,
+ FFFD448352187fba44835218 /* SwClothData.h */,
+ FFFD448352807fba44835280 /* SwCollision.h */,
+ FFFD448352e87fba448352e8 /* SwCollisionHelpers.h */,
+ FFFD448353507fba44835350 /* SwFabric.h */,
+ FFFD448353b87fba448353b8 /* SwFactory.h */,
+ FFFD448354207fba44835420 /* SwInterCollision.h */,
+ FFFD448354887fba44835488 /* SwSelfCollision.h */,
+ FFFD448354f07fba448354f0 /* SwSolver.h */,
+ FFFD448355587fba44835558 /* SwSolverKernel.h */,
+ FFFD448355c07fba448355c0 /* TripletScheduler.h */,
+ FFFD448356287fba44835628 /* Vec4T.h */,
+ FFFD448356907fba44835690 /* Allocator.cpp */,
+ FFFD448356f87fba448356f8 /* Factory.cpp */,
+ FFFD448357607fba44835760 /* PhaseConfig.cpp */,
+ FFFD448357c87fba448357c8 /* SwCloth.cpp */,
+ FFFD448358307fba44835830 /* SwClothData.cpp */,
+ FFFD448358987fba44835898 /* SwCollision.cpp */,
+ FFFD448359007fba44835900 /* SwFabric.cpp */,
+ FFFD448359687fba44835968 /* SwFactory.cpp */,
+ FFFD448359d07fba448359d0 /* SwInterCollision.cpp */,
+ FFFD44835a387fba44835a38 /* SwSelfCollision.cpp */,
+ FFFD44835aa07fba44835aa0 /* SwSolver.cpp */,
+ FFFD44835b087fba44835b08 /* SwSolverKernel.cpp */,
+ FFFD44835b707fba44835b70 /* TripletScheduler.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
- FFFB9cc72e107f899cc72e10 /* LowLevelParticles */ = {
+ FFFB437f9a307fba437f9a30 /* LowLevelParticles */ = {
isa = PBXGroup;
children = (
- FFFB9cc74d007f899cc74d00 /* include */,
- FFFB9cc74d287f899cc74d28 /* src */,
+ FFFB440066907fba44006690 /* include */,
+ FFFB440066b87fba440066b8 /* src */,
);
name = "LowLevelParticles";
sourceTree = "<group>";
};
- FFFB9cc74d007f899cc74d00 /* include */ = {
+ FFFB440066907fba44006690 /* include */ = {
isa = PBXGroup;
children = (
- FFFD9d01ca007f899d01ca00 /* PtBodyTransformVault.h */,
- FFFD9d01ca687f899d01ca68 /* PtContext.h */,
- FFFD9d01cad07f899d01cad0 /* PtGridCellVector.h */,
- FFFD9d01cb387f899d01cb38 /* PtParticle.h */,
- FFFD9d01cba07f899d01cba0 /* PtParticleContactManagerStream.h */,
- FFFD9d01cc087f899d01cc08 /* PtParticleData.h */,
- FFFD9d01cc707f899d01cc70 /* PtParticleShape.h */,
- FFFD9d01ccd87f899d01ccd8 /* PtParticleSystemCore.h */,
- FFFD9d01cd407f899d01cd40 /* PtParticleSystemFlags.h */,
- FFFD9d01cda87f899d01cda8 /* PtParticleSystemSim.h */,
+ FFFD4382a2007fba4382a200 /* PtBodyTransformVault.h */,
+ FFFD4382a2687fba4382a268 /* PtContext.h */,
+ FFFD4382a2d07fba4382a2d0 /* PtGridCellVector.h */,
+ FFFD4382a3387fba4382a338 /* PtParticle.h */,
+ FFFD4382a3a07fba4382a3a0 /* PtParticleContactManagerStream.h */,
+ FFFD4382a4087fba4382a408 /* PtParticleData.h */,
+ FFFD4382a4707fba4382a470 /* PtParticleShape.h */,
+ FFFD4382a4d87fba4382a4d8 /* PtParticleSystemCore.h */,
+ FFFD4382a5407fba4382a540 /* PtParticleSystemFlags.h */,
+ FFFD4382a5a87fba4382a5a8 /* PtParticleSystemSim.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
- FFFB9cc74d287f899cc74d28 /* src */ = {
+ FFFB440066b87fba440066b8 /* src */ = {
isa = PBXGroup;
children = (
- FFFD9d0328007f899d032800 /* PtBatcher.h */,
- FFFD9d0328687f899d032868 /* PtCollision.h */,
- FFFD9d0328d07f899d0328d0 /* PtCollisionData.h */,
- FFFD9d0329387f899d032938 /* PtCollisionHelper.h */,
- FFFD9d0329a07f899d0329a0 /* PtCollisionMethods.h */,
- FFFD9d032a087f899d032a08 /* PtCollisionParameters.h */,
- FFFD9d032a707f899d032a70 /* PtConfig.h */,
- FFFD9d032ad87f899d032ad8 /* PtConstants.h */,
- FFFD9d032b407f899d032b40 /* PtContextCpu.h */,
- FFFD9d032ba87f899d032ba8 /* PtDynamicHelper.h */,
- FFFD9d032c107f899d032c10 /* PtDynamics.h */,
- FFFD9d032c787f899d032c78 /* PtDynamicsKernels.h */,
- FFFD9d032ce07f899d032ce0 /* PtDynamicsParameters.h */,
- FFFD9d032d487f899d032d48 /* PtDynamicsTempBuffers.h */,
- FFFD9d032db07f899d032db0 /* PtHeightFieldAabbTest.h */,
- FFFD9d032e187f899d032e18 /* PtPacketSections.h */,
- FFFD9d032e807f899d032e80 /* PtParticleCell.h */,
- FFFD9d032ee87f899d032ee8 /* PtParticleOpcodeCache.h */,
- FFFD9d032f507f899d032f50 /* PtParticleShapeCpu.h */,
- FFFD9d032fb87f899d032fb8 /* PtParticleSystemSimCpu.h */,
- FFFD9d0330207f899d033020 /* PtSpatialHash.h */,
- FFFD9d0330887f899d033088 /* PtSpatialHashHelper.h */,
- FFFD9d0330f07f899d0330f0 /* PtTwoWayData.h */,
- FFFD9d0331587f899d033158 /* PtBatcher.cpp */,
- FFFD9d0331c07f899d0331c0 /* PtBodyTransformVault.cpp */,
- FFFD9d0332287f899d033228 /* PtCollision.cpp */,
- FFFD9d0332907f899d033290 /* PtCollisionBox.cpp */,
- FFFD9d0332f87f899d0332f8 /* PtCollisionCapsule.cpp */,
- FFFD9d0333607f899d033360 /* PtCollisionConvex.cpp */,
- FFFD9d0333c87f899d0333c8 /* PtCollisionMesh.cpp */,
- FFFD9d0334307f899d033430 /* PtCollisionPlane.cpp */,
- FFFD9d0334987f899d033498 /* PtCollisionSphere.cpp */,
- FFFD9d0335007f899d033500 /* PtContextCpu.cpp */,
- FFFD9d0335687f899d033568 /* PtDynamics.cpp */,
- FFFD9d0335d07f899d0335d0 /* PtParticleData.cpp */,
- FFFD9d0336387f899d033638 /* PtParticleShapeCpu.cpp */,
- FFFD9d0336a07f899d0336a0 /* PtParticleSystemSimCpu.cpp */,
- FFFD9d0337087f899d033708 /* PtSpatialHash.cpp */,
- FFFD9d0337707f899d033770 /* PtSpatialLocalHash.cpp */,
+ FFFD438202007fba43820200 /* PtBatcher.h */,
+ FFFD438202687fba43820268 /* PtCollision.h */,
+ FFFD438202d07fba438202d0 /* PtCollisionData.h */,
+ FFFD438203387fba43820338 /* PtCollisionHelper.h */,
+ FFFD438203a07fba438203a0 /* PtCollisionMethods.h */,
+ FFFD438204087fba43820408 /* PtCollisionParameters.h */,
+ FFFD438204707fba43820470 /* PtConfig.h */,
+ FFFD438204d87fba438204d8 /* PtConstants.h */,
+ FFFD438205407fba43820540 /* PtContextCpu.h */,
+ FFFD438205a87fba438205a8 /* PtDynamicHelper.h */,
+ FFFD438206107fba43820610 /* PtDynamics.h */,
+ FFFD438206787fba43820678 /* PtDynamicsKernels.h */,
+ FFFD438206e07fba438206e0 /* PtDynamicsParameters.h */,
+ FFFD438207487fba43820748 /* PtDynamicsTempBuffers.h */,
+ FFFD438207b07fba438207b0 /* PtHeightFieldAabbTest.h */,
+ FFFD438208187fba43820818 /* PtPacketSections.h */,
+ FFFD438208807fba43820880 /* PtParticleCell.h */,
+ FFFD438208e87fba438208e8 /* PtParticleOpcodeCache.h */,
+ FFFD438209507fba43820950 /* PtParticleShapeCpu.h */,
+ FFFD438209b87fba438209b8 /* PtParticleSystemSimCpu.h */,
+ FFFD43820a207fba43820a20 /* PtSpatialHash.h */,
+ FFFD43820a887fba43820a88 /* PtSpatialHashHelper.h */,
+ FFFD43820af07fba43820af0 /* PtTwoWayData.h */,
+ FFFD43820b587fba43820b58 /* PtBatcher.cpp */,
+ FFFD43820bc07fba43820bc0 /* PtBodyTransformVault.cpp */,
+ FFFD43820c287fba43820c28 /* PtCollision.cpp */,
+ FFFD43820c907fba43820c90 /* PtCollisionBox.cpp */,
+ FFFD43820cf87fba43820cf8 /* PtCollisionCapsule.cpp */,
+ FFFD43820d607fba43820d60 /* PtCollisionConvex.cpp */,
+ FFFD43820dc87fba43820dc8 /* PtCollisionMesh.cpp */,
+ FFFD43820e307fba43820e30 /* PtCollisionPlane.cpp */,
+ FFFD43820e987fba43820e98 /* PtCollisionSphere.cpp */,
+ FFFD43820f007fba43820f00 /* PtContextCpu.cpp */,
+ FFFD43820f687fba43820f68 /* PtDynamics.cpp */,
+ FFFD43820fd07fba43820fd0 /* PtParticleData.cpp */,
+ FFFD438210387fba43821038 /* PtParticleShapeCpu.cpp */,
+ FFFD438210a07fba438210a0 /* PtParticleSystemSimCpu.cpp */,
+ FFFD438211087fba43821108 /* PtSpatialHash.cpp */,
+ FFFD438211707fba43821170 /* PtSpatialLocalHash.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
- FFFB9ccda3007f899ccda300 /* PxTask */ = {
+ FFFB434ead707fba434ead70 /* PxTask */ = {
isa = PBXGroup;
children = (
- FFFB9ccbaaa07f899ccbaaa0 /* include */,
- FFFB9ccbaac87f899ccbaac8 /* src */,
+ FFFB434cac607fba434cac60 /* include */,
+ FFFB434cac887fba434cac88 /* src */,
);
name = "PxTask";
sourceTree = "<group>";
};
- FFFB9ccbaaa07f899ccbaaa0 /* include */ = {
+ FFFB434cac607fba434cac60 /* include */ = {
isa = PBXGroup;
children = (
- FFFD9ccbac607f899ccbac60 /* PxCpuDispatcher.h */,
- FFFD9ccbacc87f899ccbacc8 /* PxGpuDispatcher.h */,
- FFFD9ccbad307f899ccbad30 /* PxGpuTask.h */,
- FFFD9ccbad987f899ccbad98 /* PxTask.h */,
- FFFD9ccbae007f899ccbae00 /* PxTaskDefine.h */,
- FFFD9ccbae687f899ccbae68 /* PxTaskManager.h */,
+ FFFD434cb3f07fba434cb3f0 /* PxCpuDispatcher.h */,
+ FFFD434cb4587fba434cb458 /* PxGpuDispatcher.h */,
+ FFFD434cb4c07fba434cb4c0 /* PxGpuTask.h */,
+ FFFD434cb5287fba434cb528 /* PxTask.h */,
+ FFFD434cb5907fba434cb590 /* PxTaskDefine.h */,
+ FFFD434cb5f87fba434cb5f8 /* PxTaskManager.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
- FFFB9ccbaac87f899ccbaac8 /* src */ = {
+ FFFB434cac887fba434cac88 /* src */ = {
isa = PBXGroup;
children = (
- FFFD9ccbaff07f899ccbaff0 /* src/TaskManager.cpp */,
+ FFFD434cb6607fba434cb660 /* src/TaskManager.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
};
- FFFB9e12da307f899e12da30 /* PsFastXml */ = {
+ FFFB441a12707fba441a1270 /* PsFastXml */ = {
isa = PBXGroup;
children = (
- FFFB9e204cc07f899e204cc0 /* include */,
- FFFB9e204ce87f899e204ce8 /* src */,
+ FFFB4417f1d07fba4417f1d0 /* include */,
+ FFFB4417f1f87fba4417f1f8 /* src */,
);
name = "PsFastXml";
sourceTree = "<group>";
};
- FFFB9e204cc07f899e204cc0 /* include */ = {
+ FFFB4417f1d07fba4417f1d0 /* include */ = {
isa = PBXGroup;
children = (
- FFFD9e2086c07f899e2086c0 /* PsFastXml.h */,
+ FFFD4417f3607fba4417f360 /* PsFastXml.h */,
);
name = "include";
sourceTree = SOURCE_ROOT;
};
- FFFB9e204ce87f899e204ce8 /* src */ = {
+ FFFB4417f1f87fba4417f1f8 /* src */ = {
isa = PBXGroup;
children = (
- FFFD9e205c507f899e205c50 /* PsFastXml.cpp */,
+ FFFD4417f4607fba4417f460 /* PsFastXml.cpp */,
);
name = "src";
sourceTree = SOURCE_ROOT;
@@ -5011,61 +5011,61 @@
/* End PBXGroup section */
/* Begin PBXNativeTarget section */
- FFFA9e12f7c07f899e12f7c0 /* PhysX */ = {
+ FFFA441a7e907fba441a7e90 /* PhysX */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF69e12f7c07f899e12f7c0 /* Build configuration list for PBXNativeTarget "PhysX" */;
+ buildConfigurationList = FFF6441a7e907fba441a7e90 /* Build configuration list for PBXNativeTarget "PhysX" */;
buildPhases = (
- FFF29e12f7c07f899e12f7c0,
- FFF89e12f7c07f899e12f7c0,
- FFFC9e12f7c07f899e12f7c0,
+ FFF2441a7e907fba441a7e90,
+ FFF8441a7e907fba441a7e90,
+ FFFC441a7e907fba441a7e90,
);
buildRules = (
);
dependencies = (
- FFF49e14ce807f899e14ce80, /* LowLevel */
- FFF49e14be807f899e14be80, /* LowLevelAABB */
- FFF49e14eb807f899e14eb80, /* LowLevelCloth */
- FFF49e14df807f899e14df80, /* LowLevelDynamics */
- FFF49e14e7807f899e14e780, /* LowLevelParticles */
- FFF49e14cc807f899e14cc80, /* PhysXCommon */
- FFF49e1f13d07f899e1f13d0, /* PxFoundation */
- FFF49e1f06f07f899e1f06f0, /* PxPvdSDK */
- FFF49e14fd107f899e14fd10, /* PxTask */
- FFF49e14e3807f899e14e380, /* SceneQuery */
- FFF49e14fb107f899e14fb10, /* SimulationController */
+ FFF4441a3e407fba441a3e40, /* LowLevel */
+ FFF4441b57007fba441b5700, /* LowLevelAABB */
+ FFF4441a41e07fba441a41e0, /* LowLevelCloth */
+ FFF4441b57607fba441b5760, /* LowLevelDynamics */
+ FFF4441a42407fba441a4240, /* LowLevelParticles */
+ FFF4441a40d07fba441a40d0, /* PhysXCommon */
+ FFF4441a81807fba441a8180, /* PxFoundation */
+ FFF4441a7e307fba441a7e30, /* PxPvdSDK */
+ FFF4441b57f07fba441b57f0, /* PxTask */
+ FFF4441a9ae07fba441a9ae0, /* SceneQuery */
+ FFF4441a9b407fba441a9b40, /* SimulationController */
);
name = "PhysX";
productName = "PhysX";
- productReference = FFFD9e12f7c07f899e12f7c0 /* PhysX */;
+ productReference = FFFD441a7e907fba441a7e90 /* PhysX */;
productType = "com.apple.product-type.library.static";
};
- FFFA9e1334507f899e133450 /* PhysXCharacterKinematic */ = {
+ FFFA441b54a07fba441b54a0 /* PhysXCharacterKinematic */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF69e1334507f899e133450 /* Build configuration list for PBXNativeTarget "PhysXCharacterKinematic" */;
+ buildConfigurationList = FFF6441b54a07fba441b54a0 /* Build configuration list for PBXNativeTarget "PhysXCharacterKinematic" */;
buildPhases = (
- FFF29e1334507f899e133450,
- FFF89e1334507f899e133450,
- FFFC9e1334507f899e133450,
+ FFF2441b54a07fba441b54a0,
+ FFF8441b54a07fba441b54a0,
+ FFFC441b54a07fba441b54a0,
);
buildRules = (
);
dependencies = (
- FFF49e157d407f899e157d40, /* PhysXCommon */
- FFF49e153ff07f899e153ff0, /* PhysXExtensions */
- FFF49e15b5a07f899e15b5a0, /* PxFoundation */
+ FFF4441b50207fba441b5020, /* PhysXCommon */
+ FFF44419ccd07fba4419ccd0, /* PhysXExtensions */
+ FFF44419ceb07fba4419ceb0, /* PxFoundation */
);
name = "PhysXCharacterKinematic";
productName = "PhysXCharacterKinematic";
- productReference = FFFD9e1334507f899e133450 /* PhysXCharacterKinematic */;
+ productReference = FFFD441b54a07fba441b54a0 /* PhysXCharacterKinematic */;
productType = "com.apple.product-type.library.static";
};
- FFFA9e1280207f899e128020 /* PhysXVehicle */ = {
+ FFFA441a23807fba441a2380 /* PhysXVehicle */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF69e1280207f899e128020 /* Build configuration list for PBXNativeTarget "PhysXVehicle" */;
+ buildConfigurationList = FFF6441a23807fba441a2380 /* Build configuration list for PBXNativeTarget "PhysXVehicle" */;
buildPhases = (
- FFF29e1280207f899e128020,
- FFF89e1280207f899e128020,
- FFFC9e1280207f899e128020,
+ FFF2441a23807fba441a2380,
+ FFF8441a23807fba441a2380,
+ FFFC441a23807fba441a2380,
);
buildRules = (
);
@@ -5073,34 +5073,34 @@
);
name = "PhysXVehicle";
productName = "PhysXVehicle";
- productReference = FFFD9e1280207f899e128020 /* PhysXVehicle */;
+ productReference = FFFD441a23807fba441a2380 /* PhysXVehicle */;
productType = "com.apple.product-type.library.static";
};
- FFFA9e138e707f899e138e70 /* PhysXExtensions */ = {
+ FFFA441c17507fba441c1750 /* PhysXExtensions */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF69e138e707f899e138e70 /* Build configuration list for PBXNativeTarget "PhysXExtensions" */;
+ buildConfigurationList = FFF6441c17507fba441c1750 /* Build configuration list for PBXNativeTarget "PhysXExtensions" */;
buildPhases = (
- FFF29e138e707f899e138e70,
- FFF89e138e707f899e138e70,
- FFFC9e138e707f899e138e70,
+ FFF2441c17507fba441c1750,
+ FFF8441c17507fba441c1750,
+ FFFC441c17507fba441c1750,
);
buildRules = (
);
dependencies = (
- FFF49e13f4b07f899e13f4b0, /* PsFastXml */
+ FFF4441c0e507fba441c0e50, /* PsFastXml */
);
name = "PhysXExtensions";
productName = "PhysXExtensions";
- productReference = FFFD9e138e707f899e138e70 /* PhysXExtensions */;
+ productReference = FFFD441c17507fba441c1750 /* PhysXExtensions */;
productType = "com.apple.product-type.library.static";
};
- FFFA9e4ea8a07f899e4ea8a0 /* SceneQuery */ = {
+ FFFA441d40a07fba441d40a0 /* SceneQuery */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF69e4ea8a07f899e4ea8a0 /* Build configuration list for PBXNativeTarget "SceneQuery" */;
+ buildConfigurationList = FFF6441d40a07fba441d40a0 /* Build configuration list for PBXNativeTarget "SceneQuery" */;
buildPhases = (
- FFF29e4ea8a07f899e4ea8a0,
- FFF89e4ea8a07f899e4ea8a0,
- FFFC9e4ea8a07f899e4ea8a0,
+ FFF2441d40a07fba441d40a0,
+ FFF8441d40a07fba441d40a0,
+ FFFC441d40a07fba441d40a0,
);
buildRules = (
);
@@ -5108,16 +5108,16 @@
);
name = "SceneQuery";
productName = "SceneQuery";
- productReference = FFFD9e4ea8a07f899e4ea8a0 /* SceneQuery */;
+ productReference = FFFD441d40a07fba441d40a0 /* SceneQuery */;
productType = "com.apple.product-type.library.static";
};
- FFFA9e518ab07f899e518ab0 /* SimulationController */ = {
+ FFFA441d86207fba441d8620 /* SimulationController */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF69e518ab07f899e518ab0 /* Build configuration list for PBXNativeTarget "SimulationController" */;
+ buildConfigurationList = FFF6441d86207fba441d8620 /* Build configuration list for PBXNativeTarget "SimulationController" */;
buildPhases = (
- FFF29e518ab07f899e518ab0,
- FFF89e518ab07f899e518ab0,
- FFFC9e518ab07f899e518ab0,
+ FFF2441d86207fba441d8620,
+ FFF8441d86207fba441d8620,
+ FFFC441d86207fba441d8620,
);
buildRules = (
);
@@ -5125,54 +5125,54 @@
);
name = "SimulationController";
productName = "SimulationController";
- productReference = FFFD9e518ab07f899e518ab0 /* SimulationController */;
+ productReference = FFFD441d86207fba441d8620 /* SimulationController */;
productType = "com.apple.product-type.library.static";
};
- FFFA9e5094807f899e509480 /* PhysXCooking */ = {
+ FFFA441dd8c07fba441dd8c0 /* PhysXCooking */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF69e5094807f899e509480 /* Build configuration list for PBXNativeTarget "PhysXCooking" */;
+ buildConfigurationList = FFF6441dd8c07fba441dd8c0 /* Build configuration list for PBXNativeTarget "PhysXCooking" */;
buildPhases = (
- FFF29e5094807f899e509480,
- FFF89e5094807f899e509480,
- FFFC9e5094807f899e509480,
+ FFF2441dd8c07fba441dd8c0,
+ FFF8441dd8c07fba441dd8c0,
+ FFFC441dd8c07fba441dd8c0,
);
buildRules = (
);
dependencies = (
- FFF49e51dcd07f899e51dcd0, /* PhysXCommon */
- FFF49e5255007f899e525500, /* PhysXExtensions */
- FFF49e51ea607f899e51ea60, /* PxFoundation */
+ FFF4441e71107fba441e7110, /* PhysXCommon */
+ FFF4441e70307fba441e7030, /* PhysXExtensions */
+ FFF4441e28407fba441e2840, /* PxFoundation */
);
name = "PhysXCooking";
productName = "PhysXCooking";
- productReference = FFFD9e5094807f899e509480 /* PhysXCooking */;
+ productReference = FFFD441dd8c07fba441dd8c0 /* PhysXCooking */;
productType = "com.apple.product-type.library.static";
};
- FFFA9c88a7507f899c88a750 /* PhysXCommon */ = {
+ FFFA431a02b07fba431a02b0 /* PhysXCommon */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF69c88a7507f899c88a750 /* Build configuration list for PBXNativeTarget "PhysXCommon" */;
+ buildConfigurationList = FFF6431a02b07fba431a02b0 /* Build configuration list for PBXNativeTarget "PhysXCommon" */;
buildPhases = (
- FFF29c88a7507f899c88a750,
- FFF89c88a7507f899c88a750,
- FFFC9c88a7507f899c88a750,
+ FFF2431a02b07fba431a02b0,
+ FFF8431a02b07fba431a02b0,
+ FFFC431a02b07fba431a02b0,
);
buildRules = (
);
dependencies = (
- FFF49c8907507f899c890750, /* PxFoundation */
+ FFF4433f5d107fba433f5d10, /* PxFoundation */
);
name = "PhysXCommon";
productName = "PhysXCommon";
- productReference = FFFD9c88a7507f899c88a750 /* PhysXCommon */;
+ productReference = FFFD431a02b07fba431a02b0 /* PhysXCommon */;
productType = "com.apple.product-type.library.static";
};
- FFFA9c8a0f907f899c8a0f90 /* PxFoundation */ = {
+ FFFA4318c2b07fba4318c2b0 /* PxFoundation */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF69c8a0f907f899c8a0f90 /* Build configuration list for PBXNativeTarget "PxFoundation" */;
+ buildConfigurationList = FFF64318c2b07fba4318c2b0 /* Build configuration list for PBXNativeTarget "PxFoundation" */;
buildPhases = (
- FFF29c8a0f907f899c8a0f90,
- FFF89c8a0f907f899c8a0f90,
- FFFC9c8a0f907f899c8a0f90,
+ FFF24318c2b07fba4318c2b0,
+ FFF84318c2b07fba4318c2b0,
+ FFFC4318c2b07fba4318c2b0,
);
buildRules = (
);
@@ -5180,34 +5180,34 @@
);
name = "PxFoundation";
productName = "PxFoundation";
- productReference = FFFD9c8a0f907f899c8a0f90 /* PxFoundation */;
+ productReference = FFFD4318c2b07fba4318c2b0 /* PxFoundation */;
productType = "com.apple.product-type.library.static";
};
- FFFA9cc339d07f899cc339d0 /* PxPvdSDK */ = {
+ FFFA44109f207fba44109f20 /* PxPvdSDK */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF69cc339d07f899cc339d0 /* Build configuration list for PBXNativeTarget "PxPvdSDK" */;
+ buildConfigurationList = FFF644109f207fba44109f20 /* Build configuration list for PBXNativeTarget "PxPvdSDK" */;
buildPhases = (
- FFF29cc339d07f899cc339d0,
- FFF89cc339d07f899cc339d0,
- FFFC9cc339d07f899cc339d0,
+ FFF244109f207fba44109f20,
+ FFF844109f207fba44109f20,
+ FFFC44109f207fba44109f20,
);
buildRules = (
);
dependencies = (
- FFF49cc04b407f899cc04b40, /* PxFoundation */
+ FFF4441081907fba44108190, /* PxFoundation */
);
name = "PxPvdSDK";
productName = "PxPvdSDK";
- productReference = FFFD9cc339d07f899cc339d0 /* PxPvdSDK */;
+ productReference = FFFD44109f207fba44109f20 /* PxPvdSDK */;
productType = "com.apple.product-type.library.static";
};
- FFFA9cdf92b07f899cdf92b0 /* LowLevel */ = {
+ FFFA441270b07fba441270b0 /* LowLevel */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF69cdf92b07f899cdf92b0 /* Build configuration list for PBXNativeTarget "LowLevel" */;
+ buildConfigurationList = FFF6441270b07fba441270b0 /* Build configuration list for PBXNativeTarget "LowLevel" */;
buildPhases = (
- FFF29cdf92b07f899cdf92b0,
- FFF89cdf92b07f899cdf92b0,
- FFFC9cdf92b07f899cdf92b0,
+ FFF2441270b07fba441270b0,
+ FFF8441270b07fba441270b0,
+ FFFC441270b07fba441270b0,
);
buildRules = (
);
@@ -5215,16 +5215,16 @@
);
name = "LowLevel";
productName = "LowLevel";
- productReference = FFFD9cdf92b07f899cdf92b0 /* LowLevel */;
+ productReference = FFFD441270b07fba441270b0 /* LowLevel */;
productType = "com.apple.product-type.library.static";
};
- FFFA9cf0adc07f899cf0adc0 /* LowLevelAABB */ = {
+ FFFA44154f407fba44154f40 /* LowLevelAABB */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF69cf0adc07f899cf0adc0 /* Build configuration list for PBXNativeTarget "LowLevelAABB" */;
+ buildConfigurationList = FFF644154f407fba44154f40 /* Build configuration list for PBXNativeTarget "LowLevelAABB" */;
buildPhases = (
- FFF29cf0adc07f899cf0adc0,
- FFF89cf0adc07f899cf0adc0,
- FFFC9cf0adc07f899cf0adc0,
+ FFF244154f407fba44154f40,
+ FFF844154f407fba44154f40,
+ FFFC44154f407fba44154f40,
);
buildRules = (
);
@@ -5232,16 +5232,16 @@
);
name = "LowLevelAABB";
productName = "LowLevelAABB";
- productReference = FFFD9cf0adc07f899cf0adc0 /* LowLevelAABB */;
+ productReference = FFFD44154f407fba44154f40 /* LowLevelAABB */;
productType = "com.apple.product-type.library.static";
};
- FFFA9cc550007f899cc55000 /* LowLevelDynamics */ = {
+ FFFA441701307fba44170130 /* LowLevelDynamics */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF69cc550007f899cc55000 /* Build configuration list for PBXNativeTarget "LowLevelDynamics" */;
+ buildConfigurationList = FFF6441701307fba44170130 /* Build configuration list for PBXNativeTarget "LowLevelDynamics" */;
buildPhases = (
- FFF29cc550007f899cc55000,
- FFF89cc550007f899cc55000,
- FFFC9cc550007f899cc55000,
+ FFF2441701307fba44170130,
+ FFF8441701307fba44170130,
+ FFFC441701307fba44170130,
);
buildRules = (
);
@@ -5249,16 +5249,16 @@
);
name = "LowLevelDynamics";
productName = "LowLevelDynamics";
- productReference = FFFD9cc550007f899cc55000 /* LowLevelDynamics */;
+ productReference = FFFD441701307fba44170130 /* LowLevelDynamics */;
productType = "com.apple.product-type.library.static";
};
- FFFA9e008d507f899e008d50 /* LowLevelCloth */ = {
+ FFFA441915407fba44191540 /* LowLevelCloth */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF69e008d507f899e008d50 /* Build configuration list for PBXNativeTarget "LowLevelCloth" */;
+ buildConfigurationList = FFF6441915407fba44191540 /* Build configuration list for PBXNativeTarget "LowLevelCloth" */;
buildPhases = (
- FFF29e008d507f899e008d50,
- FFF89e008d507f899e008d50,
- FFFC9e008d507f899e008d50,
+ FFF2441915407fba44191540,
+ FFF8441915407fba44191540,
+ FFFC441915407fba44191540,
);
buildRules = (
);
@@ -5266,16 +5266,16 @@
);
name = "LowLevelCloth";
productName = "LowLevelCloth";
- productReference = FFFD9e008d507f899e008d50 /* LowLevelCloth */;
+ productReference = FFFD441915407fba44191540 /* LowLevelCloth */;
productType = "com.apple.product-type.library.static";
};
- FFFA9cc72e107f899cc72e10 /* LowLevelParticles */ = {
+ FFFA437f9a307fba437f9a30 /* LowLevelParticles */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF69cc72e107f899cc72e10 /* Build configuration list for PBXNativeTarget "LowLevelParticles" */;
+ buildConfigurationList = FFF6437f9a307fba437f9a30 /* Build configuration list for PBXNativeTarget "LowLevelParticles" */;
buildPhases = (
- FFF29cc72e107f899cc72e10,
- FFF89cc72e107f899cc72e10,
- FFFC9cc72e107f899cc72e10,
+ FFF2437f9a307fba437f9a30,
+ FFF8437f9a307fba437f9a30,
+ FFFC437f9a307fba437f9a30,
);
buildRules = (
);
@@ -5283,16 +5283,16 @@
);
name = "LowLevelParticles";
productName = "LowLevelParticles";
- productReference = FFFD9cc72e107f899cc72e10 /* LowLevelParticles */;
+ productReference = FFFD437f9a307fba437f9a30 /* LowLevelParticles */;
productType = "com.apple.product-type.library.static";
};
- FFFA9ccda3007f899ccda300 /* PxTask */ = {
+ FFFA434ead707fba434ead70 /* PxTask */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF69ccda3007f899ccda300 /* Build configuration list for PBXNativeTarget "PxTask" */;
+ buildConfigurationList = FFF6434ead707fba434ead70 /* Build configuration list for PBXNativeTarget "PxTask" */;
buildPhases = (
- FFF29ccda3007f899ccda300,
- FFF89ccda3007f899ccda300,
- FFFC9ccda3007f899ccda300,
+ FFF2434ead707fba434ead70,
+ FFF8434ead707fba434ead70,
+ FFFC434ead707fba434ead70,
);
buildRules = (
);
@@ -5300,16 +5300,16 @@
);
name = "PxTask";
productName = "PxTask";
- productReference = FFFD9ccda3007f899ccda300 /* PxTask */;
+ productReference = FFFD434ead707fba434ead70 /* PxTask */;
productType = "com.apple.product-type.library.static";
};
- FFFA9e12da307f899e12da30 /* PsFastXml */ = {
+ FFFA441a12707fba441a1270 /* PsFastXml */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FFF69e12da307f899e12da30 /* Build configuration list for PBXNativeTarget "PsFastXml" */;
+ buildConfigurationList = FFF6441a12707fba441a1270 /* Build configuration list for PBXNativeTarget "PsFastXml" */;
buildPhases = (
- FFF29e12da307f899e12da30,
- FFF89e12da307f899e12da30,
- FFFC9e12da307f899e12da30,
+ FFF2441a12707fba441a1270,
+ FFF8441a12707fba441a1270,
+ FFFC441a12707fba441a1270,
);
buildRules = (
);
@@ -5317,213 +5317,213 @@
);
name = "PsFastXml";
productName = "PsFastXml";
- productReference = FFFD9e12da307f899e12da30 /* PsFastXml */;
+ productReference = FFFD441a12707fba441a1270 /* PsFastXml */;
productType = "com.apple.product-type.library.static";
};
/* End PBXNativeTarget section */
/* Begin XCConfigurationList section */
- FFF69e12f7c07f899e12f7c0 = {
+ FFF6441a7e907fba441a7e90 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF79c228a007f899c228a00,
- FFF79c2290f07f899c2290f0,
- FFF79c2297e07f899c2297e0,
- FFF79c229ed07f899c229ed0,
+ FFF744862a007fba44862a00,
+ FFF7448630f07fba448630f0,
+ FFF7448637e07fba448637e0,
+ FFF744863ed07fba44863ed0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "release";
};
- FFF69e1334507f899e133450 = {
+ FFF6441b54a07fba441b54a0 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF79c22a6007f899c22a600,
- FFF79c22acf07f899c22acf0,
- FFF79c22b3e07f899c22b3e0,
- FFF79c22bad07f899c22bad0,
+ FFF7448646007fba44864600,
+ FFF744864cf07fba44864cf0,
+ FFF7448653e07fba448653e0,
+ FFF744865ad07fba44865ad0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
- FFF69e1280207f899e128020 = {
+ FFF6441a23807fba441a2380 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF79c22c2007f899c22c200,
- FFF79c22c8f07f899c22c8f0,
- FFF79c22cfe07f899c22cfe0,
- FFF79c22d6d07f899c22d6d0,
+ FFF7448662007fba44866200,
+ FFF7448668f07fba448668f0,
+ FFF744866fe07fba44866fe0,
+ FFF7448676d07fba448676d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
- FFF69e138e707f899e138e70 = {
+ FFF6441c17507fba441c1750 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF79c22de007f899c22de00,
- FFF79c22e4f07f899c22e4f0,
- FFF79c22ebe07f899c22ebe0,
- FFF79c22f2d07f899c22f2d0,
+ FFF744867e007fba44867e00,
+ FFF7448684f07fba448684f0,
+ FFF744868be07fba44868be0,
+ FFF7448692d07fba448692d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
- FFF69e4ea8a07f899e4ea8a0 = {
+ FFF6441d40a07fba441d40a0 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF79c22fa007f899c22fa00,
- FFF79c2300f07f899c2300f0,
- FFF79c2307e07f899c2307e0,
- FFF79c230ed07f899c230ed0,
+ FFF744869a007fba44869a00,
+ FFF74486a0f07fba4486a0f0,
+ FFF74486a7e07fba4486a7e0,
+ FFF74486aed07fba4486aed0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
- FFF69e518ab07f899e518ab0 = {
+ FFF6441d86207fba441d8620 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF79c2316007f899c231600,
- FFF79c231cf07f899c231cf0,
- FFF79c2323e07f899c2323e0,
- FFF79c232ad07f899c232ad0,
+ FFF74486b6007fba4486b600,
+ FFF74486bcf07fba4486bcf0,
+ FFF74486c3e07fba4486c3e0,
+ FFF74486cad07fba4486cad0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
- FFF69e5094807f899e509480 = {
+ FFF6441dd8c07fba441dd8c0 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF79c2332007f899c233200,
- FFF79c2338f07f899c2338f0,
- FFF79c233fe07f899c233fe0,
- FFF79c2346d07f899c2346d0,
+ FFF74486d2007fba4486d200,
+ FFF74486d8f07fba4486d8f0,
+ FFF74486dfe07fba4486dfe0,
+ FFF74486e6d07fba4486e6d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "release";
};
- FFF69c88a7507f899c88a750 = {
+ FFF6431a02b07fba431a02b0 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF79d0110007f899d011000,
- FFF79d0116f07f899d0116f0,
- FFF79d011de07f899d011de0,
- FFF79d0124d07f899d0124d0,
+ FFF7420144007fba42014400,
+ FFF742014af07fba42014af0,
+ FFF7420151e07fba420151e0,
+ FFF7420158d07fba420158d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "release";
};
- FFF69c8a0f907f899c8a0f90 = {
+ FFF64318c2b07fba4318c2b0 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF79c1a4a007f899c1a4a00,
- FFF79c1a50f07f899c1a50f0,
- FFF79c1a57e07f899c1a57e0,
- FFF79c1a5ed07f899c1a5ed0,
+ FFF7429a2c007fba429a2c00,
+ FFF7429a32f07fba429a32f0,
+ FFF7429a39e07fba429a39e0,
+ FFF7429a40d07fba429a40d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
- FFF69cc339d07f899cc339d0 = {
+ FFF644109f207fba44109f20 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF79d01d8007f899d01d800,
- FFF79d01def07f899d01def0,
- FFF79d01e5e07f899d01e5e0,
- FFF79d01ecd07f899d01ecd0,
+ FFF74480d0007fba4480d000,
+ FFF74480d6f07fba4480d6f0,
+ FFF74480dde07fba4480dde0,
+ FFF74480e4d07fba4480e4d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
- FFF69cdf92b07f899cdf92b0 = {
+ FFF6441270b07fba441270b0 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF79c1d2e007f899c1d2e00,
- FFF79c1d34f07f899c1d34f0,
- FFF79c1d3be07f899c1d3be0,
- FFF79c1d42d07f899c1d42d0,
+ FFF74481aa007fba4481aa00,
+ FFF74481b0f07fba4481b0f0,
+ FFF74481b7e07fba4481b7e0,
+ FFF74481bed07fba4481bed0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
- FFF69cf0adc07f899cf0adc0 = {
+ FFF644154f407fba44154f40 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF79d80a4007f899d80a400,
- FFF79d80aaf07f899d80aaf0,
- FFF79d80b1e07f899d80b1e0,
- FFF79d80b8d07f899d80b8d0,
+ FFF7448234007fba44823400,
+ FFF744823af07fba44823af0,
+ FFF7448241e07fba448241e0,
+ FFF7448248d07fba448248d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
- FFF69cc550007f899cc55000 = {
+ FFF6441701307fba44170130 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF79d02ae007f899d02ae00,
- FFF79d02b4f07f899d02b4f0,
- FFF79d02bbe07f899d02bbe0,
- FFF79d02c2d07f899d02c2d0,
+ FFF74482cc007fba4482cc00,
+ FFF74482d2f07fba4482d2f0,
+ FFF74482d9e07fba4482d9e0,
+ FFF74482e0d07fba4482e0d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
- FFF69e008d507f899e008d50 = {
+ FFF6441915407fba44191540 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF79e80b6007f899e80b600,
- FFF79e80bcf07f899e80bcf0,
- FFF79e80c3e07f899e80c3e0,
- FFF79e80cad07f899e80cad0,
+ FFF7448366007fba44836600,
+ FFF744836cf07fba44836cf0,
+ FFF7448373e07fba448373e0,
+ FFF744837ad07fba44837ad0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
- FFF69cc72e107f899cc72e10 = {
+ FFF6437f9a307fba437f9a30 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF79d0342007f899d034200,
- FFF79d0348f07f899d0348f0,
- FFF79d034fe07f899d034fe0,
- FFF79d0356d07f899d0356d0,
+ FFF743821c007fba43821c00,
+ FFF7438222f07fba438222f0,
+ FFF7438229e07fba438229e0,
+ FFF7438230d07fba438230d0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
- FFF69ccda3007f899ccda300 = {
+ FFF6434ead707fba434ead70 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF79c1f82007f899c1f8200,
- FFF79c1f88f07f899c1f88f0,
- FFF79c1f8fe07f899c1f8fe0,
- FFF79c1f96d07f899c1f96d0,
+ FFF7429afa007fba429afa00,
+ FFF7429b00f07fba429b00f0,
+ FFF7429b07e07fba429b07e0,
+ FFF7429b0ed07fba429b0ed0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
- FFF69e12da307f899e12da30 = {
+ FFF6441a12707fba441a1270 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF79d0394007f899d039400,
- FFF79d039af07f899d039af0,
- FFF79d03a1e07f899d03a1e0,
- FFF79d03a8d07f899d03a8d0,
+ FFF74483c6007fba4483c600,
+ FFF74483ccf07fba4483ccf0,
+ FFF74483d3e07fba4483d3e0,
+ FFF74483dad07fba4483dad0,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "debug";
};
- FFF69bc7cc307f899bc7cc30 = {
+ FFF641d633e07fba41d633e0 = {
isa = XCConfigurationList;
buildConfigurations = (
- FFF39c228a007f899c228a00 /* release */,
- FFF39c2290f07f899c2290f0 /* debug */,
- FFF39c2297e07f899c2297e0 /* checked */,
- FFF39c229ed07f899c229ed0 /* profile */,
+ FFF344862a007fba44862a00 /* release */,
+ FFF3448630f07fba448630f0 /* debug */,
+ FFF3448637e07fba448637e0 /* checked */,
+ FFF344863ed07fba44863ed0 /* profile */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = "release";
};
/* End XCConfigurationList section */
/* Begin XCBuildConfiguration section */
- FFF79c228a007f899c228a00 /* release */ = {
+ FFF744862a007fba44862a00 /* 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;
@@ -5553,7 +5553,7 @@
};
name = "release";
};
- FFF79c2290f07f899c2290f0 /* debug */ = {
+ FFF7448630f07fba448630f0 /* 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;
@@ -5583,7 +5583,7 @@
};
name = "debug";
};
- FFF79c2297e07f899c2297e0 /* checked */ = {
+ FFF7448637e07fba448637e0 /* 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;
@@ -5613,7 +5613,7 @@
};
name = "checked";
};
- FFF79c229ed07f899c229ed0 /* profile */ = {
+ FFF744863ed07fba44863ed0 /* 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;
@@ -5643,7 +5643,7 @@
};
name = "profile";
};
- FFF79c22a6007f899c22a600 /* debug */ = {
+ FFF7448646007fba44864600 /* 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;
@@ -5673,7 +5673,7 @@
};
name = "debug";
};
- FFF79c22acf07f899c22acf0 /* checked */ = {
+ FFF744864cf07fba44864cf0 /* 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;
@@ -5703,7 +5703,7 @@
};
name = "checked";
};
- FFF79c22b3e07f899c22b3e0 /* profile */ = {
+ FFF7448653e07fba448653e0 /* 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;
@@ -5733,7 +5733,7 @@
};
name = "profile";
};
- FFF79c22bad07f899c22bad0 /* release */ = {
+ FFF744865ad07fba44865ad0 /* 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;
@@ -5763,7 +5763,7 @@
};
name = "release";
};
- FFF79c22c2007f899c22c200 /* debug */ = {
+ FFF7448662007fba44866200 /* 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;
@@ -5793,7 +5793,7 @@
};
name = "debug";
};
- FFF79c22c8f07f899c22c8f0 /* checked */ = {
+ FFF7448668f07fba448668f0 /* 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;
@@ -5823,7 +5823,7 @@
};
name = "checked";
};
- FFF79c22cfe07f899c22cfe0 /* profile */ = {
+ FFF744866fe07fba44866fe0 /* 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;
@@ -5853,7 +5853,7 @@
};
name = "profile";
};
- FFF79c22d6d07f899c22d6d0 /* release */ = {
+ FFF7448676d07fba448676d0 /* 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;
@@ -5883,7 +5883,7 @@
};
name = "release";
};
- FFF79c22de007f899c22de00 /* debug */ = {
+ FFF744867e007fba44867e00 /* 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;
@@ -5913,7 +5913,7 @@
};
name = "debug";
};
- FFF79c22e4f07f899c22e4f0 /* checked */ = {
+ FFF7448684f07fba448684f0 /* 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;
@@ -5943,7 +5943,7 @@
};
name = "checked";
};
- FFF79c22ebe07f899c22ebe0 /* profile */ = {
+ FFF744868be07fba44868be0 /* 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;
@@ -5973,7 +5973,7 @@
};
name = "profile";
};
- FFF79c22f2d07f899c22f2d0 /* release */ = {
+ FFF7448692d07fba448692d0 /* 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;
@@ -6003,7 +6003,7 @@
};
name = "release";
};
- FFF79c22fa007f899c22fa00 /* debug */ = {
+ FFF744869a007fba44869a00 /* 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;
@@ -6033,7 +6033,7 @@
};
name = "debug";
};
- FFF79c2300f07f899c2300f0 /* checked */ = {
+ FFF74486a0f07fba4486a0f0 /* 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;
@@ -6063,7 +6063,7 @@
};
name = "checked";
};
- FFF79c2307e07f899c2307e0 /* profile */ = {
+ FFF74486a7e07fba4486a7e0 /* 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;
@@ -6093,7 +6093,7 @@
};
name = "profile";
};
- FFF79c230ed07f899c230ed0 /* release */ = {
+ FFF74486aed07fba4486aed0 /* 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;
@@ -6123,7 +6123,7 @@
};
name = "release";
};
- FFF79c2316007f899c231600 /* debug */ = {
+ FFF74486b6007fba4486b600 /* 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;
@@ -6153,7 +6153,7 @@
};
name = "debug";
};
- FFF79c231cf07f899c231cf0 /* checked */ = {
+ FFF74486bcf07fba4486bcf0 /* 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;
@@ -6183,7 +6183,7 @@
};
name = "checked";
};
- FFF79c2323e07f899c2323e0 /* profile */ = {
+ FFF74486c3e07fba4486c3e0 /* 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;
@@ -6213,7 +6213,7 @@
};
name = "profile";
};
- FFF79c232ad07f899c232ad0 /* release */ = {
+ FFF74486cad07fba4486cad0 /* 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;
@@ -6243,7 +6243,7 @@
};
name = "release";
};
- FFF79c2332007f899c233200 /* release */ = {
+ FFF74486d2007fba4486d200 /* 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;
@@ -6273,7 +6273,7 @@
};
name = "release";
};
- FFF79c2338f07f899c2338f0 /* debug */ = {
+ FFF74486d8f07fba4486d8f0 /* 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;
@@ -6303,7 +6303,7 @@
};
name = "debug";
};
- FFF79c233fe07f899c233fe0 /* checked */ = {
+ FFF74486dfe07fba4486dfe0 /* 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;
@@ -6333,7 +6333,7 @@
};
name = "checked";
};
- FFF79c2346d07f899c2346d0 /* profile */ = {
+ FFF74486e6d07fba4486e6d0 /* 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;
@@ -6363,7 +6363,7 @@
};
name = "profile";
};
- FFF79d0110007f899d011000 /* release */ = {
+ FFF7420144007fba42014400 /* 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;
@@ -6393,7 +6393,7 @@
};
name = "release";
};
- FFF79d0116f07f899d0116f0 /* debug */ = {
+ FFF742014af07fba42014af0 /* 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;
@@ -6423,7 +6423,7 @@
};
name = "debug";
};
- FFF79d011de07f899d011de0 /* checked */ = {
+ FFF7420151e07fba420151e0 /* 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;
@@ -6453,7 +6453,7 @@
};
name = "checked";
};
- FFF79d0124d07f899d0124d0 /* profile */ = {
+ FFF7420158d07fba420158d0 /* 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;
@@ -6483,7 +6483,7 @@
};
name = "profile";
};
- FFF79c1a4a007f899c1a4a00 /* debug */ = {
+ FFF7429a2c007fba429a2c00 /* 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;
@@ -6513,7 +6513,7 @@
};
name = "debug";
};
- FFF79c1a50f07f899c1a50f0 /* release */ = {
+ FFF7429a32f07fba429a32f0 /* 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;
@@ -6543,7 +6543,7 @@
};
name = "release";
};
- FFF79c1a57e07f899c1a57e0 /* checked */ = {
+ FFF7429a39e07fba429a39e0 /* 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;
@@ -6573,7 +6573,7 @@
};
name = "checked";
};
- FFF79c1a5ed07f899c1a5ed0 /* profile */ = {
+ FFF7429a40d07fba429a40d0 /* 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;
@@ -6603,7 +6603,7 @@
};
name = "profile";
};
- FFF79d01d8007f899d01d800 /* debug */ = {
+ FFF74480d0007fba4480d000 /* 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;
@@ -6633,7 +6633,7 @@
};
name = "debug";
};
- FFF79d01def07f899d01def0 /* release */ = {
+ FFF74480d6f07fba4480d6f0 /* 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;
@@ -6663,7 +6663,7 @@
};
name = "release";
};
- FFF79d01e5e07f899d01e5e0 /* checked */ = {
+ FFF74480dde07fba4480dde0 /* 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;
@@ -6693,7 +6693,7 @@
};
name = "checked";
};
- FFF79d01ecd07f899d01ecd0 /* profile */ = {
+ FFF74480e4d07fba4480e4d0 /* 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;
@@ -6723,7 +6723,7 @@
};
name = "profile";
};
- FFF79c1d2e007f899c1d2e00 /* debug */ = {
+ FFF74481aa007fba4481aa00 /* 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;
@@ -6753,7 +6753,7 @@
};
name = "debug";
};
- FFF79c1d34f07f899c1d34f0 /* checked */ = {
+ FFF74481b0f07fba4481b0f0 /* 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;
@@ -6783,7 +6783,7 @@
};
name = "checked";
};
- FFF79c1d3be07f899c1d3be0 /* profile */ = {
+ FFF74481b7e07fba4481b7e0 /* 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;
@@ -6813,7 +6813,7 @@
};
name = "profile";
};
- FFF79c1d42d07f899c1d42d0 /* release */ = {
+ FFF74481bed07fba4481bed0 /* 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;
@@ -6843,7 +6843,7 @@
};
name = "release";
};
- FFF79d80a4007f899d80a400 /* debug */ = {
+ FFF7448234007fba44823400 /* 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;
@@ -6873,7 +6873,7 @@
};
name = "debug";
};
- FFF79d80aaf07f899d80aaf0 /* checked */ = {
+ FFF744823af07fba44823af0 /* 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;
@@ -6903,7 +6903,7 @@
};
name = "checked";
};
- FFF79d80b1e07f899d80b1e0 /* profile */ = {
+ FFF7448241e07fba448241e0 /* 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;
@@ -6933,7 +6933,7 @@
};
name = "profile";
};
- FFF79d80b8d07f899d80b8d0 /* release */ = {
+ FFF7448248d07fba448248d0 /* 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;
@@ -6963,7 +6963,7 @@
};
name = "release";
};
- FFF79d02ae007f899d02ae00 /* debug */ = {
+ FFF74482cc007fba4482cc00 /* 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;
@@ -6993,7 +6993,7 @@
};
name = "debug";
};
- FFF79d02b4f07f899d02b4f0 /* checked */ = {
+ FFF74482d2f07fba4482d2f0 /* 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;
@@ -7023,7 +7023,7 @@
};
name = "checked";
};
- FFF79d02bbe07f899d02bbe0 /* profile */ = {
+ FFF74482d9e07fba4482d9e0 /* 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;
@@ -7053,7 +7053,7 @@
};
name = "profile";
};
- FFF79d02c2d07f899d02c2d0 /* release */ = {
+ FFF74482e0d07fba4482e0d0 /* 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;
@@ -7083,7 +7083,7 @@
};
name = "release";
};
- FFF79e80b6007f899e80b600 /* debug */ = {
+ FFF7448366007fba44836600 /* 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;
@@ -7113,7 +7113,7 @@
};
name = "debug";
};
- FFF79e80bcf07f899e80bcf0 /* checked */ = {
+ FFF744836cf07fba44836cf0 /* 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;
@@ -7143,7 +7143,7 @@
};
name = "checked";
};
- FFF79e80c3e07f899e80c3e0 /* profile */ = {
+ FFF7448373e07fba448373e0 /* 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;
@@ -7173,7 +7173,7 @@
};
name = "profile";
};
- FFF79e80cad07f899e80cad0 /* release */ = {
+ FFF744837ad07fba44837ad0 /* 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;
@@ -7203,7 +7203,7 @@
};
name = "release";
};
- FFF79d0342007f899d034200 /* debug */ = {
+ FFF743821c007fba43821c00 /* 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;
@@ -7233,7 +7233,7 @@
};
name = "debug";
};
- FFF79d0348f07f899d0348f0 /* checked */ = {
+ FFF7438222f07fba438222f0 /* 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;
@@ -7263,7 +7263,7 @@
};
name = "checked";
};
- FFF79d034fe07f899d034fe0 /* profile */ = {
+ FFF7438229e07fba438229e0 /* 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;
@@ -7293,7 +7293,7 @@
};
name = "profile";
};
- FFF79d0356d07f899d0356d0 /* release */ = {
+ FFF7438230d07fba438230d0 /* 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;
@@ -7323,7 +7323,7 @@
};
name = "release";
};
- FFF79c1f82007f899c1f8200 /* debug */ = {
+ FFF7429afa007fba429afa00 /* 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;
@@ -7353,7 +7353,7 @@
};
name = "debug";
};
- FFF79c1f88f07f899c1f88f0 /* release */ = {
+ FFF7429b00f07fba429b00f0 /* 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;
@@ -7383,7 +7383,7 @@
};
name = "release";
};
- FFF79c1f8fe07f899c1f8fe0 /* checked */ = {
+ FFF7429b07e07fba429b07e0 /* 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;
@@ -7413,7 +7413,7 @@
};
name = "checked";
};
- FFF79c1f96d07f899c1f96d0 /* profile */ = {
+ FFF7429b0ed07fba429b0ed0 /* 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;
@@ -7443,7 +7443,7 @@
};
name = "profile";
};
- FFF79d0394007f899d039400 /* debug */ = {
+ FFF74483c6007fba4483c600 /* 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;
@@ -7473,7 +7473,7 @@
};
name = "debug";
};
- FFF79d039af07f899d039af0 /* release */ = {
+ FFF74483ccf07fba4483ccf0 /* 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;
@@ -7503,7 +7503,7 @@
};
name = "release";
};
- FFF79d03a1e07f899d03a1e0 /* checked */ = {
+ FFF74483d3e07fba4483d3e0 /* 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;
@@ -7533,7 +7533,7 @@
};
name = "checked";
};
- FFF79d03a8d07f899d03a8d0 /* profile */ = {
+ FFF74483dad07fba4483dad0 /* 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;
@@ -7563,25 +7563,25 @@
};
name = "profile";
};
- FFF39c228a007f899c228a00 /* release */ = {
+ FFF344862a007fba44862a00 /* release */ = {
isa = XCBuildConfiguration;
buildSettings = {
};
name = "release";
};
- FFF39c2290f07f899c2290f0 /* debug */ = {
+ FFF3448630f07fba448630f0 /* debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
};
name = "debug";
};
- FFF39c2297e07f899c2297e0 /* checked */ = {
+ FFF3448637e07fba448637e0 /* checked */ = {
isa = XCBuildConfiguration;
buildSettings = {
};
name = "checked";
};
- FFF39c229ed07f899c229ed0 /* profile */ = {
+ FFF344863ed07fba44863ed0 /* profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
};
@@ -7590,34 +7590,34 @@
/* End XCBuildConfiguration section */
/* Begin PBXProject section */
- FFF99bc7cc307f899bc7cc30 /* Project object */ = {
+ FFF941d633e07fba41d633e0 /* Project object */ = {
isa = PBXProject;
- buildConfigurationList = FFF69bc7cc307f899bc7cc30 /* Build configuration list for PBXProject PhysX */;
+ buildConfigurationList = FFF641d633e07fba41d633e0 /* Build configuration list for PBXProject PhysX */;
compatibilityVersion = "Xcode 3.2";
hasScannedForEncodings = 1;
- mainGroup = FFFB9bc7cc987f899bc7cc98 /* PhysX */;
+ mainGroup = FFFB41d634487fba41d63448 /* PhysX */;
targets = (
- FFFA9e12f7c07f899e12f7c0,
- FFFA9e1334507f899e133450,
- FFFA9e1280207f899e128020,
- FFFA9e138e707f899e138e70,
- FFFA9e4ea8a07f899e4ea8a0,
- FFFA9e518ab07f899e518ab0,
- FFFA9e5094807f899e509480,
- FFFA9c88a7507f899c88a750,
- FFFA9c8a0f907f899c8a0f90,
- FFFA9cc339d07f899cc339d0,
- FFFA9cdf92b07f899cdf92b0,
- FFFA9cf0adc07f899cf0adc0,
- FFFA9cc550007f899cc55000,
- FFFA9e008d507f899e008d50,
- FFFA9cc72e107f899cc72e10,
- FFFA9ccda3007f899ccda300,
- FFFA9e12da307f899e12da30,
+ FFFA441a7e907fba441a7e90,
+ FFFA441b54a07fba441b54a0,
+ FFFA441a23807fba441a2380,
+ FFFA441c17507fba441c1750,
+ FFFA441d40a07fba441d40a0,
+ FFFA441d86207fba441d8620,
+ FFFA441dd8c07fba441dd8c0,
+ FFFA431a02b07fba431a02b0,
+ FFFA4318c2b07fba4318c2b0,
+ FFFA44109f207fba44109f20,
+ FFFA441270b07fba441270b0,
+ FFFA44154f407fba44154f40,
+ FFFA441701307fba44170130,
+ FFFA441915407fba44191540,
+ FFFA437f9a307fba437f9a30,
+ FFFA434ead707fba434ead70,
+ FFFA441a12707fba441a1270,
);
};
/* End PBXProject section */
};
- rootObject = FFF99bc7cc307f899bc7cc30 /* Project object */;
+ rootObject = FFF941d633e07fba41d633e0 /* Project object */;
}