[Bf-blender-cvs] [ddebb0f7833] master: Cleanup: Fix typo

Hans Goudey noreply at git.blender.org
Mon May 30 14:05:17 CEST 2022


Commit: ddebb0f7833a1caa35862b2d1d7e692359673277
Author: Hans Goudey
Date:   Mon May 30 14:05:15 2022 +0200
Branches: master
https://developer.blender.org/rBddebb0f7833a1caa35862b2d1d7e692359673277

Cleanup: Fix typo

Contributed by @luzpaz

Differential Revision: https://developer.blender.org/D15058

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

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 153a1c6a1f4..632fd5ebc49 100644
--- a/source/blender/blenkernel/BKE_curves.hh
+++ b/source/blender/blenkernel/BKE_curves.hh
@@ -453,7 +453,7 @@ void calculate_tangents(Span<float3> positions, bool is_cyclic, MutableSpan<floa
 
 /**
  * Calculate directions perpendicular to the tangent at every point by rotating an arbitrary
- * starting vector by the same rotation of each tangent. If the curve is cylic, propagate a
+ * starting vector by the same rotation of each tangent. If the curve is cyclic, propagate a
  * correction through the entire to make sure the first and last normal align.
  */
 void calculate_normals_minimum(Span<float3> tangents, bool cyclic, MutableSpan<float3> normals);
@@ -483,10 +483,10 @@ bool segment_is_vector(Span<int8_t> handle_types_left,
                        int segment_index);
 
 /**
- * Return true if the curve's last cylic segment has a vector type.
+ * 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_cylic_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 13695525616..33888aa071c 100644
--- a/source/blender/blenkernel/intern/curve_bezier.cc
+++ b/source/blender/blenkernel/intern/curve_bezier.cc
@@ -20,8 +20,8 @@ bool segment_is_vector(const Span<int8_t> handle_types_left,
          handle_types_left[segment_index + 1] == BEZIER_HANDLE_VECTOR;
 }
 
-bool last_cylic_segment_is_vector(const Span<int8_t> handle_types_left,
-                                  const Span<int8_t> handle_types_right)
+bool last_cyclic_segment_is_vector(const Span<int8_t> handle_types_left,
+                                   const Span<int8_t> handle_types_right)
 {
   return handle_types_right.last() == BEZIER_HANDLE_VECTOR &&
          handle_types_left.first() == BEZIER_HANDLE_VECTOR;
@@ -49,7 +49,7 @@ void calculate_evaluated_offsets(const Span<int8_t> handle_types_left,
   }
 
   if (cyclic) {
-    offset += last_cylic_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