summaryrefslogtreecommitdiff
path: root/src/projection/stereographic.js
diff options
context:
space:
mode:
authorAbhijith Sheheer <abhijithsheheer@gmail.com>2019-12-08 22:21:53 +0530
committerAbhijith Sheheer <abhijithsheheer@gmail.com>2019-12-08 22:21:53 +0530
commit135260ac27efe9cd9a6cfbe21405af7da3c12733 (patch)
tree6eae1215b31e7cc66faa5fd6572f5bc528aeefd3 /src/projection/stereographic.js
parent5eaf1af6fb8026f362ce6ae0695b74ba1c8bf0fd (diff)
New upstream version 1.11.9
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;