Subversion Repositories gelsvn

Rev

Rev 630 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 630 Rev 631
Line 18... Line 18...
18
    /** Perform a Catmull-Clark split, i.e. a split where each face is divided
18
    /** Perform a Catmull-Clark split, i.e. a split where each face is divided
19
    into new quadrilateral faces formed by connecting a corner with a
19
    into new quadrilateral faces formed by connecting a corner with a
20
    point on each incident edge and a point at the centre of the face. */
20
    point on each incident edge and a point at the centre of the face. */
21
    void cc_split(Manifold&, Manifold&);
21
    void cc_split(Manifold&, Manifold&);
22
    
22
    
-
 
23
    void loop_split(Manifold& m_in, Manifold& m);
-
 
24
    
-
 
25
    void root3_subdivide(Manifold&, Manifold&);
-
 
26
 
-
 
27
    void butterfly_subdivide(Manifold& m_in, Manifold& m);
-
 
28
 
23
    void cc_smooth(Manifold&);
29
    void cc_smooth(Manifold&);
-
 
30
 
-
 
31
    void loop_smooth(Manifold&);
24
}
32
}
25
 
33
 
26
#endif
34
#endif
27
 
35