Skip to content

Commit

Permalink
again f
Browse files Browse the repository at this point in the history
  • Loading branch information
lazarusA committed Jan 2, 2024
1 parent 3ff4548 commit f0de7bd
Show file tree
Hide file tree
Showing 17 changed files with 4,832 additions and 4,831 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ build
*tmp
docs/src/.vitepress/dist
docs/src/.vitepress/cache
docs/docs_site/.vitepress/dist
docs/docs_site/.vitepress/cache
docs/src/examples

.cache
Expand Down
700 changes: 350 additions & 350 deletions docs/docs_site/examples/2d/arrows/arrows.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
328 changes: 164 additions & 164 deletions docs/docs_site/examples/2d/heatmaps/heatmap.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1,160 changes: 580 additions & 580 deletions docs/docs_site/examples/2d/heatmaps/text_heatmap.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
80 changes: 40 additions & 40 deletions docs/docs_site/examples/2d/histogram/parallel_image_hist.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
650 changes: 325 additions & 325 deletions docs/docs_site/examples/2d/lines/line_cmap.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1,092 changes: 546 additions & 546 deletions docs/docs_site/examples/2d/lines/line_cmaps.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1,076 changes: 538 additions & 538 deletions docs/docs_site/examples/2d/lines/line_cmaps_a.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3,312 changes: 1,656 additions & 1,656 deletions docs/docs_site/examples/2d/lines/line_inset_h.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
142 changes: 71 additions & 71 deletions docs/docs_site/examples/2d/linesegments/RRGraph.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
234 changes: 117 additions & 117 deletions docs/docs_site/examples/2d/scatters/bubble_plot.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
260 changes: 130 additions & 130 deletions docs/docs_site/examples/2d/scatters/bubble_plot_logxy.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
610 changes: 305 additions & 305 deletions docs/docs_site/examples/2d/scatters/scatters_colormap.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/docs_site/examples/3d/meshes/Earth_planes.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions docs/docs_site/examples/3d/meshes/how_to_cube.md

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/docs_site/examples/animations/scatter_size.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ with_theme(theme_dark()) do
limits!(ax, 0, 2, 0, 1)
# the animation is done by updating the Observable values
# change assets->(your folder) to make it work in your local env
record(fig, joinpath("assets", "animScatters.mp4"),
record(fig, "animScatters.mp4",
framerate = 24, profile = "main") do io
for i in 1:0.1:8
msize[] = i * initms
Expand All @@ -30,5 +30,5 @@ end
```


![type:video](./assets/animScatters.mp4)
![type:video](animScatters.mp4)

5 changes: 2 additions & 3 deletions examples/animations/scatter_size.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
using GLMakie, Random
GLMakie.activate!()
mkpath("assets")#hide

Random.seed!(123)
npts = 100
Expand All @@ -16,7 +15,7 @@ with_theme(theme_dark()) do
limits!(ax, 0, 2, 0, 1)
## the animation is done by updating the Observable values
## change assets->(your folder) to make it work in your local env
record(fig, joinpath("assets", "animScatters.mp4"),
record(fig, "animScatters.mp4",
framerate = 24, profile = "main") do io
for i in 1:0.1:8
msize[] = i * initms
Expand All @@ -26,4 +25,4 @@ with_theme(theme_dark()) do
nothing # hide
end

# ![type:video](./assets/animScatters.mp4)
# ![type:video](animScatters.mp4)

0 comments on commit f0de7bd

Please sign in to comment.