使用 pgfmathangle Betweenlines 新手問題

使用 pgfmathangle Betweenlines 新手問題

我剛開始使用 tikz,我想使用\pgfmathanglebetweenlines,但我顯然不理解它。我原本期望下面的程式碼會報告\try參數中的角度,但每次結果都是 0 o(有時每次45 o或每次90 o )。我做錯了什麼?

%
% preamble
%
\documentclass[10pt]{article}
\usepackage{amssymb,amsmath}
\usepackage[usenames,dvipsnames]{xcolor}
\usepackage{tikz}
\usetikzlibrary{calc,intersections}
%
% drawing.
%
\begin{document}
\def\try#1{
\begin{tikzpicture}[scale=4]
\coordinate[label=below:$O$](O)at(0,0);
\coordinate[label=$X$](X)at(1,0);
\coordinate[label=$Y$](Y)at({cos(#1)},{sin(#1)});
\draw(Y)--(O)--(X);
\pgfmathanglebetweenlines{(O)}{(Y)}{(O)}{(X)}                                                                
\coordinate[label=right:{$\angle YOX=\pgfmathresult^\circ$}](label)at(X);             
\end{tikzpicture}
\\} 
\try{20}\try{45}\try{60}\try{180}\try{405}\try{-45}
\end{document}   

答案1

這裡有幾個問題。首先,\pgfmathanglebetweenlines需要基本的圖層座標規範(例如,在本例中\pgfpointanchor{Y}{center})。其次,\pgfmathresult每次使用數學引擎時都會重新定義,因此在排版時,角度測量值會遺失。

解決方案如下所示。注意我還添加了對銳角的修正(我認為文檔\pgfmathanglebetweenlines不太正確)並將角度四捨五入到最接近的整數。

\documentclass[varwidth,border=5]{standalone}
\usepackage{tikz}
\def\try#1{%
\begin{tikzpicture}[scale=4]
\coordinate[label=below:$O$] (O) at (0,0);
\coordinate[label=$X$]       (X) at (1,0);
\coordinate[label=$Y$]       (Y) at (cos #1, sin #1);
\draw (Y) -- (O) -- (X);
\pgfmathanglebetweenlines%
  {\pgfpointanchor{O}{center}}{\pgfpointanchor{Y}{center}}
  {\pgfpointanchor{O}{center}}{\pgfpointanchor{X}{center}}
\pgfmathparse{int(round(min(\pgfmathresult, 360-\pgfmathresult))}% Correction
\let\angleyox=\pgfmathresult                                                              
\coordinate [label=right:{$\angle YOX=\angleyox^\circ$}] (label) at (X);             
\end{tikzpicture}
\\}
\begin{document}
\foreach \a in {20, 45, 60, 180, 405,-45}{\try{\a}}
\end{document}  

但!基本層的東西不是必需的。圖書館calc提供您所需的所有內容:

\documentclass[varwidth,border=5]{standalone}
\usepackage{tikz}
\usetikzlibrary{calc}
\def\try#1{%
\begin{tikzpicture}[scale=4]
\coordinate[label=below:$O$] (O) at (0,0);
\coordinate[label=$X$]       (X) at (1,0);
\coordinate[label=$Y$]       (Y) at (cos #1, sin #1);
\draw (Y) -- (O) -- (X);
\path let \p1=(O),\p2=(Y),\p3=(X),
   \n1={atan2(\y2-\y1,\x2-\x1)},
   \n2={atan2(\y3-\y1,\x3-\x1)} in
   node at (X) [right] {\pgfmathparse{int(abs(\n2-\n1))}% Correction
     $\angle YOX=\pgfmathresult^\circ$};
\end{tikzpicture}
\\}
\begin{document}
\foreach \a in {20, 45, 60, 180, 405,-45}{\try{\a}}
\end{document} 

在此輸入影像描述

相關內容