I am looking to plot a mostly transparent hemisphere that has a center not at the origin.
I currently have:
Graphics3D[{Red, Opacity[0.13], Sphere[{10, 0, 0}, 35], Axes->True}]
Similarly I have seen an example of how to make a hemisphere:
SphericalPlot3D[35,{\theta,0,Pi/2},{\phi,0,2Pi}]
But then it is centered at the origin. Is there a way to either translate the SphericalPlot, or a way to crop the Sphere for z>0 ?
You can try experimenting with
ParametricPlot3D
, e.g. centered at{10, 10, 10}