tikz 圆与线的交点

tikz 圆与线的交点

如果圆和线是如下所示的绘制命令,是否有可能得到交点?对于这个例子,C 点现在是硬编码的。

\documentclass[border=5pt,convert={density=300,outext=.jpg}]{standalone}
\usepackage{tikz} 
\usetikzlibrary{positioning}
\begin{document}
\tikzset{>=latex}
\tiny\begin{tikzpicture}
 \coordinate (O) at (0,0);
 \coordinate (A) at (1,0);
 \coordinate (B) at (1,1.732);
 \draw[->] (0,0) -- (2,0);
 \draw[->] (0,0) -- (0,2);
 \draw (A) circle (1);
 \draw (A) -- (1,2);
 \draw (O) -- (B);
 \coordinate (C) at (0.5,0.861);//fix me with intersection of circle and line
 \draw (A) -- (C); 
 % annotation
 \draw[fill=red] (O) circle (1pt)  node[below left=0 of O] {O};
 \draw[fill=red] (A) circle (1pt)  node[below right=0 of A] {A};
 \draw[fill=red] (B) circle (1pt)  node[above right=0 of B] {B};
 \draw[fill=red] (C) circle (1pt)  node[above left=0 of C] {C};
\end{tikzpicture} 
\end{document}

输出:

在此处输入图片描述

答案1

考虑使用 tkz-euclide 包。有一个命令可以找到直线和圆的交点。

以下内容来自 highschoolmathandchess.com:

tkzInterLC(A,B)(C,D) 其中 (A,B) 是线上的点,(C,D) 是圆心和圆上的点。

相关内容