( dashSizeValue, gapSizeValue )
| 17177 | } |
| 17178 | |
| 17179 | function setDashAndGap( dashSizeValue, gapSizeValue ) { |
| 17180 | |
| 17181 | if ( _contextDashSize !== dashSizeValue || _contextGapSize !== gapSizeValue ) { |
| 17182 | |
| 17183 | _context.setLineDash( [ dashSizeValue, gapSizeValue ] ); |
| 17184 | _contextDashSize = dashSizeValue; |
| 17185 | _contextGapSize = gapSizeValue; |
| 17186 | |
| 17187 | } |
| 17188 | |
| 17189 | } |
| 17190 | |
| 17191 | }; |
| 17192 |