Why write: ``` Pts[i].VX += windX * 1 / Pts[i].R; ``` and not simply: ``` Pts[i].VX += windX / Pts[i].R; ``` (in all source files, and for Y and Z dimensions too)? It got me thinking about operator precedence... but of course it don't matters... :/
Why write:
and not simply:
(in all source files, and for Y and Z dimensions too)? It got me thinking about operator precedence... but of course it don't matters... :/