eap
2978b5432c
0021375: EDF 1671 SMESH: Dump study of current state
...
+ virtual void SetOption(const char*, const char*);
+ virtual char* GetOption(const char*);
+ bool myIsHistoricalPythonDump;
2012-02-09 13:17:21 +00:00
eap
f6cd6404d7
0021375: EDF 1671 SMESH: Dump study of current state
2012-02-09 13:16:35 +00:00
eap
693476070c
0021375: EDF 1671 SMESH: Dump study of current state
...
add "historical_python_dump" preference
2012-02-09 13:13:29 +00:00
eap
785e19b0ca
0021375: EDF 1671 SMESH: Dump study of current state
...
avoid crash at deletion of SMESH_subMesh::myOwnListeners at mesh removal
- std::list< std::pair< SMESH_subMesh*, EventListener* > > myOwnListeners;
+ struct OwnListenerData {
+ ...
+ };
+ std::list< OwnListenerData > myOwnListeners;
2012-02-09 13:11:58 +00:00
eap
14e44c7736
0021375: EDF 1671 SMESH: Dump study of current state
...
+ bool MeshExists( int meshId ) const;
used to avoid crash at deletion of SMESH_subMesh::myOwnListeners
at mesh removal
2012-02-09 13:10:52 +00:00
eap
d3c66835d0
0021375: EDF 1671 SMESH: Dump study of current state
...
+ <parameter name="historical_python_dump" value="true" />
2012-02-09 13:08:33 +00:00
eap
e830e055d0
0021489: EDF 2096: Regression in Prism algorithm between 6.3.1 and 6.4.0
...
fix after changed behaviour of LoadNodeColumns()
- bool isForward = ( edgeIt->Orientation() == TopAbs_FORWARD );
+ bool isForward =
+ StdMeshers_PrismAsBlock::IsForwardEdge( myHelper->GetMeshDS(),
+ myParam2ColumnMaps[iE],
+ *edgeIt, SMESH_Block::ID_Fx0z );
2012-02-09 12:31:36 +00:00
eap
7a57f9da6e
0021489: EDF 2096: Regression in Prism algorithm between 6.3.1 and 6.4.0
...
fix LoadNodeColumns()
2012-02-09 12:30:06 +00:00
prascle
fda2d7b99e
PR: flat elements on 2D meshes
2012-02-02 17:06:56 +00:00
rnv
24df7fa1ab
win32 compilation of the Mesh module.
2012-02-01 12:31:41 +00:00
gdd
35504e1535
Add missing screenshot
2012-01-31 12:41:32 +00:00
prascle
935c51bba9
PR: update doc on flat elements, more robust geometry
2012-01-31 10:51:54 +00:00
eap
2e832c29b9
Modif to build doc directory after bin directory
2012-01-31 10:51:07 +00:00
eap
e05243759a
0021338: EDF 1926 SMESH: New controls and filters
...
Update controlMode()
2012-01-30 09:49:32 +00:00
eap
f0f28bd92d
0021338: EDF 1926 SMESH: New controls and filters
...
Add "Double nodes tolerance" preference
2012-01-27 10:41:48 +00:00
eap
c6edb52c8e
0021338: EDF 1926 SMESH: New controls and filters
...
get Tolerance for "Double nodes" from Preferences
2012-01-27 10:41:12 +00:00
eap
80543409ed
0021338: EDF 1926 SMESH: New controls and filters
...
+ <parameter name="equal_nodes_tolerance" value="1e-7"/>
2012-01-27 10:40:34 +00:00
eap
669141ed33
0021338: EDF 1926 SMESH: New controls and filters
...
Tolerance is given in Preferences
2012-01-27 10:40:21 +00:00
eap
44f38c258b
0021338: EDF 1926 SMESH: New controls and filters
...
+\note VTK viewer has the limitation that volume elements basing on
+the same set of nodes are invisible in the VTK viewer.
2012-01-27 10:39:45 +00:00
eap
c1e553583f
0021338: EDF 1926 SMESH: New controls and filters
...
+ FT_EqualNodes,
+ FT_EqualEdges,
+ FT_EqualFaces,
+ FT_EqualVolumes,
2012-01-26 16:04:00 +00:00
eap
8931be9b66
0021338: EDF 1926 SMESH: New controls and filters
2012-01-26 16:03:40 +00:00
eap
601f8a87b5
0021338: EDF 1926 SMESH: New controls and filters
...
Return all nodes from sub-mesh and group
2012-01-26 16:02:10 +00:00
eap
98460fb0dc
0021338: EDF 1926 SMESH: New controls and filters
...
+ class SMESH_I_EXPORT EqualNodes_i: public virtual POA_SMESH::EqualNodes,
+ class SMESH_I_EXPORT EqualEdges_i: public virtual POA_SMESH::EqualEdges,
+ class SMESH_I_EXPORT EqualFaces_i: public virtual POA_SMESH::EqualFaces,
2012-01-26 15:58:58 +00:00
eap
da61389f82
0021338: EDF 1926 SMESH: New controls and filters
...
Correctly set mesh modified at transformations
2012-01-26 15:57:56 +00:00
eap
e65e4d9a03
0021338: EDF 1926 SMESH: New controls and filters
...
+ /*!
+ * \brief Class used to detect mesh modification: IsMeshModified() returns
+ * true if a mesh has changed since last calling IsMeshModified()
+ */
+ class SMESHCONTROLS_EXPORT TMeshModifTracer
2012-01-26 15:56:22 +00:00
eap
2d179048e3
0021338: EDF 1926 SMESH: New controls and filters
...
Call myPredicate->SetMesh( GetMesh() ) in order to let him update
his data according to a changed mesh
2012-01-26 15:32:57 +00:00
eap
1ffe72da8d
0021338: EDF 1926 SMESH: New controls and filters
2012-01-26 15:31:11 +00:00
eap
61915a66ed
Fix removal of free nodes
2012-01-26 11:24:22 +00:00
eap
b4e2459e13
Fix RemoveOrphanNodes() to return valid nb of removed nodes
2012-01-26 11:06:16 +00:00
eap
a7d76b7825
0021484: EDF 2087 SMESH: Problem projection
...
fix search of initial vertex association for group of FACEs
+ TopoDS_Shape getOuterEdge( const TopoDS_Shape theShape1, SMESH_Mesh& mesh )
- static bool IsBoundaryEdge(const TopoDS_Edge& edge,
- const TopoDS_Shape& edgeContainer,
- SMESH_Mesh& mesh);
+ static TopoDS_Edge GetBoundaryEdge(const TopoDS_Shape& edgeContainer,
+ const SMESH_Mesh& mesh);
2012-01-25 12:19:58 +00:00
eap
cbd52f6644
0021484: EDF 2087 SMESH: Problem projection
...
- static bool IsBoundaryEdge(const TopoDS_Edge& edge,
- const TopoDS_Shape& edgeContainer,
- SMESH_Mesh& mesh);
+ static TopoDS_Edge GetBoundaryEdge(const TopoDS_Shape& edgeContainer,
+ const SMESH_Mesh& mesh);
2012-01-25 12:18:02 +00:00
eap
40a14effec
0021484: EDF 2087 SMESH: Problem projection
...
Check orientation of faces after simple cases of projection as well
2012-01-25 07:37:32 +00:00
vsr
8ed51b18ba
0021481: [CEA 538] autoconf and med 3
2012-01-24 14:59:27 +00:00
eap
1ef48564e5
0021480: EDF 2084 SMESH: SIGSEGV when validating Netgen3D hypothesis
...
In ~TPreviewMesh(), nullify _myMeshDS after destruction
2012-01-24 13:01:34 +00:00
eap
6a0dd162a9
0021480: EDF 2084 SMESH: SIGSEGV when validating Netgen3D hypothesis
...
In RemoveMesh(), do not erase an iterator pointing to map.end()
2012-01-24 13:00:47 +00:00
eap
fe663d61f6
0021480: EDF 2084 SMESH: SIGSEGV when validating Netgen3D hypothesis
...
In destructor, delete all data and delete mesh DS in a thread
2012-01-24 12:59:44 +00:00
eap
fe75082f74
0021480: EDF 2084 SMESH: SIGSEGV when validating Netgen3D hypothesis
...
in CreateMesh(), fix storing a new mesh in aStudyContext:
- aStudyContext->mapMesh[_localId] = aMesh;
+ aStudyContext->mapMesh[_localId-1] = aMesh;
2012-01-24 12:58:12 +00:00
eap
b35e752a84
0021480: EDF 2084 SMESH: SIGSEGV when validating Netgen3D hypothesis
...
+ $(BOOST_LIB_THREAD) \
2012-01-24 12:57:05 +00:00
eap
b630c0858f
0021338: EDF 1926 SMESH: New controls and filters
2012-01-24 06:41:04 +00:00
eap
12c12edac4
0021338: EDF 1926 SMESH: New controls and filters
...
-typedef pair< const SMDS_MeshNode*, const SMDS_MeshNode* > NLink;
+typedef std::pair< const SMDS_MeshNode*, const SMDS_MeshNode* > NLink;
2012-01-23 16:15:27 +00:00
eap
8e8c7bd49e
0021338: EDF 1926 SMESH: New controls and filters
2012-01-23 16:15:07 +00:00
eap
ffb69e815c
0021338: EDF 1926 SMESH: New controls and filters
...
+ case 6028:
+ aControl = SMESH_Actor::eCoincidentNodes;
+ break;
+ case 6029:
+ aControl = SMESH_Actor::eCoincidentElems1D;
+ break;
+ case 6030:
+ aControl = SMESH_Actor:: eCoincidentElems2D;
+ break;
+ case 6031:
+ aControl = SMESH_Actor::eCoincidentElems3D;
2012-01-23 16:15:00 +00:00
eap
a286422371
0021338: EDF 1926 SMESH: New controls and filters
...
+ -I$(srcdir)/../SMESHUtils
2012-01-23 16:14:27 +00:00
eap
0d35811cbb
0021338: EDF 1926 SMESH: New controls and filters
...
in SMESH_SubMeshObj::UpdateFunctor() set a part of mesh to eCoincident* functors
2012-01-23 16:13:53 +00:00
eap
c573d1fae4
0021338: EDF 1926 SMESH: New controls and filters
...
+ eCoincidentNodes, eCoincidentElems1D, eCoincidentElems2D, eCoincidentElems3D };
2012-01-23 16:12:32 +00:00
eap
3ce7e67ad8
0021338: EDF 1926 SMESH: New controls and filters
...
+ class SMESHCONTROLS_EXPORT CoincidentElements: public Predicate {
+ class SMESHCONTROLS_EXPORT CoincidentNodes: public Predicate {
2012-01-23 16:10:55 +00:00
eap
a26c2ead1f
0021338: EDF 1926 SMESH: New controls and filters
...
+ mesh_equal_edge.png \
+ mesh_equal_face.png \
+ mesh_equal_node.png \
+ mesh_equal_volume.png \
2012-01-23 16:10:06 +00:00
eap
5b637a30b4
0021198: EDF 1548 GEOM: Writing of coordinates system into exported UNV files
...
Read/write CS and units. Use vector instead of map as TDataSet
2012-01-23 08:02:02 +00:00
eap
83219fd4b2
0021198: EDF 1548 GEOM: Writing of coordinates system into exported UNV files
...
+ inline std::string read_line(std::ifstream& in_stream, const bool next=true)
2012-01-23 08:00:37 +00:00
eap
1b141b0cb9
0021198: EDF 1548 GEOM: Writing of coordinates system into exported UNV files
2012-01-23 08:00:05 +00:00