IPAL21957: Max Element Area does not influence on resulting mesh for Triangle Mefisto
Fully restore "protection contre une arete max desiree trop grande ou trop petite"
to fix regression of bugs/I5
eap [Thu, 30 Jun 2011 13:32:04 +0000 (13:32 +0000)]
IPAL21957: Max Element Area does not influence on resulting mesh for Triangle Mefisto
Partially restore "protection contre une arete max desiree trop grande ou trop petite":
max size has been limited to make pass /bugs/S1 non-regression test
(NETGEN failes starting from the mesh made by MEFISTO)
vsr [Tue, 28 Jun 2011 14:19:44 +0000 (14:19 +0000)]
0021240: EDF OTHER: Impossible to go back to gui documentation after going to tui one
- Add "Home" link on geompy doc pages in order to allow getting back to the main page
eap [Mon, 27 Jun 2011 08:24:04 +0000 (08:24 +0000)]
Author: Roman Lygin, roman.lygin@gmail.com
fixS020
- Summary: Invalid computation of edge length on periodic curve leads to wrong tessellation
- Detailed description: SMESH_Algo returns incorrect edge length (1e-08) for an edge lying
beyond periodic curve range. Afterwards the number of segments is computed as
~ 1/lentgh and becomes 1.9M leading to running out of memory or failure to produce
2D mesh.
- Reproducer: Try to mesh f-percrvedge.brep with 1D Wire Discretization and default
MaxSize hypothesis.
eap [Mon, 27 Jun 2011 08:23:32 +0000 (08:23 +0000)]
Author: Roman Lygin, roman.lygin@gmail.com
fixS010
- Summary: Mefisto inconsistency and failure on same model
- Detailed description: See http://salome-platform.org/forum/forum_10/788312758
- Dependency: None
- Version where the issue was detected: 5.1.5
- Files
SMESH_SRC_x.y.z/src/MEFISTO2/aptrte.cxx
eap [Fri, 24 Jun 2011 11:38:34 +0000 (11:38 +0000)]
IPAL21957: Max Element Area does not influence on resulting mesh for Triangle Mefisto
Remove "protection contre une arete max desiree trop grande ou trop petite"
eap [Fri, 24 Jun 2011 11:38:08 +0000 (11:38 +0000)]
IPAL21957: Max Element Area does not influence on resulting mesh for Triangle Mefisto
revert modification done during WNT porting
- longai = areteideale()
+ longai = areteideale(xyz,xyzd)
eap [Wed, 15 Jun 2011 11:01:16 +0000 (11:01 +0000)]
020749: EDF 1291 SMESH : Create 2D Mesh from 3D improvement / note 0011031
In MakeBoundaryMesh(), implement boundary creation around a group of volumes
eap [Wed, 8 Jun 2011 09:06:21 +0000 (09:06 +0000)]
0021294: EDF 1890 : Problem with groups on geometry when dealing with split into tetrahedra
fix "Fatal error" at attempt to select a geom object in VTK viewer
when a "split into tetrahedra" dialog is open
eap [Wed, 8 Jun 2011 08:40:29 +0000 (08:40 +0000)]
0021106: EDF 1691 SMESH: MEsh.Group(SubShape) fails on Shells (points 1 and 2)
1) group type for a shell is Face now
2) make AssureGeomPublished() global and call from both Mesh and Mesh_Algorithm
eap [Tue, 7 Jun 2011 06:46:33 +0000 (06:46 +0000)]
0021294: EDF 1890 : Problem with groups on geometry when dealing with split into tetrahedra
in SetSubShape(const int aShID)
- if ( aShID > 1 )
+ if ( aShID > 0 )
SetSubShape( GetMeshDS()->IndexToShape( aShID ));
eap [Thu, 19 May 2011 08:09:14 +0000 (08:09 +0000)]
0020982: EDF 1547 SMESH: Creation of non-conformal quadratic pyramids / note 0011144
Use GeomAdaptor_Surface instead of BRepAdaptor_Surface which gives
surface UV limits according to face boundaries (edges) instead of
the whole surface
eap [Wed, 18 May 2011 12:20:00 +0000 (12:20 +0000)]
0020974: Extra edges appear in the result of a partition and can't be removed
3D soomthing, which will be replaced by a real fix coming in the next revision
eap [Mon, 16 May 2011 14:20:24 +0000 (14:20 +0000)]
0021263: EDF 1868: Several use cases fail (regressions)
+ * \brief Wrapper over TopExp::FirstVertex() and TopExp::LastVertex() fixing them
+ * in the case of INTERNAL edge
+ */
+//================================================================================
+
+TopoDS_Vertex SMESH_MesherHelper::IthVertex( const bool is2nd,
+ TopoDS_Edge anEdge,
+ const bool CumOri )