reshape method
Change the route of the #adornedLink by moving the point corresponding to the current #handle to be at the given Point. This is called by #doMouseMove and #doMouseUp with the result of calling #computeReshape to constrain the input point.
This method respects the orthogonality of the link, if necessary limiting movement along only one axis. To maintain orthogonality it may need to modify more than one point in the route.
This method may be overridden. Please read the Introduction page on Extensions for how to override methods and how to call this base method. @expose @param {Point} newPoint the value of the call to #computeReshape.
Implementation
void reshape(_i3.Point newPoint) {
_i4.callMethod(
this,
'reshape',
[newPoint],
);
}