This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # svg to curves path https://www.shadertoy.com/view/Wtt3Wl | |
| #!/usr/bin/python3 | |
| import os | |
| import sys | |
| import numpy as np | |
| def read_value(string, index): | |
| #go to the beginning of the value | |
| while svg_content[index] not in numerals: |