cid#1636693 COPY_INSTEAD_OF_MOVE
[LibreOffice.git] / include / basegfx / matrix / b2dhommatrixtools.hxx
blob9b81f33d2a444f6fd56ca1faf174722e72813429
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #pragma once
22 #include <sal/types.h>
23 #include <basegfx/matrix/b2dhommatrix.hxx>
24 #include <basegfx/vector/b2dvector.hxx>
25 #include <basegfx/point/b2dpoint.hxx>
26 #include <basegfx/tuple/b2dtuple.hxx>
27 #include <utility>
28 #include <basegfx/basegfxdllapi.h>
30 namespace basegfx { class B2DRange; }
32 namespace basegfx::utils
34 /** If the rotation angle is an approximate multiple of pi/2,
35 force fSin/fCos to -1/0/1, to maintain orthogonality (which
36 might also be advantageous for the other cases, but: for
37 multiples of pi/2, the exact values _can_ be attained. It
38 would be largely unintuitive, if a 180 degrees rotation
39 would introduce slight roundoff errors, instead of exactly
40 mirroring the coordinate system)
42 void createSinCosOrthogonal(double& o_rSin, double& rCos, double fRadiant);
44 /** Tooling methods for on-the-fly matrix generation e.g. for inline
45 multiplications
47 BASEGFX_DLLPUBLIC B2DHomMatrix createScaleB2DHomMatrix(double fScaleX, double fScaleY);
48 BASEGFX_DLLPUBLIC B2DHomMatrix createShearXB2DHomMatrix(double fShearX);
49 BASEGFX_DLLPUBLIC B2DHomMatrix createShearYB2DHomMatrix(double fShearY);
50 BASEGFX_DLLPUBLIC B2DHomMatrix createRotateB2DHomMatrix(double fRadiant);
51 BASEGFX_DLLPUBLIC B2DHomMatrix createTranslateB2DHomMatrix(double fTranslateX, double fTranslateY);
53 /// inline versions for parameters as tuples
54 inline B2DHomMatrix createScaleB2DHomMatrix(const B2DTuple& rScale)
56 return createScaleB2DHomMatrix(rScale.getX(), rScale.getY());
59 inline B2DHomMatrix createTranslateB2DHomMatrix(const B2DTuple& rTranslate)
61 return createTranslateB2DHomMatrix(rTranslate.getX(), rTranslate.getY());
64 /** Tooling methods for faster completely combined matrix creation
65 when scale, shearX, rotation and translation needs to be done in
66 exactly that order. It's faster since it directly calculates
67 each matrix value based on a symbolic calculation of the three
68 matrix multiplications.
69 Inline versions for parameters as tuples added, too.
71 BASEGFX_DLLPUBLIC B2DHomMatrix createScaleShearXRotateTranslateB2DHomMatrix(
72 double fScaleX, double fScaleY,
73 double fShearX,
74 double fRadiant,
75 double fTranslateX, double fTranslateY);
76 inline B2DHomMatrix createScaleShearXRotateTranslateB2DHomMatrix(
77 const B2DTuple& rScale,
78 double fShearX,
79 double fRadiant,
80 const B2DTuple& rTranslate)
82 return createScaleShearXRotateTranslateB2DHomMatrix(
83 rScale.getX(), rScale.getY(),
84 fShearX,
85 fRadiant,
86 rTranslate.getX(), rTranslate.getY());
89 BASEGFX_DLLPUBLIC B2DHomMatrix createShearXRotateTranslateB2DHomMatrix(
90 double fShearX,
91 double fRadiant,
92 double fTranslateX, double fTranslateY);
93 inline B2DHomMatrix createShearXRotateTranslateB2DHomMatrix(
94 double fShearX,
95 double fRadiant,
96 const B2DTuple& rTranslate)
98 return createShearXRotateTranslateB2DHomMatrix(
99 fShearX,
100 fRadiant,
101 rTranslate.getX(), rTranslate.getY());
104 BASEGFX_DLLPUBLIC B2DHomMatrix createScaleTranslateB2DHomMatrix(
105 double fScaleX, double fScaleY,
106 double fTranslateX, double fTranslateY);
107 inline B2DHomMatrix createScaleTranslateB2DHomMatrix(
108 const B2DTuple& rScale,
109 const B2DTuple& rTranslate)
111 return createScaleTranslateB2DHomMatrix(
112 rScale.getX(), rScale.getY(),
113 rTranslate.getX(), rTranslate.getY());
116 /// special for the often used case of rotation around a point
117 BASEGFX_DLLPUBLIC B2DHomMatrix createRotateAroundPoint(
118 double fPointX, double fPointY,
119 double fRadiant);
120 inline B2DHomMatrix createRotateAroundPoint(
121 const B2DTuple& rPoint,
122 double fRadiant)
124 return createRotateAroundPoint(
125 rPoint.getX(), rPoint.getY(),
126 fRadiant);
129 /// special for creating a mapping for a Range rotated around it's center
130 /// while keeping AspectRatio unchanged and staying inside the given Range
131 /// by optimally using the available space (no overlap or outside allowed)
132 B2DHomMatrix createRotateAroundCenterKeepAspectRatioStayInsideRange(
133 const basegfx::B2DRange& rTargetRange,
134 double fRotate);
136 /// special for the case to map from source range to target range
137 BASEGFX_DLLPUBLIC B2DHomMatrix createSourceRangeTargetRangeTransform(
138 const B2DRange& rSourceRange,
139 const B2DRange& rTargetRange);
141 /// create based on given CoordinateSystem which is defined by origin and x/yaxis
142 BASEGFX_DLLPUBLIC B2DHomMatrix createCoordinateSystemTransform(
143 const B2DPoint& rOrigin,
144 const B2DVector& rX,
145 const B2DVector& rY);
147 /// get column vector from B2dHomMatrix, e.g. to extract coordinate system origin and x/yaxis
148 BASEGFX_DLLPUBLIC B2DTuple getColumn(const B2DHomMatrix& rMatrix, sal_uInt16 nCol);
151 class BASEGFX_DLLPUBLIC B2DHomMatrixBufferedDecompose
153 private:
154 B2DVector maScale;
155 B2DVector maTranslate;
156 double mfRotate;
157 double mfShearX;
159 public:
160 B2DHomMatrixBufferedDecompose(const B2DHomMatrix& rB2DHomMatrix = B2DHomMatrix())
161 : mfRotate(0.0),
162 mfShearX(0.0)
164 rB2DHomMatrix.decompose(maScale, maTranslate, mfRotate, mfShearX);
167 // data access
168 B2DHomMatrix getB2DHomMatrix() const
170 return createScaleShearXRotateTranslateB2DHomMatrix(
171 maScale, mfShearX, mfRotate, maTranslate);
174 const B2DVector& getScale() const { return maScale; }
175 const B2DVector& getTranslate() const { return maTranslate; }
176 double getRotate() const { return mfRotate; }
177 double getShearX() const { return mfShearX; }
180 class BASEGFX_DLLPUBLIC B2DHomMatrixBufferedOnDemandDecompose
182 private:
183 B2DHomMatrix maB2DHomMatrix;
184 B2DVector maScale;
185 B2DVector maTranslate;
186 double mfRotate;
187 double mfShearX;
189 bool mbDecomposed : 1;
191 void impCheckDecompose()
193 if(!mbDecomposed)
195 maB2DHomMatrix.decompose(maScale, maTranslate, mfRotate, mfShearX);
196 mbDecomposed = true;
200 public:
201 B2DHomMatrixBufferedOnDemandDecompose(B2DHomMatrix aB2DHomMatrix = B2DHomMatrix())
202 : maB2DHomMatrix(std::move(aB2DHomMatrix)),
203 mfRotate(0.0),
204 mfShearX(0.0),
205 mbDecomposed(false)
209 // data access
210 const B2DHomMatrix& getB2DHomMatrix() const { return maB2DHomMatrix; }
211 const B2DVector& getScale() const { const_cast< B2DHomMatrixBufferedOnDemandDecompose* >(this)->impCheckDecompose(); return maScale; }
212 const B2DVector& getTranslate() const { const_cast< B2DHomMatrixBufferedOnDemandDecompose* >(this)->impCheckDecompose(); return maTranslate; }
213 double getRotate() const { const_cast< B2DHomMatrixBufferedOnDemandDecompose* >(this)->impCheckDecompose(); return mfRotate; }
214 double getShearX() const { const_cast< B2DHomMatrixBufferedOnDemandDecompose* >(this)->impCheckDecompose(); return mfShearX; }
216 } // end of namespace basegfx::utils
218 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */