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 outputs
and
Am I missing something?