npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

shape2path

v3.0.5

Published

Convert SVG shapes to SVG paths

Downloads

4,929

Readme

shape2path

Convert SVG shapes to SVG paths. Check out this demo. Build Status

Installation

If you use NPM, npm install shape2path. Otherwise, download the latest release. AMD, CommonJS, and vanilla environments are supported. In vanilla, a shape2path global is exported:

<script src="https://unpkg.com/[email protected]/build/shape2path.min.js"></script>
<script>

const path = shape2path.circle()
  .attr("r", 50) // Paths can be configured with constants...
  .attr("cx", d => d.cx); // ...or with functions. 

// The cy attribute defaults to zero because it was not specified.
path({cx: 50}); // M50,0 m-50,0 a50,50 0 1,0 100,0 a50,50 0 1,0 -100,0

</script>

API

shape2path's methods return configurable functions that can be used to produce the d attribute required to draw an SVG path identical to a corresponding SVG basic shape. Each method corresponds to a basic SVG shape: circle, ellipse, line, polygon, polyline, and rect.

# shape2path.circle() · Source, Example

Creates a new circle generator whose cx, cy, and r attributes are set to 0.

# shape2path.ellipse() · Source, Example

Creates a new ellipse generator whose cx, cy, rx, and ry attributes are set to 0.

# shape2path.line() · Source, Example

Creates a new line generator whose x1, y1, x2, and y2 attributes default to 0.

# shape2path.polygon() · Source, Example

Creates a new polygon generator whose points attribute defaults to "0,0".

# shape2path.polyline() · Source, Example

Creates a new polyline generator whose points attribute defaults to "0,0".

# shape2path.rect() · Source, Example

Creates a new rect generator whose x, y, width, height, rx, and ry attributes default to 0.

# shape([datum])

Returns a string representing the path's d attribute, whose appearance will be identical to an SVG basic shape corresponding to the generator's attributes. If datum is specified, applies the generator's functional accessors on the specified datum.

# shape.attr(name[, value])

If value is specified, sets the attribute name to the specified value and returns the generator. For instance, to set a circle generator's cx attribute to 10:

shape2path.circle()
  .attr("cx", 10);

If the value is constant, sets the position to that constant. Constants must be specified as numbers unless you are setting a points attribute, in which case you can set the constant to a string (e.g. "0,0 1,1") or an array of points (e.g. [[0,0], [1,1]]).

If value is a function, the function is evaluated for the passed datum, and the function's return value is used to set the attributes value. For instance, to set a circle generator's cx attribute to a datum's "left" attribute:

shape2path.circle()
  .attr("cx", d => d.left)
  ({left: 10});

If value is not specified, returns the current value of the attribute. For all attributes other than points, the value defaults to 0; for points, it defaults to "0,0".