重新计算可编辑多边形对象的法线
我正在为一家出口商工作,但我遇到的问题是正常的计算。
我读过很多关于此的文章,似乎“getnormal”功能没有按预期工作。 (这是为我的出口商创造错误结果的一个)。
所以我需要手动重新计算。
问题是 - 我该怎么做? 计算法线的部分现在看起来像这样:
如果您提供一个函数,那么请记住下面的代码,我不想重写所有内容。
提前致谢。
for i = 1 to num_faces do
(
face = getFace Obj i
v1 = (MeshArrays[2].count + 1)
v2 = (MeshArrays[2].count + 2)
v3 = (MeshArrays[2].count + 3)
append MeshArrays[1] [v1,v2,v3]
v1 = coordsys world getvert Obj face.x
v2 = coordsys world getvert Obj face.y
v3 = coordsys world getvert Obj face.z
append MeshArrays[2] v1
append MeshArrays[2] v2
append MeshArrays[2] v3
v1 = (coordsys local getnormal Obj face.x) -- * theInvTM
v2 = (coordsys local getnormal Obj face.y) --* theInvTM
v3 = (coordsys local getnormal Obj face.z) --* theInvTM
append MeshArrays[4] v1
append MeshArrays[4] v2
append MeshArrays[4] v3
if Obj.numtverts != 0 then
(
tvface = getTVFace Obj i
v1 = getTVert Obj tvface.x
v2 = getTVert Obj tvface.y
v3 = getTVert Obj tvface.z
append MeshArrays[3] v1
append MeshArrays[3] v2
append MeshArrays[3] v3
)
)
I'm working on a exporter, but the problem I'm stuck at is the normal calculation.
I've been reading many posts about this, and it seems like the "getnormal" function does not work like intended. (this is the one creating wrong results for my exporter).
So I need to recalculate it manually.
The question is - How do I do this?
the part that calculates the normal now looks like this:
If you provide a function, then please keep in mind this code below, I'd like to not rewrite everything.
thanks in advance.
for i = 1 to num_faces do
(
face = getFace Obj i
v1 = (MeshArrays[2].count + 1)
v2 = (MeshArrays[2].count + 2)
v3 = (MeshArrays[2].count + 3)
append MeshArrays[1] [v1,v2,v3]
v1 = coordsys world getvert Obj face.x
v2 = coordsys world getvert Obj face.y
v3 = coordsys world getvert Obj face.z
append MeshArrays[2] v1
append MeshArrays[2] v2
append MeshArrays[2] v3
v1 = (coordsys local getnormal Obj face.x) -- * theInvTM
v2 = (coordsys local getnormal Obj face.y) --* theInvTM
v3 = (coordsys local getnormal Obj face.z) --* theInvTM
append MeshArrays[4] v1
append MeshArrays[4] v2
append MeshArrays[4] v3
if Obj.numtverts != 0 then
(
tvface = getTVFace Obj i
v1 = getTVert Obj tvface.x
v2 = getTVert Obj tvface.y
v3 = getTVert Obj tvface.z
append MeshArrays[3] v1
append MeshArrays[3] v2
append MeshArrays[3] v3
)
)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通过用以下代码替换适当的行来解决它:
resolved it by replacing the appropriate lines with the following code: