Skip to content

v2.2 - new utilities for byte conversion

Compare
Choose a tag to compare
@RVillani RVillani released this 07 Jun 01:49
· 18 commits to master since this release

2.2 Update!

What's new

4 new utility nodes for converting from and to bytes/int/float:

  • BytesToInt — Convert 4 bytes in little-endian order into an Integer.
  • BytesToFloat — Convert 4 bytes in IEEE 754 standard into a Float.
  • IntToBytes — Convert an Integer value into 4 bytes in little-endian order.
  • FloatToBytes — Convert a Float value into 4 bytes matching the IEEE 754 standards.

example5