projectshaped / parametric-svg

[NOT MAINTAINED] Parametric drawings in pure SVG.
http://parametric-svg.js.org
73 stars 5 forks source link

Template strings #7

Closed tomek-he-him closed 9 years ago

tomek-he-him commented 9 years ago

m 400,300 L ${400 + x},${300 - y}

concat("m 400,300 L ", String(400 + x), ",", String(300 - y)) (mathjs)

tomek-he-him commented 9 years ago

Open question: escaping. How to have a string like ${{{}}}.