runtime/blitz3d: Fixup C++ification

This commit is contained in:
Michael Fabian 'Xaymar' Dirks
2019-01-18 21:26:42 +01:00
parent 077776b704
commit 3afa84df85
71 changed files with 372 additions and 570 deletions
+3 -7
View File
@@ -1,8 +1,6 @@
#ifndef GEOM_H
#define GEOM_H
#include <math.h>
#pragma once
#include <cmath>
#include <cfloat>
class Vector;
class Line;
@@ -738,5 +736,3 @@ inline Quat matrixQuat(const Matrix& p)
}
return Quat(w, Vector(x, y, z));
}
#endif