Comparing version 0.2.9 to 0.2.10
{ | ||
"name": "hull-js", | ||
"version": "0.2.9", | ||
"version": "0.2.10", | ||
"description": "JavaScript library that builds concave hulls (shapes) by set of points", | ||
@@ -5,0 +5,0 @@ "homepage": "https://github.com/AndriiHeonia/hull", |
@@ -33,5 +33,5 @@ !function(e){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=e();else if("function"==typeof define&&define.amd)define([],e);else{var f;"undefined"!=typeof window?f=window:"undefined"!=typeof global?f=global:"undefined"!=typeof self&&(f=self),f.hull=e()}}(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){ | ||
function convex(pointset) { | ||
var convex; | ||
upper = _upperTangent(pointset); | ||
lower = _lowerTangent(pointset); | ||
var convex, | ||
upper = _upperTangent(pointset), | ||
lower = _lowerTangent(pointset); | ||
convex = lower.concat(upper); | ||
@@ -43,2 +43,3 @@ convex.push(pointset[0]); | ||
module.exports = convex; | ||
},{}],2:[function(require,module,exports){ | ||
@@ -45,0 +46,0 @@ module.exports = { |
{ | ||
"name": "hull.js", | ||
"version": "0.2.9", | ||
"version": "0.2.10", | ||
"description": "JavaScript library that builds concave hulls (shapes) by set of points", | ||
@@ -5,0 +5,0 @@ "homepage": "https://github.com/AndriiHeonia/hull", |
@@ -72,2 +72,4 @@ Hull.js - JavaScript library that builds concave hull by set of points. | ||
### 0.2.10 — 04.09.2016 | ||
Fixed missing "var" declaration | ||
### 0.2.9 — 28.07.2016 | ||
@@ -74,0 +76,0 @@ Fixed modification of the initial array, added filtration of the duplicates |
@@ -32,5 +32,5 @@ function _cross(o, a, b) { | ||
function convex(pointset) { | ||
var convex; | ||
upper = _upperTangent(pointset); | ||
lower = _lowerTangent(pointset); | ||
var convex, | ||
upper = _upperTangent(pointset), | ||
lower = _lowerTangent(pointset); | ||
convex = lower.concat(upper); | ||
@@ -41,2 +41,2 @@ convex.push(pointset[0]); | ||
module.exports = convex; | ||
module.exports = convex; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
17001166
433797
96