Code

r16217@tres: ted | 2007-08-10 10:36:27 -0700
[inkscape.git] / src / extension / internal / bitmap / shade.h
1 /*
2  * Copyright (C) 2007 Authors:
3  *   Christopher Brown <audiere@gmail.com>
4  *   Ted Gould <ted@gould.cx>
5  *   
6  * Released under GNU GPL, read the file 'COPYING' for more information
7  */
9 #include "imagemagick.h"
11 namespace Inkscape {
12 namespace Extension {
13 namespace Internal {
14 namespace Bitmap {
16 class Shade : public ImageMagick
17 {
18 private:
19         float _azimuth;
20         float _elevation;
21         bool _colorShading;
22 public:
23         void applyEffect(Magick::Image *image);
24         void refreshParameters(Inkscape::Extension::Effect *module);
25         static void init(void);
26 };
28 }; /* namespace Bitmap */
29 }; /* namespace Internal */
30 }; /* namespace Extension */
31 }; /* namespace Inkscape */