“正常化” C# 中的过程

发布于 2024-08-07 03:26:36 字数 167 浏览 8 评论 0原文

有人可以向我解释一下 C# 中 3D 表面网格的标准化过程是什么吗?

在一本参考书上,有这样一句话:

GetNormalize方法用于映射 你的表面区域变成 [-1, 1] 的区域,这给你一个 在屏幕上获得更好的视图。

Could someone explain to me what the normalization procedure for 3D surface mesh in C# is?

In a reference book, there is a line as follows :

The GetNormalize method is used to map
the region of your surface into a
region of [-1, 1], which gives you a
better view on your screen.

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

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

发布评论

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

评论(1

櫻之舞 2024-08-14 03:26:36

您计算包围表面网格的盒子,获取盒子的最长边,然后按该值缩小所有内容。该侧的结果将为 [0,1],其余侧的结果将为 [0,<1]。

如果需要 [-1,1],则将所有内容加倍并减去 1,得到 [0,1]*2-1=[0,2]-1=[-1,1]。

You calculate the box bounding your surface mesh, get the longest side of the box and scale everything down by that value. The result will be [0,1] for that side and [0,<1] for the rest.

If you need [-1,1], you double everything and substract 1, getting [0,1]*2-1=[0,2]-1=[-1,1].

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