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:
authorCampbell Barton <ideasman42@gmail.com>2015-05-05 08:59:26 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-05-05 09:34:38 +0300
commitea5f9fee8da4086adeb4ce902e9d58c446ef4ac8 (patch)
tree42dd83efabb9c5ba1433021e260c7419e82d4500 /source/blender/bmesh/operators/bmo_join_triangles.c
parent1648feec943017ff3087f5c913929878ef03fd59 (diff)
Cleanup: function arg wrapping
Diffstat (limited to 'source/blender/bmesh/operators/bmo_join_triangles.c')
-rw-r--r--source/blender/bmesh/operators/bmo_join_triangles.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/source/blender/bmesh/operators/bmo_join_triangles.c b/source/blender/bmesh/operators/bmo_join_triangles.c
index 6562f26062f..7fef9e1190a 100644
--- a/source/blender/bmesh/operators/bmo_join_triangles.c
+++ b/source/blender/bmesh/operators/bmo_join_triangles.c
@@ -45,8 +45,9 @@
#define FACE_OUT (1 << 0)
/* assumes edges are validated before reaching this poin */
-static float measure_facepair(const float v1[3], const float v2[3],
- const float v3[3], const float v4[3], float limit)
+static float measure_facepair(
+ const float v1[3], const float v2[3],
+ const float v3[3], const float v4[3], float limit)
{
/* gives a 'weight' to a pair of triangles that join an edge to decide how good a join they would make */
/* Note: this is more complicated than it needs to be and should be cleaned up.. */