eap
9d998b2291
0022108: EDF 2547 SMESH: Duplicate elements only
...
+ void DoubleElements( const TIDSortedElemSet& theElements );
2013-05-28 16:41:32 +00:00
eap
6b2c537fcd
0022216: EDF 2613 SMESH: Projection 1D with multi-dimensional algo (Netgen 1D-2D or BLSurf...)
...
int GetHypotheses(const TopoDS_Shape & aSubShape,
const SMESH_HypoFilter& aFilter,
list <const SMESHDS_Hypothesis * >& aHypList,
const bool andAncestors,
+ list< TopoDS_Shape > * assignedTo=0) const
2013-05-27 14:01:40 +00:00
eap
fce384ca68
Fix a typo nagate -> negate
2013-05-27 14:00:27 +00:00
eap
6a6b89f677
0022216: EDF 2613 SMESH: Projection 1D with multi-dimensional algo (Netgen 1D-2D or BLSurf...)
...
Fix checkConformIgnoredAlgos() to prevent warning on hiding a local
algo by a local all-dimensional algo of upper dim.
2013-05-27 13:59:56 +00:00
eap
4443257370
Make const GetAppliedHypothesis() and GetUsedHypothesis()
2013-05-27 13:56:30 +00:00
eap
10a6101340
0022172: [CEA 790] create the groups corresponding to domains
...
1) Reset _algo = 0 if ( event == REMOVE_ALGO || event == REMOVE_FATHER_ALGO )
2) Avoid erasing _computeError holding a WARNING is algo->Compute() returns true
- if ( !_computeError || ( !ret && _computeError->IsOK() ) )
+ if ( !_computeError || (/* !ret && */_computeError->IsOK() ) )
_computeError = algo->GetComputeError();
3) Fix notifyListenersOnEvent():
- if ( !isDeletable || !_eventListeners.count( li_da.first ))
+ if ( !isDeletable || _eventListeners.count( li_da.first ))
li_da.first->myBusySM.erase( this ); // a listener is hopefully not dead
2013-05-24 11:46:27 +00:00
eap
751d20eca2
0022106: EDF 2464 SMESH : Split quadrangles in 4 triangles
...
+ void QuadTo4Tri (TIDSortedElemSet & theElems);
2013-05-22 14:58:32 +00:00
eap
8506f58d10
0022106: EDF 2464 SMESH : Split quadrangles in 4 triangles
...
Fix position of a central node of a distorted bi-quadratic triangle
+ * \brief Return UV for the central node of a biquadratic triangle
+ */
+ static gp_XY GetCenterUV(const gp_XY& uv1,
+ const gp_XY& uv2,
+ const gp_XY& uv3,
+ const gp_XY& uv12,
+ const gp_XY& uv23,
+ const gp_XY& uv31,
+ bool * isBadTria=0);
2013-05-22 14:58:06 +00:00
eap
46654775eb
In GetSubMesh(), assure calling fillAncestorsMap() for each compound
...
(take into account that a compound can be added to SMESHDS_Mesh at
creation of group on geometry)
2013-05-20 09:11:12 +00:00
eap
96862daa25
arrange #include
2013-05-16 16:29:29 +00:00
eap
098ecf81c2
0022100: EDF 2413 SMESH: Take into account TRIA7
...
+ const SMDS_MeshNode* GetCentralNode(const SMDS_MeshNode* n1,
+ const SMDS_MeshNode* n2,
+ const SMDS_MeshNode* n3,
+ const SMDS_MeshNode* n12,
+ const SMDS_MeshNode* n23,
+ const SMDS_MeshNode* n31,
+ bool force3d);
2013-05-16 16:28:40 +00:00
eap
664ae5e033
1) 0022100: EDF 2413 SMESH: Take into account TRIA7
...
2) 0022098: EDF 2036 SMESH: Create groups from none conected parts of a mesh
Move SMESH_ElementSearcher to from SMESH/SMESH_MeshEditor.hxx SMESHUtils/SMESH_MeshAlgos.hxx
in order to make SMESH_ElementSearcher accessible from Controls/SMESH_Controls.cxx
-struct SMESH_NodeSearcher
-{
-struct SMESH_ElementSearcher
-{
- SMESH_NodeSearcher* GetNodeSearcher();
- SMESH_ElementSearcher* GetElementSearcher();
- SMESH_ElementSearcher* GetElementSearcher( SMDS_ElemIteratorPtr elemIt );
- static bool IsOut( const SMDS_MeshElement* element, const gp_Pnt& point, double tol );
- static double GetDistance( const SMDS_MeshFace* face, const gp_Pnt& point );
- static const SMDS_MeshElement* FindFaceInSet(const SMDS_MeshNode* n1,
2013-05-16 16:27:06 +00:00
eap
68683b462f
0022100: EDF 2413 SMESH: Take into account TRIA7
...
+ int NbBiQuadTriangles() const throw(SALOME_Exception);
2013-05-16 16:23:11 +00:00
eap
36f9a5cb34
0022098: EDF 2036 SMESH: Create groups from none conected parts of a mesh
...
Move SMESH_ElementSearcher to from SMESH/SMESH_MeshEditor.hxx SMESHUtils/SMESH_MeshAlgos.hxx
in order to make SMESH_ElementSearcher accessible from Controls/SMESH_Controls.cxx
- static bool FaceNormal(const SMDS_MeshElement* F, gp_XYZ& normal, bool normalized=true);
- static std::vector< const SMDS_MeshNode*> GetCommonNodes(const SMDS_MeshElement* e1,
- const SMDS_MeshElement* e2);
2013-05-16 16:22:25 +00:00
eap
89682777f7
0022202: EDF SMESH: Regression in a script meshing prisms and hexaedrons
...
Fix notifyListenersOnEvent() for the case of removing an EventListener (attempt No.2)
2013-04-29 14:18:32 +00:00
eap
36550205e6
0022202: EDF SMESH: Regression in a script meshing prisms and hexaedrons
...
Fix notifyListenersOnEvent() for the case of removing an EventListener
2013-04-29 12:00:40 +00:00
eap
55e345e578
Regression of SMESH_TEST/Grids/smesh/imps7/H6
...
Unreachable deep idea
bool subComputed = false, subFailed = false;
if (!algo->OnlyUnaryInput()) {
- if ( event == COMPUTE &&
- ( algo->NeedDiscreteBoundary() || algo->SupportSubmeshes() ))
+ if ( event == COMPUTE /*&&
+ ( algo->NeedDiscreteBoundary() || algo->SupportSubmeshes() )*/)
shape = getCollection( gen, algo, subComputed, subFailed );
else
subComputed = SubMeshesComputed( & subFailed );
2013-04-26 15:53:34 +00:00
eap
65c45fcb35
Regression of XSMESH_TEST/SMESHCOMMON/SMESH_TEST/Grids/smesh/bugs12/M6
...
Fix the ensuring stability of SMESH_MeshEditor::makeWalls().
2013-04-26 11:47:26 +00:00
eap
85cd604381
Regression of XSMESH_TEST/SMESHCOMMON/SMESH_TEST/Grids/smesh/bugs12/M6
...
To assure stability of makeWalls(), use maps sorted by ID, that are
declared in SMESH_TypeDefs.hxx
-typedef map<const SMDS_MeshElement*, list<const SMDS_MeshNode*> > TElemOfNodeListMap;
-typedef map<const SMDS_MeshElement*, list<const SMDS_MeshElement*> > TElemOfElemListMap;
2013-04-24 12:59:33 +00:00
eap
b0fed15261
Regression of already fixed
...
0021406: EDF 1975 NETGENPLUGIN: Submesh hypothesis not taken into account
Correct the patch for
0021556: EDF 2222 SMESH: 3D mesh after projection impossible
- smWithAlgoSupportingSubmeshes[0].push_back( shDim2smIt->second );
+ smWithAlgoSupportingSubmeshes[3].push_back( shDim2smIt->second );
2013-04-15 10:48:46 +00:00
vsr
ae86d2a1ab
Merge from V6_main 12/04/2013
2013-04-12 14:40:29 +00:00
prascle
9c2ce3dffb
PR: debug G. Nicolas (EDF 1967)
2013-04-05 15:19:53 +00:00
vsr
bd8f1aee7c
Merge from V6_main 01/04/2013
2013-04-01 13:05:47 +00:00
vsr
31ca0b3e3b
Merge from V6_main 15/03/2013
2013-03-15 14:59:29 +00:00
vsr
7aebb99e42
Merge from V6_main 06/03/2013
2013-03-06 13:57:01 +00:00
vsr
88b3dbe23b
Merge from V6_main 28/02/2013
2013-02-28 15:07:35 +00:00
vsr
9a54694a0a
Merge from V6_main 11/02/2013
2013-02-12 14:37:44 +00:00
vsr
1067ffa6e7
Merge from V6_main 13/12/2012
2012-12-13 11:41:29 +00:00
vsr
f5016d85b7
Merge from V6_main (04/10/2012)
2012-10-08 11:56:59 +00:00
vsr
bd4e115a78
Merge from V6_main_20120808 08Aug12
2012-08-09 10:03:55 +00:00
vsr
0635c9fc80
Merge from BR_V5_DEV 16Feb09
2009-02-17 05:27:49 +00:00
jfa
79b1ac2b6d
Join modifications from BR_Dev_For_4_0 tag V4_1_1.
2008-03-07 07:47:05 +00:00
nge
984c4ffdd7
PAL 14158 Add the Octree and OctreeNode classes to accelerate detection of close nodes. Octree is virtual pure, OctreeNode inherites from Octree.
2007-01-22 15:14:44 +00:00
jfa
c63ee099ad
Join modifications from branch BR_DEBUG_3_2_0b1
2006-06-01 11:39:17 +00:00
jfa
57b43b4d01
Join modifications from branch OCC_debug_for_3_2_0b1
2006-05-06 08:51:48 +00:00
jfa
4ff5bd6154
Join modifications from branch OCC_development_for_3_2_0a2
2006-03-13 15:29:49 +00:00
smh
d0f366c4a3
Merge from OCC_development_generic_2006
...
Preparation of 3.2.0a1
2006-02-07 15:01:11 +00:00
eap
96874fc4b6
PAL10953. Fix GetSubmeshComputed(): there may be elements but no nodes in a submesh
2005-12-26 10:36:57 +00:00
eap
493903908d
fix PAL10974. Call CleanDependants() instead of
...
RemoveSubMeshElementsAndNodes() before algo->Compute()
2005-12-20 13:57:13 +00:00
eap
d81b4f8f21
fix bug PAL10974: add IsReversedSubMesh()
2005-12-20 13:53:23 +00:00
eap
477d745d92
fix bug PAL10974: check if SubMeshesComputed() by presence of nodes in submesh.
...
Restore lost modifications fixing PAL8021.
2005-12-20 11:10:13 +00:00
smh
2754c581d3
Copyrights update
2005-12-05 16:31:55 +00:00
skl
db9a6dee24
Improvement of extrusion functionality
2005-11-14 12:41:17 +00:00
eap
81e9dbdf6c
PAL10491. Add GetAlgoState()
2005-11-14 09:11:54 +00:00
eap
d5f8c39955
Fix bug 10390. fix getting submesh for a shell
2005-11-08 13:04:03 +00:00
eap
b992817854
PAL10158. Add clearMesh()
2005-11-07 14:34:13 +00:00
eap
7a320061b4
PAL10158. Add clearMesh() where call ComputeStateEngine(CLEANDEP)
2005-11-07 14:34:02 +00:00
skl
868e306e09
Improvement of extrusion functionality
2005-10-25 07:26:54 +00:00
san
22f20048e0
Temporarily rolling back the last integration
2005-10-21 07:58:14 +00:00
skl
423f097f5e
Inmprovement extrusion algorithm in MeshEditor
2005-10-21 07:44:17 +00:00
eap
1bed3bf84e
PAL10196. use renamed GetGroupNames()->GetGroupNamesAndTypes() of MED Driver
2005-10-11 13:41:57 +00:00
skl
e331ccd26c
Modification some functionality for splitting assembly
2005-10-06 12:26:54 +00:00
skl
3f8c64cc43
Modification function HashCode() for correct work of DataMap
2005-10-05 13:27:49 +00:00
skl
56e741c0f7
Integration some new classes for working of core mesher
2005-10-04 06:04:02 +00:00
skl
98fe24f8c9
Replaced NMTTools map with NCollection map for removing dependencies from GEOM module.
2005-09-26 12:26:52 +00:00
skl
05ae10badd
Add interface for keeping information about performed operation of extrusion.
2005-09-26 07:03:47 +00:00
skl
ab6b16e673
Replaced NMTTools map with NCollection map for removing dependencies from GEOM module.
2005-09-26 07:01:06 +00:00
eap
3291e2c4e1
PAL9874. Fix error in SMESH_HypoFilter::IsGlobalPredicate; add possibility to add all predicates in one statement.
2005-09-07 08:07:34 +00:00
sln
bbfbac1990
GetElementType method added
2005-08-23 08:58:58 +00:00
jfa
c9c6669fab
Enable setting of Numeric Functors as criteria in Split Quadrangles and Union Triangles functionalities in GUI
2005-08-11 08:06:39 +00:00
eap
3bd4631f8e
Move MEDWrapper to MED module
2005-07-13 09:01:03 +00:00
eap
255ab4e2ee
PAL8196. Do not operate with hypothesis for a geom group member which is not a sub-shape of the main shape
2005-06-24 11:09:36 +00:00
eap
72b3cba035
PAL8196. Fix GetAlgo() for the case with the same algo on several ancestors
2005-06-24 11:01:15 +00:00
smh
c38c10811a
SMH: Preparation version 3.0.0 - merge (HEAD+POLYWORK)
2005-06-07 13:22:20 +00:00
eap
ebe9f34644
PAL8330. In sweepElement(): fix volume orientation
2005-04-01 11:26:44 +00:00
apo
6bbcf82682
PythonDump for SMESH Controls / Filter
2005-03-30 12:49:55 +00:00
msv
f4c7cebbd6
Comment out useless message output to speed up change hypothesis operation
2005-03-18 12:49:28 +00:00
san
935adb05a1
PAL8310
2005-02-25 14:37:37 +00:00
eap
a9750358c9
PAL8021. In AlgpStateEngine(), clean existing sub-mesh only if hypothesis change. In CleanDependants(), do not go upper than SOLID.
2005-02-07 11:06:45 +00:00
eap
9b3ccd683e
PAL7933. Use SMESH_HypoFilter to retrieve assigned hypotheses
2005-02-04 11:00:40 +00:00
eap
36409e98c9
PAL7933. Change IsGlobalAlgo() -> IsGlobalHypothesis();
...
Use SMESH_HypoFilter to retrieve assigned hypotheses
2005-02-04 10:58:21 +00:00
eap
e753a76d0e
PAL7933. Add GetHypothesi(e)s() which filter assigned hypotheses;
...
enable propagation of local hypotheses assigned to super-shapes;
Use SMESH_HypoFilter to retrieve assigned hypotheses
2005-02-04 10:54:26 +00:00
eap
85b8384fb0
PAL7933. Add static IsApplicableHypothesis();
...
enable propagation of local hypotheses assigned to super-shapes;
Use SMESH_HypoFilter to retrieve assigned hypotheses
2005-02-04 10:39:49 +00:00
eap
45e910e8aa
PAL7933. Add static IsApplicableHypothesis()
2005-02-04 10:34:55 +00:00
eap
5ed9406302
PAL7933. Create class SMESH_HypoFilter
2005-02-04 10:31:55 +00:00
eap
fedc148b81
PAL7913. Add static ShellPoint()
2005-02-01 07:44:53 +00:00
eap
316e159045
PAL7913. Add static ShellPoint() and several methos about sub-shapes indexation
2005-02-01 07:43:14 +00:00
eap
35c1f52506
Do not try to compute sub-meshes if the main shape is already meshed
2005-02-01 07:37:00 +00:00
eap
455afe36e4
PAL7935. In Load(face), load from a forward face
2005-01-31 11:33:26 +00:00
eap
1c5631d5e5
PAL7926. Add missing return
2005-01-31 07:21:33 +00:00
eap
6d13ce6863
PAL7403. In ShapeToMesh(), remove shape referring data if the main shape becomes NULL
2005-01-26 08:42:27 +00:00
eap
31e0d2b9b7
remove not used fields
2005-01-26 08:35:00 +00:00
eap
a4f98fe737
PAL7358. Add VertexParameters() and EdgeParameters()
2005-01-26 08:32:21 +00:00
eap
dcab7b2d24
PAL7722. Add IsReversedInChain(). In BuildPropagationChain(), chains of edges with propagated hypothesis are filled taking into account edges orientation
2005-01-21 14:11:17 +00:00
eap
d9ce7a48c1
Comment annoing trace
2005-01-21 14:03:54 +00:00
eap
08e0a4de43
PAL7358. Now Reorient() can work with edge, faces and volumes
2005-01-21 12:16:32 +00:00
vsr
3f9592083e
Fix a bug of 'Extrusion Along a Path' : number of rotation angles should be 1 less than number of path points
2005-01-21 08:42:11 +00:00
vsr
5496cb6ab1
Implement sweep mesh elements along a path (PAL7218).
2005-01-20 14:50:37 +00:00
san
e465982eeb
Implementation of new pattern mapping algorthm (mesh refinement)
2005-01-20 14:44:17 +00:00
admin
090aff0726
Merge with OCC_development_01
2005-01-20 06:25:54 +00:00
admin
ed456586bf
Merge with OCC-V2_1_0_deb
2004-12-17 11:07:35 +00:00
admin
e4737e85f0
Merge with version on tag OCC-V2_1_0d
2004-12-01 10:48:31 +00:00
yfr
bc37f0b49f
DCQ : Merge with Ecole_Ete_a6.
2004-06-18 08:55:35 +00:00
nadir
d65fdaa969
correct a small bug detected when using different wire discretisation
...
of edges of the shape to be meshed by hexaedrons.
2004-04-01 11:54:39 +00:00
jrt
61c36a7e0c
Creating and importing 2 meshes from the same engine was not working. Mesh ID management was change to fix this problem.
2004-03-26 14:53:44 +00:00
jrt
7b70ad87bf
Merge br_enable_import_mesh. Enable import mesh and save/load SMESH study.
2004-03-15 18:42:16 +00:00
jrt
0aec6215ad
HAVE_NETGEN (#define) to remove an unresolved symbol when building without netgen
2003-12-11 09:49:11 +00:00
nadir
51fa3b0985
Correcting a problem araising when building the SMESH module whithout Netgen.
2003-12-09 14:13:45 +00:00
nadir
faa1c8f2bc
updating or adding when merging in the main trunk with the version in the
...
branch nadir_1_2_2 !!
2003-12-08 15:43:20 +00:00
jrt
ef932e4d05
Correct some memory leaks
2003-09-05 11:45:54 +00:00
jrt
f7fbf1c622
Use nodes and elements pointer instead on IDs
2003-09-05 10:31:32 +00:00
jrt
fb91f8b907
make GetMaxArea const
2003-09-04 10:10:43 +00:00
jrt
97368ef20f
make hypothesis const
2003-09-04 10:10:23 +00:00
jrt
5e5d6b74d8
Update to match the change of SMDS (new DS).
2003-09-04 09:55:13 +00:00
jrt
bb2c60c2b6
Update to match the change of SMDS (new DS).
2003-09-04 09:21:41 +00:00
jrt
0273fe09c6
make GetNumberOfSegments and GetScaleFactor const
2003-09-04 09:13:24 +00:00
jrt
5b889e3e3e
make GetLength const
2003-09-04 09:10:12 +00:00
nri
ebd78fd529
NRI : Merge from V1_2.
2003-07-10 15:04:17 +00:00
yfr
789d7f7415
yfr : Merge with v1.2
2003-07-10 10:13:42 +00:00
nri
1fc3c03b8d
NRI : Add KERNEL includes and libs.
2003-05-19 14:12:29 +00:00
nri
0b959120c5
NRI : First integration.
2003-05-19 13:18:36 +00:00