12 private readonly
double omega;
40 public override void Operate(ref
double x, ref
double y)
42 double r = Math.Pow(x * x + y * y, 0.25);
43 double a = Math.Atan2(x, y) / 2;
44 x = Math.Cos(a + this.omega) * r;
45 y = Math.Sin(a + this.omega) * r;
Class managing a script expression.
static double ToDouble(object Object)
Converts an object to a double value.
override IElement Evaluate(IElement Argument, Variables Variables)
TODO
override string FunctionName
TODO
override void Operate(ref double x, ref double y)
TODO
JuliaVariation(ScriptNode Parameter, int Start, int Length, Expression Expression)
TODO
ScriptNode Argument
Function argument.
Base class for all nodes in a parsed script tree.
int Length
Length of expression covered by node.
int Start
Start position in script expression.
Basic interface for all types of elements.