diff options
Diffstat (limited to 'PhysX_3.4/Source/PhysXCooking/src/convex/ConvexHullLib.h')
| -rw-r--r-- | PhysX_3.4/Source/PhysXCooking/src/convex/ConvexHullLib.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/PhysX_3.4/Source/PhysXCooking/src/convex/ConvexHullLib.h b/PhysX_3.4/Source/PhysXCooking/src/convex/ConvexHullLib.h index cd8f766e..06ff9adc 100644 --- a/PhysX_3.4/Source/PhysXCooking/src/convex/ConvexHullLib.h +++ b/PhysX_3.4/Source/PhysXCooking/src/convex/ConvexHullLib.h @@ -58,6 +58,9 @@ namespace physx // fills the PxConvexMeshDesc with computed hull data virtual void fillConvexMeshDesc(PxConvexMeshDesc& desc) = 0; + // compute the edge list information if possible + virtual bool createEdgeList(const PxU32 nbIndices, const PxU8* indices, PxU8** hullDataFacesByEdges8, PxU16** edgeData16, PxU16** edges) = 0; + static const PxU32 gpuMaxVertsPerFace = 32; protected: |