I wasn't so sure where to ask this question (between math and here)
I try to draw Logarithmic Spiral using this formula

It works (well it show a spiral on screen) , but when i change the pitch (a) the spiral does not change his pitch , only rotation and size (and setting a to 1 should make a circle but it does not)
i tried thoses :
double step = (end - start) / sample;
for (int i = 1;i <= sample;i++) {
double t = start+i*step;
coordinates[i-1][0] = a * Math.pow(Math.E,b*t) * Math.cos(t);
coordinates[i-1][1] = a * Math.pow(Math.E,b*t) * Math.sin(t);
}
(a and b are constant , start = -4*PI , end = 4*PI)
and
double step = (end - start) / sample;
for (int i = 1;i <= sample;i++) {
double r = start+i*step;
double t = (1/b)*Math.log(r/a);
coordinates[i-1][0] = r* Math.cos(t);
coordinates[i-1][1] = r* Math.sin(t);
}
(a and b are constant , start = 0 , end = 10)
I guessing I have made a big error in the formula but I don't see wich one. I can provide an output picture if that can help , but I don't see how
Edit: I did succed to make it work using r = a exp(θ cot b)
double r = Math.pow(a,t*(1/Math.tan(b)));
But i still don't get why the other formula didn't work out , that's why i edited this question rather than answering it.