summaryrefslogtreecommitdiff
path: root/basegfx/source/point/b2dpoint.cxx
diff options
context:
space:
mode:
authorArmin Weiss <aw@openoffice.org>2004-01-16 13:30:10 +0000
committerArmin Weiss <aw@openoffice.org>2004-01-16 13:30:10 +0000
commit99a300e39ace4f9bd1af8ad85ef49f35f7117fc7 (patch)
tree9ef5e2b8c9359e42cd27ca82d6614249a9474314 /basegfx/source/point/b2dpoint.cxx
parentc794c5ce7ea7b11f7275a471821310dcd3dd552e (diff)
Added == and != operators to ranges, some other goodies, too. Also changed remaining sal_Bool to bool. Renamed B(2|3)(d|i)box to ...volume.
Diffstat (limited to 'basegfx/source/point/b2dpoint.cxx')
-rw-r--r--basegfx/source/point/b2dpoint.cxx10
1 files changed, 8 insertions, 2 deletions
diff --git a/basegfx/source/point/b2dpoint.cxx b/basegfx/source/point/b2dpoint.cxx
index dab49a9fe392..a2c1a2716597 100644
--- a/basegfx/source/point/b2dpoint.cxx
+++ b/basegfx/source/point/b2dpoint.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: b2dpoint.cxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: aw $ $Date: 2003-11-28 11:18:04 $
+ * last change: $Author: aw $ $Date: 2004-01-16 14:30:08 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -89,6 +89,12 @@ namespace basegfx
return *this;
}
+
+ B2DPoint operator*( const ::basegfx::B2DHomMatrix& rMat, const B2DPoint& rPoint )
+ {
+ B2DPoint aRes( rPoint );
+ return aRes *= rMat;
+ }
} // end of namespace basegfx
// eof