File tree Expand file tree Collapse file tree 3 files changed +10
-4
lines changed Expand file tree Collapse file tree 3 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 7
7
* This edge renderer will display edges as arrows going from the source node
8
8
* to the target node.
9
9
*
10
- * @param {object } node The node object.
10
+ * @param {object } edge The edge object.
11
+ * @param {object } source The source node object.
12
+ * @param {object } target The target node object.
11
13
* @param {CanvasRenderingContext2D } context The canvas context.
12
14
* @param {configurable } settings The settings function.
13
15
*/
Original file line number Diff line number Diff line change 6
6
/**
7
7
* This edge renderer will display edges as curves.
8
8
*
9
- * @param {object } node The node object.
9
+ * @param {object } edge The edge object.
10
+ * @param {object } source The source node object.
11
+ * @param {object } target The target node object.
10
12
* @param {CanvasRenderingContext2D } context The canvas context.
11
13
* @param {configurable } settings The settings function.
12
14
*/
Original file line number Diff line number Diff line change 4
4
sigma . utils . pkg ( 'sigma.canvas.edges' ) ;
5
5
6
6
/**
7
- * The default edge renderer. It renders the node as a simple line.
7
+ * The default edge renderer. It renders the edge as a simple line.
8
8
*
9
- * @param {object } node The node object.
9
+ * @param {object } edge The edge object.
10
+ * @param {object } source The source node object.
11
+ * @param {object } target The target node object.
10
12
* @param {CanvasRenderingContext2D } context The canvas context.
11
13
* @param {configurable } settings The settings function.
12
14
*/
You can’t perform that action at this time.
0 commit comments