From fb78320aeb7c56d4a27532f1dd468bdf26fda1dc Mon Sep 17 00:00:00 2001 From: Nirmal Date: Tue, 11 Jan 2022 19:17:28 +0530 Subject: [PATCH] replace abstractplotting refs in docs --- docs/src/api/visualize.md | 2 +- docs/src/index.md | 2 +- docs/src/tutorials/fit_mesh.md | 2 +- examples/dgcnn_classification.jl | 2 +- examples/fit_mesh.jl | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/src/api/visualize.md b/docs/src/api/visualize.md index ed426d8..47c0608 100644 --- a/docs/src/api/visualize.md +++ b/docs/src/api/visualize.md @@ -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 diff --git a/docs/src/index.md b/docs/src/index.md index c92a62e..6f0a80c 100644 --- a/docs/src/index.md +++ b/docs/src/index.md @@ -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. --- diff --git a/docs/src/tutorials/fit_mesh.md b/docs/src/tutorials/fit_mesh.md index 97f1f7c..eefd32f 100644 --- a/docs/src/tutorials/fit_mesh.md +++ b/docs/src/tutorials/fit_mesh.md @@ -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) diff --git a/examples/dgcnn_classification.jl b/examples/dgcnn_classification.jl index 4e4194c..b26b956 100644 --- a/examples/dgcnn_classification.jl +++ b/examples/dgcnn_classification.jl @@ -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 diff --git a/examples/fit_mesh.jl b/examples/fit_mesh.jl index 262e56b..f27b202 100644 --- a/examples/fit_mesh.jl +++ b/examples/fit_mesh.jl @@ -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