Update ooo320-m1
[ooovba.git] / slideshow / source / engine / transitions / checkerboardwipe.cxx
blob413527a43dd6487f721cf5d52a1212e4317d9561
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: checkerboardwipe.cxx,v $
10 * $Revision: 1.7 $
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 "checkerboardwipe.hxx"
39 namespace slideshow {
40 namespace internal {
42 ::basegfx::B2DPolyPolygon CheckerBoardWipe::operator () ( double t )
44 const double d = (1.0 / m_unitsPerEdge);
45 ::basegfx::B2DHomMatrix aTransform;
46 aTransform.scale( ::basegfx::pruneScaleValue( d * 2.0 * t ),
47 ::basegfx::pruneScaleValue( d ) );
49 ::basegfx::B2DPolyPolygon res;
50 for ( sal_Int32 i = m_unitsPerEdge; i--; )
52 ::basegfx::B2DHomMatrix transform( aTransform );
53 if ((i % 2) == 1) // odd line
54 transform.translate( -d, 0.0 );
55 for ( sal_Int32 j = (m_unitsPerEdge / 2) + 1; j--; )
57 ::basegfx::B2DPolyPolygon poly( m_unitRect );
58 poly.transform( transform );
59 res.append( poly );
60 transform.translate( d * 2.0, 0.0 );
62 aTransform.translate( 0.0, d ); // next line
64 return res;