I would like to be able to draw this figure:
I tried with psteucl package but I'm facing some difficulties. The first is the plot of the perpendicular to the 1st face of the triangle.
I tested with the function \pstMediatorAB but it doesn't look very nice because the mediator is drawn by the mirror image of a point of the triangle) :
\documentclass{standalone}
\usepackage{pst-eucl}
\begin{document}
\begin{pspicture}(-5,-3)(6,5)
\pstTrianglePointSymbol=none, PointName=none{A}(5,0){B}(2.5,4){C}
\psset{linecolor=red, CodeFigColor=red, nodesep=-1}
\pstMediatorAB[PointSymbolA=none]{A}{C}{I}{M_I}
\end{pspicture}
\end{document}
I also tested using the orthogonal projection but the perpendicular is then not symmetrical with respect to the edge of the triangle :
\documentclass{standalone}
\usepackage{pst-eucl}
\begin{document}
\begin{pspicture}(-5,-3)(6,5)
\pstTriangle(0,0){A}(5,0){B}(2.5,4){C}
\pstGeonodePointSymbol=none, PointName=none{F}
%\pstMiddleAB{A}{C}{I}
\pstProjection[PointSymbol=none, PointName=none]{A}{C}{F}
\pstLineAB[linecolor=blue, linestyle=dashed, nodesep=-1]{F}{F'}
\end{pspicture}
\end{document}
How can I draw the figure?



tikzis way better at drawing this kind of figures. You are warned that it may be a bit difficult to learn it at first. – anis Dec 28 '22 at 09:34