6.4 Le fichier main.cpp

Maintenant nous pouvons écrire le fichier main.cpp pour faire quelques tests :

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <iostream>
#include "vecteur.h"

using namespace std;

int main(int argc, char** argv){
	Vecteur vect1(1.0, 0.0, 0.0);
	Vecteur vect2(1.0, 0.0, 2.0);
	
	cout << "vect1 = " << vect1 << endl;
	cout << "vect2 = " << vect2 << endl;
	
	cout << "Produit scalaire : vect1*vect2 = " << vect1*vect2 << endl;
	
	Vecteur produitVectoriel(vect1^vect2);
	cout << "Produit vectoriel : vect1^vect2 = " << produitVectoriel << endl;
	
	
	
	return 0;
}

Libre à vous de rajouter des tests.