[Bf-blender-cvs] [65bd9974d1a] master: Cleanup: make format

Dalai Felinto noreply at git.blender.org
Mon May 30 16:16:30 CEST 2022


Commit: 65bd9974d1a6e3b66b9613a60e521a5211631304
Author: Dalai Felinto
Date:   Mon May 30 16:16:25 2022 +0200
Branches: master
https://developer.blender.org/rB65bd9974d1a6e3b66b9613a60e521a5211631304

Cleanup: make format

===================================================================

M	source/blender/blenkernel/BKE_curves.hh
M	source/blender/blenkernel/intern/curve_bezier.cc

===================================================================

diff --git a/source/blender/blenkernel/BKE_curves.hh b/source/blender/blenkernel/BKE_curves.hh
index 632fd5ebc49..cc056dab248 100644
--- a/source/blender/blenkernel/BKE_curves.hh
+++ b/source/blender/blenkernel/BKE_curves.hh
@@ -486,7 +486,8 @@ bool segment_is_vector(Span<int8_t> handle_types_left,
  * Return true if the curve's last cyclic segment has a vector type.
  * This only makes a difference in the shape of cyclic curves.
  */
-bool last_cyclic_segment_is_vector(Span<int8_t> handle_types_left, Span<int8_t> handle_types_right);
+bool last_cyclic_segment_is_vector(Span<int8_t> handle_types_left,
+                                   Span<int8_t> handle_types_right);
 
 /**
  * Return true if the handle types at the index are free (#BEZIER_HANDLE_FREE) or vector
diff --git a/source/blender/blenkernel/intern/curve_bezier.cc b/source/blender/blenkernel/intern/curve_bezier.cc
index 33888aa071c..5ba17f1761b 100644
--- a/source/blender/blenkernel/intern/curve_bezier.cc
+++ b/source/blender/blenkernel/intern/curve_bezier.cc
@@ -49,7 +49,8 @@ void calculate_evaluated_offsets(const Span<int8_t> handle_types_left,
   }
 
   if (cyclic) {
-    offset += last_cyclic_segment_is_vector(handle_types_left, handle_types_right) ? 1 : resolution;
+    offset += last_cyclic_segment_is_vector(handle_types_left, handle_types_right) ? 1 :
+                                                                                     resolution;
   }
   else {
     offset++;



More information about the Bf-blender-cvs mailing list