Air_Hockey_Simulator.Physics.PointD.PointD C# (CSharp) Method

PointD() public method

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