summaryrefslogtreecommitdiff
path: root/src/main/Vector3D.h
diff options
context:
space:
mode:
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();
};