示例#1
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);
     }
 }
示例#2
0
 private void drawObliqueClicked(object sender, EventArgs e)
 {
     this.lastClicked = 3;
     init();
     Draw3d.drawOblique(this, this.polygonList);
 }