Circle Graph Layout Method
Options
Description
Examples
center=[numeric, numeric]
a point in the plane for the center of the circle. 0,0 is the default.
phase=numeric
the angle in radians at which to put the first vertex of the graph
radius=numeric
the radius of the circle
The circle layout method evenly spaces the vertices of the graph along a circle in order.
This layout method works in two dimensions only.
withGraphTheory:
withSpecialGraphs:
withRandomGraphs:
G≔Graphundirected,1,2,1,4,2,3,3,4
G≔Graph 1: an undirected graph with 4 vertices and 4 edge(s)
DrawGraphG,layout=circle
DrawGraphG,layout=circle,layoutoptions=phase=π3
See Also
GraphTheory[DrawGraph]
Download Help Document