Cannot export correct ply file after remesh function. #3053
Answered
by
Grantim
zhangzhousuper
asked this question in
Q&A
-
Hi,
Do u guys have any advice for me to export the ply file? |
Beta Was this translation helpful? Give feedback.
Answered by
Grantim
Jul 24, 2024
Replies: 1 comment 4 replies
-
Hello! |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Looks like the issue is that you have invalid colors vector, you need to update it on decimation and remesh. It works with decimation because decimation does not produce new vertices, and color vector has valid size (while colors are still not updated correctly), but remesh produce new vertices and color vector after it is smaller than it should be (and not updated).
I suggest you to add update code like this, so your color vector will stay valid and updated.