Exemplo n.º 1
0
 public void Draw(Graphics g, Pen cameraPen = null, Pen rayPen = null)
 {
     Step.Point.Draw(g, Pens.Black);
     Location.Draw(g, cameraPen);
     FOVStart.Draw(g, rayPen);
     FOVEnd.Draw(g, rayPen);
 }
Exemplo n.º 2
0
Arquivo: Step.cs Projeto: MoIdriez/SM
 public void Rotate(double r)
 {
     FOVStart.Rotate(r);
     FOVEnd.Rotate(r);
 }