Home | History | Annotate | Download | only in timeline

Lines Matching refs:Rotate

35         var rotateModeButton = new WebInspector.StatusBarButton(WebInspector.UIString("Rotate mode (V)"), "transform-mode-rotate");
36 rotateModeButton.addEventListener("click", this._setMode.bind(this, WebInspector.TransformController.Modes.Rotate));
37 this._modeButtons[WebInspector.TransformController.Modes.Rotate] = rotateModeButton;
61 Rotate: "Rotate",
102 this._addShortcuts(WebInspector.ShortcutsScreen.LayersPanelShortcuts.RotateMode, this._setMode.bind(this, WebInspector.TransformController.Modes.Rotate));
128 this._setMode(this._mode === WebInspector.TransformController.Modes.Pan ? WebInspector.TransformController.Modes.Rotate : WebInspector.TransformController.Modes.Pan);
253 if (this._mode === WebInspector.TransformController.Modes.Rotate) {
254 // Sic! _onRotate treats X and Y as "rotate around X" and "rotate around Y", so swap X/Y multiplers.
281 if (this._mode === WebInspector.TransformController.Modes.Rotate) {