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

did not append any edges

parent 8032ac98
Branches
Tags
No related merge requests found
......@@ -73,7 +73,7 @@ void Foam::primitiveMesh::calcCellEdges() const
if (findIndex(curCellEdges, curEdges[edgeI]) == -1)
{
// Add the edge
//curCellEdges.append(curEdges[edgeI]);
curCellEdges.append(curEdges[edgeI]);
}
}
}
......@@ -89,7 +89,7 @@ void Foam::primitiveMesh::calcCellEdges() const
if (findIndex(curCellEdges, curEdges[edgeI]) == -1)
{
// add the edge
//curCellEdges.append(curEdges[edgeI]);
curCellEdges.append(curEdges[edgeI]);
}
}
}
......
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