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

round-corner

v1.0.2

Published

Round the corner of two line segments with an arc.

Downloads

6

Readme

Round Corners

Take two line segments and round the corner where they meet with an arc. This function is built to be un-opinionated about its end use and can be applied to Canvas 2d, SVG, D3, or whatever applications.

Round corner example

Example

var roundCorners = require('round-corners')
var line = [
  [250, 1000],
  [400, 100],
  [750, 700]
]
var inset = 500

var sequence = roundCorners(line, inset)
// sequence === [segmentA, arc, segmentC]

The result

The resulting sequence using ES6 destructuring notation takes the form:

var [segmentA, arc, segmentB] = roundCorners(line, inset)

Or explicitly it looks like:

[
  [
    [250, 1000],
    [317.8, 593.1]
  ],
  {
    center: [495.9, 622.8],
    radius: 180.5,
    start: 3.3,
    end: 5.7
  },
  [
    [651.9, 531.8],
    [750, 700]
  ]
]

Example Usage

2d Canvas

This format lends itself to 2d canvas rendering. Here is an example of how to render the result.

function drawCanvas2dArc (ctx, sequence) {
  var segmentA = sequence[0]
  var arc = sequence[1]
  var segmentB = sequence[2]

  ctx.beginPath()
  ctx.moveTo(segmentA[0][0], segmentA[0][1])
  ctx.lineTo(segmentA[1][0], segmentA[1][1])
  ctx.arc(arc.center[0], arc.center[1], arc.radius, arc.start, arc.end)
  ctx.moveTo(segmentB[0][0], segmentB[0][1])
  ctx.lineTo(segmentB[1][0], segmentB[1][1])
  ctx.lineWidth = 4
  ctx.strokeStyle = '#fff'
  ctx.stroke()
}

See this RequireBin for a live example.

SVG

It can also be used with SVG with a few extra utility functions.

// Run this function to calculate the "d" attribute for a path.
function generateArcPath (sequence) {
  var segmentA = sequence[0]
  var arc = sequence[1]
  var segmentB = sequence[2]

  return [
    drawLine(segmentA),
    drawArc(segmentA, arc, segmentB),
    drawLine(segmentB)
  ].join(' ')
}

function drawLine (segment) {
  return 'M' + segment[0][0] + ',' + segment[0][1] + ' ' +
         'L' + segment[1][0] + ',' + segment[1][1]
}

function drawArc (segmentA, arc, segmentB) {
  // We need to compute the rotation of the arc to match the needed SVG format.
  var rotation = toDegrees(Math.atan2(
    segmentB[0][1] - segmentA[1][1],
    segmentB[0][0] - segmentA[1][0]
  ))
  return [
    'A', arc.radius, arc.radius, rotation, 0, 1, segmentB[0][0], segmentB[0][1]
  ].join(' ')
}

function toDegrees (radians) {
  return radians / Math.PI * 180
}

See this RequireBin for a live example.

Running the examples

  • Clone the repo, or navigate to the ./node_modules/round-corner folder of the currently installed location.
  • From the command line run npm install
  • SVG example: run npm run example:svg
  • Canvas example: run npm run example:canvas