gwnavruntime/queries/utils/convexquadintersector.h Source File
Go to the documentation of this file.
19 class ConvexQuadIntersector
24 ConvexQuadIntersector(const Vec3f& a, const Vec3f& b, const Vec3f& c, const Vec3f& d,
KyFloat32 integerPrecision)
30 m_integerPrecision = integerPrecision;
35 const Vec3f startEdgePos(startEdgeCoordPos.x * m_integerPrecision, startEdgeCoordPos.y * m_integerPrecision, 0.f);
36 const Vec3f endEdgePos(endEdgeCoordPos.x * m_integerPrecision, endEdgeCoordPos.y * m_integerPrecision, 0.f);
38 return Math::IsSegmentVsConvexQuad2f(startEdgePos, endEdgePos, m_a, m_b, m_c, m_d);
#define KY_DEFINE_NEW_DELETE_OPERATORS(MemStat)
This macro defines new and delete operators.
Definition: memory.h:132
Vec2LL CoordPos64
A type that represents the position of a point within the 2D integer grid.
Definition: navmeshtypes.h:16
The Autodesk Navigation namespace.
Definition: gamekitcrowddispersion.cpp:17
float KyFloat32
float
Definition: types.h:32