The Circle
function is strictly a 2D Graphics
object, so that we cannot directly combine a Circle
with a Graphics3D
object such as a sphere:
Show[{ Graphics3D[Sphere[] , Circle[]] }]
(* Circle is not a Graphics3D primitive or directive *)
How can I draw circle in 3D?
For example consider a unit Sphere[]
centered at the origin. How can we draw a circle passing through a specified point with the circle center along a vector passing through a second point.
Comments
Post a Comment