-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature/Geometry type for tetrahedral meshes (#1109)
* Delaunay tetramesh (#2) Added new geometry type TetraMesh. * added missing headers * removed superfluous check * typo and style fixes * added references/description -qhull for tetrahedralization -primal contouring for surface extraction * renamed ComputeDelaunayTriangulation3D ... to ComputeDelaunayTetrahedralization * style fix
- Loading branch information
1 parent
6f6a6ad
commit 794cf05
Showing
25 changed files
with
1,642 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,6 +41,7 @@ class Geometry { | |
HalfEdgeTriangleMesh = 6, | ||
Image = 7, | ||
RGBDImage = 8, | ||
TetraMesh = 9, | ||
}; | ||
|
||
public: | ||
|
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
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
Oops, something went wrong.