2003-10-28 10:26:57 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2005-09-07 19:42:20 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2003-10-28 10:26:57 +00:00
|
|
|
*
|
2005-09-07 19:42:20 +00:00
|
|
|
* $RCSfile: b2dhommatrix.cxx,v $
|
2003-10-28 10:26:57 +00:00
|
|
|
*
|
2007-11-13 13:17:35 +00:00
|
|
|
* $Revision: 1.18 $
|
2003-10-28 10:26:57 +00:00
|
|
|
*
|
2007-11-13 13:17:35 +00:00
|
|
|
* last change: $Author: rt $ $Date: 2007-11-13 14:17:35 $
|
2003-10-28 10:26:57 +00:00
|
|
|
*
|
2005-09-07 19:42:20 +00:00
|
|
|
* The Contents of this file are made available subject to
|
|
|
|
* the terms of GNU Lesser General Public License Version 2.1.
|
2003-10-28 10:26:57 +00:00
|
|
|
*
|
|
|
|
*
|
2005-09-07 19:42:20 +00:00
|
|
|
* GNU Lesser General Public License Version 2.1
|
|
|
|
* =============================================
|
|
|
|
* Copyright 2005 by Sun Microsystems, Inc.
|
|
|
|
* 901 San Antonio Road, Palo Alto, CA 94303, USA
|
2003-10-28 10:26:57 +00:00
|
|
|
*
|
2005-09-07 19:42:20 +00:00
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License version 2.1, as published by the Free Software Foundation.
|
2003-10-28 10:26:57 +00:00
|
|
|
*
|
2005-09-07 19:42:20 +00:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2003-10-28 10:26:57 +00:00
|
|
|
*
|
2005-09-07 19:42:20 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
|
|
* MA 02111-1307 USA
|
2003-10-28 10:26:57 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
2006-09-17 06:58:56 +00:00
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
|
|
#include "precompiled_basegfx.hxx"
|
|
|
|
|
2005-05-06 08:18:34 +00:00
|
|
|
#ifndef _OSL_DIAGNOSE_H_
|
|
|
|
#include <osl/diagnose.h>
|
|
|
|
#endif
|
|
|
|
|
2006-07-13 08:56:31 +00:00
|
|
|
#ifndef INCLUDED_RTL_INSTANCE_HXX
|
|
|
|
#include <rtl/instance.hxx>
|
|
|
|
#endif
|
|
|
|
|
2003-10-28 10:26:57 +00:00
|
|
|
#ifndef _BGFX_MATRIX_B2DHOMMATRIX_HXX
|
2003-10-31 09:14:00 +00:00
|
|
|
#include <basegfx/matrix/b2dhommatrix.hxx>
|
2003-10-28 10:26:57 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef _HOMMATRIX_TEMPLATE_HXX
|
|
|
|
#include <hommatrixtemplate.hxx>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef _BGFX_MATRIX_B3DHOMMATRIX_HXX
|
2003-10-31 09:14:00 +00:00
|
|
|
#include <basegfx/matrix/b3dhommatrix.hxx>
|
2003-10-28 10:26:57 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef _BGFX_TUPLE_B3DTUPLE_HXX
|
2003-10-31 09:14:00 +00:00
|
|
|
#include <basegfx/tuple/b3dtuple.hxx>
|
2003-10-28 10:26:57 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef _BGFX_TUPLE_B2DTUPLE_HXX
|
2003-10-31 09:14:00 +00:00
|
|
|
#include <basegfx/tuple/b2dtuple.hxx>
|
2003-10-28 10:26:57 +00:00
|
|
|
#endif
|
|
|
|
|
2005-11-02 12:56:26 +00:00
|
|
|
#ifndef _BGFX_VECTOR_B2DVECTOR_HXX
|
|
|
|
#include <basegfx/vector/b2dvector.hxx>
|
|
|
|
#endif
|
|
|
|
|
2003-10-28 10:26:57 +00:00
|
|
|
namespace basegfx
|
|
|
|
{
|
2003-11-28 10:18:16 +00:00
|
|
|
class Impl2DHomMatrix : public ::basegfx::internal::ImplHomMatrixTemplate< 3 >
|
2003-10-28 10:26:57 +00:00
|
|
|
{
|
2003-11-28 10:18:16 +00:00
|
|
|
};
|
2003-11-10 14:10:57 +00:00
|
|
|
|
2006-07-13 08:56:31 +00:00
|
|
|
namespace { struct IdentityMatrix : public rtl::Static< B2DHomMatrix::ImplType,
|
|
|
|
IdentityMatrix > {}; }
|
2003-11-10 14:10:57 +00:00
|
|
|
|
2006-07-13 08:56:31 +00:00
|
|
|
B2DHomMatrix::B2DHomMatrix() :
|
|
|
|
mpImpl( IdentityMatrix::get() ) // use common identity matrix
|
2003-11-28 10:18:16 +00:00
|
|
|
{
|
|
|
|
}
|
2003-10-28 10:26:57 +00:00
|
|
|
|
2006-07-13 08:56:31 +00:00
|
|
|
B2DHomMatrix::B2DHomMatrix(const B2DHomMatrix& rMat) :
|
|
|
|
mpImpl(rMat.mpImpl)
|
2003-11-28 10:18:16 +00:00
|
|
|
{
|
|
|
|
}
|
2003-10-28 10:26:57 +00:00
|
|
|
|
2003-11-28 10:18:16 +00:00
|
|
|
B2DHomMatrix::~B2DHomMatrix()
|
|
|
|
{
|
|
|
|
}
|
2003-10-28 10:26:57 +00:00
|
|
|
|
2003-11-28 10:18:16 +00:00
|
|
|
B2DHomMatrix& B2DHomMatrix::operator=(const B2DHomMatrix& rMat)
|
|
|
|
{
|
2006-07-13 08:56:31 +00:00
|
|
|
mpImpl = rMat.mpImpl;
|
2003-11-28 10:18:16 +00:00
|
|
|
return *this;
|
|
|
|
}
|
2003-10-28 10:26:57 +00:00
|
|
|
|
2006-07-13 08:56:31 +00:00
|
|
|
void B2DHomMatrix::makeUnique()
|
|
|
|
{
|
|
|
|
mpImpl.make_unique();
|
|
|
|
}
|
|
|
|
|
2003-11-28 10:18:16 +00:00
|
|
|
double B2DHomMatrix::get(sal_uInt16 nRow, sal_uInt16 nColumn) const
|
|
|
|
{
|
2006-07-13 08:56:31 +00:00
|
|
|
return mpImpl->get(nRow, nColumn);
|
2003-11-28 10:18:16 +00:00
|
|
|
}
|
2003-10-28 10:26:57 +00:00
|
|
|
|
2003-11-28 10:18:16 +00:00
|
|
|
void B2DHomMatrix::set(sal_uInt16 nRow, sal_uInt16 nColumn, double fValue)
|
|
|
|
{
|
2006-07-13 08:56:31 +00:00
|
|
|
mpImpl->set(nRow, nColumn, fValue);
|
2003-11-28 10:18:16 +00:00
|
|
|
}
|
2003-10-28 10:26:57 +00:00
|
|
|
|
2005-11-02 12:56:26 +00:00
|
|
|
bool B2DHomMatrix::isLastLineDefault() const
|
|
|
|
{
|
2006-07-13 08:56:31 +00:00
|
|
|
return mpImpl->isLastLineDefault();
|
2005-11-02 12:56:26 +00:00
|
|
|
}
|
|
|
|
|
2004-01-16 09:34:43 +00:00
|
|
|
bool B2DHomMatrix::isIdentity() const
|
2003-11-28 10:18:16 +00:00
|
|
|
{
|
2006-07-13 08:56:31 +00:00
|
|
|
if(mpImpl.same_object(IdentityMatrix::get()))
|
2004-01-16 09:34:43 +00:00
|
|
|
return true;
|
2003-10-28 10:26:57 +00:00
|
|
|
|
2006-07-13 08:56:31 +00:00
|
|
|
return mpImpl->isIdentity();
|
2003-11-28 10:18:16 +00:00
|
|
|
}
|
2003-10-28 10:26:57 +00:00
|
|
|
|
2003-11-28 10:18:16 +00:00
|
|
|
void B2DHomMatrix::identity()
|
|
|
|
{
|
2006-07-13 08:56:31 +00:00
|
|
|
mpImpl = IdentityMatrix::get();
|
2003-11-28 10:18:16 +00:00
|
|
|
}
|
|
|
|
|
2004-01-16 09:34:43 +00:00
|
|
|
bool B2DHomMatrix::isInvertible() const
|
2003-11-28 10:18:16 +00:00
|
|
|
{
|
2006-07-13 08:56:31 +00:00
|
|
|
return mpImpl->isInvertible();
|
2003-11-28 10:18:16 +00:00
|
|
|
}
|
|
|
|
|
2004-01-16 09:34:43 +00:00
|
|
|
bool B2DHomMatrix::invert()
|
2003-11-28 10:18:16 +00:00
|
|
|
{
|
2006-07-13 08:56:31 +00:00
|
|
|
Impl2DHomMatrix aWork(*mpImpl);
|
|
|
|
sal_uInt16* pIndex = new sal_uInt16[mpImpl->getEdgeLength()];
|
2003-11-28 10:18:16 +00:00
|
|
|
sal_Int16 nParity;
|
|
|
|
|
|
|
|
if(aWork.ludcmp(pIndex, nParity))
|
2003-10-28 10:26:57 +00:00
|
|
|
{
|
2006-07-13 08:56:31 +00:00
|
|
|
mpImpl->doInvert(aWork, pIndex);
|
2004-11-26 17:37:48 +00:00
|
|
|
delete[] pIndex;
|
2003-10-28 10:26:57 +00:00
|
|
|
|
2004-01-16 09:34:43 +00:00
|
|
|
return true;
|
2003-10-28 10:26:57 +00:00
|
|
|
}
|
|
|
|
|
2004-11-26 17:37:48 +00:00
|
|
|
delete[] pIndex;
|
2004-01-16 09:34:43 +00:00
|
|
|
return false;
|
2003-11-28 10:18:16 +00:00
|
|
|
}
|
|
|
|
|
2004-01-16 09:34:43 +00:00
|
|
|
bool B2DHomMatrix::isNormalized() const
|
2003-11-28 10:18:16 +00:00
|
|
|
{
|
2006-07-13 08:56:31 +00:00
|
|
|
return mpImpl->isNormalized();
|
2003-11-28 10:18:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void B2DHomMatrix::normalize()
|
|
|
|
{
|
2006-07-13 08:56:31 +00:00
|
|
|
if(!const_cast<const B2DHomMatrix*>(this)->mpImpl->isNormalized())
|
|
|
|
mpImpl->doNormalize();
|
2003-11-28 10:18:16 +00:00
|
|
|
}
|
2003-10-28 10:26:57 +00:00
|
|
|
|
2003-11-28 10:18:16 +00:00
|
|
|
double B2DHomMatrix::determinant() const
|
|
|
|
{
|
2006-07-13 08:56:31 +00:00
|
|
|
return mpImpl->doDeterminant();
|
2003-11-28 10:18:16 +00:00
|
|
|
}
|
2003-10-28 10:26:57 +00:00
|
|
|
|
2003-11-28 10:18:16 +00:00
|
|
|
double B2DHomMatrix::trace() const
|
|
|
|
{
|
2006-07-13 08:56:31 +00:00
|
|
|
return mpImpl->doTrace();
|
2003-11-28 10:18:16 +00:00
|
|
|
}
|
2003-10-28 10:26:57 +00:00
|
|
|
|
2003-11-28 10:18:16 +00:00
|
|
|
void B2DHomMatrix::transpose()
|
|
|
|
{
|
2006-07-13 08:56:31 +00:00
|
|
|
mpImpl->doTranspose();
|
2003-11-28 10:18:16 +00:00
|
|
|
}
|
2003-10-28 10:26:57 +00:00
|
|
|
|
2003-11-28 10:18:16 +00:00
|
|
|
B2DHomMatrix& B2DHomMatrix::operator+=(const B2DHomMatrix& rMat)
|
|
|
|
{
|
2006-07-13 08:56:31 +00:00
|
|
|
mpImpl->doAddMatrix(*rMat.mpImpl);
|
2003-11-28 10:18:16 +00:00
|
|
|
return *this;
|
|
|
|
}
|
2003-10-28 10:26:57 +00:00
|
|
|
|
2003-11-28 10:18:16 +00:00
|
|
|
B2DHomMatrix& B2DHomMatrix::operator-=(const B2DHomMatrix& rMat)
|
|
|
|
{
|
2006-07-13 08:56:31 +00:00
|
|
|
mpImpl->doSubMatrix(*rMat.mpImpl);
|
2003-11-28 10:18:16 +00:00
|
|
|
return *this;
|
|
|
|
}
|
2003-10-28 10:26:57 +00:00
|
|
|
|
2003-11-28 10:18:16 +00:00
|
|
|
B2DHomMatrix& B2DHomMatrix::operator*=(double fValue)
|
|
|
|
{
|
|
|
|
const double fOne(1.0);
|
2003-10-28 10:26:57 +00:00
|
|
|
|
2006-07-13 08:56:31 +00:00
|
|
|
if(!fTools::equal(fOne, fValue))
|
|
|
|
mpImpl->doMulMatrix(fValue);
|
2003-10-28 10:26:57 +00:00
|
|
|
|
2003-11-28 10:18:16 +00:00
|
|
|
return *this;
|
|
|
|
}
|
2003-10-28 10:26:57 +00:00
|
|
|
|
2003-11-28 10:18:16 +00:00
|
|
|
B2DHomMatrix& B2DHomMatrix::operator/=(double fValue)
|
|
|
|
{
|
|
|
|
const double fOne(1.0);
|
2003-10-28 10:26:57 +00:00
|
|
|
|
2006-07-13 08:56:31 +00:00
|
|
|
if(!fTools::equal(fOne, fValue))
|
|
|
|
mpImpl->doMulMatrix(1.0 / fValue);
|
2003-10-28 10:26:57 +00:00
|
|
|
|
2003-11-28 10:18:16 +00:00
|
|
|
return *this;
|
|
|
|
}
|
2003-10-28 10:26:57 +00:00
|
|
|
|
2003-11-28 10:18:16 +00:00
|
|
|
B2DHomMatrix& B2DHomMatrix::operator*=(const B2DHomMatrix& rMat)
|
|
|
|
{
|
|
|
|
if(!rMat.isIdentity())
|
2006-07-13 08:56:31 +00:00
|
|
|
mpImpl->doMulMatrix(*rMat.mpImpl);
|
2003-10-28 10:26:57 +00:00
|
|
|
|
2003-11-28 10:18:16 +00:00
|
|
|
return *this;
|
|
|
|
}
|
2003-10-28 10:26:57 +00:00
|
|
|
|
2004-01-16 09:34:43 +00:00
|
|
|
bool B2DHomMatrix::operator==(const B2DHomMatrix& rMat) const
|
2003-11-28 10:18:16 +00:00
|
|
|
{
|
2006-07-13 08:56:31 +00:00
|
|
|
if(mpImpl.same_object(rMat.mpImpl))
|
2004-01-16 09:34:43 +00:00
|
|
|
return true;
|
2003-10-28 10:26:57 +00:00
|
|
|
|
2006-07-13 08:56:31 +00:00
|
|
|
return mpImpl->isEqual(*rMat.mpImpl);
|
2003-11-28 10:18:16 +00:00
|
|
|
}
|
2003-10-28 10:26:57 +00:00
|
|
|
|
2004-01-16 09:34:43 +00:00
|
|
|
bool B2DHomMatrix::operator!=(const B2DHomMatrix& rMat) const
|
2003-11-28 10:18:16 +00:00
|
|
|
{
|
2006-07-13 08:56:31 +00:00
|
|
|
return !(*this == rMat);
|
2003-11-28 10:18:16 +00:00
|
|
|
}
|
2003-10-28 10:26:57 +00:00
|
|
|
|
2003-11-28 10:18:16 +00:00
|
|
|
void B2DHomMatrix::rotate(double fRadiant)
|
|
|
|
{
|
2006-07-13 08:56:31 +00:00
|
|
|
if(!fTools::equalZero(fRadiant))
|
2003-10-28 10:26:57 +00:00
|
|
|
{
|
2007-11-13 13:17:35 +00:00
|
|
|
double fSin(0.0);
|
|
|
|
double fCos(0.0);
|
2005-05-06 08:18:34 +00:00
|
|
|
|
|
|
|
// is the rotation angle an approximate multiple of pi/2?
|
|
|
|
// If yes, force fSin/fCos to -1/0/1, to maintain
|
|
|
|
// orthogonality (which might also be advantageous for the
|
|
|
|
// other cases, but: for multiples of pi/2, the exact
|
|
|
|
// values _can_ be attained. It would be largely
|
|
|
|
// unintuitive, if a 180 degrees rotation would introduce
|
|
|
|
// slight roundoff errors, instead of exactly mirroring
|
|
|
|
// the coordinate system).
|
|
|
|
if( fTools::equalZero( fmod( fRadiant, F_PI2 ) ) )
|
|
|
|
{
|
|
|
|
// determine quadrant
|
|
|
|
const sal_Int32 nQuad(
|
|
|
|
(4 + fround( 4/F_2PI*fmod( fRadiant, F_2PI ) )) % 4 );
|
|
|
|
switch( nQuad )
|
|
|
|
{
|
|
|
|
case 0: // -2pi,0,2pi
|
|
|
|
fSin = 0.0;
|
|
|
|
fCos = 1.0;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 1: // -3/2pi,1/2pi
|
|
|
|
fSin = 1.0;
|
|
|
|
fCos = 0.0;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 2: // -pi,pi
|
|
|
|
fSin = 0.0;
|
|
|
|
fCos = -1.0;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 3: // -1/2pi,3/2pi
|
|
|
|
fSin = -1.0;
|
|
|
|
fCos = 0.0;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
OSL_ENSURE( false,
|
|
|
|
"B2DHomMatrix::rotate(): Impossible case reached" );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2005-11-02 12:56:26 +00:00
|
|
|
// TODO(P1): Maybe use glibc's sincos here (though
|
|
|
|
// that's kinda non-portable...)
|
2005-05-06 08:18:34 +00:00
|
|
|
fSin = sin(fRadiant);
|
|
|
|
fCos = cos(fRadiant);
|
|
|
|
}
|
|
|
|
|
2006-07-13 08:56:31 +00:00
|
|
|
Impl2DHomMatrix aRotMat;
|
2003-10-28 10:26:57 +00:00
|
|
|
|
2003-11-28 10:18:16 +00:00
|
|
|
aRotMat.set(0, 0, fCos);
|
|
|
|
aRotMat.set(1, 1, fCos);
|
|
|
|
aRotMat.set(1, 0, fSin);
|
|
|
|
aRotMat.set(0, 1, -fSin);
|
2003-10-28 10:26:57 +00:00
|
|
|
|
2006-07-13 08:56:31 +00:00
|
|
|
mpImpl->doMulMatrix(aRotMat);
|
2003-10-28 10:26:57 +00:00
|
|
|
}
|
2003-11-28 10:18:16 +00:00
|
|
|
}
|
2003-10-28 10:26:57 +00:00
|
|
|
|
2003-11-28 10:18:16 +00:00
|
|
|
void B2DHomMatrix::translate(double fX, double fY)
|
|
|
|
{
|
2006-07-13 08:56:31 +00:00
|
|
|
if(!fTools::equalZero(fX) || !fTools::equalZero(fY))
|
2003-10-28 10:26:57 +00:00
|
|
|
{
|
2006-07-13 08:56:31 +00:00
|
|
|
Impl2DHomMatrix aTransMat;
|
2003-10-28 10:26:57 +00:00
|
|
|
|
2003-11-28 10:18:16 +00:00
|
|
|
aTransMat.set(0, 2, fX);
|
|
|
|
aTransMat.set(1, 2, fY);
|
2003-10-28 10:26:57 +00:00
|
|
|
|
2006-07-13 08:56:31 +00:00
|
|
|
mpImpl->doMulMatrix(aTransMat);
|
2003-10-28 10:26:57 +00:00
|
|
|
}
|
2003-11-28 10:18:16 +00:00
|
|
|
}
|
2003-10-28 10:26:57 +00:00
|
|
|
|
2003-11-28 10:18:16 +00:00
|
|
|
void B2DHomMatrix::scale(double fX, double fY)
|
|
|
|
{
|
|
|
|
const double fOne(1.0);
|
2003-10-28 10:26:57 +00:00
|
|
|
|
2006-07-13 08:56:31 +00:00
|
|
|
if(!fTools::equal(fOne, fX) || !fTools::equal(fOne, fY))
|
2003-11-28 10:18:16 +00:00
|
|
|
{
|
2006-07-13 08:56:31 +00:00
|
|
|
Impl2DHomMatrix aScaleMat;
|
2003-10-28 10:26:57 +00:00
|
|
|
|
2003-11-28 10:18:16 +00:00
|
|
|
aScaleMat.set(0, 0, fX);
|
|
|
|
aScaleMat.set(1, 1, fY);
|
2003-10-28 10:26:57 +00:00
|
|
|
|
2006-07-13 08:56:31 +00:00
|
|
|
mpImpl->doMulMatrix(aScaleMat);
|
2003-10-28 10:26:57 +00:00
|
|
|
}
|
2003-11-28 10:18:16 +00:00
|
|
|
}
|
2003-10-28 10:26:57 +00:00
|
|
|
|
2003-11-28 10:18:16 +00:00
|
|
|
void B2DHomMatrix::shearX(double fSx)
|
|
|
|
{
|
2007-05-09 12:21:53 +00:00
|
|
|
// #i76239# do not test againt 1.0, but against 0.0. We are talking about a value not on the diagonal (!)
|
|
|
|
if(!fTools::equalZero(fSx))
|
2003-11-28 10:18:16 +00:00
|
|
|
{
|
2006-07-13 08:56:31 +00:00
|
|
|
Impl2DHomMatrix aShearXMat;
|
2003-10-28 10:26:57 +00:00
|
|
|
|
2003-11-28 10:18:16 +00:00
|
|
|
aShearXMat.set(0, 1, fSx);
|
2003-10-28 10:26:57 +00:00
|
|
|
|
2006-07-13 08:56:31 +00:00
|
|
|
mpImpl->doMulMatrix(aShearXMat);
|
2003-10-28 10:26:57 +00:00
|
|
|
}
|
2003-11-28 10:18:16 +00:00
|
|
|
}
|
2003-10-28 10:26:57 +00:00
|
|
|
|
2003-11-28 10:18:16 +00:00
|
|
|
void B2DHomMatrix::shearY(double fSy)
|
|
|
|
{
|
2007-05-09 12:21:53 +00:00
|
|
|
// #i76239# do not test againt 1.0, but against 0.0. We are talking about a value not on the diagonal (!)
|
|
|
|
if(!fTools::equalZero(fSy))
|
2003-11-28 10:18:16 +00:00
|
|
|
{
|
2006-07-13 08:56:31 +00:00
|
|
|
Impl2DHomMatrix aShearYMat;
|
2003-10-28 10:26:57 +00:00
|
|
|
|
2003-11-28 10:18:16 +00:00
|
|
|
aShearYMat.set(1, 0, fSy);
|
2003-10-28 10:26:57 +00:00
|
|
|
|
2006-07-13 08:56:31 +00:00
|
|
|
mpImpl->doMulMatrix(aShearYMat);
|
2003-10-28 10:26:57 +00:00
|
|
|
}
|
2003-11-28 10:18:16 +00:00
|
|
|
}
|
2003-10-28 10:26:57 +00:00
|
|
|
|
2003-11-28 10:18:16 +00:00
|
|
|
// Decomposition
|
2004-01-16 09:34:43 +00:00
|
|
|
bool B2DHomMatrix::decompose(B2DTuple& rScale, B2DTuple& rTranslate, double& rRotate, double& rShearX) const
|
2003-11-28 10:18:16 +00:00
|
|
|
{
|
|
|
|
// when perspective is used, decompose is not made here
|
2006-07-13 08:56:31 +00:00
|
|
|
if(!mpImpl->isLastLineDefault())
|
2004-01-16 09:34:43 +00:00
|
|
|
return false;
|
2003-10-28 10:26:57 +00:00
|
|
|
|
2005-11-02 12:56:26 +00:00
|
|
|
// test for rotation and shear
|
2007-01-22 10:47:20 +00:00
|
|
|
if(fTools::equalZero(get(0, 1))
|
2007-02-05 11:50:26 +00:00
|
|
|
&& fTools::equalZero(get(1, 0)))
|
2005-11-02 12:56:26 +00:00
|
|
|
{
|
|
|
|
// no rotation and shear, direct value extraction
|
|
|
|
rRotate = rShearX = 0.0;
|
2003-10-28 10:26:57 +00:00
|
|
|
|
2005-11-02 12:56:26 +00:00
|
|
|
// copy scale values
|
|
|
|
rScale.setX(get(0, 0));
|
|
|
|
rScale.setY(get(1, 1));
|
2003-10-28 10:26:57 +00:00
|
|
|
|
2005-11-02 12:56:26 +00:00
|
|
|
// copy translation values
|
|
|
|
rTranslate.setX(get(0, 2));
|
|
|
|
rTranslate.setY(get(1, 2));
|
2003-10-28 10:26:57 +00:00
|
|
|
|
2005-11-02 12:56:26 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
2003-11-28 10:18:16 +00:00
|
|
|
{
|
2005-11-02 12:56:26 +00:00
|
|
|
// test if shear is zero. That's the case, if the unit vectors in the matrix
|
|
|
|
// are perpendicular -> scalar is zero
|
|
|
|
const ::basegfx::B2DVector aUnitVecX(get(0, 0), get(1, 0));
|
|
|
|
const ::basegfx::B2DVector aUnitVecY(get(0, 1), get(1, 1));
|
2003-10-28 10:26:57 +00:00
|
|
|
|
2006-07-13 08:56:31 +00:00
|
|
|
if(fTools::equalZero(aUnitVecX.scalar(aUnitVecY)))
|
2005-11-02 12:56:26 +00:00
|
|
|
{
|
2006-11-14 13:06:44 +00:00
|
|
|
// no shear, direct value extraction
|
|
|
|
rShearX = 0.0;
|
|
|
|
|
2005-11-02 12:56:26 +00:00
|
|
|
// calculate rotation
|
|
|
|
rRotate = atan2(aUnitVecX.getY(), aUnitVecX.getX());
|
2003-10-28 10:26:57 +00:00
|
|
|
|
2005-11-02 12:56:26 +00:00
|
|
|
// calculate scale values
|
|
|
|
rScale.setX(aUnitVecX.getLength());
|
|
|
|
rScale.setY(aUnitVecY.getLength());
|
2003-10-28 10:26:57 +00:00
|
|
|
|
2005-11-02 12:56:26 +00:00
|
|
|
// copy translation values
|
|
|
|
rTranslate.setX(get(0, 2));
|
|
|
|
rTranslate.setY(get(1, 2));
|
2003-10-28 10:26:57 +00:00
|
|
|
|
2005-11-02 12:56:26 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// If determinant is zero, decomposition is not possible
|
2006-07-13 08:56:31 +00:00
|
|
|
if(0.0 == determinant())
|
2005-11-02 12:56:26 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
// copy 2x2 matrix and translate vector to 3x3 matrix
|
|
|
|
::basegfx::B3DHomMatrix a3DHomMat;
|
|
|
|
|
|
|
|
a3DHomMat.set(0, 0, get(0, 0));
|
|
|
|
a3DHomMat.set(0, 1, get(0, 1));
|
|
|
|
a3DHomMat.set(1, 0, get(1, 0));
|
|
|
|
a3DHomMat.set(1, 1, get(1, 1));
|
|
|
|
a3DHomMat.set(0, 3, get(0, 2));
|
|
|
|
a3DHomMat.set(1, 3, get(1, 2));
|
|
|
|
|
|
|
|
::basegfx::B3DTuple r3DScale, r3DTranslate, r3DRotate, r3DShear;
|
|
|
|
|
|
|
|
if(a3DHomMat.decompose(r3DScale, r3DTranslate, r3DRotate, r3DShear))
|
|
|
|
{
|
|
|
|
// copy scale values
|
|
|
|
rScale.setX(r3DScale.getX());
|
|
|
|
rScale.setY(r3DScale.getY());
|
|
|
|
|
|
|
|
// copy shear
|
|
|
|
rShearX = r3DShear.getX();
|
|
|
|
|
|
|
|
// copy rotate
|
|
|
|
rRotate = r3DRotate.getZ();
|
|
|
|
|
|
|
|
// copy translate
|
|
|
|
rTranslate.setX(r3DTranslate.getX());
|
|
|
|
rTranslate.setY(r3DTranslate.getY());
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2003-10-28 10:26:57 +00:00
|
|
|
}
|
2003-11-28 10:18:16 +00:00
|
|
|
|
2004-01-16 09:34:43 +00:00
|
|
|
return false;
|
2003-11-28 10:18:16 +00:00
|
|
|
}
|
2003-10-28 10:26:57 +00:00
|
|
|
} // end of namespace basegfx
|
|
|
|
|
|
|
|
// eof
|