I tried to create a quadrilateral with the measure of its four angles, as shown in the picture:
My code
\documentclass[border=1.5mm,12pt]{standalone}
\usepackage{tkz-euclide}
\begin{document}
\begin{tikzpicture}
\pgfmathsetmacro{\a}{3}
\tkzDefPoints{0/0/A,\a/0/B}
\tkzDefPointBy[rotation= center A angle 60](B)
\tkzGetPoint{X}
\tkzDefPointBy[rotation= center B angle -80](A)
\tkzGetPoint{Y}
\tkzInterLL(A,X)(B,Y)
\tkzGetPoint{Z}
\tkzDefMidPoint(Z,B)
\tkzGetPoint{C}
\tkzDefPointBy[rotation= center C angle 60](Z)
\tkzGetPoint{T}
\tkzInterLL(C,T)(A,Z)
\tkzGetPoint{D}
\tkzLabelAngle[pos=.5](Z,B,A){$80^{\circ}$}
\tkzLabelAngle[pos=.6](B,A,Z){$60^{\circ}$}
%\tkzLabelAngle[pos=.6](Z,C,D){$30^{\circ}$}
\tkzLabelAngle[pos=.5](D,C,B){$120^{\circ}$}
\tkzLabelAngle[pos=.5](A,D,C){$100^{\circ}$}
\tkzLabelPoints[](A,B)
%\tkzLabelPoints[above](Z)
\tkzLabelPoints[right](C)
\tkzLabelPoints[left](D)
\tkzDrawPolygon(A,B,C,D)
\end{tikzpicture}
\end{document}
Is there another way to construct such a quadrilateral?







intersectionsand/orcalclibraries to achieve something like that. – SebGlav Jul 11 '23 at 06:27