Moon

using GLMakie, FileIO
using Downloads: download
GLMakie.activate!()

moon = load(download("https://svs.gsfc.nasa.gov/vis/a000000/a004600/a004675/phases.0001_print.jpg"))
n = 1024 # 2048
θ = LinRange(0, pi, n)
φ = LinRange(0, 2 * pi, 2 * n)
x = [cos(φ) * sin(θ) for θ in θ, φ in φ]
y = [sin(φ) * sin(θ) for θ in θ, φ in φ]
z = [cos(θ) for θ in θ, φ in φ]

fig = Figure(resolution=(900, 900), backgroundcolor="#748AA6")
ax = Axis3(fig, aspect=:data, viewmode=:fitzoom, #perspectiveness = 0.5,
    azimuth=0.01π, elevation=0.85π,)
surface!(ax, x, y, z;
    color=moon,
    shading=true,
    lightposition=Vec3f(-2, -3, -3),
    ambient=Vec3f(0.8, 0.8, 0.8),
    backlight=1.5f0
    )
hidedecorations!(ax)
hidespines!(ax)
fig[1, 1] = ax
fig

Warning

This example was autogenerated using:

using Pkg
Pkg.status(["GLMakie", "FileIO", "Downloads"])
Status `~/work/BeautifulMakie/BeautifulMakie/docs/Project.toml`
  [5789e2e9] FileIO v1.16.1
  [e9467ef8] GLMakie v0.8.6
  [f43a241f] Downloads v1.6.0

This page was generated using Literate.jl.