I hope I am not doing something wrong.
Compare the following figures.
1) Ellipsoid
Graphics3D[{{Specularity[White, 40], Opacity[0.5],
Ellipsoid[{0, 0, 0}, {10, 3, 2}]}, {Opacity[1],
Ellipsoid[{0, 0, 0}, {0, 3, 2}], Ellipsoid[{0, 0, 0}, {10, 0, 2}],
Ellipsoid[{0, 0, 0}, {10, 3, 0}]}}, ImageSize -> Large]
2) The same goal but in a more "user-defined" way
Graphics3D[{Specularity[White, 40], Opacity[0.5],
Scale[#, {10, 3, 2}], {Opacity[1], Scale[#, {.001, 3, 2}],
Scale[#, {10, 0.001, 2}], Scale[#, {10, 3, 0.001}]}} &@Sphere[],
ImageSize -> Large]
Why the quality of the first Graphics3D is so bad?
$Version
(*"10.3.0 for Linux x86 (64-bit) (October 9, 2015)"*)




ellipse3Dfunction that draws 2D ellipses in 3D space. – shrx Nov 20 '15 at 11:02