mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-05-29 17:46:29 +03:00
22 lines
590 B
C++
22 lines
590 B
C++
#ifndef EEPP_MATH_HPP
|
|
#define EEPP_MATH_HPP
|
|
|
|
#include <eepp/math/vector2.hpp>
|
|
#include <eepp/math/vector3.hpp>
|
|
#include <eepp/math/size.hpp>
|
|
#include <eepp/math/line2.hpp>
|
|
#include <eepp/math/triangle2.hpp>
|
|
#include <eepp/math/quad2.hpp>
|
|
#include <eepp/math/polygon2.hpp>
|
|
#include <eepp/math/rect.hpp>
|
|
#include <eepp/math/interpolation2d.hpp>
|
|
#include <eepp/math/interpolation1d.hpp>
|
|
#include <eepp/math/perlinnoise.hpp>
|
|
#include <eepp/math/easing.hpp>
|
|
#include <eepp/math/math.hpp>
|
|
#include <eepp/math/mtrand.hpp>
|
|
#include <eepp/math/easing.hpp>
|
|
#include <eepp/math/transform.hpp>
|
|
|
|
#endif
|