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
On line https://github.com/vt-vl-lab/3d-photo-inpainting/blob/e6872a8/mesh.py#L764
mesh.node should be mesh.nodes, so
mesh.node
mesh.nodes
mesh = refresh_node(single_edge_node, mesh.node[single_edge_node], new_node, dict(), mesh)
should be replaced by
mesh = refresh_node(single_edge_node, mesh.nodes[single_edge_node], new_node, dict(), mesh)
The text was updated successfully, but these errors were encountered:
Fixes a typo on nodes
4290943
Closes vt-vl-lab#71
Successfully merging a pull request may close this issue.
On line https://github.com/vt-vl-lab/3d-photo-inpainting/blob/e6872a8/mesh.py#L764
mesh.node
should bemesh.nodes
, soshould be replaced by
The text was updated successfully, but these errors were encountered: