git-svn-id: https://reactphysics3d.googlecode.com/svn/trunk@357 92aac97c-a6ce-11dd-a772-7fcde58d38e6
This commit is contained in:
parent
0cb6b91c3f
commit
3ccc537378
|
@ -43,6 +43,7 @@ Matrix::Matrix(int nbRow, int nbColumn) throw(std::invalid_argument)
|
|||
|
||||
for(int i=0; i<nbRow; ++i) {
|
||||
array[i] = new double[nbColumn];
|
||||
assert(array[i] != 0);
|
||||
}
|
||||
|
||||
// TODO : This initialization loop must be removed carefully
|
||||
|
@ -431,7 +432,7 @@ Matrix Matrix::operator-(const Matrix& matrix2) const throw(MathematicsException
|
|||
// Overloaded operator * for the multiplication of the matrix with a number
|
||||
Matrix Matrix::operator*(double nb) const {
|
||||
// Creation of the result matrix
|
||||
Matrix result(nbRow,nbColumn);
|
||||
Matrix result(nbRow, nbColumn);
|
||||
|
||||
// Multiplication of the matrix with the number
|
||||
for(int i=0; i<nbRow; ++i) {
|
||||
|
|
Loading…
Reference in New Issue
Block a user