\brief Encode a single float value with lossless encoding to integer */
| 149 | \brief Encode a single float value with lossless encoding to integer |
| 150 | */ |
| 151 | PX_FORCE_INLINE PxU32 decodeFloat(PxU32 ir) |
| 152 | { |
| 153 | if(ir & PX_SIGN_BITMASK) //positive? |
| 154 | return ir & ~PX_SIGN_BITMASK; //flip sign |
| 155 | else |
| 156 | return ~ir; //undo reversal |
| 157 | } |
| 158 | |
| 159 | |
| 160 | /** |
no outgoing calls
no test coverage detected