2つの座標間の距離を計算するこのコードがあります。2つの関数はどちらも同じクラス内にあります。
しかし、関数distToPoint
で関数を呼び出すにはどうすればよい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)
...
41
try:self.distToPoint(p)
—
momeara
isNearとdistToPointが異なる引数をとっている場合はどうでしょうか。次に、クラス内にあるdistToPointをどのように呼び出すことができますか?だれでも説明してください。
—
Raghavendra Gupta