Open
Description
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?