Create even more objects

This commit is contained in:
2024-06-11 01:57:42 +02:00
parent 0c18414176
commit a50fc34ed2
5 changed files with 208 additions and 2 deletions

View File

@@ -0,0 +1,10 @@
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 = []