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
Two suggestions:
let s = rectangle 50 50 in let thick_s = s |> scale 2 |> scale_thickness 1.5 in show [s; thick_s]
This will also change how we handle Cairo backend. We don't eagerly render and carry a half rendered canvas in memory.
Instead, we only store a list of shapes (added by show) and then render it at once within write.
show
write
The text was updated successfully, but these errors were encountered:
I am open to alternatives for scale_thickness (and also just thickness too).
scale_thickness
thickness
Sorry, something went wrong.
No branches or pull requests
Two suggestions:
This will also change how we handle Cairo backend. We don't eagerly render and carry a half rendered canvas in memory.
Instead, we only store a list of shapes (added by
show
) and then render it at once withinwrite
.The text was updated successfully, but these errors were encountered: