Beispiel #1
0
 private void drawParallelClicked(object sender, EventArgs e)
 {
     if (parallelProjectionAngle_text.Text == String.Empty)
     {
         return;
     }
     this.lastClicked = 2;
     init();
     Draw3d.drawParallel(this, this.polygonList);
 }
Beispiel #2
0
 public void tempPaint()
 {
     if (this.lastClicked == 1)
     {
         Draw3d.drawPrespective(this, this.polygonList);
     }
     else if (this.lastClicked == 2)
     {
         Draw3d.drawParallel(this, this.polygonList);
     }
     else if (this.lastClicked == 3)
     {
         Draw3d.drawOblique(this, this.polygonList);
     }
 }