Documents · Verb reference
vase_demo
Convenience verb: build a demo stacked-polygon vase and plot it.
Callable type: Grammar verb / pipe stage · Browse: compatibility
Compatibility / legacy: Legacy demonstration using synthetic geometry, not a real-data analysis verb.
Availability: Synthetic geometry demonstration only; retained for compatibility, not a real-data analysis.
Usage
from cubedynamics import verbs as v
v.vase_demo(n_sections=4, shrink=0.1, interp='nearest', **plot_kwargs)
Arguments
| Argument | Meaning | Default |
|---|---|---|
| n_sections | Number of time sections for the stacked polygons. | 4 |
| shrink | Fractional shrink factor applied per section (0 = full cube, larger = more taper). | 0.1 |
| interp | Interpolation mode used for the VaseDefinition. | 'nearest' |
| plot_kwargs | Extra keyword arguments forwarded to the underlying plot verb, e.g. elev, azim, alpha, etc. | forwarded arguments |
Accepts
Consult the input parameters and implementation notes below. This namespace also includes direct helpers, not only pipe factories.
Returns
Callable A function suitable for use in the pipe: pipe(cube) | v.vase_demo(...)
Order / grammar behavior
A pipe passes the preceding result to the next callable. Confirm that the previous step's dimensions and semantic state satisfy the input contract. Reductions can remove dimensions; plotting may produce side effects.
Minimal example
Not promoted as an educational scientific example. Use the real FIRED workflow below.
Works with
Use only the input types documented by this callable; not every helper accepts every noun or VirtualCube.
See also
Implementation notes
No additional implementation notes in the current docstring.
Implementation source. Signatures and descriptions on this page are generated from this checkout, not hand-maintained copies.