Code

Only create the faces of a 3D box when needed (use pointers to refer to them).
[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 *box3d);
29     //Box3DFace(SP3DBox *box3d, NR::Point const ul, NR::Point const lr,
30     //          Box3D::Axis const dir1, Box3D::Axis const dir2,
31     //          unsigned int shift_count = 0, NR::Maybe<NR::Point> pt_align = NR::Nothing(), bool align_along_PL = false);
32     Box3DFace(Box3DFace const &box3dface);
33     NR::Point operator[](unsigned int i);
34     void draw(SP3DBox *box3d, SPCurve *c);
36     void set_shape(NR::Point const ul, NR::Point const lr,
37                    Box3D::Axis const dir1, Box3D::Axis const dir2,
38                    unsigned int shift_count = 0, NR::Maybe<NR::Point> pt_align = NR::Nothing(),
39                    bool align_along_PL = false);
40     void set_face (NR::Point const A, NR::Point const C, Box3D::Axis const dir1, Box3D::Axis const dir2);
41     
42     void hook_path_to_3dbox();
43     void set_path_repr();
44     void set_curve();
45     gchar * svg_repr_string();
47 private:
48     NR::Point corners[4];
50     Box3D::Axis dir1;
51     Box3D::Axis dir2;
52     
53     SPPath *path;
54     SP3DBox *parent_box3d; // the parent box
55 };
57 #endif