mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-05-29 17:46:29 +03:00
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.
24 lines
664 B
C++
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
|