MCPcopy Create free account
hub / github.com/BIT-DataLab/LakeBench / Circle

Class Circle

join/Pexeso/Pivot_Metric.py:268–272  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

266# return outliers
267
268class Circle:
269 def __init__(self, x, y, r):
270 self.x = x
271 self.y = y
272 self.r = r
273
274def circle_intersection(c1, c2):
275 d = math.sqrt((c1.x - c2.x)**2 + (c1.y - c2.y)**2)

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected