Browse Source

Ports OpenSimplex2 from https://github.com/KdotJPG/OpenSimplex2 to Odin. Adds tests for the noise procedures.

NoahR02 3 years ago
parent
commit
accb35506f
1 changed files with 0 additions and 4 deletions
  1. 0 4
      tests/core/math/noise/test_core_math_noise.odin

+ 0 - 4
tests/core/math/noise/test_core_math_noise.odin

@@ -128,10 +128,6 @@ Noise_Tests := []Test_Vector{
 	{SEED_2, COORD_2,      0.1354035,  noise.noise_4d_fallback},
 	{SEED_3, COORD_3,      0.14565045,  noise.noise_4d_fallback},
 
-	// TODO: Output according to C# - Figure out which of these two is right (and why).
-	// {SEED_1, COORD_1,     -0.14233987,  noise.noise_4d_fallback},
-	// {SEED_2, COORD_2,      0.1354035,   noise.noise_4d_fallback},
-	// {SEED_3, COORD_3,      0.14565045,  noise.noise_4d_fallback},
 }
 
 noise_test :: proc(t: ^testing.T) {