Catfood.Shapefile.RectangleD.RectangleD C# (CSharp) Method

RectangleD() public method

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
return System
        public RectangleD(double left, double top, double right, double bottom)
        {
            Left = left;
            Top = top;
            Right = right;
            Bottom = bottom;
        }
    }
RectangleD