add small helper to scalar range

This commit is contained in:
2023-03-04 02:35:06 +01:00
parent 7bce78167b
commit e9c62f9201
2 changed files with 12 additions and 2 deletions

View File

@@ -7,7 +7,7 @@ namespace MM::Random {
// Seeded (Pseudo-) Random Number Generator
struct SRNG {
// make shuffle compat
// make shuffle compat
// TODO: add more type info
using result_type = uint32_t;
@@ -35,7 +35,7 @@ struct SRNG {
}
bool roll(float prob) {
return zeroToOne() <= prob;
return zeroToOne() <= prob; // TODO: just < ?
}
// more advanced