@thi.ng/geom-accel
Advanced tools
Comparing version 1.2.9 to 1.2.10
@@ -6,2 +6,10 @@ # Change Log | ||
## [1.2.10](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-accel@1.2.9...@thi.ng/geom-accel@1.2.10) (2019-11-30) | ||
**Note:** Version bump only for package @thi.ng/geom-accel | ||
## [1.2.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-accel@1.2.8...@thi.ng/geom-accel@1.2.9) (2019-11-09) | ||
@@ -8,0 +16,0 @@ |
@@ -31,3 +31,3 @@ import { Fn, ICopy, Pair } from "@thi.ng/api"; | ||
keys(): IterableIterator<K>; | ||
readonly length: number; | ||
get length(): number; | ||
copy(): KdTree<K, V>; | ||
@@ -34,0 +34,0 @@ add(p: K, v: V, eps?: number): boolean; |
{ | ||
"name": "@thi.ng/geom-accel", | ||
"version": "1.2.9", | ||
"description": "nD spatial indexing data structures", | ||
"version": "1.2.10", | ||
"description": "n-D spatial indexing data structures", | ||
"module": "./index.js", | ||
@@ -21,24 +21,27 @@ "main": "./lib/index.js", | ||
"build:test": "rimraf build && tsc -p test/tsconfig.json", | ||
"test": "yarn build:test && mocha build/test/*.js", | ||
"cover": "yarn build:test && nyc mocha build/test/*.js && nyc report --reporter=lcov", | ||
"test": "mocha test", | ||
"cover": "nyc mocha test && nyc report --reporter=lcov", | ||
"clean": "rimraf *.js *.d.ts .nyc_output build coverage doc lib internal", | ||
"doc": "node_modules/.bin/typedoc --mode modules --out doc --ignoreCompilerErrors src", | ||
"doc:readme": "../../scripts/generate-readme", | ||
"doc": "node_modules/.bin/typedoc --mode modules --out doc src", | ||
"pub": "yarn build:release && yarn publish --access public" | ||
}, | ||
"devDependencies": { | ||
"@istanbuljs/nyc-config-typescript": "^0.1.3", | ||
"@types/mocha": "^5.2.6", | ||
"@types/node": "^12.6.3", | ||
"mocha": "^6.1.4", | ||
"@types/node": "^12.12.11", | ||
"mocha": "^6.2.2", | ||
"nyc": "^14.0.0", | ||
"typedoc": "^0.15.0", | ||
"typescript": "^3.6.4" | ||
"ts-node": "^8.5.2", | ||
"typedoc": "^0.15.2", | ||
"typescript": "^3.7.2" | ||
}, | ||
"dependencies": { | ||
"@thi.ng/api": "^6.5.0", | ||
"@thi.ng/arrays": "^0.3.0", | ||
"@thi.ng/geom-api": "^0.3.7", | ||
"@thi.ng/heaps": "^1.1.5", | ||
"@thi.ng/math": "^1.5.0", | ||
"@thi.ng/transducers": "^6.0.0", | ||
"@thi.ng/vectors": "^4.0.0" | ||
"@thi.ng/api": "^6.6.0", | ||
"@thi.ng/arrays": "^0.4.0", | ||
"@thi.ng/geom-api": "^0.3.8", | ||
"@thi.ng/heaps": "^1.1.6", | ||
"@thi.ng/math": "^1.5.1", | ||
"@thi.ng/transducers": "^6.1.0", | ||
"@thi.ng/vectors": "^4.0.1" | ||
}, | ||
@@ -62,3 +65,6 @@ "keywords": [ | ||
"sideEffects": false, | ||
"gitHead": "97add769f24aa32a1a5e13c5c941605e1b9eb569" | ||
"thi.ng": { | ||
"year": 2013 | ||
}, | ||
"gitHead": "36c4d9e967bd80ccdbfa0f4a42f594080f95f105" | ||
} |
@@ -0,4 +1,6 @@ | ||
<!-- This file is generated - DO NOT EDIT! --> | ||
# @thi.ng/geom-accel | ||
[![npm (scoped)](https://img.shields.io/npm/v/@thi.ng/geom-accel.svg)](https://www.npmjs.com/package/@thi.ng/geom-accel) | ||
[![npm version](https://img.shields.io/npm/v/@thi.ng/geom-accel.svg)](https://www.npmjs.com/package/@thi.ng/geom-accel) | ||
![npm downloads](https://img.shields.io/npm/dm/@thi.ng/geom-accel.svg) | ||
@@ -10,20 +12,23 @@ [![Twitter Follow](https://img.shields.io/twitter/follow/thing_umbrella.svg?style=flat-square&label=twitter)](https://twitter.com/thing_umbrella) | ||
<!-- TOC depthFrom:2 depthTo:3 --> | ||
- [About](#about) | ||
- [Status](#status) | ||
- [Installation](#installation) | ||
- [Dependencies](#dependencies) | ||
- [Usage examples](#usage-examples) | ||
- [API](#api) | ||
- [Authors](#authors) | ||
- [License](#license) | ||
<!-- /TOC --> | ||
## About | ||
A selection of spatial indexing data structures... | ||
n-D spatial indexing data structures. | ||
Some implementations were ported from the Clojure version of | ||
[thi.ng/geom](http://thi.ng/geom). | ||
Currently available: | ||
- [k-D Tree](src/kdtree.ts) | ||
**TODO: reimport** | ||
**TODO: reimport / publish** | ||
@@ -35,2 +40,6 @@ - [Grid](src/grid.ts) | ||
### Status | ||
**STABLE** - used in production | ||
## Installation | ||
@@ -54,19 +63,26 @@ | ||
Please see the | ||
[geom-knn](https://github.com/thi-ng/umbrella/tree/master/examples/geom-knn) | ||
example for concrete usage & comments... | ||
Several demos in this repo's | ||
[/examples](https://github.com/thi-ng/umbrella/tree/master/examples) | ||
directory are using this package. | ||
[Live demo](https://demo.thi.ng/umbrella/geom-knn) | | ||
[Source](https://github.com/thi-ng/umbrella/tree/master/examples/geom-knn) | ||
A selection: | ||
```ts | ||
import { KdTree } from "@thi.ng/geom-accel"; | ||
``` | ||
### geom-knn <!-- NOTOC --> | ||
![screenshot](https://raw.githubusercontent.com/thi-ng/umbrella/master/assets/examples/geom-knn.jpg) | ||
[Live demo](https://demo.thi.ng/umbrella/geom-knn/) | [Source](https://github.com/thi-ng/umbrella/tree/master/examples/geom-knn) | ||
## API | ||
[Generated API docs](https://docs.thi.ng/umbrella/geom-accel/) | ||
TODO | ||
## Authors | ||
- Karsten Schmidt | ||
Karsten Schmidt | ||
## License | ||
© 2018 Karsten Schmidt // Apache Software License 2.0 | ||
© 2013 - 2019 Karsten Schmidt // Apache Software License 2.0 |
71763
15
86
8
+ Added@thi.ng/arrays@0.4.0(transitive)
- Removed@thi.ng/arrays@0.3.0(transitive)
Updated@thi.ng/api@^6.6.0
Updated@thi.ng/arrays@^0.4.0
Updated@thi.ng/geom-api@^0.3.8
Updated@thi.ng/heaps@^1.1.6
Updated@thi.ng/math@^1.5.1
Updated@thi.ng/transducers@^6.1.0
Updated@thi.ng/vectors@^4.0.1