network_smooth_centroid
- compas.datastructures.network_smooth_centroid(network, fixed=None, kmax=100, damping=0.5, callback=None, callback_args=None)[source]
Smooth a network by moving every free node to the centroid of its neighbors.
- Parameters
network (Mesh) – A network object.
fixed (list, optional) – The fixed nodes of the network.
kmax (int, optional) – The maximum number of iterations.
damping (float, optional) – The damping factor.
callback (callable, optional) – A user-defined callback function to be executed after every iteration.
callback_args (list, optional) – A list of arguments to be passed to the callback.
- Returns
None
- Raises
Exception – If a callback is provided, but it is not callable.