()
| 141 | // Pop the previous states out of the push pop stack and |
| 142 | // assign it back to the current state |
| 143 | pop() { |
| 144 | this._pushPopDepth--; |
| 145 | const diff = this._pushPopStack.pop() || {}; |
| 146 | const modified = this.states.getModified(); |
| 147 | this.states.applyDiff(diff); |
| 148 | this.updateShapeVertexProperties(modified); |
| 149 | this.updateShapeProperties(modified); |
| 150 | } |
| 151 | |
| 152 | bezierOrder(order) { |
| 153 | if (order === undefined) { |
no test coverage detected