out of day already?!
This commit is contained in:
@ -5,10 +5,31 @@
|
||||
struct main_functionpars
|
||||
{
|
||||
public:
|
||||
//if I need it to go faster, I should make a seperate cutdown version
|
||||
int fractaliter;
|
||||
float threshold;
|
||||
float freezethresh;
|
||||
//these are included for flexibility and can be cut later
|
||||
float exponent;
|
||||
bool isjulia;
|
||||
cuvec3f juliac;
|
||||
};
|
||||
#endif
|
||||
|
||||
#ifdef AMSCLS_PPKFRACTAL
|
||||
struct main_functionpars
|
||||
{
|
||||
public:
|
||||
//if I need it to go faster, I should make a seperate cutdown version
|
||||
int fractaliter;
|
||||
float threshold;
|
||||
float freezethresh;
|
||||
//these are included for flexibility and can be cut later
|
||||
float scale;
|
||||
bool isjulia;
|
||||
cuvec3f juliac;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
#endif
|
||||
@ -17,9 +17,15 @@ namespace fractallevelset
|
||||
int nblockdiv;
|
||||
int nthreads;
|
||||
|
||||
//function parameters
|
||||
bool isjulia;
|
||||
cuvec3f juliac;
|
||||
float exponent;
|
||||
int fractaliter;
|
||||
float threshold;
|
||||
float freezethresh;
|
||||
|
||||
float scale;
|
||||
|
||||
|
||||
|
||||
|
||||
@ -39,7 +39,6 @@ class cuvec4f;
|
||||
// #endif
|
||||
|
||||
#define AMSCLS_MANDELBROT
|
||||
//#define AMSCLS_JULIA
|
||||
//#define AMSCLS_PPKFRACTAL
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user