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>2022-01-21 09:20:21 +0300
committerHans Goudey <h.goudey@me.com>2022-01-21 09:20:21 +0300
commit3d27612d23f7a8c16d9851c1bd7d70f0d1b6fb1f (patch)
treed21b7d0bf6f963c573759c64108b3d4db29ae6dd /source/blender
parenteed8d20b973231efb11bad0dd690033b26825280 (diff)
Cleanup: Variable names and comments
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/nodes/geometry/nodes/node_geo_extrude_mesh.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/nodes/geometry/nodes/node_geo_extrude_mesh.cc b/source/blender/nodes/geometry/nodes/node_geo_extrude_mesh.cc
index 9c9909ac222..6c82c0076d1 100644
--- a/source/blender/nodes/geometry/nodes/node_geo_extrude_mesh.cc
+++ b/source/blender/nodes/geometry/nodes/node_geo_extrude_mesh.cc
@@ -1276,17 +1276,17 @@ static void node_geo_exec(GeoNodeExecParams params)
{
GeometrySet geometry_set = params.extract_input<GeometrySet>("Mesh");
Field<bool> selection = params.extract_input<Field<bool>>("Selection");
- Field<float3> offset = params.extract_input<Field<float3>>("Offset");
- Field<float> strength = params.extract_input<Field<float>>("Offset Scale");
+ Field<float3> offset_field = params.extract_input<Field<float3>>("Offset");
+ Field<float> scale_field = params.extract_input<Field<float>>("Offset Scale");
const NodeGeometryExtrudeMesh &storage = node_storage(params.node());
GeometryNodeExtrudeMeshMode mode = static_cast<GeometryNodeExtrudeMeshMode>(storage.mode);
- /* Create a combined field from the offset and the strength so the field evaluator
+ /* Create a combined field from the offset and the scale so the field evaluator
* can take care of the multiplication and to simplify each extrude function. */
static fn::CustomMF_SI_SI_SO<float3, float, float3> multiply_fn{
- "Scale", [](const float3 &offset, const float strength) { return offset * strength; }};
+ "Scale", [](const float3 &offset, const float scale) { return offset * scale; }};
std::shared_ptr<FieldOperation> multiply_op = std::make_shared<FieldOperation>(
- FieldOperation(multiply_fn, {std::move(offset), std::move(strength)}));
+ FieldOperation(multiply_fn, {std::move(offset_field), std::move(scale_field)}));
const Field<float3> final_offset{std::move(multiply_op)};
AttributeOutputs attribute_outputs;