S8NqxD

Written on June 24, 2019
% Dans le préambule
% -----------------
\usepackage{tkz-euclide}
% -----------------

\begin{tikzpicture}[xscale=1,yscale=0.5]
% Les points A, B et C
\tkzDefPoint(4,-0.5){B} \tkzDefPoint(3,1){C} \tkzDefPoint(2,0){D}
% Première homothétie
\tkzDefPointBy[homothety = center C
               ratio -1](B) \tkzGetPoint{O}
\tkzDefPointBy[homothety = center D
               ratio -1](B) \tkzGetPoint{A}
% Seconde homothétie
\tkzDefPointBy[homothety = center O
               ratio -1](A) \tkzGetPoint{E}
\tkzDefPointBy[homothety = center O
               ratio -1](B) \tkzGetPoint{F}
% Dessin des segments
\tkzDrawSegments(F,B A,E F,E A,B C,D)
% Marquage des points et étiquettes
\tkzDrawPoints(A,B,C,D,O,E,F)
\tkzLabelPoints(A,B,C,D,O,E,F)
\end{tikzpicture}