Skip to content
Snippets Groups Projects
Commit ef69bc6c authored by Mattijs Janssens's avatar Mattijs Janssens
Browse files

bounding box incorrect

parent 15fea54f
Branches
Tags
No related merge requests found
......@@ -1214,7 +1214,11 @@ void triSurface::writeStats(Ostream& os) const
{
// Calculate bounding box without any additional addressing
// Copy of treeBoundBox code. Cannot use meshTools from triSurface...
boundBox bb;
boundBox bb
(
point(VGREAT, VGREAT, VGREAT),
point(-VGREAT, -VGREAT, -VGREAT)
);
forAll(*this, triI)
{
const labelledTri& f = operator[](triI);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment