@thi.ng/quad-edge 3.1.17 → 3.1.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +1 -1
- package/README.md +1 -1
- package/index.d.ts +4 -4
- package/index.js +4 -4
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -20,7 +20,7 @@ This project is part of the
|
|
|
20
20
|
|
|
21
21
|
## About
|
|
22
22
|
|
|
23
|
-
Quadedge data structure after Guibas & Stolfi
|
|
23
|
+
Quadedge data structure after Guibas & Stolfi.
|
|
24
24
|
|
|
25
25
|
See the related
|
|
26
26
|
[@thi.ng/geom-voronoi](https://github.com/thi-ng/umbrella/tree/develop/packages/geom-voronoi)
|
package/index.d.ts
CHANGED
|
@@ -20,13 +20,13 @@ export type QuadEdge<T> = [Edge<T>, Edge<T>, Edge<T>, Edge<T>];
|
|
|
20
20
|
export declare function defEdge<T>(id: number): Edge<T>;
|
|
21
21
|
export declare function defEdge<T>(id: number, src: T, dest: T): Edge<T>;
|
|
22
22
|
/**
|
|
23
|
-
* Quad-edge implementation after Guibas & Stolfi. Based on C++ versions
|
|
24
|
-
*
|
|
23
|
+
* Quad-edge implementation after Guibas & Stolfi. Based on C++ versions by Paul
|
|
24
|
+
* Heckbert, Dani Lischinski et al:
|
|
25
25
|
*
|
|
26
26
|
* References:
|
|
27
27
|
*
|
|
28
|
-
* -
|
|
29
|
-
* -
|
|
28
|
+
* - http://www.cs.cmu.edu/afs/andrew/scs/cs/15-463/2001/pub/src/a2/quadedge.html
|
|
29
|
+
* - http://www.cs.cmu.edu/afs/andrew/scs/cs/15-463/2001/pub/src/a2/lischinski/114.ps
|
|
30
30
|
*/
|
|
31
31
|
export declare class Edge<T> {
|
|
32
32
|
id: number;
|
package/index.js
CHANGED
|
@@ -14,13 +14,13 @@ export function defEdge(id, src, dest) {
|
|
|
14
14
|
return a;
|
|
15
15
|
}
|
|
16
16
|
/**
|
|
17
|
-
* Quad-edge implementation after Guibas & Stolfi. Based on C++ versions
|
|
18
|
-
*
|
|
17
|
+
* Quad-edge implementation after Guibas & Stolfi. Based on C++ versions by Paul
|
|
18
|
+
* Heckbert, Dani Lischinski et al:
|
|
19
19
|
*
|
|
20
20
|
* References:
|
|
21
21
|
*
|
|
22
|
-
* -
|
|
23
|
-
* -
|
|
22
|
+
* - http://www.cs.cmu.edu/afs/andrew/scs/cs/15-463/2001/pub/src/a2/quadedge.html
|
|
23
|
+
* - http://www.cs.cmu.edu/afs/andrew/scs/cs/15-463/2001/pub/src/a2/lischinski/114.ps
|
|
24
24
|
*/
|
|
25
25
|
export class Edge {
|
|
26
26
|
constructor(parent, id) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/quad-edge",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.19",
|
|
4
4
|
"description": "Quadedge data structure after Guibas & Stolfi",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -34,11 +34,11 @@
|
|
|
34
34
|
"test": "testament test"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@thi.ng/errors": "^2.2.
|
|
37
|
+
"@thi.ng/errors": "^2.2.7"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@microsoft/api-extractor": "^7.33.7",
|
|
41
|
-
"@thi.ng/testament": "^0.3.
|
|
41
|
+
"@thi.ng/testament": "^0.3.8",
|
|
42
42
|
"rimraf": "^3.0.2",
|
|
43
43
|
"tools": "^0.0.1",
|
|
44
44
|
"typedoc": "^0.23.22",
|
|
@@ -78,5 +78,5 @@
|
|
|
78
78
|
],
|
|
79
79
|
"year": 2015
|
|
80
80
|
},
|
|
81
|
-
"gitHead": "
|
|
81
|
+
"gitHead": "bc6f7f5e2765bb96fe64db804eaf4b2443b47fc6\n"
|
|
82
82
|
}
|