bmesh api function: BM_edge_face_tangent()

was used by inset but make into an api function since scripts can use this too.
This commit is contained in:
2012-04-19 11:25:05 +00:00
parent 250560a423
commit db2edfcfde
4 changed files with 61 additions and 14 deletions

View File

@@ -62,6 +62,8 @@ void BM_loop_face_normal(BMLoop *l, float r_normal[3]);
void BM_loop_face_tangent(BMLoop *l, float r_tangent[3]);
float BM_edge_face_angle(BMEdge *e);
void BM_edge_face_tangent(BMEdge *e, BMLoop *e_loop, float r_tangent[3]);
float BM_vert_edge_angle(BMVert *v);
BMEdge *BM_edge_exists(BMVert *v1, BMVert *v2);