comparison OrthancStone/Sources/Scene2D/TextureBaseSceneLayer.h @ 1777:d9c5474c5588

fix build of Web viewer
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 14 May 2021 07:35:13 +0200
parents fca942f4b4a7
children 6e8105942146
comparison
equal deleted inserted replaced
1776:d3d883c3af65 1777:d9c5474c5588
57 void CopyParameters(const TextureBaseSceneLayer& other); 57 void CopyParameters(const TextureBaseSceneLayer& other);
58 58
59 public: 59 public:
60 TextureBaseSceneLayer(); 60 TextureBaseSceneLayer();
61 61
62 private:
63 /**
64 * TODO - The methods below could be removed, as well as the
65 * corresponding members
66 **/
67
68 // Center of the top-left pixel 62 // Center of the top-left pixel
69 void SetOrigin(double x, 63 void SetOrigin(double x,
70 double y); 64 double y);
71 65
72 void SetPixelSpacing(double sx, 66 void SetPixelSpacing(double sx,
112 bool IsFlipY() const 106 bool IsFlipY() const
113 { 107 {
114 return flipY_; 108 return flipY_;
115 } 109 }
116 110
117 public:
118 bool IsLinearInterpolation() const 111 bool IsLinearInterpolation() const
119 { 112 {
120 return isLinearInterpolation_; 113 return isLinearInterpolation_;
121 } 114 }
122 115