geoOrthographicRaw top-level property Azimuthal projections Projections

GeoRawProjection geoOrthographicRaw
final

The raw orthographic projection.

{@category Projections} {@category Azimuthal projections}

Implementation

final geoOrthographicRaw = GeoRawProjection((x, y, [_]) {
  return [cos(y) * sin(x), sin(y)];
}, azimuthalInvert(asin));