You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Then I encountered ValueError: assignment destination is read-only.
If I add the line path.vertices.setflags(write=1) right after path object is created,
I can reproduce the showcase.
I used matplotlib 3.6.3, which might be different behaviour for a default object editing permission (can be checked by path.vertices.flags) .
Hope this comment will help improve reproducibility.
The text was updated successfully, but these errors were encountered:
I try to replicate
shocase/text-spiral.py
in my laptop.I tried to run the following code.
Then I encountered
ValueError: assignment destination is read-only
.If I add the line
path.vertices.setflags(write=1)
right afterpath
object is created,I can reproduce the showcase.
I used matplotlib 3.6.3, which might be different behaviour for a default object editing permission (can be checked by
path.vertices.flags
) .Hope this comment will help improve reproducibility.
The text was updated successfully, but these errors were encountered: