disable 3d perlin

git-svn-id: https://projectm.svn.sourceforge.net/svnroot/projectm/trunk@1093 6778bc44-b910-0410-a7a0-be141de4315d
This commit is contained in:
psperl
2008-07-12 23:34:56 +00:00
parent 7b221dc8d6
commit e352bcee9d

View File

@ -39,7 +39,7 @@ PerlinNoise::PerlinNoise()
for (int x = 0; x < 32;x++)
for (int y = 0; y < 32;y++)
for (int z = 0; z < 32;z++)
noise_hq_vol[x][y][z] = perlin_noise_3d(x,y,z,6121,7,seed3,0.5,64);
noise_hq_vol[x][y][z] = noise(x,y,z);//perlin_noise_3d(x,y,z,6121,7,seed3,0.5,64);
}