AIMA.Core.Util.DataStructure.Point2D.Point2D C# (CSharp) Метод

Point2D() публичный Метод

public Point2D ( double x, double y ) : System
x double
y double
Результат System
        public Point2D(double x, double y)
        {
            this.x = x;
            this.y = y;
        }