两个问题:
- 如何使相机视图不发生改变。
- 如何在 Acrobat Reader 的全屏多媒体模式下让字母转向观察者。
生成图片的完整.tex文件:
\documentclass{standalone}
\usepackage[inline]{asymptote}
\begin{document}
\begin{asy}
import solids;
currentprojection = perspective(0,100,25);
viewportmargin=(0.1cm,0.1cm);
unitsize(5cm);
triple pO=(0,0,0);
real a=0.5;
revolution s=sphere(pO,a);
draw(surface(s),rgb(0.3,0.7,1)+opacity(0.3));
label("$A$",X,W);
axes3("$x$","$y$","$z$",min=(0,0,0),max=(1,1,1),Arrow3);
\end{asy}
\end{document}