如何通过拖动JSXGraph中的另一个元素来拖动滑翔机

时间:2019-08-09 16:19:07

标签: javascript jsxgraph

我在一条直线上有一个滑翔机,在拖动它后会进行动画处理。然后,我在滑翔机旁边创建了一个框(使用4个点和多边形)。

我的问题是,我希望用户拖动此框以拖动滑行器,并使框随滑行器一起移动。

这里是我目前正在使用的完整代码的链接,有助于可视化问题https://jsfiddle.net/uobdpw0y/2/

滑翔机是红色的点,滑行在上面的线是蓝色。 如您所见,拖动红点时框会移动,而拖动框的任何其他部分时框都不会移动。

以下是与该问题相关的代码:

  // create the mass at the moving end of the spring
  var point = board.create('glider', [5, 0, line], {withLabel: false, size: 1});

...

  // create moving box at end of spring
  var opts = {withLabel: false, size: 0, strokeColor:'green', fillColor:'green'};
  var boxPoints = [];
  boxPoints.push(board.create('point',[function(){return point.X()}, 0.5], opts));
  boxPoints.push(board.create('point',[function(){return point.X()}, -0.5], opts));
  boxPoints.push(board.create('point',[function(){return point.X()+2}, -0.5], opts));
  boxPoints.push(board.create('point',[function(){return point.X()+2}, 0.5], opts));

  board.create('polygon', boxPoints, {hasInnerPoints: true});
  board.create('group', boxPoints);

期望的结果将类似于组文档https://jsxgraph.org/docs/symbols/Group.html#781b5564-a671-4327-81c6-de915c8f924e中看到的功能 他们拖动的任何部分都会在此处移动。

我尝试的最初解决方案是将滑翔机包含在用于框的一组点中,但是只能添加“点”对象,而不能添加“滑翔机”对象。

1 个答案:

答案 0 :(得分:0)

这是一个非常好的结构。我的建议如下:

var point = board.create('point', [5, 0], {withLabel: false, size: 1});

// ...

var boxPoints = [];
boxPoints.push(board.create('point',[point.X(), 0.5], opts));
boxPoints.push(board.create('point',[point.X(), -0.5], opts));
boxPoints.push(board.create('point',[point.X()+2, -0.5], opts));
boxPoints.push(board.create('point',[point.X()+2, 0.5], opts));

var pol = board.create('polygon', boxPoints, {hasInnerPoints: true});
board.create('group', boxPoints.concat([point]));
boxPoints[0].on('move', function(e) {
  this.moveTo([this.X(), 0.5], 0);
});
point.on('drag', function(e) {
  this.moveTo([this.X(), 0], 0);
});
pol.on('drag', function(e) {
  point.moveTo([point.X(), 0], 0);
  boxPoints[0].moveTo([point.X(), 0.5], 0);
});

也就是说,滑翔机现在是一个简单点,并且该点和框的垂直位置在每次移动/拖动事件中均得到纠正。实际在https://github.com/nltk/nltk_data/tree/gh-pages/packages上查看。