Add nullify method to Matrix class

This commit is contained in:
wmayer
2013-07-23 11:21:31 +02:00
parent 489cb8539b
commit 751eef8d54
2 changed files with 34 additions and 24 deletions

View File

@@ -26,7 +26,7 @@
#include <cassert>
#include <cmath>
#include <cstdio>
#include <cstdio>
#include <string>
#include "Vector3D.h"
@@ -104,7 +104,9 @@ public:
/** @name Manipulation */
//@{
/// Makes unity matrix
void setToUnity (void);
void setToUnity(void);
/// Makes a null matrix
void nullify(void);
/// moves the coordinatesystem for the x,y,z value
void move (float x, float y, float z)
{ move(Vector3f(x,y,z)); }