summaryrefslogtreecommitdiffstats
path: root/src/extension/internal/bitmap/wave.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/extension/internal/bitmap/wave.h')
-rw-r--r--src/extension/internal/bitmap/wave.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/extension/internal/bitmap/wave.h b/src/extension/internal/bitmap/wave.h
new file mode 100644
index 000000000..8ee1fc7f5
--- /dev/null
+++ b/src/extension/internal/bitmap/wave.h
@@ -0,0 +1,30 @@
+/*
+ * Copyright (C) 2007 Authors:
+ * Christopher Brown <audiere@gmail.com>
+ * Ted Gould <ted@gould.cx>
+ *
+ * Released under GNU GPL, read the file 'COPYING' for more information
+ */
+
+#include "imagemagick.h"
+
+namespace Inkscape {
+namespace Extension {
+namespace Internal {
+namespace Bitmap {
+
+class Wave : public ImageMagick
+{
+private:
+ float _amplitude;
+ int _wavelength;
+public:
+ void applyEffect(Magick::Image *image);
+ void refreshParameters(Inkscape::Extension::Effect *module);
+ static void init(void);
+};
+
+}; /* namespace Bitmap */
+}; /* namespace Internal */
+}; /* namespace Extension */
+}; /* namespace Inkscape */