GenerateGraph.ToString C# (CSharp) Method

ToString() public method

Returns a string representation of all the triangles of the nodes
public ToString ( ) : string
return string
    public override string ToString()
    {
        string return_string = "";
        foreach (Node node in nodes) {
             return_string += "\n" + (node.position.ToString());
        }
        return return_string;
    }