Skip to content

Commit

Permalink
Vertex bug fix (#76)
Browse files Browse the repository at this point in the history
  • Loading branch information
rmrsk authored Nov 7, 2024
1 parent 10ed5ce commit 460a5e6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ jobs:
make latexpdf
- name: Upload
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: docs
path: Docs/Sphinx/build
Expand Down
2 changes: 1 addition & 1 deletion Source/EBGeometry_DCEL_VertexImplem.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ namespace DCEL {
inline VertexT<T, Meta>::VertexT(const VertexT<T, Meta>& a_otherVertex)
{
m_position = a_otherVertex.m_position;
m_normal = a_otherVertex.m_m_normal;
m_normal = a_otherVertex.m_normal;
m_outgoingEdge = a_otherVertex.m_outgoingEdge;
}

Expand Down

0 comments on commit 460a5e6

Please sign in to comment.