Arc Forumnew | comments | leaders | submitlogin
4 points by eds 6060 days ago | link | parent

Assuming x, y and scale are numbers, just

  (x * y * scale)
should do the trick. As cadaver said, the arguments are evaluated completely before infix evaluation. So you can also do

  (x * y * (sqrt z))
or

  (x * Y * (sqrt (t * u + v)))


2 points by bogomipz 6059 days ago | link

Ah ok, in that case this is no less than brilliant! :)

-----