fix
This commit is contained in:
parent
5b46d54377
commit
12c464dac1
1 changed files with 2 additions and 2 deletions
4
test.cpp
4
test.cpp
|
@ -33,8 +33,8 @@ std::mt19937 rng(dev());
|
|||
|
||||
Circle generate_random_circle()
|
||||
{
|
||||
static std::uniform_real_distribution pos_dist(0.0f, 100.0f);
|
||||
static std::uniform_real_distribution r_dist(5.0f, 15.0f);
|
||||
static std::uniform_real_distribution pos_dist(0.0, 100.0);
|
||||
static std::uniform_real_distribution r_dist(5.0, 15.0);
|
||||
|
||||
return Circle
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue