pst-3dplot 对象的不透明度

pst-3dplot 对象的不透明度

如何pst-3dplot将对象的不透明度设置为透明?我有一个例子,其中使用opacitystrokeopacity选项不起作用。我试图制作类似于以下的图像:

油中球体

希望展示球体内部的更多细节,例如:

绘画

但是,我无法让球体的顶部通过不透明表面看起来与底部不同,或者让球体透明以看到内侧的线条/标记。

这是我尝试过的(在 TeXWorks 中使用 XeLatex+MakeIndex+BibTex 进行编译):

\documentclass{article}
\usepackage{pst-3dplot}
\usepackage{caption}
\usepackage{subcaption}
\usepackage[nomessages]{fp}% http://ctan.org/pkg/fp

\def \planeLocRatio {.7}
\def \radius {1}
\def \cylLength {5}
\def \planeLen {5}
\FPeval{\theta}{pi/4}
\FPeval{\b}{radius*cos(theta)}
\FPeval{\a}{radius*sin(theta)}
\FPeval{\h}{radius-radius*cos(theta)}


\begin{document}

\begin{figure}[H]
    \begin{center}
        \begin{subfigure}[b]{0.3\textwidth}
            \begin{pspicture}(-4,-2.25)(2,4.25)
                %\psset{Alpha=45, Beta=0}
                \pstThreeDCoor
                \pstThreeDLine[linewidth=2pt,linecolor=blue,arrows=->] (0,0,0)(0,0,\b)
                \pstThreeDLine[linewidth=2pt,linecolor=blue,arrows=->] (0,0,0)(0,\a,\b)
                \pstThreeDLine[linewidth=2pt,linecolor=green] (0,0,\b)(0,\a,\b)
                \pstThreeDLine[linewidth=2pt,linecolor=black] (0,\a,\b)(0,\radius,\radius)
                \pstThreeDSphere[strokeopacity=0.1](0,0,0){\radius}
                \pstThreeDSquare[fillcolor=blue,fillstyle=solid,opacity=0.9](-5,-5,\planeLocRatio)(0,10,0)(10,0,0)
                %\pstThreeDSquare[fillcolor=blue,fillstyle=solid,opacity=0.5](- \planeLen /2,- \planeLen /2,\planeLocRatio)(0,\planeLen,0)(\planeLen,0,0)
            \end{pspicture}
            \caption{Sphere model}
        \end{subfigure}%
        \begin{subfigure}[b]{0.3\textwidth}
            \begin{pspicture}(-4,-2.25)(2,4.25)
                \psCylinder[RotX=-15,RotY=45](0,0,0){\radius}{\cylLength}       
                %\pstThreeDSquare[fillcolor=blue,fillstyle=solid,opacity=0.5](- \planeLen /2,- \planeLen /2,\planeLocRatio)(0,\planeLen,0)(\planeLen,0,0)
            \end{pspicture}
        \caption{Cylinder Model}
        \end{subfigure}
    \caption{Sphere and cylinder particle models at the interface.}
    \end{center}
\end{figure}
\end{document}

目前输出的内容如下:

输出

--

更新: Herbert 的回答很好,并涵盖了该图的许多要点,但由于他的回答指出该包不隐藏线,因此我想换个话题。此外,我希望顶面的颜色与底面不同,并且交叉区域的颜色也不同。

所以这就是我目前所拥有的,现在有不同的问题,我将提出其他问题或在这里更新,以满足未来对这个问题的兴趣。

\documentclass{article}
\usepackage{caption}
\usepackage{subcaption}
\usepackage{pst-solides3d}
\usepackage{fp}

\pagestyle{empty}


\def \planeLocRatio {.7}            % ratio of z location of plane and radius
\def \radius {0.5}
\def \planeLen {1}              % half of one side of the plane
\FPeval{\contAng}{pi/4}         % angle from z axis to intersection of plane at sphere edge
\FPeval{\a}{radius*cos(contAng)}    % z location at plane intersection
\FPeval{\a2}{a/2}
\FPeval{\b}{radius*sin(contAng)}    % radius of circle at plane intersection
\FPeval{\b2}{b/2}
\FPeval{\h}{radius-radius*cos(contAng)} % z distance from top of sphere to plane
\FPeval{\h2}{h/2}
\FPeval{\imgsize}{planeLen+1}  % maybe increasing this helps /hbox errors?

\begin{document}
\begin{center}
    \begin{pspicture}[solidmemory](-\imgsize,-\imgsize)(\imgsize,\imgsize)

        % ==================  VIEW ===================
        \psset{
            viewpoint=10 45 20 rtp2xyz,
            lightsrc=viewpoint,
            %lightintensity=1.25
            }


        % ================== POINTS ==================
        % origin
        \psSolid[object=point,args=0 0 0, name=O, text=O, pos=br]
        \psSolid[object=point,args=0 0 \a, name=A, text=A, pos=uc]

%%%%%%% Causes hbox problems
        %\psSolid[object=point,args=0 \b \a, name=B, text=B, pos=uc]

        % ================== LINES ==================

        % origin to center of circle at plane intersection
        \psSolid[object=line,linecolor=black!50,linewidth=2pt,args=O A, name=OA]
        % label the equation to the side of the line midway through the line
        %\psProjection[object=point,definition=milieu,args=O A,text=$Rcos \theta$,pos=uc]

        % line from origin to side of sphere intersected with plane
        %\psSolid[object=line,linecolor=black!50,linewidth=2pt,args=O B, name=OB]
        %\psProjection[object=point,definition=milieu,args=O B,text=$Rsin \theta$,pos=uc]

        % line from A to B
        %\psSolid[object=line,linecolor=black!50,linewidth=2pt,args=A B, name=AB]



        % ================== SPHERE ==================
        \psSolid[
            object=sphere,
            name=mySphere,
            r=\radius,
            ngrid=30 30,            % number of grid lines across 2 dimensions r
            grid=false,         % remove line edges
            hue=0 0.5,
            opacity=0.4,
            hollow=true,
            intersectiontype=0,
            intersectionplan=0 0 1 \a,
            intersectioncolor=(bleu)
            ](0,0,0)

        % ================== PLANE ==================
        \psSolid[
            object=plan,
            name=myPlane,
            definition=solidface,
            args=mySphere 1,
            base=-1 1 -1 1,
            action=draw,
            ](A,,)

    \end{pspicture}
\end{center}
\end{document}

目前输出:

图片

答案1

当前版本http://texnik.dante.de/tex/generic/pst-3dplot/pst-3dplot.tex考虑opacity和的值:strokeopacity

\begin{pspicture}(-4,-2.25)(2,4.25)
 \psset{Alpha=45, Beta=10}
 \pstThreeDCoor
 \pstThreeDLine[linewidth=2pt,linecolor=blue,arrows=->] (0,0,0)(0,0,\b)
 \pstThreeDLine[linewidth=2pt,linecolor=blue,arrows=->] (0,0,0)(0,\a,\b)
 \pstThreeDLine[linewidth=2pt,linecolor=green] (0,0,\b)(0,\a,\b)
 \pstThreeDLine[linewidth=2pt,linecolor=black] (0,\a,\b)(0,\radius,\radius)
 \pstThreeDSquare[fillcolor=blue!40,fillstyle=solid,opacity=0.4](-5,-5,\planeLocRatio)(0,10,0)(10,0,0)
 \pstThreeDSphere[opacity=0.3,strokeopacity=0.3,linewidth=0.1pt](0,0,0){\radius}
\end{pspicture}

但是,如果您想要隐藏线和表面,则使用“pst-solides3d”。

在此处输入图片描述

相关内容