added new annotation types

This commit is contained in:
Brian Bjarke Jensen
2025-09-18 21:05:47 +02:00
parent 86935ab18e
commit 4a8e091a2d
8 changed files with 137 additions and 46 deletions
+6
View File
@@ -5,9 +5,12 @@ Exposes core data transfer objects and enums for use throughout the project.
from .angle_enum import AngleEnum
from .annotation import Annotation
from .colour_enum import ColourEnum
from .contact_enum import ContactEnum
from .depth_enum import DepthEnum
from .distance_enum import DistanceEnum
from .job import Job
from .lighting_enum import LightingEnum
from .point_of_view_enum import PointOfViewEnum
__all__ = [
@@ -17,4 +20,7 @@ __all__ = [
"DistanceEnum",
"Job",
"PointOfViewEnum",
"ColourEnum",
"DepthEnum",
"LightingEnum",
]