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:
authorCampbell Barton <ideasman42@gmail.com>2021-01-04 03:29:11 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-01-04 09:38:07 +0300
commitc61c7d99264842909bd2aed002ba4eae4fb41621 (patch)
treeff02d7836a351a2d7abb6ad8b9071cd3c068baa7 /source/blender/nodes
parent613c568df28e6c460c62ee90a20e48036a686b95 (diff)
Cleanup: spelling (use 'gimbal' instead of 'gimble')
Diffstat (limited to 'source/blender/nodes')
-rw-r--r--source/blender/nodes/geometry/nodes/node_geo_attribute_color_ramp.cc2
-rw-r--r--source/blender/nodes/geometry/nodes/node_geo_point_distribute_poisson_disk.cc2
2 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/nodes/geometry/nodes/node_geo_attribute_color_ramp.cc b/source/blender/nodes/geometry/nodes/node_geo_attribute_color_ramp.cc
index 3f7023ba88f..66a0b0b8d3e 100644
--- a/source/blender/nodes/geometry/nodes/node_geo_attribute_color_ramp.cc
+++ b/source/blender/nodes/geometry/nodes/node_geo_attribute_color_ramp.cc
@@ -39,7 +39,7 @@ static void execute_on_component(const GeoNodeExecParams &params, GeometryCompon
const std::string result_name = params.get_input<std::string>("Result");
/* Once we support more domains at the user level, we have to decide how the result domain is
- * choosen. */
+ * chosen. */
const AttributeDomain result_domain = ATTR_DOMAIN_POINT;
const CustomDataType result_type = CD_PROP_COLOR;
diff --git a/source/blender/nodes/geometry/nodes/node_geo_point_distribute_poisson_disk.cc b/source/blender/nodes/geometry/nodes/node_geo_point_distribute_poisson_disk.cc
index e53157cb5f8..3f70ef829e6 100644
--- a/source/blender/nodes/geometry/nodes/node_geo_point_distribute_poisson_disk.cc
+++ b/source/blender/nodes/geometry/nodes/node_geo_point_distribute_poisson_disk.cc
@@ -95,7 +95,7 @@ static float point_weight_influence_get(const float maximum_distance,
* Weight each point based on their proximity to its neighbors
*
* For each index in the weight array add a weight based on the proximity the
- * corresponding point has with its neighboors.
+ * corresponding point has with its neighbors.
**/
static void points_distance_weight_calculate(Vector<float> *weights,
const size_t point_id,