From 0c7071524a436172242424a19c7ec065beee1911 Mon Sep 17 00:00:00 2001 From: Maximilian Giller Date: Tue, 24 Jan 2023 08:53:38 +0100 Subject: [PATCH] Fixed wrong text --- common/noise/worleynoise.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }