mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: foamyHexMesh: clean up ostream operator of indexedVertex
This commit is contained in:
@ -113,13 +113,12 @@ Foam::Ostream& Foam::operator<<
|
|||||||
const CGAL::indexedVertex<Gt, Vb>& p
|
const CGAL::indexedVertex<Gt, Vb>& p
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
os << p.point()
|
os << p.point() << ' '
|
||||||
<< p.index()
|
<< p.index() << ' '
|
||||||
<< static_cast<int>(p.type())
|
<< static_cast<int>(p.type()) << ' '
|
||||||
<< p.procIndex()
|
<< p.procIndex() << ' '
|
||||||
<< p.alignment()
|
<< p.alignment() << ' '
|
||||||
<< p.targetCellSize()
|
<< p.targetCellSize() << ' '
|
||||||
<< token::SPACE
|
|
||||||
<< static_cast<int>(p.fixed());
|
<< static_cast<int>(p.fixed());
|
||||||
|
|
||||||
return os;
|
return os;
|
||||||
|
|||||||
Reference in New Issue
Block a user