Deux parallèles et une sécante
📅 April 18, 2024 | 👁️ Views: 42

\documentclass{standalone}
\standaloneconfig{margin=2mm}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}[scale=1.00]
\draw[thick] (-2,-2) -- (2,2);
\draw[thick] (1,-2) -- (5,2);
\draw[thick] (-3,0) -- (6,0);
\coordinate (A) at (-1.5,-1.5);
\coordinate (B) at (1.5,1.5);
\coordinate (C) at (1.5,-1.5);
\coordinate (D) at (4.5,1.5);
\coordinate (E) at (-2.5,0);
\coordinate (F) at (5.5,0);
\coordinate (I) at (0,0);
\coordinate (J) at (3,0);
\draw[fill=red] (I) -- ++(0.5,0) arc (0:45:0.5) node[pos=0.3,anchor=south west ] {\tiny 45};
\foreach \point/\name/\pos in {A/A/above, B/B/above, C/C/above, D/D/above,
E/E/above, F/F/above right, I/I/above left, J/J/above}
\draw[rotate=-90, \pos] (\point) +(0.1,0.1) -- +(-0.1,-0.1) node {\name};
\end{tikzpicture}
\end{document}
Deux parallèles et une sécante
\documentclass{standalone}
\standaloneconfig{margin=2mm}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}[scale=1.00]
\draw[thick] (-2,-2) -- (2,2);
\draw[thick] (1,-2) -- (5,2);
\draw[thick] (-3,0) -- (6,0);
\coordinate (A) at (-1.5,-1.5);
\coordinate (B) at (1.5,1.5);
\coordinate (C) at (1.5,-1.5);
\coordinate (D) at (4.5,1.5);
\coordinate (E) at (-2.5,0);
\coordinate (F) at (5.5,0);
\coordinate (I) at (0,0);
\coordinate (J) at (3,0);
\draw[fill=red] (I) -- ++(0.5,0) arc (0:45:0.5) node[pos=0.3,anchor=south west ] {\tiny 45};
\foreach \point/\name/\pos in {A/A/above, B/B/above, C/C/above, D/D/above,
E/E/above, F/F/above right, I/I/above left, J/J/above}
\draw[rotate=-90, \pos] (\point) +(0.1,0.1) -- +(-0.1,-0.1) node {\name};
\end{tikzpicture}
\end{document}