BattleShip.Core.CartesianPoint.CartesianPoint C# (CSharp) Method

CartesianPoint() public method

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