Moved Eule to its own repository

This commit is contained in:
Leonetienne
2021-11-15 11:32:27 +01:00
commit ba102c8389
48 changed files with 11528 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
#pragma once
#define LARGE_RAND_DOUBLE (((rng() % 6969000) - 3500000) / 1000.0)
#define LARGE_RAND_POSITIVE_DOUBLE (((rng() % 3500000)) / 1000.0)
#define LARGE_RAND_INT ((rng() % 6969) - 3500)
#define LARGE_RAND_POSITIVE_INT ((rng() % 3500))