out of day already?!

This commit is contained in:
2026-04-30 23:19:08 -04:00
parent 63b7c2f043
commit fdfd239962
8 changed files with 60 additions and 3 deletions

View File

@ -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

View File

@ -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;

View File

@ -39,7 +39,6 @@ class cuvec4f;
// #endif
#define AMSCLS_MANDELBROT
//#define AMSCLS_JULIA
//#define AMSCLS_PPKFRACTAL