@@ -89,7 +89,6 @@ class Node {
89
89
90
90
/**
91
91
* Attach a edge to the node
92
- *
93
92
* @param {Edge } edge
94
93
*/
95
94
attachEdge ( edge ) {
@@ -100,7 +99,6 @@ class Node {
100
99
101
100
/**
102
101
* Detach a edge from the node
103
- *
104
102
* @param {Edge } edge
105
103
*/
106
104
detachEdge ( edge ) {
@@ -112,7 +110,6 @@ class Node {
112
110
113
111
/**
114
112
* Set or overwrite options for the node
115
- *
116
113
* @param {object } options an object with options
117
114
* @returns {null|boolean }
118
115
*/
@@ -199,7 +196,6 @@ class Node {
199
196
*
200
197
* Images are always loaded, even if they are not used in the current shape.
201
198
* The user may switch to an image shape later on.
202
- *
203
199
* @private
204
200
*/
205
201
_load_images ( ) {
@@ -255,7 +251,6 @@ class Node {
255
251
256
252
/**
257
253
* Check that opacity is only between 0 and 1
258
- *
259
254
* @param {number } opacity
260
255
* @returns {boolean }
261
256
*/
@@ -265,7 +260,6 @@ class Node {
265
260
266
261
/**
267
262
* Check that origin is 'center' or 'top-left'
268
- *
269
263
* @param {string } origin
270
264
* @returns {boolean }
271
265
*/
@@ -277,10 +271,9 @@ class Node {
277
271
* Copy group option values into the node options.
278
272
*
279
273
* The group options override the global node options, so the copy of group options
280
- * must happen *after* the global node options have been set.
274
+ * must happen *after* the global node options have been set.
281
275
*
282
276
* This method must also be called also if the global node options have changed and the group options did not.
283
- *
284
277
* @param {object } parentOptions
285
278
* @param {object } newOptions new values for the options, currently only passed in for check
286
279
* @param {object } groupList
@@ -333,11 +326,10 @@ class Node {
333
326
/**
334
327
* This process all possible shorthands in the new options and makes sure that the parentOptions are fully defined.
335
328
* Static so it can also be used by the handler.
336
- *
337
329
* @param {object } parentOptions
338
330
* @param {object } newOptions
339
- * @param {boolean } [allowDeletion=false ]
340
- * @param {object } [globalOptions={} ]
331
+ * @param {boolean } [allowDeletion]
332
+ * @param {object } [globalOptions]
341
333
* @param {object } [groupList]
342
334
* @static
343
335
*/
@@ -564,8 +556,7 @@ class Node {
564
556
this . shape = new CustomShape (
565
557
this . options ,
566
558
this . body ,
567
- this . labelModule ,
568
- this . options . ctxRenderer
559
+ this . labelModule
569
560
) ;
570
561
break ;
571
562
case "database" :
@@ -647,7 +638,6 @@ class Node {
647
638
648
639
/**
649
640
* get the title of this node.
650
- *
651
641
* @returns {string } title The title of the node, or undefined when no title
652
642
* has been set.
653
643
*/
@@ -657,7 +647,6 @@ class Node {
657
647
658
648
/**
659
649
* Calculate the distance to the border of the Node
660
- *
661
650
* @param {CanvasRenderingContext2D } ctx
662
651
* @param {number } angle Angle in radians
663
652
* @returns {number } distance Distance to the border in pixels
@@ -668,7 +657,6 @@ class Node {
668
657
669
658
/**
670
659
* Check if this node has a fixed x and y position
671
- *
672
660
* @returns {boolean } true if fixed, false if not
673
661
*/
674
662
isFixed ( ) {
@@ -677,7 +665,6 @@ class Node {
677
665
678
666
/**
679
667
* check if this node is selecte
680
- *
681
668
* @returns {boolean } selected True if node is selected, else false
682
669
*/
683
670
isSelected ( ) {
@@ -686,7 +673,6 @@ class Node {
686
673
687
674
/**
688
675
* Retrieve the value of the node. Can be undefined
689
- *
690
676
* @returns {number } value
691
677
*/
692
678
getValue ( ) {
@@ -695,7 +681,6 @@ class Node {
695
681
696
682
/**
697
683
* Get the current dimensions of the label
698
- *
699
684
* @returns {rect }
700
685
*/
701
686
getLabelSize ( ) {
@@ -705,7 +690,6 @@ class Node {
705
690
/**
706
691
* Adjust the value range of the node. The node will adjust it's size
707
692
* based on its value.
708
- *
709
693
* @param {number } min
710
694
* @param {number } max
711
695
* @param {number } total
@@ -737,7 +721,6 @@ class Node {
737
721
/**
738
722
* Draw this node in the given canvas
739
723
* The 2d context of a HTML canvas can be retrieved by canvas.getContext("2d");
740
- *
741
724
* @param {CanvasRenderingContext2D } ctx
742
725
* @returns {object } Callbacks to draw later on higher layers.
743
726
*/
@@ -751,7 +734,6 @@ class Node {
751
734
752
735
/**
753
736
* Update the bounding box of the shape
754
- *
755
737
* @param {CanvasRenderingContext2D } ctx
756
738
*/
757
739
updateBoundingBox ( ctx ) {
@@ -761,7 +743,6 @@ class Node {
761
743
/**
762
744
* Recalculate the size of this node in the given canvas
763
745
* The 2d context of a HTML canvas can be retrieved by canvas.getContext("2d");
764
- *
765
746
* @param {CanvasRenderingContext2D } ctx
766
747
*/
767
748
resize ( ctx ) {
@@ -772,7 +753,6 @@ class Node {
772
753
/**
773
754
* Determine all visual elements of this node instance, in which the given
774
755
* point falls within the bounding shape.
775
- *
776
756
* @param {point } point
777
757
* @returns {Array.<nodeClickItem|nodeLabelClickItem> } list with the items which are on the point
778
758
*/
@@ -794,7 +774,6 @@ class Node {
794
774
795
775
/**
796
776
* Check if this object is overlapping with the provided object
797
- *
798
777
* @param {object } obj an object with parameters left, top, right, bottom
799
778
* @returns {boolean } True if location is located on node
800
779
*/
@@ -809,7 +788,6 @@ class Node {
809
788
810
789
/**
811
790
* Check if this object is overlapping with the provided object
812
- *
813
791
* @param {object } obj an object with parameters left, top, right, bottom
814
792
* @returns {boolean } True if location is located on node
815
793
*/
@@ -826,7 +804,6 @@ class Node {
826
804
* Check valid values for mass
827
805
*
828
806
* The mass may not be negative or zero. If it is, reset to 1
829
- *
830
807
* @param {object } options
831
808
* @param {Node.id } id
832
809
* @static
0 commit comments