Skip to content

Commit

Permalink
fix source.x -> source.vx.
Browse files Browse the repository at this point in the history
  • Loading branch information
wildone committed Jun 11, 2024
1 parent 0812ab2 commit e888265
Showing 1 changed file with 16 additions and 14 deletions.
30 changes: 16 additions & 14 deletions src/js/graph.js
Original file line number Diff line number Diff line change
Expand Up @@ -587,31 +587,33 @@ window.Widgets.Graph = {};
// );

options.promotable_sim.on('tick', function() {
// console.log(['promotable_sim ticked',this, options.promo_svg
// .selectAll('.plinks')]);
options.promo_svg
.selectAll('.plinks')
.attr('x1', (d) => d.source.x)
.attr('y1', (d) => d.source.y)
.attr('x2', (d) => d.target.x)
.attr('y2', (d) => d.target.y);
.attr('x1', (d) => d.source.vx)
.attr('y1', (d) => d.source.vy)
.attr('x2', (d) => d.target.vx)
.attr('y2', (d) => d.target.vy);

options.promo_svg
.selectAll('.pnodes')
.attr('x', (d) => d.x - options.radius / 2)
.attr('y', (d) => d.y - options.radius / 2);
.attr('x', (d) => d.vx - options.radius / 2)
.attr('y', (d) => d.vy - options.radius / 2);

options.promo_svg.selectAll('.pedgepath').attr(
'd',
function(d) {
//console.log('pedgepath->', d);
return (
'M ' +
d.source.x +
d.source.vx +
' ' +
d.source.y +
d.source.vy +
' L ' +
d.target.x +
d.target.vx +
' ' +
d.target.y
d.target.vy
);
},
// (d) =>
Expand Down Expand Up @@ -648,13 +650,13 @@ window.Widgets.Graph = {};
console.log('sedgepath->', d);
return (
'M ' +
d.source.x +
d.source.vx +
' ' +
d.source.y +
d.source.vy +
' L ' +
d.target.x +
d.target.vx +
' ' +
d.target.y
d.target.vy
);
},
// (d) =>
Expand Down

0 comments on commit e888265

Please sign in to comment.