synfig-core  1.0.3
random_noise.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_RANDOM_H
27 #define __SYNFIG_RANDOM_H
28 
29 /* === H E A D E R S ======================================================= */
30 
31 /* === M A C R O S ========================================================= */
32 
33 /* === T Y P E D E F S ===================================================== */
34 
35 /* === C L A S S E S & S T R U C T S ======================================= */
36 
37 
38 #define POOL_SIZE (256)
40 {
41  int seed_;
42 public:
43 
44  void set_seed(int x);
45  int get_seed()const { return seed_; }
46 
48  {
55  };
56 
57  float operator()(int subseed,int x,int y=0, int t=0)const;
58  float operator()(SmoothType smooth,int subseed,float x,float y=0,float t=0,int loop=0)const;
59 };
60 
61 /* === E N D =============================================================== */
62 
63 #endif