Catfood.Shapefile.RectangleD.RectangleD C# (CSharp) 메소드

RectangleD() 공개 메소드

A simple double precision rectangle
public RectangleD ( double left, double top, double right, double bottom ) : System
left double Left
top double Top
right double Right
bottom double Bottom
리턴 System
        public RectangleD(double left, double top, double right, double bottom)
        {
            Left = left;
            Top = top;
            Right = right;
            Bottom = bottom;
        }
    }
RectangleD