15 lines
344 B
C++
15 lines
344 B
C++
|
//
|
||
|
// Created by dominik on 8/16/24.
|
||
|
//
|
||
|
#include <random>
|
||
|
#include "tetrahedral.h"
|
||
|
|
||
|
|
||
|
TetrahedralJump::TetrahedralJump(const double delta, const double eta, std::mt19937_64& rng) : Motion(delta, eta, rng) {}
|
||
|
|
||
|
TetrahedralJump::TetrahedralJump(std::mt19937_64& rng) : Motion(rng) {}
|
||
|
|
||
|
double TetrahedralJump::jump() {
|
||
|
return draw_position();
|
||
|
}
|