box3d-side.h revision 182911d054ac2fa73e3bf625b5ea0710bfb416f0
#ifndef __BOX3D_SIDE_H__
#define __BOX3D_SIDE_H__
/*
* 3D box face implementation
*
* Authors:
* Maximilian Albert <Anhalter42@gmx.de>
*
* Copyright (C) 2007 Authors
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include "sp-polygon.h"
#include "axis-manip.h"
#define SP_TYPE_BOX3D_SIDE (box3d_side_get_type ())
#define SP_BOX3D_SIDE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), SP_TYPE_BOX3D_SIDE, Box3DSideClass))
// FIXME: Would it be better to inherit from SPPath instead?
};
struct Box3DSideClass {
};
GType box3d_side_get_type (void);
//void sp_box3d_side_position_set (Box3DSide *side, NR::Point corner1, NR::Point corner2);
#endif /* __BOX3D_SIDE_H__ */
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :