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.
with⁡GraphTheory:
with⁡SpecialGraphs:
with⁡RandomGraphs:
G≔Graph⁡undirected,1,2,1,4,2,3,3,4
G≔Graph 1: an undirected graph with 4 vertices and 4 edge(s)
DrawGraph⁡G,layout=circle
DrawGraph⁡G,layout=circle,layoutoptions=phase=π3
See Also
GraphTheory[DrawGraph]
Download Help Document