Add some geometry and mesh.

This commit is contained in:
jmsgrogan 2022-08-03 21:05:01 +01:00
parent 1ee31596fb
commit 877d96462d
21 changed files with 126 additions and 33 deletions

View file

0
src/mesh/AbstractMesh.h Normal file
View file

13
src/mesh/CMakeLists.txt Normal file
View file

@ -0,0 +1,13 @@
list(APPEND mesh_LIB_INCLUDES
AbstractMesh.cpp
Edge.cpp
Face.cpp
QuadMesh.cpp
TriMesh.cpp)
# add the library
add_library(mesh SHARED ${mesh_LIB_INCLUDES})
set_target_properties( mesh PROPERTIES WINDOWS_EXPORT_ALL_SYMBOLS ON )
set_property(TARGET mesh PROPERTY FOLDER src)

0
src/mesh/Edge.cpp Normal file
View file

0
src/mesh/Edge.h Normal file
View file

0
src/mesh/Face.cpp Normal file
View file

0
src/mesh/Face.h Normal file
View file

0
src/mesh/QuadMesh.cpp Normal file
View file

0
src/mesh/QuadMesh.h Normal file
View file

0
src/mesh/TriMesh.cpp Normal file
View file

0
src/mesh/TriMesh.h Normal file
View file