Files
Forairaaaaa 398b6bfc36 init
2025-05-07 18:25:50 +08:00

20 lines
344 B
C++

/*
* SPDX-FileCopyrightText: 2025 M5Stack Technology CO LTD
*
* SPDX-License-Identifier: MIT
*/
#pragma once
#include <random>
namespace math {
inline float random(float min, float max)
{
std::random_device rd;
std::mt19937 gen(rd());
std::uniform_real_distribution dis(min, max);
return dis(gen);
}
} // namespace math