/* Mathematiques de l'informatique graphique */ /* Matrice de base pour des courbes B-Splines */ /* */ /* Auteur: Nicolas JANEY */ /* nicolas.janey@univ-fcomte.fr */ /* Mars 2014 */ #ifndef ____MATRICEDEBASE____ #define ____MATRICEDEBASE____ #include "Matrice4x4.h" class MatriceDeBase : public Matrice4x4 { public : /* Constructeurs */ MatriceDeBase(void); MatriceDeBase(double *t); MatriceDeBase(double **t); MatriceDeBase(MatriceDeBase *tg); /* Destructeur */ ~MatriceDeBase(void); }; extern const MatriceDeBase NRUBS; #endif