Note, some fresh examples may use features available in the repository head, but not yet in the release submitted to PyPI. Examples compatible with the PyPI release can be downloaded with::
python -m plotoptix.install examples
Collection of short and simple scripts to get started.
Many scripts are using Tkinter GUI, so here is a summary of mouse and keys actions:
- camera is selected by default, double-click an object/light to select it, double click again to select a primitive within the object, double-click in empty area or double-right-click to select camera
- use
rt.select(name)
method if an object or light is not in the view or it is hard to be selected - select parent mesh to apply transformations to all children as well
With camera selected:
- rotate eye around the target: hold and drag left mouse button
- rotate target around the eye (pan/tilt): hold and drag right mouse button
- zoom out/in (change field of view): hold shift + left mouse button and drag up/down
- move eye backward/forward (dolly): hold shift + right mouse button and drag up/down
- change focus distance in "depth of field" cameras: hold ctrl + left mouse button and drag up/down
- change aperture radius in "depth of field" cameras: hold ctrl + right mouse button and drag up/down
- focus at an object: hold ctrl + double-click left mouse button
- select an object: double-click left mouse button
With a light or an object / primitive selected:
- rotate around camera XY (right, up) coordinates: hold and drag left mouse button
- rotate around camera XZ (right, forward) coordinates: hold ctrl and drag left mouse button
- move in camera XY (right, up) coordinates: hold shift and drag left mouse button
- move in camera XZ (right, forward) coordinates: hold and drag right mouse button
- move in the normal direction (parallelogram light only): shift + right mouse button and drag up/down
- scale up/down: hold ctrl + shift + left mouse button and drag up/down
- select camera: double-click left mouse button in empty area or double-right-click anywhere
Keyboard:
- save image: F12
You'll find here super-basic examples of displaying data, like scatter plots or line plots below:
...and a bit more on tuning the available options, like the material and light shading modes:
...or usage of material properties such as refraction index and textures:
...or 2D postprocessing algorithms:
...or normal shading with displacement maps:
...or subsurface scattering parameters:
Callbacks in PlotOptiX are widely available throughout the raytracing process. You can provide functions to execute on each frame raytracing start, completion, etc., allowing for progressive image updates, saving output to file or making animated plots. Callbacks designed for heavy compute are executed in parallel to the raytracing, and those intended for accessing image data are synchronized with GPU transfers. That is a really powerfull pattern!
GitHub can render notebooks content, so it is best to look at descriptions inlined in the code there.
Collection of tutorials and artistic projects. Expect this section to grow slowly. Projects are large and need lots of work to prepare. We started with the "Making of the Moon", a really big one!
Now we're collecting scripts for the next project, "Simplex noise trajectories":