[Bf-blender-cvs] [272a38e0c26] master: Cleanup: Make function static

Hans Goudey noreply at git.blender.org
Mon Oct 4 01:32:10 CEST 2021


Commit: 272a38e0c264911d6ebafcb440432d20c1495604
Author: Hans Goudey
Date:   Sun Oct 3 18:31:56 2021 -0500
Branches: master
https://developer.blender.org/rB272a38e0c264911d6ebafcb440432d20c1495604

Cleanup: Make function static

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

M	source/blender/blenkernel/BKE_curveprofile.h
M	source/blender/blenkernel/intern/curveprofile.cc

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

diff --git a/source/blender/blenkernel/BKE_curveprofile.h b/source/blender/blenkernel/BKE_curveprofile.h
index 501ae70ecdb..88bac220eb3 100644
--- a/source/blender/blenkernel/BKE_curveprofile.h
+++ b/source/blender/blenkernel/BKE_curveprofile.h
@@ -85,9 +85,6 @@ enum {
 };
 void BKE_curveprofile_update(struct CurveProfile *profile, const int update_flags);
 
-/* Need to find the total length of the curve to sample a portion of it */
-float BKE_curveprofile_total_length(const struct CurveProfile *profile);
-
 void BKE_curveprofile_create_samples_even_spacing(struct CurveProfile *profile,
                                                   int n_segments,
                                                   struct CurveProfilePoint *r_samples);
diff --git a/source/blender/blenkernel/intern/curveprofile.cc b/source/blender/blenkernel/intern/curveprofile.cc
index c16459afbb3..282aa04e0fa 100644
--- a/source/blender/blenkernel/intern/curveprofile.cc
+++ b/source/blender/blenkernel/intern/curveprofile.cc
@@ -1022,7 +1022,7 @@ static float curveprofile_distance_to_next_table_point(const CurveProfile *profi
  *
  * \note Requires #BKE_curveprofile_init or #BKE_curveprofile_update call before to fill table.
  */
-float BKE_curveprofile_total_length(const CurveProfile *profile)
+static float curveprofile_total_length(const CurveProfile *profile)
 {
   float total_length = 0;
   for (int i = 0; i < PROF_TABLE_LEN(profile->path_len) - 1; i++) {
@@ -1043,7 +1043,7 @@ void BKE_curveprofile_create_samples_even_spacing(CurveProfile *profile,
                                                   int n_segments,
                                                   CurveProfilePoint *r_samples)
 {
-  const float total_length = BKE_curveprofile_total_length(profile);
+  const float total_length = curveprofile_total_length(profile);
   const float segment_length = total_length / n_segments;
   float distance_to_next_table_point = curveprofile_distance_to_next_table_point(profile, 0);
   float distance_to_previous_table_point = 0.0f;
@@ -1101,7 +1101,7 @@ void BKE_curveprofile_evaluate_length_portion(const CurveProfile *profile,
                                               float *x_out,
                                               float *y_out)
 {
-  const float total_length = BKE_curveprofile_total_length(profile);
+  const float total_length = curveprofile_total_length(profile);
   const float requested_length = length_portion * total_length;
 
   /* Find the last point along the path with a lower length portion than the input. */



More information about the Bf-blender-cvs mailing list