synfig-core  1.0.3
metaballs.h
Go to the documentation of this file.
1 /* === S Y N F I G ========================================================= */
22 /* ========================================================================= */
23 
24 /* === S T A R T =========================================================== */
25 
26 #ifndef __SYNFIG_METABALLS_H
27 #define __SYNFIG_METABALLS_H
28 
29 /* === H E A D E R S ======================================================= */
30 
32 #include <synfig/gradient.h>
33 #include <synfig/vector.h>
34 #include <synfig/value.h>
35 #include <vector>
36 
37 /* === M A C R O S ========================================================= */
38 
39 /* === T Y P E D E F S ===================================================== */
40 
41 /* === C L A S S E S & S T R U C T S ======================================= */
43 {
45 
46 private:
48  synfig::ValueBase param_gradient;
50  synfig::ValueBase param_centers;
52  synfig::ValueBase param_radii;
54  synfig::ValueBase param_weights;
56  synfig::ValueBase param_threshold;
58  synfig::ValueBase param_threshold2;
60  synfig::ValueBase param_positive;
61 
62  synfig::Real densityfunc(const synfig::Point &p, const synfig::Point &c, synfig::Real R)const;
63 
64  synfig::Real totaldensity(const synfig::Point &pos)const;
65 
66 public:
67 
68  Metaballs();
69 
70  virtual bool set_param(const synfig::String & param, const synfig::ValueBase &value);
71 
72  virtual synfig::ValueBase get_param(const synfig::String & param)const;
73 
74  virtual synfig::Color get_color(synfig::Context context, const synfig::Point &pos)const;
75  virtual synfig::CairoColor get_cairocolor(synfig::Context context, const synfig::Point &pos)const;
76 
77  virtual bool accelerated_render(synfig::Context context,synfig::Surface *surface,int quality, const synfig::RendDesc &renddesc, synfig::ProgressCallback *cb)const;
78 
79  virtual Vocab get_param_vocab()const;
80 
81  virtual synfig::Layer::Handle hit_check(synfig::Context context, const synfig::Point &point)const;
82 }; // END of class Metaballs
83 
84 /* === E N D =============================================================== */
85 
86 #endif