This is a silly question, but how can I make the stroke of some canvas object invisible? Setting the width to 0 doesn't help (thin, but visible), and I don't know which color I should change the stroke to.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
closed as not a real question by Mohit Jain, casperOne♦ Jun 18 '12 at 12:10
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
Setting the opacity to zero will achieve that effect - i.e:
|
||||
|
|
|
Setting the stroke to fully transparent as alnitak suggests is one way, but a slightly more appropriate (and more performant) way would be to simply not call stroke()! The path (and all subpaths) will still exist if you don't call stroke and you can still fill or add to the path as you please. |
|||||
|