quasimondo:incubator
complexification
for (int i=0;i
float temp1 = thelist[i];
float temp2 = thelist[i+1];
float temp3 = thelist[i+2];
temp1 = temp1/100;
temp1 = temp1+150;
temp2 = temp2/100;
temp2 = temp2+150;
temp3 = temp3/100;
temp3 = temp3+150;
point (temp1,temp2,temp3);
}
1 Comments:
Thank you! I did wonder why little bits kept disappearing. (like the whole i<0 bit of the for loop thing)
Post a Comment
<< Home