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
I have an option for getStroke but the resulting stroke doesn't feel smooth.
const options = { size: 3, thinning: 0.2, smoothing: 1, streamline: 0.1, easing: (t) => t, start: { taper: 0, easing: (t) => t, cap: true, }, end: { taper: 10, easing: (t) => t, cap: true, }, };
My canvas have width={440} ; height={220}
Can you help me make it more beautiful?
The text was updated successfully, but these errors were encountered:
Same issue in Svelte as well
Sorry, something went wrong.
try to use high DPI canvas
const width = 500; const height = 500; const scale = 2; <canvas width={width * scale} height={height * scale} style={{ width: width, height: height }}></canvas>
No branches or pull requests
I have an option for getStroke but the resulting stroke doesn't feel smooth.
My canvas have
width={440} ; height={220}
Can you help me make it more beautiful?
The text was updated successfully, but these errors were encountered: