I have been looking all over the internet on how exactly to use the Perlin noise class (the C version), but I can't seem to find anything.

Here's what I'm doing:

double height = noise1(12);
NSLog(@"%f", height);

I set a double equal to noise1 with a random argument. Then I output height to the console with the NSLog (objective-c). Now the strange thing is that the console outputsconsole output and enter image description here


Am I missing something?

link|improve this question

4  
Did you just create and upload two screenshots to share two strings containing (dead-simple, while we're at it) numbers? – delnan Sep 1 '11 at 19:21
Yes, I did. Is there a problem? – Dan the Man Sep 1 '11 at 19:22
It just seems incredibly convulted, it never crossed my mind. – delnan Sep 1 '11 at 19:23
feedback

1 Answer

up vote 2 down vote accepted

Try, e.g.,

for(double x = 0; x < 10; x+=0.1)
{
  double height = PerlinNoise1D(x,2,2,n);
  //...
}

Here x is the coordinate of the texture; it seems the functions the code is blending together are all 0 at integer values of x so it makes sense that their blend is also always 0. As best as I can tell n is the number of functions to blend... not sure what the best value is, but 20ish seems to work well in some quick tests.

link|improve this answer
Thank you! It worked perfectly. – Dan the Man Sep 2 '11 at 0:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.