diff options
| author | Sheikh Dawood Abdul Ajees <[email protected]> | 2017-05-12 17:45:18 -0500 |
|---|---|---|
| committer | Sheikh Dawood Abdul Ajees <[email protected]> | 2017-05-12 17:45:18 -0500 |
| commit | 7f12de60542edc8f1c6683e6b4cdce8570e51456 (patch) | |
| tree | 0b5d533bae189ea286257b5ab78b635fafb19aa0 /PhysX_3.4/Source/PhysXCooking/src/convex/ConvexHullBuilder.h | |
| parent | PhysX 3.4, APEX 1.4 patch release @22017166 (diff) | |
| download | physx-3.4-7f12de60542edc8f1c6683e6b4cdce8570e51456.tar.xz physx-3.4-7f12de60542edc8f1c6683e6b4cdce8570e51456.zip | |
PhysX 3.4, APEX 1.4 patch release @22121272
Diffstat (limited to 'PhysX_3.4/Source/PhysXCooking/src/convex/ConvexHullBuilder.h')
| -rw-r--r-- | PhysX_3.4/Source/PhysXCooking/src/convex/ConvexHullBuilder.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/PhysX_3.4/Source/PhysXCooking/src/convex/ConvexHullBuilder.h b/PhysX_3.4/Source/PhysXCooking/src/convex/ConvexHullBuilder.h index 7d2215e2..da0ffaf3 100644 --- a/PhysX_3.4/Source/PhysXCooking/src/convex/ConvexHullBuilder.h +++ b/PhysX_3.4/Source/PhysXCooking/src/convex/ConvexHullBuilder.h @@ -38,6 +38,7 @@ namespace physx { struct PxHullPolygon; + class ConvexHullLib; namespace Gu { @@ -57,12 +58,12 @@ namespace physx ~ConvexHullBuilder(); bool init(PxU32 nbVerts, const PxVec3* verts, const PxU32* indices, const PxU32 nbIndices, const PxU32 nbPolygons, - const PxHullPolygon* hullPolygons, PxU32 gaussMapVertexLimit, bool doValidation = true, bool userPolygons = false); + const PxHullPolygon* hullPolygons, bool doValidation = true, ConvexHullLib* hullLib = NULL); bool save(PxOutputStream& stream, bool platformMismatch) const; bool copy(Gu::ConvexHullData& hullData, PxU32& nb); - bool createEdgeList(bool doValidation, PxU32 nbEdges, bool prepareBigHullData); + bool createEdgeList(bool doValidation, PxU32 nbEdges); bool checkHullPolygons() const; bool calculateVertexMapTable(PxU32 nbPolygons, bool userPolygons = false); @@ -78,7 +79,6 @@ namespace physx PxU8* mHullDataVertexData8; PxU8* mHullDataFacesByEdges8; PxU8* mHullDataFacesByVertices8; - PxU8* mHullDataFacesByAllEdges8; // data used fom big hull valencies computation PxU16* mEdgeData16; //!< Edge indices indexed by hull polygons PxU16* mEdges; //!< Edge to vertex mapping |