why doesn't <drawArc> have the cap parameter? I ne...
# compose
j
why doesn't drawArc have the cap parameter? I need to round the line I draw.
a
You can set it by specifying
style = Stroke(width = width, cap = StrokeCap.Round)
.
j
oh, it makes sense. thanks Albert.