diff options
author | Armin Le Grand <Armin.Le.Grand@cib.de> | 2017-08-30 20:40:32 +0200 |
---|---|---|
committer | Armin Le Grand <Armin.Le.Grand@cib.de> | 2017-09-15 12:58:03 +0200 |
commit | a9c59cbfb9e16469b389db0b4d6befe196d0e2a0 (patch) | |
tree | a031682ae21ec46bb9c6e1e30b0110213e8e3dac /include/basegfx | |
parent | fe14ddf25003c0f79f9f8a249bc22d45f57a0068 (diff) |
borderline: Preparing further to use CellCoordinateSystem
Multiple cleanups, made svx::frame::Style a std::shared_ptr class,
preparing basing all border stuff on transformations, so it will
need a CellCoordinateSystem. Added stuff to get this Coordinate
System from the svx::frame::Cell using the Frame and knowledge
about ownerships
Change-Id: Ic2cb59cc92e648ac2fef72f22f8913479769d3e2
Diffstat (limited to 'include/basegfx')
-rw-r--r-- | include/basegfx/matrix/b2dhommatrixtools.hxx | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/basegfx/matrix/b2dhommatrixtools.hxx b/include/basegfx/matrix/b2dhommatrixtools.hxx index 5dcd1b47936d..aa3c047a20c5 100644 --- a/include/basegfx/matrix/b2dhommatrixtools.hxx +++ b/include/basegfx/matrix/b2dhommatrixtools.hxx @@ -131,6 +131,15 @@ namespace basegfx const B2DRange& rSourceRange, const B2DRange& rTargetRange); + /// create based on given CoordinateSystem which is defined by origin and x/yaxis + BASEGFX_DLLPUBLIC B2DHomMatrix createCoordinateSystemTransform( + const B2DPoint& rOrigin, + const B2DVector& rX, + const B2DVector& rY); + + /// get column vector from B2dHomMatrix, e.g. to extract coordinate system origin and x/yaxis + BASEGFX_DLLPUBLIC B2DTuple getColumn(const B2DHomMatrix& rMatrix, sal_uInt16 nCol); + } // end of namespace tools } // end of namespace basegfx |