예제 #1
0
파일: View.cs 프로젝트: orf53975/mousesim
 public void DrawVisibility(Maze maze, bool[,] visible)
 {
     BeginDraw(g =>
     {
         Graphicer.DrawVisibility(g, PictureBox_Maze.Size, maze, visible);
     });
 }
예제 #2
0
파일: View.cs 프로젝트: orf53975/mousesim
 public void DrawAgent(Maze maze, Simulator sim)
 {
     BeginDraw(g =>
     {
         Graphicer.DrawAgent(g, PictureBox_Maze.Size, maze, sim);
     });
 }
예제 #3
0
파일: View.cs 프로젝트: orf53975/mousesim
 public void DrawArrow(int from_x, int from_y, int to_x, int to_y)
 {
     BeginDraw(g =>
     {
         Graphicer.DrawArrow(g, PictureBox_Maze.Size, ctrl.Maze, from_x, from_y, to_x, to_y);
     });
 }
예제 #4
0
파일: View.cs 프로젝트: orf53975/mousesim
 public void DrawMaze(Maze maze)
 {
     BeginDraw(g =>
     {
         Graphicer.DrawGoal(g, PictureBox_Maze.Size, maze);
         Graphicer.DrawMaze(g, PictureBox_Maze.Size, maze);
     });
 }