Fixed wrong text

This commit is contained in:
Maximilian Giller 2023-01-24 08:53:38 +01:00
parent 66959c3599
commit 0c7071524a

View file

@ -62,7 +62,7 @@ void WorleyNoise::generateNoise()
auto stop = std::chrono::high_resolution_clock::now();
auto duration = std::chrono::duration_cast<std::chrono::seconds>(stop - start);
std::cout << "Finished computing Worley getNoise for size " << size << " and " << numberOfPoints << " points in "
std::cout << "Finished computing Worley noise for size " << size << " and " << numberOfPoints << " points in "
<< duration.count() << " seconds" << std::endl;
}