error in last commit

This commit is contained in:
Campbell Barton 2015-04-13 15:43:57 +10:00
parent 919de1e4c9
commit dd0cba0076

@ -815,25 +815,25 @@ static void pbvh_bmesh_split_edge(EdgeQueueContext *eq_ctx, PBVH *bvh,
* verts & edges shuffled around.
*
* - faces wind anticlockwise in this example.
* - original edge is (v1, v2)
* - oroginal face is (v1, v2, v3)
* - original edge is ``(v1, v2)``
* - oroginal face is ``(v1, v2, v3)``
*
* <pre>
* + v3(v_opp)
* /|\
* / | \
* / | \
* e4/ | \e3
* e4/ | \ e3
* / |e5 \
* / | \
* / e1 | e2 \
* +-------+-------+
* v1 v4(v_new) v2
* (first) (second)
*
* - f_new (first): v_tri=(v1, v4, v3), e_tri=(e1, e5, e4)
* - f_new (second): v_tri=(v4, v2, v3), e_tri=(e2, e3, e5)
* </pre>
*
* - f_new (first): ``v_tri=(v1, v4, v3), e_tri=(e1, e5, e4)``
* - f_new (second): ``v_tri=(v4, v2, v3), e_tri=(e2, e3, e5)``
*/
/* Create two new faces */