Changeset View
Changeset View
Standalone View
Standalone View
source/blender/bmesh/intern/bmesh_polygon.h
| Show All 39 Lines | |||||
| void BM_face_calc_point_in_face(const BMFace *f, float r_co[3]); | void BM_face_calc_point_in_face(const BMFace *f, float r_co[3]); | ||||
| float BM_face_calc_normal(const BMFace *f, float r_no[3]) ATTR_NONNULL(); | float BM_face_calc_normal(const BMFace *f, float r_no[3]) ATTR_NONNULL(); | ||||
| float BM_face_calc_normal_vcos( | float BM_face_calc_normal_vcos( | ||||
| const BMesh *bm, const BMFace *f, float r_no[3], | const BMesh *bm, const BMFace *f, float r_no[3], | ||||
| float const (*vertexCos)[3]) ATTR_NONNULL(); | float const (*vertexCos)[3]) ATTR_NONNULL(); | ||||
| float BM_face_calc_normal_subset(const BMLoop *l_first, const BMLoop *l_last, float r_no[3]) ATTR_NONNULL(); | float BM_face_calc_normal_subset(const BMLoop *l_first, const BMLoop *l_last, float r_no[3]) ATTR_NONNULL(); | ||||
| float BM_face_calc_area(const BMFace *f) ATTR_WARN_UNUSED_RESULT ATTR_NONNULL(); | float BM_face_calc_area(const BMFace *f) ATTR_WARN_UNUSED_RESULT ATTR_NONNULL(); | ||||
| float BM_face_calc_perimeter(const BMFace *f) ATTR_WARN_UNUSED_RESULT ATTR_NONNULL(); | float BM_face_calc_perimeter(const BMFace *f) ATTR_WARN_UNUSED_RESULT ATTR_NONNULL(); | ||||
| void BM_face_calc_plane(const BMFace *f, float r_plane[3]) ATTR_NONNULL(); | void BM_face_calc_tangent_edge(const BMFace *f, float r_plane[3]) ATTR_NONNULL(); | ||||
| void BM_face_calc_tangent_edge_pair(const BMFace *f, float r_plane[3]) ATTR_NONNULL(); | |||||
| void BM_face_calc_tangent_edge_diagonal(const BMFace *f, float r_plane[3]) ATTR_NONNULL(); | |||||
| void BM_face_calc_tangent_vert_diagonal(const BMFace *f, float r_plane[3]) ATTR_NONNULL(); | |||||
| void BM_face_calc_tangent_auto(const BMFace *f, float r_plane[3]) ATTR_NONNULL(); | |||||
| void BM_face_calc_center_bounds(const BMFace *f, float center[3]) ATTR_NONNULL(); | void BM_face_calc_center_bounds(const BMFace *f, float center[3]) ATTR_NONNULL(); | ||||
| void BM_face_calc_center_mean(const BMFace *f, float center[3]) ATTR_NONNULL(); | void BM_face_calc_center_mean(const BMFace *f, float center[3]) ATTR_NONNULL(); | ||||
| void BM_face_calc_center_mean_vcos( | void BM_face_calc_center_mean_vcos( | ||||
| const BMesh *bm, const BMFace *f, float r_cent[3], | const BMesh *bm, const BMFace *f, float r_cent[3], | ||||
| float const (*vertexCos)[3]) ATTR_NONNULL(); | float const (*vertexCos)[3]) ATTR_NONNULL(); | ||||
| void BM_face_calc_center_mean_weighted(const BMFace *f, float center[3]) ATTR_NONNULL(); | void BM_face_calc_center_mean_weighted(const BMFace *f, float center[3]) ATTR_NONNULL(); | ||||
| void BM_face_normal_update(BMFace *f) ATTR_NONNULL(); | void BM_face_normal_update(BMFace *f) ATTR_NONNULL(); | ||||
| Show All 28 Lines | |||||
| void BM_face_splits_check_optimal(BMFace *f, BMLoop *(*loops)[2], int len) ATTR_NONNULL(); | void BM_face_splits_check_optimal(BMFace *f, BMLoop *(*loops)[2], int len) ATTR_NONNULL(); | ||||
| void BM_face_as_array_vert_tri(BMFace *f, BMVert *r_verts[3]) ATTR_NONNULL(); | void BM_face_as_array_vert_tri(BMFace *f, BMVert *r_verts[3]) ATTR_NONNULL(); | ||||
| void BM_face_as_array_vert_quad(BMFace *f, BMVert *r_verts[4]) ATTR_NONNULL(); | void BM_face_as_array_vert_quad(BMFace *f, BMVert *r_verts[4]) ATTR_NONNULL(); | ||||
| void BM_face_as_array_loop_tri(BMFace *f, BMLoop *r_loops[3]) ATTR_NONNULL(); | void BM_face_as_array_loop_tri(BMFace *f, BMLoop *r_loops[3]) ATTR_NONNULL(); | ||||
| void BM_face_as_array_loop_quad(BMFace *f, BMLoop *r_loops[4]) ATTR_NONNULL(); | void BM_face_as_array_loop_quad(BMFace *f, BMLoop *r_loops[4]) ATTR_NONNULL(); | ||||
| void BM_vert_tri_calc_plane(BMVert *verts[3], float r_plane[3]); | void BM_vert_tri_calc_tangent_edge(BMVert *verts[3], float r_tangent[3]); | ||||
| void BM_vert_tri_calc_tangent_edge_pair(BMVert *verts[3], float r_tangent[3]); | |||||
| #endif /* __BMESH_POLYGON_H__ */ | #endif /* __BMESH_POLYGON_H__ */ | ||||