File tree 2 files changed +9
-9
lines changed
packages/joint-core/demo/hull/src
2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 1
- ( function ( joint , V ) {
1
+ ( function ( joint , V , g ) {
2
2
3
3
var graph = new joint . dia . Graph ( { } , { cellNamespace : joint . shapes } ) ;
4
4
17
17
}
18
18
} ) ;
19
19
20
- function random ( max , min ) {
21
- return Math . floor ( Math . random ( ) * ( max - min ) ) + min ;
22
- }
23
-
24
20
// create circles
25
21
Array . from ( { length : 10 } ) . forEach ( function ( _ , n ) {
26
- var x = random ( 100 , 700 ) ;
27
- var y = random ( 100 , 500 ) ;
22
+ var x = g . random ( 100 , 700 ) ;
23
+ var y = g . random ( 100 , 500 ) ;
28
24
createCircle ( x , y , ( n % 3 === 0 ) ? 'inner' : 'outer' ) . addTo ( graph ) ;
29
25
} ) ;
30
26
141
137
142
138
}
143
139
144
- } ) ( joint , V ) ;
140
+ } ) ( joint , V , g ) ;
Original file line number Diff line number Diff line change 1
1
sonar.projectKey =joint
2
- sonar.exclusions =packages/joint-core/demo/chess/src/garbochess.js, packages/joint-core/src/polyfills/**
3
2
sonar.scm.provider =git
4
3
sonar.sources =.
4
+ sonar.tests =packages/joint-core/test, packages/joint-layout-directed-graph/test
5
+ # Exclusions
6
+ sonar.exclusions =packages/joint-core/demo/chess/src/garbochess.js, packages/joint-core/src/polyfills/**
7
+ # Duplicate code detection
8
+ sonar.cpd.exclusions =**/test/**/*, **/demo/**/*, **/examples/**/*
You can’t perform that action at this time.
0 commit comments