(from, to, direction, stream)
| 10917 | notHemisphere = abs$1(cr) > epsilon$1; // TODO optimise for this common case |
| 10918 | |
| 10919 | function interpolate(from, to, direction, stream) { |
| 10920 | circleStream(stream, radius, delta, direction, from, to); |
| 10921 | } |
| 10922 | |
| 10923 | function visible(lambda, phi) { |
| 10924 | return cos$1(lambda) * cos$1(phi) > cr; |
no test coverage detected