Kaydet (Commit) 1d28f428 authored tarafından Miklos Vajna's avatar Miklos Vajna

Remove unused basegfx::unotools::homMatrixFromMatrix

Change-Id: I92afab7cfae885dce76b9ffff0d98b8b9a39d85f
üst 34fa29ed
...@@ -391,20 +391,6 @@ namespace basegfx ...@@ -391,20 +391,6 @@ namespace basegfx
return output; return output;
} }
::basegfx::B2DHomMatrix& homMatrixFromMatrix( ::basegfx::B2DHomMatrix& output,
const geometry::Matrix2D& input )
{
// ensure last row is [0,0,1] (and optimized away)
output.identity();
output.set(0,0, input.m00);
output.set(0,1, input.m01);
output.set(1,0, input.m10);
output.set(1,1, input.m11);
return output;
}
geometry::RealSize2D size2DFromB2DSize( const ::basegfx::B2DVector& rVec ) geometry::RealSize2D size2DFromB2DSize( const ::basegfx::B2DVector& rVec )
{ {
return geometry::RealSize2D( rVec.getX(), return geometry::RealSize2D( rVec.getX(),
......
...@@ -135,10 +135,6 @@ namespace basegfx ...@@ -135,10 +135,6 @@ namespace basegfx
matrixFromHomMatrix( ::com::sun::star::geometry::Matrix2D& matrix, matrixFromHomMatrix( ::com::sun::star::geometry::Matrix2D& matrix,
const ::basegfx::B2DHomMatrix& transform); const ::basegfx::B2DHomMatrix& transform);
BASEGFX_DLLPUBLIC ::basegfx::B2DHomMatrix&
homMatrixFromMatrix( ::basegfx::B2DHomMatrix& transform,
const ::com::sun::star::geometry::Matrix2D& matrix );
// Geometry conversions // Geometry conversions
......
...@@ -186,7 +186,6 @@ apitest::XTextContent::testGetAnchor() ...@@ -186,7 +186,6 @@ apitest::XTextContent::testGetAnchor()
apitest::XTextField::testGetPresentation() apitest::XTextField::testGetPresentation()
basegfx::tools::equal(basegfx::B2DPolygon const&, basegfx::B2DPolygon const&, double const&) basegfx::tools::equal(basegfx::B2DPolygon const&, basegfx::B2DPolygon const&, double const&)
basegfx::tools::equal(basegfx::B3DPolygon const&, basegfx::B3DPolygon const&, double const&) basegfx::tools::equal(basegfx::B3DPolygon const&, basegfx::B3DPolygon const&, double const&)
basegfx::unotools::homMatrixFromMatrix(basegfx::B2DHomMatrix&, com::sun::star::geometry::Matrix2D const&)
canvas::createSurfaceProxyManager(boost::shared_ptr<canvas::IRenderModule> const&) canvas::createSurfaceProxyManager(boost::shared_ptr<canvas::IRenderModule> const&)
chart::opengl3D::Line::Line(unsigned int) chart::opengl3D::Line::Line(unsigned int)
chart::opengl3D::Rectangle::Rectangle(unsigned int) chart::opengl3D::Rectangle::Rectangle(unsigned int)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment