Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Blackbourn <chrisbblend@gmail.com>2022-06-21 08:37:15 +0300
committerChris Blackbourn <chrisbblend@gmail.com>2022-06-21 08:37:15 +0300
commite42c662723a81171276e349e7b1cb3c5bf465162 (patch)
treefb849a9f5c150130d5c3a3b7df65ee81e241a148 /source/blender/editors/uvedit/uvedit_select.c
parent1154b45526797d6f5999d1be18f92124baf8107f (diff)
Cleanup: Fix format on previous commit
Diffstat (limited to 'source/blender/editors/uvedit/uvedit_select.c')
-rw-r--r--source/blender/editors/uvedit/uvedit_select.c27
1 files changed, 13 insertions, 14 deletions
diff --git a/source/blender/editors/uvedit/uvedit_select.c b/source/blender/editors/uvedit/uvedit_select.c
index 9080da9e1ed..8dcf2ceb679 100644
--- a/source/blender/editors/uvedit/uvedit_select.c
+++ b/source/blender/editors/uvedit/uvedit_select.c
@@ -4446,10 +4446,10 @@ void UV_OT_select_overlap(wmOperatorType *ot)
* \{ */
static float get_uv_vert_needle(const eUVSelectSimilar type,
- BMVert *vert,
- const float ob_m3[3][3],
- MLoopUV *luv,
- const int cd_loop_uv_offset)
+ BMVert *vert,
+ const float ob_m3[3][3],
+ MLoopUV *luv,
+ const int cd_loop_uv_offset)
{
float result = 0.0f;
switch (type) {
@@ -4485,11 +4485,11 @@ static float get_uv_vert_needle(const eUVSelectSimilar type,
}
static float get_uv_edge_needle(const eUVSelectSimilar type,
- BMEdge *edge,
- const float ob_m3[3][3],
- MLoopUV *luv_a,
- MLoopUV *luv_b,
- const int cd_loop_uv_offset)
+ BMEdge *edge,
+ const float ob_m3[3][3],
+ MLoopUV *luv_a,
+ MLoopUV *luv_b,
+ const int cd_loop_uv_offset)
{
float result = 0.0f;
switch (type) {
@@ -4535,9 +4535,9 @@ static float get_uv_edge_needle(const eUVSelectSimilar type,
}
static float get_uv_face_needle(const eUVSelectSimilar type,
- BMFace *face,
- const float ob_m3[3][3],
- const int cd_loop_uv_offset)
+ BMFace *face,
+ const float ob_m3[3][3],
+ const int cd_loop_uv_offset)
{
float result = 0.0f;
switch (type) {
@@ -4924,8 +4924,7 @@ static int uv_select_similar_exec(bContext *C, wmOperator *op)
return uv_select_similar_vert_exec(C, op);
}
-static EnumPropertyItem prop_vert_similar_types[] = {
- {UV_SSIM_PIN, "PIN", 0, "Pinned", ""}, {0}};
+static EnumPropertyItem prop_vert_similar_types[] = {{UV_SSIM_PIN, "PIN", 0, "Pinned", ""}, {0}};
static EnumPropertyItem prop_edge_similar_types[] = {
{UV_SSIM_LENGTH_UV, "LENGTH", 0, "Length", ""},