Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ All notable changes to this project will be documented in this file.
## [Unreleased]

### Changed
- Moved example notebooks from `examples/` to `demos/` folder.
- Added infinite zoom (Droste effect) example to the docs gallery.
- `Paint` toolbar icons: replaced generic pencil icons with a distinct pen (brush) and highlighter (marker) to make the tools easier to tell apart.

## [0.3.1] - 2026-03-25
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
Binary file added mkdocs/assets/gallery/zooming.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 12 additions & 4 deletions mkdocs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -227,19 +227,27 @@ These notebooks show how to combine multiple widgets for more complex workflows.

<div class="example-gallery">
<div class="example-item">
<a target="_blank" href="https://molab.marimo.io/github/koaning/wigglystuff/blob/main/examples/dimensions.py" class="example-img"><img src="assets/gallery/dimensions.png" alt="Dimensions"></a>
<a target="_blank" href="https://molab.marimo.io/github/koaning/wigglystuff/blob/main/demos/dimensions.py" class="example-img"><img src="assets/gallery/dimensions.png" alt="Dimensions"></a>
<div class="example-content">
<div class="example-title">Dimensions</div>
<div class="example-desc">Explore high-dimensional data with parallel coordinates and interactive scatter plots.</div>
</div>
<div class="gallery-links"><a target="_blank" href="https://molab.marimo.io/github/koaning/wigglystuff/blob/main/examples/dimensions.py">molab</a><a target="_blank" href="https://github.com/koaning/wigglystuff/blob/main/examples/dimensions.py">Source</a></div>
<div class="gallery-links"><a target="_blank" href="https://molab.marimo.io/github/koaning/wigglystuff/blob/main/demos/dimensions.py">molab</a><a target="_blank" href="https://github.com/koaning/wigglystuff/blob/main/demos/dimensions.py">Source</a></div>
</div>
<div class="example-item">
<a target="_blank" href="https://molab.marimo.io/github/koaning/wigglystuff/blob/main/examples/fashion-mnist-parallel-coords.py" class="example-img"><img src="assets/gallery/fashion-mnist-parallel-coords.png" alt="Fashion MNIST"></a>
<a target="_blank" href="https://molab.marimo.io/github/koaning/wigglystuff/blob/main/demos/fashion-mnist-parallel-coords.py" class="example-img"><img src="assets/gallery/fashion-mnist-parallel-coords.png" alt="Fashion MNIST"></a>
<div class="example-content">
<div class="example-title">Fashion MNIST</div>
<div class="example-desc">Visualize Fashion MNIST embeddings with parallel coordinates filtering.</div>
</div>
<div class="gallery-links"><a target="_blank" href="https://molab.marimo.io/github/koaning/wigglystuff/blob/main/examples/fashion-mnist-parallel-coords.py">molab</a><a target="_blank" href="https://github.com/koaning/wigglystuff/blob/main/examples/fashion-mnist-parallel-coords.py">Source</a></div>
<div class="gallery-links"><a target="_blank" href="https://molab.marimo.io/github/koaning/wigglystuff/blob/main/demos/fashion-mnist-parallel-coords.py">molab</a><a target="_blank" href="https://github.com/koaning/wigglystuff/blob/main/demos/fashion-mnist-parallel-coords.py">Source</a></div>
</div>
<div class="example-item">
<a target="_blank" href="https://molab.marimo.io/github/koaning/wigglystuff/blob/main/demos/zooming.py" class="example-img"><img src="assets/gallery/zooming.png" alt="Infinite Zoom"></a>
<div class="example-content">
<div class="example-title">Infinite Zoom</div>
<div class="example-desc">A 3Blue1Brown-inspired Droste effect simulator using the Paint widget with conformal mapping.</div>
</div>
<div class="gallery-links"><a target="_blank" href="https://molab.marimo.io/github/koaning/wigglystuff/blob/main/demos/zooming.py">molab</a><a target="_blank" href="https://github.com/koaning/wigglystuff/blob/main/demos/zooming.py">Source</a></div>
</div>
</div>
Loading