Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
dsieger committed Dec 22, 2021
1 parent 2fcf218 commit a3c3e8d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pmp/SurfaceMesh.h
Expand Up @@ -861,7 +861,7 @@ class SurfaceMesh
class HalfedgeAroundFaceCirculator
{
public:
//! default constructur
//! default constructor
HalfedgeAroundFaceCirculator(const SurfaceMesh* m = nullptr,
Face f = Face())
: mesh_(m), is_active_(true)
Expand Down Expand Up @@ -1183,7 +1183,7 @@ class SurfaceMesh
//! halfedges.
inline Edge edge(Halfedge h) const { return Edge(h.idx() >> 1); }

//! returns whether h is a boundary halfege, i.e., if its face does not exist.
//! returns whether h is a boundary halfedge, i.e., if its face does not exist.
inline bool is_boundary(Halfedge h) const { return !face(h).is_valid(); }

//! returns the \p i'th halfedge of edge \p e. \p i has to be 0 or 1.
Expand Down

0 comments on commit a3c3e8d

Please sign in to comment.