请帮助我画一个厚度为2的圆。 我能够绘制一个实心圆(下面的代码)。如何使它的厚度为2?
M 0,0 A 180,180 180 1 1 1,1 Z
答案 0 :(得分:1)
您无法使用路径标记创建一个完整的圆,因为起点和终点是相同的。您只能绘制至少两个圆形线段,例如两个半圆:
<Path Stroke="Blue" StrokeThickness="2"
Data="M 0,100 A 100,100 0 1 1 200,100 A 100,100 0 1 1 0,100"/>
您也许最好使用EllipseGeometry:
<Path Stroke="Blue" StrokeThickness="2">
<Path.Data>
<EllipseGeometry Center="100,100" RadiusX="100" RadiusY="100"/>
</Path.Data>
</Path>