gelsvn
bdplot
seema-scanner
BlueGrey
calm
Elegant
Català-Valencià – Catalan
中文 – Chinese (Simplified)
中文 – Chinese (Traditional)
Česky – Czech
Dansk – Danish
Nederlands – Dutch
English – English
Suomi – Finnish
Français – French
Deutsch – German
עברית – Hebrew
हिंदी – Hindi
Magyar – Hungarian
Bahasa Indonesia – Indonesian
Italiano – Italian
日本語 – Japanese
한국어 – Korean
Македонски – Macedonian
मराठी – Marathi
Norsk – Norwegian
Polski – Polish
Português – Portuguese
Português – Portuguese (Brazil)
Русский – Russian
Slovenčina – Slovak
Slovenščina – Slovenian
Español – Spanish
Svenska – Swedish
Türkçe – Turkish
Українська – Ukrainian
Oëzbekcha – Uzbek
Subversion Repositories
gelsvn
(root)
/
branches
/
wireframe-experiments
/
src
/
Geometry
/
Polygonizer.cpp
@ 393
– Rev 393
Rev
Hide changed files
|
Details
|
Compare with Previous
|
Blame
|
RSS feed
Filtering Options
From rev
To rev
Max revs
Search history for
Show All
Rev
Age
Author
Path
Log message
Diff
Changes
393
6064 d 11 h
jab
/branches/wireframe-experiments/
Creating a branch of GEL for certain wireframe experiments
/branches/wireframe-experiments
385
6086 d 8 h
jab
/trunk/
CMakefiles included.
Note that exceptions were removed from Geometry/Polygonize.cpp since it did not play nice with visual studio 2005. An improved solution is needed so that the program does not just abort.
/trunk/CMakeLists.txt
/trunk/GELConfig.cmake.in
/trunk/GELFindGlew.cmake
/trunk/GELFindGlut.cmake
/trunk/GELFindLapack.cmake
/trunk/GELUse.cmake
/trunk/apps/BloomenthalPolygonize/CMakeLists.txt
/trunk/apps/BoundaryCollapse/CMakeLists.txt
/trunk/apps/Decimator/CMakeLists.txt
/trunk/apps/MeshDistance/CMakeLists.txt
/trunk/apps/OBJViewer/CMakeLists.txt
/trunk/apps/Pathtracer/CMakeLists.txt
/trunk/apps/RangeScanViewer/CMakeLists.txt
/trunk/apps/Raytracer/CMakeLists.txt
/trunk/apps/VolumePolygonize/CMakeLists.txt
/trunk/src/CGLA/CMakeLists.txt
/trunk/src/GLGraphics/CMakeLists.txt
/trunk/src/Geometry/CMakeLists.txt
/trunk/src/HMesh/CMakeLists.txt
/trunk/src/LinAlg/CMakeLists.txt
/trunk/src/Util/CMakeLists.txt
/trunk/test/CGLA-covariance/CMakeLists.txt
/trunk/test/CGLA-mat/CMakeLists.txt
/trunk/test/CGLA-ogl/CMakeLists.txt
/trunk/test/CGLA-simple/CMakeLists.txt
/trunk/test/CGLA-vec/CMakeLists.txt
/trunk/test/Geometry-kdtree/CMakeLists.txt
/trunk/test/LinAlg-eigensolver/CMakeLists.txt
/trunk/test/LinAlg-leastsq/CMakeLists.txt
/trunk/test/Util-resman/CMakeLists.txt
/trunk/apps/BoundaryCollapse/boundary_collapse.cpp
/trunk/src/Geometry/Polygonizer.cpp
136
7151 d 8 h
jab
/trunk/
Many small changes. Many instances of int have been replaced with size_t which
should be more correct - it emphasizes that only unsigned ints are legal.
A few changes to the documentation have been made. Coding conventions doc
updated.
/trunk/doc/CodingConventions.txt
/trunk/doc/Doxyfile
/trunk/makefiles/Linux_i686_g++.mk
/trunk/src/CGLA/statistics.h
/trunk/src/Geometry/GradientFilter.cpp
/trunk/src/Geometry/IndexedFaceSet.h
/trunk/src/Geometry/Polygonizer.cpp
/trunk/src/Geometry/QEM.h
/trunk/src/Geometry/TriMesh.cpp
/trunk/src/Geometry/TriMesh.h
/trunk/src/Graphics/QuatTrackBall.cpp
/trunk/src/HMesh/Manifold.cpp
/trunk/src/HMesh/Manifold.h
/trunk/src/HMeshUtil/fair_polygonize.cpp
/trunk/src/HMeshUtil/mesh_optimization.cpp
/trunk/src/HMeshUtil/obj_save.cpp
/trunk/src/HMeshUtil/triangulate.cpp
/trunk/src/HMeshUtil/triangulate_face_order.cpp
/trunk/src/HMeshUtil/x3d_load.cpp
/trunk/src/HMeshUtil/x3d_save.cpp
/trunk/src/IMesh/compute_normals.cpp
/trunk/src/LinAlg/LinAlgIO.cpp
/trunk/src/Util/Parse.cpp
102
7176 d 14 h
bj
/trunk/
"fixed" most warnings when compiling with MSVC. Did it by disabling the warnings in CGLA.h and Timer.h
/trunk/apps/OBJViewer/objview.cpp
/trunk/src/CGLA/CGLA.h
/trunk/src/CGLA/statistics.h
/trunk/src/Geometry/GradientFilter.cpp
/trunk/src/Geometry/Polygonizer.cpp
/trunk/src/HMeshUtil/fair_polygonize.cpp
/trunk/src/HMeshUtil/obj_save.cpp
/trunk/src/HMeshUtil/x3d_load.cpp
/trunk/src/HMeshUtil/x3d_save.cpp
/trunk/src/Util/Timer.h
64
7187 d 3 h
jab
/trunk/src/Geometry/
minor changes
/trunk/src/Geometry/Polygonizer.cpp
/trunk/src/Geometry/Polygonizer.h
/trunk/src/Geometry/fair_polygonize.cpp
/trunk/src/Geometry/fair_polygonize.h
/trunk/src/Geometry/save_raw.h
61
7187 d 10 h
jab
/trunk/src/Geometry/
Adding a lot of stuff:
- The KDTree class is useful for a great many projects.
- The voxel grid classes are also useful for many projects.
- fair_polygonize is my own little polygonizer which seems to work well.
- Polygonizer is bloomenthals polygonizer which has been C++'ified.
/trunk/src/Geometry/AncestorGrid.h
/trunk/src/Geometry/Cell.h
/trunk/src/Geometry/GradientFilter.cpp
/trunk/src/Geometry/GradientFilter.h
/trunk/src/Geometry/GridAlgorithm.h
/trunk/src/Geometry/HGrid.h
/trunk/src/Geometry/KDTree.h
/trunk/src/Geometry/Neighbours.cpp
/trunk/src/Geometry/Neighbours.h
/trunk/src/Geometry/Polygonizer.cpp
/trunk/src/Geometry/Polygonizer.h
/trunk/src/Geometry/RGrid.h
/trunk/src/Geometry/ThreeDDDA.cpp
/trunk/src/Geometry/ThreeDDDA.h
/trunk/src/Geometry/TrilinFilter.cpp
/trunk/src/Geometry/TrilinFilter.h
/trunk/src/Geometry/fair_polygonize.cpp
/trunk/src/Geometry/fair_polygonize.h
/trunk/src/Geometry/load_raw.cpp
/trunk/src/Geometry/load_raw.h
/trunk/src/Geometry/save_raw.h
/trunk/src/Geometry/Makefile