summaryrefslogtreecommitdiff
path: root/src/projection/stereographic.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/projection/stereographic.js')
-rw-r--r--src/projection/stereographic.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/projection/stereographic.js b/src/projection/stereographic.js
index 1e68e30..5f9694a 100644
--- a/src/projection/stereographic.js
+++ b/src/projection/stereographic.js
@@ -1,6 +1,6 @@
-import {atan, cos, sin} from "../math";
-import {azimuthalInvert} from "./azimuthal";
-import projection from "./index";
+import {atan, cos, sin} from "../math.js";
+import {azimuthalInvert} from "./azimuthal.js";
+import projection from "./index.js";
export function stereographicRaw(x, y) {
var cy = cos(y), k = 1 + cos(x) * cy;