Searched refs:centerY (Results 1 – 9 of 9) sorted by relevance
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/utils/ |
D | Matrix.ets | 63 public postScale(scaleX: number, scaleY: number, centerX?: number, centerY?: number) { 71 if (centerY != null && centerY != undefined) { 72 this.data[Matrix.MTRANS_Y] += -centerY; 76 public setScale(scaleX: number, scaleY: number, centerX?: number, centerY?: number) { 84 if (centerY != null && centerY != undefined) { 85 this.data[Matrix.MTRANS_Y] += -centerY * scaleY;
|
D | ViewPortHandler.ets | 166 return MPPointF.getInstance(this.mContentRect.centerX(), this.mContentRect.centerY());
|
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/data/ |
D | ScaleMode.ets | 38 public centerY: number = 0; //双指缩放、双击的中心点Y 59 this.centerY = 0; 77 this.centerY = 0; 105 this.centerY = 0; 125 this.centerY = event.y;
|
D | Rect.ets | 124 public centerY(): number {
|
/developtools/smartperf_host/ide/src/base-ui/chart/pie/ |
D | LitChartPie.ts | 148 centerY: number | null | undefined; property in LitChartPie 184 this.centerY || 0, 263 let y = ev.pageY - rect.top - this.centerY!; 301 this.centerY = this.clientHeight / 2 - 40; 302 this.ctx?.translate(this.centerX, this.centerY); 315 let y = ev.pageY - rect.top - this.centerY!; 358 this.centerY = this.clientHeight / 2 - 40; 359 this.ctx?.translate(this.centerX, this.centerY); 407 this.ctx?.clearRect(0 - this.centerX!, 0 - this.centerY!, this.clientWidth, this.clientHeight);
|
/developtools/smartperf_host/ide/src/base-ui/chart/column/ |
D | LitChartColumn.ts | 43 centerY?: number; 240 centerY: 280 centerY: 426 it.centerY! + (it.frame!.h - it.height!) / 2
|
/developtools/smartperf_host/ide/src/trace/database/ui-worker/ |
D | ProcedureWorkerCommon.ts | 1050 let centerY = Math.floor(frame.y + frame.height / 2); 1051 wakeUpContext.moveTo(x1, centerY - 6); 1052 wakeUpContext.lineTo(x1 + 4, centerY); 1053 wakeUpContext.lineTo(x1, centerY + 6); 1054 wakeUpContext.lineTo(x1 - 4, centerY); 1055 wakeUpContext.lineTo(x1, centerY - 6); 1905 let centerY = Math.floor(frame.y + frame.height / 2); 1906 wakeUpListContext.moveTo(x1, centerY - 6); 1907 wakeUpListContext.lineTo(x1 + 4, centerY); 1908 wakeUpListContext.lineTo(x1, centerY + 6); [all …]
|
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/components/ |
D | PathView.ets | 225 this.currentYSpace = this.centerY * this.scaleY - this.centerY; 318 this.currentYSpace = this.centerY * this.scaleY - this.centerY;
|
/developtools/smartperf_host/ide/test/base-ui/chart/pie/ |
D | LitChartPie.test.ts | 532 clo.centerY = 10;
|