边缘移动的控制点
在我的图形边缘有点,我想要有这样的行为:我拖动边缘点之一,另一个点保持在原位,只有我的点(在鼠标光标下)正在拖动,并且另一个点之间的距离发生变化。我怎样才能实现这个?
In my graph edges have points and I want to have such behavior: I drag one of edges points another points stay in place and only my point(under mouse cursor) is dragging and the distance between another points changes. How can I implement this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果没有 sscce,您可以查看这些示例以获取一些想法:此示例展示了如何操作具有两个端点的线。 这个更复杂的示例管理一个
List
其中每个节点代表一个可以拖动的Point
。Absent your sscce, you might look at these examples for some ideas: This example shows how to manipulate a line with two endpoints. This more complex example manages a
List<Node>
in which each node represents aPoint
that can be dragged.