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-05-27 16:27:08 +0300
committerHans Goudey <h.goudey@me.com>2021-05-27 16:27:08 +0300
commita12fd5c3ada56c52e5cf1ee98877c79433f1f1c1 (patch)
treec5aba7f2a8ba77339aced5192a7ccbaae634fdff /source/blender/blenkernel/BKE_spline.hh
parent5721c89ba8a5d6b2a1cb275a49aa63ba25fc61cb (diff)
Cleanup: Use consistent variable names
Diffstat (limited to 'source/blender/blenkernel/BKE_spline.hh')
-rw-r--r--source/blender/blenkernel/BKE_spline.hh8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/blenkernel/BKE_spline.hh b/source/blender/blenkernel/BKE_spline.hh
index 9e5552082af..8d679a445b7 100644
--- a/source/blender/blenkernel/BKE_spline.hh
+++ b/source/blender/blenkernel/BKE_spline.hh
@@ -257,10 +257,10 @@ class BezierSpline final : public Spline {
void set_resolution(const int value);
void add_point(const blender::float3 position,
- const HandleType handle_type_start,
- const blender::float3 handle_position_start,
- const HandleType handle_type_end,
- const blender::float3 handle_position_end,
+ const HandleType handle_type_left,
+ const blender::float3 handle_position_left,
+ const HandleType handle_type_right,
+ const blender::float3 handle_position_right,
const float radius,
const float tilt);