Let’s suppose that the graph is static and that we cant’ move the nodes.
What i want to achieve is the following :
Given 4 points,
P1: inital point
P2: destination point
C1: first control point
C2: second control point
So i want to draw a bezier curve that go from P1 to P2 and follow the direction of C1 and C2. It is a “cubic Bézier curve”. The problem is that the classic bezier curve don’t take into consideration the control points C1 and C2. It only takes into consideration P1 and P2 (“from”, “to” properties).
That’s why i want to customize the link route.
Is it clear ?
