git-svn-id: https://reactphysics3d.googlecode.com/svn/trunk@277 92aac97c-a6ce-11dd-a772-7fcde58d38e6

This commit is contained in:
chappuis.daniel 2010-02-15 16:01:53 +00:00
parent a9a518f57a
commit 2d8eebfb1f
4 changed files with 14 additions and 0 deletions

View File

@ -24,6 +24,12 @@
// Namespaces
using namespace reactphysics3d;
// Constructor without argument
Matrix::Matrix()
:nbRow(0), nbColumn(0) {
}
// Constructor of the class Matrix
Matrix::Matrix(int nbRow, int nbColumn) throw(std::invalid_argument)
:nbRow(nbRow),nbColumn(nbColumn) {

View File

@ -40,6 +40,7 @@ class Matrix {
double** array; // Dynamic array that contains the values of the matrix
public :
Matrix(); // Constructor without argument
Matrix(int nbRow, int nbColum) throw(std::invalid_argument); // Constructor of the class Matrix
Matrix(const Matrix& matrix); // Copy constructor of the class Matrix
virtual ~Matrix(); // Destructor of the class Matrix

View File

@ -23,6 +23,12 @@
// Namespaces
using namespace reactphysics3d;
// Constructor without argument
Vector::Vector()
:nbComponent(0) {
}
// Constructor of the class Vector
Vector::Vector(int n) throw(std::invalid_argument) {
// Check the argument

View File

@ -39,6 +39,7 @@ class Vector {
int nbComponent; // number of components in the vector
public :
Vector(); // Constructor without argument
Vector(int n) throw(std::invalid_argument); // Constructor of the class Vector
Vector(const Vector& vector); // Copy-constructor of the class Vector
virtual ~Vector(); // Destructor of the class Vector