Skip to content

Commit

Permalink
path animated + link 2 image
Browse files Browse the repository at this point in the history
  • Loading branch information
Theo Jaunet committed Jul 31, 2019
1 parent 09b6d15 commit 308a8e8
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion js/drawVector.js
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,26 @@ function link_model(svg, data) {
.attr('stroke', '#555555')
.attr('stroke-dasharray', "4,2")
.attr('stroke-width', '3');


svg.append('line')
.attr('x1', 468)
.attr('x2', 527)
.attr('y1', 478)
.attr('y2', tool[2] - 99)
.attr('stroke', '#555555')
.attr('stroke-dasharray', "4,2")
.attr('stroke-width', '3');


svg.append('line')
.attr('x1', 468)
.attr('x2', 515)
.attr('y1', 608)
.attr('y2', tool[2] - 60)
.attr('stroke', '#555555')
.attr('stroke-dasharray', "4,2")
.attr('stroke-width', '3');
}


Expand Down Expand Up @@ -329,7 +349,6 @@ function deler() {
} else {
load_data(diy[iz], sels)
}

}
}

0 comments on commit 308a8e8

Please sign in to comment.