Home
last modified time | relevance | path

Searched refs:interpolate (Results 1 – 25 of 41) sorted by relevance

12

/trunk/main/basegfx/source/curve/
H A Db2dcubicbezier.cxx672 const B2DPoint aS1L(interpolate(maStartPoint, maControlPointA, t)); in interpolatePoint()
674 const B2DPoint aS1R(interpolate(maControlPointB, maEndPoint, t)); in interpolatePoint()
675 const B2DPoint aS2L(interpolate(aS1L, aS1C, t)); in interpolatePoint()
676 const B2DPoint aS2R(interpolate(aS1C, aS1R, t)); in interpolatePoint()
678 return interpolate(aS2L, aS2R, t); in interpolatePoint()
682 return interpolate(maStartPoint, maEndPoint, t); in interpolatePoint()
803 const B2DPoint aS1R(interpolate(maControlPointB, maEndPoint, t)); in split()
804 const B2DPoint aS2L(interpolate(aS1L, aS1C, t)); in split()
805 const B2DPoint aS2R(interpolate(aS1C, aS1R, t)); in split()
806 const B2DPoint aS3C(interpolate(aS2L, aS2R, t)); in split()
[all …]
/trunk/main/drawinglayer/source/texture/
H A Dtexture.cxx187 …aB2DHomMatrixAndBColor.maBColor = interpolate(maStart, maEnd, double(a) / double(maGradientInfo.ge… in appendTransformationsAndColors()
198 rBColor = basegfx::interpolate(maStart, maEnd, fScaler); in modifyBColor()
272 …aB2DHomMatrixAndBColor.maBColor = interpolate(maEnd, maStart, double(a) / double(maGradientInfo.ge… in appendTransformationsAndColors()
283 rBColor = basegfx::interpolate(maStart, maEnd, fScaler); in modifyBColor()
330 …aB2DHomMatrixAndBColor.maBColor = interpolate(maStart, maEnd, double(a) / double(maGradientInfo.ge… in appendTransformationsAndColors()
340 rBColor = basegfx::interpolate(maStart, maEnd, fScaler); in modifyBColor()
407 …aB2DHomMatrixAndBColor.maBColor = interpolate(maStart, maEnd, double(a) / double(maGradientInfo.ge… in appendTransformationsAndColors()
417 rBColor = basegfx::interpolate(maStart, maEnd, fScaler); in modifyBColor()
466 …aB2DHomMatrixAndBColor.maBColor = interpolate(maStart, maEnd, double(a) / double(maGradientInfo.ge… in appendTransformationsAndColors()
476 rBColor = basegfx::interpolate(maStart, maEnd, fScaler); in modifyBColor()
[all …]
/trunk/main/slideshow/source/engine/OGLTrans/
H A DOGLTrans_TransitionImpl.hxx317 virtual void interpolate(double t,double SlideWidthScale,double SlideHeightScale) = 0;
329 void interpolate(double t,double SlideWidthScale,double SlideHeightScale);
374 void interpolate(double t,double SlideWidthScale,double SlideHeightScale);
407 void interpolate(double t,double SlideWidthScale,double SlideHeightScale);
438 void interpolate(double t,double SlideWidthScale,double SlideHeightScale);
474 void interpolate(double t,double SlideWidthScale,double SlideHeightScale);
490 void interpolate(double t,double SlideWidthScale,double SlideHeightScale);
H A DOGLTrans_TransitionImpl.cxx156 OverallOperations[i]->interpolate(nTime,SlideWidthScale,SlideHeightScale); in applyOverallOperations()
234 Operations[i]->interpolate( nTime ,WidthScale,HeightScale); in applyOperations()
742 void STranslate::interpolate(double t,double SlideWidthScale,double SlideHeightScale) in interpolate() function in STranslate
752 void SRotate::interpolate(double t,double SlideWidthScale,double SlideHeightScale) in interpolate() function in SRotate
766 void SScale::interpolate(double t,double SlideWidthScale,double SlideHeightScale) in interpolate() function in SScale
778 void RotateAndScaleDepthByWidth::interpolate(double t,double SlideWidthScale,double SlideHeightScal… in interpolate() function in RotateAndScaleDepthByWidth
790 void RotateAndScaleDepthByHeight::interpolate(double t,double SlideWidthScale,double SlideHeightSca… in interpolate() function in RotateAndScaleDepthByHeight
813 void SEllipseTranslate::interpolate(double t,double /* SlideWidthScale */,double /* SlideHeightScal… in interpolate() function in SEllipseTranslate
/trunk/main/basegfx/source/polygon/
H A Db2dpolygontools.cxx757 aRetval = interpolate(aRetval, aNextPoint, fRelativeInEdge); in getPositionAbsolute()
882 aRetval.append(interpolate(aStart, aEnd, fRelValue)); in getSnippetAbsolute()
940 aRetval.append(interpolate(aStart, aEnd, fRelValue)); in getSnippetAbsolute()
1589 const B2DPoint aCutPoint(interpolate(rEdgeStart, rEdgeEnd, fCut)); in isInEpsilonRange()
1774 …aRetval.appendBezierSegment(interpolate(aStart, aBottomRight, fKappa), interpolate(aStop, aBottomR… in createPolygonFromRect()
1783 …aRetval.appendBezierSegment(interpolate(aStart, aTopRight, fKappa), interpolate(aStop, aTopRight, … in createPolygonFromRect()
1792 …aRetval.appendBezierSegment(interpolate(aStart, aTopLeft, fKappa), interpolate(aStop, aTopLeft, fK… in createPolygonFromRect()
1801 …aRetval.appendBezierSegment(interpolate(aStart, aBottomLeft, fKappa), interpolate(aStop, aBottomLe… in createPolygonFromRect()
3104 B2DPolygon interpolate(const B2DPolygon& rOld1, const B2DPolygon& rOld2, double t) in interpolate() function
3124 aRetval.append(interpolate(rOld1.getB2DPoint(a), rOld2.getB2DPoint(a), t)); in interpolate()
[all …]
H A Db3dpolygonclipper.cxx100 rDest.append(interpolate(aCurrPoint, aNextPoint, fCut)); in impAppendInterpolate()
106 rDest.setBColor(rDest.count() - 1L, interpolate(aCurrBColor, aNextBColor, fCut)); in impAppendInterpolate()
113 rDest.setNormal(rDest.count() - 1L, interpolate(aCurrVector, aNextVector, fCut)); in impAppendInterpolate()
120 rDest.setTextureCoordinate(rDest.count() - 1L, interpolate(aCurrTxCo, aNextTxCo, fCut)); in impAppendInterpolate()
H A Db3dpolygontools.cxx359 aRetval += interpolate(aRetval, aNextPoint, fRelative); in getPositionAbsolute()
433 … aSnippet.append(interpolate(aCurrentPoint, aNextPoint, fLastDotDashMovingLength / fEdgeLength)); in applyLineDashing()
436 … aSnippet.append(interpolate(aCurrentPoint, aNextPoint, fDotDashMovingLength / fEdgeLength)); in applyLineDashing()
464 … aSnippet.append(interpolate(aCurrentPoint, aNextPoint, fLastDotDashMovingLength / fEdgeLength)); in applyLineDashing()
787 const B3DPoint aCutPoint(interpolate(rEdgeStart, rEdgeEnd, fCut)); in isInEpsilonRange()
H A Db2dpolygoncutandtouch.cxx278 const B2DPoint aCutPoint(interpolate(rCurrA, rNextA, fCut)); in findEdgeCutsTwoEdges()
375 const B2DPoint aCutPoint(interpolate(aCurrA, aNextA, fCutA)); in findCutsAndTouchesAndCommonForBezier()
391 const B2DPoint aCutPoint(interpolate(aCurrB, aNextB, fCutB)); in findCutsAndTouchesAndCommonForBezier()
H A Db2dpolypolygontools.cxx501 B2DPolyPolygon interpolate(const B2DPolyPolygon& rOld1, const B2DPolyPolygon& rOld2, double t) in interpolate() function
508 aRetval.append(interpolate(rOld1.getB2DPolygon(a), rOld2.getB2DPolygon(a), t)); in interpolate()
/trunk/main/svx/source/sdr/attribute/
H A Dsdrallfillattributeshelper.cxx196 aRetval = basegfx::interpolate(rStart, rEnd, 0.5); in getAverageColor()
208 aRetval = basegfx::interpolate(rColor, rBackgroundColor, 0.5); in getAverageColor()
213 aRetval = basegfx::interpolate(rColor, rFallback, 0.5); in getAverageColor()
232 aRetval = basegfx::interpolate(aRetval, rFallback, fTransparence); in getAverageColor()
/trunk/main/slideshow/source/engine/activities/
H A Dinterpolation.hxx46 return interpolate( rFrom, rTo, t ); in lerp()
107 return interpolate( rFrom, rTo, t, mbCCW ); in operator ()()
/trunk/main/drawinglayer/source/primitive2d/
H A Danimatedprimitive2d.cxx193 …const basegfx::B2DVector aScale(basegfx::interpolate(aMatA->getScale(), aMatB->getScale(), fOffset… in get2DDecomposition()
194 …const basegfx::B2DVector aTranslate(basegfx::interpolate(aMatA->getTranslate(), aMatB->getTranslat… in get2DDecomposition()
H A Dsvggradientprimitive2d.cxx968 basegfx::interpolate(getColorA(), getColorB(), fUnitScale)); in create2DDecomposition()
1047 basegfx::interpolate( in create2DDecomposition()
1070 basegfx::interpolate(getColorB(), getColorA(), fUnitScale)); in create2DDecomposition()
/trunk/main/svx/source/svdraw/
H A Dpolypolygoneditor.cxx112 aCandidate.setNextControlPoint(nPntNum, interpolate(aStart, aEnd, (1.0 / 3.0))); in SetSegmentsKind()
113 aCandidate.setPrevControlPoint(nNextIndex, interpolate(aStart, aEnd, (2.0 / 3.0))); in SetSegmentsKind()
/trunk/main/sd/source/ui/func/
H A Dfumorph.cxx226 ::basegfx::B2DPoint aNewPoint(basegfx::interpolate(aOld1, aOld2, fLenA)); in ImpGetExpandedPolygon()
407 …const basegfx::BColor aLineColor(basegfx::interpolate(aStartLineCol.getBColor(), aEndLineCol.getBC… in ImpInsertPolygons()
416 …const basegfx::BColor aFillColor(basegfx::interpolate(aStartFillCol.getBColor(), aEndFillCol.getBC… in ImpInsertPolygons()
/trunk/main/svx/source/xoutdev/
H A Dxtabgrdt.cxx171 aStart = interpolate(aBlack, aStart, (double)nStartIntens * 0.01); in CreateBitmapForUI()
180 aEnd = interpolate(aBlack, aEnd, (double)nEndIntens * 0.01); in CreateBitmapForUI()
/trunk/main/slideshow/source/engine/
H A Dcolor.cxx300 HSLColor interpolate( const HSLColor& rFrom, const HSLColor& rTo, double t, bool bCCW ) in interpolate() function
458 RGBColor interpolate( const RGBColor& rFrom, const RGBColor& rTo, double t ) in interpolate() function
/trunk/main/extensions/source/scanner/
H A Dgrid.cxx281 m_pNewYValues[ i ] = interpolate( x, nodex, nodey, nSorted ); in computeNew()
298 double GridWindow::interpolate( in interpolate() function in GridWindow
H A Dgrid.hxx117 double interpolate( double x, double* pNodeX, double* pNodeY, int nNodes );
/trunk/main/drawinglayer/source/processor2d/
H A Dvclprocessor2d.cxx1305 … mpOutputDevice->SetFillColor(Color(basegfx::interpolate(aColorA, aColorB, fUnitScale))); in RenderSvgLinearAtomPrimitive2D()
1342 basegfx::interpolate( in RenderSvgRadialAtomPrimitive2D()
1363 … mpOutputDevice->SetFillColor(Color(basegfx::interpolate(aColorB, aColorA, fUnitScale))); in RenderSvgRadialAtomPrimitive2D()
/trunk/main/slideshow/source/inc/
H A Dhslcolor.hxx115 … HSLColor interpolate( const HSLColor& rFrom, const HSLColor& rTo, double t, bool bCCW=true );
H A Drgbcolor.hxx117 RGBColor interpolate( const RGBColor& rFrom, const RGBColor& rTo, double t );
/trunk/main/offapi/com/sun/star/animations/
H A DAnimationColorSpace.idl35 interpolate from one color to another.
/trunk/main/drawinglayer/source/processor3d/
H A Dcutfindprocessor3d.cxx192 … const basegfx::B3DPoint aCutPoint(basegfx::interpolate(maFront, maBack, fCut)); in processBasePrimitive3D()
/trunk/main/svx/source/sdr/primitive2d/
H A Dsdrattributecreator.cxx446 aStart = interpolate(aBlack, aStart, (double)nStartIntens * 0.01); in createNewSdrFillAttribute()
456 aEnd = interpolate(aBlack, aEnd, (double)nEndIntens * 0.01); in createNewSdrFillAttribute()

Completed in 123 milliseconds

12