mirror of
https://github.com/aap/librw.git
synced 2024-11-30 23:55:43 +00:00
22 lines
532 B
C
22 lines
532 B
C
|
#ifndef MATH_H
|
||
|
#define MATH_H
|
||
|
|
||
|
#include "vec3.h"
|
||
|
#include "vec4.h"
|
||
|
#include "quat.h"
|
||
|
#include "dquat.h"
|
||
|
#include "mat3.h"
|
||
|
#include "mat4.h"
|
||
|
|
||
|
std::ostream &operator<<(std::ostream& of, const Vec3 &v);
|
||
|
std::ostream &operator<<(std::ostream& of, const Vec4 &v);
|
||
|
std::ostream &operator<<(std::ostream& of, const Quat &v);
|
||
|
std::ostream &operator<<(std::ostream& of, const DQuat &v);
|
||
|
std::ostream &operator<<(std::ostream& of, const Mat3 &v);
|
||
|
std::ostream &operator<<(std::ostream& of, const Mat4 &v);
|
||
|
|
||
|
#define PI 3.14159265359f
|
||
|
|
||
|
|
||
|
#endif
|