Files
eepp/include/eepp/math.hpp
Martín Lucas Golini a1bc99d619 Added amalgamate.py to generate an eepp.hpp single header include (issue #172).
Added `find_missing_includes.py` that checks if all the header files of each module in the "general" module includes are included.
With this I udpated the pending includes in the modules.
2026-03-14 17:55:26 -03:00

24 lines
664 B
C++

#ifndef EEPP_MATH_HPP
#define EEPP_MATH_HPP
#include <eepp/math/ease.hpp>
#include <eepp/math/easing.hpp>
#include <eepp/math/interpolation1d.hpp>
#include <eepp/math/interpolation2d.hpp>
#include <eepp/math/line2.hpp>
#include <eepp/math/math.hpp>
#include <eepp/math/mtrand.hpp>
#include <eepp/math/originpoint.hpp>
#include <eepp/math/perlinnoise.hpp>
#include <eepp/math/polygon2.hpp>
#include <eepp/math/quad2.hpp>
#include <eepp/math/rect.hpp>
#include <eepp/math/size.hpp>
#include <eepp/math/transform.hpp>
#include <eepp/math/transformable.hpp>
#include <eepp/math/triangle2.hpp>
#include <eepp/math/vector2.hpp>
#include <eepp/math/vector3.hpp>
#endif