From 928d5c2ef95160afcb6c32d0b44a066a00fbaa62 Mon Sep 17 00:00:00 2001 From: Darth Affe Date: Sun, 23 Apr 2023 17:36:22 +0200 Subject: [PATCH] Added license link to SimplexNoise --- Tests/RGB.NET.Core.Tests/Helper/SimplexNoise.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/RGB.NET.Core.Tests/Helper/SimplexNoise.cs b/Tests/RGB.NET.Core.Tests/Helper/SimplexNoise.cs index f28dd16..322eb5c 100644 --- a/Tests/RGB.NET.Core.Tests/Helper/SimplexNoise.cs +++ b/Tests/RGB.NET.Core.Tests/Helper/SimplexNoise.cs @@ -6,7 +6,7 @@ namespace RGB.NET.Core.Tests.Helper; // Simplex Noise for C# // Copyright © Benjamin Ward 2019 -// See LICENSE +// See LICENSE (https://github.com/WardBenjamin/SimplexNoise/blob/2afa9a63483562cc4c0a95bbfa6b183fc256a790/LICENSE.txt) // Simplex Noise implementation offering 1D, 2D, and 3D forms w/ values in the range of 0 to 255. // Based on work by Heikki Törmälä (2012) and Stefan Gustavson (2006).