Split true north in API and Blender UI to be editable independent of georeferencing

They are two separate concepts, after all.
This commit is contained in:
Dion Moult
2024-06-23 23:19:27 +10:00
parent 013b138e5c
commit e295d596fe
11 changed files with 273 additions and 110 deletions
@@ -26,6 +26,7 @@ map coordinates and project local engineering coordinates.
from .. import wrap_usecases
from .add_georeferencing import add_georeferencing
from .edit_georeferencing import edit_georeferencing
from .edit_true_north import edit_true_north
from .edit_wcs import edit_wcs
from .remove_georeferencing import remove_georeferencing
@@ -34,6 +35,7 @@ wrap_usecases(__path__, __name__)
__all__ = [
"add_georeferencing",
"edit_georeferencing",
"edit_true_north",
"edit_wcs",
"remove_georeferencing",
]