Matrix default constructor
This commit is contained in:
parent
25fe960caf
commit
87d39a705d
@ -34,6 +34,7 @@ class Matrix{
|
||||
inline Matrix Transpose();
|
||||
|
||||
// Operators
|
||||
inline Matrix();
|
||||
inline Matrix operator=(const Matrix*);
|
||||
inline Matrix operator+(const Matrix*);
|
||||
inline Matrix operator-(const Matrix*);
|
||||
@ -48,6 +49,10 @@ class Matrix{
|
||||
inline Matrix(const Matrix*);
|
||||
};
|
||||
|
||||
Matrix::Matrix(){
|
||||
|
||||
}
|
||||
|
||||
Matrix Matrix::operator=(const Matrix* other){
|
||||
return this->Swap(other);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user