cpp/motions/tetrahedral.h

21 lines
373 B
C
Raw Normal View History

2024-08-16 17:55:27 +00:00
//
// Created by dominik on 8/16/24.
//
#ifndef RWSIM_MOTIONTETRAHEDRAL_H
#define RWSIM_MOTIONTETRAHEDRAL_H
#include "base.h"
#include <random>
class TetrahedralJump final : public Motion {
public:
TetrahedralJump(double, double, std::mt19937_64&);
explicit TetrahedralJump(std::mt19937_64&);
double jump() override;
};
#endif //RWSIM_MOTIONTETRAHEDRAL_H