Skip to main content
Version: 3.0.0

Format Precision

The Replay format is using relative coordinate space, which makes presence of more decimal values in the final state. Here is the existing convention for dealing with decimals:

info

SDK-s' are using the above rules for the underlying operations

  • All the decimal numbers are limited to have a precision of 6
  • If there is any conversion to happen not to get a broken pixel always convert to the lowest near float inside point for given precision(e.g. 1.2345678 => 1.234567, 1.2345679 => 1.234567, 1.2345671 => 1.234567)