( dashSizeValue, gapSizeValue )
| 16385 | } |
| 16386 | |
| 16387 | function setDashAndGap( dashSizeValue, gapSizeValue ) { |
| 16388 | |
| 16389 | if ( _contextDashSize !== dashSizeValue || _contextGapSize !== gapSizeValue ) { |
| 16390 | |
| 16391 | _context.setLineDash( [ dashSizeValue, gapSizeValue ] ); |
| 16392 | _contextDashSize = dashSizeValue; |
| 16393 | _contextGapSize = gapSizeValue; |
| 16394 | |
| 16395 | } |
| 16396 | |
| 16397 | } |
| 16398 | |
| 16399 | }; |
| 16400 |