在下面的文档中,我想减小代表该点的球体的半径。
\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}
答案1
我认为没有办法使用object=point
键来做到这一点,它只接受坐标作为参数,但你可以使用\psPoint
加号来添加点\psdots
:
\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}
\psdots[dotsize=0.1](P)
\axesIIID (0,0,0) (1,1,1)
\end{pspicture}
\end{document}