12 private readonly
double x;
13 private readonly
double y;
42 return new string[] {
"x",
"y" };
60 public override void Operate(ref
double x, ref
double y)
62 x = (2 * Math.Floor(x / this.x) + 1) * this.x - x;
63 y = (2 * Math.Floor(y / this.y) + 1) * this.y - y;
Class managing a script expression.
static double ToDouble(object Object)
Converts an object to a double value.
override void Operate(ref double x, ref double y)
TODO
override IElement Evaluate(IElement[] Arguments, Variables Variables)
TODO
override string FunctionName
TODO
RectanglesVariation(ScriptNode x, ScriptNode y, int Start, int Length, Expression Expression)
TODO
override string[] DefaultArgumentNames
TODO
object AssociatedObjectValue
TODO
ScriptNode[] Arguments
Function arguments.
Base class for all nodes in a parsed script tree.
int Length
Length of expression covered by node.
Expression Expression
Expression of which the node is a part.
int Start
Start position in script expression.
Basic interface for all types of elements.
ArgumentType
Type of parameter used in a function definition or a lambda definition.