-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathTODO
56 lines (43 loc) · 1.78 KB
/
TODO
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
- Remesher
- Fix patches with complex growing (one of the major issues)
- Algorithm chain
- Is a nice idea but to intensive to implement! Will not implement.
- Some algorithm steps here:
- Loading mesh
- Requires: Nothing
- Provides: Reference mesh
- Cleaning mesh [Optional]
- Requires: Reference mesh
- Provides: Reference mesh
- Reference Mesh Vertex information
- Requires: Reference mesh
- Provides: Ref mesh Vertex information
- Feature detection (TODO) [Optional]
- Requires: Reference mesh
- Provides: Feature information
- Density field [Optional]
- Requires: Reference mesh, Ref mesh vertex info
- Provides: Density information
- Mesh adaptation to requested amount of vertices
- Copy reference mesh (Does not change vertex amount)
- Requires: Reference mesh
- Provides: Evolving mesh, Vertex references
- Mesh simplification (Reduces the vertex amount)
- Requires: Reference mesh
- Provides: Evolving mesh, Vertex references
- Accepts: Features (TODO), Density field
- Mesh oversampling (Increases the vertex amount) (TODO)
- Requires: Reference mesh, Ref mesh vertex info
- Provides: Evolving mesh, Vertex references
- Accepts: Features (TODO), Density field
- Face and vertex reordering (for efficient caching) (TODO) [Optional]
- Requires: Evolving mesh, Evolving mesh vertex info
- Provides: Evolving mesh
- Lloyd relaxation [Optional]
- Requires: Reference mesh, Evolving mesh, Vertex references
- Provides: Evolving mesh, Vertex references
- Accepts: Features (TODO), Density field (TODO)
- Restore Delanay property
- Requires: Evolving mesh
- Provides: Evolving mesh
- Accepts: Features (TODO)