# Update
- Added GetTime funcs to utils - Added Time() to App class to gather the apps run time in seconds - Updated almost every part of the sourcecode to the D7 Style guide
This commit is contained in:
@@ -24,7 +24,7 @@ SOFTWARE.
|
||||
|
||||
#include <amethyst/maths/mat.hpp>
|
||||
|
||||
namespace amy {
|
||||
namespace Amy {
|
||||
mat4 mat4::rotateX(float a) {
|
||||
float c = std::cos(a);
|
||||
float s = std::sin(a);
|
||||
@@ -118,4 +118,4 @@ mat4 mat4::lookAt(const fvec3& pos, const fvec3& center, const fvec3& up) {
|
||||
ret(2, 3) = f.Dot(pos);
|
||||
return ret;
|
||||
}
|
||||
} // namespace amy
|
||||
} // namespace Amy
|
||||
Reference in New Issue
Block a user