WPF 绘图悖论

发布于 2024-10-03 13:08:42 字数 927 浏览 4 评论 0原文

两个具有相同半径的椭圆(视觉上)怎么可能具有相同的半径?

在下图中,黑色和红色椭圆具有相同的 RadiusX...但是请看图片!
替代文本

<GeometryDrawing Brush="Red">
    <GeometryDrawing.Pen>
        <Pen Brush="Yellow" Thickness="1"/>
    </GeometryDrawing.Pen>
    <GeometryDrawing.Geometry>
        <GeometryGroup>
            <EllipseGeometry x:Name="MediumCircle" 
                             Center="0,0" RadiusX="4" RadiusY="4" />
        </GeometryGroup>
    </GeometryDrawing.Geometry>
</GeometryDrawing>
<GeometryDrawing Brush="Black">
    <GeometryDrawing.Geometry>
        <GeometryGroup>
            <EllipseGeometry x:Name="SmallCircle" 
                             Center="0,0" RadiusX="4" RadiusY="2"/>
        </GeometryGroup>
    </GeometryDrawing.Geometry>
</GeometryDrawing>

How is it possible, that 2 ellipses with the same Radius where not (visually) with the same Radius?

in the image bellow, Black and Red ellipses has the same RadiusX... but look on the picture!
alt text

<GeometryDrawing Brush="Red">
    <GeometryDrawing.Pen>
        <Pen Brush="Yellow" Thickness="1"/>
    </GeometryDrawing.Pen>
    <GeometryDrawing.Geometry>
        <GeometryGroup>
            <EllipseGeometry x:Name="MediumCircle" 
                             Center="0,0" RadiusX="4" RadiusY="4" />
        </GeometryGroup>
    </GeometryDrawing.Geometry>
</GeometryDrawing>
<GeometryDrawing Brush="Black">
    <GeometryDrawing.Geometry>
        <GeometryGroup>
            <EllipseGeometry x:Name="SmallCircle" 
                             Center="0,0" RadiusX="4" RadiusY="2"/>
        </GeometryGroup>
    </GeometryDrawing.Geometry>
</GeometryDrawing>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

孤云独去闲 2024-10-10 13:08:42

一个有描边边框,另一个没有。您会注意到半径与描边边框的中心对齐。

One has a stroked border and the other doesn't. You'll notice the radius lines up with the center of the stroked border.

撩动你心 2024-10-10 13:08:42

看来厚度是罪魁祸首。使两者相同。

Looks like the thickness is to blame. Make them the same for both.

海螺姑娘 2024-10-10 13:08:42

我想我找到了答案,但不确定...椭圆的厚度并不完全围绕椭圆。如果我们将厚度设置为 4,我们将只能看到 2 个像素的椭圆,如果我们设置为 8,我们将不再看到红色圆圈...

I think I found the reply, but not sure... The Thickness of the ellipse goes not totally around the ellipse. If we Set the Thickness to 4 we will see only 2 pixels of ellipse, if we set at 8, we will not see the red circle anymore...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文