Exemple #1
0
 //private Optimize optimize;
 // Constructor
 public Interpretor()
 {
     this.data = null;
     this.bezier = new Bezier();
     this.myOrders = new Orders();
     //this.optimize = new Optimize();
 }
Exemple #2
0
 public Painter(ClientTcp client)
 {
     InitializeComponent();
     this.g = this.pPainter.CreateGraphics();
     this.tabpointF = new List<PointF>();
     this.myOrder = new Orders();
     this.myClient = client;
     debug = new Log(Constants.logPainter);
 }
Exemple #3
0
 //log de debug
 //private Log debug = null;
 public PainterRealTime(ClientTcp client)
 {
     InitializeComponent();
     this.g = this.pPainter.CreateGraphics();
     this.tabpointF = new List<PointF>();
     this.myOrder = new Orders();
     this.myClient = client;
     this.optimize = new Optimize();
     //debug
     //this.debug = new Log(Constants.logPainterRealTime);
 }