Commit Graph

1951 Commits

Author SHA1 Message Date
eap
4167c89c41 0021893: EDF 2133 SMESH : Improvement of 3D extrusion algorithm
fix reversion myC3dAdaptor's
2013-02-04 11:40:07 +00:00
eap
f607610b9c explanation of file name origin 2013-02-01 15:10:26 +00:00
eap
ed7d4ac971 0021893: EDF 2133 SMESH : Improvement of 3D extrusion algorithm
In Compute(), do not call Compute() of a more local algo if this
!algo->NeedDiscreteBoundary() also
2013-02-01 10:52:04 +00:00
eap
a4a38b2fb4 0021893: EDF 2133 SMESH : Improvement of 3D extrusion algorithm
Clear StdMeshers_Quadrangle_2D::myQuadStruct before usage

+      algo->myQuadStruct.reset();
2013-01-30 11:34:32 +00:00
eap
83b9e1e926 0022082: EDF 1891 SMESH: Performance issues in SMESH filters
In MapCells(SALOME_Actor*,const TColStd_IndexedMapOfInteger& theMap),
move the following code out of the loop on theMap

   UnShrink();
   if(theMapActor->IsShrunk()){
     SetShrinkFactor(theMapActor->GetShrinkFactor());
   }
   myMapIndex = theMap;
2013-01-29 15:14:57 +00:00
eap
2949f1214b fix GetPreviewData() for the case of only nodes in edition result 2013-01-28 11:10:54 +00:00
eap
0cd977f8bf 0021893: EDF 2133 SMESH : Improvement of 3D extrusion algorithm
arg theFirstVertex of SMESH_Block::GetOrderedEdges() became optional
2013-01-28 08:35:50 +00:00
eap
212d7fc62e 0021893: EDF 2133 SMESH : Improvement of 3D extrusion algorithm
struct faceQuadStruct
 {
+  void shift( size_t nb, bool keepUnitOri );
+  typedef boost::shared_ptr<faceQuadStruct> Ptr;
 }

-  FaceQuadStruct* CheckNbEdges();
+  FaceQuadStruct::Ptr CheckNbEdges();

+  FaceQuadStruct::Ptr  myQuadStruct;
2013-01-28 08:35:01 +00:00
eap
9f2f0a0c1a 0021893: EDF 2133 SMESH : Improvement of 3D extrusion algorithm
StdMeshers_ProjectionUtils::Count() moved to SMESH_MesherHelper::Count()
2013-01-28 08:32:01 +00:00
eap
53b3b75be6 0021893: EDF 2133 SMESH : Improvement of 3D extrusion algorithm
arg theFirstVertex of SMESH_Block::GetOrderedEdges() became optional

StdMeshers_ProjectionUtils::Count() moved to SMESH_MesherHelper::Count()
2013-01-28 08:31:47 +00:00
eap
09024c777c more comments 2013-01-28 08:31:21 +00:00
eap
1fff018cb3 0021893: EDF 2133 SMESH : Improvement of 3D extrusion algorithm 2013-01-28 08:29:47 +00:00
eap
7643656ed3 0021893: EDF 2133 SMESH : Improvement of 3D extrusion algorithm
Use SMESH_MesherHelper::IsSameElemGeometry()
2013-01-28 08:29:36 +00:00
eap
c8d7fe2beb 0021893: EDF 2133 SMESH : Improvement of 3D extrusion algorithm
-  int NbPoints() const { return myNbPonits; }
+  int NbPoints(const bool update = false) const;

-  int NbSegments() const { return myNbSegments; }
+  int NbSegments(const bool update = false) const;

+  gp_Pnt   Value3d(double U) const;

arg theFirstVertex of SMESH_Block::GetOrderedEdges() became optional
2013-01-28 08:29:06 +00:00
eap
4b17835d08 0021893: EDF 2133 SMESH : Improvement of 3D extrusion algorithm
arg theFirstVertex of SMESH_Block::GetOrderedEdges() became optional
2013-01-28 08:27:35 +00:00
eap
b605589582 fix typo: geomerty -> geometry 2013-01-28 08:25:07 +00:00
eap
a3768a4bc0 0021893: EDF 2133 SMESH : Improvement of 3D extrusion algorithm
+struct faceQuadStruct; // defined in StdMeshers_Quadrangle_2D.hxx
+typedef boost::shared_ptr<faceQuadStruct> TFaceQuadStructPtr;
2013-01-28 08:21:38 +00:00
eap
bde9f2c7ae 0021893: EDF 2133 SMESH : Improvement of 3D extrusion algorithm
Make arg theFirstVertex of GetOrderedEdges() optional
2013-01-28 08:21:16 +00:00
eap
d89bbd5095 typo: geomerty -> geometry 2013-01-28 08:20:18 +00:00
eap
154b1ad73e 0021893: EDF 2133 SMESH : Improvement of 3D extrusion algorithm
Make SubMeshesComputed() public

Make getDependsOnIterator() const
2013-01-28 08:19:29 +00:00
eap
907db98bc4 0021893: EDF 2133 SMESH : Improvement of 3D extrusion algorithm
Improve LoadNodeColumns() to add columns to already loaded ones

+  static bool IsSameElemGeometry(const SMESHDS_SubMesh* smDS,
+                                 SMDSAbs_GeometryType   shape,
+                                 const bool             nullSubMeshRes = true);

+  static bool IsStructured( SMESH_subMesh* faceSM );

+  static int Count(const TopoDS_Shape&    shape,
+                   const TopAbs_ShapeEnum type,
+                   const bool             ignoreSame);
2013-01-28 08:17:43 +00:00
eap
6cc402aa1b 0021893: EDF 2133 SMESH : Improvement of 3D extrusion algorithm
+  static bool IsSameElemGeometry(const SMESHDS_SubMesh* smDS,
+                                 SMDSAbs_GeometryType   shape,
+                                 const bool             nullSubMeshRes = true);

+  static bool IsStructured( SMESH_subMesh* faceSM );

+  static int Count(const TopoDS_Shape&    shape,
+                   const TopAbs_ShapeEnum type,
+                   const bool             ignoreSame);

-  void SetElementsOnShape(bool toSet) { mySetElemOnShape = toSet; }
+  bool SetElementsOnShape(bool toSet)
+  { bool res = mySetElemOnShape; mySetElemOnShape = toSet; return res; }
2013-01-28 08:16:00 +00:00
eap
6390e82888 0021893: EDF 2133 SMESH : Improvement of 3D extrusion algorithm
+  SMESH_Gen*  GetGen() const { return (SMESH_Gen*) _gen; }
2013-01-28 08:13:58 +00:00
eap
9b0f684048 0021893: EDF 2133 SMESH : Improvement of 3D extrusion algorithm
Use aGlobIgnoAlgo->NeedLowerHyps( dim ) in checkConformIgnoredAlgos()
2013-01-28 08:13:42 +00:00
eap
3a62786158 0021893: EDF 2133 SMESH : Improvement of 3D extrusion algorithm
+  bool NeedLowerHyps(int dim) const { return _neededLowerHyps[ dim ]; }

+  void addBadInputElements(const SMESHDS_SubMesh* sm,
+                           const bool             addNodes=false);

+  bool _neededLowerHyps[4];     // hyp dims needed by algo that !NeedDiscreteBoundary(). Df. FALSE
2013-01-28 08:12:41 +00:00
jfa
2e3f1dc0ff Mantis issue 0020483: EDF 1117 SMESH,VISU: Mesh with descending connectivity is badly read by SMESH and VISU 2013-01-25 13:47:57 +00:00
vsr
097db70a03 0022080: [CEA 756] Regression: error at libMEDMEM_Swig.MESH function call 2013-01-25 09:00:47 +00:00
rnc
af15920c77 added BOOST_LIB_SYSTEM to the linker for support of boost 1.52.0 2013-01-24 10:52:43 +00:00
eap
f5335851f1 fix mesh name at "m = smesh.Mesh(mesh)" 2013-01-22 12:40:21 +00:00
eap
7f2264006b fix exception at "m = smesh.Mesh()" 2013-01-22 12:01:47 +00:00
eap
577999dffd make Mesh.MeshDimension() work in case w/o geometry 2013-01-22 09:08:00 +00:00
inv
44d181bc0e Porting to dev version of OCCT 2013-01-22 07:25:28 +00:00
vsr
08b70d2054 Fix regression in RemoveHypothesis() method (hypothesis is not removed if mesh does not have underlying shape) caused by previous integrations 2013-01-15 12:26:34 +00:00
gdd
f9731f2518 The help document would not open 2013-01-14 17:01:13 +00:00
eap
ab3feed3ba improve default naming of meshes and geometry to mesh 2013-01-11 12:54:18 +00:00
eap
fb1aabb3d1 minor 2013-01-11 12:01:00 +00:00
eap
8d0826c197 021860: EDF 2196 SMESH : Create all the groups in an extrusion operation 2013-01-11 12:00:35 +00:00
eap
ea7f54796a 021860: EDF 2196 SMESH : Create all the groups in an extrusion operation
-        void Add(const SMDS_MeshElement * theElem);
+        bool Add(const SMDS_MeshElement * theElem);
2013-01-11 11:58:50 +00:00
eap
8ef1551cb0 fix indentation 2013-01-10 11:33:47 +00:00
eap
b48879bb7b 21397: EDF SMESH: a quadrangle face mesh can't be projected to a cylinder
fix pattern orientation when projecting to a FACE with seam EDGE
2013-01-10 11:33:12 +00:00
eap
6f564a0788 In RemoveHypothesis() print a WARNING if the hypothesis was not
assigned to the given shape
2013-01-10 11:30:44 +00:00
eap
7f5d1328b1 21397: EDF SMESH: a quadrangle face mesh can't be projected to a cylinder
after successful algo->Compute(), send SUBMESH_COMPUTED to all lower sub-meshes if ( !algo->NeedDiscreteBoundary() )
2013-01-10 11:29:37 +00:00
eap
293883f8d4 21397: EDF SMESH: a quadrangle face mesh can't be projected to a cylinder
bool Load (SMESH_Mesh*        theMesh,
              const TopoDS_Face& theFace,
              bool               theProject = false,
+             TopoDS_Vertex      the1stVertex=TopoDS_Vertex());
2013-01-10 11:26:34 +00:00
eap
a94078a14b improve comments 2013-01-10 11:25:42 +00:00
vsr
577906c7b0 Imp: numbering font preferences 2012-12-29 11:45:10 +00:00
eap
752ad5bd14 untabify 2012-12-28 16:30:38 +00:00
eap
e9bec6bddf missing @param description 2012-12-28 16:26:40 +00:00
eap
e205108fca 0021397: EDF SMESH: a quadrangle face mesh can't be projected to a cylinder 2012-12-28 15:53:47 +00:00
eap
00ac0dfc36 typo 2012-12-28 15:53:01 +00:00
eap
64a8aee9ab 0021397: EDF SMESH: a quadrangle face mesh can't be projected to a cylinder
enable FindSubShapeAssociation() on faces with different nb of VERTEXes
2012-12-28 15:52:46 +00:00
eap
d7b0855638 prevent GetName() failure on a not CORBA object 2012-12-28 15:50:11 +00:00
eap
a763cfdd81 - <translation>%1 nodes successfully merged.</translation>
+        <translation>%1 groups of nodes successfully merged.</translation>
2012-12-28 15:49:07 +00:00
eap
d8ad3b8931 minor decoration 2012-12-28 15:48:52 +00:00
vsr
fe32ec275a Imp: Mesh Info dialog box - show node/element position not only in colocated mode 2012-12-28 14:49:43 +00:00
eap
d95ba01c50 leaks of CORBA objects 2012-12-28 11:39:35 +00:00
eap
3e47e37091 initialize myIsMultipleAllowed 2012-12-28 11:39:01 +00:00
eap
79cd67d5b8 untabify 2012-12-28 11:38:26 +00:00
eap
08f731ecd6 Use GEOM_Object_var instead of GEOM_Object_wrap for obj returned by GetMainShape() 2012-12-28 11:38:13 +00:00
vsr
fd1f32bef8 Win32 compatibility 2012-12-25 05:25:17 +00:00
eap
414745da0e 0021948]: EDF SMESH : Memory is not freed when deleting a mesh
Move declaration of GEOM::GEOM_Object_wrap form
  GEOMBase/GEOM_GenericObjPtr.h to GEOM_I/GEOM_wrap.hxx as GEOMBase is
  a part of GUI

-#include <GEOM_GenericObjPtr.h>
+#include <GEOM_wrap.hxx>
2012-12-24 13:58:17 +00:00
vsr
75be4ee0eb 0021858: EDF 2171 SMESH : Add an information about the groups an element or node belongs to
- additional minor change: trim long group names
2012-12-21 11:06:26 +00:00
eap
c6270448c0 untabify 2012-12-20 15:35:56 +00:00
eap
c8c3c7ed5d Add a method comment 2012-12-20 15:34:53 +00:00
eap
8951167c87 - TCollection_AsciiString aSavedTrace (oldValue.out());
+  TCollection_AsciiString aSavedTrace (oldValue.in());
2012-12-20 15:31:28 +00:00
vsr
65f79df2af 0021858: EDF 2171 SMESH : Add an information about the groups an element or node belongs to 2012-12-20 15:29:39 +00:00
vsr
5e7fae6a20 0021858: EDF 2171 SMESH : Add an information about the groups an element or node belongs to 2012-12-20 14:44:56 +00:00
vsr
b31f9cd66a Fix misprint 2012-12-20 12:52:29 +00:00
eap
54a7ed03b8 - if ( myProjFace.IsDone() && myProjFace.LowerDistance() <= myTol );
+  if ( myProjFace.IsDone() && myProjFace.LowerDistance() <= myTol )
2012-12-20 11:20:35 +00:00
eap
0115246c96 Fix for 32-bit platforms
-  int          GetElementIds( int* ids ) const;
+  template< typename IDTYPE >
+    int        GetElementIds( IDTYPE* ids ) const
+  {
+    return getElementIds( (void*)ids, sizeof(IDTYPE));
+  }
2012-12-20 10:19:51 +00:00
vsr
1e288edaa1 Imp: show element position in a mesh information dialog box 2012-12-20 05:59:39 +00:00
prascle
2af758c692 PR: fix previous commit 2012-12-19 16:31:35 +00:00
vsr
2cb5a0ee33 Imp: dump mesh information to file 2012-12-19 14:33:24 +00:00
eap
c8b155a155 Add an arg to Concatenate() specifying a name of a new mesh 2012-12-18 17:49:25 +00:00
eap
9ed5632be0 22017: [CEA 739] Get an error code returned by cadsurf_set_param
Remove "Salome " from "Salome Exception" prefix returned by
  SALOME_Exception::what() while composing an error message
2012-12-18 13:33:32 +00:00
eap
338eab651c - TCollection_AsciiString oldScript (oldValue.out());
+  TCollection_AsciiString oldScript (oldValue.in());
2012-12-18 12:57:39 +00:00
eap
5ee5ad7e03 Fix a bug that "Lying on Geom" filter rejects elements whose gravity
center is outside the shape
2012-12-18 10:56:35 +00:00
prascle
500aed0351 PR: compilation problem on ubuntu 12.04 2012-12-18 09:25:28 +00:00
vsr
22878614be Imp for Mesh Info dialog box: double click on "connectivity" item switch dialog box to show information of connected nodes/elements 2012-12-18 08:06:25 +00:00
eap
cda4289765 - nbElemsLabel = new QLabel(" 0", this );
+  nbElemsLabel = new QLabel("0", this );
2012-12-17 16:42:40 +00:00
eap
b69677548c 22011: [CEA 736] Mesh ends with "Global 2D algorithm is missing"
In checkMissing(), check only sub-meshes on meshable shapes (edges,faces,solids)
2012-12-17 16:37:18 +00:00
eap
4f0a26fa4d Allow for definition of sweep vector by 3 vector components 2012-12-17 16:17:54 +00:00
vsr
beab223e19 Imp: allow customization of nodes / cells numbering text properties via preferences 2012-12-17 15:48:01 +00:00
eap
7085686b04 Add missing throw (SALOME::SALOME_Exception) 2012-12-17 15:39:59 +00:00
eap
bd7cecec9a Add missing try/catch using SMESH_TryCatch.hxx 2012-12-17 15:39:30 +00:00
eap
c3597c66f0 + /*!
+   * \brief Function used in SMESH_CATCH to convert a caught exception to
+   * SALOME::SALOME_Exception
+   */
+  inline void throwCorbaException(const char* excText)
+  {
+    THROW_SALOME_CORBA_EXCEPTION( excText, SALOME::INTERNAL_ERROR );
+  }
2012-12-17 15:38:09 +00:00
eap
dfe68f4de1 - smeshpy.py 2012-12-17 15:10:44 +00:00
eap
62cf47f6ed useless file 2012-12-17 15:09:43 +00:00
eap
7abb1c93b4 Use SMESH_TryCatch.hxx 2012-12-17 14:14:18 +00:00
eap
2b6536d33b + SMESH_TryCatch.hxx 2012-12-17 14:14:03 +00:00
eap
6cafe5cc9f 22010: [CEA 731] "CreateDimGroup" creates some faces not belonging to volumes's skin
Re-implenent CreateDimGroup()
2012-12-17 14:12:40 +00:00
vsr
b70f27b542 Imp: use file name as default mesh name when publishing data coming from SAUV or STL file 2012-12-17 12:38:17 +00:00
vsr
5f2fdbf53f Fix bug: wrong default color the the group 2012-12-17 12:15:09 +00:00
eap
b3aa30bca3 21948: EDF SMESH : Memory is not freed when deleting a mesh
Elimenate memory leaks on CORBA objects, servants of SALOMEDS objects etc
2012-12-14 13:57:37 +00:00
eap
873eca935e 21948: EDF SMESH : Memory is not freed when deleting a mesh
UnRegister filter manager etc
2012-12-14 13:56:22 +00:00
eap
4f585d60b6 21948: EDF SMESH : Memory is not freed when deleting a mesh
<source>SMESH_VISU_PROBLEM</source>
+        <translation>Mesh visualization failed</translation>
+    </message>
+    <message>
+        <source>SMESH_VISU_PROBLEM_MEMORY</source>
         <translation>Mesh visualization failed, probably due to lack of memory</translation>
2012-12-14 13:54:34 +00:00
eap
f48b7044a2 21948: EDF SMESH : Memory is not freed when deleting a mesh
+  bool                         myToDeleteInitParamsHypo;
2012-12-14 13:54:12 +00:00
eap
111d1ee46e 21948: EDF SMESH : Memory is not freed when deleting a mesh
Show nb of nodes and elements in "Compute" dialog
2012-12-14 13:49:42 +00:00
eap
cad015ecdc 21948: EDF SMESH : Memory is not freed when deleting a mesh
SMESH::RemoveVisualObjectWithActors() at object removal from study
2012-12-14 13:44:41 +00:00
eap
91312a2db5 21948: EDF SMESH : Memory is not freed when deleting a mesh
Fix a leak of GEOM_IGroupOperations_i servant
2012-12-14 13:42:25 +00:00
eap
d0a6c1f78d untabify 2012-12-14 13:41:32 +00:00
eap
47709d42f2 21948: EDF SMESH : Memory is not freed when deleting a mesh
Optimize for groups in large meshes
2012-12-14 13:41:14 +00:00
eap
dcf5dee894 21948: EDF SMESH : Memory is not freed when deleting a mesh
Delete fields in order of their declaration in the header - for easier check
2012-12-14 13:40:14 +00:00
eap
37eb451785 21948: EDF SMESH : Memory is not freed when deleting a mesh
Fix leaks of myPreHighlightActor and myHighlightActor
2012-12-14 13:37:18 +00:00
eap
3304d08571 21948: EDF SMESH : Memory is not freed when deleting a mesh
Optimize ElementsOnShape for large meshes
2012-12-14 13:36:23 +00:00
eap
11e1059f3e 21948: EDF SMESH : Memory is not freed when deleting a mesh
+  static void ForgetAllData( SMESH_Mesh_i* mesh );
2012-12-14 13:35:19 +00:00
eap
ee00100fa4 21948: EDF SMESH : Memory is not freed when deleting a mesh
Elimenate memory leaks on CORBA objects, servants of SALOMEDS objects etc
2012-12-14 13:34:34 +00:00
eap
09a87fd9f2 21948: EDF SMESH : Memory is not freed when deleting a mesh
+  static bool               IsTemporaryIDSource( SMESH::SMESH_IDSource_ptr& idSource );
2012-12-14 13:34:18 +00:00
eap
04a91a7190 21948: EDF SMESH : Memory is not freed when deleting a mesh
Optimize groups on filter for large meshes

+  virtual SMESH::long_array* GetListOfID();
+  virtual SMESH::long_array* GetMeshInfo();
2012-12-14 13:33:47 +00:00
eap
7973c25121 21948: EDF SMESH : Memory is not freed when deleting a mesh
In DeleteEventListener() fix removal of listeners
2012-12-14 13:25:12 +00:00
eap
413fec58c7 21948: EDF SMESH : Memory is not freed when deleting a mesh
Use _id instead of _idDoc

-  _myMeshDS      = theDocument->GetMesh(_idDoc);
+  _myMeshDS      = theDocument->NewMesh(theIsEmbeddedMode,theLocalId);
2012-12-14 13:24:26 +00:00
eap
730908a7f4 21948: EDF SMESH : Memory is not freed when deleting a mesh
-  int                        _idDoc;        // id given by SMESHDS_Document
2012-12-14 13:23:20 +00:00
eap
0d9cd77ceb 21948: EDF SMESH : Memory is not freed when deleting a mesh
minor changes
2012-12-14 13:22:42 +00:00
eap
d3fb998efd 21948: EDF SMESH : Memory is not freed when deleting a mesh
Delete SMESHDS_Document's at destruction
2012-12-14 13:21:56 +00:00
eap
1199fcd63c 21948: EDF SMESH : Memory is not freed when deleting a mesh
Optimize for large meshes
2012-12-14 13:19:01 +00:00
eap
06544a5936 21948: EDF SMESH : Memory is not freed when deleting a mesh
void SMESHDS_SubMesh::Clear()
 {
-  myElements.clear();
-  myNodes.clear();
+  clearVector( myElements );
+  clearVector( myNodes );
2012-12-14 13:17:12 +00:00
eap
ee35ac825c 21948: EDF SMESH : Memory is not freed when deleting a mesh
-        int                  NewMesh(bool theIsEmbeddedMode);
+        SMESHDS_Mesh *       NewMesh(bool theIsEmbeddedMode, int MeshID);
2012-12-14 13:16:39 +00:00
eap
b22f68bd44 21948: EDF SMESH : Memory is not freed when deleting a mesh
pass vector arg by reference, not by value
2012-12-14 13:15:17 +00:00
eap
56b857de47 21948: EDF SMESH : Memory is not freed when deleting a mesh
fix leaks of cellLinks: adjuct vtkCellLinks::MaxId

+  void ResizeForPoint(vtkIdType vtkID);
2012-12-14 13:13:00 +00:00
eap
a29e12d8f9 21948: EDF SMESH : Memory is not freed when deleting a mesh
fix leaks of cellLinks

class SMDS_EXPORT SMDS_CellLinks: public vtkCellLinks
{
public:
+  void ResizeForPoint(vtkIdType vtkID);
2012-12-14 13:09:07 +00:00
eap
6bb8dd97b8 21948: EDF SMESH : Memory is not freed when deleting a mesh
fix leaks of cellLinks

void SMDS_MeshNode::init()
{
-  if (myVtkID >= cellLinks->GetLinksSize())
-          cellLinks->ResizeL(myVtkID+SMDS_Mesh::chunkSize);
+  cellLinks->ResizeForPoint( myVtkID );
2012-12-14 13:08:08 +00:00
eap
585362053b 21948: EDF SMESH : Memory is not freed when deleting a mesh
Make clear free as much as possible memory
2012-12-14 13:04:42 +00:00
eap
fa38ad0b49 21948: EDF SMESH : Memory is not freed when deleting a mesh
+  void clear()
2012-12-14 13:02:44 +00:00
eap
2eb294fdc3 21948: EDF SMESH : Memory is not freed when deleting a mesh
Elimenate memory leaks
2012-12-14 12:30:59 +00:00
vsr
37b9292da6 Merge from BR_Qt48_porting (compatibility with Qt4.8) 14/12/2012 2012-12-14 10:16:09 +00:00
vsr
13ff1c4641 Merge from V6_6_BR (V6_6_0rc2) 11/12/2012 2012-12-11 13:23:39 +00:00
eap
0864c4d0a8 0021999: EDF 2480 SMESH : Aspect ratio on a flat mesh
1) For badly shaped elements, to prevent division by zero and other FP errors, do not use Presicion::Confusion() but 1e-100 and return 1e+100 if this limit is overcome
   2) merge other changes from V6_6_BR
2012-11-23 14:34:33 +00:00
gdd
71680afe44 Remove unwanted file 2012-11-12 09:59:56 +00:00
pnoyret
890fd0a1aa ajout du plugin yams 2012-10-29 13:06:41 +00:00
pnoyret
fc55c41f6c minor bugs -) 2012-10-29 13:02:14 +00:00
gdd
6a54fa6046 Update translation files 2012-10-23 10:03:15 +00:00
eap
b75ee995ab 0021339: EDF 1928 SMESH: Create group of 0D elements 2012-10-18 11:44:44 +00:00
eap
5d017835af untabify 2012-10-18 11:44:28 +00:00
eap
e1fe8b5ce1 fix of comment 2012-10-18 11:43:55 +00:00
eap
0c27c22747 0021339: EDF 1928 SMESH: Create group of 0D elements
Enable filtering 0D elements
2012-10-18 11:42:50 +00:00
eap
1fb9c7dd26 0021339: EDF 1928 SMESH: Create group of 0D elements
Enable creation of Balls and 0D elements on all selected nodes, not
  on one node only
2012-10-18 11:41:56 +00:00
eap
49c44a713e 0021339: EDF 1928 SMESH: Create group of 0D elements
Fix ElemGeomType::IsSatisfy() to work automatically with any new type
2012-10-18 11:40:33 +00:00
ana
e77525fc4f win32 compatibility 2012-10-17 13:42:00 +00:00
vsr
f3f2d644ef 0021915: [CEA 685] Remove Ascii from the STL file selection filter in the import STL file dialog box 2012-10-16 16:00:19 +00:00
vsr
d2f0eb8f21 0021915: [CEA 685] Remove Ascii from the STL file selection filter in the import STL file dialog box 2012-10-16 15:49:48 +00:00
eap
7e1dee49ad 0021543: EDF 1978 SMESH: Viscous layer for 2D meshes
Fix setEventListener() for a case of a listener found by name
2012-10-16 11:19:06 +00:00
eap
7c801b5b44 Values of element controls have been added to Mesh info 2012-10-16 09:56:24 +00:00
vsr
c5698502cc 0021478: EDF 2083 ALL: Write the version of Salome used to create the study in the hdf file 2012-10-16 08:28:43 +00:00
ana
3816b8e97c win32 compilation: remove unnecessary definition of dllimport 2012-10-16 06:35:13 +00:00
eap
43839bab02 0021543: EDF 1978 SMESH: Viscous layer for 2D meshes
Add StdMeshers_ViscousLayers2D hypothesis
2012-10-15 14:52:18 +00:00
eap
40e5fd72da 0021543: EDF 1978 SMESH: Viscous layer for 2D meshes
1) Move struct uvPtStruct to SMESH_TypeDefs.hxx
2) Enable work with a SMESH_ProxyMesh
2012-10-15 14:41:16 +00:00
eap
8b733351ad 0021543: EDF 1978 SMESH: Viscous layer for 2D meshes
+	StdMeshers_ViscousLayers2D.cxx \
2012-10-15 14:39:45 +00:00
eap
2c227fc6a5 0021543: EDF 1978 SMESH: Viscous layer for 2D meshes
+    def ViscousLayers2D(self, thickness, numberOfLayers, stretchFactor, ignoreEdges=[]):
2012-10-15 14:39:03 +00:00
eap
c53c4defde Convert ExportGMF() 2012-10-15 14:38:40 +00:00
eap
252161f517 Fix dump of ExportGMF() and ExportCGNS() 2012-10-15 14:35:51 +00:00
eap
8944375f22 0021543: EDF 1978 SMESH: Viscous layer for 2D meshes
In FindEqualElements(), use idSourceToSet()
2012-10-15 14:34:23 +00:00