// MESSAGE("BLSURFPlugin_Hypothesis_i::SetPhySizeRel");
ASSERT(myBaseImpl);
this->GetImpl()->SetPhySize(theValue, true);
- SMESH::TPythonDump() << _this() << ".SetPhySize( " << theValue << ", isRelative = True )";
+ SMESH::TPythonDump() << _this() << ".SetPhySizeRel( " << theValue << " )";
}
//=============================================================================
ASSERT(myBaseImpl);
if ( !IsMinSizeRel() || (GetMinSize() != theMinSize) ) {
this->GetImpl()->SetMinSize(theMinSize, true);
- SMESH::TPythonDump() << _this() << ".SetMinSize( " << theMinSize << ", isRelative = True )";
+ SMESH::TPythonDump() << _this() << ".SetMinSizeRel( " << theMinSize << " )";
}
}
ASSERT(myBaseImpl);
if ( !IsMaxSizeRel() || (GetMaxSize() != theMaxSize) ) {
this->GetImpl()->SetMaxSize(theMaxSize, true);
- SMESH::TPythonDump() << _this() << ".SetMaxSize( " << theMaxSize << ", isRelative = True )";
+ SMESH::TPythonDump() << _this() << ".SetMaxSizeRel( " << theMaxSize << " )";
}
}