Create a PathFigure with P1 as StartPointwell as an ArcSegment with P2 as Pointwell as a quadratic Sizethat contains a radius.
Example: P1 = (150 100), P2 = (50.50), Radius = 100, i.e. Size = (100 100):
<Path Stroke="Black">
<Path.Data>
<PathGeometry>
<PathFigure StartPoint="150,100">
<ArcSegment Size="100,100" Point="50,50"/>
</PathFigure>
</PathGeometry>
</Path.Data>
</Path>
or shorter:
<Path Stroke="Black" Data="M150,100 A100,100 0 0 0 50,50"/>
source
share