@@ -59,10 +59,10 @@ export default function CustomRenderer(eventBus, styles) {
59
59
height = element . height ;
60
60
61
61
var trianglePath = [
62
- [ 'M' , x + width / 2 , y ] ,
63
- [ 'l' , width / 2 , height ] ,
64
- [ 'l' , - width , 0 ] ,
65
- [ 'z' ]
62
+ [ 'M' , x + width / 2 , y ] ,
63
+ [ 'l' , width / 2 , height ] ,
64
+ [ 'l' , - width , 0 ] ,
65
+ [ 'z' ]
66
66
] ;
67
67
68
68
return componentsToPath ( trianglePath ) ;
@@ -99,11 +99,11 @@ export default function CustomRenderer(eventBus, styles) {
99
99
radius = shape . width / 2 ;
100
100
101
101
var circlePath = [
102
- [ 'M' , cx , cy ] ,
103
- [ 'm' , 0 , - radius ] ,
104
- [ 'a' , radius , radius , 0 , 1 , 1 , 0 , 2 * radius ] ,
105
- [ 'a' , radius , radius , 0 , 1 , 1 , 0 , - 2 * radius ] ,
106
- [ 'z' ]
102
+ [ 'M' , cx , cy ] ,
103
+ [ 'm' , 0 , - radius ] ,
104
+ [ 'a' , radius , radius , 0 , 1 , 1 , 0 , 2 * radius ] ,
105
+ [ 'a' , radius , radius , 0 , 1 , 1 , 0 , - 2 * radius ] ,
106
+ [ 'z' ]
107
107
] ;
108
108
109
109
return componentsToPath ( circlePath ) ;
@@ -124,12 +124,12 @@ export default function CustomRenderer(eventBus, styles) {
124
124
} ) ;
125
125
126
126
var connectionPath = [
127
- [ 'M' , waypoints [ 0 ] . x , waypoints [ 0 ] . y ]
127
+ [ 'M' , waypoints [ 0 ] . x , waypoints [ 0 ] . y ]
128
128
] ;
129
129
130
130
waypoints . forEach ( function ( waypoint , index ) {
131
131
if ( index !== 0 ) {
132
- connectionPath . push ( [ 'L' , waypoint . x , waypoint . y ] ) ;
132
+ connectionPath . push ( [ 'L' , waypoint . x , waypoint . y ] ) ;
133
133
}
134
134
} ) ;
135
135
0 commit comments