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

fork-bone

v3.0.1

Published

Given three points, a, b, and c, and a length p, finds two points that are length p away from b that sit on the bisecting line of the angle between lines ab and bc.

Downloads

15

Readme

fork-bone

Given a "bone" line, creates two points. If a line is drawn from the end of the bone to each of the points, these two new lines will be branches that "fork" off of the bone. The points, while chosen randomly, create branches that are guaranteed to:

  • Not be on the same side of the ray that would be created by extending the bone indefinitely.
  • Form an acute angle with the bone ray.
  • Be within the length range specified.

Check out some examples.

Installation

npm install fork-bone

Usage

var ForkBone = require('fork-bone');

var forkBone = ForkBone();

console.log(forkBone({
  line: [
    [-50, 0],
    [-9, 0]
  ],
  lengthRange: [5, 15]
}));

Output:

[
  [ 2.3339615604739095, -3.9422474992952727 ],
  [ -5.620344845177656, 12.553004860768706 ]
]

A graph of the line with the resulting fork:

Example graph

Pass symmetrical: true if you want the forks to be symmetrical. Pass angleRange: [<lower bound in degrees>, <upper bound> if you want to have a particular angle away from ray extending from the end of the bone. For example, [30, 45] will result in forks that are between 60 and 90 degrees apart from each other. Pass a two-element array in lengthRange if you want to define the fork length range. The first element should be the bottom of the range, and the second should be the top.

When creating ForkBone, you can optionally pass two opts:

  • random: A function that behaves like Math.random. You can substitute one created by seedrandom or something you've written yourself. Helps with situations in which you want reproducible results.
  • numberOfDecimalsToConsider: A positive number that tells it how precise to be when picking numbers in a range. If it encounters a range of 0.001, by default, it will always pick 0. (If the range is 100, it'll pick a whole number between 0 and 99.) If you specify 3 as numberOfDecimalsToConsider, it can pick numbers like 0.003 and 0.995. Useful for working for points that are really close together.

Tests

Run tests with make test.

Run test in browser with make test-firefox.

Tests and tools require Node 6. Module itself should work in all versions of Node and modern browsers.

License

The MIT License (MIT)

Copyright (c) 2016 Jim Kang

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.