I want to draw a light beam on a prism. I've looked and I found that their are a couple of options, but none with an arrow. Any suggestions for doing this in tkz-euclide environment?
\documentclass[a4paper]{article}
\usepackage{tkz-euclide}
\usetikzlibrary{arrows, calc,intersections, decorations.pathmorphing}
%\usetkzobj{all} no need with tkz-euclide v >3
\usepackage{pgfplots}
\begin{document}
\begin{center}
\begin{tikzpicture}[scale=0.7]
\tkzInit[ymin=0,ymax=7.5,xmin=0,xmax=14]
\tkzClip
%\tkzGrid
\tkzDefPoints{2/1/A, 12/1/B, 7/7/C, 1/4.5/D, 12/6.5/E}
\tkzDrawPolygon(A,B,C)
\tkzDrawPoints[size=2pt](A,B,C)
\tkzInterLL(D,E)(A,C) \tkzGetPoint{S}
\tkzDrawSegments(D,S)
\tkzMarkSegments[mark=||](D,S)
\end{tikzpicture}
\end{center}
\end{document}




[mark=>>](which would be nice) but you have to create a custom style. – Thruston Mar 23 '15 at 19:18