gpt4 book ai didi

c# - 路径几何中的圆

转载 作者:行者123 更新时间:2023-12-03 08:57:14 25 4
gpt4 key购买 nike

请帮我画一个厚度为2的圆。我能够画一个实心圆(代码如下)。如何使其不填充厚度为2?

M 0,0 A 180,180 180 1 1 1,1 Z

最佳答案

您无法使用路径标记创建完整的圆,因为起点和终点相同。您只能绘制至少两个圆段,例如两个半圆:

<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>

关于c# - 路径几何中的圆,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54323256/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com