Files
2026-01-16 17:13:01 +01:00

6 lines
115 B
Python

from math import pi
class Point:
def __init__(self, x: float, y: float):
self.x = x
self.y = y