Example #1
0
 public GraphBinaryExpression(GraphValue left, GraphValueOperation operation, GraphValue right)
 {
     this.left      = left;
     this.operation = operation;
     this.right     = right;
 }
Example #2
0
 public void Line(GraphValue x1, GraphValue y1, GraphValue x2, GraphValue y2, Pen pen)
 {
     target.Line(x1.FinalValue(XAxis), y1.FinalValue(YAxis), x2.FinalValue(XAxis), y2.FinalValue(YAxis), pen);
 }