예제 #1
0
파일: Rect.cs 프로젝트: oldmannus/PitGit
 public IRect(IRect source)
 {
     x      = source.x;
     y      = source.y;
     Width  = source.Width;
     Height = source.Height;
 }
예제 #2
0
파일: Rect.cs 프로젝트: oldmannus/PitGit
        public IRect ToRectangle()
        {
            IRect r = new IRect();

            r.x      = x;
            r.y      = y;
            r.Width  = Width;
            r.Height = Height;

            return(r);
        }