6 lines
115 B
Python
6 lines
115 B
Python
from math import pi
|
|
|
|
class Point:
|
|
def __init__(self, x: float, y: float):
|
|
self.x = x
|
|
self.y = y |