From 73360bdf0b60370c76d9669502c2b0e5a9d4e504 Mon Sep 17 00:00:00 2001 From: Armin Le Grand Date: Fri, 29 Sep 2017 10:42:43 +0200 Subject: 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 --- include/basegfx/matrix/b2dhommatrixtools.hxx | 1 + 1 file changed, 1 insertion(+) (limited to 'include') 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 -- cgit