FlickrNet.PointD.PointD C# (CSharp) Method

PointD() public method

Default constructor.
public PointD ( double x, double y ) : System
x double
y double
return System
        public PointD(double x, double y)
        {
            _x = x;
            _y = y;
        }