--- trunk/OOPSE-2.0/src/math/SquareMatrix3.hpp 2004/10/21 21:31:39 1630 +++ trunk/OOPSE-2.0/src/math/SquareMatrix3.hpp 2004/10/25 22:46:19 1644 @@ -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) { }