convex-hull
Advanced tools
Comparing version 1.0.2 to 1.0.3
@@ -33,3 +33,9 @@ 'use strict' | ||
} else { | ||
c[j] = x - nf | ||
x = x - nf | ||
for(var k=0; k<nf; ++k) { | ||
if(x >= front[k]) { | ||
x += 1 | ||
} | ||
} | ||
c[j] = x | ||
} | ||
@@ -36,0 +42,0 @@ } |
{ | ||
"name": "convex-hull", | ||
"version": "1.0.2", | ||
"version": "1.0.3", | ||
"description": "Any dimensional convex hull", | ||
@@ -5,0 +5,0 @@ "main": "ch.js", |
@@ -25,2 +25,3 @@ 'use strict' | ||
[1,0,0], | ||
[0.5,0.5,0], | ||
[1,1,0], | ||
@@ -27,0 +28,0 @@ [0.5,0.5,1] |
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
6186
137