You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by af...@apache.org on 2012/08/30 14:32:07 UTC

svn commit: r1378911 - /incubator/ooo/trunk/main/slideshow/source/engine/transitions/parametricpolypolygonfactory.cxx

Author: af
Date: Thu Aug 30 12:32:06 2012
New Revision: 1378911

URL: http://svn.apache.org/viewvc?rev=1378911&view=rev
Log:
#i120764# Reduce grid size for snake wipe transition to 8*8.

          Patch by: Wang Zhe
          Review by: Andre Fischer

Modified:
    incubator/ooo/trunk/main/slideshow/source/engine/transitions/parametricpolypolygonfactory.cxx

Modified: incubator/ooo/trunk/main/slideshow/source/engine/transitions/parametricpolypolygonfactory.cxx
URL: http://svn.apache.org/viewvc/incubator/ooo/trunk/main/slideshow/source/engine/transitions/parametricpolypolygonfactory.cxx?rev=1378911&r1=1378910&r2=1378911&view=diff
==============================================================================
--- incubator/ooo/trunk/main/slideshow/source/engine/transitions/parametricpolypolygonfactory.cxx (original)
+++ incubator/ooo/trunk/main/slideshow/source/engine/transitions/parametricpolypolygonfactory.cxx Thu Aug 30 12:32:06 2012
@@ -149,7 +149,7 @@ namespace slideshow
                 return ParametricPolyPolygonSharedPtr(
                     new SnakeWipe(
                         // elements:
-                        64 * 64,
+                        8 * 8,
                         // diagonal:
                         nSubType == TOPLEFTDIAGONAL ||
                         nSubType == TOPRIGHTDIAGONAL ||
@@ -164,7 +164,7 @@ namespace slideshow
                 return ParametricPolyPolygonSharedPtr(
                     new ParallelSnakesWipe(
                         // elements:
-                        64 * 64,
+                        8 * 8,
                         // diagonal:
                         nSubType == DIAGONALBOTTOMLEFTOPPOSITE ||
                         nSubType == DIAGONALTOPLEFTOPPOSITE,
@@ -184,7 +184,7 @@ namespace slideshow
                 return ParametricPolyPolygonSharedPtr(
                     new SpiralWipe(
                         // elements:
-                        64 * 64,
+                        8 * 8,
                         // flipOnYAxis:
                         nSubType == TOPLEFTCOUNTERCLOCKWISE ||
                         nSubType == TOPRIGHTCOUNTERCLOCKWISE ||
@@ -194,7 +194,7 @@ namespace slideshow
                 return ParametricPolyPolygonSharedPtr(
                     new BoxSnakesWipe(
                         // elements:
-                        64 * 64,
+                        8 * 8,
                         // fourBox:
                         nSubType == FOURBOXVERTICAL ||
                         nSubType == FOURBOXHORIZONTAL ) );