comparison OrthancStone/Sources/Toolbox/AffineTransform2D.h @ 1554:6d14ed6163b1

flip x/y in Stone Web viewer
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 17 Aug 2020 16:10:00 +0200
parents 244ad1e4e76a
children 85e117739eca
comparison
equal deleted inserted replaced
1553:bf02a90ca9ca 1554:6d14ed6163b1
97 double cx, // rotation center 97 double cx, // rotation center
98 double cy); // rotation center 98 double cy); // rotation center
99 99
100 static AffineTransform2D CreateOpenGLClipspace(unsigned int canvasWidth, 100 static AffineTransform2D CreateOpenGLClipspace(unsigned int canvasWidth,
101 unsigned int canvasHeight); 101 unsigned int canvasHeight);
102
103 static AffineTransform2D CreateFlip(bool flipX,
104 bool flipY,
105 unsigned int width,
106 unsigned int height);
102 }; 107 };
103 } 108 }