comparison OrthancStone/Sources/Toolbox/AffineTransform2D.h @ 1571:85e117739eca

cppcheck
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 21 Sep 2020 17:46:39 +0200
parents 6d14ed6163b1
children 8563ea5d8ae4
comparison
equal deleted inserted replaced
1570:9a04f42098a3 1571:85e117739eca
35 35
36 public: 36 public:
37 AffineTransform2D(); 37 AffineTransform2D();
38 38
39 // The matrix must be 3x3, without perspective effects 39 // The matrix must be 3x3, without perspective effects
40 AffineTransform2D(const Matrix& m); 40 explicit AffineTransform2D(const Matrix& m);
41 41
42 AffineTransform2D(const AffineTransform2D& other) : 42 AffineTransform2D(const AffineTransform2D& other) :
43 matrix_(other.matrix_) 43 matrix_(other.matrix_)
44 { 44 {
45 } 45 }