--- trunk/src/math/SquareMatrix3.hpp 2004/10/25 17:03:56 150 +++ trunk/src/math/SquareMatrix3.hpp 2004/10/25 22:46:19 151 @@ -49,6 +49,15 @@ namespace oopse { SquareMatrix3() : SquareMatrix() { } + /** Constructs and initializes every element of this matrix to a scalar */ + SquareMatrix3(Real s) : SquareMatrix(s){ + } + + /** Constructs and initializes from an array */ + SquareMatrix3(Real* array) : SquareMatrix(array){ + } + + /** copy constructor */ SquareMatrix3(const SquareMatrix& m) : SquareMatrix(m) { }