summaryrefslogtreecommitdiff
path: root/basegfx/inc
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2005-11-02 12:53:02 +0000
committerKurt Zenker <kz@openoffice.org>2005-11-02 12:53:02 +0000
commitead8b19215fa34a44ba78032c21f8991ef472c7b (patch)
treed0ab2d44ae243aaf45d891ebad474928c3576253 /basegfx/inc
parentb85df3cd19456ab39dd92acf36c2dbf0525ea72e (diff)
INTEGRATION: CWS canvas02 (1.6.58); FILE MERGED
2005/10/08 12:58:51 thb 1.6.58.2: RESYNC: (1.6-1.7); FILE MERGED 2005/07/28 10:10:41 thb 1.6.58.1: Join from cws_src680_aw024: #i48939# and new rendering subsystem need AW's clipper changes
Diffstat (limited to 'basegfx/inc')
-rw-r--r--basegfx/inc/basegfx/matrix/b3dhommatrix.hxx20
1 files changed, 12 insertions, 8 deletions
diff --git a/basegfx/inc/basegfx/matrix/b3dhommatrix.hxx b/basegfx/inc/basegfx/matrix/b3dhommatrix.hxx
index b07872fc0efd..4ef2ed60be34 100644
--- a/basegfx/inc/basegfx/matrix/b3dhommatrix.hxx
+++ b/basegfx/inc/basegfx/matrix/b3dhommatrix.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: b3dhommatrix.hxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: rt $ $Date: 2005-09-07 20:25:22 $
+ * last change: $Author: kz $ $Date: 2005-11-02 13:53:02 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -63,6 +63,10 @@ namespace basegfx
double get(sal_uInt16 nRow, sal_uInt16 nColumn) const;
void set(sal_uInt16 nRow, sal_uInt16 nColumn, double fValue);
+ // test if last line is default to see if last line needs to be
+ // involved in calculations
+ bool isLastLineDefault() const;
+
bool isIdentity() const;
/// Reset to the identity matrix
void identity();
@@ -100,13 +104,13 @@ namespace basegfx
// Projection matrices, used for converting between eye and
// clip coordinates
- void frustum(double fLeft = -1.0, double fRight = 1.0,
- double fBottom = -1.0, double fTop = 1.0,
- double fNear = 0.001, double fFar = 1.0);
+// void frustum(double fLeft = -1.0, double fRight = 1.0,
+// double fBottom = -1.0, double fTop = 1.0,
+// double fNear = 0.001, double fFar = 1.0);
- void ortho(double fLeft = -1.0, double fRight = 1.0,
- double fBottom = -1.0, double fTop = 1.0,
- double fNear = 0.0, double fFar = 1.0);
+// void ortho(double fLeft = -1.0, double fRight = 1.0,
+// double fBottom = -1.0, double fTop = 1.0,
+// double fNear = 0.0, double fFar = 1.0);
// addition, subtraction
B3DHomMatrix& operator+=(const B3DHomMatrix& rMat);