mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-12-26 17:30:35 +05:00
0022257: [CEA 900] Regression: on test glue_performance.py
This commit is contained in:
parent
d50d493408
commit
cbb3e2b8bd
@ -1664,9 +1664,15 @@ class Mesh:
|
|||||||
# @param opt boolean parameter for creating/not creating
|
# @param opt boolean parameter for creating/not creating
|
||||||
# the groups Group_On_All_Nodes, Group_On_All_Faces, ...
|
# the groups Group_On_All_Nodes, Group_On_All_Faces, ...
|
||||||
# @param overwrite boolean parameter for overwriting/not overwriting the file
|
# @param overwrite boolean parameter for overwriting/not overwriting the file
|
||||||
|
# @param autoDimension: if @c True (default), a space dimension of a MED mesh can be either
|
||||||
|
# - 1D if all mesh nodes lie on OX coordinate axis, or
|
||||||
|
# - 2D if all mesh nodes lie on XOY coordinate plane, or
|
||||||
|
# - 3D in the rest cases.
|
||||||
|
#
|
||||||
|
# If @a autoDimension is @c False, the space dimension is always 3.
|
||||||
# @ingroup l2_impexp
|
# @ingroup l2_impexp
|
||||||
def ExportToMED(self, f, version, opt=0, overwrite=1):
|
def ExportToMED(self, f, version, opt=0, overwrite=1, autoDimension=True):
|
||||||
self.mesh.ExportToMEDX(f, opt, version, overwrite)
|
self.mesh.ExportToMEDX(f, opt, version, overwrite, autoDimension)
|
||||||
|
|
||||||
# Operations with groups:
|
# Operations with groups:
|
||||||
# ----------------------
|
# ----------------------
|
||||||
|
Loading…
Reference in New Issue
Block a user