geoOrthographic function

OrthographicProjection geoOrthographic({
  1. (double, double)? center,
  2. double scale = 1,
  3. Point? translate,
  4. (double, double, double)? rotate,
})

Creates an orthographic projection.

Implementation

OrthographicProjection geoOrthographic({
  (double, double)? center,
  double scale = 1,
  Point? translate,
  (double, double, double)? rotate,
}) {
  return OrthographicProjection(
    center: center,
    scale: scale,
    translate: translate,
    rotate: rotate,
  );
}