The this.update
method within the THREE.OrbitControl
script contains a private variable called EPS, which is used to adjust the phi angle. The following code snippet demonstrates how it restricts phi to be between EPS and PI-EPS:
// restrict phi to be between EPS and PI-EPS
phi = Math.max( EPS, Math.min( Math.PI - EPS, phi ) );
What does EPS stand for? Is it an acronym for something?