update ooo310-m15
[ooovba.git] / svx / source / msfilter / msashape3d.hxx
blob7093175a3c4d75170d9a33570278b67221c6af54
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: msashape3d.hxx,v $
10 * $Revision: 1.7 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 #ifndef _MSASHAPE3D_HXX
32 #define _MSASHAPE3D_HXX
34 #include <svx/msdffimp.hxx>
35 #include <basegfx/point/b3dpoint.hxx>
36 #include <basegfx/polygon/b3dpolygon.hxx>
38 #include <vector>
39 //#include <poly3d.hxx>
40 //#include <goodies/point3d.hxx>
42 class SvxMSDffCustomShape3D
44 class Transformation2D
46 Point aCenter;
47 sal_Bool bParallel;
49 // parallel projection
50 double fSkewAngle;
51 sal_Int32 nSkewAmount; // in percent
53 // perspective projection
54 double fZScreen;
55 basegfx::B3DPoint fViewPoint;
56 double fViewPointOriginX;
57 double fViewPointOriginY;
59 public :
61 Transformation2D( const DffPropSet& rPropSet, const Rectangle& rSnapRect );
62 basegfx::B3DPolygon ApplySkewSettings( const basegfx::B3DPolygon& rPoly3D );
63 Point Transform2D( const basegfx::B3DPoint& rPoint );
64 sal_Bool IsParallel() const { return bParallel; };
67 friend class Transformation2D;
69 protected :
71 static basegfx::B3DPoint Rotate( const basegfx::B3DPoint& rPoint, const double x, const double y, const double z );
72 // static void Rotate( basegfx::B3DPolyPolygon&, const basegfx::B3DPoint& rRotateCenter, const double x, const double y, const double z );
73 static double Fix16ToAngle( sal_Int32 nFixAngle );
74 static Rectangle CalculateNewSnapRect( const Rectangle& rOriginalSnapRect, const DffPropSet& );
76 public :
78 static SdrObject* Create3DObject( const SdrObject* pSource, const DffPropSet&,
79 SfxItemSet&, Rectangle& rSnapRect, sal_uInt32 nSpFlags );
82 #endif