Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Multiple calls to AddPropertiesToElement fail #6

Open
MikeJPelton opened this issue Dec 19, 2023 · 0 comments
Open

Multiple calls to AddPropertiesToElement fail #6

MikeJPelton opened this issue Dec 19, 2023 · 0 comments

Comments

@MikeJPelton
Copy link

A second call to AddPropertiesToElement raises the "already exist property key vertex" exception.

using (var writeStream = new FileStream(outputFilePath, FileMode.Create, FileAccess.Write))
            {
                PlyFile writeFile = new() { IsBinary = true };
                writeFile.AddPropertiesToElement("vertex", new[] { "x", "y", "z" }, xyz);
                writeFile.AddPropertiesToElement("vertex", new[] { "nx", "ny", "nz" }, normals);
                writeFile.AddPropertiesToElement("vertex", new[] { "red", "green", "blue" }, rgb);
                writeFile.Write(writeStream);
            }

...fails on the second call, but the original C++ code examples do exactly this. The only to add data of multiple types (floats for position and bytes for colour for example) is to make multiple calls. Your code tries to create the vertex element a second time and fails, instead it should reference the existing element. I am cobbling a workaround together which I will share if it succeeds.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant