You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
529 B
18 lines
529 B
import {sinusoidalRaw} from "../sinusoidal.js";
|
|
import interrupt from "./index.js";
|
|
|
|
var lobes = [[ // northern hemisphere
|
|
[[-180, 0], [-110, 90], [ -40, 0]],
|
|
[[ -40, 0], [ 0, 90], [ 40, 0]],
|
|
[[ 40, 0], [ 110, 90], [ 180, 0]]
|
|
], [ // southern hemisphere
|
|
[[-180, 0], [-110, -90], [ -40, 0]],
|
|
[[ -40, 0], [ 0, -90], [ 40, 0]],
|
|
[[ 40, 0], [ 110, -90], [ 180, 0]]
|
|
]];
|
|
|
|
export default function() {
|
|
return interrupt(sinusoidalRaw, lobes)
|
|
.scale(152.63)
|
|
.rotate([-20, 0]);
|
|
}
|
|
|