Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
FishEyeVariation.cs
1
using
System;
2
3
namespace
Waher.Script.Fractals.IFS.Variations.Flame
4
{
8
public
class
FishEyeVariation
:
FlameVariationZeroParameters
9
{
13
public
FishEyeVariation
(
int
Start
,
int
Length
,
Expression
Expression
)
14
: base(
Start
,
Length
,
Expression
)
15
{
16
}
17
21
public
override
void
Operate
(ref
double
x, ref
double
y)
22
{
23
double
r = 2 / (1 + Math.Sqrt(x * x + y * y));
24
double
x2 = r * y;
25
y = r * x;
26
x = x2;
27
}
28
32
public
override
string
FunctionName
=> nameof(
FishEyeVariation
);
33
}
34
}
Waher.Script.Expression
Class managing a script expression.
Definition:
Expression.cs:39
Waher.Script.Fractals.IFS.Variations.Flame.FishEyeVariation
TODO
Definition:
FishEyeVariation.cs:9
Waher.Script.Fractals.IFS.Variations.Flame.FishEyeVariation.FishEyeVariation
FishEyeVariation(int Start, int Length, Expression Expression)
TODO
Definition:
FishEyeVariation.cs:13
Waher.Script.Fractals.IFS.Variations.Flame.FishEyeVariation.FunctionName
override string FunctionName
TODO
Definition:
FishEyeVariation.cs:32
Waher.Script.Fractals.IFS.Variations.Flame.FishEyeVariation.Operate
override void Operate(ref double x, ref double y)
TODO
Definition:
FishEyeVariation.cs:21
Waher.Script.Fractals.IFS.Variations.FlameVariationZeroParameters
TODO
Definition:
FlameVariationZeroParameters.cs:16
Waher.Script.Model.ScriptNode.Length
int Length
Length of expression covered by node.
Definition:
ScriptNode.cs:101
Waher.Script.Model.ScriptNode.Start
int Start
Start position in script expression.
Definition:
ScriptNode.cs:92
Waher.Script.Fractals.IFS.Variations.Flame
Definition:
ArchVariation.cs:4
IoTGateway
Script
Waher.Script.Fractals
IFS
Variations
Flame
FishEyeVariation.cs
Generated by
1.9.5