2021-09-13 15:53:43 +03:00
|
|
|
//
|
|
|
|
// Created by Иван Ильин on 10.03.2021.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef ENGINE_SOLVER_H
|
|
|
|
#define ENGINE_SOLVER_H
|
|
|
|
|
|
|
|
#include "RigidBody.h"
|
|
|
|
|
|
|
|
class Solver {
|
|
|
|
public:
|
2021-09-14 13:47:53 +03:00
|
|
|
static void solveCollision(std::shared_ptr<RigidBody> obj1, std::shared_ptr<RigidBody> obj2, const CollisionPoint& collision);
|
2021-09-13 15:53:43 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif //INC_3DZAVR_SOLVER_H
|