1.1.2 • Published 6 years ago

ebabel-distance v1.1.2

Weekly downloads
2
License
GPL-3.0
Repository
github
Last release
6 years ago

ebabel-distance

Build Status

Return the distance in 3D space from point "i" x, y, and z coordinates to point "j" x, y, and z coordinates.

Module install and usage in your game

Install

npm i --save ebabel-distance

Usage

const distance = require('ebabel-distance');
const i = [-4, 10, 3];
const j = [2, 3, 8];

const result = distance(i, j);

Development of this module

Fork this repository on Github, git clone your repository, checkout the develop branch, and when you are done, submit a pull request from your repository develop branch to this repository develop branch.

  • fork repository on github.com
  • git clone 'fork repository'
  • git checkout -b develop

First step when developing

npm install

Run linting and unit tests

npm test

An html coverage report is to be found in the coverage folder.

Generate documentation

npm run jsdoc

The generated documentation is to be found in the docs folder.

1.1.2

6 years ago

1.1.1

6 years ago

1.1.0

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago