Update ooo320-m1
[ooovba.git] / slideshow / source / engine / transitions / zigzagwipe.cxx
blobf0c504b6eea087d38d3a2d7785138bf2f8dc1ada
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: zigzagwipe.cxx,v $
10 * $Revision: 1.6 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 // MARKER(update_precomp.py): autogen include statement, do not remove
32 #include "precompiled_slideshow.hxx"
34 #include <canvas/debug.hxx>
35 #include <basegfx/matrix/b2dhommatrix.hxx>
36 #include <basegfx/point/b2dpoint.hxx>
37 #include <basegfx/numeric/ftools.hxx>
38 #include "transitiontools.hxx"
39 #include "zigzagwipe.hxx"
42 namespace slideshow {
43 namespace internal {
45 ZigZagWipe::ZigZagWipe( sal_Int32 nZigs ) : m_zigEdge( 1.0 / nZigs )
47 const double d = m_zigEdge;
48 const double d2 = (d / 2.0);
49 m_stdZigZag.append( ::basegfx::B2DPoint( -1.0 - d, -d ) );
50 m_stdZigZag.append( ::basegfx::B2DPoint( -1.0 - d, 1.0 + d ) );
51 m_stdZigZag.append( ::basegfx::B2DPoint( -d, 1.0 + d ) );
52 for ( sal_Int32 pos = (nZigs + 2); pos--; ) {
53 m_stdZigZag.append( ::basegfx::B2DPoint( 0.0, ((pos - 1) * d) + d2 ) );
54 m_stdZigZag.append( ::basegfx::B2DPoint( -d, (pos - 1) * d ) );
56 m_stdZigZag.setClosed(true);
59 ::basegfx::B2DPolyPolygon ZigZagWipe::operator () ( double t )
61 ::basegfx::B2DHomMatrix aTransform;
62 aTransform.translate( (1.0 + m_zigEdge) * t, 0.0 );
63 ::basegfx::B2DPolyPolygon res(m_stdZigZag);
64 res.transform( aTransform );
65 return res;
68 ::basegfx::B2DPolyPolygon BarnZigZagWipe::operator () ( double t )
70 ::basegfx::B2DPolyPolygon res( createUnitRect() );
71 ::basegfx::B2DPolygon poly( m_stdZigZag );
72 poly.flip();
73 ::basegfx::B2DHomMatrix aTransform;
74 aTransform.translate( (1.0 + m_zigEdge) * (1.0 - t) / 2.0, 0.0 );
75 poly.transform( aTransform );
76 res.append( poly );
77 aTransform.scale( -1.0, 1.0 );
78 aTransform.translate( 1.0, m_zigEdge / 2.0 );
79 poly = m_stdZigZag;
80 poly.transform( aTransform );
81 res.append( poly );
82 return res;