21 public override void Operate(ref
double x, ref
double y)
23 double r = Math.Sqrt(x * x + y * y);
24 double a = Math.Atan2(x, y);
25 x = a * Math.Sin(r * Math.PI) / Math.PI;
26 y = a * Math.Cos(r * Math.PI) / Math.PI;
Class managing a script expression.
override void Operate(ref double x, ref double y)
TODO
override string FunctionName
TODO
DiscVariation(int Start, int Length, Expression Expression)
TODO
int Length
Length of expression covered by node.
int Start
Start position in script expression.