mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-09-06 12:47:51 +08:00
Coding - Method guard iterative update (#674)
- Standardizes comment formatting by replacing detailed comment blocks with a uniform "//=================================================================================================" separator - Removes redundant "function:" and "purpose:" fields that often contained minimal or no useful information - Maintains code functionality while improving visual consistency across the codebase
This commit is contained in:
@@ -1338,19 +1338,15 @@ void GetIntersection(const TheCurve& theC1, const Standard_Real theT1f, const St
|
||||
|
||||
}
|
||||
|
||||
//=======================================================================
|
||||
//function : GetMinNbPoints
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
//=================================================================================================
|
||||
|
||||
Standard_Integer IntCurve_IntPolyPolyGen::GetMinNbSamples() const
|
||||
{
|
||||
return myMinPntNb;
|
||||
}
|
||||
|
||||
//=======================================================================
|
||||
//function : SetMinNbPoints
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
//=================================================================================================
|
||||
|
||||
void IntCurve_IntPolyPolyGen::SetMinNbSamples(const Standard_Integer theMinNbSamples)
|
||||
{
|
||||
myMinPntNb = theMinNbSamples;
|
||||
|
||||
Reference in New Issue
Block a user