eap [Wed, 28 Feb 2007 10:11:59 +0000 (10:11 +0000)]
PAL13460 (force the mesh to go through a point)
+ CORBA::Long MoveClosestNodeToPoint(CORBA::Double x,
+ CORBA::Double y,
+ CORBA::Double z,
+ CORBA::Long nodeID);
+
eap [Wed, 28 Feb 2007 09:44:30 +0000 (09:44 +0000)]
PAL13460 (force the mesh to go through a point)
+ static void GetLinkedNodes( const SMDS_MeshNode* node,
+ TIDSortedElemSet & linkedNodes,
+ SMDSAbs_ElementType type = SMDSAbs_All );
fix SMESH_NodeSearcherImpl::FindClosestTo(gp_Pnt)
eap [Wed, 28 Feb 2007 09:43:19 +0000 (09:43 +0000)]
PAL13460 (force the mesh to go through a point)
+ static void GetLinkedNodes( const SMDS_MeshNode* node,
+ TIDSortedElemSet & linkedNodes,
+ SMDSAbs_ElementType type = SMDSAbs_All );
eap [Wed, 28 Feb 2007 09:41:32 +0000 (09:41 +0000)]
PAL13460 (force the mesh to go through a point)
+ SMESH_OctreeNodeIteratorPtr GetChildrenIterator();
+ SMDS_NodeIteratorPtr GetNodeIterator();
+ int NbNodes() const { return myNbNodes; }
eap [Wed, 21 Feb 2007 17:19:15 +0000 (17:19 +0000)]
PAL13460 (PAL EDF 301 force the mesh to go through a point)
add generic method
AddElement(const vector<const SMDS_MeshNode*> & node,
const SMDSAbs_ElementType type,
const bool isPoly,
const int ID=0)
eap [Wed, 21 Feb 2007 16:53:55 +0000 (16:53 +0000)]
PAL13460 (PAL EDF 301 force the mesh to go through a point)
Provide usual access to data:
+ virtual int NbNodes() const;
+ const std::vector<int> & GetQuanities() const { return myQuantities; }
+ virtual const SMDS_MeshNode* GetNode(const int ind) const;
+ SMDS_ElemIteratorPtr uniqueNodesIterator() const;
+ SMDS_ElemIteratorPtr elementsIterator(SMDSAbs_ElementType type) const;
eap [Tue, 20 Feb 2007 09:24:33 +0000 (09:24 +0000)]
PAL13504 (Mesh from an imported mesh)
+ boolean HasShapeToMesh()
PAL13903 (SMESH Extrusion along a path , linear variation of the angles)
+ double_array LinearAnglesVariation()
eap [Tue, 20 Feb 2007 07:33:03 +0000 (07:33 +0000)]
PAL13639 (EDF PAL 317 : SMESH : Create "0D Hypothesis")
add Mesh_Segment.LengthNearVertex()
PAL13615 (EDF PAL 315/31 GEOM SMESH : meshing of a "5 edges quadrangle")
add class Mesh_CompositeSegment(Mesh_Segment) amd
COMPOSITE type of segment algorithm
PAL13903 (SMESH Extrusion along a path , linear variation of the angles)
add optional LinearVariation arg to ExtrusionAlongPath()
eap [Mon, 29 Jan 2007 09:21:37 +0000 (09:21 +0000)]
PAL13139 (Corrupted reading of groups at import of MED files in Post-Pro)
Do not create families and groups of all entities if there are
no such entities in the mesh
admin [Mon, 22 Jan 2007 15:14:46 +0000 (15:14 +0000)]
This commit was generated by cvs2git to create branch 'V3_2_0_maintainance'.
Cherrypick from master 2007-01-22 15:14:44 UTC nge <nge> 'PAL 14158 Add the Octree and OctreeNode classes to accelerate detection of close nodes. Octree is virtual pure, OctreeNode inherites from Octree.':
src/SMESH/SMESH_Octree.cxx
src/SMESH/SMESH_Octree.hxx
src/SMESH/SMESH_OctreeNode.cxx
src/SMESH/SMESH_OctreeNode.hxx
eap [Mon, 22 Jan 2007 06:35:47 +0000 (06:35 +0000)]
PAL13073 (Submesh hypothesises do not work for NETGEN 1D-2D-3D)
add HYP_HIDDEN_ALGO and HYP_HIDING_ALGO Hypothesis_Status'es
letting the user know that assigned algorithm will not be
taken into accoun while mesh generation
eap [Fri, 19 Jan 2007 14:43:59 +0000 (14:43 +0000)]
PAL13073 (Submesh hypothesises do not work for NETGEN 1D-2D-3D)
add _pyCommand::GetIndentation() and addErrorTreatmentCmd()
used to show status of not wrapped AddHypothesis() command
eap [Fri, 19 Jan 2007 14:39:30 +0000 (14:39 +0000)]
PAL13073 (Submesh hypothesises do not work for NETGEN 1D-2D-3D)
add HYP_HIDDEN_ALGO and HYP_HIDING_ALGO Hypothesis_Status'es
letting the user know that assigned algorithm will not be
taken into account while mesh generation
eap [Fri, 29 Dec 2006 16:26:27 +0000 (16:26 +0000)]
NPAL14335 (EDF 344 SMESH : "ERROR : Iterator not implemented " when loading a script)
1) protect FindFace() from access to NULL nodes
2) fix FindFace() for polygons
eap [Fri, 29 Dec 2006 14:37:28 +0000 (14:37 +0000)]
NPAL14335 (EDF 344 SMESH : "ERROR : Iterator not implemented " when loading a script)
use set<element,comparator> instead of map<ID,element> to
have elements sorted by ID
eap [Fri, 29 Dec 2006 14:36:25 +0000 (14:36 +0000)]
NPAL14335 (EDF 344 SMESH : "ERROR : Iterator not implemented " when loading a script)
use GetInverseElementIterator(type) instead of node->facesIterator ()
and node->edgesIterator() to avoid infinite recursion from
volume->facesIterator()