This layout places vertices on a rectangular grid, in two or three
dimensions.
Usage
layout_on_grid(graph, width = 0, height = 0, dim = 2)
on_grid(...)
layout.grid.3d(graph, width = 0, height = 0)
Value
A two-column or three-column matrix.
Arguments
graph
The input graph.
width
The number of vertices in a single row of the grid. If this is
zero or negative, then for 2d layouts the width of the grid will be the
square root of the number of vertices in the graph, rounded up to the next
integer. Similarly, it will be the cube root for 3d layouts.
height
The number of vertices in a single column of the grid, for
three dimensional layouts. If this is zero or negative, then it is
determinted automatically.
The function places the vertices on a simple rectangular grid, one after the
other. If you want to change the order of the vertices, then see the
permute function.