INTEGRATION: CWS canvas02 (1.6.24); FILE MERGED

2005/10/08 13:25:25 thb 1.6.24.2: RESYNC: (1.6-1.7); FILE MERGED
2005/07/28 10:10:22 thb 1.6.24.1: Join from cws_src680_aw024: #i48939# and new rendering subsystem need AW's clipper changes
This commit is contained in:
Kurt Zenker 2005-11-02 13:00:54 +00:00
parent 507ff1b5df
commit 221805dc83

View file

@ -4,9 +4,9 @@
*
* $RCSfile: b3dtuple.cxx,v $
*
* $Revision: 1.7 $
* $Revision: 1.8 $
*
* last change: $Author: rt $ $Date: 2005-09-07 20:53:01 $
* last change: $Author: kz $ $Date: 2005-11-02 14:00:54 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@ -48,6 +48,11 @@ namespace { struct EmptyTuple : public rtl::Static<basegfx::B3DTuple, EmptyTuple
namespace basegfx
{
const B3DTuple& B3DTuple::getEmptyTuple()
{
return EmptyTuple::get();
}
B3DTuple::B3DTuple(const B3ITuple& rTup)
: mfX( rTup.getX() ),
mfY( rTup.getY() ),
@ -58,11 +63,6 @@ namespace basegfx
{
return B3ITuple(fround(rTup.getX()), fround(rTup.getY()), fround(rTup.getZ()));
}
static const B3DTuple& getEmptyTuple()
{
return EmptyTuple::get();
}
} // end of namespace basegfx
// eof