Skip to content
Snippets Groups Projects
Commit 4c1c5689 authored by Jonathan Wilkes's avatar Jonathan Wilkes
Browse files

add feature to "normalize" svg path data and pass it along as a FUDI message...

add feature to "normalize" svg path data and pass it along as a FUDI message (e.g., "M0-2l3 4" becomes "M 0 -2 l 3 4")
This gets triggered when the user include the "d=" and double quotes as the object args to [draw path].  So [draw path d="M0-2l3 4"] triggers a conversion to [draw path M 0 -2 l 3 4], whereas [draw path M0-2l3 4] does not. This is necessary because Pd lets the user include scalar fields inside path data, and we can't normalize that.
parent 92905e88
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment