Releases: Nitrillo/picomath
Releases · Nitrillo/picomath
v1.1.0
v1.0.0
PicoMath v1.0.0
Features
- Header only C++ library: easy integration in your project
- Very simple and fast
- Zero allocations in the hot path
- Uses C++17
std::string_view
to lookup variables without copying strings
- Uses C++17
- Single pass: The evaluation is performed while parsing.
- Built-in math functions (e.g. cos(pi))
- Custom units and percentages (e.g
"100% - 10px"
) - User defined variables (e.g.
(x + y) * (x + y)
) - User defined functions with multiple arguments (e.g.
avg(10, 20, 30)
) - Uses standard C++ containers