We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6939b9c commit 3c970b3Copy full SHA for 3c970b3
src/neatmesh/_mesh.py
@@ -20,6 +20,7 @@ def __init__(self, reader: MeshReader2D) -> None:
20
self._analyzer.analyze_non_ortho()
21
22
self.meshio_cell_blocks = self._reader.cell_blocks
23
+ self.dim = 2
24
self.points = self._analyzer.points
25
26
self.edges = self._analyzer.edges
@@ -65,6 +66,7 @@ def __init__(self, reader: MeshReader3D) -> None:
65
66
67
68
69
+ self.dim = 3
70
71
72
# faces data
0 commit comments