mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-11-11 16:19:16 +05:00
Quality Info: tolerance change does not influence on Nb double nodes
This commit is contained in:
parent
8a0ae20732
commit
b8917880e4
@ -2436,6 +2436,15 @@ SMDSAbs_ElementType CoincidentNodes::GetType() const
|
||||
return SMDSAbs_Node;
|
||||
}
|
||||
|
||||
void CoincidentNodes::SetTolerance( const double theToler )
|
||||
{
|
||||
if ( myToler != theToler )
|
||||
{
|
||||
SetMesh(0);
|
||||
myToler = theToler;
|
||||
}
|
||||
}
|
||||
|
||||
void CoincidentNodes::SetMesh( const SMDS_Mesh* theMesh )
|
||||
{
|
||||
myMeshModifTracer.SetMesh( theMesh );
|
||||
@ -4897,6 +4906,8 @@ void BelongToGeom::SetMesh( const SMDS_Mesh* theMesh )
|
||||
myMeshDS = dynamic_cast<const SMESHDS_Mesh*>(theMesh);
|
||||
init();
|
||||
}
|
||||
if ( myElementsOnShapePtr )
|
||||
myElementsOnShapePtr->SetMesh( myMeshDS );
|
||||
}
|
||||
|
||||
void BelongToGeom::SetGeom( const TopoDS_Shape& theShape )
|
||||
@ -5073,6 +5084,8 @@ void LyingOnGeom::SetMesh( const SMDS_Mesh* theMesh )
|
||||
myMeshDS = dynamic_cast<const SMESHDS_Mesh*>(theMesh);
|
||||
init();
|
||||
}
|
||||
if ( myElementsOnShapePtr )
|
||||
myElementsOnShapePtr->SetMesh( myMeshDS );
|
||||
}
|
||||
|
||||
void LyingOnGeom::SetGeom( const TopoDS_Shape& theShape )
|
||||
|
@ -419,7 +419,7 @@ namespace SMESH{
|
||||
virtual bool IsSatisfy( long theElementId );
|
||||
virtual SMDSAbs_ElementType GetType() const;
|
||||
|
||||
void SetTolerance (const double theToler) { myToler = theToler; }
|
||||
void SetTolerance (const double theToler);
|
||||
double GetTolerance () const { return myToler; }
|
||||
|
||||
private:
|
||||
@ -819,7 +819,7 @@ namespace SMESH{
|
||||
~ManifoldPart();
|
||||
//virtual Predicate* clone() const { return new ManifoldPart( *this ); }
|
||||
virtual void SetMesh( const SMDS_Mesh* theMesh );
|
||||
// inoke when all parameters already set
|
||||
// invoke when all parameters already set
|
||||
virtual bool IsSatisfy( long theElementId );
|
||||
virtual SMDSAbs_ElementType GetType() const;
|
||||
|
||||
|
@ -3911,9 +3911,15 @@ void SMESHGUI_CtrlInfo::clearInternal()
|
||||
|
||||
void SMESHGUI_CtrlInfo::setTolerance( double theTolerance )
|
||||
{
|
||||
//SMESH::long_array_var anElems = getElementsByType( SMESH::NODE );
|
||||
myButtons[1]->setEnabled( true );
|
||||
myWidgets[2]->setText("");
|
||||
myButtons[2]->setEnabled( true );
|
||||
myWidgets[3]->setText("");
|
||||
for ( int i = 0; i < myPredicates.count(); ++i )
|
||||
if ( myPredicates[i]->GetFunctorType() == SMESH::FT_EqualNodes )
|
||||
{
|
||||
SMESH::EqualNodes_var functor = SMESH::EqualNodes::_narrow( myPredicates[i] );
|
||||
if ( !functor->_is_nil() )
|
||||
functor->SetTolerance( theTolerance );
|
||||
}
|
||||
}
|
||||
|
||||
#ifndef DISABLE_PLOT2DVIEWER
|
||||
|
Loading…
Reference in New Issue
Block a user