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
intersections
Elements in groups can currently not be addressed by intersections.
The following code does not work:
#cetz.canvas({ group( name: "foo", { rotate(45deg) rect(name: "bar", (-1, -1), (1, 1)) }, ) line(name: "baz", (-2, -2), (2, 2)) intersections("i", "foo.bar", "baz") })
The text was updated successfully, but these errors were encountered:
This could have a big impact on performance, because we would have to store all named objects in the context.
Sorry, something went wrong.
No branches or pull requests
Elements in groups can currently not be addressed by
intersections
.The following code does not work:
#cetz.canvas({ group( name: "foo", { rotate(45deg) rect(name: "bar", (-1, -1), (1, 1)) }, ) line(name: "baz", (-2, -2), (2, 2)) intersections("i", "foo.bar", "baz") })
The text was updated successfully, but these errors were encountered: