- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
就说我有一个 d3-force
模拟,我添加了一些这样的力:
const simulation = d3
.forceSimulation()
.nodes(dots)
.force("charge", d3.forceManyBody())
.force("link", d3.forceLink(links))
.force("center", d3.forceCenter());
.on("tick", tick)
是否可以列出所有这些力?例如像 simulation.getForces()
方法?并让它返回 ["charge", "link", "center"]
。
最佳答案
恐怕不行。来自 the source看起来 forces
Map 根本没有暴露在外面。我能想到的唯一解决方法是包装 simulation.force
对象并存储您自己的注册表(这是 hacky),或者保留所有可能值的数组并查看是否 simulation。 force(name)
返回任何内容:
const width = 600,
height = 600;
const svg = d3.select("body")
.append("svg")
.attr("viewBox", [-width / 2, -height / 2, width, height]);
const g = svg.append("g");
const nodes = Array
.from({
length: 20
})
.map(() => {
const [x, y] = d3.pointRadial(2 * Math.PI * Math.random(), 200);
return {
id: Math.random(),
x,
y
};
});
simulation = d3.forceSimulation()
.force("collide", d3.forceCollide().radius(20))
.force("manyBody", d3.forceManyBody().strength(30))
.force("center", d3.forceCenter().strength(0.01))
.alpha(0.1)
.alphaDecay(0)
.nodes(nodes)
.on("tick", () => {
g.selectAll("circle:not(.exit)")
.data(simulation.nodes(), d => d.id)
.join(
enter => enter.append("circle")
.attr("fill", d => d3.interpolateSinebow(d.id))
.attr("r", 1)
.transition()
.duration(2000)
.attr("r", 19)
.selection(),
update => update
.attr("cx", d => d.x)
.attr("cy", d => d.y),
exit => exit
.classed("exit", true)
.transition()
.duration(2000)
.attr("fill", "#eee")
.attr("r", 1)
.remove()
);
});
const allPossibleForces = [
"x",
"y",
"manyBody",
"collide",
"center"
];
const allForces = allPossibleForces.filter(v => simulation.force(v) !== undefined);
console.log(allForces);
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/6.2.0/d3.min.js"></script>
关于javascript - 是否有可能获得当前在 D3 力模拟中活跃的力列表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70179766/
降本手段一招鲜,增效方法吃遍天; 01 互联网行业里; 降本策略千奇百怪,手段却出奇一致;增效方法五花八门,手段更是花里胡哨; 对于企业来说;
有什么方法可以使用 angularjs 中的部分进行代码分组吗? 原因 --- 我的 Controller 包含太多代码。该 Controller 包含了多个方法和大量功能的代码,降低了代码的可读性。
不幸的是,我的数据库的数据模型必须改变,所以我正在寻找最轻松的方式来迁移我的数据。 此时情况如何: create table cargo{ id serial primary key, per
在 QTextEdit 对象中,假设我想知道字符在鼠标光标下的位置。 我会写... void MyQTextEditObject::mousePressEvent(QMouseEvent* mouse
是否可以在 C++ 中返回一个 return 语句或做一些具有类似功能的事情? 例如,如果代码中有几个函数将指针作为输入,并且每个函数都检查指针是否为 nullptr,这将很方便。如果它是一个 nul
我的 PC 上有一个控制台应用程序,它是 signalR 服务器。 我有一个 html 页面,它是互联网上的 signalR 客户端。但我尝试连接服务器,但我有一个错误的请求 400 错误。如果服务器
我想将应用程序作为后台进程运行。当点击应用程序图标时,它不会显示任何 View ,只会启动后台进程。 最佳答案 对于 iOS 这是不可能的,但是对于 android,react native 有 he
我知道有(昂贵的)框架可以让你在 VS C# 中编写 android 应用程序并将其编译为 android apk。 我也知道,可以在 VS 中编写 Java 应用程序(link)。 是否有可能,甚至
我在做: can :manage, :all if user.role == 'admin' can :approve, Anuncio do |anuncio| anuncio.try(:apr
我是一名优秀的程序员,十分优秀!