4.6 La fonction main

Nous pouvons maintenant tester tout ça dans la fonction main :

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using namespace std;

int main(int argc, char **argv) {
	cout << "Hello, world!" << endl;
	
	PVector v1, v2, v3, v4;
	
	v1.setValue(1.0);
	v2.setValue(1.0);
	v3.setValue(1.0);
	
	v4 = (v1 / 2.0) - (v2 + v3) * 2.0;
	
	cout << "v4 = (" << v4.p_elements[0] << ", " << v4.p_elements[1] << ", " << v4.p_elements[2] << ")" << endl;
	cout << "On doit avoir (-3.5, -3.5, -3.5)" << endl;
	
	return 0;
}