Algorithms.Point2D.Point2D C# (CSharp) Method

Point2D() public method

public Point2D ( double x, double y ) : System
x double
y double
return System
        public Point2D(double x, double y) {
            X = x;
            Y = y;
        }