Just out of curiosity ( I normally stay away from inline functions ) - But would it be worth making these functions inlined - or would it do no good or no change?
Remember that inline is interpreted by the compiler as merely a suggestion to inline, rather than an order. Such short functions are usually better inlined. Specially if they're calling from inside a loop.
Personally, I never write functions so short. If I need something like that, I write a macro. But then, I'm one of those hybrid C-C++ programmers.
Mythios, The only way to know for sure is to benchmark the programs that use these functions. In general, I would guess that inlining would speed things up in the general case, except for maybe maRandomFloat() because of the call to rand(). But as helios said, the compiler will figure that out for you.
And ignore helios's comment on macros and function size. Don't use macros in C++. You loose all type safety and end up with unintended side effects that are virtually impossible to track down. These are perfect the way they are. Besides -- maximum function length is the only function size limit that matters.