cpp/motions/tetrahedral.h
Dominik Demuth 17f95627a9 first commit
2024-08-16 19:55:27 +02:00

21 lines
373 B
C++

//
// 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