summaryrefslogtreecommitdiff
path: root/basegfx/source
diff options
context:
space:
mode:
authorIvo Hinkelmann <ihi@openoffice.org>2006-11-14 13:06:44 +0000
committerIvo Hinkelmann <ihi@openoffice.org>2006-11-14 13:06:44 +0000
commit8216aa020555748d67e5cf54d9acb40db5a0de73 (patch)
tree8447a632171743ce2341995660117c63fe9f1703 /basegfx/source
parent9b5eaf6f731e9745f1d2e0a23c47b87d9b723995 (diff)
INTEGRATION: CWS aw024 (1.8.6); FILE MERGED
2006/09/21 20:58:57 aw 1.8.6.8: RESYNC: (1.12-1.13); FILE MERGED 2006/08/03 16:01:43 aw 1.8.6.7: RESYNC: (1.11-1.12); FILE MERGED 2006/06/27 12:54:13 aw 1.8.6.6: #114408# shear was not resetted 2005/11/18 18:58:25 aw 1.8.6.5: RESYNC: (1.10-1.11); FILE MERGED 2005/09/19 21:45:29 aw 1.8.6.4: RESYNC: (1.9-1.10); FILE MERGED 2005/07/13 11:11:12 aw 1.8.6.3: #114176# 2005/05/13 16:30:49 aw 1.8.6.2: RESYNC: (1.8-1.9); FILE MERGED 2005/05/12 16:35:12 aw 1.8.6.1: #i39529#
Diffstat (limited to 'basegfx/source')
-rw-r--r--basegfx/source/matrix/b2dhommatrix.cxx7
1 files changed, 5 insertions, 2 deletions
diff --git a/basegfx/source/matrix/b2dhommatrix.cxx b/basegfx/source/matrix/b2dhommatrix.cxx
index 07fc798978ba..ede62aa5695d 100644
--- a/basegfx/source/matrix/b2dhommatrix.cxx
+++ b/basegfx/source/matrix/b2dhommatrix.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: b2dhommatrix.cxx,v $
*
- * $Revision: 1.13 $
+ * $Revision: 1.14 $
*
- * last change: $Author: obo $ $Date: 2006-09-17 07:58:56 $
+ * last change: $Author: ihi $ $Date: 2006-11-14 14:06:44 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -386,6 +386,9 @@ namespace basegfx
if(fTools::equalZero(aUnitVecX.scalar(aUnitVecY)))
{
+ // no shear, direct value extraction
+ rShearX = 0.0;
+
// calculate rotation
rRotate = atan2(aUnitVecX.getY(), aUnitVecX.getX());