FileDocCategorySizeDatePackage
SinTable5.javaAPI DocExample1930Thu Feb 04 16:10:42 GMT 1999None

SinTable5

public class SinTable5 extends GuidedLoopHandler

Fields Summary
private float[]
lookupValues
private float
sinValue
Constructors Summary
public SinTable5()

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

		loopProcess();
		lookupValues[0] += sinValue;
		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;
		}
		if (end == endLoop)
			this.sinValue = sinValue;