Skip to content

Commit

Permalink
replace abstractplotting refs in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
nirmal-suthar committed Jan 11, 2022
1 parent c664ac9 commit fb78320
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/src/api/visualize.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ CurrentModule = Flux3D
# Vusualize functions

!!! note
Rendering of 3D structure is done using AbstractPlotting. Therefore, for visualization purpose we will be required to install Makie and compatible backend (GLMakie or WGLMakie). To install it simply run `] add Makie` in the julia prompt.
Rendering of 3D structure is done using Makie. Therefore, for visualization purpose we will be required to install Makie and compatible backend (GLMakie or WGLMakie). To install it simply run `] add Makie` in the julia prompt.

## Example

Expand Down
2 changes: 1 addition & 1 deletion docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ julia> ] add Flux3D#master
```

!!! note
Rendering of 3D structure is done using AbstractPlotting. Therefore, for visualization purpose we will be required to install Makie and compatible backend (GLMakie or WGLMakie). To install it simply run `] add Makie` in the julia prompt.
Rendering of 3D structure is done using Makie. Therefore, for visualization purpose we will be required to install Makie and compatible backend (GLMakie or WGLMakie). To install it simply run `] add Makie` in the julia prompt.

---

Expand Down
2 changes: 1 addition & 1 deletion docs/src/tutorials/fit_mesh.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ and target shape.

```julia
using Flux3D, Zygote, Flux, FileIO, Statistics, Plots
using AbstractPlotting, GLMakie
using Makie, GLMakie

Flux3D.Makie.inline!(true)
Flux3D.Makie.set_theme!(show_axis = false)
Expand Down
2 changes: 1 addition & 1 deletion examples/dgcnn_classification.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# !!!note
# For visualization purpose we will require to install Makie and
# compatible backend (GLMakie or WGLMakie). To install it simply run
# `] add AbstractPlotting GLMakie` in the julia prompt.
# `] add Makie GLMakie` in the julia prompt.

using Flux3D, Flux, Makie, CUDA
using Flux: onehotbatch, onecold, onehot, crossentropy
Expand Down
2 changes: 1 addition & 1 deletion examples/fit_mesh.jl
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# !!!note
# For visualization purpose we will require to install Makie and
# compatible backend (GLMakie or WGLMakie). To install it simply run
# `] add AbstractPlotting GLMakie` in the julia prompt.
# `] add Makie GLMakie` in the julia prompt.

using Flux3D, Zygote, Flux, FileIO, Statistics, Plots
using Makie
Expand Down

2 comments on commit fb78320

@nirmal-suthar
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/52136

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.1.6 -m "<description of version>" fb78320aeb7c56d4a27532f1dd468bdf26fda1dc
git push origin v0.1.6

Please sign in to comment.