1 #ifndef SP_RADIAL_GRADIENT_H
2 #define SP_RADIAL_GRADIENT_H
4 /** \file
5 * SPRadialGradient: SVG <radialgradient> implementtion.
6 */
8 #include <glib/gtypes.h>
9 #include "sp-gradient.h"
10 #include "svg/svg-length.h"
11 #include "sp-radial-gradient-fns.h"
13 /** Radial gradient. */
14 struct SPRadialGradient : public SPGradient {
15 SVGLength cx;
16 SVGLength cy;
17 SVGLength r;
18 SVGLength fx;
19 SVGLength fy;
20 };
22 /// The SPRadialGradient vtable.
23 struct SPRadialGradientClass {
24 SPGradientClass parent_class;
25 };
28 #endif /* !SP_RADIAL_GRADIENT_H */
30 /*
31 Local Variables:
32 mode:c++
33 c-file-style:"stroustrup"
34 c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
35 indent-tabs-mode:nil
36 fill-column:99
37 End:
38 */
39 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :