Path: blob/master/thirdparty/jolt_physics/Jolt/Physics/Collision/ManifoldBetweenTwoFaces.h
9912 views
// Jolt Physics Library (https://github.com/jrouwe/JoltPhysics)1// SPDX-FileCopyrightText: 2021 Jorrit Rouwe2// SPDX-License-Identifier: MIT34#pragma once56#include <Jolt/Physics/Collision/Shape/ConvexShape.h>7#include <Jolt/Physics/Collision/ContactListener.h>89JPH_NAMESPACE_BEGIN1011/// Remove contact points if there are > 4 (no more than 4 are needed for a stable solution)12/// @param inPenetrationAxis is the world space penetration axis (must be normalized)13/// @param ioContactPointsOn1 The contact points on shape 1 relative to inCenterOfMass14/// @param ioContactPointsOn2 The contact points on shape 2 relative to inCenterOfMass15/// On output ioContactPointsOn1/2 are reduced to 4 or less points16#ifdef JPH_DEBUG_RENDERER17/// @param inCenterOfMass Center of mass position of body 118#endif19JPH_EXPORT void PruneContactPoints(Vec3Arg inPenetrationAxis, ContactPoints &ioContactPointsOn1, ContactPoints &ioContactPointsOn220#ifdef JPH_DEBUG_RENDERER21, RVec3Arg inCenterOfMass22#endif23);2425/// Determine contact points between 2 faces of 2 shapes and return them in outContactPoints 1 & 226/// @param inContactPoint1 The contact point on shape 1 relative to inCenterOfMass27/// @param inContactPoint2 The contact point on shape 2 relative to inCenterOfMass28/// @param inPenetrationAxis The local space penetration axis in world space29/// @param inMaxContactDistance After face 2 is clipped against face 1, each remaining point on face 2 is tested against the plane of face 1. If the distance on the positive side of the plane is larger than this distance, the point will be discarded as a contact point.30/// @param inShape1Face The supporting faces on shape 1 relative to inCenterOfMass31/// @param inShape2Face The supporting faces on shape 2 relative to inCenterOfMass32/// @param outContactPoints1 Returns the contact points between the two shapes for shape 1 relative to inCenterOfMass (any existing points in the output array are left as is)33/// @param outContactPoints2 Returns the contact points between the two shapes for shape 2 relative to inCenterOfMass (any existing points in the output array are left as is)34#ifdef JPH_DEBUG_RENDERER35/// @param inCenterOfMass Center of mass position of body 136#endif37JPH_EXPORT void ManifoldBetweenTwoFaces(Vec3Arg inContactPoint1, Vec3Arg inContactPoint2, Vec3Arg inPenetrationAxis, float inMaxContactDistance, const ConvexShape::SupportingFace &inShape1Face, const ConvexShape::SupportingFace &inShape2Face, ContactPoints &outContactPoints1, ContactPoints &outContactPoints238#ifdef JPH_DEBUG_RENDERER39, RVec3Arg inCenterOfMass40#endif41);4243JPH_NAMESPACE_END444546