Navigation
API > API/Runtime > API/Runtime/Chaos
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void Chaos::Private::ProjectOntoAxis
(
const FTriangle& Triangle, |
Project a triangle onto an axis and return the projected range as well as the vertex indices that bound the range. | Chaos/Collision/ConvexContactPointUtilities.h | |
void Chaos::Private::ProjectOntoAxis
(
const FCapsule& Capsule, |
Project a capsule segment onto an axis and return the projected range as well as the vertex indices that bound the range. | Chaos/Collision/ConvexContactPointUtilities.h | |
void Chaos::Private::ProjectOntoAxis
(
const ConvexType& Convex, |
Project a convex onto an axis and return the projected range as well as the vertex indices that bound the range. | Chaos/Collision/ConvexContactPointUtilities.h |
Chaos::Private::ProjectOntoAxis(const FTriangle &, const FVec3 &, const FVec3 &, FReal &, FReal &, int32 &, int32 &)
Description
Project a triangle onto an axis and return the projected range as well as the vertex indices that bound the range.
| Name | Chaos::Private::ProjectOntoAxis |
| Type | function |
| Header File | /Engine/Source/Runtime/Experimental/Chaos/Public/Chaos/Collision/ConvexContactPointUtilities.h |
| Include Path | #include "Chaos/Collision/ConvexContactPointUtilities.h" |
namespace Chaos
{
namespace Private
{
void Chaos::Private::ProjectOntoAxis
(
const FTriangle & Triangle,
const FVec3 & AxisN,
const FVec3 & AxisX,
FReal & PMin,
FReal & PMax,
int32 & MinVertexIndex,
int32 & MaxVertexIndex
)
}
}
Chaos::Private::ProjectOntoAxis(const FCapsule &, const FVec3 &, const FVec3 &, FReal &, FReal &, int32 &, int32 &)
Description
Project a capsule segment onto an axis and return the projected range as well as the vertex indices that bound the range.
| Name | Chaos::Private::ProjectOntoAxis |
| Type | function |
| Header File | /Engine/Source/Runtime/Experimental/Chaos/Public/Chaos/Collision/ConvexContactPointUtilities.h |
| Include Path | #include "Chaos/Collision/ConvexContactPointUtilities.h" |
namespace Chaos
{
namespace Private
{
void Chaos::Private::ProjectOntoAxis
(
const FCapsule & Capsule,
const FVec3 & AxisN,
const FVec3 & AxisX,
FReal & PMin,
FReal & PMax,
int32 & MinVertexIndex,
int32 & MaxVertexIndex
)
}
}
Chaos::Private::ProjectOntoAxis(const ConvexType &, const FVec3 &, const FVec3 &, FReal &, FReal &, int32 &, int32 &, TArrayView< FReal > *)
Description
Project a convex onto an axis and return the projected range as well as the vertex indices that bound the range.
| Name | Chaos::Private::ProjectOntoAxis |
| Type | function |
| Header File | /Engine/Source/Runtime/Experimental/Chaos/Public/Chaos/Collision/ConvexContactPointUtilities.h |
| Include Path | #include "Chaos/Collision/ConvexContactPointUtilities.h" |
namespace Chaos
{
namespace Private
{
template<typename ConvexType>
void Chaos::Private::ProjectOntoAxis
(
const ConvexType & Convex,
const FVec3 & AxisN,
const FVec3 & AxisX,
FReal & PMin,
FReal & PMax,
int32 & MinVertexIndex,
int32 & MaxVertexIndex,
TArrayView < FReal > * VertexDs
)
}
}