summaryrefslogtreecommitdiff
path: root/canvas/source/tools/surface.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'canvas/source/tools/surface.cxx')
-rw-r--r--canvas/source/tools/surface.cxx60
1 files changed, 30 insertions, 30 deletions
diff --git a/canvas/source/tools/surface.cxx b/canvas/source/tools/surface.cxx
index 3f1108de2e76..4d23c40f7b27 100644
--- a/canvas/source/tools/surface.cxx
+++ b/canvas/source/tools/surface.cxx
@@ -2,7 +2,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -32,7 +32,7 @@
#include "surface.hxx"
#include <basegfx/polygon/b2dpolygonclipper.hxx>
#include <basegfx/matrix/b2dhommatrixtools.hxx>
-#include <comphelper/scopeguard.hxx>
+#include <comphelper/scopeguard.hxx>
#include <boost/bind.hpp>
namespace canvas
@@ -159,22 +159,22 @@ namespace canvas
######################################
######################################
######################################
-
+
Y
^+1
|
- 2 | 3
+ 2 | 3
x------------x
- | | |
- | | |
+ | | |
+ | | |
------|-----O------|------>X
- -1 | | | +1
- | | |
+ -1 | | | +1
+ | | |
x------------x
1 | 0
|
|-1
-
+
######################################
######################################
######################################
@@ -263,7 +263,7 @@ namespace canvas
aDestOffset = mpFragment->getPos();
// convert size to normalized device coordinates
- const ::basegfx::B2DRectangle& rUV(
+ const ::basegfx::B2DRectangle& rUV(
getUVCoords(aPos1 - maSourceOffset + aDestOffset,
aSize) );
const double u1(rUV.getMinX());
@@ -285,30 +285,30 @@ namespace canvas
######################################
######################################
######################################
-
+
Y
^+1
|
- 2 | 3
+ 2 | 3
x------------x
- | | |
- | | |
+ | | |
+ | | |
------|-----O------|------>X
- -1 | | | +1
- | | |
+ -1 | | | +1
+ | | |
x------------x
1 | 0
|
|-1
-
+
######################################
######################################
######################################
*/
const ::basegfx::B2DPoint& p0(aTransform * ::basegfx::B2DPoint(aSize.getX(),aSize.getY()));
- const ::basegfx::B2DPoint& p1(aTransform * ::basegfx::B2DPoint(0.0, aSize.getY()));
- const ::basegfx::B2DPoint& p2(aTransform * ::basegfx::B2DPoint(0.0, 0.0));
+ const ::basegfx::B2DPoint& p1(aTransform * ::basegfx::B2DPoint(0.0, aSize.getY()));
+ const ::basegfx::B2DPoint& p2(aTransform * ::basegfx::B2DPoint(0.0, 0.0));
const ::basegfx::B2DPoint& p3(aTransform * ::basegfx::B2DPoint(aSize.getX(),0.0));
canvas::Vertex vertex;
@@ -386,22 +386,22 @@ namespace canvas
######################################
######################################
######################################
-
+
Y
^+1
|
- 2 | 3
+ 2 | 3
x------------x
- | | |
- | | |
+ | | |
+ | | |
------|-----O------|------>X
- -1 | | | +1
- | | |
+ -1 | | | +1
+ | | |
x------------x
1 | 0
|
|-1
-
+
######################################
######################################
######################################
@@ -431,19 +431,19 @@ namespace canvas
#endif
pRenderModule->beginPrimitive( canvas::IRenderModule::PRIMITIVE_TYPE_TRIANGLE );
-
- // issue an endPrimitive() when leaving the scope
+
+ // issue an endPrimitive() when leaving the scope
const ::comphelper::ScopeGuard aScopeGuard(
boost::bind( &::canvas::IRenderModule::endPrimitive,
::boost::ref(pRenderModule) ) );
- for(sal_uInt32 nIndex=0; nIndex<nVertexCount; ++nIndex)
+ for(sal_uInt32 nIndex=0; nIndex<nVertexCount; ++nIndex)
{
const basegfx::B2DPoint &aPoint = rTriangleList.getB2DPoint(nIndex);
basegfx::B2DPoint aTransformedPoint(aTransform * aPoint);
const double tu(((aPoint.getX()-aSurfaceClipRect.getMinX())*rUV.getWidth()/w)+rUV.getMinX());
const double tv(((aPoint.getY()-aSurfaceClipRect.getMinY())*rUV.getHeight()/h)+rUV.getMinY());
- vertex.u=static_cast<float>(tu);
+ vertex.u=static_cast<float>(tu);
vertex.v=static_cast<float>(tv);
vertex.x=static_cast<float>(aTransformedPoint.getX());
vertex.y=static_cast<float>(aTransformedPoint.getY());