三维网格精简算法java版_三维模型网格简化源码

【实例简介】

This program implements four different mesh simplification algorithms. After loading a mesh, the user can easily remove triangles from the mesh and the results are displayed in real time. The mesh can also be rotated and moved closer to or farther away from the viewer.

The goal of mesh simplific

【实例截图】

【核心代码】

MESHSIMPLE

└── 网格简化源码

├── jmspmesh

│   ├── apple.ply

│   ├── big_porsche.ply

│   ├── cat.ply

│   ├── cow.ply

│   ├── Debug

│   │   ├── BuildLog.htm

│   │   ├── glmodelwin.obj

│   │   ├── glmodelwin.sbr

│   │   ├── main.obj

│   │   ├── main.sbr

│   │   ├── mesh.obj

│   │   ├── mesh.sbr

│   │   ├── mt.dep

│   │   ├── oglpmesh.bsc

│   │   ├── oglpmesh.exe

│   │   ├── oglpmesh.exe.embed.manifest

│   │   ├── oglpmesh.exe.embed.manifest.res

│   │   ├── oglpmesh.exe.intermediate.manifest

│   │   ├── oglpmesh.ilk

│   │   ├── oglpmesh.pdb

│   │   ├── pmesh.obj

│   │   ├── pmesh.sbr

│   │   ├── polydemo.res

│   │   ├── triangle.obj

│   │   ├── triangle.sbr

│   │   ├── vc60.idb

│   │   ├── vc60.pdb

│   │   ├── vc90.idb

│   │   ├── vc90.pdb

│   │   ├── vec3.obj

│   │   ├── vec3.sbr

│   │   ├── vertex.obj

│   │   └── vertex.sbr

│   ├── glmodelwin.cpp

│   ├── glmodelwin.h

│   ├── hind.ply

│   ├── huge_bunny.ply

│   ├── main.cpp

│   ├── mesh.cpp

│   ├── mesh.h

│   ├── oglpmesh.dsp

│   ├── oglpmesh.dsw

│   ├── oglpmesh.ncb

│   ├── oglpmesh.opt

│   ├── oglpmesh.plg

│   ├── oglpmesh.sln

│   ├── oglpmesh.suo

│   ├── oglpmesh.vcproj

│   ├── oglpmesh.vcproj.BYDHQ.zdd567568.user

│   ├── pmesh.cpp

│   ├── pmesh.h

│   ├── polydemo.aps

│   ├── polydemo.rc

│   ├── propslim.cpp

│   ├── Release

│   │   ├── BuildLog.htm

│   │   ├── glmodelwin.obj

│   │   ├── glmodelwin.sbr

│   │   ├── main.obj

│   │   ├── main.sbr

│   │   ├── mesh.obj

│   │   ├── mesh.sbr

│   │   ├── mt.dep

│   │   ├── oglpmesh.bsc

│   │   ├── oglpmesh.exe

│   │   ├── oglpmesh.exe.intermediate.manifest

│   │   ├── pmesh.obj

│   │   ├── pmesh.sbr

│   │   ├── polydemo.res

│   │   ├── triangle.obj

│   │   ├── triangle.sbr

│   │   ├── vc90.idb

│   │   ├── vec3.obj

│   │   ├── vec3.sbr

│   │   ├── vertex.obj

│   │   └── vertex.sbr

│   ├── resource.h

│   ├── triangle.cpp

│   ├── triangle.h

│   ├── vec3.cpp

│   ├── vec3.h

│   ├── vertex.cpp

│   └── vertex.h

└── 运行说明.doc

4 directories, 82 files

你可能感兴趣的:(三维网格精简算法java版)