Completely deprecate glvisualize
This commit is contained in:
parent
f33d135182
commit
1386435b17
2
NEWS.md
2
NEWS.md
@ -10,7 +10,7 @@
|
|||||||
|
|
||||||
---
|
---
|
||||||
## (current master)
|
## (current master)
|
||||||
- All new development should target Julia 1.x!
|
- deprecate GLVisualize
|
||||||
|
|
||||||
## 0.20.6
|
## 0.20.6
|
||||||
- fixes for PlotDocs.jl
|
- fixes for PlotDocs.jl
|
||||||
|
|||||||
@ -157,7 +157,7 @@ function pickDefaultBackend()
|
|||||||
# the ordering/inclusion of this package list is my semi-arbitrary guess at
|
# the ordering/inclusion of this package list is my semi-arbitrary guess at
|
||||||
# which one someone will want to use if they have the package installed...accounting for
|
# which one someone will want to use if they have the package installed...accounting for
|
||||||
# features, speed, and robustness
|
# features, speed, and robustness
|
||||||
# for pkgstr in ("GR", "PyPlot", "PlotlyJS", "PGFPlots", "UnicodePlots", "InspectDR", "GLVisualize")
|
# for pkgstr in ("GR", "PyPlot", "PlotlyJS", "PGFPlots", "UnicodePlots", "InspectDR")
|
||||||
# if pkgstr in keys(Pkg.installed())
|
# if pkgstr in keys(Pkg.installed())
|
||||||
# return backend(Symbol(lowercase(pkgstr)))
|
# return backend(Symbol(lowercase(pkgstr)))
|
||||||
# end
|
# end
|
||||||
@ -213,7 +213,7 @@ function backend(sym::Symbol)
|
|||||||
backend()
|
backend()
|
||||||
end
|
end
|
||||||
|
|
||||||
const _deprecated_backends = [:qwt, :winston, :bokeh, :gadfly, :immerse]
|
const _deprecated_backends = [:qwt, :winston, :bokeh, :gadfly, :immerse, :glvisualize]
|
||||||
|
|
||||||
function warn_on_deprecated_backend(bsym::Symbol)
|
function warn_on_deprecated_backend(bsym::Symbol)
|
||||||
if bsym in _deprecated_backends
|
if bsym in _deprecated_backends
|
||||||
@ -273,7 +273,6 @@ end
|
|||||||
@init_backend Plotly
|
@init_backend Plotly
|
||||||
@init_backend PlotlyJS
|
@init_backend PlotlyJS
|
||||||
@init_backend GR
|
@init_backend GR
|
||||||
@init_backend GLVisualize
|
|
||||||
@init_backend PGFPlots
|
@init_backend PGFPlots
|
||||||
@init_backend InspectDR
|
@init_backend InspectDR
|
||||||
@init_backend HDF5
|
@init_backend HDF5
|
||||||
@ -445,71 +444,6 @@ const _plotly_marker = [
|
|||||||
]
|
]
|
||||||
const _plotly_scale = [:identity, :log10]
|
const _plotly_scale = [:identity, :log10]
|
||||||
|
|
||||||
# ------------------------------------------------------------------------------
|
|
||||||
# glvisualize
|
|
||||||
|
|
||||||
function _initialize_backend(::GLVisualizeBackend; kw...)
|
|
||||||
@eval Main begin
|
|
||||||
import GLVisualize, GeometryTypes, Reactive, GLAbstraction, GLWindow, Contour
|
|
||||||
import GeometryTypes: Point2f0, Point3f0, Vec2f0, Vec3f0, GLNormalMesh, SimpleRectangle, Point, Vec
|
|
||||||
import FileIO, Images
|
|
||||||
export GLVisualize
|
|
||||||
import Reactive: Signal
|
|
||||||
import GLAbstraction: Style
|
|
||||||
import GLVisualize: visualize
|
|
||||||
import Plots.GL
|
|
||||||
import UnicodeFun
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
const _glvisualize_attr = merge_with_base_supported([
|
|
||||||
:annotations,
|
|
||||||
:background_color_legend, :background_color_inside, :background_color_outside,
|
|
||||||
:foreground_color_grid, :foreground_color_legend, :foreground_color_title,
|
|
||||||
:foreground_color_axis, :foreground_color_border, :foreground_color_guide, :foreground_color_text,
|
|
||||||
:label,
|
|
||||||
:linecolor, :linestyle, :linewidth, :linealpha,
|
|
||||||
:markershape, :markercolor, :markersize, :markeralpha,
|
|
||||||
:markerstrokewidth, :markerstrokecolor, :markerstrokealpha,
|
|
||||||
:fillrange, :fillcolor, :fillalpha,
|
|
||||||
:bins, :bar_width, :bar_edges, :bar_position,
|
|
||||||
:title, :title_location,
|
|
||||||
:window_title,
|
|
||||||
:guide, :lims, :ticks, :scale, :flip, :rotation,
|
|
||||||
:titlefontsize, :titlefontcolor,
|
|
||||||
:legendfontsize, :legendfontcolor,
|
|
||||||
:tickfontsize,
|
|
||||||
:guidefontsize, :guidefontcolor,
|
|
||||||
:grid, :gridalpha, :gridstyle, :gridlinewidth,
|
|
||||||
:legend, :colorbar,
|
|
||||||
:marker_z,
|
|
||||||
:line_z,
|
|
||||||
:levels,
|
|
||||||
:ribbon, :quiver, :arrow,
|
|
||||||
:orientation,
|
|
||||||
:overwrite_figure,
|
|
||||||
#:polar,
|
|
||||||
:normalize, :weights,
|
|
||||||
:contours, :aspect_ratio,
|
|
||||||
:match_dimensions,
|
|
||||||
:clims,
|
|
||||||
:inset_subplots,
|
|
||||||
:dpi,
|
|
||||||
:hover,
|
|
||||||
:framestyle,
|
|
||||||
:tick_direction,
|
|
||||||
])
|
|
||||||
const _glvisualize_seriestype = [
|
|
||||||
:path, :shape, :straightline,
|
|
||||||
:scatter, :hexbin,
|
|
||||||
:bar, :boxplot,
|
|
||||||
:heatmap, :image, :volume,
|
|
||||||
:contour, :contour3d, :path3d, :scatter3d, :surface, :wireframe
|
|
||||||
]
|
|
||||||
const _glvisualize_style = [:auto, :solid, :dash, :dot, :dashdot]
|
|
||||||
const _glvisualize_marker = _allMarkers
|
|
||||||
const _glvisualize_scale = [:identity, :ln, :log2, :log10]
|
|
||||||
|
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
# pgfplots
|
# pgfplots
|
||||||
|
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@ -19,7 +19,6 @@ function __init__()
|
|||||||
pushdisplay(PlotsDisplay())
|
pushdisplay(PlotsDisplay())
|
||||||
end)
|
end)
|
||||||
|
|
||||||
@require GLVisualize = "4086de5b-f4b6-55f3-abb0-b8c73827585f" include(joinpath(@__DIR__, "backends", "glvisualize.jl"))
|
|
||||||
@require HDF5 = "f67ccb44-e63f-5c2f-98bd-6dc0ccc4ba2f" include(joinpath(@__DIR__, "backends", "hdf5.jl"))
|
@require HDF5 = "f67ccb44-e63f-5c2f-98bd-6dc0ccc4ba2f" include(joinpath(@__DIR__, "backends", "hdf5.jl"))
|
||||||
@require InspectDR = "d0351b0e-4b05-5898-87b3-e2a8edfddd1d" include(joinpath(@__DIR__, "backends", "inspectdr.jl"))
|
@require InspectDR = "d0351b0e-4b05-5898-87b3-e2a8edfddd1d" include(joinpath(@__DIR__, "backends", "inspectdr.jl"))
|
||||||
@require PGFPlots = "3b7a836e-365b-5785-a47d-02c71176b4aa" include(joinpath(@__DIR__, "backends", "pgfplots.jl"))
|
@require PGFPlots = "3b7a836e-365b-5785-a47d-02c71176b4aa" include(joinpath(@__DIR__, "backends", "pgfplots.jl"))
|
||||||
|
|||||||
@ -156,7 +156,6 @@ end
|
|||||||
const _best_html_output_type = KW(
|
const _best_html_output_type = KW(
|
||||||
:pyplot => :png,
|
:pyplot => :png,
|
||||||
:unicodeplots => :txt,
|
:unicodeplots => :txt,
|
||||||
:glvisualize => :png,
|
|
||||||
:plotlyjs => :html,
|
:plotlyjs => :html,
|
||||||
:plotly => :html
|
:plotly => :html
|
||||||
)
|
)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user