You've already forked wakapi-readme-stats
Bar graph added.
This commit is contained in:
15
node_modules/d3-geo/src/projection/orthographic.js
generated
vendored
Normal file
15
node_modules/d3-geo/src/projection/orthographic.js
generated
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
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)];
|
||||
}
|
||||
|
||||
orthographicRaw.invert = azimuthalInvert(asin);
|
||||
|
||||
export default function() {
|
||||
return projection(orthographicRaw)
|
||||
.scale(249.5)
|
||||
.clipAngle(90 + epsilon);
|
||||
}
|
||||
Reference in New Issue
Block a user