Home
last modified time | relevance | path

Searched refs:rect3d (Results 1 – 1 of 1) sorted by relevance

/development/tools/winscope/src/viewers/components/rects/
Dmapper3d.ts354 private cropOversizedRect(rect3d: UiRect3D, maxDisplaySize: Size): UiRect3D {
362 const height = Math.abs(rect3d.topLeft.y - rect3d.bottomRight.y);
363 const width = Math.abs(rect3d.topLeft.x - rect3d.bottomRight.x);
366 rect3d.isOversized = true;
367 (rect3d.topLeft.x = (maxDimension - maxDisplaySize.width / 2) * -1),
368 (rect3d.bottomRight.x = maxDimension);
371 rect3d.isOversized = true;
372 rect3d.topLeft.y = (maxDimension - maxDisplaySize.height / 2) * -1;
373 rect3d.bottomRight.y = maxDimension;
376 return rect3d;
[all …]