FileDocCategorySizeDatePackage
SinTable6.javaAPI DocExample1910Thu Feb 04 16:10:42 GMT 1999None

SinTable6

public class SinTable6 extends GuidedLoopHandler

Fields Summary
private float[]
lookupValues
public float
sumValue
Constructors Summary
public SinTable6()

		super(0, 360*100, 100, 12);
		lookupValues = new float [360 * 100];
	
Methods Summary
public float[]getValues()

		loopProcess();
		return lookupValues;
	
public voidloopDoRange(int start, int end)

		float sinValue = 0;
		for (int i = start; i < end; i++) {
			sinValue = (float)Math.sin((i % 360)*Math.PI/180.0);
			lookupValues[i] = sinValue * (float)i / 180.0f;
			synchronized (this) {
				sumValue += lookupValues[i];
			}	
		}