Connected Sphere

using Makie

 large_sphere = Sphere(Point3f0(0), 1f0)
 positions = decompose(Point3f0, large_sphere)
 linepos = view(positions, rand(1:length(positions), 1000))
 scene = lines(linepos, linewidth = 0.1, color = :black, transparency = true)
 scatter!(
     scene, positions, markersize = 0.05,
     strokewidth = 2, strokecolor = :white,
     color = RGBAf0(0.9, 0.2, 0.4, 0.5)
 )
 scene