diff --git a/common/noise/worleynoise.cpp b/common/noise/worleynoise.cpp index ca35319..939b619 100644 --- a/common/noise/worleynoise.cpp +++ b/common/noise/worleynoise.cpp @@ -62,7 +62,7 @@ void WorleyNoise::generateNoise() auto stop = std::chrono::high_resolution_clock::now(); auto duration = std::chrono::duration_cast(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; }