dgeoutils 2.2.3 → 2.2.4

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/dist/DPoint.d.ts CHANGED
@@ -24,15 +24,18 @@ export declare class DPoint {
24
24
  */
25
25
  constructor();
26
26
  /**
27
+ * Create point
27
28
  * @param xy - `x` and `y` value
28
29
  */
29
30
  constructor(xy: number);
30
31
  /**
32
+ * Create point
31
33
  * @param x - lng, meters to East, radians to East or width
32
34
  * @param y - lat, meters to North, radians to North or height
33
35
  */
34
36
  constructor(x: number, y: number);
35
37
  /**
38
+ * Create point
36
39
  * @param x - lng, meters to East, radians to East or width
37
40
  * @param y - lat, meters to North, radians to North or height
38
41
  * @param z - height
package/dist/index.d.ts CHANGED
@@ -5,6 +5,7 @@ export * from './DPoint';
5
5
  export * from './DPolygon';
6
6
  export * from './FastSearch';
7
7
  export * from './TraceMatrix';
8
+ export * from './DPolygonLoop';
8
9
  export declare const DGeo: {
9
10
  DEBUG: boolean;
10
11
  };
package/dist/index.js CHANGED
@@ -18,6 +18,7 @@ __exportStar(require("./DPoint"), exports);
18
18
  __exportStar(require("./DPolygon"), exports);
19
19
  __exportStar(require("./FastSearch"), exports);
20
20
  __exportStar(require("./TraceMatrix"), exports);
21
+ __exportStar(require("./DPolygonLoop"), exports);
21
22
  exports.DGeo = {
22
23
  DEBUG: false
23
24
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dgeoutils",
3
- "version": "2.2.3",
3
+ "version": "2.2.4",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "build": "node_modules/.bin/tsc",