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
12 changes: 11 additions & 1 deletion BACKLOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,13 @@
- [x] #330: Fix - Old plot not cleared in second figure (figure() call) in contour_demo.html (COMPLETED)
- [ ] #336: Fix - Streamplot and stateful streamplot example redundant

**Critical Infrastructure Issues (High Priority)** - ESCALATED TO DOING

**User-Facing Issues (Medium Priority)**
- [ ] #328: Fix - One legend entry too much in basic_plots.html second plot
- [ ] #327: Fix - MP4 link not showing on animation.html
- [ ] #347: Fix - Remove funny header from https://lazy-fortran.github.io/fortplot/

**Infrastructure & Documentation Issues (Lower Priority)**
- [ ] #323: Test - add edge case tests for PDF heatmap color validation
- [ ] #324: Refactor - define epsilon constant for numerical comparisons
Expand All @@ -24,7 +31,10 @@
- [ ] #360: Refactor - split fortplot_raster.f90 to comply with file size limits

## DOING (Current Work)
- [ ] #336: Fix - Streamplot and stateful streamplot example redundant
- [ ] #361: Fix - Windows CI: test_legend_comprehensive and test_streamplot runtime failures

## BLOCKED (By Windows CI)
- [ ] #336: Fix - Streamplot and stateful streamplot example redundant (PR #362 ready but blocked by Windows CI)

## BLOCKED (Infrastructure Issues)

Expand Down
1 change: 0 additions & 1 deletion DESIGN.md
Original file line number Diff line number Diff line change
Expand Up @@ -690,7 +690,6 @@ subroutine streamplot(self, x, y, u, v, density, color, linewidth, &
- scatter_demo - 2D scatter plots
- show_viewer_demo - Display plot in viewer
- smart_show_demo - Smart show functionality
- stateful_streamplot - Streamplot with stateful API
- streamplot_demo - Vector field visualization
- unicode_demo - Unicode text support

Expand Down
1 change: 0 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,6 @@ create_build_dirs:
@mkdir -p output/example/fortran/show_viewer_demo
@mkdir -p output/example/fortran/smart_show_demo
@mkdir -p output/example/fortran/animation
@mkdir -p output/example/fortran/stateful_streamplot
@mkdir -p output/example/fortran/annotation_demo
@mkdir -p output/example/fortran/histogram_demo
@mkdir -p output/example/fortran/subplot_demo
Expand Down
2 changes: 0 additions & 2 deletions doc/examples/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,6 @@ Intelligent display mode selection based on environment.
### [Save Animation Demo](./save_animation.html)
Creating animated plots and saving to video files.

### [Stateful Streamplot](./stateful_streamplot.html)
Time-evolving vector field animations.

---

Expand Down
42 changes: 0 additions & 42 deletions doc/examples/stateful_streamplot.md

This file was deleted.

1 change: 0 additions & 1 deletion doc/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ Complete working examples with source code and generated plots.
- [Scatter Demo](https://github.com/lazy-fortran/fortplot/tree/main/example/fortran/scatter_demo) - Scatter plot basics
- [Show Viewer](https://github.com/lazy-fortran/fortplot/tree/main/example/fortran/show_viewer_demo) - Interactive display
- [Smart Show](https://github.com/lazy-fortran/fortplot/tree/main/example/fortran/smart_show_demo) - Intelligent display
- [Stateful Streamplot](https://github.com/lazy-fortran/fortplot/tree/main/example/fortran/stateful_streamplot) - Vector field evolution
- [Streamplot](https://github.com/lazy-fortran/fortplot/tree/main/example/fortran/streamplot_demo) - Vector field visualization
- [Subplot Demo](https://github.com/lazy-fortran/fortplot/tree/main/example/fortran/subplot_demo) - Multiple plot grids
- [Unicode Demo](https://github.com/lazy-fortran/fortplot/tree/main/example/fortran/unicode_demo) - Mathematical symbols
Expand Down
1 change: 0 additions & 1 deletion example/fortran/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ make example ARGS="example_name"
- [colored_contours](./colored_contours/) - Filled contours with colormaps
- [pcolormesh_demo](./pcolormesh_demo/) - Pseudocolor mesh plots
- [streamplot_demo](./streamplot_demo/) - Vector field visualization
- [stateful_streamplot](./stateful_streamplot/) - Time-evolving fields

### Scaling and Styling
- [scale_examples](./scale_examples/) - Log and symlog scales
Expand Down
1 change: 0 additions & 1 deletion example/fortran/stateful_streamplot/README.md

This file was deleted.

43 changes: 0 additions & 43 deletions example/fortran/stateful_streamplot/stateful_streamplot.f90

This file was deleted.

6 changes: 2 additions & 4 deletions src/fortplot_doc_examples.f90
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,7 @@ pure subroutine get_example_dir(index, dir)
case(14); dir = "example/fortran/show_viewer_demo"
case(15); dir = "example/fortran/smart_show_demo"
case(16); dir = "example/fortran/animation"
case(17); dir = "example/fortran/stateful_streamplot"
case(18); dir = "example/fortran/annotation_demo"
case(17); dir = "example/fortran/annotation_demo"
case default; dir = ""
end select
end subroutine get_example_dir
Expand All @@ -63,8 +62,7 @@ pure subroutine get_example_name(index, name)
case(14); name = "show_viewer_demo"
case(15); name = "smart_show_demo"
case(16); name = "animation"
case(17); name = "stateful_streamplot"
case(18); name = "annotation_demo"
case(17); name = "annotation_demo"
case default; name = ""
end select
end subroutine get_example_name
Expand Down
9 changes: 0 additions & 9 deletions src/fortplot_doc_media.f90
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,6 @@ subroutine scan_directory_for_media(dir, media_files, n_media)
call add_streamplot_files(dir, media_files, n_media)
case('output/example/fortran/unicode_demo')
call add_unicode_files(dir, media_files, n_media)
case('output/example/fortran/stateful_streamplot')
call add_stateful_streamplot_files(dir, media_files, n_media)
case('output/example/fortran/annotation_demo')
call add_annotation_demo_files(dir, media_files, n_media)
case default
Expand Down Expand Up @@ -175,13 +173,6 @@ subroutine add_unicode_files(dir, media_files, n_media)
call add_if_exists(dir, 'math_examples.png', media_files, n_media)
end subroutine add_unicode_files

subroutine add_stateful_streamplot_files(dir, media_files, n_media)
character(len=*), intent(in) :: dir
character(len=*), intent(out) :: media_files(:)
integer, intent(out) :: n_media

call add_if_exists(dir, 'stateful_streamplot.png', media_files, n_media)
end subroutine add_stateful_streamplot_files

subroutine add_annotation_demo_files(dir, media_files, n_media)
character(len=*), intent(in) :: dir
Expand Down
Loading