3D Plotting nodes#

Overview#

Here is a general overview of the relation between classes.

Plots where x and y are 1-D arrays#

PyLabPlot3D()

Plot 3D data.

PyLabContour3D()

Plot 3D data.

PyLabContourf3D()

Plot 3D data.

Api#

VisuAlea implementation of pylab.mplot3d

class openalea.pylab_3d_wralea.py_pylab.PyLabContour3D[source]#

Plot 3D data. See mpl_toolkits.mplot3d.Axes3D.contour3d for details.

Parameters:
  • x (array) – x data

  • y (array) – y data

  • z (array) – z data

  • levels (int) – number of levels

  • kwargs (dict)

  • figure (int) – figure id

Example:

class openalea.pylab_3d_wralea.py_pylab.PyLabContourf3D[source]#

Plot 3D data. See mpl_toolkits.mplot3d.Axes3D.contourf3d for details.

Parameters:
  • x (array) – x data

  • y (array) – y data

  • z (array) – z data

  • levels (int) – number of levels

  • kwargs (dict)

  • figure (int) – figure id

Example:

class openalea.pylab_3d_wralea.py_pylab.PyLabPlot3D[source]#

Plot 3D data. See mpl_toolkits.mplot3d.Axes3D.plot for details.

Parameters:
  • x – the x coordinates of vertices

  • y – the y coordinates of vertices

  • z – the z values

  • marker (str) – a valid matplotlib marker (e.g., [ ‘+’ | ‘*’]).

  • markersize – default is 10

  • color

  • linestyle

  • kwargs (dict) – Connect a PyLabLine2D to customize the curve.

  • figure (int) – figure id

Example: