Dibujar la bisectriz de un ángulo como un segmento de línea discontinua

Dibujar la bisectriz de un ángulo como un segmento de línea discontinua

ingrese la descripción de la imagen aquí

(1). AX, la bisectriz del ángulo C^{'}AC, debe ser un segmento de línea discontinua.

(2). C^{'}Xdebe dibujarse, y esa línea también debe ser una línea discontinua.

 \documentclass[11pt,a4paper]{article}
 \usepackage{blindtext}
 \usepackage{tikz}
 \usepackage{tkz-euclide}
 \usetkzobj{all}
 \usepackage{color}

 \begin{document}
\begin{tikzpicture}
\tkzDefPoint(0,0){A}
\tkzDefPoint(12,0){B}
\tkzDefPoint(3,7){C}
\tkzDefPoint(10,4){C^{'}}

\tkzLabelPoints[below](A)
\tkzLabelPoints[below](B)
\tkzLabelPoints[above](C)
\tkzLabelPoints[right](C^{'})

\tkzDrawSegment(A,B)
\tkzDrawSegment(A,C^{'})
\tkzDrawSegment(B,C^{'})
\tkzDrawSegment(A,C)
\tkzDrawSegment(B,C)

\tkzMarkSegment[color=red,pos=0.5,mark=|](A,B)
\tkzMarkSegment[color=red,pos=0.5,mark=||](A,C^{'})
\tkzMarkSegment[color=red,pos=0.5,mark=||](A,C)

\tkzDefLine[bisector](C^{'},A,C)
\tkzGetPoint{X}
\tkzDrawSegment[add=0pt and -273pt](A,X)
\tkzLabelLine[pos=0.45](A,X){X}
\tkzDrawSegment[dashed](C^{'},X)
\end{tikzpicture}
\end{document}

Respuesta1

Estas son las líneas relevantes:

\tkzDefLine[bisector](C^{'},A,C)
\tkzGetPoint{x}

\tkzInterLL(A,x)(C,B)
\tkzGetPoint{X}

Obtenga la bisectriz de C^{'}ACy obtenga su punto final x; luego encuentre Xcomo la intersección entre Axy CB.

El código:

\documentclass[11pt,a4paper]{article}
\usepackage{tkz-euclide}
\usetkzobj{all}

\begin{document}

\begin{tikzpicture}
\tkzDefPoint(0,0){A}
\tkzDefPoint(12,0){B}
\tkzDefPoint(3,7){C}
\tkzDefPoint(10,4){C^{'}}

\tkzLabelPoints[below](A)
\tkzLabelPoints[below](B)
\tkzLabelPoints[above](C)
\tkzLabelPoints[right](C^{'})

\tkzDrawSegment(A,B)
\tkzDrawSegment(A,C^{'})
\tkzDrawSegment(B,C^{'})
\tkzDrawSegment(A,C)
\tkzDrawSegment(B,C)

\tkzMarkSegment[color=red,pos=0.5,mark=|](A,B)
\tkzMarkSegment[color=red,pos=0.5,mark=||](A,C^{'})
\tkzMarkSegment[color=red,pos=0.5,mark=||](A,C)

\tkzDefLine[bisector](C^{'},A,C)
\tkzGetPoint{x}

\tkzInterLL(A,x)(C,B)
\tkzGetPoint{X}
\tkzLabelPoints[above](X)

\tkzDrawSegment[dashed](A,X)

\tkzDrawSegment[dashed](C^{'},X)
\end{tikzpicture}

\end{document}

ingrese la descripción de la imagen aquí

información relacionada