[Bf-blender-cvs] [58a3aafa263] soc-2021-curve-fillet: Cleanup: Comment formatting fix

dilithjay noreply at git.blender.org
Fri Jul 23 12:39:37 CEST 2021


Commit: 58a3aafa26346356a2a015f096752039c0e7e27f
Author: dilithjay
Date:   Thu Jul 22 09:42:43 2021 +0530
Branches: soc-2021-curve-fillet
https://developer.blender.org/rB58a3aafa26346356a2a015f096752039c0e7e27f

Cleanup: Comment formatting fix

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

M	source/blender/nodes/geometry/nodes/node_geo_curve_fillet.cc

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

diff --git a/source/blender/nodes/geometry/nodes/node_geo_curve_fillet.cc b/source/blender/nodes/geometry/nodes/node_geo_curve_fillet.cc
index 646d1619c6b..c69c2a7eb74 100644
--- a/source/blender/nodes/geometry/nodes/node_geo_curve_fillet.cc
+++ b/source/blender/nodes/geometry/nodes/node_geo_curve_fillet.cc
@@ -229,8 +229,10 @@ static Array<FilletData> calculate_fillet_data(const SplinePtr &spline,
   return fds;
 }
 
-/* Create a mapping from each vertex in the resulting spline to that of the source spline.
-Used for copying the data from the source spline.*/
+/*
+ * Create a mapping from each vertex in the resulting spline to that of the source spline.
+ * Used for copying the data from the source spline.
+ */
 static Array<int> create_dst_to_src_map(const Array<int> point_counts, const int total_points)
 {
   Array<int> map(total_points);
@@ -431,8 +433,9 @@ static void update_poly_positions(Array<FilletData> &fds,
   }
 }
 
-/* Function to fillet either Bezier splines or Poly splines.
-Added under the same function because the only difference is that Bezier curves have handle data.
+/*
+ * Function to fillet either Bezier splines or Poly splines. Added under the same function because
+ * the only difference is that Bezier curves have handle data.
  */
 static SplinePtr fillet_bez_or_poly_spline(const Spline &spline, const FilletModeParam &mode_param)
 {



More information about the Bf-blender-cvs mailing list