Chaos::GJKPenetration

This function will be faster if bNegativePenetrationSupport is false, so don't use the feature if not required.

Windows
MacOS
Linux

References

Module

Chaos

Header

/Engine/Source/Runtime/Experimental/Chaos/Public/Chaos/GJK.h

Include

#include "Chaos/GJK.h"

Syntax

namespace Chaos
{
    template<bool bNegativePenetrationSupport, typename T, typename TGeometryA, typename TGeometryB>
    bool Chaos::GJKPenetration
    (
        const TGeometryA & A,
        const TGeometryB & B,
        const TRigidTransform< T, 3 > & BToATM,
        T & OutPenetration,
        TVec3< T > & OutClosestA,
        TVec3< T > & OutClosestB,
        TVec3< T > & OutNormal,
        const T InThicknessA,
        const TVector< T, 3 > & InitialDir,
        const T InThicknessB,
        int32 * OutNumIterations
    )
}

Remarks

This function will be faster if bNegativePenetrationSupport is false, so don't use the feature if not required.

Help shape the future of Unreal Engine documentation! Tell us how we're doing so we can serve you better.
Take our survey
Dismiss