1 /* === S Y N F I G ========================================================= */
3 ** \brief Header file for implementation of the "Halftone 3" layer
8 ** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
9 ** Copyright (c) 2008 Chris Moore
11 ** This package is free software; you can redistribute it and/or
12 ** modify it under the terms of the GNU General Public License as
13 ** published by the Free Software Foundation; either version 2 of
14 ** the License, or (at your option) any later version.
16 ** This package is distributed in the hope that it will be useful,
17 ** but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 ** General Public License for more details.
22 /* ========================================================================= */
24 /* === S T A R T =========================================================== */
26 #ifndef __SYNFIG_HALFTONE3_H
27 #define __SYNFIG_HALFTONE3_H
29 /* === H E A D E R S ======================================================= */
31 #include <synfig/vector.h>
32 #include <synfig/valuenode.h>
33 #include <synfig/layer_composite.h>
34 #include <synfig/time.h>
35 #include <synfig/angle.h>
38 /* === M A C R O S ========================================================= */
40 /* === T Y P E D E F S ===================================================== */
42 /* === C L A S S E S & S T R U C T S ======================================= */
44 class Halftone3 : public synfig::Layer_Composite
46 SYNFIG_LAYER_MODULE_EXT
53 synfig::Color color[3];
54 float inverse_matrix[3][3];
57 synfig::Color color_func(const synfig::Point &x, float supersample,const synfig::Color &under_color)const;
59 float calc_supersample(const synfig::Point &x, float pw,float ph)const;
61 //float halftone_func(synfig::Point x)const;
68 virtual bool set_param(const synfig::String ¶m, const synfig::ValueBase &value);
69 virtual synfig::ValueBase get_param(const synfig::String ¶m)const;
70 virtual synfig::Color get_color(synfig::Context context, const synfig::Point &pos)const;
71 virtual bool accelerated_render(synfig::Context context,synfig::Surface *surface,int quality, const synfig::RendDesc &renddesc, synfig::ProgressCallback *cb)const;
72 synfig::Layer::Handle hit_check(synfig::Context context, const synfig::Point &point)const;
73 virtual Vocab get_param_vocab()const;
74 virtual bool reads_context()const { return true; }
75 }; // END of class Halftone3
77 /* === E N D =============================================================== */