App.Contracts.PathVertex.PathVertex C# (CSharp) Method

PathVertex() public method

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