Merge pull request #1459 from daschw/mplot3d

import mplot3d in pyplot (fix #1457)
This commit is contained in:
Daniel Schwabeneder 2018-03-27 15:45:02 +02:00 committed by GitHub
commit 4ef2c6286b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -84,6 +84,7 @@ function _initialize_backend(::PyPlotBackend)
export PyPlot
const pycolors = PyPlot.pyimport("matplotlib.colors")
const pypath = PyPlot.pyimport("matplotlib.path")
const mplot3d = PyPlot.pyimport("mpl_toolkits.mplot3d")
const pypatches = PyPlot.pyimport("matplotlib.patches")
const pyfont = PyPlot.pyimport("matplotlib.font_manager")
const pyticker = PyPlot.pyimport("matplotlib.ticker")