mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-09-08 05:38:12 +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:
@@ -14,40 +14,28 @@
|
||||
// Alternatively, this file may be used under the terms of Open CASCADE
|
||||
// commercial license or contractual agreement.
|
||||
|
||||
//=======================================================================
|
||||
// function : Location
|
||||
// purpose :
|
||||
//=======================================================================
|
||||
//=================================================================================================
|
||||
|
||||
inline const TopLoc_Location& BRep_PointRepresentation::Location() const
|
||||
{
|
||||
return myLocation;
|
||||
}
|
||||
|
||||
//=======================================================================
|
||||
// function : Location
|
||||
// purpose :
|
||||
//=======================================================================
|
||||
//=================================================================================================
|
||||
|
||||
inline void BRep_PointRepresentation::Location(const TopLoc_Location& L)
|
||||
{
|
||||
myLocation = L;
|
||||
}
|
||||
|
||||
//=======================================================================
|
||||
// function : Parameter
|
||||
// purpose :
|
||||
//=======================================================================
|
||||
//=================================================================================================
|
||||
|
||||
inline Standard_Real BRep_PointRepresentation::Parameter() const
|
||||
{
|
||||
return myParameter;
|
||||
}
|
||||
|
||||
//=======================================================================
|
||||
// function : Parameter
|
||||
// purpose :
|
||||
//=======================================================================
|
||||
//=================================================================================================
|
||||
|
||||
inline void BRep_PointRepresentation::Parameter(const Standard_Real P)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user