104 const int cd_loop_uv_offset)
106 BMLoop *l_other =
nullptr;
108 if (l_iter != l_src) {
114 if (l_other ==
nullptr) {
130 const int cd_loop_uv_offset)
133 BMLoop *l_other =
nullptr;
135 if (l_iter != l_src) {
141 if (l_other ==
nullptr) {
152 if (l_other !=
nullptr) {
153 if (l_other->
v == v_src) {
156 else if (l_other->
next->
v == v_src) {
157 l_other = l_other->
next;
159 else if (l_other->
prev->
v == v_src) {
160 l_other = l_other->
prev;
176 if (
l->
e == e_prev) {
179 else if (
l->
prev->
e == e_prev) {
197 bool is_single_vert =
true;
202 is_single_vert =
false;
207 if (is_single_vert ==
false) {
209 if (
UL(
l)->is_select_vert_single) {
227 const float aspect_y,
228 const int cd_loop_uv_offset,
229 float *r_corner_angle,
234 float dir_test[3][2];
241 dir_test[0][1] /= aspect_y;
242 dir_test[2][1] /= aspect_y;
248 sub_v2_v2v2(dir_test[1], dir_test[0], dir_test[2]);
252 std::swap(dir_test[1][0], dir_test[1][1]);
253 dir_test[1][1] *= -1.0f;
259 const float angles[3] = {
266 *r_corner_angle = angles[1];
269 if (angles[0] < angles[2]) {
270 *r_edge_angle = angles[0];
274 *r_edge_angle = angles[2];
306 const float aspect_y,
307 const int cd_loop_uv_offset)
309 UVRipSingle *rip = MEM_cnew<UVRipSingle>(__func__);
316 BMLoop *l_init_edge =
nullptr;
317 float corner_angle_best =
FLT_MAX;
318 float edge_angle_best =
FLT_MAX;
319 int edge_index_best = 0;
324 dir_co[1] /= aspect_y;
329 int uv_fan_count_all = 0;
337 uv_fan_count_all += 1;
344 float corner_angle_test;
345 float edge_angle_test;
354 if ((corner_angle_best ==
FLT_MAX) || (corner_angle_test < corner_angle_best)) {
355 corner_angle_best = corner_angle_test;
360 edge_angle_test =
min_ff(corner_angle_test, edge_angle_test);
362 if ((edge_angle_best ==
FLT_MAX) || (edge_angle_test < edge_angle_best)) {
363 edge_angle_best = edge_angle_test;
364 edge_index_best = edge_index_test;
373 int uv_fan_count_contiguous = 1;
375 for (
int i = 0; i < 2; i += 1) {
379 (l_iter !=
nullptr) && (
UL(l_iter)->side == 0))
381 uv_fan_count_contiguous += 1;
387 if (l_iter == l_init) {
393 if (uv_fan_count_contiguous != uv_fan_count_all) {
403 if (uv_fan_count_contiguous <= 2) {
409 BMLoop *l_radial_init = (edge_index_best == -1) ? l_init_edge->
prev : l_init_edge;
410 BMLoop *l_radial_iter = l_radial_init;
413 BMLoop *
l = (l_radial_iter->
v == l_init->
v) ? l_radial_iter : l_radial_iter->
next;
418 }
while ((l_radial_iter = l_radial_iter->
radial_next) != l_radial_init);
466 const float aspect_y,
467 const int cd_loop_uv_offset)
471 float angle_of_side = 0.0f;
474 if (
UL(
l)->in_rip_pairs) {
475 if (
UL(
l)->side == side) {
480 float dir_prev[2], dir_next[2];
483 dir_prev[1] /= aspect_y;
484 dir_next[1] /= aspect_y;
485 const float luv_angle =
angle_v2v2(dir_prev, dir_next);
486 if (
LIKELY(isfinite(luv_angle))) {
487 angle_of_side += luv_angle;
493 return angle_of_side;
503 if (
UL(
l)->in_rip_pairs) {
504 if (
UL(
l)->side == side) {
517 const float aspect_y,
518 const int cd_loop_uv_offset)
520 const int side_a =
UL(l_switch)->
side;
521 const int side_b =
UL(l_target)->
side;
529 if (count_a + count_b == 4) {
530 return count_a > count_b;
534 l_switch, side_a, aspect_y, cd_loop_uv_offset);
536 l_target, side_b, aspect_y, cd_loop_uv_offset);
538 UL(l_switch)->
side = side_b;
541 l_switch, side_a, aspect_y, cd_loop_uv_offset);
543 l_target, side_b, aspect_y, cd_loop_uv_offset);
545 UL(l_switch)->
side = side_a;
547 return fabsf(angle_a_before - angle_b_before) >
fabsf(angle_a_after - angle_b_after);
559 const float aspect_y,
560 const int cd_loop_uv_offset)
562 UVRipPairs *rip = MEM_cnew<UVRipPairs>(__func__);
573#define UV_SET_SIDE_AND_REMOVE_FROM_RAIL(loop, side_value) \
575 BLI_assert(UL(loop)->side_was_swapped == false); \
576 BLI_assert(UL(loop)->side != side_value); \
577 if (!UL(loop)->in_stack) { \
578 BLI_SMALLSTACK_PUSH(stack, loop); \
579 UL(loop)->in_stack = true; \
581 if (UL(loop)->in_rip_pairs) { \
582 uv_rip_pairs_remove(rip, loop); \
584 UL(loop)->side = side_value; \
585 UL(loop)->side_was_swapped = true; \
594 int side =
UL(l_step)->
side;
602 if (
UL(l_step)->is_select_edge) {
605 if (l_other !=
nullptr) {
606 if (!
UL(l_other)->in_rip_pairs && !
UL(l_other)->in_stack) {
609 UL(l_other)->
side = !side;
612 if (
UL(l_other)->side == side) {
613 if (
UL(l_other)->side_was_swapped ==
false) {
621 l_other = l_step->
next;
622 if (!
UL(l_other)->in_rip_pairs && !
UL(l_other)->in_stack) {
628 if (
UL(l_other)->side != side) {
629 if ((
UL(l_other)->side_was_swapped ==
false) &&
639 for (
int i = 0; i < 2; i++) {
640 BMLoop *l_radial_first = i ? l_step : l_step->
prev;
641 if (l_radial_first != l_radial_first->
radial_next) {
642 BMEdge *e_radial = l_radial_first->
e;
646 if (!
UL(l_radial_iter)->is_select_edge &&
649 BMLoop *l_other = (l_radial_iter->
v == l_step->
v) ? l_radial_iter :
653 if (!
UL(l_other)->in_rip_pairs && !
UL(l_other)->in_stack) {
659 if (
UL(l_other)->side != side) {
660 if ((
UL(l_other)->side_was_swapped ==
false) &&
662 l_other, l_step, aspect_y, cd_loop_uv_offset))
670 }
while ((l_radial_iter = l_radial_iter->
radial_next) != l_radial_first);
675#undef UV_SET_SIDE_AND_REMOVE_FROM_RAIL
690 const int cd_loop_uv_offset,
692 float r_dir_side[2][2])
695 int center_total = 0;
696 int side_total[2] = {0, 0};
698 for (
int i = 0; i < 2; i++) {
709 if (!
UL(
l)->is_select_edge) {
719 side_total[side] += 1;
723 for (
int i = 0; i < 2; i++) {
726 mul_v2_fl(r_center, 1.0f / center_total);
729 return side_total[0] && side_total[1];
744 BMEditMesh *em = mesh->runtime->edit_mesh.get();
755 const ULData ul_clear = {0};
757 bool changed =
false;
768 bool is_select_all_any =
false;
795 is_select_all_any =
true;
804 if (
UL(
l)->is_select_vert_single) {
817 if (is_select_all_any) {
820 if (!
UL(
l)->is_select_all) {
839 if (
UL(
l)->is_select_edge) {
840 if (!
UL(
l)->in_rip_pairs) {
844 float dir_side[2][2];
845 int side_from_cursor = -1;
847 for (
int i = 0; i < 2; i++) {
851 side_from_cursor = (
dot_v2v2(dir_side[0], dir_cursor) -
852 dot_v2v2(dir_side[1], dir_cursor)) < 0.0f;
858 if (ul->
side == side_from_cursor) {
868 else if (
UL(
l)->is_select_vert_single) {
871 const int side_from_cursor = 0;
876 if (ul->
side == side_from_cursor) {
906 bool changed_multi =
false;
917 const float aspect_y = aspx / aspy;
920 scene, view_layer,
nullptr);
922 for (
Object *obedit : objects) {
924 changed_multi =
true;
931 if (!changed_multi) {
953 ot->
description =
"Rip selected vertices or a selected region";
974 "Mouse location in normalized coordinates, 0.0 to 1.0 is within the image bounds",
SpaceImage * CTX_wm_space_image(const bContext *C)
Scene * CTX_data_scene(const bContext *C)
Object * CTX_data_edit_object(const bContext *C)
ARegion * CTX_wm_region(const bContext *C)
ViewLayer * CTX_data_view_layer(const bContext *C)
CustomData interface, see also DNA_customdata_types.h.
const char * CustomData_get_active_layer_name(const CustomData *data, eCustomDataType type)
blender::Vector< Object * > BKE_view_layer_array_from_objects_in_edit_mode_unique_data_with_uvs(const Scene *scene, ViewLayer *view_layer, const View3D *v3d)
void BKE_report(ReportList *reports, eReportType type, const char *message)
#define BLI_assert_unreachable()
#define BLI_STATIC_ASSERT(a, msg)
GSet * BLI_gset_ptr_new(const char *info)
bool BLI_gset_haskey(const GSet *gs, const void *key) ATTR_WARN_UNUSED_RESULT
unsigned int BLI_gset_len(const GSet *gs) ATTR_WARN_UNUSED_RESULT
BLI_INLINE void * BLI_gsetIterator_getKey(GSetIterator *gsi)
#define GSET_ITER(gs_iter_, gset_)
void BLI_gset_free(GSet *gs, GSetKeyFreeFP keyfreefp)
bool BLI_gset_add(GSet *gs, void *key)
bool BLI_gset_remove(GSet *gs, const void *key, GSetKeyFreeFP keyfreefp)
BLI_LINKSTACK_*** wrapper macros for using a LinkNode to store a stack of pointers,...
#define BLI_SMALLSTACK_DECLARE(var, type)
#define BLI_SMALLSTACK_POP(var)
#define BLI_SMALLSTACK_PUSH(var, data)
MINLINE float min_ff(float a, float b)
float angle_v2v2(const float a[2], const float b[2]) ATTR_WARN_UNUSED_RESULT
MINLINE void mul_v2_fl(float r[2], float f)
MINLINE void negate_v2(float r[2])
MINLINE void add_v2_v2(float r[2], const float a[2])
MINLINE bool equals_v2v2(const float v1[2], const float v2[2]) ATTR_WARN_UNUSED_RESULT
MINLINE void sub_v2_v2v2(float r[2], const float a[2], const float b[2])
MINLINE void zero_v2(float r[2])
MINLINE float dot_v2v2(const float a[2], const float b[2]) ATTR_WARN_UNUSED_RESULT
MINLINE float normalize_v2(float n[2])
void DEG_id_tag_update(ID *id, unsigned int flags)
Object is a sort of wrapper for general info.
bool ED_operator_uvedit(bContext *C)
void uvedit_deselect_flush(const Scene *scene, BMEditMesh *em)
void ED_uvedit_get_aspect(Object *obedit, float *r_aspx, float *r_aspy)
bool uvedit_face_visible_test(const Scene *scene, BMFace *efa)
void uvedit_uv_select_disable(const Scene *scene, BMesh *bm, BMLoop *l, BMUVOffsets offsets)
Read Guarded memory(de)allocation.
void UI_view2d_region_to_view(const View2D *v2d, float x, float y, float *r_view_x, float *r_view_y) ATTR_NONNULL()
@ OPTYPE_DEPENDS_ON_CURSOR
#define BM_ELEM_CD_GET_BOOL(ele, offset)
#define BM_ELEM_CD_GET_FLOAT_P(ele, offset)
#define BM_ELEM_CD_SET_BOOL(ele, offset, f)
#define BM_elem_flag_set(ele, hflag, val)
#define BM_elem_flag_test(ele, hflag)
void BM_uv_map_ensure_vert_select_attr(BMesh *bm, const char *uv_map_name)
void BM_uv_map_ensure_edge_select_attr(BMesh *bm, const char *uv_map_name)
#define BM_ITER_ELEM(ele, iter, data, itype)
#define BM_ITER_MESH(ele, iter, bm, itype)
ATTR_WARN_UNUSED_RESULT BMesh * bm
BLI_INLINE bool BM_vert_in_edge(const BMEdge *e, const BMVert *v) ATTR_WARN_UNUSED_RESULT ATTR_NONNULL()
ATTR_WARN_UNUSED_RESULT const BMLoop * l
bool BM_edge_uv_share_vert_check(BMEdge *e, BMLoop *l_a, BMLoop *l_b, const int cd_loop_uv_offset)
BMUVOffsets BM_uv_map_get_offsets(const BMesh *bm)
bool BM_loop_uv_share_edge_check(BMLoop *l_a, BMLoop *l_b, const int cd_loop_uv_offset)
float BM_face_uv_calc_cross(const BMFace *f, const int cd_loop_uv_offset)
void MEM_freeN(void *vmemh)
void RNA_float_get_array(PointerRNA *ptr, const char *name, float *values)
void RNA_float_set_array(PointerRNA *ptr, const char *name, const float *values)
PropertyRNA * RNA_def_float_vector(StructOrFunctionRNA *cont_, const char *identifier, const int len, const float *default_value, const float hardmin, const float hardmax, const char *ui_name, const char *ui_description, const float softmin, const float softmax)
struct BMLoop * radial_next
uint is_select_vert_single
bool(* poll)(bContext *C) ATTR_WARN_UNUSED_RESULT
int(* invoke)(bContext *C, wmOperator *op, const wmEvent *event) ATTR_WARN_UNUSED_RESULT
int(* exec)(bContext *C, wmOperator *op) ATTR_WARN_UNUSED_RESULT
struct ReportList * reports
void uvedit_live_unwrap_update(SpaceImage *sima, Scene *scene, Object *obedit)
static int uv_rip_invoke(bContext *C, wmOperator *op, const wmEvent *event)
static BMLoop * bm_loop_find_other_fan_loop_with_visible_face(BMLoop *l_src, BMVert *v_src, const int cd_loop_uv_offset)
#define UV_SET_SIDE_AND_REMOVE_FROM_RAIL(loop, side_value)
static void bm_loop_uv_select_single_vert_validate(BMLoop *l_init, const int cd_loop_uv_offset)
static void uv_rip_pairs_free(UVRipPairs *rip)
BLI_INLINE ULData * UL(BMLoop *l)
static void uv_rip_single_free(UVRipSingle *rip)
static int uv_rip_exec(bContext *C, wmOperator *op)
static void uv_rip_pairs_remove(UVRipPairs *rip, BMLoop *l)
static void uv_rip_pairs_add(UVRipPairs *rip, BMLoop *l)
static int uv_rip_pairs_loop_count_on_side(BMLoop *l_init, uint side, const int cd_loop_uv_offset)
static UVRipSingle * uv_rip_single_from_loop(BMLoop *l_init_orig, const float co[2], const float aspect_y, const int cd_loop_uv_offset)
static bool uv_rip_object(Scene *scene, Object *obedit, const float co[2], const float aspect_y)
static BMLoop * bm_loop_find_other_radial_loop_with_visible_face(BMLoop *l_src, const int cd_loop_uv_offset)
void UV_OT_rip(wmOperatorType *ot)
static UVRipPairs * uv_rip_pairs_from_loop(BMLoop *l_init, const float aspect_y, const int cd_loop_uv_offset)
static float uv_rip_pairs_calc_uv_angle(BMLoop *l_init, uint side, const float aspect_y, const int cd_loop_uv_offset)
static bool uv_rip_pairs_calc_center_and_direction(UVRipPairs *rip, const int cd_loop_uv_offset, float r_center[2], float r_dir_side[2][2])
static bool uv_rip_pairs_loop_change_sides_test(BMLoop *l_switch, BMLoop *l_target, const float aspect_y, const int cd_loop_uv_offset)
static void bm_loop_calc_uv_angle_from_dir(BMLoop *l, const float dir[2], const float aspect_y, const int cd_loop_uv_offset, float *r_corner_angle, float *r_edge_angle, int *r_edge_index)
static BMLoop * bm_vert_step_fan_loop_uv(BMLoop *l, BMEdge **e_step, const int cd_loop_uv_offset)
void WM_event_add_notifier(const bContext *C, uint type, void *reference)