scaleX
ts
function Rect.scaleX(rect: Rect, factor: number): RectScales the rectangle horizontally by the specified factor while keeping it horizontally centered.
Example
ts
Rect.scaleX({ left: 10, top: 20, width: 100, height: 50 }, 1.5);
// { left: -15, top: 20, width: 150, height: 50 }ts
pipe({ left: 10, top: 20, width: 100, height: 50 }, Rect.scaleX(1.5));
// { left: -15, top: 20, width: 150, height: 50 }