TikZ: Skizze verschönern - Bezierkurven vs. rounded corners vs. arc
[![alt text][1]][2]
text][1]][2] [![alt text][3]][3]
Wie kann ich den unteren Bogen verschönern, so dass das mehr so einer Art Kreissegment wird? (Also kein kompletter Halbkreis.)
%\documentclass[]{article}
\documentclass[margin=5pt]{standalone}
\usepackage{tikz}
\usetikzlibrary{calc, math}
\usepackage{amssymb, mwe}
\begin{document}
\begin{tikzpicture}[]
% Maße
\pgfmathsetmacro{\Breite}{1.4}
% Horizontale Maße
\pgfmathsetmacro{\a}{0} % 0
\pgfmathsetmacro{\b}{\Breite*1/7} % 0.2
\pgfmathsetmacro{\c}{\Breite*2/7} % 0.4
\pgfmathsetmacro{\d}{\Breite*3/7} % 0.6
\pgfmathsetmacro{\e}{\Breite*4/7} % 0.8
\pgfmathsetmacro{\f}{\Breite*5/7} % 1.0
\pgfmathsetmacro{\g}{\Breite*6/7} % 1.2
\pgfmathsetmacro{\h}{\Breite} % 1.4
%
\coordinate[] (a) at (\a,0);
\coordinate[] (b) at (\b,0);
\coordinate[] (c) at (\c,0);
\coordinate[] (d) at (\d,0);
\coordinate[] (e) at (\e,0);
\coordinate[] (f) at (\f,0);
\coordinate[] (g) at (\g,0);
\coordinate[] (h) at (\h,0);
% Vertikale Maße
% Koordinaten anzeigen
\foreach \x in {a,...,h}
\fill[red] (\x) circle (1pt) node[below]{\x};
% Untere Annotation zeichnen
\coordinate[] (A) at (0,-0.3);
\coordinate[] (B) at (0,-0.6);
\coordinate[] (C) at (0,-1);
\coordinate[] (D) at (0,-1.2);
\coordinate[] (E) at (0,-2);
\coordinate[] (F) at (0,-2.1);
\pgfmathsetmacro{\m}{0.5*\Breite}
\coordinate[] (m) at (\m,0);
\draw[rounded corners=2pt] (a) -- ($(A) + (a)$) -- ($(B) + (c)$) -- ($(C) + (c)$) -- ($(D) + (b)$) -- ($(E) + (b)$)
.. controls ($(F) + (m)$) ..
($(E) + (g)$) -- ($(D) + (g)$) -- ($(C) + (f)$) -- ($(B) + (f)$) -- ($(A) + (h)$) -- (h);
\end{tikzpicture}
\end{document}
[1]: https://texwelt.de/wissen/upfiles/55555555_153.png
[2]: https://texwelt.de/wissen/upfiles/55555555_153.png
[3]: https://texwelt.de/wissen/upfiles/55555555_154.png