LitDev.Engines.JsonVectorArray.JsonVectorArray C# (CSharp) Method

JsonVectorArray() public method

public JsonVectorArray ( List x, List y ) : System
x List
y List
return System
        public JsonVectorArray(List<float> x, List<float> y)
        {
            this.x = x;
            this.y = y;
        }
JsonVectorArray