I am trying to shade the section to the right of line segment L-M. I can't figure it out with
\psclip
feature. If anyone can help, that would be appreciated.
Code: Select all
\documentclass[12pt]{exam}
\usepackage{amsmath,amsfonts,amssymb}
\usepackage{pstricks}
\usepackage{pstricks-add}
\begin{document}
\begin{pspicture}(-3,02)(2,3)
\pscircle(0,0){2}
\uput[l](0,0){$N$}
\psdot[dotsize=4pt](0,0)
\psline(0,0)(2;45)
\psline(0,0)(2;-45)
\psline(2;45)(2;-45)
\uput[ur](2;45){$L$}
\uput[r](2;-45){$M$}
\uput[r](2,0){$120^\circ$}
\end{pspicture}
\end{document}