Consider the following MWE:
Code: Select all
\documentclass{article}
\usepackage{pst-eucl}
\begin{document}
\begin{figure}
\centering
\begin{pspicture}(10.5,9.8)
\pnode(0,2.3){A}
\pnode(3.7,7.8){B}
\pnode(10.5,9.8){C}
\psdot(A)
\psdot(B)
\psdot(C)
\psline(A)(B)(C)
\psset{
PointSymbol=none,
PointNameB=none,
CodeFig=true,
CodeFigColor=black
}
\pstMediatorAB{B}{A}{M}{M''}
\pstMediatorAB{C}{B}{M'}{M'''}
\end{pspicture}
\end{figure}
\end{document}
(1) remove
M
and M'
from the figure and(2) extend the lines in order to make them intersect?
Ad (1): I tried to make the third argument blank but that is not legal.
Thank you in advance!
Update
It is possible to do like this but it is much easier if I can get the other attemp to work:
Code: Select all
\documentclass{article}
\usepackage{pst-eucl,pstricks-add}
\begin{document}
\begin{figure}
\centering
\begin{pspicture}(10.5,9.8)
\pnode(0,2.3){A}
\pnode(3.7,7.8){B}
\pnode(10.5,9.8){C}
\psdot(A)
\psdot(B)
\psdot(C)
\psline(A)(B)(C)
\psset{
PointSymbol=none,
PointNameB=none,
CodeFig=true,
CodeFigColor=black
}
% \pstMediatorAB[CodeFig=true]{B}{A}{M}{M''}
% \pstMediatorAB[CodeFig=true]{C}{B}{M'}{M'''}
\psRelLine(A)(B){1 2 div}{I'}
\psRelLine[angle=90](I')(A){3}{I''}
\psRelLine(B)(C){1 2 div}{J'}
\psRelLine[angle=90](J')(B){2.8}{J''}
\psIntersectionPoint(I')(I'')(J')(J''){X}
\pcline(I')(X)
\pcline(J')(X)
\pstRightAngle{A}{I'}{I''}
\pstRightAngle{B}{J'}{J''}
\end{pspicture}
\end{figure}
\end{document}