diff Applications/Samples/SingleFrameEditorApplication.h @ 392:d87fe075d31b

to graveyard
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 09 Nov 2018 17:59:35 +0100
parents d20d75f20c5d
children e7a494bdd956
line wrap: on
line diff
--- a/Applications/Samples/SingleFrameEditorApplication.h	Fri Nov 09 17:41:46 2018 +0100
+++ b/Applications/Samples/SingleFrameEditorApplication.h	Fri Nov 09 17:59:35 2018 +0100
@@ -47,37 +47,6 @@
 
 namespace OrthancStone
 {
-  static Matrix CreateOffsetMatrix(double dx,
-                                   double dy)
-  {
-    Matrix m = LinearAlgebra::IdentityMatrix(3);
-    m(0, 2) = dx;
-    m(1, 2) = dy;
-    return m;
-  }
-      
-
-  static Matrix CreateScalingMatrix(double sx,
-                                    double sy)
-  {
-    Matrix m = LinearAlgebra::IdentityMatrix(3);
-    m(0, 0) = sx;
-    m(1, 1) = sy;
-    return m;
-  }
-      
-
-  static Matrix CreateRotationMatrix(double angle)
-  {
-    Matrix m;
-    const double v[] = { cos(angle), -sin(angle), 0,
-                         sin(angle), cos(angle), 0,
-                         0, 0, 1 };
-    LinearAlgebra::FillMatrix(m, 3, 3, v);
-    return m;
-  }
-      
-
   class BitmapStack :
     public IObserver,
     public IObservable
@@ -835,6 +804,37 @@
     
 
   private:
+    static Matrix CreateOffsetMatrix(double dx,
+                                     double dy)
+    {
+      Matrix m = LinearAlgebra::IdentityMatrix(3);
+      m(0, 2) = dx;
+      m(1, 2) = dy;
+      return m;
+    }
+      
+
+    static Matrix CreateScalingMatrix(double sx,
+                                      double sy)
+    {
+      Matrix m = LinearAlgebra::IdentityMatrix(3);
+      m(0, 0) = sx;
+      m(1, 1) = sy;
+      return m;
+    }
+      
+
+    static Matrix CreateRotationMatrix(double angle)
+    {
+      Matrix m;
+      const double v[] = { cos(angle), -sin(angle), 0,
+                           sin(angle), cos(angle), 0,
+                           0, 0, 1 };
+      LinearAlgebra::FillMatrix(m, 3, 3, v);
+      return m;
+    }
+      
+
     class DicomBitmap : public Bitmap
     {
     private: