TikZ / angles: Eckigen rechten WinkelWinkel zeichnen
Gibt es eine einfache Einstellung für pic / angle, so dass so ein eckiger rechter Winkel gezeichnet wird?
[![alt text][1]][1]
    \documentclass[margin=5pt, tikz]{standalone}
    \usepackage{tikz}
    \usetikzlibrary{angles, quotes, babel}
    \begin{document}
    \begin{tikzpicture}[]
    % IST
    \draw[] (90:1)  coordinate[label=left:P](P) node[above]{IST} -- (0,0) coordinate[label=left:Q](Q) -- (1,0) coordinate[label=R](R);
    \draw pic [draw, angle radius=7mm, "$\cdot$", 
    ] {angle =R--Q--P};
    
    % SOLL
    \draw[shift={(2,0)}] (90:1)  coordinate(P) node[above]{SOLL} -- (0,0) coordinate(Q) -- (1,0) coordinate(R);
    \draw[shift={(2,0)}, thick] (90:5mm) -- (5mm,5mm) -- (5mm,0);
    \end{tikzpicture}
    \end{document}
  [1]: https://texwelt.de/wissen/upfiles/55555555_334.png