- randomCompleteGraph(int, PApplet) - Static method in class jto.p5graphtheory.Graph
-
This will generate a complete Graph
with the specified
number of vertices that are randomly distributed so that the coordinates
of each vertex lie somewhere on the canvas of the parent
PApplet
.
- removeEdge(Vertex, Vertex) - Method in class jto.p5graphtheory.Graph
-
This removes the Edge
containing the two vertices from the set
of edges if it exists in the Graph
.
- removeEdge(Edge) - Method in class jto.p5graphtheory.Graph
-
This removes the Edge
from the set
of edges if it exists in the Graph
.
- removeIncidentEdge(Edge) - Method in class jto.p5graphtheory.Vertex
-
This removes an edge from the Vertex's list of incident edges.
- removeVertex(Vertex) - Method in class jto.p5graphtheory.Graph
-
Removes the Vertex
from the Graph
if it is
present, or does nothing if it is not present.