WIP organization of library

This commit is contained in:
Kearwood Kip Gilbert
2017-07-29 01:39:41 -07:00
parent a4bc7267d3
commit 1d98f314b2
8 changed files with 305 additions and 306 deletions

View File

@@ -73,7 +73,7 @@ namespace std {
return h1 ^ ( h2 << 1 );
}
};
}
} // namespace std
#endif /* defined(KRAABB_H) */

View File

@@ -33,8 +33,8 @@
#include "Vector3.h"
#include "Vector4.h"
#ifndef KRMAT4_H
#define KRMAT4_H
#ifndef KRAKEN_MATRIX4_H
#define KRAKEN_MATRIX4_H
namespace kraken {
@@ -47,7 +47,7 @@ typedef enum {
class KRQuaternion;
class KRMat4 {
public:
public:
float c[16]; // Matrix components, in column-major order
@@ -112,4 +112,4 @@ class KRMat4 {
} // namespace kraken
#endif // KRMAT4_H
#endif // KRAKEN_MATRIX4_H

View File

@@ -110,7 +110,6 @@ namespace std {
return h1 ^ (h2 << 1);
}
};
}
} // namespace std
#endif // KRAKEN_VECTOR2_H

View File

@@ -141,6 +141,6 @@ namespace std {
return h1 ^ (h2 << 1) ^ (h3 << 2);
}
};
}
} // namespace std
#endif // KRAKEN_VECTOR3_H

View File

@@ -117,6 +117,6 @@ namespace std {
return h1 ^ (h2 << 1) ^ (h3 << 2) ^ (h4 << 3);
}
};
}
} // namespace std
#endif // KRAKEN_VECTOR4_H