Hi, we’re using the linking functionality from Dynamic Ports and we’re running into an “issue”. The users are wondering if it is possible for links inside of a group/multi-selection to stay static and just rotate along with the group they are inside, instead of redrawing and reorienting after each rotate. I tried just changing the angle of the link itself but it added an offset to it and would have to end up redrawing the link in the end. I was overwriting the computePoints() function and what I have to far is
computePoints = function() {
this.angle = this.angle + 5;
return true;
}
Do you have any ideas on how to make that work nicely?
Thanks