2

In the following document, I want to decrease the radius of the sphere representing the point.

\documentclass{standalone}
\usepackage{pst-solides3d}

\begin{document} \begin{pspicture}[viewpoint=30 40 30 rtp2xyz] (-2,-1) (2,2) \psSolid[object=point, args=0 0 0.5] \axesIIID (0,0,0) (1,1,1) \end{pspicture} \end{document}

oneofvalts
  • 67
  • 8

1 Answers1

4

I don't think there's a way to do this using the object=point key, which only takes the coordinates as arguments, but you can add points using \psPoint plus \psdots instead:

\documentclass{article}
\usepackage{pst-solides3d}

\begin{document} \begin{pspicture}[viewpoint=30 40 30 rtp2xyz] (-2,-1) (2,2) \psSolid[object=point, args=0 0 0.5] \psPoint(0,0,.25){P} \psdotsdotsize=0.1 \axesIIID (0,0,0) (1,1,1) \end{pspicture} \end{document}

output of code

Alan Munn
  • 218,180