python 获取矩形中心点
时间: 2023-08-18 13:10:27 浏览: 436
矩形中心和角度的寻找.hdev
要获取矩形的中心点,你需要知道矩形的左上角坐标和矩形的宽度和高度。假设矩形的左上角坐标为 `(x, y)`,宽度为 `w`,高度为 `h`,那么矩形的中心点坐标可以通过以下公式计算:
中心点 x 坐标 = x + w / 2
中心点 y 坐标 = y + h / 2
使用 Python 代码可以这样实现:
```python
def get_rectangle_center(x, y, w, h):
center_x = x + w / 2
center_y = y + h / 2
return center_x, center_y
# 示例使用
x = 10
y = 20
width = 30
height = 40
center = get_rectangle_center(x, y, width, height)
print("矩形中心点坐标:", center)
```
这段代码会输出矩形的中心点坐标 `(25.0, 40.0)`。请根据你的具体矩形参数修改代码中的变量值。
阅读全文