75 lines
2.0 KiB
C
75 lines
2.0 KiB
C
|
/*
|
||
|
Apophysis Plugin
|
||
|
|
||
|
This program is free software; you can redistribute it and/or modify
|
||
|
it under the terms of the GNU General Public License as published by
|
||
|
the Free Software Foundation; either version 2 of the License, or
|
||
|
(at your option) any later version.
|
||
|
|
||
|
This program is distributed in the hope that it will be useful,
|
||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
GNU General Public License for more details.
|
||
|
|
||
|
You should have received a copy of the GNU General Public License
|
||
|
along with this program; if not, write to the Free Software
|
||
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||
|
*/
|
||
|
|
||
|
// Must define this structure before we include apoplugin.h
|
||
|
typedef struct
|
||
|
{
|
||
|
double julian2_a;
|
||
|
double julian2_b;
|
||
|
double julian2_c;
|
||
|
double julian2_d;
|
||
|
double julian2_e;
|
||
|
double julian2_f;
|
||
|
|
||
|
int julian2_power;
|
||
|
double julian2_dist;
|
||
|
|
||
|
int absN;
|
||
|
double cN;
|
||
|
double vvar2;
|
||
|
|
||
|
} Variables;
|
||
|
|
||
|
#include "apoplugin.h"
|
||
|
|
||
|
APO_PLUGIN("julian2");
|
||
|
|
||
|
APO_VARIABLES(
|
||
|
VAR_INTEGER_NONZERO(julian2_power, 2),
|
||
|
VAR_REAL(julian2_dist, 1.0),
|
||
|
VAR_REAL(julian2_a, 1.0),
|
||
|
VAR_REAL(julian2_b, 0.0),
|
||
|
VAR_REAL(julian2_c, 0.0),
|
||
|
VAR_REAL(julian2_d, 1.0),
|
||
|
VAR_REAL(julian2_e, 0.0),
|
||
|
VAR_REAL(julian2_f, 0.0)
|
||
|
);
|
||
|
|
||
|
int PluginVarPrepare(Variation* vp)
|
||
|
{
|
||
|
VAR(absN) = (int)abs(VAR(julian2_power));
|
||
|
VAR(cN) = VAR(julian2_dist) / VAR(julian2_power) / 2;
|
||
|
|
||
|
return TRUE;
|
||
|
}
|
||
|
|
||
|
int PluginVarCalc(Variation* vp)
|
||
|
{
|
||
|
double x = VAR(julian2_a) * FTx + VAR(julian2_b) * FTy + VAR(julian2_e);
|
||
|
double y = VAR(julian2_c) * FTx + VAR(julian2_d) * FTy + VAR(julian2_f);
|
||
|
double sina = 0.0, cosa = 0.0;
|
||
|
|
||
|
double angle = (atan2(y, x) + M_2PI * (rand() % (int)VAR(absN)))/ VAR(julian2_power);
|
||
|
double r = VVAR * pow(sqr(x) + sqr(y), VAR(cN));
|
||
|
|
||
|
fsincos(angle, &sina, &cosa);
|
||
|
FPx += r * cosa;
|
||
|
FPy += r * sina;
|
||
|
return TRUE;
|
||
|
}
|