1#include "ObjectCollisionConvexHull.hh"
12 m_worldRadius = 70.0f;
14 for (
size_t i = 0; i < points.size(); ++i) {
15 m_points[i] = points[i];
20ObjectCollisionConvexHull::~ObjectCollisionConvexHull() {
21 delete[] m_points.data();
22 delete[] m_worldPoints.data();
28 m_translation = speed;
30 if (scale.x == 0.0f) {
31 for (
size_t i = 0; i < m_points.size(); ++i) {
39 for (
size_t i = 0; i < m_points.size(); ++i) {
48 f32 maxDot = v.
dot(*result);
50 for (
size_t i = 1; i < m_worldPoints.size(); ++i) {
51 const auto &iter = m_worldPoints[i];
52 f32 iterDot = v.
dot(iter);
54 if (maxDot < iterDot) {
70 ASSERT(count < 0x100);
72 m_points = std::span<EGG::Vector3f>(
new EGG::Vector3f[count], count);
73 m_worldPoints = std::span<EGG::Vector3f>(
new EGG::Vector3f[count], count);
Matrix34f multiplyTo(const Matrix34f &rhs) const
Multiplies two matrices.
Vector3f ps_multVector(const Vector3f &vec) const
Paired-singles impl. of multVector.
Smallest convex shape that encloses a given set of points.
ObjectCollisionConvexHull(const std::span< const EGG::Vector3f > &points)
Creates a convex hull with the provided points.
f32 dot(const Vector3f &rhs) const
The dot product between two vectors.