There is a D3.js plugin to create superellipse shapes. Just modify your variables, save SVG result and open in Sketch/AI or any other vector editing app.
Edit: It doesn't live update parameters. To make it live, paste and run this command in the console: ```javascript control.select('input').on("input", function(d) { var v = scale.invert(this.value); path.attr("d", shape.param(d.key, v)); d3.select(this.nextSibling).text(format(v)); })
There is a D3.js plugin to create superellipse shapes. Just modify your variables, save SVG result and open in Sketch/AI or any other vector editing app.
Edit: It doesn't live update parameters. To make it live, paste and run this command in the console: ```javascript control.select('input').on("input", function(d) { var v = scale.invert(this.value); path.attr("d", shape.param(d.key, v)); d3.select(this.nextSibling).text(format(v)); })