Skip to content

Commit fb78320

Browse files
committed
replace abstractplotting refs in docs
1 parent c664ac9 commit fb78320

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

docs/src/api/visualize.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ CurrentModule = Flux3D
55
# Vusualize functions
66

77
!!! note
8-
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.
8+
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.
99

1010
## Example
1111

docs/src/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ julia> ] add Flux3D#master
3838
```
3939

4040
!!! note
41-
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.
41+
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.
4242

4343
---
4444

docs/src/tutorials/fit_mesh.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ and target shape.
1818

1919
```julia
2020
using Flux3D, Zygote, Flux, FileIO, Statistics, Plots
21-
using AbstractPlotting, GLMakie
21+
using Makie, GLMakie
2222

2323
Flux3D.Makie.inline!(true)
2424
Flux3D.Makie.set_theme!(show_axis = false)

examples/dgcnn_classification.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# !!!note
55
# For visualization purpose we will require to install Makie and
66
# compatible backend (GLMakie or WGLMakie). To install it simply run
7-
# `] add AbstractPlotting GLMakie` in the julia prompt.
7+
# `] add Makie GLMakie` in the julia prompt.
88

99
using Flux3D, Flux, Makie, CUDA
1010
using Flux: onehotbatch, onecold, onehot, crossentropy

examples/fit_mesh.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# !!!note
1515
# For visualization purpose we will require to install Makie and
1616
# compatible backend (GLMakie or WGLMakie). To install it simply run
17-
# `] add AbstractPlotting GLMakie` in the julia prompt.
17+
# `] add Makie GLMakie` in the julia prompt.
1818

1919
using Flux3D, Zygote, Flux, FileIO, Statistics, Plots
2020
using Makie

0 commit comments

Comments
 (0)