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