Skip to content
Snippets Groups Projects
Commit eaa587cc authored by Karsten Rink's avatar Karsten Rink
Browse files

used abbreviated initialisation of Vector3 class

parent 67e1c8fd
No related branches found
No related tags found
No related merge requests found
...@@ -47,8 +47,8 @@ bool Cell::testElementNodeOrder() const ...@@ -47,8 +47,8 @@ bool Cell::testElementNodeOrder() const
for (unsigned j=0; j<nFaces; ++j) for (unsigned j=0; j<nFaces; ++j)
{ {
MeshLib::Face const*const face (dynamic_cast<const MeshLib::Face*>(this->getFace(j))); MeshLib::Face const*const face (dynamic_cast<const MeshLib::Face*>(this->getFace(j)));
const MeshLib::Node x (*(face->getNode(0))); const MeshLib::Node x (*(face->getNode(1)));
const MathLib::Vector3 cx (c[0]-x[0], c[1]-x[1], c[2]-x[2]); const MathLib::Vector3 cx (c, x);
const double s = MathLib::scalarProduct(face->getSurfaceNormal(), cx); const double s = MathLib::scalarProduct(face->getSurfaceNormal(), cx);
delete face; delete face;
if (s >= 0) if (s >= 0)
......
...@@ -40,19 +40,15 @@ Face::~Face() ...@@ -40,19 +40,15 @@ Face::~Face()
MathLib::Vector3 Face::getSurfaceNormal() const MathLib::Vector3 Face::getSurfaceNormal() const
{ {
const MathLib::Vector3 u ((*this->_nodes[0])[0]-(*this->_nodes[1])[0], const MathLib::Vector3 u (*_nodes[1], *_nodes[0]);
(*this->_nodes[0])[1]-(*this->_nodes[1])[1], const MathLib::Vector3 v (*_nodes[1], *_nodes[2]);
(*this->_nodes[0])[2]-(*this->_nodes[1])[2]);
const MathLib::Vector3 v ((*this->_nodes[1])[0]-(*this->_nodes[2])[0],
(*this->_nodes[1])[1]-(*this->_nodes[2])[1],
(*this->_nodes[1])[2]-(*this->_nodes[2])[2]);
return MathLib::crossProduct(u,v); return MathLib::crossProduct(u,v);
} }
bool Face::testElementNodeOrder() const bool Face::testElementNodeOrder() const
{ {
MathLib::Vector3 up_vec (0,0,1); MathLib::Vector3 up_vec (0,0,1);
return (MathLib::scalarProduct(this->getSurfaceNormal(), up_vec) > 0) ? true : false; return (MathLib::scalarProduct(this->getSurfaceNormal(), up_vec) < 0) ? true : false;
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment