Initial commit
This commit is contained in:
commit
78f8d225ee
21173 changed files with 2907774 additions and 0 deletions
25
node_modules/d3-shape/src/symbol/wye.js
generated
vendored
Normal file
25
node_modules/d3-shape/src/symbol/wye.js
generated
vendored
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
import {sqrt} from "../math.js";
|
||||
|
||||
const c = -0.5;
|
||||
const s = sqrt(3) / 2;
|
||||
const k = 1 / sqrt(12);
|
||||
const a = (k / 2 + 1) * 3;
|
||||
|
||||
export default {
|
||||
draw(context, size) {
|
||||
const r = sqrt(size / a);
|
||||
const x0 = r / 2, y0 = r * k;
|
||||
const x1 = x0, y1 = r * k + r;
|
||||
const x2 = -x1, y2 = y1;
|
||||
context.moveTo(x0, y0);
|
||||
context.lineTo(x1, y1);
|
||||
context.lineTo(x2, y2);
|
||||
context.lineTo(c * x0 - s * y0, s * x0 + c * y0);
|
||||
context.lineTo(c * x1 - s * y1, s * x1 + c * y1);
|
||||
context.lineTo(c * x2 - s * y2, s * x2 + c * y2);
|
||||
context.lineTo(c * x0 + s * y0, c * y0 - s * x0);
|
||||
context.lineTo(c * x1 + s * y1, c * y1 - s * x1);
|
||||
context.lineTo(c * x2 + s * y2, c * y2 - s * x2);
|
||||
context.closePath();
|
||||
}
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue