Initial commit
This commit is contained in:
12
classes/point.py
Normal file
12
classes/point.py
Normal file
@@ -0,0 +1,12 @@
|
||||
from dataclasses import dataclass
|
||||
|
||||
|
||||
@dataclass
|
||||
class Point:
|
||||
__slots__ = (
|
||||
"lon",
|
||||
"lat",
|
||||
)
|
||||
|
||||
lon: float
|
||||
lat: float
|
Reference in New Issue
Block a user