Files
Seele/src/Engine/Component/ShapeBase.h
T

22 lines
549 B
C++
Raw Normal View History

2022-11-29 16:34:42 +01:00
#pragma once
#include "Containers/Array.h"
#include "Transform.h"
namespace Seele
{
namespace Component
{
struct ShapeBase
{
ShapeBase(Array<Math::Vector> vertices, Array<uint32> indices);
ShapeBase transform(const Component::Transform& transform) const;
void addCollider(Array<Math::Vector> vertices, Array<uint32> indices, Math::Matrix4 matrix);
Math::Vector centerOfMass;
float mass;
Math::Matrix3 bodyInertia;
Array<Math::Vector> vertices;
Array<uint32> indices;
};
} // namespace Component
} // namespace Seele