Hi,
I have the following question,
how can I create an array from the values that the attached .do operation gives?
I have tried to incorporate it as a function in Array.fill but with no sucess.
(
var angle=0,point;
20.do{
angle=(angle+(360-(360/1.61803398874989484820458683436563811772030917980576))).wrap(0,360);
point=exp(Complex(0,1)*angle.degrad).theta;
point.postln;
}
)