A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
Field::ObjectCollisionBox Class Reference

#include <ObjectCollisionBox.hh>

Description

Inherits ObjectCollisionConvexHull, as a box is a convex hull of its vertices.

Definition at line 8 of file ObjectCollisionBox.hh.

Inheritance diagram for Field::ObjectCollisionBox:

Public Member Functions

 ObjectCollisionBox (f32 x, f32 y, f32 z, const EGG::Vector3f &center)
 
void transform (const EGG::Matrix34f &mat, const EGG::Vector3f &scale, const EGG::Vector3f &speed) override
 
- Public Member Functions inherited from Field::ObjectCollisionConvexHull
 ObjectCollisionConvexHull (const std::span< const EGG::Vector3f > &points)
 Creates a convex hull with the provided points.
 
void transform (const EGG::Matrix34f &mat, const EGG::Vector3f &scale, const EGG::Vector3f &speed) override
 
const EGG::Vector3fgetSupport (const EGG::Vector3f &v) const override
 
f32 getBoundingRadius () const override
 
virtual void setBoundingRadius (f32 val)
 
- Public Member Functions inherited from Field::ObjectCollisionBase
bool check (ObjectCollisionBase &rhs, EGG::Vector3f &distance)
 

Private Attributes

EGG::Vector3f m_dimensions
 
EGG::Vector3f m_center
 
EGG::Vector3f m_scale
 

Additional Inherited Members

- Protected Member Functions inherited from Field::ObjectCollisionConvexHull
 ObjectCollisionConvexHull (size_t count)
 Allocates space for a convex hull with the provided point count. This overload can only be called via inheritance or delegating constructors.
 
- Protected Attributes inherited from Field::ObjectCollisionBase
EGG::Vector3f m_translation
 

Constructor & Destructor Documentation

◆ ObjectCollisionBox()

Field::ObjectCollisionBox::ObjectCollisionBox ( f32 x,
f32 y,
f32 z,
const EGG::Vector3f & center )
0x80833840

Definition at line 6 of file ObjectCollisionBox.cc.

Member Function Documentation

◆ transform()

void Field::ObjectCollisionBox::transform ( const EGG::Matrix34f & mat,
const EGG::Vector3f & scale,
const EGG::Vector3f & speed )
overridevirtual0x80833EEC

Implements Field::ObjectCollisionBase.

Definition at line 16 of file ObjectCollisionBox.cc.

Member Data Documentation

◆ m_center

EGG::Vector3f Field::ObjectCollisionBox::m_center
private

Definition at line 18 of file ObjectCollisionBox.hh.

◆ m_dimensions

EGG::Vector3f Field::ObjectCollisionBox::m_dimensions
private

Definition at line 17 of file ObjectCollisionBox.hh.

◆ m_scale

EGG::Vector3f Field::ObjectCollisionBox::m_scale
private

Definition at line 19 of file ObjectCollisionBox.hh.