Code

08729150e2119b97532a4d3d7b4999f79d670717
[inkscape.git] / src / box3d-face.h
1 #ifndef __SP_3DBOX_FACE_H__
2 #define __SP_3DBOX_FACE_H__
4 /*
5  * Face of a 3D box ('perspectivic rectangle')
6  *
7  * Authors:
8  *   Maximilian Albert <Anhalter42@gmx.de>
9  *
10  * Copyright (C) 2007      Authors
11  *
12  * Released under GNU GPL, read the file 'COPYING' for more information
13  */
15 #include "perspective-line.h"
16 #include "display/curve.h"
17 #include "sp-path.h"
18 #include "sp-object.h"
19 #include "inkscape.h"
20 #include "desktop-style.h"
21 #include "desktop.h"
22 #include "xml/document.h"
24 class SP3DBox;
26 class Box3DFace {
27 public:
28     Box3DFace(SP3DBox *box, NR::Point &A, NR::Point &B, NR::Point &C, NR::Point &D,
29                             Box3D::Axis plane, Box3D::FrontOrRear rel_pos);
30     Box3DFace(Box3DFace const &box3dface);
31     ~Box3DFace();
33     NR::Point operator[](unsigned int i);
34     void draw(SP3DBox *box3d, SPCurve *c);
36     /***
37     void set_shape(NR::Point const ul, NR::Point const lr,
38                    Box3D::Axis const dir1, Box3D::Axis const dir2,
39                    unsigned int shift_count = 0, NR::Maybe<NR::Point> pt_align = NR::Nothing(),
40                    bool align_along_PL = false);
41     ***/
42     void set_corners (NR::Point &A, NR::Point &B, NR::Point &C, NR::Point &D);
43     void set_face (NR::Point const A, NR::Point const C, Box3D::Axis const dir1, Box3D::Axis const dir2);
44     
45     void hook_path_to_3dbox();
46     void set_path_repr();
47     void set_curve();
48     gchar * svg_repr_string();
50 private:
51     NR::Point *corners[4];
53     Box3D::Axis dir1;
54     Box3D::Axis dir2;
55     
56     SPPath *path;
57     SP3DBox *parent_box3d;
58 };
60 #endif