Algorithms.Point2D.Point2D C# (CSharp) 메소드

Point2D() 공개 메소드

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