I'm Okay with fixed scaling factors but this has got me beat.
I have a page that is 100mm and a logo that is 25mm wide making it 25% of the page width when the logo is scaled at 100%.
As the page size increases I want to enlarge the Logo also - but not proportionately - so that when the page is incrementally enlarged to a maximum of 500% or 500mm the logo is scaled to a maximum of say 75mm (300%) not 125mm (500%). Basically as the page size increases the logo enlargement increase to a lesser extent.
Any help would be gratefully received
Thanks
var L = 1.07827 * Math.pow(P, 0.6826). It does in fact also do natural logarithms withMath.log()and $e^x$ withMath.exp()– Henry May 23 '18 at 14:40