iso2mesh 0.0.1__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- iso2mesh/__init__.py +179 -0
- iso2mesh/iso2mesh_core.py +2074 -0
- iso2mesh/iso2mesh_io.py +979 -0
- iso2mesh/iso2mesh_m2v.py +215 -0
- iso2mesh/iso2mesh_misc.py +162 -0
- iso2mesh/iso2mesh_primitive.py +1343 -0
- iso2mesh/iso2mesh_register.py +296 -0
- iso2mesh/iso2mesh_surface.py +37 -0
- iso2mesh/iso2mesh_utils.py +1723 -0
- iso2mesh-0.0.1.dist-info/LICENSE +674 -0
- iso2mesh-0.0.1.dist-info/METADATA +33 -0
- iso2mesh-0.0.1.dist-info/RECORD +14 -0
- iso2mesh-0.0.1.dist-info/WHEEL +6 -0
- iso2mesh-0.0.1.dist-info/top_level.txt +1 -0
iso2mesh/__init__.py
ADDED
|
@@ -0,0 +1,179 @@
|
|
|
1
|
+
"""pyiso2mesh - Iso2Mesh for Python
|
|
2
|
+
"""
|
|
3
|
+
|
|
4
|
+
from .iso2mesh_primitive import (
|
|
5
|
+
meshgrid5,
|
|
6
|
+
meshgrid6,
|
|
7
|
+
latticegrid,
|
|
8
|
+
surfedge,
|
|
9
|
+
volface,
|
|
10
|
+
surfplane,
|
|
11
|
+
surfacenorm,
|
|
12
|
+
nodesurfnorm,
|
|
13
|
+
plotsurf,
|
|
14
|
+
plotasurf,
|
|
15
|
+
plotmesh,
|
|
16
|
+
meshcentroid,
|
|
17
|
+
varargin2struct,
|
|
18
|
+
jsonopt,
|
|
19
|
+
meshabox,
|
|
20
|
+
meshacylinder,
|
|
21
|
+
meshanellip,
|
|
22
|
+
meshunitsphere,
|
|
23
|
+
meshasphere,
|
|
24
|
+
)
|
|
25
|
+
|
|
26
|
+
from .iso2mesh_utils import (
|
|
27
|
+
finddisconnsurf,
|
|
28
|
+
surfedge,
|
|
29
|
+
volface,
|
|
30
|
+
extractloops,
|
|
31
|
+
meshconn,
|
|
32
|
+
meshcentroid,
|
|
33
|
+
nodevolume,
|
|
34
|
+
elemvolume,
|
|
35
|
+
neighborelem,
|
|
36
|
+
layersurf,
|
|
37
|
+
faceneighbors,
|
|
38
|
+
edgeneighbors,
|
|
39
|
+
maxsurf,
|
|
40
|
+
flatsegment,
|
|
41
|
+
surfplane,
|
|
42
|
+
surfinterior,
|
|
43
|
+
surfpart,
|
|
44
|
+
surfseeds,
|
|
45
|
+
meshquality,
|
|
46
|
+
meshedge,
|
|
47
|
+
meshface,
|
|
48
|
+
surfacenorm,
|
|
49
|
+
nodesurfnorm,
|
|
50
|
+
uniqedges,
|
|
51
|
+
uniqfaces,
|
|
52
|
+
innersurf,
|
|
53
|
+
outersurf,
|
|
54
|
+
surfvolume,
|
|
55
|
+
insurface,
|
|
56
|
+
advancefront,
|
|
57
|
+
meshreorient,
|
|
58
|
+
mesheuler,
|
|
59
|
+
raytrace,
|
|
60
|
+
)
|
|
61
|
+
|
|
62
|
+
from .iso2mesh_misc import (
|
|
63
|
+
getexeext,
|
|
64
|
+
rotatevec3d,
|
|
65
|
+
fallbackexeext,
|
|
66
|
+
)
|
|
67
|
+
|
|
68
|
+
from .iso2mesh_io import (
|
|
69
|
+
saveinr,
|
|
70
|
+
saveoff,
|
|
71
|
+
saveasc,
|
|
72
|
+
saveasc,
|
|
73
|
+
savestl,
|
|
74
|
+
savebinstl,
|
|
75
|
+
saveoff,
|
|
76
|
+
mwpath,
|
|
77
|
+
deletemeshfile,
|
|
78
|
+
readtetgen,
|
|
79
|
+
savesurfpoly,
|
|
80
|
+
mcpath,
|
|
81
|
+
readoff,
|
|
82
|
+
)
|
|
83
|
+
|
|
84
|
+
from .iso2mesh_core import (
|
|
85
|
+
s2m,
|
|
86
|
+
surf2mesh,
|
|
87
|
+
sms,
|
|
88
|
+
smoothsurf,
|
|
89
|
+
fillsurf,
|
|
90
|
+
binsurface,
|
|
91
|
+
meshcheckrepair,
|
|
92
|
+
removedupnodes,
|
|
93
|
+
removedupelem,
|
|
94
|
+
vol2restrictedtri,
|
|
95
|
+
removeisolatednode,
|
|
96
|
+
)
|
|
97
|
+
|
|
98
|
+
__version__ = "0.1.0"
|
|
99
|
+
__all__ = [
|
|
100
|
+
"meshgrid5",
|
|
101
|
+
"meshgrid6",
|
|
102
|
+
"latticegrid",
|
|
103
|
+
"surfedge",
|
|
104
|
+
"volface",
|
|
105
|
+
"surfplane",
|
|
106
|
+
"surfacenorm",
|
|
107
|
+
"nodesurfnorm",
|
|
108
|
+
"plotsurf",
|
|
109
|
+
"plotasurf",
|
|
110
|
+
"plotmesh",
|
|
111
|
+
"meshcentroid",
|
|
112
|
+
"varargin2struct",
|
|
113
|
+
"jsonopt",
|
|
114
|
+
"finddisconnsurf",
|
|
115
|
+
"surfedge",
|
|
116
|
+
"volface",
|
|
117
|
+
"extractloops",
|
|
118
|
+
"meshconn",
|
|
119
|
+
"meshcentroid",
|
|
120
|
+
"nodevolume",
|
|
121
|
+
"elemvolume",
|
|
122
|
+
"neighborelem",
|
|
123
|
+
"layersurf",
|
|
124
|
+
"faceneighbors",
|
|
125
|
+
"edgeneighbors",
|
|
126
|
+
"maxsurf",
|
|
127
|
+
"flatsegment",
|
|
128
|
+
"surfplane",
|
|
129
|
+
"surfinterior",
|
|
130
|
+
"surfpart",
|
|
131
|
+
"surfseeds",
|
|
132
|
+
"meshquality",
|
|
133
|
+
"meshedge",
|
|
134
|
+
"meshface",
|
|
135
|
+
"surfacenorm",
|
|
136
|
+
"nodesurfnorm",
|
|
137
|
+
"uniqedges",
|
|
138
|
+
"uniqfaces",
|
|
139
|
+
"innersurf",
|
|
140
|
+
"outersurf",
|
|
141
|
+
"surfvolume",
|
|
142
|
+
"insurface",
|
|
143
|
+
"advancefront",
|
|
144
|
+
"meshreorient",
|
|
145
|
+
"getexeext",
|
|
146
|
+
"saveinr",
|
|
147
|
+
"saveoff",
|
|
148
|
+
"saveasc",
|
|
149
|
+
"saveasc",
|
|
150
|
+
"savestl",
|
|
151
|
+
"savebinstl",
|
|
152
|
+
"saveoff",
|
|
153
|
+
"mwpath",
|
|
154
|
+
"deletemeshfile",
|
|
155
|
+
"readtetgen",
|
|
156
|
+
"savesurfpoly",
|
|
157
|
+
"mcpath",
|
|
158
|
+
"meshabox",
|
|
159
|
+
"meshacylinder",
|
|
160
|
+
"meshanellip",
|
|
161
|
+
"s2m",
|
|
162
|
+
"surf2mesh",
|
|
163
|
+
"sms",
|
|
164
|
+
"smoothsurf",
|
|
165
|
+
"fillsurf",
|
|
166
|
+
"rotatevec3d",
|
|
167
|
+
"readoff",
|
|
168
|
+
"vol2restrictedtri",
|
|
169
|
+
"meshcheckrepair",
|
|
170
|
+
"removedupnodes",
|
|
171
|
+
"removedupelem",
|
|
172
|
+
"removeisolatednode",
|
|
173
|
+
"meshunitsphere",
|
|
174
|
+
"fallbackexeext",
|
|
175
|
+
"meshasphere",
|
|
176
|
+
"mesheuler",
|
|
177
|
+
"raytrace",
|
|
178
|
+
]
|
|
179
|
+
__license__ = """GNU General Public License v3 and later"""
|