Commit Graph

1615 Commits

Author SHA1 Message Date
gdd
a2b5a4c6cc rnc: added missing translations 2012-02-27 09:56:00 +00:00
eap
1c9e778a7c 0021208: Performance issue when loading SMESH with an hdf file containing a big mesh
+    ## Loads mesh from the study after opening the study
+    def Load(self):
2012-02-27 09:15:43 +00:00
eap
4986d0a274 0021208: Performance issue when loading SMESH with an hdf file containing a big mesh
Do not forget imported mesh on hypotheses modification
2012-02-24 11:49:16 +00:00
eap
19e34e5301 0021208: Performance issue when loading SMESH with an hdf file containing a big mesh
interface SMESH_Mesh
  {
+    boolean IsLoaded()
+    void Load()

  interface SMESH_IDSource
  {
+    boolean IsMeshInfoCorrect();
2012-02-24 10:58:14 +00:00
eap
481ff62932 0021208: Performance issue when loading SMESH with an hdf file containing a big mesh
+    <parameter name="forget_mesh_on_hyp_modif"     value="false"/>
2012-02-24 10:56:40 +00:00
eap
582347efc7 0021208: Performance issue when loading SMESH with an hdf file containing a big mesh
addPreference( tr( "PREF_FORGET_MESH_AT_HYP_MODIF" ), loadGroup, LightApp_Preferences::Bool,
2012-02-24 10:55:52 +00:00
eap
d2218320ff 0021208: Performance issue when loading SMESH with an hdf file containing a big mesh 2012-02-24 10:55:12 +00:00
eap
626f2aee7a 0021208: Performance issue when loading SMESH with an hdf file containing a big mesh
don't call GetTypes() of GroupOnFilter that can be very long
2012-02-24 10:52:50 +00:00
eap
154564a672 0021208: Performance issue when loading SMESH with an hdf file containing a big mesh
move actual mesh loading to SMESH_PreMeshInfo
2012-02-24 10:51:22 +00:00
eap
11bf8d1e4d 0021208: Performance issue when loading SMESH with an hdf file containing a big mesh
+  bool ToForgetMeshDataOnHypModif() const { return myToForgetMeshDataOnHypModif; }
2012-02-24 10:50:28 +00:00
eap
6bf9c4aeaf 0021208: Performance issue when loading SMESH with an hdf file containing a big mesh
+  virtual bool IsMeshInfoCorrect();
2012-02-24 10:49:36 +00:00
eap
9b54dd0f44 0021208: Performance issue when loading SMESH with an hdf file containing a big mesh
reimplement after making all member fields of SMESH_subMesh_i private
2012-02-24 10:49:18 +00:00
eap
f2e2182b74 0021208: Performance issue when loading SMESH with an hdf file containing a big mesh
+  CORBA::Boolean IsLoaded()
+  void Load()
+  virtual bool IsMeshInfoCorrect();

+  SMESH_PreMeshInfo* _preMeshInfo; // mesh info before full loading from study file
2012-02-24 10:47:20 +00:00
eap
53b7f3b9bb 0021208: Performance issue when loading SMESH with an hdf file containing a big mesh
+  virtual bool IsMeshInfoCorrect();

+  SMESH_PreMeshInfo* _preMeshInfo; // mesh info before full loading from study file
2012-02-24 10:46:31 +00:00
eap
c978123512 untabify 2012-02-24 10:43:27 +00:00
eap
6c858efd41 rename treshold -> threshold 2012-02-24 10:42:57 +00:00
eap
feb9a2ff2e 0021208: Performance issue when loading SMESH with an hdf file containing a big mesh
+	SMESH_PreMeshInfo.hxx \
2012-02-24 10:42:10 +00:00
eap
656d6656d4 0021208: Performance issue when loading SMESH with an hdf file containing a big mesh
rename private methods to start from lower-case letters

+  void Load();
2012-02-24 10:39:58 +00:00
eap
d5a3c3b28a 0021208: Performance issue when loading SMESH with an hdf file containing a big mesh
rename private methods to start from lower-case letters

  enum compute_event {
+     SUBMESH_LOADED

+  void loadDependentMeshes();
2012-02-24 10:38:22 +00:00
eap
d8cd2598fc 0021208: Performance issue when loading SMESH with an hdf file containing a big mesh
add a note on usage of mySubMeshes while mesh loading
2012-02-24 10:33:21 +00:00
eap
abb0ef62f4 0021208: Performance issue when loading SMESH with an hdf file containing a big mesh
+  bool IsUpToDate() const;
2012-02-24 10:30:58 +00:00
eap
709188eac6 0021208: Performance issue when loading SMESH with an hdf file containing a big mesh
protected:
+  inline void setNb(const SMDSAbs_EntityType geomType, const int nb);
2012-02-24 10:29:41 +00:00
ana
348849d7e4 Fix for the bug IPAL22857: "Find element by point problems"
Update doc
2012-02-20 14:28:00 +00:00
ana
bd86cd0695 Fix for the bug IPAL22857: "Find element by point problems"
Correct doc
2012-02-20 14:27:21 +00:00
ana
4d706076ff Fix for the bug IPAL22857: "Find element by point problems" 2012-02-20 14:25:20 +00:00
rnv
cfddf61e77 Fix for the "0020314: EDF 993 SMESH : Display bug with Volumes created by GHS3D" issue (problem with displaying coincident 3D elements). 2012-02-20 12:21:17 +00:00
eap
7c156331ce 0021375: EDF 1671 SMESH: Dump study of current state
Keep hyp parameters modifications done after mesh.Comput()
2012-02-20 06:59:35 +00:00
eap
d632c0f379 0021375: EDF 1671 SMESH: Dump study of current state
Fix non-historical treating of hypo methods setting different parameters via one method
    by passing parameter names like e.g. SetOption("size", "0.2") -
    mangle method name by appending a 1st textual arg
2012-02-17 15:59:58 +00:00
gdd
4ad6a5b19b Replace Descret by Discrete in variable and method names. 2012-02-17 14:30:02 +00:00
rnv
58a5f9cfd1 Change range of the Width spinbox: [0,5] -> [1,5] 2012-02-17 11:24:13 +00:00
gdd
1c56b0958d Add the anisotropic and anisotropic_ratio options 2012-02-17 09:37:00 +00:00
ana
e911ec9c1f 021374: EDF 1898 SMESH: Extrusion of a node to have an edge
and win32 compatibility ( replace isblank() -> isspace() )
2012-02-16 14:52:20 +00:00
ana
e1a3f42b5c 021374: EDF 1898 SMESH: Extrusion of a node to have an edge 2012-02-16 14:48:49 +00:00
ana
b4926d3ebf 021374: Extrusion of a node to have an edge
minor change
2012-02-16 14:46:03 +00:00
ana
9373bc5aaa Implementation of the "0021374: EDF 1898 SMESH: Extrusion of a node to have an edge" issue.
Update doc
2012-02-15 14:31:34 +00:00
ana
5d4ed5201b Implementation of the "0021374: EDF 1898 SMESH: Extrusion of a node to have an edge" issue. 2012-02-15 14:30:42 +00:00
gdd
af3910d143 Initialisation of private variable. 2012-02-15 13:07:11 +00:00
gdd
01df28d291 Add missing French translations 2012-02-15 12:41:51 +00:00
eap
4f4088e813 0021374: EDF 1898 SMESH: Extrusion of a node to have an edge
Add accessor methods to all commands of the hypothesis
2012-02-15 11:16:59 +00:00
rnv
ed191931f2 Implementation of the "21046: EDF 1610 GUI: To be able to change the width of the lines" issue. 2012-02-14 12:08:05 +00:00
eap
b0aa026c95 0021494: EDF 2118 SMESH: Projection2D hypothesis causes Unknown Exception
enhance checkParams() to allow 1 pair of vertices only for a face with 1 vertex
2012-02-14 11:35:04 +00:00
eap
c1cd01ddc8 0021494: EDF 2118 SMESH: Projection2D hypothesis causes Unknown Exception
Allow 1 pair of vertices for a face with 1 vertex
2012-02-14 11:33:38 +00:00
eap
64dc48191e 0021374]: EDF 1898 SMESH: Extrusion of a node to have an edge
Don't ExtrusionFlags
2012-02-13 17:52:48 +00:00
ana
a0e4f31fde Implementation of the "0021374: EDF 1898 SMESH: Extrusion of a node to have an edge" issue. 2012-02-13 16:18:53 +00:00
vsr
f39558c4e3 Fix compilation error on Windows 2012-02-13 07:53:42 +00:00
gdd
2ec2c370e8 Fix small mistake 2012-02-10 09:18:28 +00:00
eap
b1f48b44b7 0021375: EDF 1671 SMESH: Dump study of current state
correctly treat a false algorithm created by _pyMesh::Flush()
2012-02-09 16:42:07 +00:00
eap
0dad6db093 0021491: EDF 2094 SMESH: Error in the filters dump with "belong to GEOM " criterion
fix threshold setting
2012-02-09 16:24:01 +00:00
eap
2b3a86e7ca 0021490: EDF 2114: RadialQuadrangle fails
Fix correspondence between LinEdge1 and LinEdge2 and P1 and P2
2012-02-09 14:50:10 +00:00
eap
ebc415d946 0021375: EDF 1671 SMESH: Dump study of current state
+    def SetDumpPythonHistorical(self, isHistorical):
2012-02-09 13:18:11 +00:00