|
Functions | |
| def | smeshDC::smeshDC.CreateMeshesFromUNV |
| Creates a Mesh object importing data from the given UNV file. | |
| def | smeshDC::smeshDC.CreateMeshesFromMED |
| Creates a Mesh object(s) importing data from the given MED file. | |
| def | smeshDC::smeshDC.CreateMeshesFromSTL |
| Creates a Mesh object importing data from the given STL file. | |
| def | smeshDC::Mesh.ExportToMED |
| Deprecated, used only for compatibility! Please, use ExportToMEDX() method instead. | |
| def | smeshDC::Mesh.ExportMED |
| Exports the mesh in a file in MED format and chooses the version of MED format allowing to overwrite the file if it exists or add the exported data to its contents. | |
| def | smeshDC::Mesh.ExportDAT |
| Exports the mesh in a file in DAT format. | |
| def | smeshDC::Mesh.ExportUNV |
| Exports the mesh in a file in UNV format. | |
| def | smeshDC::Mesh.ExportSTL |
| Export the mesh in a file in STL format. | |
| def smeshDC.smeshDC.CreateMeshesFromMED | ( | self, | |
| theFileName | |||
| ) | [inherited] |
Creates a Mesh object(s) importing data from the given MED file.
Definition at line 672 of file smeshDC.py.
| def smeshDC.smeshDC.CreateMeshesFromSTL | ( | self, | |
| theFileName | |||
| ) | [inherited] |
Creates a Mesh object importing data from the given STL file.
Definition at line 683 of file smeshDC.py.
| def smeshDC.smeshDC.CreateMeshesFromUNV | ( | self, | |
| theFileName | |||
| ) | [inherited] |
Creates a Mesh object importing data from the given UNV file.
Definition at line 664 of file smeshDC.py.
| def smeshDC.Mesh.ExportDAT | ( | self, | |
| f | |||
| ) | [inherited] |
Exports the mesh in a file in DAT format.
| f | the file name |
Definition at line 1691 of file smeshDC.py.
| def smeshDC.Mesh.ExportMED | ( | self, | |
| f, | |||
auto_groups = 0, |
|||
version = MED_V2_2, |
|||
overwrite = 1 |
|||
| ) | [inherited] |
Exports the mesh in a file in MED format and chooses the version of MED format allowing to overwrite the file if it exists or add the exported data to its contents.
| f | is the file name |
| auto_groups | boolean parameter for creating/not creating the groups Group_On_All_Nodes, Group_On_All_Faces, ... ; the typical use is auto_groups=false. |
| version | MED format version(MED_V2_1 or MED_V2_2) |
| overwrite | boolean parameter for overwriting/not overwriting the file |
Definition at line 1685 of file smeshDC.py.
| def smeshDC.Mesh.ExportSTL | ( | self, | |
| f, | |||
ascii = 1 |
|||
| ) | [inherited] |
Export the mesh in a file in STL format.
| f | the file name |
| ascii | defines the file encoding |
Definition at line 1704 of file smeshDC.py.
| def smeshDC.Mesh.ExportToMED | ( | self, | |
| f, | |||
| version, | |||
opt = 0, |
|||
overwrite = 1 |
|||
| ) | [inherited] |
Deprecated, used only for compatibility! Please, use ExportToMEDX() method instead.
Exports the mesh in a file in MED format and chooses the version of MED format allowing to overwrite the file if it exists or add the exported data to its contents
| f | the file name |
| version | values are SMESH.MED_V2_1, SMESH.MED_V2_2 |
| opt | boolean parameter for creating/not creating the groups Group_On_All_Nodes, Group_On_All_Faces, ... |
| overwrite | boolean parameter for overwriting/not overwriting the file |
Definition at line 1673 of file smeshDC.py.
| def smeshDC.Mesh.ExportUNV | ( | self, | |
| f | |||
| ) | [inherited] |
Exports the mesh in a file in UNV format.
| f | the file name |
Definition at line 1697 of file smeshDC.py.