mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: minor code formatting
This commit is contained in:
@ -108,4 +108,5 @@ void Foam::CollisionRecordList<Type>::update()
|
|||||||
DynamicList<CollisionRecord<Type> >::operator=(updatedRecords);
|
DynamicList<CollisionRecord<Type> >::operator=(updatedRecords);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// ************************************************************************* //
|
// ************************************************************************* //
|
||||||
|
|||||||
@ -62,6 +62,7 @@ class polyLine
|
|||||||
//- Disallow default bitwise assignment
|
//- Disallow default bitwise assignment
|
||||||
void operator=(const polyLine&);
|
void operator=(const polyLine&);
|
||||||
|
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
|
||||||
// Protected data
|
// Protected data
|
||||||
@ -75,17 +76,18 @@ protected:
|
|||||||
//- The rational (0-1) cumulative parameter value for each point
|
//- The rational (0-1) cumulative parameter value for each point
|
||||||
scalarList param_;
|
scalarList param_;
|
||||||
|
|
||||||
|
|
||||||
// Protected Member Functions
|
// Protected Member Functions
|
||||||
|
|
||||||
//- Precalculate the rational cumulative parameter value
|
//- Precalculate the rational cumulative parameter value
|
||||||
// and the line-length
|
// and the line-length
|
||||||
void calcParam();
|
void calcParam();
|
||||||
|
|
||||||
|
|
||||||
//- Return the line segment and the local parameter [0..1]
|
//- Return the line segment and the local parameter [0..1]
|
||||||
// corresponding to the global lambda [0..1]
|
// corresponding to the global lambda [0..1]
|
||||||
label localParameter(scalar& lambda) const;
|
label localParameter(scalar& lambda) const;
|
||||||
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
// Constructors
|
// Constructors
|
||||||
|
|||||||
Reference in New Issue
Block a user