Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Generates a plot using the specified output device.


Anchor
mvl_regular_layout
mvl_regular_layout

definition mvl_regular_layout(view: definition, page_columns: number, page_rows: number, subpage_columns: number, subpage_rows: number)

definition mvl_regular_layout(view: definition, page_columns: number, page_rows: number, subpage_columns: number, subpage_rows: number, plot_area: list)

Creates a list of plot pages arranged in a regular grid using the specified view. Each plot page contains a set of (one or more) subframes, each arranged in a regular grid. The output is suitable for input into the function plot_superpage(). When a 6th argument is specified it defines the plot area the layout will occupy in the output. It is given as a list of [TOP, BOTTOM, LEFT, RIGHT] where the values are specified in percentages (0-100).

Example:

# create a set of frames using the default geo view

page_list = mvl_regular_layout(geoview(), 2, 1, 1, 3)

# create a display window using this set of pages

dw = plot_superpage(pages: page_list)