Scale fractions

When using transforms in modelling, fractions don’t appear to work correctly.
I’m trying to transform a 40x60 post to a 50x50 post, so would use “Sx(50/40).Sy(50/60)” .
The Sx works fine because the scale is 1.25, but it doesnt like the Sy(0.833333recurring) and results in a zero thickness part.

If it can’t handle recurring decimels then how do you avoid them in parametric parts with variables?

Use this in your expression:

Sx(50.0/40.0).Sy(50.0/60.0)

2 Likes

Thank you, that works.