JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 8
  • Score
    100M100P100Q55895F
  • License MIT

Solves Apollonius' problem by finding a fourth circle tangent to three given circles

Package Exports

  • apollonius
  • apollonius/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (apollonius) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

apollonius

Finds a fourth circle touching three given circles i.e. solves Apollonius' problem.

Usage

const circle1 = { x: 0, y: 0, r: 0 }
const circle2 = { x: 0, y: 0, r: 0 }
const circle3 = { x: 0, y: 0, r: 0 }
const tangentCircle = apollonius(circle1, circle2, circle3)

License

The apollonius source code is released under MIT license.