FileDocCategorySizeDatePackage
SinTable8.javaAPI DocExample2021Thu Feb 04 16:10:42 GMT 1999None

SinTable8

public class SinTable8 extends GuidedLoopHandler

Fields Summary
private float[]
lookupValues
public float[]
sumValues
Constructors Summary
public SinTable8()

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

		loopProcess();
		sumValues[0] = lookupValues[0];
		for (int i = 1; i < (360*100); i++) {
			sumValues[i] = lookupValues[i] + lookupValues[i-1];
		}
		return lookupValues;
	
public voidloopDoRange(int start, int end)

		float sinValue = 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;
		}