Skip to content

Commit 35598a7

Browse files
committed
Add screen shots.
1 parent 817c506 commit 35598a7

File tree

5 files changed

+7
-3
lines changed

5 files changed

+7
-3
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,13 @@ $ python examples/python/fill_and_fair.py data/models/bunny.ply
7070

7171
## Screen shots
7272

73+
| Input | Before | Simplified |
74+
|--------|--------|--------|
75+
|![](figures/dragon.jpg)|![](figures/dragon_before_simplify.jpg)|![](figures/dragon_after_simplify.jpg)|
7376

77+
## Warning
78+
79+
The modules are not perfect and their process will fail for problematic meshes, e.g., with non-manifold faces. In such cases, you can fix the problem by repairing the mesh using [MeshFix](https://github.com/MarcoAttene/MeshFix-V2.1).
7480

7581
## License
7682

figures/dragon.jpg

74 KB
Loading

figures/dragon_after_simplify.jpg

197 KB
Loading

figures/dragon_before_simplify.jpg

211 KB
Loading

src/tinymesh/geoproc/remesh.cpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -167,9 +167,7 @@ void remeshIncremental(Mesh &mesh, double shortLength, double longLength, double
167167
}
168168

169169
// Smoothing
170-
for (int loop = 0; loop < 3; loop++) {
171-
laplace_smooth(mesh);
172-
}
170+
laplace_smooth(mesh);
173171
}
174172
}
175173

0 commit comments

Comments
 (0)