Skip to content
Snippets Groups Projects
Commit 9c0de411 authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

[PL] LIE: rotations; Init 3rd coordinate for 2d.

parent a2f72fc1
No related branches found
No related tags found
No related merge requests found
...@@ -28,6 +28,7 @@ void computeNormalVector(MeshLib::Element const& e, unsigned const global_dim, ...@@ -28,6 +28,7 @@ void computeNormalVector(MeshLib::Element const& e, unsigned const global_dim,
auto v1 = (*e.getNode(1)) - (*e.getNode(0)); auto v1 = (*e.getNode(1)) - (*e.getNode(0));
element_normal[0] = -v1[1]; element_normal[0] = -v1[1];
element_normal[1] = v1[0]; element_normal[1] = v1[0];
element_normal[2] = 0; // not used in 2d but needed for normalization
element_normal.normalize(); element_normal.normalize();
} }
else if (global_dim == 3) else if (global_dim == 3)
......
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