(brushModel: BrushModel, ecModel: GlobalModel, api: ExtensionAPI, payload: Payload)
| 54 | } |
| 55 | |
| 56 | updateTransform(brushModel: BrushModel, ecModel: GlobalModel, api: ExtensionAPI, payload: Payload) { |
| 57 | // PENDING: `updateTransform` is a little tricky, whose layout need |
| 58 | // to be calculate mandatorily and other stages will not be performed. |
| 59 | // Take care the correctness of the logic. See #11754 . |
| 60 | layoutCovers(ecModel); |
| 61 | this._updateController(brushModel, ecModel, api, payload); |
| 62 | } |
| 63 | |
| 64 | updateVisual(brushModel: BrushModel, ecModel: GlobalModel, api: ExtensionAPI, payload: Payload) { |
| 65 | this.updateTransform(brushModel, ecModel, api, payload); |
no test coverage detected