我有这段代码来计算两个坐标之间的距离。这两个函数都在同一个类中。
然而,我如何调用函数disttoppoint在函数isNear?
class Coordinates:
def distToPoint(self, p):
"""
Use pythagoras to find distance
(a^2 = b^2 + c^2)
"""
...
def isNear(self, p):
distToPoint(self, p)
...