Skip to content
This repository was archived by the owner on Feb 8, 2025. It is now read-only.

Commit 1ce2b41

Browse files
committed
version update
1 parent b5e5108 commit 1ce2b41

File tree

6 files changed

+7
-8
lines changed

6 files changed

+7
-8
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2014-2016, Andrii Heonia
1+
Copyright (c) 2014-2019, Andrii Heonia
22
All rights reserved.
33

44
Redistribution and use in source and binary forms, with or without

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Let's see step by step what happens when you call `hull()` function:
4343
</ol>
4444

4545
## Limitations
46-
This library relies on ES6. The ES6 features used are
46+
This library relies on ES6. The ES6 features used are:
4747
- `new Set(null)`, `Set#add`, `Set#has`
4848
- `let`, `const`
4949
- `Math.trunc` (if available)
@@ -52,7 +52,7 @@ You may use [polyfills](https://www.npmjs.com/package/core-js) for `Set` and com
5252

5353
## Development
5454
npm install # install dependencies
55-
npm test # build dist file and run tests
55+
npm test # build dist file and run tests
5656
npm run-script watch # watch ./src dir and rebuild dist file
5757

5858
## Contribute
@@ -61,7 +61,6 @@ If you want to get involved with Hull.js development, just use <a href="https://
6161

6262
## To-do
6363

64-
* think about parallelisation (on GPU or CPU);
6564
* think about holes;
6665
* think about automatic `concavity` adjustment based on density.
6766

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hull-js",
3-
"version": "0.2.10",
3+
"version": "1.0.0",
44
"description": "JavaScript library that builds concave hulls (shapes) by set of points",
55
"homepage": "https://github.com/AndriiHeonia/hull",
66
"keywords": [

dist/hull.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ function grid(points, cellSize) {
151151
module.exports = grid;
152152
},{}],4:[function(require,module,exports){
153153
/*
154-
(c) 2014-2016, Andrii Heonia
154+
(c) 2014-2019, Andrii Heonia
155155
Hull.js, a JavaScript library for concave hull generation by set of points.
156156
https://github.com/AndriiHeonia/hull
157157
*/

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hull.js",
3-
"version": "0.2.11",
3+
"version": "1.0.0",
44
"description": "JavaScript library that builds concave hulls (shapes) by set of points",
55
"homepage": "https://github.com/AndriiHeonia/hull",
66
"keywords": [

src/hull.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
(c) 2014-2016, Andrii Heonia
2+
(c) 2014-2019, Andrii Heonia
33
Hull.js, a JavaScript library for concave hull generation by set of points.
44
https://github.com/AndriiHeonia/hull
55
*/

0 commit comments

Comments
 (0)