We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51e7294 commit ecf72a8Copy full SHA for ecf72a8
PerlinNoise.hpp
@@ -95,9 +95,9 @@ namespace siv
95
const std::int32_t Y = static_cast<std::int32_t>(std::floor(y)) & 255;
96
const std::int32_t Z = static_cast<std::int32_t>(std::floor(z)) & 255;
97
98
- x -= ::floor(x);
99
- y -= ::floor(y);
100
- z -= ::floor(z);
+ x -= std::floor(x);
+ y -= std::floor(y);
+ z -= std::floor(z);
101
102
const double u = fade(x);
103
const double v = fade(y);
0 commit comments