diff options
author | Armin Le Grand <Armin.Le.Grand@cib.de> | 2017-09-29 10:42:43 +0200 |
---|---|---|
committer | Armin Le Grand <Armin.Le.Grand@cib.de> | 2017-10-20 14:13:23 +0200 |
commit | 73360bdf0b60370c76d9669502c2b0e5a9d4e504 (patch) | |
tree | adda9c42c3d1e3f74d95f3f0df727073fec77820 /include/basegfx | |
parent | a6fc51cbe40b98674ade29e090f1b45e1f530062 (diff) |
RotGrfFlyFrame: Implemented Handle Update on rotation change
WIth rotaiton being allowed the handle visualisation may be
dependent on this, so it is necessary to refresh their
visualisation on rotation chnage, e.g. for crop handles
Change-Id: I218e326894999381fc4058b7eba432491a0cf23b
Diffstat (limited to 'include/basegfx')
-rw-r--r-- | include/basegfx/matrix/b2dhommatrixtools.hxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/basegfx/matrix/b2dhommatrixtools.hxx b/include/basegfx/matrix/b2dhommatrixtools.hxx index e462bad54b8e..3bc3627dfbf5 100644 --- a/include/basegfx/matrix/b2dhommatrixtools.hxx +++ b/include/basegfx/matrix/b2dhommatrixtools.hxx @@ -229,6 +229,7 @@ namespace basegfx const B2DVector& getScale() const { const_cast< B2DHomMatrixBufferedOnDemandDecompose* >(this)->impCheckDecompose(); return maScale; } const B2DVector& getTranslate() const { const_cast< B2DHomMatrixBufferedOnDemandDecompose* >(this)->impCheckDecompose(); return maTranslate; } double getRotate() const { const_cast< B2DHomMatrixBufferedOnDemandDecompose* >(this)->impCheckDecompose(); return mfRotate; } + double getShearX() const { const_cast< B2DHomMatrixBufferedOnDemandDecompose* >(this)->impCheckDecompose(); return mfShearX; } }; } // end of namespace utils |