mirror of
https://github.com/kalmarek/SmallHyperbolic
synced 2024-11-23 15:35:27 +01:00
more cleanup
This commit is contained in:
parent
e2278a2961
commit
445dafd0ba
8
docs/morphisms/js/d3_visualisation.js
vendored
8
docs/morphisms/js/d3_visualisation.js
vendored
@ -1,7 +1,7 @@
|
||||
function drag(simulation) {
|
||||
|
||||
function dragstarted(event, d) {
|
||||
if (!event.active) simulation.alphaTarget(0.3).restart();
|
||||
if (!event.active) simulation.alphaTarget(0.4).restart();
|
||||
d.fx = d.x;
|
||||
d.fy = d.y;
|
||||
}
|
||||
@ -59,10 +59,6 @@ function dehighlight(node) {
|
||||
;
|
||||
}
|
||||
|
||||
function _union(...arr) {
|
||||
return arr.reduce((first, second) => [...new Set(first.concat(second))]);
|
||||
}
|
||||
|
||||
async function create_svg(
|
||||
data,
|
||||
width,
|
||||
@ -89,6 +85,7 @@ async function create_svg(
|
||||
.force("x", d3.forceX())
|
||||
.force("y", d3.forceY().y(d => 100 * (2 * d.level + 1)))
|
||||
.force("radial", d3.forceRadial(d => 20 * (2*d.level), width/2, 0))
|
||||
;
|
||||
|
||||
const svg = d3.create("svg")
|
||||
.attr("preserveAspectRatio", "xMinYMin meet")
|
||||
@ -139,7 +136,6 @@ async function create_svg(
|
||||
)
|
||||
;
|
||||
return all_desc;
|
||||
// return _union(desc, _union(...desc.map(l=>find_descendants(l.target))));
|
||||
}
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user