INFO804 Introduction à l'informatique graphique
Loading...
Searching...
No Matches
tests.cpp
1#include <iostream>
2#include "PointVecteur.h"
3
4using namespace std;
5using namespace rt;
6
7bool testPointVecteur()
8{
9 Point3 p = { 1.0, 0.0, 0.0 };
10 cout << "p=" << p << endl;
11 Vecteur3 w = { 0.5, 3.0, 2.0 };
12 cout << "w=" << w << endl;
13 cout << "p+w=" << p+w << endl;
14 cout << "p-w=" << p-w << endl;
15 cout << "||w||^2=" << w.dot(w) << endl;
16 return true;
17}
18
19int main( int argc, char* argv[] )
20{
21 bool ok = testPointVecteur();
22 return ok;
23}
Namespace RayTracer.
Definition Color.h:11
T dot(const Self &other) const
dot product (produit scalaire).