1.Point类,这是平面坐标系中的一个点,此类有x和y坐标值作为属性,也有计算点对象到另一个点的距离的方法
时间: 2023-05-23 07:01:06 浏览: 161
pointDraw.rar_point和draw区别_在matlab中画分类点的程序
一个实现 Point 类的示例代码如下:
```
class Point:
def __init__(self, x, y):
self.x = x
self.y = y
def distance(self, other):
dx = self.x - other.x
dy = self.y - other.y
return (dx ** 2 + dy ** 2) ** 0.5
```
这个类有两个属性 x 和 y,代表了点的横纵坐标。还有一个 distance 方法,参数为另外一个点对象 other,返回当前点到 other 的距离。
如果你有其他关于 Point 类的问题,可以继续提问。
阅读全文