makeScalingFunction.m
% This function is part of the NMSM Pipeline, see file for full license.
%
% This function returns a function handle for adjusting the position of a
% scaling of a body in a model.
%
% (string) -> (function)
% return a function handle for adjusting the scaling of a body
function fn = makeScalingFunction(bodyName)
fn = @(value, model) adjustBodyScaling(model, bodyName, value);
end