Package structure¶
The silx.gui.plot3d
package provides 3D visualisation widgets.
This package is structured as follows.
Widget-level API¶
Widgets are available as modules of the silx.gui.plot3d
packages.
The Plot3DWidget
module provides the OpenGL canvas where the scene is rendered.
The Plot3DWindow
module provides a QMainWindow
with a Plot3DWindow
as its central widget
and toolbars: InteractiveModeToolBar
, ViewpointToolBar
and OutputToolBar
.
QAction
that can be associated with a Plot3DWidget
are defined in the actions
package.
Toolbars and tool buttons are available in tools
package.
The ScalarFieldView
module defines the ScalarFieldView
widget that displays iso-surfaces of a 3D scalar data set and the associated classes.
The SFViewParamTree
module defines a SFViewParamTree.TreeView
widget that can be attached to a ScalarFieldView
to control the display.
OpenGL scene API¶
This API is NOT stable.
Widgets of silx.gui.plot3d
are based on the following sub-packages:
scene
: Provides a hierarchical scene structure handling rendering and interaction.utils
: Miscellaneous supporting modules.silx.gui._glutils
: Loads PyOpenGL and provides classes to handle OpenGL resources.
scene
axes
: Bounding Box with axes ticks and labelscamera
: Projection management classescore
: Base class of the scene nodescutplane
: Cutting plane primitiveevent
: Scene event systemfunction
: OpenGL shader functionsinteraction
: User interaction implementationprimitives
: Base rendering primitivestext
: Text field rendering primitivestransform
: Transformation matrix systemutils
: Miscellaneousviewport
: Root of a scene treewindow
: On-screen window
utils
_glutils