<?xml version="1.0" encoding="UTF-8" ?> <?xml-stylesheet type="text/xsl" href="rss.xsl"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/"> <channel> <title>HDpip</title><description>HDpip 的官方网站</description><link>https://handongliren.github.io/HDpip/</link><atom:link href="https://handongliren.github.io/HDpip/feed_rss_updated.xml" rel="self" type="application/rss+xml" /> <managingEditor>handongliren</managingEditor><docs>https://github.com/handongliren/HDpip</docs><language>zh</language> <pubDate>Thu, 10 Sep 2026 13:52:44 -0000</pubDate> <lastBuildDate>Thu, 10 Sep 2026 13:52:44 -0000</lastBuildDate> <ttl>1440</ttl> <generator>MkDocs RSS plugin - v1.19.0</generator> <image> <url>None</url> <title>HDpip</title> <link>https://handongliren.github.io/HDpip/</link> </image> <item> <title>网站新增博客功能🎉</title> <author>Xiaokang2022</author> <category>官方文章</category> <category>新增功能</category> <category>网站</category> <category>说明</category> <description>&lt;h1&gt;网站新增博客功能🎉&lt;/h1&gt; &lt;div class=&#34;statistics&#34; markdown style=&#34;font-size: small; opacity: 0.7;&#34;&gt; :octicons-pencil-16: 字数 1339 个 &amp;nbsp;:octicons-code-16: 代码 43 行 &amp;nbsp;:octicons-clock-16: 阅读时间 5 分钟 &amp;nbsp;:octicons-graph-16: 访问量 &lt;span id=&#34;busuanzi_page_pv&#34;&gt;&lt;i class=&#34;fa fa-spinner fa-spin&#34;&gt;&lt;/i&gt;&lt;/span&gt; &lt;/div&gt; &lt;p&gt;网站新增了博客功能，大家可以把自己的经验、想法写成文章，通过 &lt;a href=&#34;https://github.com/Xiaokang2022/maliang/pulls&#34;&gt;拉取请求&lt;/a&gt;（Pull Request）来添加到此处，以后官方的文章也会在此处贴出。当然，项目团队会对内容的合规性进行审核，&lt;strong&gt;但我们不对文章内容的正确与否做保证&lt;/strong&gt;，我们只保证内容符合项目的 &lt;a href=&#34;../../../CODE_OF_CONDUCT.md&#34;&gt;行为准则&lt;/a&gt;。~~反正文章底部有评论区，内容的正确与否自会有人评判（笑）~~&lt;/p&gt; &lt;p&gt;也不用担心自己文章的内容写错了无法更改，想要更改很简单，再创建一个新的拉取请求进行更改就行。&lt;/p&gt; &lt;p&gt;好了，简单的介绍就到这里，下面是深入地对这个博客机制进行说明。&lt;/p&gt;</description> <link>https://handongliren.github.io/HDpip/blog/9999/09/09/%E7%BD%91%E7%AB%99%E6%96%B0%E5%A2%9E%E5%8D%9A%E5%AE%A2%E5%8A%9F%E8%83%BD/</link> <pubDate>Tue, 12 Nov 2024 00:00:00 +0000</pubDate> <source url="https://handongliren.github.io/HDpip/feed_rss_updated.xml">HDpip</source><comments>https://handongliren.github.io/HDpip/blog/9999/09/09/%E7%BD%91%E7%AB%99%E6%96%B0%E5%A2%9E%E5%8D%9A%E5%AE%A2%E5%8A%9F%E8%83%BD/#__comments</comments><guid isPermaLink="true">https://handongliren.github.io/HDpip/blog/9999/09/09/%E7%BD%91%E7%AB%99%E6%96%B0%E5%A2%9E%E5%8D%9A%E5%AE%A2%E5%8A%9F%E8%83%BD/</guid> </item> <item> <title>几种相对坐标转绝对坐标的实现方法</title> <author>I-love-study</author> <author>Xiaokang2022🤖</author> <category>3.0.0rc1</category> <category>用户投稿</category> <category>经验</category> <description>&lt;h1&gt;几种相对坐标转绝对坐标的实现方法&lt;/h1&gt; &lt;div class=&#34;statistics&#34; markdown style=&#34;font-size: small; opacity: 0.7;&#34;&gt; :octicons-pencil-16: 字数 280 个 &amp;nbsp;:octicons-code-16: 代码 39 行 &amp;nbsp;:octicons-clock-16: 阅读时间 1 分钟 &amp;nbsp;:octicons-graph-16: 访问量 &lt;span id=&#34;busuanzi_page_pv&#34;&gt;&lt;i class=&#34;fa fa-spinner fa-spin&#34;&gt;&lt;/i&gt;&lt;/span&gt; &lt;/div&gt; &lt;p&gt;因为 &lt;code&gt;tkintertools&lt;/code&gt; 是基于坐标绘制的 UI 库，所以需要很多绝对坐标，但是如果有些组件坐标关联程度较大的话，就可能会出现牵一发而动全身的效果，并且由于 &lt;code&gt;position&lt;/code&gt; 的 type hint 要求是 &lt;code&gt;#!py tuple[int, int]&lt;/code&gt;，所以像是使用 &lt;code&gt;list&lt;/code&gt;, &lt;code&gt;#!py numpy.array&lt;/code&gt; 之类的就会在类型检查的时候报红。 为了能够不要每次修改坐标都需要牵一发而动全身，下面有几种方法能够简化大家计算绝对路径的方法。&lt;/p&gt;</description> <link>https://handongliren.github.io/HDpip/blog/2024/09/09/%E5%87%A0%E7%A7%8D%E7%9B%B8%E5%AF%B9%E5%9D%90%E6%A0%87%E8%BD%AC%E7%BB%9D%E5%AF%B9%E5%9D%90%E6%A0%87%E7%9A%84%E5%AE%9E%E7%8E%B0%E6%96%B9%E6%B3%95/</link> <pubDate>Tue, 12 Nov 2024 00:00:00 +0000</pubDate> <source url="https://handongliren.github.io/HDpip/feed_rss_updated.xml">HDpip</source><comments>https://handongliren.github.io/HDpip/blog/2024/09/09/%E5%87%A0%E7%A7%8D%E7%9B%B8%E5%AF%B9%E5%9D%90%E6%A0%87%E8%BD%AC%E7%BB%9D%E5%AF%B9%E5%9D%90%E6%A0%87%E7%9A%84%E5%AE%9E%E7%8E%B0%E6%96%B9%E6%B3%95/#__comments</comments><guid isPermaLink="true">https://handongliren.github.io/HDpip/blog/2024/09/09/%E5%87%A0%E7%A7%8D%E7%9B%B8%E5%AF%B9%E5%9D%90%E6%A0%87%E8%BD%AC%E7%BB%9D%E5%AF%B9%E5%9D%90%E6%A0%87%E7%9A%84%E5%AE%9E%E7%8E%B0%E6%96%B9%E6%B3%95/</guid> </item> </channel> </rss>