
現在、私の「セル」は次のようになっています:
\documentclass{article}
\usepackage{pgfplots}
\usepackage{tikz-3dplot}
\usetikzlibrary{patterns,arrows,positioning,3d,calc,fadings,shapes,decorations.markings,arrows.meta}
\usepackage{tikz,times,amsmath}
\begin{document}
\tdplotsetmaincoords{85}{20}
\begin{tikzpicture}[yscale=2,xscale=2,line width=0.5pt, tdplot_main_coords]
\coordinate (A) at (0,0,0);
\coordinate (B) at (1,0,0);
\coordinate (C) at (2,0,0);
\coordinate (D) at (1,0,1);
\coordinate (X) at (0,0,-1);
\coordinate (H) at (1,0,-1);
\coordinate (Y) at (2,0,1);
\coordinate (A1) at (2,0,2);
\coordinate (B1) at (2,1,2);
\coordinate (C1) at (0,1,2);
\coordinate (D1) at (0,0,2);
\coordinate (E) at (1,-0.87,0.5);
\coordinate (X4) at (0,-0.87,0.5);
\coordinate (F) at (1,0.87,0.5);
\coordinate (X5) at (0,0.87,0.5);
\coordinate (X6) at (1,-0.87,1.5);
\coordinate (X7) at (1,0.87,1.5);
\coordinate (G) at (1,-0.87,-0.5);
\coordinate (I) at (1,-1.73,0);
\coordinate (Y2) at (1,-0.87,-1.5);
\coordinate (Y3) at (2,-0.87,-0.5);
\coordinate (Y4) at (2,0.87,-0.5);
\coordinate (Y5) at (1,0.87,-0.5);
\coordinate (J) at (1,1.73,0);
\coordinate (Y6) at (1,0.87,-1.5);
\coordinate (K) at (2,0,-1);
\coordinate (M) at (2,1,1);
\coordinate (N) at (1,0,1);
\draw[rounded corners=0.05pt](A)circle (0.25pt)node[left=-2pt]{$A$}
(B)circle (0.25pt)node[below]{$B$}
(C)circle (0.25pt)node[right]{$C$}
(D)circle (0.25pt)node[left]{$D$}
(E)circle (0.25pt)node[right]{$E$}
(F)circle (0.25pt)node[right]{$F$}
(G)circle (0.25pt)node[left]{$G$}
(H)circle (0.25pt)node[right]{$H$}
(I)circle (0.25pt)node[left]{$I$}
(J)circle (0.25pt)node[right]{$J$}
(X)--(A)--(X4)--(E)--(I)--(G)--(B)--(E)--(X6)--(D)--(B)
(X7)--(D)
(G)--(Y3)--(C)--(B)--(G)--(Y2)--(H)
(Y4)--(C)--(Y)--(D);
\draw[thin,dash pattern=on 2pt off 2pt]
(A)--(B)--(F)--(X5)--(A)
(X)--(H)--(B)--(F)--(J)--(Y5)--(Y4)
(H)--(Y6)--(Y5)
(F)--(X7)
(B)--(Y5);
\end{tikzpicture}
\end{document}
私が達成したいのは、元の $A$ 頂点を $C$ に移動してセルを「複製」することです (「セル」を $x$ 軸に沿って 2 単位右に移動します)。移動後にすべてのポイントを直接リストするだけではない簡単な方法はありますか? ラベルは必ずしも必要ではありません。
答え1
\pic
結果が正確にどのようになるかはわかりませんが、コメントで示唆したように、の一部を再利用したい場合は を利用できますtikzpicture
。
以下のコード例では、コードから完全な描画を取得して を作成しました\pic
。 2 つの を配置して、 2 番目の の\pic
座標が最初の のA
座標の位置と一致するようにしましたC
。スコープ設定のため、 に\pic
個別に変換を適用する必要があることに注意してください。
\documentclass[border=10pt]{standalone}
\usepackage{tikz, tikz-3dplot}
\tikzset{
pics/my cell/.style={
code={
\coordinate (A) at (0,0,0);
\coordinate (B) at (1,0,0);
\coordinate (C) at (2,0,0);
\coordinate (D) at (1,0,1);
\coordinate (X) at (0,0,-1);
\coordinate (H) at (1,0,-1);
\coordinate (Y) at (2,0,1);
\coordinate (A1) at (2,0,2);
\coordinate (B1) at (2,1,2);
\coordinate (C1) at (0,1,2);
\coordinate (D1) at (0,0,2);
\coordinate (E) at (1,-0.87,0.5);
\coordinate (X4) at (0,-0.87,0.5);
\coordinate (F) at (1,0.87,0.5);
\coordinate (X5) at (0,0.87,0.5);
\coordinate (X6) at (1,-0.87,1.5);
\coordinate (X7) at (1,0.87,1.5);
\coordinate (G) at (1,-0.87,-0.5);
\coordinate (I) at (1,-1.73,0);
\coordinate (Y2) at (1,-0.87,-1.5);
\coordinate (Y3) at (2,-0.87,-0.5);
\coordinate (Y4) at (2,0.87,-0.5);
\coordinate (Y5) at (1,0.87,-0.5);
\coordinate (J) at (1,1.73,0);
\coordinate (Y6) at (1,0.87,-1.5);
\coordinate (K) at (2,0,-1);
\coordinate (M) at (2,1,1);
\coordinate (N) at (1,0,1);
\draw[rounded corners=0.05pt]
(A) circle[radius=0.25pt] node[left=-2pt]{$A$}
(B) circle[radius=0.25pt] node[below]{$B$}
(C) circle[radius=0.25pt] node[right]{$C$}
(D) circle[radius=0.25pt] node[left]{$D$}
(E) circle[radius=0.25pt] node[right]{$E$}
(F) circle[radius=0.25pt] node[right]{$F$}
(G) circle[radius=0.25pt] node[left]{$G$}
(H) circle[radius=0.25pt] node[right]{$H$}
(I) circle[radius=0.25pt] node[left]{$I$}
(J) circle[radius=0.25pt] node[right]{$J$}
(X)--(A)--(X4)--(E)--(I)--(G)--(B)--(E)--(X6)--(D)--(B)
(X7)--(D)
(G)--(Y3)--(C)--(B)--(G)--(Y2)--(H)
(Y4)--(C)--(Y)--(D);
\draw[thin, dash pattern=on 2pt off 2pt]
(A)--(B)--(F)--(X5)--(A)
(X)--(H)--(B)--(F)--(J)--(Y5)--(Y4)
(H)--(Y6)--(Y5)
(F)--(X7)
(B)--(Y5);
}
}
}
\begin{document}
\tdplotsetmaincoords{85}{20}
\begin{tikzpicture}[scale=2, line width=0.5pt, tdplot_main_coords]
\pic[scale=2] at (0,0,0) {my cell};
\pic[scale=2] at (2,0,0) {my cell};
\end{tikzpicture}
\end{document}