Commit Graph

733 Commits

Author SHA1 Message Date
dmv
a44e1f088c Qt4 porting. Fatal Error on Length value "0" (zero) in Hypothesis Length Near Vertex in 0D Algotithm. 2008-10-13 09:08:31 +00:00
eap
f7e5178009 Speed up "Clear mesh data" 2008-10-13 08:14:40 +00:00
eap
b45fb08505 19997: Compute does not work in script, ok in GUI
in clearSubMesh() call ComputeStateEngine() only on not empty submesh
2008-10-13 08:12:34 +00:00
eap
40fa3efd39 19997: Compute does not work in script, ok in GUI
fix MakeComputed() for group projection
2008-10-13 08:09:25 +00:00
abd
4c2f4f9b50 Fix compilation errors after merging KERNEL module from V4_1_0_maintainance branch 2008-10-10 10:20:44 +00:00
dmv
90f96fce55 Qt4 porting: the filter is editable, but should not be (MESH-026 GUI test scenario) 2008-10-08 11:35:05 +00:00
dmv
d5860b4fde Incorrect name of Remove Elements dialog box 2008-10-07 13:09:47 +00:00
dmv
266ebccd54 Merge Nodes dialog box with opened Merge Elements crashes Salome. Regress to series3x 2008-10-07 08:43:26 +00:00
eap
59566e03c4 PAL20461 4.x Wrong mesh after creation of 3D mesh from 2D skin.
additionally fix getDependsOnIterator() if submesh map is empty
2008-10-03 10:39:33 +00:00
eap
b07bf8e140 PAL20461 4.x Wrong mesh after creation of 3D mesh from 2D skin.
fix getDependsOnIterator() if submesh map is empty
2008-10-03 08:39:28 +00:00
rnv
319c1131ad Fix fo IPAL20415 (Error on mouse picking with Shift in 3D viewer if any dialog box is opened) 2008-10-03 06:57:48 +00:00
jfa
27ea448bbb For IMP 16155: use BRep_Tool::IsClosed() instead of TopoDS_Shape::Closed(). 2008-10-02 06:43:10 +00:00
eap
591c0c3f5c 0019970: create groups automatically
remove "Name" lineEdit
2008-10-01 12:10:31 +00:00
eap
424dd73b1b 0019970: create groups automatically
remove not realized slots
2008-10-01 08:22:58 +00:00
ouv
94d935e6a0 Remarks for issue 17291 EDF 591 SMESH : Visualization of the orientation of the normal vector of the mesh faces 2008-09-30 11:38:46 +00:00
eap
1856f1d72e 0019970: create groups automatically 2008-09-30 08:01:23 +00:00
ouv
7b09f5b72c Orientation of faces is added for new elements' preview (remark for issue 0017291: EDF 591 SMESH : Visualization of the orientation of the normal vector of the mesh faces) 2008-09-26 12:00:26 +00:00
rnv
6bf039b662 Additional fix for the issue 19964. 2008-09-25 05:36:22 +00:00
rnv
2f1bf11869 Implementation of the issue 19950. 2008-09-25 05:34:45 +00:00
akl
b83a61b9ab Fix of issue 0019967: EDF SMESH 806: TUI script example is missing for the Concatenate and ConcatenateWithGroups functions. 2008-09-18 07:52:07 +00:00
rnv
06e979fa3e Additional fix for issue 16186.
Quadrangle split into 2 triangles by smallest diagonal.
2008-09-17 13:47:00 +00:00
rnv
6eb4c26173 Fix for issue 19964 EDF SMESH 803( Bad dump script of revolutionned mesh with groups). 2008-09-17 10:31:27 +00:00
eap
c243e78505 [SALOME platform 0013410]: SubMesh not taken into account with Netgen 1D-2D et 1D-2D-3D
remove extra code
2008-09-16 11:57:30 +00:00
eap
aaefbed54e add more error messages 2008-09-16 10:04:38 +00:00
eap
9b15ba1413 [SALOME platform 0013410]: SubMesh not taken into account with Netgen 1D-2D et 1D-2D-3D
Add new NETGEN parameters to Mesh_Triangle and Mesh_Tetrahedron algorithms
2008-09-16 08:59:29 +00:00
eap
006cdf3b49 [SALOME platform 0013410]: SubMesh not taken into account with Netgen 1D-2D et 1D-2D-3D
<message>
+            <source>SUBMESH_NOT_ALLOWED</source>
+            <translation>No sense in creating a submesh ignored by global algorithm "%1"</translation>
+        </message>
2008-09-16 08:57:26 +00:00
eap
f9900de370 [SALOME platform 0013410]: SubMesh not taken into account with Netgen 1D-2D et 1D-2D-3D
Read a new aglo attribute "support-submeshes":

+      QString suppSub = atts.value("support-submeshes");
+      if ( !suppSub.isEmpty() )
+        isSupportSubmeshes = (suppSub == "true");
+
2008-09-16 08:56:38 +00:00
eap
c9179d6bde [SALOME platform 0013410]: SubMesh not taken into account with Netgen 1D-2D et 1D-2D-3D
//================================================================================
 /*!
+ * \brief Return name of the algorithm that does not support submeshes and makes
+ * submesh creation useless
+ *  \retval char* - string is to be deleted!!!
+ */
+//================================================================================
+
+char* SMESHGUI_MeshOp::isSubmeshIgnored() const
2008-09-16 08:55:16 +00:00
eap
4beda885d0 [SALOME platform 0013410]: SubMesh not taken into account with Netgen 1D-2D et 1D-2D-3D
+  bool IsSupportSubmeshes; //!< TRUE if the algo building all-dim elems supports submeshes
2008-09-16 08:51:05 +00:00
eap
0375a82ed4 [SALOME platform 0013410]: SubMesh not taken into account with Netgen 1D-2D et 1D-2D-3D
1)        algo->Compute() depending on algo->SupportSubmeshes()
2)
+  /*!
+   * \brief Return true if no mesh entities is bound to the submesh
+   */
+  bool IsEmpty() const;
2008-09-16 08:49:28 +00:00
eap
5b5ccb2c07 [SALOME platform 0013410]: SubMesh not taken into account with Netgen 1D-2D et 1D-2D-3D
+  /*!
+   * \brief Return an alternative parameter for a node on seam
+   */
+  double GetOtherParam(const double param) const;
2008-09-16 08:46:01 +00:00
eap
21cd6e11b8 [SALOME platform 0013410]: SubMesh not taken into account with Netgen 1D-2D et 1D-2D-3D
const SMESH_Hypothesis * GetHypothesis(const TopoDS_Shape &    aSubShape,
                                          const SMESH_HypoFilter& aFilter,
-                                         const bool              andAncestors) const;
+                                         const bool              andAncestors,
+                                         TopoDS_Shape*           assignedTo=0) const;
2008-09-16 08:45:09 +00:00
eap
ee5c3ec1b3 [SALOME platform 0013410]: SubMesh not taken into account with Netgen 1D-2D et 1D-2D-3D
+  static SMESH_HypoPredicate* IsMoreLocalThan(const TopoDS_Shape& theShape);
2008-09-16 08:44:22 +00:00
eap
e373b6970b [SALOME platform 0013410]: SubMesh not taken into account with Netgen 1D-2D et 1D-2D-3D
rearrange Compute()
2008-09-16 08:43:43 +00:00
eap
864b91b488 [SALOME platform 0013410]: SubMesh not taken into account with Netgen 1D-2D et 1D-2D-3D
+  bool SupportSubmeshes() const { return _supportSubmeshes; }
+  // 5 - whether supports submeshes if !NeedDescretBoundary()
2008-09-16 08:42:30 +00:00
vsr
92e0727721 Implement 'make dist' and 'make distcheck' steps support 2008-09-16 06:51:42 +00:00
vsr
1b26521843 Remove obsolete files 2008-09-16 03:27:48 +00:00
vsr
13f0836297 Implement 'make dist' and 'make distcheck' steps support 2008-09-16 03:20:19 +00:00
maintenance team
74a64dd014 Porting to CAS-6.3 2008-09-12 14:55:45 +00:00
ouv
bb8292d233 Remark for issue 17291 EDF 591 SMESH : Visualization of the orientation of the normal vector of the mesh faces 2008-09-12 11:40:22 +00:00
jfa
ecfa128381 IMP 0016175: EDF455: Save GUIState don't redisplay the objects. 2008-09-09 14:36:46 +00:00
abd
68ba0ceea7 Porting functionality on Win32 Platform 2008-09-04 13:53:04 +00:00
jfa
5f39147f64 Initialize some fields before usage. 2008-09-03 07:05:53 +00:00
eap
ff5e5d0e73 [SALOME platform 0019943]: Pb with projection 2d
In SMESH_Pattern::Load(mesh,face), fix treating seam vertices of not seam edges
2008-09-02 08:46:36 +00:00
abd
4ecc1e1c81 Fix compilation problems on Win32 platform 2008-08-28 09:55:09 +00:00
jfa
a695d6af72 IMP 0016693: EDF461: To use BelongToGeom or LyingOnGeom with non-subshape Objects. 2008-08-26 07:55:14 +00:00
skl
6fceacba72 Implementation of new version of meshing for QuadranglePreference for feature 0016220 from Mantis. 2008-08-18 07:39:04 +00:00
dmv
035d7a6ec7 Bug IPAL20033 Error after Close Study with Change Clipping dialog box opened. Sometimes it either crashes or hangs up. 2008-08-12 12:44:55 +00:00
rnv
6fdc7dc872 Implementation on the issue 16186: EDF PAL 459: Mapping: when refining, to separate quadrangles into 2 triangles. 2008-08-12 09:52:11 +00:00
jfa
49922d93e3 Bug 0016155: EDF PAL 447: If the shape is a Shell, disable 3D tab. 2008-08-11 11:00:16 +00:00
abd
65d1c98391 Merging with BR_WPdev_For_5_0 2008-08-08 07:45:27 +00:00
ouv
376d3f226c Feature 0017291: EDF 591 SMESH : Visualization of the orientation of the normal vector of the mesh faces 2008-08-05 09:43:34 +00:00
akl
003b5a3e76 Fix for issue 0019935: EDF 793 SMESH: Drawing of a line on a non-planar surface. To draw only connectivity lines. 2008-08-01 08:14:33 +00:00
akl
aadd73166e To implement issue 0016172: EDF 452 SMESH : Define in the preferences if we want or not the Mesh info Box (at end of computation). 2008-07-31 06:45:54 +00:00
vsr
8ce2153da0 merge from V4_1_0_maintainance branch (from tag mergeto_BR_QT4_Dev_29Jul08) 2008-07-29 14:08:56 +00:00
vsr
ddd20dd943 Merge from V4_1_0_maintainance branch (from tag mergeto_BR_QT4_Dev_08Jul08) 2008-07-23 11:49:09 +00:00
vsr
47a901faf4 Merge from BR_Dev_For_4_0 branch (from tag mergeto_BR_QT4_Dev_07Jul08) 2008-07-22 09:10:35 +00:00
stv
b78e4ec403 *** empty log message *** 2008-07-17 11:15:12 +00:00
mkr
8ca3e23f46 Salome5x : fix for bug IPAL13068 : There is no help page for "Hypothesis Construction" dlg for "Netgen 1D-2D-3D" hypothesis. 2008-07-01 05:21:23 +00:00
vsr
8dcf8390a4 Fix problems:
- too small width of Filter dialog box
- allow activating filter items by single click
2008-06-07 11:03:19 +00:00
akl
f8dd22cb6e Fix a bug from the additional comment from Ilya MATVEYEV 2008-04-28 14:32 for bug IPAL19572: the content of previously created filter is not cleaned. 2008-06-06 11:25:41 +00:00
akl
fb78ee1007 Fix IPAL19670(Qt4 porting: Selection filters library - Unexpected error message). 2008-06-06 11:19:10 +00:00
mzn
4c544c9207 Fix for bug IPAL19890(Qt4 porting. Default Presicion = 0. Mesh Algorithm Wire Discretisation, Hypothesis Average Length). 2008-06-04 12:29:23 +00:00
mzn
aff9fbd71a Fix for bug IPAL19909(Qt4 porting. Incorrect default value f(t) 1e+20 in Distribution with table density, Nb Segment Hypothesis Construction). 2008-06-04 08:31:20 +00:00
mzn
6c3c99ea8d Fix for bug IPAL19810(Qt4 porting: Modification - Smoothing after operation cursor remains to be "watches"). 2008-06-03 11:47:27 +00:00
mzn
385b46d935 Fix for bug IPAL19437. 2008-05-21 08:46:45 +00:00
asl
06bdce2fef PAL19669: sensitive zone of OK button is very small 2008-04-30 05:33:05 +00:00
mkr
5c72fdd558 Fix for IPAL19590: Qt4 porting: Segmentation violation at Modification - add Quadratic Tetrahedron. 2008-04-29 13:58:41 +00:00
akl
14f66eecc8 Fix of IPAL19560 (Qt4 porting: Colors/Size - problems in "Preferences - Set Color" dialog). 2008-04-25 11:31:43 +00:00
akl
cb9918baac Fix of IPAL19633 (Qt4 porting. Strange value of Tolerance when use spin box): set step=0.00001 instead of 0.1. 2008-04-25 07:13:46 +00:00
akl
d05cb1cde6 Fix of IPAL19661 (Qt4 porting. Merge Nodes (Elements).Edit selected group.Selection of elements differs). 2008-04-24 11:46:09 +00:00
akl
9a383815d8 Fix of IPAL19446 (Qt4 porting. Cancel on Export MED file leads to inapplicable warning). 2008-04-23 13:04:17 +00:00
vsr
d8bff2b915 Fix of IPAL19621 (Qt4 porting: regress of automatic assign a set of hypotheses). 2008-04-23 11:11:39 +00:00
akl
b75d24976c Fix of IPAL19621 (Qt4 porting: regress of automatic assign a set of hypotheses). 2008-04-23 07:41:48 +00:00
asl
17397a8eee PAL19566 2008-04-21 08:11:59 +00:00
mzn
cf4a3af54c New icons for Smesh module. 2008-04-17 13:14:26 +00:00
asl
b3a56b6ba9 PAL19566, PAL19567, PAL19571, PAL19572 2008-04-17 11:33:56 +00:00
asl
e9fc10eaaa PAL19582 : crash on apply 2008-04-17 11:33:07 +00:00
akl
fe7a36de02 Fixing of IPAL19468 (Qt4 porting: "Create sub-mesh" dialog - no choice on Geometry selection). 2008-04-17 05:55:03 +00:00
mkr
a5468aa66e SMESHGUI_HypothesesUtils.* : replace STL classes (map, list, ...) by Qt classes (QMap, QList, ...) 2008-04-11 15:50:30 +00:00
mkr
e618e38681 1) Fix for bug IPAL19258 : Qt4 porting. Incorrect view of Preferences: no default color; small black square; alignment.
2) SMESHGUI_Preferences_ScalarBarDlg dialog box: add <Help> button.
2008-04-11 14:02:03 +00:00
ouv
eebb1370b2 Bug IPAL19465 - QT4 porting: crash creating add.hypothesis 2008-04-11 10:51:22 +00:00
ouv
39b202e1bb Bug IPAL19515 - Qt4 porting. Smoothing. Name of whole mesh, submesh or group doesn't appear. 2008-04-10 12:18:58 +00:00
akl
e74d8f04e3 Fixing of IPAL19491 (Qt4 porting. Merge Nodes (Elements). Edit selected group. Bad disposition). 2008-04-10 05:21:55 +00:00
akl
1161e2c4bc Fixing of IPAL19511 (Qt4 porting. View button of selection in Symmetry window is wrong). 2008-04-09 12:44:59 +00:00
mzn
d4a2b286c0 Fix for bug IPAL19502 (Qt4 porting. Edit Group. Ok (Apply) doesn't become active after change of color). 2008-04-09 12:02:44 +00:00
ouv
135ff2be87 Bug IPAL19470 - Qt4 porting. Orientation, Filter. Crash after selection Bad oriented volume and check Mesh 2008-04-09 11:52:07 +00:00
ouv
c02e7e1caa Bug IPAL19464 - Qt4 porting. Orientation. Error on "Add to.." and "Copy from" in Filter for Faces(..Volumes) 2008-04-09 09:33:37 +00:00
mzn
a2c6f7ce5a Fix for bug PAL19432 (Qt4 porting: Application crash at Add button push (Set Filters dialog, Create Group). 2008-04-08 15:22:29 +00:00
akl
a0733b3b36 Fixing of IPAL19489 (QT4 porting: loading pattern is impossible). 2008-04-08 12:14:31 +00:00
akl
119fd18e76 Fix of IPAL19448 (Qt4 porting: application hungs up at several Import MED file cycles). 2008-04-08 10:40:18 +00:00
mkr
61225638d0 Fix for bug IPAL19438 : Qt4 porting. MESH. For many fields number of digits after comma very little: 3 only. 2008-04-07 12:01:32 +00:00
ouv
f77b5d2c00 Bug IPAL19467 - QT4 porting: geometrical group is not selected for mesh group 2008-04-07 09:54:43 +00:00
akl
3167aadf5f Fix of IPAL19449 (Qt4 porting: Too short warning at MED file import): the file has been generated by modified 'po2ts' utility. 2008-04-04 12:35:54 +00:00
ouv
ca9b846055 Bug IPAL19442 - Qt4 porting. Merge nodes. Add, Remove, Edit selected group don't work. 2008-04-03 11:41:33 +00:00
ouv
7ee1a11650 Bug IPAL19413 - Qt4 porting: import salome_test fails 2008-04-01 13:11:53 +00:00
mkr
ce8c77e300 Qt4 porting: automatic resizing of Hypothesis Construction: Number of Segments dialog. 2008-04-01 11:40:34 +00:00
mkr
25db37c904 Qt4 porting: automatic resizing of Hypothesis Construction: Number of Segments dialog. 2008-03-31 14:54:49 +00:00
akl
4352a0e199 Fix of IPAL19366(Qt4 porting. Adding of items in the list is very long action). 2008-03-31 12:56:23 +00:00
mkr
3f36c66f5a Qt4 porting: add axis grids to plot 2d preview. 2008-03-28 15:57:02 +00:00