(options = {})
| 270 | } |
| 271 | |
| 272 | beginClip(options = {}) { |
| 273 | if (this._clipping) { |
| 274 | throw new Error("It looks like you're trying to clip while already in the middle of clipping. Did you forget to endClip()?"); |
| 275 | } |
| 276 | this._clipping = true; |
| 277 | this._clipInvert = options.invert; |
| 278 | } |
| 279 | |
| 280 | endClip() { |
| 281 | if (!this._clipping) { |
no outgoing calls
no test coverage detected