Final super_shape variation.

This commit is contained in:
utak3r 2007-06-23 19:34:52 +00:00
parent 988279bf14
commit 2a3db64f9e

View File

@ -28,7 +28,7 @@ uses
type type
TVariationSuperShape = class(TBaseVariation) TVariationSuperShape = class(TBaseVariation)
private private
m, n, rnd, a, b, holes : double; m, n1, n2, n3, rnd, holes : double;
public public
constructor Create; constructor Create;
@ -61,34 +61,39 @@ asm
FWAIT FWAIT
end; end;
function atan2(const y, x: double): double;
asm
FLD y
FLD x
FPATAN
end;
procedure TVariationSuperShape.CalcFunction; procedure TVariationSuperShape.CalcFunction;
var var
r, theta, tmp : double; r, theta : double;
t1, t2 : double; t1, t2 : double;
dist: double; dist: double;
t1a, t2a: double; t1a, t2a: double;
begin begin
theta := 0;
if n = 0 then if n1 = 0 then
r := 0 r := 0
else begin else begin
theta := arctan2(FTy^, FTx^); theta := atan2(FTy^, FTx^);
SinCos((m*theta+pi)/4, t2, t1); SinCos((m*theta+pi)/4, t2, t1);
t1 := t1/a;
t1 := abs(t1); t1 := abs(t1);
t1 := power(t1, n); t1 := power(t1, n2);
t2 := t2/b;
t2 := abs(t2); t2 := abs(t2);
t2 := power(t2, n); t2 := power(t2, n3);
if rnd < 1.0 then if rnd < 1.0 then
dist := sqrt(sqr(FTx^)+sqr(FTy^)) dist := sqrt(sqr(FTx^)+sqr(FTy^))
else else
dist := 0; dist := 0;
r := (rnd*random + (1.0-rnd)*dist - holes) * power(t1+t2, -1/n); r := (rnd*random + (1.0-rnd)*dist - holes) * power(t1+t2, -1/n1);
end; end;
if (abs(r) = 0) then if (abs(r) = 0) then
@ -116,10 +121,10 @@ class function TVariationSuperShape.GetVariableNameAt(const Index: integer): str
begin begin
case Index Of case Index Of
0: Result := 'super_shape_m'; 0: Result := 'super_shape_m';
1: Result := 'super_shape_n'; 1: Result := 'super_shape_n1';
2: Result := 'super_shape_rnd'; 2: Result := 'super_shape_n2';
3: Result := 'super_shape_a'; 3: Result := 'super_shape_n3';
4: Result := 'super_shape_b'; 4: Result := 'super_shape_rnd';
5: Result := 'super_shape_holes'; 5: Result := 'super_shape_holes';
else else
Result := ''; Result := '';
@ -139,8 +144,16 @@ begin
if Name = 'super_shape_m' then begin if Name = 'super_shape_m' then begin
m := Value; m := Value;
Result := True; Result := True;
end else if Name = 'super_shape_n' then begin end else if Name = 'super_shape_n1' then begin
n := Value; n1 := Value;
Result := True;
end
else if Name = 'super_shape_n2' then begin
n2 := Value;
Result := True;
end
else if Name = 'super_shape_n3' then begin
n3 := Value;
Result := True; Result := True;
end end
else if Name = 'super_shape_rnd' then begin else if Name = 'super_shape_rnd' then begin
@ -152,14 +165,6 @@ begin
rnd := Value; rnd := Value;
Result := True; Result := True;
end end
else if Name = 'super_shape_a' then begin
a := Value;
Result := True;
end
else if Name = 'super_shape_b' then begin
b := Value;
Result := True;
end
else if Name = 'super_shape_holes' then begin else if Name = 'super_shape_holes' then begin
holes := Value; holes := Value;
Result := True; Result := True;
@ -174,22 +179,22 @@ begin
if Name = 'super_shape_m' then begin if Name = 'super_shape_m' then begin
Value := m; Value := m;
Result := True; Result := True;
end else if Name = 'super_shape_n' then begin end else if Name = 'super_shape_n1' then begin
Value := n; Value := n1;
Result := True;
end
else if Name = 'super_shape_n2' then begin
Value := n2;
Result := True;
end
else if Name = 'super_shape_n3' then begin
Value := n3;
Result := True; Result := True;
end end
else if Name = 'super_shape_rnd' then begin else if Name = 'super_shape_rnd' then begin
Value := rnd; Value := rnd;
Result := True; Result := True;
end end
else if Name = 'super_shape_a' then begin
Value := a;
Result := True;
end
else if Name = 'super_shape_b' then begin
Value := b;
Result := True;
end
else if Name = 'super_shape_holes' then begin else if Name = 'super_shape_holes' then begin
Value := holes; Value := holes;
Result := True; Result := True;
@ -202,11 +207,11 @@ constructor TVariationSuperShape.Create;
begin begin
inherited Create; inherited Create;
m := 4.0; m := 5.0;
n := 1.0; n1 := 2.0;
n2 := 0.3;
n3 := 0.3;
rnd := 0.0; rnd := 0.0;
a := 1.0;
b := 1.0;
holes := 1.0; holes := 1.0;
end; end;