I need to export a circle drawn in 3D with a specific point of view to a PDF file. This is easy to do. However, the exported circle is made of tons of non-connected small bits. I need the whole circle to be a single piece in vectorial form. How can we do this ? Take note that I also need the three axes to be exported too (they are not cutted into small parts, which is what I want).
Here's the code itself :
ParametricPlot3D[
{Cos[p], Sin[p], 0}, {p, 0, 2 Pi},
PlotStyle -> {Directive[AbsoluteThickness[1], GrayLevel[0.5]]},
PlotPoints -> 100,
PlotRange -> {{-1.5, 1.5}, {-1.5, 1.5}, {-0.5, 0.5}},
Boxed -> False,
Axes -> True,
Ticks -> None,
AxesStyle -> Directive[GrayLevel[0.5], Dashed],
AxesOrigin -> {0, 0, 0},
ImageSize -> {750, 750},
ViewAngle -> 25 Pi/180,
ViewPoint -> {1, 1, 1},
SphericalRegion -> True,
Method -> {"RotationControl" -> "Globe"}
]
Exporting to a PNG or JPG file is not an option here. I need the vectorial form of the curve, as a single piece (I'll also have to do the same with another curve, much more complicated than a simple circle).
Comments
Post a Comment