We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hello,
When trying to embed a spherical image into an e57 file. I noticed that the BlobNode is not supported by StructureNode.set method.
The culprit was libe57_wrapper.cpp in the following lines:
libe57_wrapper.cpp
cls_StructureNode.def("set", [](StructureNode &node, const std::string &pathName, StructureNode &n){ node.set(pathName, n); }, "pathName"_a, "n"_a); cls_StructureNode.def("set", [](StructureNode &node, const std::string &pathName, VectorNode &n){ node.set(pathName, n); }, "pathName"_a, "n"_a); cls_StructureNode.def("set", [](StructureNode &node, const std::string &pathName, CompressedVectorNode &n){ node.set(pathName, n); }, "pathName"_a, "n"_a); cls_StructureNode.def("set", [](StructureNode &node, const std::string &pathName, IntegerNode &n){ node.set(pathName, n); }, "pathName"_a, "n"_a); cls_StructureNode.def("set", [](StructureNode &node, const std::string &pathName, ScaledIntegerNode &n){ node.set(pathName, n); }, "pathName"_a, "n"_a); cls_StructureNode.def("set", [](StructureNode &node, const std::string &pathName, FloatNode &n){ node.set(pathName, n); }, "pathName"_a, "n"_a); cls_StructureNode.def("set", [](StructureNode &node, const std::string &pathName, StringNode &n){ node.set(pathName, n); }, "pathName"_a, "n"_a);
as can be seen there is no implementation for BlobNode. I tested adding a BlobNode implementation and rebuilded and this worked
The text was updated successfully, but these errors were encountered:
closed by #59
Sorry, something went wrong.
No branches or pull requests
Hello,
When trying to embed a spherical image into an e57 file. I noticed that the BlobNode is not supported by StructureNode.set method.
The culprit was
libe57_wrapper.cpp
in the following lines:as can be seen there is no implementation for BlobNode. I tested adding a BlobNode implementation and rebuilded and this worked
The text was updated successfully, but these errors were encountered: