-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgeode_polygonal_surface2d.py
More file actions
72 lines (54 loc) · 2.45 KB
/
Copy pathgeode_polygonal_surface2d.py
File metadata and controls
72 lines (54 loc) · 2.45 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
# Standard library imports
from __future__ import annotations
# Third party imports
import opengeode as og
import geode_viewables as viewables
# Local application imports
from .types import GeodeMeshType
from .geode_surface_mesh2d import GeodeSurfaceMesh2D
class GeodePolygonalSurface2D(GeodeSurfaceMesh2D):
polygonal_surface: og.PolygonalSurface2D
def __init__(self, polygonal_surface: og.PolygonalSurface2D | None = None) -> None:
self.polygonal_surface = (
polygonal_surface
if polygonal_surface is not None
else og.PolygonalSurface2D.create()
)
super().__init__(self.polygonal_surface)
@classmethod
def geode_object_type(cls) -> GeodeMeshType:
return "PolygonalSurface2D"
def native_extension(self) -> str:
return self.polygonal_surface.native_extension()
def builder(self) -> og.PolygonalSurfaceBuilder2D:
return og.PolygonalSurfaceBuilder2D.create(self.polygonal_surface)
@classmethod
def load(cls, filename: str) -> GeodePolygonalSurface2D:
return GeodePolygonalSurface2D(og.load_polygonal_surface2D(filename))
@classmethod
def additional_files(cls, filename: str) -> og.AdditionalFiles:
return og.polygonal_surface_additional_files2D(filename)
@classmethod
def is_loadable(cls, filename: str) -> og.Percentage:
return og.is_polygonal_surface_loadable2D(filename)
@classmethod
def input_extensions(cls) -> list[str]:
return og.PolygonalSurfaceInputFactory2D.list_creators()
@classmethod
def output_extensions(cls) -> list[str]:
return og.PolygonalSurfaceOutputFactory2D.list_creators()
@classmethod
def object_priority(cls, filename: str) -> int:
return og.polygonal_surface_object_priority2D(filename)
def is_saveable(self, filename: str) -> bool:
return og.is_polygonal_surface_saveable2D(self.polygonal_surface, filename)
def save(self, filename: str) -> list[str]:
return og.save_polygonal_surface2D(self.polygonal_surface, filename)
def save_viewable(self, filename_without_extension: str) -> str:
return viewables.save_viewable_polygonal_surface2D(
self.polygonal_surface, filename_without_extension
)
def save_light_viewable(self, filename_without_extension: str) -> str:
return viewables.save_light_viewable_polygonal_surface2D(
self.polygonal_surface, filename_without_extension
)