"TutteEmbedding" (Graph Layout Method)
"TutteEmbedding" (Graph Layout Method)
- Vertex layout for GraphLayout.
- Use Tutte embedding to lay out vertices of a graph.
Details & Suboptions
- The Tutte embedding is a graph-drawing technique to position vertices of a graph so that the outer face is a convex polygon and each interior vertex is at the mean of the positions of its adjacent vertices.
- The Tutte embedding is typically used to lay out planar graphs.
- Possible settings to control the layout include:
-
"Rotation" Automatic layout rotation
Examples
open all close allBasic Examples (2)
Place vertices without crossing edges and minimize the sum of distances to neighbors:
Graph[{12, 13, 14, 23, 24, 34}, GraphLayout -> "TutteEmbedding"]"TutteEmbedding" works for 3-connected planar graphs only:
Graph[GraphData[{"JohnsonSkeleton", 77}, "EdgeList"], GraphLayout -> "TutteEmbedding"]