super(0, 360*100, 100, 12); lookupValues = new float [360 * 100];
loopProcess(); System.out.println(sumValue); return lookupValues;
float sinValue = 0.0f; float sumValue = 0.0f; for (int i = start; i < end; i++) { sinValue = (float)Math.sin((i % 360)*Math.PI/180.0); lookupValues[i] = sinValue * (float)i / 180.0f; sumValue += lookupValues[i]; } synchronized (this) { this.sumValue += sumValue; }