Skip to main content

Smooth

Overview

Applies a smoothing algorithm to the mesh, reducing sharp edges and noise by averaging vertex positions with their neighbors.


Inputs

NameTypeDescription
MeshMeshDataThe source mesh to be smoothed.
IterationintThe number of times the smoothing pass is repeated.
LambdadoubleThe weight of the smoothing effect per iteration (typically between 0 and 1).

Outputs

NameTypeDescription
OutputMeshDataThe resulting mesh with smoothed vertex positions.

Parameters

This node does not expose additional parameters.


Behavior Notes

  • High Iteration or Lambda values can cause the mesh to shrink, as vertices are pulled toward the average center of their neighbors.