setCenter
ts
function Rect.setCenter(rect: Rect, x: number, y: number): RectSets the center point of the rectangle to the specified coordinates.
Example
ts
Rect.setCenter({ left: 10, top: 20, width: 100, height: 50 }, 75, 60);
// { left: 25, top: 35, width: 100, height: 50 }ts
pipe({ left: 10, top: 20, width: 100, height: 50 }, Rect.setCenter(75, 60));
// { left: 25, top: 35, width: 100, height: 50 }