Could somebody please point out where I am going wrong with this code? I tried to merge two together, but wasn't so successful (obviously, since I wouldn't be here).
This is pretty urgent and I am pulling my hair out over this - I feel as though I am so close, yet so far...
Please help!
Disease[] d = new Disease[55];
HealthyCell health;
ArrayList<kaleidoscope> kal;
kaleidoscope selectedkaleidoscope;
// vars for ill cell / kaleidoscope
int kaleidoscope_num = 50;
float[] kaleidoscope_x= new float[kaleidoscope_num]; //x value
float[] kaleidoscope_y= new float[kaleidoscope_num]; //y value
float[] kaleidoscope_a= new float[kaleidoscope_num]; //rate of growth
color[] kaleidoscope_c= new color[kaleidoscope_num]; //colour
I am trying to create a simple rotation where to ellipse shaped images share the center and rotate in the opposite direction. I've moved the code around but I can't seem to overlap the two. One just seems to rotate along the outside of the other.