summaryrefslogtreecommitdiff
path: root/src/main/Vector3D.h
diff options
context:
space:
mode:
authorJakob Odersky <jodersky@gmail.com>2011-03-24 21:50:25 +0000
committerJakob Odersky <jodersky@gmail.com>2011-03-24 21:50:25 +0000
commit0598b7774b22d94121535b50759e68295df95bdb (patch)
treecef563365ab24a5f1ddf05c3c7b91472e34eb8c1 /src/main/Vector3D.h
parent85bc0ad0263318c010a5fa2f57c8b5d3c358a089 (diff)
downloadvhc-0598b7774b22d94121535b50759e68295df95bdb.tar.gz
vhc-0598b7774b22d94121535b50759e68295df95bdb.tar.bz2
vhc-0598b7774b22d94121535b50759e68295df95bdb.zip
*Implementation d'une methode d'affichage polymorphique d'elements.
*Suppression des methodes set dans elements. *Mise en place d'un fichier test pour elements.
Diffstat (limited to 'src/main/Vector3D.h')
-rw-r--r--src/main/Vector3D.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/Vector3D.h b/src/main/Vector3D.h
index 5c8d5b5..6d4dfed 100644
--- a/src/main/Vector3D.h
+++ b/src/main/Vector3D.h
@@ -103,7 +103,7 @@ public:
/** Retourne une représentation en chaîne de caractères de ce vecteur. */
virtual std::string toString() const {
std::stringstream s;
- s << "Vector3D(" << x << ", " << y << ", " << z << ")";
+ s << "(" << x << ", " << y << ", " << z << ")";
return s.str();
};