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
In a yaml file, we currently need to specify tags for vector and matrix (i.e., !Vector and !Matrix) type in advance like:
!Vector
!Matrix
left: default: !Matrix &left_default [[0., 0., 1., 0.], [1., 0., 0., 0.], [0., 1., 0., .18], [0., 0., 0., 1.]] cylinder: *left_default
We could remove the tag requirement by checking if the node is sequence (for vector) or nested sequence (for matrix).
Related PR: #175
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
In a yaml file, we currently need to specify tags for vector and matrix (i.e.,
!Vector
and!Matrix
) type in advance like:We could remove the tag requirement by checking if the node is sequence (for vector) or nested sequence (for matrix).
Related PR: #175
The text was updated successfully, but these errors were encountered: