double htScale = options_.getHeightScale();
Vector3d xVec = new Vector3d(1.0, 0.0, htScale * xdelta);
Vector3d yVec = new Vector3d(0.0, 1.0, htScale * ydelta);
Vector3d surfaceNormal = new Vector3d();
surfaceNormal.cross(xVec, yVec);
surfaceNormal.normalize();
return computeColor(c, surfaceNormal);
}
/**