NewTOAPIA.Drawing.math_stroke.add_vertex C# (CSharp) Method

add_vertex() private method

private add_vertex ( IVertexDest vc, double x, double y ) : void
vc IVertexDest
x double
y double
return void
        private void add_vertex(IVertexDest vc, double x, double y)
        {
            vc.add(new Vector2D(x, y));
        }