In this example, I find these lines:
Would there be a difference to:
or to
or is there a reason for this "100dip/100"
B4X:
wc = bmpCompass.Width * 100dip / 100
hc = bmpCompass.Height * 100dip / 100
wn = bmpNeedle.Width * 100dip / 100
hn = bmpNeedle.Height * 100dip / 100
Would there be a difference to:
B4X:
wc = bmpCompass.Width * 1dip
...
B4X:
wc=(DipToCurrent(bmpCompass.Width))
...