Hey guys, I work on a small procedrual generated sidescoller. So I used GeoGebra to make a sine function which generates some seed based pseudo-random numbers. My problem is that Constructs output is different to GeoGebra's output. Usually i can use functions from GeoGebra without prolems, but i never used sin() before so i guess there might be a syntax problem. Here the sine function:
GeoGebra:
g(x) = 15sin(3sin(sin(cos(x))) x / 2 + 293 / 1000 x) + 15
Construct 2:
Set "Y" to: 15*(sin((3*sin(sin(cos(X))))*(X/2)+(Seed/1000)*X))+15
When I set X to 1 Geo outputs "27.8" and Construct 2 gives "15.07"
Tell me if you need more informations or the .capx
Thanks for your help and sorry for my imperfect english (in case you recognized)