|
This patch adds a new remeshing modifier. The algorithm is based on the paper "Dual Contouring of Hermite Data", and the implementation was contributed to Blender by Dr. Tao Ju. The contributed code is in intern/dualcon, and was modified to compile under gcc and work on 64-bit systems. A small C wrapper was also added in order to interface it with Blender. Other than that, the rest of the patch is just standard modifier stuff.
Documentation and examples on the Blender wiki:
http://wiki.blender.org/index.php/User:Nicholasbishop/RemeshModifier
Total comments: 10
Total comments: 2
|
Unified diffs |
Side-by-side diffs |
Delta from patch set |
Stats (+9035 lines, -3 lines) |
Patch |
|
|
intern/CMakeLists.txt
|
View
|
1
2
3
4
|
1 chunk |
+1 line, -0 lines |
0 comments
|
Download
|
|
|
intern/SConscript
|
View
|
1
2
3
4
|
1 chunk |
+1 line, -0 lines |
0 comments
|
Download
|
|
|
intern/dualcon/CMakeLists.txt
|
View
|
1
2
3
4
5
|
1 chunk |
+46 lines, -0 lines |
0 comments
|
Download
|
|
|
intern/dualcon/SConscript
|
View
|
1
2
3
4
5
6
|
1 chunk |
+9 lines, -0 lines |
0 comments
|
Download
|
|
|
intern/dualcon/dualcon.h
|
View
|
1
2
3
|
1 chunk |
+95 lines, -0 lines |
0 comments
|
Download
|
|
|
intern/dualcon/intern/GeoCommon.h
|
View
|
1
2
3
4
|
1 chunk |
+69 lines, -0 lines |
0 comments
|
Download
|
|
|
intern/dualcon/intern/MemoryAllocator.h
|
View
|
1
2
3
4
|
1 chunk |
+219 lines, -0 lines |
0 comments
|
Download
|
|
|
intern/dualcon/intern/ModelReader.h
|
View
|
1
2
3
4
|
1 chunk |
+64 lines, -0 lines |
0 comments
|
Download
|
|
|
intern/dualcon/intern/Projections.h
|
View
|
1
2
3
4
5
6
|
1 chunk |
+844 lines, -0 lines |
0 comments
|
Download
|
|
|
intern/dualcon/intern/Projections.cpp
|
View
|
1
2
3
4
|
1 chunk |
+76 lines, -0 lines |
0 comments
|
Download
|
|
|
intern/dualcon/intern/Queue.h
|
View
|
1
2
3
4
|
1 chunk |
+110 lines, -0 lines |
0 comments
|
Download
|
|
|
intern/dualcon/intern/cubes.h
|
View
|
1
2
3
4
|
1 chunk |
+46 lines, -0 lines |
0 comments
|
Download
|
|
|
intern/dualcon/intern/dualcon_c_api.cpp
|
View
|
1
2
|
1 chunk |
+191 lines, -0 lines |
0 comments
|
Download
|
|
|
intern/dualcon/intern/manifold_table.h
|
View
|
1
2
3
4
|
1 chunk |
+33 lines, -0 lines |
0 comments
|
Download
|
|
|
intern/dualcon/intern/manifold_table.cpp
|
View
|
1
2
3
4
|
1 chunk |
+282 lines, -0 lines |
0 comments
|
Download
|
|
|
intern/dualcon/intern/marching_cubes_table.h
|
View
|
1
2
3
4
|
1 chunk |
+38 lines, -0 lines |
0 comments
|
Download
|
|
|
intern/dualcon/intern/marching_cubes_table.cpp
|
View
|
1
2
3
4
|
1 chunk |
+554 lines, -0 lines |
0 comments
|
Download
|
|
|
intern/dualcon/intern/octree.h
|
View
|
1
2
3
4
5
|
1 chunk |
+1596 lines, -0 lines |
0 comments
|
Download
|
|
|
intern/dualcon/intern/octree.cpp
|
View
|
1
2
3
4
5
|
1 chunk |
+4311 lines, -0 lines |
0 comments
|
Download
|
|
|
intern/dualcon/intern/readme.txt
|
View
|
1
|
1 chunk |
+112 lines, -0 lines |
0 comments
|
Download
|
|
|
release/scripts/startup/bl_ui/properties_data_modifier.py
|
View
|
1
2
3
4
|
1 chunk |
+14 lines, -0 lines |
0 comments
|
Download
|
|
|
source/blender/blenkernel/BKE_mesh.h
|
View
|
1
2
3
4
|
1 chunk |
+2 lines, -2 lines |
0 comments
|
Download
|
|
|
source/blender/makesdna/DNA_modifier_types.h
|
View
|
1
2
3
4
|
2 chunks |
+36 lines, -0 lines |
0 comments
|
Download
|
|
|
source/blender/makesrna/intern/rna_modifier.c
|
View
|
1
2
3
4
|
4 chunks |
+55 lines, -0 lines |
0 comments
|
Download
|
|
|
source/blender/modifiers/CMakeLists.txt
|
View
|
1
2
3
4
|
2 chunks |
+2 lines, -0 lines |
0 comments
|
Download
|
|
|
source/blender/modifiers/MOD_modifiertypes.h
|
View
|
1
2
3
4
|
1 chunk |
+1 line, -0 lines |
0 comments
|
Download
|
|
|
source/blender/modifiers/SConscript
|
View
|
1
2
3
4
|
1 chunk |
+1 line, -1 line |
0 comments
|
Download
|
|
|
source/blender/modifiers/intern/MOD_remesh.c
|
View
|
1
2
|
1 chunk |
+214 lines, -0 lines |
0 comments
|
Download
|
|
|
source/blender/modifiers/intern/MOD_util.c
|
View
|
1
2
3
4
|
1 chunk |
+1 line, -0 lines |
0 comments
|
Download
|
|
|
source/blenderplayer/bad_level_call_stubs/stubs.c
|
View
|
1
2
3
4
|
1 chunk |
+11 lines, -0 lines |
0 comments
|
Download
|
|
|
source/creator/CMakeLists.txt
|
View
|
1
2
3
4
|
1 chunk |
+1 line, -0 lines |
0 comments
|
Download
|
Total messages: 13
|