Working version of mesh decimation code which acts directly on vertex/index buffers.

Also initial work on a 'dynamic' mesh for simplification... but this probably won't be needed now.
This commit is contained in:
David Williams
2010-02-02 23:18:17 +00:00
parent 5c8dd011e7
commit 89c48cdc27
16 changed files with 1445 additions and 24 deletions

View File

@ -7,6 +7,10 @@ SET(CORE_SRC_FILES
source/GradientEstimators.cpp
source/IndexedSurfacePatch.cpp
source/Log.cpp
source/Mesh.cpp
source/MeshEdge.cpp
source/MeshFace.cpp
source/MeshVertex.cpp
source/progmesh.cpp
source/Region.cpp
source/SurfaceExtractor.cpp
@ -21,6 +25,10 @@ SET(CORE_INC_FILES
include/IndexedSurfacePatch.h
include/list.h
include/Log.h
include/Mesh.h
include/MeshEdge.h
include/MeshFace.h
include/MeshVertex.h
include/PolyVoxForwardDeclarations.h
include/progmesh.h
include/Region.h