-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgeode_structural_model.py
More file actions
77 lines (59 loc) · 2.58 KB
/
Copy pathgeode_structural_model.py
File metadata and controls
77 lines (59 loc) · 2.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# Standard library imports
from __future__ import annotations
# Third party imports
import opengeode as og
import opengeode_geosciences as og_geosciences
import geode_viewables as viewables
# Local application imports
from .types import GeodeModelType
from .geode_brep import GeodeBRep
class GeodeStructuralModel(GeodeBRep):
structural_model: og_geosciences.StructuralModel
def __init__(
self, structural_model: og_geosciences.StructuralModel | None = None
) -> None:
self.structural_model = (
structural_model
if structural_model is not None
else og_geosciences.StructuralModel()
)
super().__init__(self.structural_model)
@classmethod
def geode_object_type(cls) -> GeodeModelType:
return "StructuralModel"
def native_extension(self) -> str:
return self.structural_model.native_extension()
def builder(self) -> og_geosciences.StructuralModelBuilder:
return og_geosciences.StructuralModelBuilder(self.structural_model)
@classmethod
def load(cls, filename: str) -> GeodeStructuralModel:
return GeodeStructuralModel(og_geosciences.load_structural_model(filename))
@classmethod
def additional_files(cls, filename: str) -> og.AdditionalFiles:
return og_geosciences.structural_model_additional_files(filename)
@classmethod
def is_loadable(cls, filename: str) -> og.Percentage:
return og_geosciences.is_structural_model_loadable(filename)
@classmethod
def input_extensions(cls) -> list[str]:
return og_geosciences.StructuralModelInputFactory.list_creators()
@classmethod
def output_extensions(cls) -> list[str]:
return og_geosciences.StructuralModelOutputFactory.list_creators()
@classmethod
def object_priority(cls, filename: str) -> int:
return og_geosciences.structural_model_object_priority(filename)
def is_saveable(self, filename: str) -> bool:
return og_geosciences.is_structural_model_saveable(
self.structural_model, filename
)
def save(self, filename: str) -> list[str]:
return og_geosciences.save_structural_model(self.structural_model, filename)
def save_viewable(self, filename_without_extension: str) -> str:
return viewables.save_viewable_structural_model(
self.structural_model, filename_without_extension
)
def save_light_viewable(self, filename_without_extension: str) -> str:
return viewables.save_light_viewable_structural_model(
self.structural_model, filename_without_extension
)