summaryrefslogtreecommitdiff
path: root/src/projection/orthographic.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/projection/orthographic.js')
-rw-r--r--src/projection/orthographic.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/projection/orthographic.js b/src/projection/orthographic.js
index 53736a8..b5a8351 100644
--- a/src/projection/orthographic.js
+++ b/src/projection/orthographic.js
@@ -1,6 +1,6 @@
-import {asin, cos, epsilon, sin} from "../math";
-import {azimuthalInvert} from "./azimuthal";
-import projection from "./index";
+import {asin, cos, epsilon, sin} from "../math.js";
+import {azimuthalInvert} from "./azimuthal.js";
+import projection from "./index.js";
export function orthographicRaw(x, y) {
return [cos(y) * sin(x), sin(y)];