(xv: number, yv: number, bAsAnchor: boolean)
| 405 | } |
| 406 | |
| 407 | protected internalSetPivot(xv: number, yv: number, bAsAnchor: boolean): void { |
| 408 | this._pivotX = xv; |
| 409 | this._pivotY = yv; |
| 410 | this._pivotAsAnchor = bAsAnchor; |
| 411 | if (this._pivotAsAnchor) { |
| 412 | this.handleXYChanged(); |
| 413 | } |
| 414 | } |
| 415 | |
| 416 | protected updatePivotOffset(): void { |
| 417 | if (this._displayObject && (this._pivotX !== 0 || this._pivotY !== 0)) { |
nothing calls this directly
no test coverage detected