Files
GDMC-2024/networks/geometry/Segment3D.py
2024-06-11 01:57:42 +02:00

11 lines
278 B
Python

from typing import Type
from networks.geometry.Enums import LINE_OVERLAP
from networks.geometry.Point3D import Point3D
class Segment3D:
def __init__(start: Type[Point3D], end: Type[Point3D]):
self.start = start
self.end = end
self.coordinates = []