I have more than 20 parameters set as constant numbers (e.g. p21_x = 50).
Is there any easy method to get all those parameters multiplied by the same factor?
For example, with a factor 1.1,
- p21_x = 50 >>> p21_x = 55
- p22_x = 60 >>> p22_x = 66
- ...
All those parameters are "Total" in Curve Length features. I don't want to set them as expressions like p21_x = 50*factor, because I need them to be constant numbers to be able to be adjusted by mouse dragging in the future.
Thanks!