带相交平面的 3D 阴影菱形

带相交平面的 3D 阴影菱形

我需要一些帮助来在 LaTex 中得到这个数字:

在此处输入图片描述

带有阴影的形状。这是我目前所得到的。

\documentclass[tikz,border=3mm]{standalone}
\usetikzlibrary{intersections,calc}
\usepackage{tikz-3dplot}

\begin{document}


\tdplotsetmaincoords{70}{110}
\begin{tikzpicture}[scale=3,tdplot_main_coords,>=latex]
    \filldraw[
        draw=blue,%
        fill=blue!20,%
    ]          (0,0,1)
            -- (0,1,0)
            -- (1,0,0)
            -- cycle;
    \filldraw[
        draw=blue,%
        fill=blue!20,%
    ]          (0,1,0)
            -- (-1,0,0)
            -- (0,0,1)
            -- cycle;
    \filldraw[
        draw=blue,%
        fill=blue!20,%
    ]          (1,0,0)
            -- (0,-1,0)
            -- (0,0,1)
            -- cycle;
    \filldraw[
        draw=blue,%
        fill=blue!20,%
    ]          (0,-1,0)
            -- (-1,0,0)
            -- (0,0,1)
            -- cycle;
\filldraw[
draw=blue,%
fill=blue!20,%
    ]          (1,0,0)
            -- (0,1,0)
            -- (0,0,-1)
            -- cycle;
\filldraw[
draw=blue,%
fill=blue!20,%
    ]          (1,0,0)
            -- (0,-1,0)
            -- (0,0,-1)
            -- cycle;

    \filldraw[
        draw=red,%
        fill=red!20,%
    ]          (1,1,1)
            -- (1,-1,1)
            -- (-1,-1,1)
            -- (-1,1,1)
            -- cycle;             
    \draw[thick,->] (-2,0,0) -- (2,0,0) node[anchor=north east]{$x$};
    \draw[thick,->] (0,-2,0) -- (0,2,0) node[anchor=north west]{$y$};
    \draw[thick,->] (0,0,-2) -- (0,0,2) node[anchor=south]{$z$};
\end{tikzpicture}

\end{document} 

在此处输入图片描述

答案1

我借助\foreach语句和\ifthenelseifthen 包绘制了菱形,让生活变得轻松一些。到目前为止,你的工作基本上缺少的是一些不透明度(参见 pgf 手册第 23 节)

编辑

我对之前给出的代码做了一些调整。我无法通过旋转图形使 y 轴水平,同时保持 z 轴垂直,并使 x 轴可见。因此,我决定使用非正交坐标系,通过更改 x 向量(参见代码注释)。绘制第二个图形时,我假设线条在 (0,-0.5,1) 处相交。

编辑

在 tikzpicture 选项中定义导致坐标系非正交的 x 向量以简化代码。

请注意,代码会生成双面文档

\documentclass[tikz,border=3mm]{standalone}
\usetikzlibrary{intersections,calc}
\usepackage{tikz-3dplot}
\usepackage{ifthen}

\begin{document}

\tdplotsetmaincoords{70}{90}
\begin{tikzpicture}[scale=3,tdplot_main_coords,>=latex, x={(1,-0.5,0)}]
        %
    % plotting the coordinate system before the diamond to make it appear covered
    % setting the x-vector to x={(1,-0.5,0)} enables to plot a non orthogonal coordinate system
        %
    \draw[thick] (-2,0,0)--(-1,0,0);
    \draw[thick,dashed](-1,0,0)--(1,0,0);
    \draw[thick] (0,-2,0)--(0,-1,0);
    \draw[thick,dashed](0,-1,0)--(0,1,0);
    \draw[thick,->] (0,1,0)--(0,2,0) node[anchor=north east]{$y$};
    \draw[thick] (0,0,-2)--(0,0,-1);
    \draw[thick,dashed](0,0,-1)--(0,0,1);

    % plotting the diamond by repeated commands
    \foreach \x in {-1,1}{
        \foreach \y in {-1,1} {
            \foreach \z in {-1,1} {
                \ifthenelse{\x=-1}{
                \filldraw[fill opacity=0.3, draw=blue, fill=blue!20, loosely dashed]
                (0,0,\z)--(0,\y,0)--(\x,0,0)--cycle;
                }{
                \filldraw[fill opacity=0.3, draw=blue, fill=blue!20]
                (0,0,\z)--(0,\y,0)--(\x,0,0)--cycle;
                }
            }
        }
    }

    % plotting the plane and the annotation $\Theta$ at the correct point
    \filldraw[fill opacity=0.75, draw=red, fill=red!20]
    (0.75,1,1)--(0.75,-1,1)--(-0.75,-1,1) node[above] {$\Theta$}--(-0.75,1,1)--cycle;

    % plotting the part of the axes which is not covered by the diamond
    \draw[thick,->] (0,0,1)--(0,0,2) node[anchor=north east]{$z$}; 
    \draw[thick,->] (1,0,0)--(2,0,0) node[anchor=north east]{$x$}; 

    % plotting point at upper tip of diamond and annotation     
    \filldraw[ultra thick] (0,0,1) circle (0.5pt) ++ (0,-0.14,0.1) node{(0,0,1) \ $\hat{\theta}$};
%   
\end{tikzpicture}
%
%
\tdplotsetmaincoords{70}{90}
\begin{tikzpicture}[scale=3,tdplot_main_coords,>=latex, x={(1,-0.5,0)}]

    % plotting the coordinate system before the diamond to make it appear covered
    % setting the x-vector to x={(1,-0.5,0)} enables to plot a non orthogonal coordinate system
    \draw[thick] (-2,0,0)--(-1,0,0);
    \draw[thick,dashed](-1,0,0)--(1,0,0);
    \draw[thick] (0,-2,0)--(0,-1,0);
    \draw[thick,dashed](0,-1,0)--(0,1,0);
    \draw[thick,->] (0,1,0)--(0,2,0) node[anchor=north east]{$y$};
    \draw[thick] (0,0,-2)--(0,0,-1);
    \draw[thick,dashed](0,0,-1)--(0,0,1);

    % plotting the diamond by repeated commands
    \foreach \x in {-1,1}{
        \foreach \y in {-1,1} {
            \foreach \z in {-1,1} {
                \ifthenelse{\x=-1}{
                \filldraw[fill opacity=0.3, draw=blue, fill=blue!20, loosely dashed]
                (0,0,\z)--(0,\y,0)--(\x,0,0)--cycle;
                }{
                \filldraw[fill opacity=0.3, draw=blue, fill=blue!20]
                (0,0,\z)--(0,\y,0)--(\x,0,0)--cycle;
                }
            }
        }
    }

    % plotting the part of the axes which is not covered by the diamond
    \draw[thick,->] (0,0,1)--(0,0,2) node[anchor=north east]{$z$}; 
    \draw[thick,->] (1,0,0)--(2,0,0) node[anchor=north east]{$x$};  

    % plotting points at upper tip and left line of diamond and annotation   
    \filldraw[ultra thick] (0,0,1) circle (0.5pt) ++ (0,0.1,0.1) node{$\hat{\theta}_1$};
    \filldraw[ultra thick] (0.5,-0.5,0) circle (0.5pt) ++ (0,-0.1,-0.1)node{$\hat{\theta}_2$};

    % plotting upper line and annotation   
    \draw (0,1.5,1) node[above left]{$\Theta_1$} --(0,-1.5,1);

    % plotting vertical line and annotation, I assumed the lines to intersect at (0,-0.5,1)
    \draw (1,-0.5,-1) node[right]{$\Theta_2$}--(-0.25,-0.5,1.5);
\end{tikzpicture}

\end{document}

在此处输入图片描述 在此处输入图片描述

相关内容