Enum DumpFormatType#
Defined in File Defs.h
Enum Documentation#
-
enum class Karana::Math::DumpFormatType#
Controls how floating-point values are formatted when dumping.
Values:
-
enumerator DEFAULT_FLOAT#
Use std::defaultfloat, which uses as many meaningful digits as needed up to the set precision. This will print in scientific or fixed notation, depending on the number.
-
enumerator FIXED#
Use std::fixed, which prints a fixed number of digits.
-
enumerator SCIENTIFIC#
Use std::scientific, which prints the numbers in scientific notation.
-
enumerator DEFAULT_FLOAT#