Salome HOME
updated copyright message
[modules/gui.git] / src / VTKViewer / VTKViewer_Transform.cxx
index 23f7187b6fc97371b4424252f142611026bd5704..9d2afb14fd331bc2bbd9639d2cb663018fac4bc6 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2007-2022  CEA/DEN, EDF R&D, OPEN CASCADE
+// Copyright (C) 2007-2023  CEA, EDF, OPEN CASCADE
 //
 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
 //  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)
 
 /*!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);
 }
@@ -58,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 && 
+  return (fabs(aScale[0] - 1.0) < EPS &&
+          fabs(aScale[1] - 1.0) < EPS &&
           fabs(aScale[2] - 1.0) < EPS);
 }