예제 #1
0
파일: Viewport.cs 프로젝트: bertt/BruTile
 public Point ScreenToWorld(Point screenPosition)
 {
     return ScreenToWorld(screenPosition.X, screenPosition.Y);
 }
예제 #2
0
파일: Viewport.cs 프로젝트: bertt/BruTile
 public Point WorldToScreen(Point worldPosition)
 {
     return WorldToScreen(worldPosition.X, worldPosition.Y);
 }