Function: getBezierPath ​
▸ getBezierPath(«destructured»): [path: string, labelX: number, labelY: number, offsetX: number, offsetY: number]
Get a bezier path from source to target handle
Parameters ​
| Name | Type | 
|---|---|
| «destructured» | GetBezierPathParams | 
Returns ​
[path: string, labelX: number, labelY: number, offsetX: number, offsetY: number]
A path string you can use in an SVG, the labelX and labelY position (center of path) and offsetX, offsetY between source handle and label
Example
ts
const source = { x: 0, y: 20 };
   const target = { x: 150, y: 100 };
   
   const [path, labelX, labelY, offsetX, offsetY] = getBezierPath({
     sourceX: source.x,
     sourceY: source.y,
     sourcePosition: Position.Right,
     targetX: target.x,
     targetY: target.y,
     targetPosition: Position.Left,
});