LibreOffice Module slideshow (master) 1
sweepwipe.cxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 */
19
20
23#include "clockwipe.hxx"
24#include "sweepwipe.hxx"
25#include "transitiontools.hxx"
26
27
28namespace slideshow::internal {
29
31{
32 t /= 2.0;
33 if (! m_center)
34 t /= 2.0;
36 t /= 2.0;
37
39 ::basegfx::B2DHomMatrix aTransform;
40
41 if (m_center)
42 {
44 poly.transform( aTransform );
45 }
47
48 if (! m_single)
49 {
51 {
52 aTransform = basegfx::utils::createScaleB2DHomMatrix(1.0, -1.0);
53 aTransform.translate( 0.0, 1.0 );
54 poly.transform( aTransform );
55 poly.flip();
56 }
57 else
58 {
59 aTransform = basegfx::utils::createTranslateB2DHomMatrix(-0.5, -0.5);
60 aTransform.rotate( M_PI );
61 aTransform.translate( 0.5, 0.5 );
62 poly.transform( aTransform );
63 }
64 res.append(poly);
65 }
66
67 return m_flipOnYAxis ? flipOnYAxis(res) : res;
68}
69
70}
71
72/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
XPropertyListType t
void rotate(double fRadiant)
void translate(double fX, double fY)
void append(const B2DPolygon &rPolygon, sal_uInt32 nCount=1)
void transform(const basegfx::B2DHomMatrix &rMatrix)
::basegfx::B2DPolygon calcCenteredClock(double t, double e=1.0)
0,1 to 1,1 to 1,0 to 0,-1 to -1,0 to 0,1:
Definition: clockwipe.cxx:29
virtual ::basegfx::B2DPolyPolygon operator()(double t) override
Retrieve the poly-polygon for value t.
Definition: sweepwipe.cxx:30
B2DHomMatrix createScaleB2DHomMatrix(double fScaleX, double fScaleY)
B2DHomMatrix createTranslateB2DHomMatrix(double fTranslateX, double fTranslateY)
::basegfx::B2DPolyPolygon flipOnYAxis(::basegfx::B2DPolyPolygon const &polypoly)
Flips on Y-axis: