jj_dolan.qgeometry_plot#

jj_dolan.qgeometry_plot(ax: matplotlib.axes.Axes = None, plot_kw: dict = None) List#

Draw all the qgeometry of the component (polys and path etc.)

Parameters:
  • ax (matplotlib.axes.Axes) – Matplotlib axis to draw on. Defaults to None. When None, it gets the current axis.

  • plot_kw (dict) – Parameters dictionary.

Returns:

The list of qgeometry draw

Return type:

List

Example use:

Suppose you had a component called q1:

fig, ax = draw.mpl.figure_spawn() q1.qgeometry_plot(ax)