Salome HOME
updated copyright message
[modules/gui.git] / src / VTKViewer / VTKViewer_Transform.cxx
old mode 100755 (executable)
new mode 100644 (file)
index 4526d45..9d2afb1
@@ -1,46 +1,48 @@
-//  SALOME FILTER : interactive object for VISU entities implementation
+// Copyright (C) 2007-2023  CEA, EDF, OPEN CASCADE
 //
-//  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
-//  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
-// 
-//  This library is free software; you can redistribute it and/or 
-//  modify it under the terms of the GNU Lesser General Public 
-//  License as published by the Free Software Foundation; either 
-//  version 2.1 of the License. 
-// 
-//  This library is distributed in the hope that it will be useful, 
-//  but WITHOUT ANY WARRANTY; without even the implied warranty of 
-//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
-//  Lesser General Public License for more details. 
-// 
-//  You should have received a copy of the GNU Lesser General Public 
-//  License along with this library; if not, write to the Free Software 
-//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
-// 
-// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+// Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
+// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
+//
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
 //
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+// Lesser General Public License for more details.
 //
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+//
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
+
+//  SALOME FILTER : interactive object for VISU entities implementation
 //  File   : SALOME_Transform.cxx
 //  Author : Laurent CORNABE with help of Nicolas REJNERI
 //  Module : SALOME
-
+//
 
 #include "VTKViewer_Transform.h"
 
 #include <vtkObjectFactory.h>
 #include <vtkMatrix4x4.h>
 
+#include <math.h>
+
 static double EPS = 10e-4;
 
 
-vtkStandardNewMacro(VTKViewer_Transform);
+vtkStandardNewMacro(VTKViewer_Transform)
 
 /*!Sets matrix scale.*/
-void VTKViewer_Transform::SetMatrixScale(double theScaleX, double theScaleY, double theScaleZ){ 
-  double aMatrix[16] = {theScaleX,0,0,0, 
-                        0,theScaleY,0,0, 
-                        0,0,theScaleZ,0, 
+void VTKViewer_Transform::SetMatrixScale(double theScaleX, double theScaleY, double theScaleZ){
+  double aMatrix[16] = {theScaleX,0,0,0,
+                        0,theScaleY,0,0,
+                        0,0,theScaleZ,0,
                         0,0,0,1.0000000};
   this->SetMatrix(aMatrix);
 }
@@ -59,10 +61,10 @@ void VTKViewer_Transform::GetMatrixScale(double theScale[3]){
 /*!Checks: Is matrix identity, where used EPS value.
  *If |aScaleX-1|<EPS && |aScaleY-1|<EPS && |aScaleY-1|<EPS return 1, esle 0.
  */
-int VTKViewer_Transform::IsIdentity(){ 
+int VTKViewer_Transform::IsIdentity(){
   double aScale[3];
   this->GetMatrixScale(aScale);
-  return (fabs(aScale[0] - 1.0) < EPS && 
-         fabs(aScale[1] - 1.0) < EPS && 
-         fabs(aScale[2] - 1.0) < EPS);
+  return (fabs(aScale[0] - 1.0) < EPS &&
+          fabs(aScale[1] - 1.0) < EPS &&
+          fabs(aScale[2] - 1.0) < EPS);
 }