* @see ca.eandb.jmist.framework.path.EyeNode#sample(ca.eandb.jmist.math.Point2, ca.eandb.jmist.framework.Random)
*/
public ScatteredRay sample(double ru, double rv, double rj) {
Point2 p = pointOnImagePlane;
double nx = (p.x() - 0.5) * hfov;
double ny = (0.5 - p.y()) * vfov;
double sx = Math.sin(nx);
double sy = Math.sin(ny);
double cx = Math.cos(nx);