class Trail { //--------------- float[] x, y, z; // position int firstIndex; color clr; //--------------- Trail(float ix, float iy, float iz, int len, color clr){ firstIndex = 0; x = new float[len]; y = new float[len]; z = new float[len]; for(int i=0;i