Comment out all the old Matrix4 stuff

This commit is contained in:
Eryn Wells 2014-08-08 22:14:36 -07:00
parent b59b6d85c0
commit abd38169b1
2 changed files with 4 additions and 0 deletions

View file

@ -276,6 +276,7 @@ LinearCombination(const Double k1, const Vector3& v1,
#pragma mark - Matrices
#if 0
/* static */ Matrix4
Matrix4::Zero()
{
@ -488,6 +489,7 @@ operator*(const Double rhs,
/* Scalar multiplication is commutative. */
return lhs * rhs;
}
#endif
#pragma mark - Rays

View file

@ -119,6 +119,7 @@ Vector3 LinearCombination(const Double k1, const Vector3& v1,
const Double k3, const Vector3& v3);
#if 0
struct Matrix4
{
/** Create a 4x4 zero matrix. That is, all cells are 0. */
@ -192,6 +193,7 @@ private:
Matrix4 operator*(const Double lhs, const Matrix4& rhs);
#endif
struct Ray