簡単に言えば、楕円弧は Z の周りにあり、茶色の線で始まり、茶色の線で終わる必要があります...
中心点の周りに円弧と楕円弧を描きたいです。
そこで私は構文(TikZマニュアル2.10、36ページ)
\draw[]([shift=(\wStart:\r)]Z) arc[start angle=\wStart, end angle=\wEnd, radius=\r];
定義済みの値\wStart
、、\wEnd
および円弧の\r
中点座標Z
(必ずしも とは限らない(0,0)
)で、これは
のために楕円弧私は、TikZマニュアル2.10、37ページ
\draw[red] ([shift=(\wStart:\rx)]Z) arc [start angle=\wStart, end angle=\wEnd, x radius=\rx, y radius=\ry];
次の MWE で。
しかし、私の「センターシフト」は間違っているか、機能していないようです(そしておそらく(?)開始角度と終了角度が正しくないようです)。
何をすればいいですか?
ところで:私が見たこのスレッド(彼の方法では正しい結果が得られません)、TikZ 構文を修正したいと思います。
楕円弧は茶色の線で始まり、茶色の線で終わる必要があります...
\documentclass[tikz, margin=3mm]{standalone}
\usepackage{tikz}
\usetikzlibrary{backgrounds}
\begin{document}
\begin{tikzpicture}[gridded]
% Center
\coordinate[label=below:Z] (Z) at (0,0);
\fill[] (Z) circle[radius=2pt];
% Values ===============
\def\rx{1.75}
\def\ry{1}
\def\r{\rx}
\def\wStart{20}
\def\wEnd{315}
% ====================
% Help lines
\draw[brown] (Z) -- (\wStart:\r);
\draw[brown] (Z) -- (\wEnd:\r);
% Full circle and ellipse
\draw[] (Z) circle[radius=\r];
\draw[] (Z) circle[x radius=\rx, y radius=\ry];
% cirlce arc
\draw[blue] ([shift=(\wStart:\r)]Z) arc [start angle=\wStart, end angle=\wEnd, radius=\r] node[near start]{good};
% ellipse arc
\draw[red] ([shift=(\wStart:\rx)]Z) arc [start angle=\wStart, end angle=\wEnd, x radius=\rx, y radius=\ry] node[near start]{bad};
\end{tikzpicture}
\end{document}
答え1
別の方法として、スケールを適用し、円弧を描いて新しい角度を計算することもできます。
\pgfmathsetmacro\myscale{\ry/\rx}
\pgfmathsetmacro\wStartE{atan(tan(\wStart)/\myscale)}
\pgfmathsetmacro\wEndE{360+atan(tan(\wEnd)/\myscale)}
完全な例は次のようになります。
\documentclass[tikz, margin=3mm]{standalone}
\usepackage{tikz}
\usetikzlibrary{backgrounds}
\begin{document}
\begin{tikzpicture}[gridded]
% Center
\coordinate[label=below:Z] (Z) at (0,0);
\fill[] (Z) circle[radius=2pt];
% Values ===============
\def\rx{1.75}
\def\ry{1}
\def\r{\rx}
\def\wStart{20}
\def\wEnd{315}
% Scale and new angles
\pgfmathsetmacro\myscale{\ry/\rx}
\pgfmathsetmacro\wStartE{atan(tan(\wStart)/\myscale)}
\pgfmathsetmacro\wEndE{360+atan(tan(\wEnd)/\myscale)}
% ====================
% Help lines
\draw[brown] (Z) -- (\wStart:\r);
\draw[brown] (Z) -- (\wEnd:\r);
% Full circle and ellipse
\draw[] (Z) circle[radius=\r];
\draw[] (Z) circle[x radius=\rx, y radius=\ry];
% cirlce arc
\draw[blue] ([shift=(\wStart:\r)]Z) arc [start angle=\wStart, end angle=\wEnd, radius=\r] node[near start]{good};
% ellipse arc
\draw[red,yscale=\myscale] ([shift=(\wStartE:\r)]Z) arc [start angle=\wStartE, end angle=\wEndE, radius=\r] node[near start]{good?};
\end{tikzpicture}
\end{document}
答え2
tkz-elements
コンパイルには以下が必要ですlualatex
編集:Qrrbrbirlbelさんのコメントを参考に、状況に合わせてクリップを使い分けています
編集2: Alain Matthes のコメントにより、ドキュメントで次のことが分かりますtkz-elements
:
set_lua_to_tex。残念ながら現時点では、作成したマクロはグローバルであり、既存のマクロを上書きできるため、注意して進める必要があります。1 つの解決策は、問題が発生しないマクロ名を選択するか、最初のマクロを保存することです。
% !TeX TS-program = lualatex
\documentclass{standalone}
\usepackage{tkz-elements}
\usepackage{tkz-euclide}
\begin{document}
\begin{tkzelements}
rx = value(1.75)
ry = value(1)
wStart = 20
wEnd = 315
z.Z = point: new (0 , 0)
z.A = point: new (0 , rx)-- to draw the circle
--
c = circle : new (z.Z,z.A)
e = ellipse: radii (z.Z,rx,ry,0)
--
z.Sp = point : polar_deg(rx,wStart)
L.ZSp = line : new ( z.Z , z.Sp )
if wStart <180 then
z.S,_ = intersection (e,L.ZSp)-- Start point
else
_,z.S = intersection (e,L.ZSp)
end
--
z.Ep = point : polar_deg(rx,wEnd)
L.ZEp = line : new ( z.Z , z.Ep )
if wEnd <180 then
z.E,_ = intersection (e,L.ZEp)-- End point
else
_,z.E = intersection (e,L.ZEp)
end
--
-- set_lua_to_tex{"rx","ry","wStart","wEnd"}-- see Alain Matthes'comment
\end{tkzelements}
\begin{tikzpicture}[gridded]
% Edit2
\newcommand{\rx}{\tkzUseLua{rx}}
\newcommand{\ry}{\tkzUseLua{ry}}
\newcommand{\wStart}{\tkzUseLua{wStart}}
\newcommand{\wEnd}{\tkzUseLua{wEnd}}
%
\tkzGetNodes
\tkzDrawPoints(Z,S,S',E,E')
\tkzLabelPoints(Z)
\tkzDrawCircle[blue](Z,A)
%\draw[green!70!black] (Z) -- +(\wStart:2*\rx) arc[start angle=\wStart, end angle=\wEnd, radius=2*\rx] -- cycle;
\begin{scope}
% With Qrrbrbirlbel's comment
\clip [overlay](Z) -- +(\wStart:2*\rx) arc[start angle=\wStart, end angle=\wEnd, radius=2*\rx] -- cycle;
%
\tkzDrawEllipse[red](Z,\rx,\ry,0)
\end{scope}
\tkzDrawSegments[brown](S,Z Z,E)
\tkzDrawSegments[brown,dashed](S,S' E,E')
\end{tikzpicture}
\end{document}
答え3
私は、これが「TikZ楕円をハックする」という大変な作業になるのではないかと心配していたので、
中心に対する極座標そして次のようになりますplot
:
\documentclass[tikz, margin=3mm]{standalone}
\usepackage{tikz}
\usetikzlibrary{backgrounds}
\begin{document}
\begin{tikzpicture}[gridded,
]
% Values ===============
\def\rx{1.75}
\def\ry{1}
\def\r{\rx}
\def\wStart{20}
\def\wEnd{315}
% ====================
% Center
\coordinate[label=below:{(0,0)}] (O) at (0,0);
\coordinate[label=below:Z] (Z) at (1.3,2);
\foreach \P in {O,Z} \fill[] (\P) circle[radius=2pt];
% Help lines
\draw[brown] (Z) -- +(\wStart:\r);
\draw[brown] (Z) -- +(\wEnd:\r);
% Full circle and ellipse
\draw[] (Z) circle[radius=\r];
\draw[] (Z) ellipse[x radius=\rx, y radius=\ry];
% circle arc
\draw[blue] ([shift=(\wStart:\rx)]Z) arc [start angle=\wStart, end angle=\wEnd, radius=\r];
% ellipse arc
\tikzset{% https://en.wikipedia.org/wiki/Ellipse#Polar_form_relative_to_center
declare function={
E=sqrt(\rx^2-\ry^2)/\rx;
PolarEllipse(\x)=\ry/sqrt(1-E^2*cos(\x)^2); }, }%
\draw[red, very thick,
domain=\wStart:\wEnd,
samples=111
] plot ([shift={(Z)}]\x:{PolarEllipse(\x)});
\end{tikzpicture}
\end{document}
答え4
楽しみのために: これは円と楕円を使用して、不要な部分を切り取ります。-| (\r,0) |-
切り取られた領域を境界まで拡張するために を使用していることに注意してください。
\documentclass[tikz, margin=3mm]{standalone}
\usepackage{tikz}
\usetikzlibrary{backgrounds}
\begin{document}
\begin{tikzpicture}[gridded]
% Center
\coordinate[label=below:Z] (Z) at (0,0);
\fill[] (Z) circle[radius=2pt];
% Values ===============
\def\rx{1.75}
\def\ry{1}
\def\r{\rx}
\def\wStart{20}
\def\wEnd{315}
% ====================
% Help lines
\draw[brown] (Z) -- (\wStart:\r);
\draw[brown] (Z) -- (\wEnd:\r);
% Full circle and ellipse
\draw[] (Z) circle[radius=\r];
\draw[] (Z) circle[x radius=\rx, y radius=\ry];
% cirlce arc
\begin{scope}[even odd rule]
\clip (-\r,-\r) rectangle (\r,\r)% clip exterior
(\wStart:2) -- (Z) -- (\wEnd:2) -| (\r,0) |- cycle;% clip interior
\draw[blue] (Z) circle [radius=\r];
% ellipse arc
\draw[red] (Z) ellipse [x radius=\rx, y radius=\ry];
\end{scope}
\end{tikzpicture}
\end{document}