Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/include/ED_mesh.h
| Show First 20 Lines • Show All 157 Lines • ▼ Show 20 Lines | bool EDBM_backbuf_border_mask_init(struct ViewContext *vc, | ||||
| short ymin, | short ymin, | ||||
| short xmax, | short xmax, | ||||
| short ymax); | short ymax); | ||||
| bool EDBM_backbuf_circle_init(struct ViewContext *vc, short xs, short ys, short rads); | bool EDBM_backbuf_circle_init(struct ViewContext *vc, short xs, short ys, short rads); | ||||
| struct BMVert *EDBM_vert_find_nearest_ex(struct ViewContext *vc, | struct BMVert *EDBM_vert_find_nearest_ex(struct ViewContext *vc, | ||||
| float *r_dist, | float *r_dist, | ||||
| const bool use_select_bias, | const bool use_select_bias, | ||||
| bool use_cycle); | bool use_cycle, | ||||
| struct Base **bases, | |||||
| uint bases_len, | |||||
| uint *r_base_index); | |||||
| struct BMVert *EDBM_vert_find_nearest(struct ViewContext *vc, float *r_dist); | struct BMVert *EDBM_vert_find_nearest(struct ViewContext *vc, float *r_dist); | ||||
| struct BMEdge *EDBM_edge_find_nearest_ex(struct ViewContext *vc, | struct BMEdge *EDBM_edge_find_nearest_ex(struct ViewContext *vc, | ||||
| float *r_dist, | float *r_dist, | ||||
| float *r_dist_center, | float *r_dist_center, | ||||
| const bool use_select_bias, | const bool use_select_bias, | ||||
| const bool use_cycle, | const bool use_cycle, | ||||
| struct BMEdge **r_eed_zbuf); | struct BMEdge **r_eed_zbuf, | ||||
| struct Base **bases, | |||||
| uint bases_len, | |||||
| uint *r_base_index); | |||||
| struct BMEdge *EDBM_edge_find_nearest(struct ViewContext *vc, float *r_dist); | struct BMEdge *EDBM_edge_find_nearest(struct ViewContext *vc, float *r_dist); | ||||
| struct BMFace *EDBM_face_find_nearest_ex(struct ViewContext *vc, | struct BMFace *EDBM_face_find_nearest_ex(struct ViewContext *vc, | ||||
| float *r_dist, | float *r_dist, | ||||
| float *r_dist_center, | float *r_dist_center, | ||||
| const bool use_select_bias, | const bool use_select_bias, | ||||
| const bool use_cycle, | const bool use_cycle, | ||||
| struct BMFace **r_efa_zbuf); | struct BMFace **r_efa_zbuf, | ||||
| struct Base **bases, | |||||
| uint bases_len, | |||||
| uint *r_base_index); | |||||
| struct BMFace *EDBM_face_find_nearest(struct ViewContext *vc, float *r_dist); | struct BMFace *EDBM_face_find_nearest(struct ViewContext *vc, float *r_dist); | ||||
| bool EDBM_unified_findnearest(struct ViewContext *vc, | bool EDBM_unified_findnearest(struct ViewContext *vc, | ||||
| struct Base **bases, | struct Base **bases, | ||||
| const uint bases_len, | const uint bases_len, | ||||
| int *r_base_index, | int *r_base_index, | ||||
| struct BMVert **r_eve, | struct BMVert **r_eve, | ||||
| struct BMEdge **r_eed, | struct BMEdge **r_eed, | ||||
| ▲ Show 20 Lines • Show All 284 Lines • Show Last 20 Lines | |||||