Some meshing working.
This commit is contained in:
parent
392a2b7889
commit
d0ab51c99a
18 changed files with 164 additions and 4 deletions
14
src/mesh/TriFace.h
Normal file
14
src/mesh/TriFace.h
Normal file
|
@ -0,0 +1,14 @@
|
|||
#pragma once
|
||||
|
||||
class Edge;
|
||||
|
||||
class TriFace
|
||||
{
|
||||
public:
|
||||
TriFace(Edge* edge0, Edge* edge1, Edge* edge2);
|
||||
|
||||
private:
|
||||
Edge* mEdge0{nullptr};
|
||||
Edge* mEdge1{nullptr};
|
||||
Edge* mEdge2{nullptr};
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue