From 9b2e0fdfe26e8c64fed4a84a83450481337bb9e9 Mon Sep 17 00:00:00 2001 From: jpr Date: Tue, 13 Sep 2005 18:32:54 +0000 Subject: [PATCH] Fix misstyping. (still not works properly :-( ) Thx to Luca Picello for reporting it. --- src/gdcmOrientation.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/gdcmOrientation.cxx b/src/gdcmOrientation.cxx index cdac91f8..042c62fd 100644 --- a/src/gdcmOrientation.cxx +++ b/src/gdcmOrientation.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmOrientation.cxx,v $ Language: C++ - Date: $Date: 2005/09/05 08:25:01 $ - Version: $Revision: 1.5 $ + Date: $Date: 2005/09/13 18:32:54 $ + Version: $Revision: 1.6 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -65,7 +65,7 @@ double Orientation::TypeOrientation( File *f ) vector3D ori2; ori1.x = iop[0]; ori1.y = iop[1]; ori1.z = iop[2]; - ori1.x = iop[3]; ori2.y = iop[4]; ori2.z = iop[5]; + ori2.x = iop[3]; ori2.y = iop[4]; ori2.z = iop[5]; // two perpendicular vectors describe one plane double dicPlane[6][2][3] = -- 2.45.1