@maplat/transform 0.1.3 → 0.1.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/index.d.ts +2 -2
- package/package.json +1 -1
- package/src/index.ts +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -61,7 +61,7 @@ export declare function counterTri(tri: Tri): Tri;
|
|
|
61
61
|
* エッジの終点を表す型
|
|
62
62
|
* [始点のインデックス, 終点のインデックス]
|
|
63
63
|
*/
|
|
64
|
-
declare type Edge = [number, number];
|
|
64
|
+
export declare type Edge = [number, number];
|
|
65
65
|
|
|
66
66
|
/**
|
|
67
67
|
* エッジセットの型
|
|
@@ -152,7 +152,7 @@ export declare type StrictMode = "strict" | "auto" | "loose";
|
|
|
152
152
|
*/
|
|
153
153
|
export declare type StrictStatus = "strict" | "strict_error" | "loose";
|
|
154
154
|
|
|
155
|
-
declare type Tins = FeatureCollection<Polygon, PropertiesTri>;
|
|
155
|
+
export declare type Tins = FeatureCollection<Polygon, PropertiesTri>;
|
|
156
156
|
|
|
157
157
|
export declare type TinsBD = {
|
|
158
158
|
[key in BiDirectionKey]?: Tins;
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
7
|
-
"version": "0.1.
|
|
7
|
+
"version": "0.1.4",
|
|
8
8
|
"description": "A JavaScript library that performs coordinate transformation between two plane coordinate systems using transformation definitions generated by Maplat.",
|
|
9
9
|
"type": "module",
|
|
10
10
|
"main": "./dist/maplat_transform.cjs",
|
package/src/index.ts
CHANGED
|
@@ -10,10 +10,10 @@ import type {
|
|
|
10
10
|
} from "./geometry";
|
|
11
11
|
import { unitCalc, transformArr } from "./geometry";
|
|
12
12
|
import type { EdgeSet, EdgeSetLegacy } from "./edgeutils";
|
|
13
|
-
export type { Tri, PropertyTriKey } from './geometry';
|
|
13
|
+
export type { Tins, Tri, PropertyTriKey } from './geometry';
|
|
14
14
|
export { transformArr } from './geometry';
|
|
15
15
|
export { rotateVerticesTriangle, counterTri } from './triangulation';
|
|
16
|
-
export type { EdgeSet, EdgeSetLegacy } from './edgeutils';
|
|
16
|
+
export type { Edge, EdgeSet, EdgeSetLegacy } from './edgeutils';
|
|
17
17
|
export { normalizeEdges } from './edgeutils';
|
|
18
18
|
|
|
19
19
|
/**
|