function camAnimProc(cam, frameList){	this.cam = cam;	this.frameList = frameList;}camAnimProc.prototype.process = function(curFrameIndex, nextFrameIndex, lambda){	var interpedVec = lerpVec3(this.frameList[curFrameIndex], this.frameList[nextFrameIndex], lambda);	this.cam.setLookAt(interpedVec, zeroVec(), upVec());}
