Commit Graph

810 Commits

Author SHA1 Message Date
eap
441f1e7dca // PAL18941(a saved study with a mesh belong Z is opened and the mesh is belong X)
if ( aMeshDimension == 1 && !anIsXDimension ) // 1D only if mesh is along OX
-          aMeshDimension = 3;
+          if ( anIsYDimension ) {
+            aMeshDimension = 2;
+            anIsXDimension = true;
+          } else {
+            aMeshDimension = 3;
+          }
       }
2008-02-11 08:41:34 +00:00
eap
a9e813ace3 + // PAL18941(a saved study with a mesh belong Z is opened and the mesh is belong X)
+        if ( aMeshDimension == 1 && !anIsXDimension ) // 1D only if mesh is along OX
+          aMeshDimension = 3;
2008-02-08 14:17:50 +00:00
maintenance team
1db871e848 Changing version to 4.1.1 2008-02-06 14:07:15 +00:00
jfa
434772a02f NPAL17873. Update smesh.py: add precision parameter to LocalLength method. 2008-02-06 09:41:21 +00:00
jfa
553205962e NPAL17873. Update smesh.py: add precision parameter to LocalLength method. 2008-02-06 09:36:04 +00:00
jfa
64efc57318 Data types description that are used by YACS. A patch by Christian CAREMOLI. 2008-02-01 12:16:56 +00:00
jfa
03cd588b86 NPAL17873: SMESH add a triangle instead of make quadrangles only. 2008-02-01 09:17:04 +00:00
jfa
f27fb702a4 NPAL17873: SMESH add a triangle instead of make quadrangles only. 2008-02-01 08:07:48 +00:00
maintenance team
1eb94bb23a Update documentation for bug NPAL16617 and NPAL16812 2008-01-31 10:23:21 +00:00
dmv
ac9e04e4e6 IPAL 17997 Make uniform Hide, Show, Display, Erase 2008-01-30 08:18:14 +00:00
jfa
b60e89a143 NPAL18650: Add BLSURFPlugin and HexoticPLUGIN meshers. 2008-01-30 07:52:25 +00:00
eap
28789eefb2 PAL18501 Bug in Netgen 1D2D3D assignement
Notify not on hidden algorithm but on ignored submesh
2008-01-29 15:36:56 +00:00
eap
b55aba176d PAL18501 Bug in Netgen 1D2D3D assignement
synchronize with V3
2008-01-29 15:35:47 +00:00
eap
fc9f03f0d9 PAL18696 SMESH : version of MED export
use GetVersionString(SMESH::MED_VERSION version, CORBA::Short nbDigits);
2008-01-29 13:46:48 +00:00
eap
8579e44356 PAL18696 SMESH : version of MED export
+  /*!
+   * Return string representation of a MED file version comprising nbDigits
+   */
+  char* GetVersionString(SMESH::MED_VERSION version, CORBA::Short nbDigits);
2008-01-29 13:45:26 +00:00
eap
277a199f30 PAL18696 SMESH : version of MED export
+  static std::string GetVersionString(const MED::EVersion theVersion, int theNbDigits=2);
2008-01-29 13:43:39 +00:00
mzn
881539145f Fix for bug NPAL18491(EDF 630 SMESH : group of face appears with one hole in SMESH but not in VISU). 2008-01-16 07:17:07 +00:00
vtn
21651539bb Merge of NPAL16812 from 3.x to 4.x 2008-01-15 17:44:20 +00:00
eap
06e50842f2 PAL18523 Some print to supress in smeshDC.py
-        print "OwnHypothesis",hypType
+        #print "OwnHypothesis",hypType
2008-01-11 15:34:53 +00:00
eap
74cc32f57f PAL16617 Modification/Transformation operations with copy don't create a new mesh
-            Mirror = GetAxisStruct(Mirror)
+            Mirror = self.smeshpyD.GetAxisStruct(Mirror)
2008-01-11 13:46:10 +00:00
dmv
418f13af92 NPAL 13421 Default name for group from geometry 2008-01-11 10:29:42 +00:00
jfa
415771a7d5 NPAL16198: EDF462: Submeshes creation duplicate algorithms and hypotheses. Refix. 2007-12-27 09:37:46 +00:00
dmv
32032d4d58 NPAL 18245 2007-12-20 07:07:59 +00:00
eap
1eb1b5a6ee fix the previous revision
-        aMesh = Mesh(self.smeshpyD, self.geompyD, aSmeshMesh)
+        aMesh = Mesh(self, self.geompyD, aSmeshMesh)
2007-12-20 06:55:53 +00:00
eap
c422e979de PAL18328 SMESH_AdvancedEditor.py don't work in Debug version
+	SMESH_AdvancedEditor.py \
2007-12-19 15:24:38 +00:00
eap
a818f7f6ff PAL16617 (Modification/Transformation operations with copy don't create a new mesh)
+    SMESH_Mesh MirrorMakeMesh (in long_array IDsOfElements,
+    SMESH_Mesh MirrorObjectMakeMesh (in SMESH_IDSource theObject,
+    SMESH_Mesh TranslateMakeMesh (in long_array IDsOfElements,
+    SMESH_Mesh TranslateObjectMakeMesh (in SMESH_IDSource theObject,
+    SMESH_Mesh RotateMakeMesh (in long_array IDsOfElements,
+    SMESH_Mesh RotateObjectMakeMesh (in SMESH_IDSource theObject,
2007-12-19 15:17:34 +00:00
eap
556f0b415d PAL16617 (Modification/Transformation operations with copy don't create a new mesh)
+      "MirrorMakeMesh","MirrorObjectMakeMesh","TranslateMakeMesh",
+      "TranslateObjectMakeMesh","RotateMakeMesh","RotateObjectMakeMesh",
2007-12-19 15:14:11 +00:00
eap
0f966be150 PAL14861 A warning stop the computation 2007-12-19 15:06:39 +00:00
eap
92c5811d43 PAL16617 (Modification/Transformation operations with copy don't create a new mesh)
+  QString UniqueMeshName(const char* theBaseName, const char* thePostfix);
2007-12-19 15:05:55 +00:00
eap
0ebaadef38 PAL16617 (Modification/Transformation operations with copy don't create a new mesh)
+    SMESH_Mesh MirrorMakeMesh (in long_array IDsOfElements,
+    SMESH_Mesh MirrorObjectMakeMesh (in SMESH_IDSource theObject,
+    SMESH_Mesh TranslateMakeMesh (in long_array IDsOfElements,
+    SMESH_Mesh TranslateObjectMakeMesh (in SMESH_IDSource theObject,
+    SMESH_Mesh RotateMakeMesh (in long_array IDsOfElements,
+    SMESH_Mesh RotateObjectMakeMesh (in SMESH_IDSource theObject,
2007-12-19 15:05:31 +00:00
eap
2e446e7121 PAL16617 (Modification/Transformation operations with copy don't create a new mesh)
+  virtual bool Contains (const SMDS_MeshElement* elem);
2007-12-19 15:02:14 +00:00
eap
53660eaf43 PAL16617 (Modification/Transformation operations with copy don't create a new mesh)
PGroupIDs Transform (TIDSortedElemSet & theElements,
                        const gp_Trsf&     theTrsf,
                        const bool         theCopy,
-                       const bool         theMakeGroups);
+                       const bool         theMakeGroups,
+                       SMESH_Mesh*        theTargetMesh=0);
2007-12-19 15:01:13 +00:00
eap
dcdf3c5ef8 PAL18328 SMESH_AdvancedEditor.py don't work in Debug version
+  const SMDS_MeshVolume* Get() const;
+  // return element
+
+  int ID() const;
+  // return element ID
2007-12-19 14:56:13 +00:00
jfa
f3502e683b NPAL18084: add a new simply sample of GEOM/SMESH. Correct error. 2007-12-17 12:46:31 +00:00
jfa
3cae17f2a8 Restore some lost modifications. 2007-12-13 14:09:49 +00:00
jfa
7c27b84895 Restore some lost modifications. 2007-12-13 14:02:13 +00:00
jfa
6bc4dcbf9e NPAL18084: add a new simple sample of GEOM/SMESH. 2007-12-13 11:51:45 +00:00
jfa
8392fd7929 NPAL18084: add a new simple sample of GEOM/SMESH. 2007-12-13 11:41:17 +00:00
raza
e0b1819f2f Update allowing to use Hexotic Plugin. 2007-12-12 16:33:36 +00:00
jfa
4d2bf97770 Fix bug 18122: 'Name Error' from some functions of smeshDC.Mesh class. 2007-12-07 13:48:11 +00:00
jfa
bee39a08f4 NPAL18095: Pb. with dump python and mesh group by filter. 2007-12-06 11:23:55 +00:00
apo
e913c3429b Fix for Bug IPAL17943
4.x: log file, generated by "mdump_V2_1" for the mesh with set color number differs from the initial one (3x)
2007-12-05 14:19:29 +00:00
jfa
216d4924a0 NPAL17873: SMESH add a triangle instead of make quadrangles only. 2007-12-05 13:49:43 +00:00
jfa
9e091cbbbc Fix bug 17577: Help in 4x: Page is not displayed. 2007-12-05 11:47:28 +00:00
jfa
6afbf9dbec NPAL17908: Roll-back fix for bug 16198, new fix will be provided after 4.1.0 issue. 2007-12-04 09:32:22 +00:00
maintenance team
e78ae8cb5f Update GUI documentation for bugs :
16841, 16202, 16203, 16842, 17694
2007-12-03 13:45:18 +00:00
ouv
e9c972fa1f Bug IPAL18040 - 4.x: color of the displayed edge group doesn't correspond to set one. 2007-12-03 09:48:14 +00:00
jfa
c7ca9e31df NPAL18033: EDF612: Mesh stay displayed when we click on Erase all. 2007-11-30 10:23:14 +00:00
jfa
666558e956 NPAL18078: dependance on CASCADE in Salome. 2007-11-30 08:33:11 +00:00
jfa
fc387c8013 NPAL17920: error in init_smesh routine in smeshDC.py file. 2007-11-30 08:24:29 +00:00