( dashSizeValue, gapSizeValue )
| 16343 | } |
| 16344 | |
| 16345 | function setDashAndGap( dashSizeValue, gapSizeValue ) { |
| 16346 | |
| 16347 | if ( _contextDashSize !== dashSizeValue || _contextGapSize !== gapSizeValue ) { |
| 16348 | |
| 16349 | _context.setLineDash( [ dashSizeValue, gapSizeValue ] ); |
| 16350 | _contextDashSize = dashSizeValue; |
| 16351 | _contextGapSize = gapSizeValue; |
| 16352 | |
| 16353 | } |
| 16354 | |
| 16355 | } |
| 16356 | |
| 16357 | }; |
| 16358 |