From 49137e86d06e12b020b6a4d248cc9db376b3f969 Mon Sep 17 00:00:00 2001 From: marco <marco@5a81b35b-ba03-0410-adc8-b2c5c5119f08> Date: Thu, 29 Jul 2010 12:11:24 +0000 Subject: [PATCH] fix printing of Vec3 git-svn-id: https://dng.biozentrum.unibas.ch/svn/openstructure/trunk@2607 5a81b35b-ba03-0410-adc8-b2c5c5119f08 --- modules/geom/src/vec3.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/geom/src/vec3.hh b/modules/geom/src/vec3.hh index 5283146a1..7c0d92046 100644 --- a/modules/geom/src/vec3.hh +++ b/modules/geom/src/vec3.hh @@ -185,7 +185,7 @@ inline Vec3 operator/(Real d, const Vec3& v) inline std::ostream& operator<<(std::ostream& os, const Vec3& v) { - os << "[" << v.x << ", " << v.y << "]"; + os << "[" << v.x << ", " << v.y << ", " << v.z << "]"; return os; } } -- GitLab