update dev300-m58
[ooovba.git] / drawinglayer / source / primitive3d / polypolygonprimitive3d.cxx
blob586535b80d3faf763144d2ce408efa780ced1eb0
1 /*************************************************************************
3 * OpenOffice.org - a multi-platform office productivity suite
5 * $RCSfile: polypolygonprimitive3d.cxx,v $
7 * $Revision: 1.9 $
9 * last change: $Author: aw $ $Date: 2008-06-10 09:29:33 $
11 * The Contents of this file are made available subject to
12 * the terms of GNU Lesser General Public License Version 2.1.
15 * GNU Lesser General Public License Version 2.1
16 * =============================================
17 * Copyright 2005 by Sun Microsystems, Inc.
18 * 901 San Antonio Road, Palo Alto, CA 94303, USA
20 * This library is free software; you can redistribute it and/or
21 * modify it under the terms of the GNU Lesser General Public
22 * License version 2.1, as published by the Free Software Foundation.
24 * This library is distributed in the hope that it will be useful,
25 * but WITHOUT ANY WARRANTY; without even the implied warranty of
26 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
27 * Lesser General Public License for more details.
29 * You should have received a copy of the GNU Lesser General Public
30 * License along with this library; if not, write to the Free Software
31 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
32 * MA 02111-1307 USA
34 ************************************************************************/
36 // MARKER(update_precomp.py): autogen include statement, do not remove
37 #include "precompiled_drawinglayer.hxx"
39 #include <drawinglayer/primitive3d/polypolygonprimitive3d.hxx>
40 #include <basegfx/polygon/b3dpolypolygontools.hxx>
41 #include <basegfx/tools/canvastools.hxx>
42 #include <drawinglayer/primitive3d/drawinglayer_primitivetypes3d.hxx>
44 //////////////////////////////////////////////////////////////////////////////
46 using namespace com::sun::star;
48 //////////////////////////////////////////////////////////////////////////////
50 namespace drawinglayer
52 namespace primitive3d
54 PolyPolygonMaterialPrimitive3D::PolyPolygonMaterialPrimitive3D(
55 const basegfx::B3DPolyPolygon& rPolyPolygon,
56 const attribute::MaterialAttribute3D& rMaterial,
57 bool bDoubleSided)
58 : BasePrimitive3D(),
59 maPolyPolygon(rPolyPolygon),
60 maMaterial(rMaterial),
61 mbDoubleSided(bDoubleSided)
65 bool PolyPolygonMaterialPrimitive3D::operator==(const BasePrimitive3D& rPrimitive) const
67 if(BasePrimitive3D::operator==(rPrimitive))
69 const PolyPolygonMaterialPrimitive3D& rCompare = (PolyPolygonMaterialPrimitive3D&)rPrimitive;
71 return (getB3DPolyPolygon() == rCompare.getB3DPolyPolygon()
72 && getMaterial() == rCompare.getMaterial()
73 && getDoubleSided() == rCompare.getDoubleSided());
76 return false;
79 basegfx::B3DRange PolyPolygonMaterialPrimitive3D::getB3DRange(const geometry::ViewInformation3D& /*rViewInformation*/) const
81 return basegfx::tools::getRange(getB3DPolyPolygon());
84 // provide unique ID
85 ImplPrimitrive3DIDBlock(PolyPolygonMaterialPrimitive3D, PRIMITIVE3D_ID_POLYPOLYGONMATERIALPRIMITIVE3D)
87 } // end of namespace primitive3d
88 } // end of namespace drawinglayer
90 //////////////////////////////////////////////////////////////////////////////
91 // eof