2010-10-14 01:27:31 -05:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2003-11-10 06:33:07 -06:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 12:54:09 -05:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2003-11-10 06:33:07 -06:00
|
|
|
*
|
2010-02-12 08:01:35 -06:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2003-11-10 06:33:07 -06:00
|
|
|
*
|
2008-04-10 12:54:09 -05:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2003-11-10 06:33:07 -06:00
|
|
|
*
|
2008-04-10 12:54:09 -05:00
|
|
|
* This file is part of OpenOffice.org.
|
2003-11-10 06:33:07 -06:00
|
|
|
*
|
2008-04-10 12:54:09 -05:00
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
* only, as published by the Free Software Foundation.
|
2003-11-10 06:33:07 -06:00
|
|
|
*
|
2008-04-10 12:54:09 -05:00
|
|
|
* OpenOffice.org 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 version 3 for more details
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
2003-11-10 06:33:07 -06:00
|
|
|
*
|
2008-04-10 12:54:09 -05:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
2003-11-10 06:33:07 -06:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
2008-08-19 17:59:27 -05:00
|
|
|
#include <basegfx/curve/b2dbeziertools.hxx>
|
2003-11-10 06:33:07 -06:00
|
|
|
#include <basegfx/curve/b2dcubicbezier.hxx>
|
2008-08-19 17:59:27 -05:00
|
|
|
#include <algorithm>
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
namespace basegfx
|
|
|
|
{
|
|
|
|
B2DCubicBezierHelper::B2DCubicBezierHelper(const B2DCubicBezier& rBase, sal_uInt32 nDivisions)
|
|
|
|
: maLengthArray(),
|
|
|
|
mnEdgeCount(0)
|
|
|
|
{
|
|
|
|
const bool bIsBezier(rBase.isBezier());
|
|
|
|
|
|
|
|
if(bIsBezier)
|
|
|
|
{
|
|
|
|
// check nDivisions; at least one is needed, but also prevent too big values
|
|
|
|
if(nDivisions < 1)
|
|
|
|
{
|
|
|
|
nDivisions = 1;
|
|
|
|
}
|
|
|
|
else if(nDivisions > 1000)
|
|
|
|
{
|
|
|
|
nDivisions = 1000;
|
|
|
|
}
|
|
|
|
|
|
|
|
// set nEdgeCount
|
|
|
|
mnEdgeCount = nDivisions + 1;
|
|
|
|
|
|
|
|
// fill in maLengthArray
|
|
|
|
maLengthArray.clear();
|
|
|
|
maLengthArray.reserve(mnEdgeCount);
|
|
|
|
B2DPoint aCurrent(rBase.getStartPoint());
|
|
|
|
double fLength(0.0);
|
|
|
|
|
|
|
|
for(sal_uInt32 a(1);;)
|
|
|
|
{
|
|
|
|
const B2DPoint aNext(rBase.interpolatePoint((double)a / (double)mnEdgeCount));
|
|
|
|
const B2DVector aEdge(aNext - aCurrent);
|
|
|
|
|
|
|
|
fLength += aEdge.getLength();
|
|
|
|
maLengthArray.push_back(fLength);
|
|
|
|
|
|
|
|
if(++a < mnEdgeCount)
|
|
|
|
{
|
|
|
|
aCurrent = aNext;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
const B2DPoint aLastNext(rBase.getEndPoint());
|
|
|
|
const B2DVector aLastEdge(aLastNext - aNext);
|
|
|
|
|
|
|
|
fLength += aLastEdge.getLength();
|
|
|
|
maLengthArray.push_back(fLength);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
maLengthArray.clear();
|
|
|
|
maLengthArray.push_back(rBase.getEdgeLength());
|
|
|
|
mnEdgeCount = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
double B2DCubicBezierHelper::distanceToRelative(double fDistance) const
|
|
|
|
{
|
|
|
|
if(fDistance <= 0.0)
|
|
|
|
{
|
|
|
|
return 0.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
const double fLength(getLength());
|
|
|
|
|
|
|
|
if(fTools::moreOrEqual(fDistance, fLength))
|
|
|
|
{
|
|
|
|
return 1.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// fDistance is in ]0.0 .. fLength[
|
|
|
|
|
|
|
|
if(1 == mnEdgeCount)
|
|
|
|
{
|
|
|
|
// not a bezier, linear edge
|
|
|
|
return fDistance / fLength;
|
|
|
|
}
|
|
|
|
|
|
|
|
// it is a bezier
|
|
|
|
::std::vector< double >::const_iterator aIter = ::std::lower_bound(maLengthArray.begin(), maLengthArray.end(), fDistance);
|
|
|
|
const sal_uInt32 nIndex(aIter - maLengthArray.begin());
|
|
|
|
const double fHighBound(maLengthArray[nIndex]);
|
|
|
|
const double fLowBound(nIndex ? maLengthArray[nIndex - 1] : 0.0);
|
|
|
|
const double fLinearInterpolatedLength((fDistance - fLowBound) / (fHighBound - fLowBound));
|
|
|
|
|
|
|
|
return (static_cast< double >(nIndex) + fLinearInterpolatedLength) / static_cast< double >(mnEdgeCount);
|
|
|
|
}
|
|
|
|
|
|
|
|
} // end of namespace basegfx
|
2003-11-10 06:33:07 -06:00
|
|
|
|
2007-07-18 05:05:04 -05:00
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
2003-11-10 06:33:07 -06:00
|
|
|
|
2007-07-18 05:05:04 -05:00
|
|
|
// eof
|
2010-10-14 01:27:31 -05:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|