-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added warnings & constructor for directed_edge
* Warnings concerning orientation and manifold meshes are now only printed once. * Added constructor for directed_edge class.
- Loading branch information
1 parent
51d92d0
commit efd51a3
Showing
5 changed files
with
55 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/*! | ||
* @file directed_edge.cpp | ||
* @brief Functions for describign a directed edge. | ||
*/ | ||
|
||
#include <cstddef> | ||
#include "directed_edge.h" | ||
|
||
namespace psalm | ||
{ | ||
|
||
/*! | ||
* Default constructor. Sets all attributes to "false" or "NULL". | ||
*/ | ||
|
||
directed_edge::directed_edge() | ||
{ | ||
e = NULL; | ||
inverted = false; | ||
new_edge = false; | ||
} | ||
|
||
} // end of namespace "psalm" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters