This is a follow-up question to one of my previous questions. How can I restrict Arrow (coming from the center c) till the length of a on the ellipse in the x-direction?
a=12.4786; b=33.3395; c=21.0691; e1=Ellipsoid[{0,0,c},{a,b,c}]; c1=RegionCentroid[e1]; axes=Graphics3D[{Red,Arrow[Tube[{c1,a UnitVector[3,1]}]]}]; g3=SliceContourPlot3D[x^2/a^2+y^2/b^2+(z-c)^2/c^2,{x,y,z}\[Element]e1,ContourShading->{Opacity[0.4,White]}]; Show[g3,Graphics3D[{Opacity[0.2],e1}],axes,AxesLabel->{X,Y,Z}] Link to the previous question: How to draw axes inside an ellipsoid
