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:
authorHans Goudey <h.goudey@me.com>2021-10-04 03:52:59 +0300
committerHans Goudey <h.goudey@me.com>2021-10-04 03:52:59 +0300
commitdfdc9c62199ebb77007a59aa8e57aba1cb6988de (patch)
tree4572b44600de2c87700d64d69d98e201cdfaa8a2 /source/blender/blenkernel/BKE_curveprofile.h
parentb6195f66643be6604a4dc1072ead53d1567f6795 (diff)
Cleanup: Make more functions static
This simplifies the surface of the API for a CurveProfile.
Diffstat (limited to 'source/blender/blenkernel/BKE_curveprofile.h')
-rw-r--r--source/blender/blenkernel/BKE_curveprofile.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/source/blender/blenkernel/BKE_curveprofile.h b/source/blender/blenkernel/BKE_curveprofile.h
index 62074a30612..5a948f0d844 100644
--- a/source/blender/blenkernel/BKE_curveprofile.h
+++ b/source/blender/blenkernel/BKE_curveprofile.h
@@ -70,11 +70,6 @@ void BKE_curveprofile_reset_view(struct CurveProfile *profile);
void BKE_curveprofile_reset(struct CurveProfile *profile);
-void BKE_curveprofile_create_samples(struct CurveProfile *profile,
- int n_segments,
- bool sample_straight_edges,
- struct CurveProfilePoint *r_samples);
-
int BKE_curveprofile_table_size(const struct CurveProfile *profile);
void BKE_curveprofile_init(struct CurveProfile *profile, short segments_len);
@@ -87,10 +82,6 @@ enum {
};
void BKE_curveprofile_update(struct CurveProfile *profile, const int update_flags);
-void BKE_curveprofile_create_samples_even_spacing(struct CurveProfile *profile,
- int n_segments,
- struct CurveProfilePoint *r_samples);
-
/* Length portion is the fraction of the total path length where we want the location */
void BKE_curveprofile_evaluate_length_portion(const struct CurveProfile *profile,
float length_portion,