Using TikZ how can I draw this figure ?
Sorry, this time I didn't even tried to write a code, I'm really sorry :(, I know this is against the website's rules, but I really found it hard to draw.
Thanks in advance.
Edit : Here's my attempt, I found it hard to draw that line through I and I', they are the midpoints of the triangle's edges.
I tried to fix it with \begin{scope} but it wasn't helpful :
Here's the code :
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{arrows, shapes, positioning, calc, decorations.text, angles, quotes}
\begin{document}
\begin{tikzpicture}
\draw[smooth, dashed] (4,2.5)--(8,5.2);
\draw[smooth, dashed] (6.1,2.3)--(4.4,4);
\draw[smooth, black] (3,0)--(5,5)--(7,0)--(3,0);
\coordinate(O) at (5,5);
\coordinate(A) at (3,0);
\coordinate(B) at (7,0);
\pic[ draw,inner sep=1pt, circle, draw,angle eccentricity=1.1, angle radius = 10mm] {angle = A--O--B};
\node[below] at (5,4.68) {$A$};
\draw[thick, gray] (1,0.45)--(4,2.5)--(6.1,2.3)--(8,0.1);
\end{tikzpicture}
\end{document}



\draw (a,b) --(c,d)The light rays correspond to segments that you can draw with\draw (a,b) -- (c,d)and\draw [dashed]To name the angles, you will need to draw arcs of a circle :\draw (a,b) arc (u,v,r)Look at the TikZ manual – Nicolas Feb 06 '21 at 07:14